From 93094bcbedb441a4445bbc188afe56722e2b7cb9 Mon Sep 17 00:00:00 2001 From: emb <> Date: Thu, 1 Jan 2015 10:14:26 -0600 Subject: [PATCH] Port from git --- .hgignore | 2 + .../Common/Collections/Arcade/Exclude.txt | 0 .../Common/Collections/Arcade/Include.txt | 0 .../Common/Collections/Arcade/Include.xml | 749 + .../Common/Collections/Arcade/Settings.conf | 13 + .../Common/Collections/Main/Menu.xml | 7 + .../Common/Collections/Main/Settings.conf | 9 + .../Collections/NES and Arcade/Menu.xml | 5 + .../Collections/NES and Arcade/Settings.conf | 9 + .../Nintendo Entertainment System/Exclude.txt | 0 .../Nintendo Entertainment System/Include.txt | 0 .../Settings.conf | 13 + Assets/Environment/Common/Controls.conf | 7 + .../Environment/Common/Launchers/Fceux.conf | 2 + .../Common/Launchers/HyperLaunch.conf | 6 + Assets/Environment/Common/Launchers/MAME.conf | 2 + .../Common/Launchers/Nestopia.conf | 2 + .../Common/Layouts/Default 16x9/Age.otf | Bin 0 -> 19328 bytes .../Common/Layouts/Default 16x9/Layout.xml | 128 + .../Layouts/Default 16x9/background.png | Bin 0 -> 1889556 bytes .../Common/Layouts/Default 16x9/highlight.wav | Bin 0 -> 41276 bytes .../Common/Layouts/Default 16x9/load.wav | Bin 0 -> 314376 bytes .../Common/Layouts/Default 16x9/logo.png | Bin 0 -> 8974 bytes .../Common/Layouts/Default 16x9/select.wav | Bin 0 -> 242154 bytes .../Common/Layouts/Default 16x9/square.png | Bin 0 -> 208 bytes .../Common/Layouts/Default 16x9/unload.wav | Bin 0 -> 411596 bytes .../Common/Layouts/Default 4x3/Age.otf | Bin 0 -> 19328 bytes .../Common/Layouts/Default 4x3/Layout.xml | 90 + .../Common/Layouts/Default 4x3/background.png | Bin 0 -> 1369155 bytes .../Common/Layouts/Default 4x3/highlight.wav | Bin 0 -> 41276 bytes .../Common/Layouts/Default 4x3/load.wav | Bin 0 -> 314376 bytes .../Common/Layouts/Default 4x3/logo.png | Bin 0 -> 8974 bytes .../Common/Layouts/Default 4x3/select.wav | Bin 0 -> 242154 bytes .../Common/Layouts/Default 4x3/square.png | Bin 0 -> 208 bytes .../Common/Layouts/Default 4x3/unload.wav | Bin 0 -> 411596 bytes Assets/Environment/Common/Settings.conf | 49 + Assets/Environment/Linux/README-UBUNTU.txt | 4 + Assets/Environment/Windows/RetroFE.lnk | Bin 0 -> 2161 bytes Build Instructions.txt | 34 + CMake/FindGStreamer.cmake | 49 + CMake/FindGlib2.cmake | 43 + CMake/FindSDL2.cmake | 87 + CMake/FindSDL2_image.cmake | 70 + CMake/FindSDL2_mixer.cmake | 72 + CMake/FindSDL2_ttf.cmake | 73 + LICENSE.txt | 8 + Scripts/SetupEnvironment.bat | 1 + Source/CMakeLists.txt | 224 + Source/Collection/CollectionInfo.cpp | 67 + Source/Collection/CollectionInfo.h | 28 + Source/Collection/CollectionInfoBuilder.cpp | 126 + Source/Collection/CollectionInfoBuilder.h | 25 + Source/Collection/Item.cpp | 160 + Source/Collection/Item.h | 56 + Source/Collection/MenuParser.cpp | 108 + Source/Collection/MenuParser.h | 17 + Source/Control/UserInput.cpp | 78 + Source/Control/UserInput.h | 38 + Source/Database/CollectionDatabase.cpp | 750 + Source/Database/CollectionDatabase.h | 44 + Source/Database/Configuration.cpp | 295 + Source/Database/Configuration.h | 43 + Source/Database/DB.cpp | 50 + Source/Database/DB.h | 21 + Source/Database/MamelistMetadata.cpp | 119 + Source/Database/MamelistMetadata.h | 18 + Source/Database/Metadata.h | 10 + Source/Execute/Launcher.cpp | 326 + Source/Execute/Launcher.h | 40 + Source/Graphics/Animate/Tween.cpp | 370 + Source/Graphics/Animate/Tween.h | 55 + Source/Graphics/Animate/TweenTypes.h | 45 + Source/Graphics/Component/Component.cpp | 282 + Source/Graphics/Component/Component.h | 122 + Source/Graphics/Component/Image.cpp | 75 + Source/Graphics/Component/Image.h | 24 + Source/Graphics/Component/ImageBuilder.cpp | 30 + Source/Graphics/Component/ImageBuilder.h | 15 + Source/Graphics/Component/ReloadableMedia.cpp | 172 + Source/Graphics/Component/ReloadableMedia.h | 38 + Source/Graphics/Component/ReloadableText.cpp | 157 + Source/Graphics/Component/ReloadableText.h | 48 + Source/Graphics/Component/ScrollingList.cpp | 654 + Source/Graphics/Component/ScrollingList.h | 105 + Source/Graphics/Component/Text.cpp | 103 + Source/Graphics/Component/Text.h | 29 + Source/Graphics/Component/VideoBuilder.cpp | 36 + Source/Graphics/Component/VideoBuilder.h | 18 + Source/Graphics/Component/VideoComponent.cpp | 84 + Source/Graphics/Component/VideoComponent.h | 32 + Source/Graphics/ComponentItemBinding.cpp | 35 + Source/Graphics/ComponentItemBinding.h | 23 + .../Graphics/ComponentItemBindingBuilder.cpp | 29 + Source/Graphics/ComponentItemBindingBuilder.h | 18 + Source/Graphics/Font.cpp | 145 + Source/Graphics/Font.h | 42 + Source/Graphics/FontCache.cpp | 72 + Source/Graphics/FontCache.h | 26 + Source/Graphics/MenuNotifierInterface.h | 14 + Source/Graphics/Page.cpp | 406 + Source/Graphics/Page.h | 71 + Source/Graphics/PageBuilder.cpp | 674 + Source/Graphics/PageBuilder.h | 59 + Source/Graphics/ViewInfo.cpp | 300 + Source/Graphics/ViewInfo.h | 89 + Source/Main.cpp | 198 + Source/RetroFE.cpp | 499 + Source/RetroFE.h | 65 + Source/SDL.cpp | 256 + Source/SDL.h | 32 + Source/Sound/Sound.cpp | 54 + Source/Sound/Sound.h | 19 + Source/Utility/Log.cpp | 64 + Source/Utility/Log.h | 31 + Source/Utility/Utils.cpp | 131 + Source/Utility/Utils.h | 26 + Source/Version.cpp | 37 + Source/Version.h | 12 + Source/Video/GStreamerVideo.cpp | 351 + Source/Video/GStreamerVideo.h | 50 + Source/Video/IVideo.h | 20 + Source/Video/VideoFactory.cpp | 33 + Source/Video/VideoFactory.h | 18 + ThirdParty/GStreamer/LICENSE.gstreamer.txt | 81 + ThirdParty/SDL2-2.0.3/BUGS.txt | 16 + ThirdParty/SDL2-2.0.3/COPYING.txt | 20 + ThirdParty/SDL2-2.0.3/LICENSE.SDL2.txt | 19 + ThirdParty/SDL2-2.0.3/README-SDL.txt | 13 + ThirdParty/SDL2-2.0.3/README.txt | 42 + ThirdParty/SDL2-2.0.3/WhatsNew.txt | 108 + ThirdParty/SDL2-2.0.3/include/SDL2/SDL.h | 163 + .../SDL2-2.0.3/include/SDL2/SDL_assert.h | 284 + .../SDL2-2.0.3/include/SDL2/SDL_atomic.h | 260 + .../SDL2-2.0.3/include/SDL2/SDL_audio.h | 506 + ThirdParty/SDL2-2.0.3/include/SDL2/SDL_bits.h | 97 + .../SDL2-2.0.3/include/SDL2/SDL_blendmode.h | 63 + .../SDL2-2.0.3/include/SDL2/SDL_clipboard.h | 71 + .../SDL2-2.0.3/include/SDL2/SDL_config.h | 210 + .../SDL2-2.0.3/include/SDL2/SDL_cpuinfo.h | 156 + .../SDL2-2.0.3/include/SDL2/SDL_endian.h | 239 + .../SDL2-2.0.3/include/SDL2/SDL_error.h | 76 + .../SDL2-2.0.3/include/SDL2/SDL_events.h | 723 + .../SDL2-2.0.3/include/SDL2/SDL_filesystem.h | 136 + .../include/SDL2/SDL_gamecontroller.h | 316 + .../SDL2-2.0.3/include/SDL2/SDL_gesture.h | 87 + .../SDL2-2.0.3/include/SDL2/SDL_haptic.h | 1225 + .../SDL2-2.0.3/include/SDL2/SDL_hints.h | 517 + .../SDL2-2.0.3/include/SDL2/SDL_joystick.h | 253 + .../SDL2-2.0.3/include/SDL2/SDL_keyboard.h | 217 + .../SDL2-2.0.3/include/SDL2/SDL_keycode.h | 341 + .../SDL2-2.0.3/include/SDL2/SDL_loadso.h | 81 + ThirdParty/SDL2-2.0.3/include/SDL2/SDL_log.h | 211 + ThirdParty/SDL2-2.0.3/include/SDL2/SDL_main.h | 155 + .../SDL2-2.0.3/include/SDL2/SDL_messagebox.h | 144 + .../SDL2-2.0.3/include/SDL2/SDL_mouse.h | 224 + .../SDL2-2.0.3/include/SDL2/SDL_mutex.h | 251 + ThirdParty/SDL2-2.0.3/include/SDL2/SDL_name.h | 33 + .../SDL2-2.0.3/include/SDL2/SDL_opengl.h | 11126 ++ .../SDL2-2.0.3/include/SDL2/SDL_opengles.h | 38 + .../SDL2-2.0.3/include/SDL2/SDL_opengles2.h | 2790 + .../SDL2-2.0.3/include/SDL2/SDL_pixels.h | 429 + .../SDL2-2.0.3/include/SDL2/SDL_platform.h | 164 + .../SDL2-2.0.3/include/SDL2/SDL_power.h | 75 + ThirdParty/SDL2-2.0.3/include/SDL2/SDL_quit.h | 58 + ThirdParty/SDL2-2.0.3/include/SDL2/SDL_rect.h | 138 + .../SDL2-2.0.3/include/SDL2/SDL_render.h | 870 + .../SDL2-2.0.3/include/SDL2/SDL_revision.h | 2 + .../SDL2-2.0.3/include/SDL2/SDL_rwops.h | 232 + .../SDL2-2.0.3/include/SDL2/SDL_scancode.h | 401 + .../SDL2-2.0.3/include/SDL2/SDL_shape.h | 143 + .../SDL2-2.0.3/include/SDL2/SDL_stdinc.h | 405 + .../SDL2-2.0.3/include/SDL2/SDL_surface.h | 503 + .../SDL2-2.0.3/include/SDL2/SDL_system.h | 191 + .../SDL2-2.0.3/include/SDL2/SDL_syswm.h | 272 + ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test.h | 68 + .../SDL2-2.0.3/include/SDL2/SDL_test_assert.h | 105 + .../SDL2-2.0.3/include/SDL2/SDL_test_common.h | 188 + .../include/SDL2/SDL_test_compare.h | 69 + .../SDL2-2.0.3/include/SDL2/SDL_test_crc32.h | 124 + .../SDL2-2.0.3/include/SDL2/SDL_test_font.h | 76 + .../SDL2-2.0.3/include/SDL2/SDL_test_fuzzer.h | 384 + .../include/SDL2/SDL_test_harness.h | 123 + .../SDL2-2.0.3/include/SDL2/SDL_test_images.h | 78 + .../SDL2-2.0.3/include/SDL2/SDL_test_log.h | 67 + .../SDL2-2.0.3/include/SDL2/SDL_test_md5.h | 129 + .../SDL2-2.0.3/include/SDL2/SDL_test_random.h | 115 + .../SDL2-2.0.3/include/SDL2/SDL_thread.h | 287 + .../SDL2-2.0.3/include/SDL2/SDL_timer.h | 115 + .../SDL2-2.0.3/include/SDL2/SDL_touch.h | 86 + .../SDL2-2.0.3/include/SDL2/SDL_types.h | 29 + .../SDL2-2.0.3/include/SDL2/SDL_version.h | 162 + .../SDL2-2.0.3/include/SDL2/SDL_video.h | 979 + .../SDL2-2.0.3/include/SDL2/begin_code.h | 140 + .../SDL2-2.0.3/include/SDL2/close_code.h | 37 + ThirdParty/SDL2-2.0.3/lib/x64/SDL2.dll | Bin 0 -> 1190400 bytes ThirdParty/SDL2-2.0.3/lib/x64/SDL2.lib | Bin 0 -> 113700 bytes ThirdParty/SDL2-2.0.3/lib/x64/SDL2main.lib | Bin 0 -> 42824 bytes ThirdParty/SDL2-2.0.3/lib/x64/SDL2test.lib | Bin 0 -> 842536 bytes ThirdParty/SDL2-2.0.3/lib/x86/SDL2.dll | Bin 0 -> 1007104 bytes ThirdParty/SDL2-2.0.3/lib/x86/SDL2.lib | Bin 0 -> 116400 bytes ThirdParty/SDL2-2.0.3/lib/x86/SDL2main.lib | Bin 0 -> 40536 bytes ThirdParty/SDL2-2.0.3/lib/x86/SDL2test.lib | Bin 0 -> 821670 bytes ThirdParty/SDL2_image-2.0.0/CHANGES.txt | 114 + ThirdParty/SDL2_image-2.0.0/COPYING.txt | 20 + ThirdParty/SDL2_image-2.0.0/README.txt | 40 + .../SDL2_image-2.0.0/include/SDL2/SDL_image.h | 145 + .../SDL2_image-2.0.0/lib/x64/LICENSE.jpeg.txt | 65 + .../SDL2_image-2.0.0/lib/x64/LICENSE.png.txt | 114 + .../SDL2_image-2.0.0/lib/x64/LICENSE.tiff.txt | 25 + .../SDL2_image-2.0.0/lib/x64/LICENSE.webp.txt | 34 + .../SDL2_image-2.0.0/lib/x64/LICENSE.zlib.txt | 31 + .../SDL2_image-2.0.0/lib/x64/SDL2_image.dll | Bin 0 -> 111616 bytes .../SDL2_image-2.0.0/lib/x64/SDL2_image.lib | Bin 0 -> 9366 bytes .../SDL2_image-2.0.0/lib/x64/libjpeg-9.dll | Bin 0 -> 243200 bytes .../SDL2_image-2.0.0/lib/x64/libpng16-16.dll | Bin 0 -> 216064 bytes .../SDL2_image-2.0.0/lib/x64/libtiff-5.dll | Bin 0 -> 451584 bytes .../SDL2_image-2.0.0/lib/x64/libwebp-4.dll | Bin 0 -> 326656 bytes ThirdParty/SDL2_image-2.0.0/lib/x64/zlib1.dll | Bin 0 -> 133632 bytes .../SDL2_image-2.0.0/lib/x86/LICENSE.jpeg.txt | 65 + .../SDL2_image-2.0.0/lib/x86/LICENSE.png.txt | 114 + .../SDL2_image-2.0.0/lib/x86/LICENSE.tiff.txt | 25 + .../SDL2_image-2.0.0/lib/x86/LICENSE.webp.txt | 34 + .../SDL2_image-2.0.0/lib/x86/LICENSE.zlib.txt | 31 + .../SDL2_image-2.0.0/lib/x86/SDL2_image.dll | Bin 0 -> 107520 bytes .../SDL2_image-2.0.0/lib/x86/SDL2_image.lib | Bin 0 -> 9568 bytes .../SDL2_image-2.0.0/lib/x86/libjpeg-9.dll | Bin 0 -> 223232 bytes .../SDL2_image-2.0.0/lib/x86/libpng16-16.dll | Bin 0 -> 200704 bytes .../SDL2_image-2.0.0/lib/x86/libtiff-5.dll | Bin 0 -> 436224 bytes .../SDL2_image-2.0.0/lib/x86/libwebp-4.dll | Bin 0 -> 271872 bytes ThirdParty/SDL2_image-2.0.0/lib/x86/zlib1.dll | Bin 0 -> 123904 bytes ThirdParty/SDL2_mixer-2.0.0/CHANGES.txt | 156 + ThirdParty/SDL2_mixer-2.0.0/COPYING.txt | 20 + ThirdParty/SDL2_mixer-2.0.0/README.txt | 43 + .../SDL2_mixer-2.0.0/include/SDL2/SDL_mixer.h | 631 + .../SDL2_mixer-2.0.0/lib/x64/LICENSE.FLAC.txt | 32 + .../lib/x64/LICENSE.mikmod.txt | 486 + .../lib/x64/LICENSE.modplug.txt | 1 + .../lib/x64/LICENSE.ogg-vorbis.txt | 32 + .../lib/x64/LICENSE.smpeg.txt | 485 + .../SDL2_mixer-2.0.0/lib/x64/SDL2_mixer.dll | Bin 0 -> 193536 bytes .../SDL2_mixer-2.0.0/lib/x64/SDL2_mixer.lib | Bin 0 -> 16734 bytes .../SDL2_mixer-2.0.0/lib/x64/libFLAC-8.dll | Bin 0 -> 374784 bytes .../SDL2_mixer-2.0.0/lib/x64/libmikmod-2.dll | Bin 0 -> 287232 bytes .../SDL2_mixer-2.0.0/lib/x64/libmodplug-1.dll | Bin 0 -> 471040 bytes .../SDL2_mixer-2.0.0/lib/x64/libogg-0.dll | Bin 0 -> 52224 bytes .../SDL2_mixer-2.0.0/lib/x64/libvorbis-0.dll | Bin 0 -> 252416 bytes .../lib/x64/libvorbisfile-3.dll | Bin 0 -> 68608 bytes .../SDL2_mixer-2.0.0/lib/x64/smpeg2.dll | Bin 0 -> 388608 bytes .../SDL2_mixer-2.0.0/lib/x86/LICENSE.FLAC.txt | 32 + .../lib/x86/LICENSE.mikmod.txt | 486 + .../lib/x86/LICENSE.modplug.txt | 1 + .../lib/x86/LICENSE.ogg-vorbis.txt | 32 + .../lib/x86/LICENSE.smpeg.txt | 485 + .../SDL2_mixer-2.0.0/lib/x86/SDL2_mixer.dll | Bin 0 -> 184320 bytes .../SDL2_mixer-2.0.0/lib/x86/SDL2_mixer.lib | Bin 0 -> 17084 bytes .../SDL2_mixer-2.0.0/lib/x86/libFLAC-8.dll | Bin 0 -> 367104 bytes .../SDL2_mixer-2.0.0/lib/x86/libmikmod-2.dll | Bin 0 -> 285184 bytes .../SDL2_mixer-2.0.0/lib/x86/libmodplug-1.dll | Bin 0 -> 401920 bytes .../SDL2_mixer-2.0.0/lib/x86/libogg-0.dll | Bin 0 -> 47104 bytes .../SDL2_mixer-2.0.0/lib/x86/libvorbis-0.dll | Bin 0 -> 196096 bytes .../lib/x86/libvorbisfile-3.dll | Bin 0 -> 62976 bytes .../SDL2_mixer-2.0.0/lib/x86/smpeg2.dll | Bin 0 -> 301568 bytes ThirdParty/SDL2_ttf-2.0.12/CHANGES.txt | 17 + ThirdParty/SDL2_ttf-2.0.12/COPYING.txt | 20 + ThirdParty/SDL2_ttf-2.0.12/README.txt | 25 + .../SDL2_ttf-2.0.12/include/SDL2/SDL_ttf.h | 263 + .../lib/x64/LICENSE.freetype.txt | 173 + .../SDL2_ttf-2.0.12/lib/x64/LICENSE.zlib.txt | 31 + .../SDL2_ttf-2.0.12/lib/x64/SDL2_ttf.dll | Bin 0 -> 57344 bytes .../SDL2_ttf-2.0.12/lib/x64/SDL2_ttf.lib | Bin 0 -> 11856 bytes .../SDL2_ttf-2.0.12/lib/x64/libfreetype-6.dll | Bin 0 -> 540160 bytes ThirdParty/SDL2_ttf-2.0.12/lib/x64/zlib1.dll | Bin 0 -> 133632 bytes .../lib/x86/LICENSE.freetype.txt | 173 + .../SDL2_ttf-2.0.12/lib/x86/LICENSE.zlib.txt | 31 + .../SDL2_ttf-2.0.12/lib/x86/SDL2_ttf.dll | Bin 0 -> 52224 bytes .../SDL2_ttf-2.0.12/lib/x86/SDL2_ttf.lib | Bin 0 -> 12098 bytes .../SDL2_ttf-2.0.12/lib/x86/libfreetype-6.dll | Bin 0 -> 501760 bytes ThirdParty/SDL2_ttf-2.0.12/lib/x86/zlib1.dll | Bin 0 -> 123904 bytes ThirdParty/dirent-1.20.1/ChangeLog | 108 + ThirdParty/dirent-1.20.1/examples/find.c | 139 + ThirdParty/dirent-1.20.1/examples/locate.c | 257 + ThirdParty/dirent-1.20.1/examples/ls.c | 94 + ThirdParty/dirent-1.20.1/examples/updatedb.c | 215 + ThirdParty/dirent-1.20.1/include/dirent.h | 838 + .../dirent-1.20.1/tests/1/dir/readme.txt | 4 + ThirdParty/dirent-1.20.1/tests/1/file | 0 .../dirent-1.20.1/tests/2/Testfile-1.2.3.dat | 0 ThirdParty/dirent-1.20.1/tests/2/file.txt | 1 + ThirdParty/dirent-1.20.1/tests/t-dirent.c | 291 + .../dirent-1.20.1/vs2008/find/find.vcproj | 177 + .../dirent-1.20.1/vs2008/locate/locate.vcproj | 177 + ThirdParty/dirent-1.20.1/vs2008/ls/ls.vcproj | 177 + .../vs2008/t-dirent/t-dirent.vcproj | 177 + .../vs2008/updatedb/updatedb.vcproj | 177 + ThirdParty/dirent-1.20.1/vs2008/vs2008.sln | 44 + ThirdParty/rapidxml-1.13/LICENSE.rapidxml.txt | 52 + ThirdParty/rapidxml-1.13/rapidxml.hpp | 2596 + .../rapidxml-1.13/rapidxml_iterators.hpp | 174 + ThirdParty/rapidxml-1.13/rapidxml_print.hpp | 421 + ThirdParty/rapidxml-1.13/rapidxml_utils.hpp | 122 + ThirdParty/sqlite3/LICENSE.sqlite3.txt | 33 + ThirdParty/sqlite3/sqlite3.c | 147782 +++++++++++++++ ThirdParty/sqlite3/sqlite3.h | 7478 + ThirdParty/sqlite3/sqlite3ext.h | 487 + ThirdParty/zlib128-dll/DLL_FAQ.txt | 397 + ThirdParty/zlib128-dll/README.txt | 60 + ThirdParty/zlib128-dll/USAGE.txt | 89 + ThirdParty/zlib128-dll/include/zconf.h | 511 + ThirdParty/zlib128-dll/include/zlib.h | 1768 + ThirdParty/zlib128-dll/lib/zdll.lib | Bin 0 -> 15256 bytes ThirdParty/zlib128-dll/lib/zlib.def | 86 + ThirdParty/zlib128-dll/test/example_d.exe | Bin 0 -> 38912 bytes ThirdParty/zlib128-dll/test/minigzip_d.exe | Bin 0 -> 35840 bytes ThirdParty/zlib128-dll/zlib1.dll | Bin 0 -> 107520 bytes UnitTest/CMakeLists.txt | 34 + UnitTest/RetroFE/Utility/Utils_UnitTest.cpp | 12 + UnitTest/gmock-1.7.0/CHANGES | 126 + UnitTest/gmock-1.7.0/CMakeLists.txt | 171 + UnitTest/gmock-1.7.0/CONTRIBUTORS | 40 + UnitTest/gmock-1.7.0/LICENSE | 28 + UnitTest/gmock-1.7.0/Makefile.am | 216 + UnitTest/gmock-1.7.0/Makefile.in | 1357 + UnitTest/gmock-1.7.0/README | 369 + UnitTest/gmock-1.7.0/aclocal.m4 | 9799 + UnitTest/gmock-1.7.0/build-aux/config.guess | 1530 + UnitTest/gmock-1.7.0/build-aux/config.h.in | 69 + UnitTest/gmock-1.7.0/build-aux/config.sub | 1773 + UnitTest/gmock-1.7.0/build-aux/depcomp | 688 + UnitTest/gmock-1.7.0/build-aux/install-sh | 527 + UnitTest/gmock-1.7.0/build-aux/ltmain.sh | 9661 + UnitTest/gmock-1.7.0/build-aux/missing | 331 + UnitTest/gmock-1.7.0/configure | 18535 ++ UnitTest/gmock-1.7.0/configure.ac | 146 + .../gmock-1.7.0/fused-src/gmock-gtest-all.cc | 11443 ++ UnitTest/gmock-1.7.0/fused-src/gmock/gmock.h | 14198 ++ UnitTest/gmock-1.7.0/fused-src/gmock_main.cc | 54 + UnitTest/gmock-1.7.0/fused-src/gtest/gtest.h | 20061 ++ UnitTest/gmock-1.7.0/gtest/CHANGES | 157 + UnitTest/gmock-1.7.0/gtest/CMakeLists.txt | 252 + UnitTest/gmock-1.7.0/gtest/CONTRIBUTORS | 37 + UnitTest/gmock-1.7.0/gtest/LICENSE | 28 + UnitTest/gmock-1.7.0/gtest/Makefile.am | 306 + UnitTest/gmock-1.7.0/gtest/Makefile.in | 1360 + UnitTest/gmock-1.7.0/gtest/README | 435 + UnitTest/gmock-1.7.0/gtest/aclocal.m4 | 1198 + .../gmock-1.7.0/gtest/build-aux/config.guess | 1530 + .../gmock-1.7.0/gtest/build-aux/config.h.in | 69 + .../gmock-1.7.0/gtest/build-aux/config.sub | 1773 + UnitTest/gmock-1.7.0/gtest/build-aux/depcomp | 688 + .../gmock-1.7.0/gtest/build-aux/install-sh | 527 + .../gmock-1.7.0/gtest/build-aux/ltmain.sh | 9661 + UnitTest/gmock-1.7.0/gtest/build-aux/missing | 331 + .../gtest/cmake/internal_utils.cmake | 227 + .../gmock-1.7.0/gtest/codegear/gtest.cbproj | 138 + .../gtest/codegear/gtest.groupproj | 54 + .../gmock-1.7.0/gtest/codegear/gtest_all.cc | 38 + .../gmock-1.7.0/gtest/codegear/gtest_link.cc | 40 + .../gtest/codegear/gtest_main.cbproj | 82 + .../gtest/codegear/gtest_unittest.cbproj | 88 + UnitTest/gmock-1.7.0/gtest/configure | 18222 ++ UnitTest/gmock-1.7.0/gtest/configure.ac | 68 + .../gtest/fused-src/gtest/gtest-all.cc | 9592 + .../gmock-1.7.0/gtest/fused-src/gtest/gtest.h | 20061 ++ .../gtest/fused-src/gtest/gtest_main.cc | 38 + .../gtest/include/gtest/gtest-death-test.h | 294 + .../gtest/include/gtest/gtest-message.h | 250 + .../gtest/include/gtest/gtest-param-test.h | 1421 + .../include/gtest/gtest-param-test.h.pump | 487 + .../gtest/include/gtest/gtest-printers.h | 855 + .../gtest/include/gtest/gtest-spi.h | 232 + .../gtest/include/gtest/gtest-test-part.h | 179 + .../gtest/include/gtest/gtest-typed-test.h | 259 + .../gmock-1.7.0/gtest/include/gtest/gtest.h | 2291 + .../gtest/include/gtest/gtest_pred_impl.h | 358 + .../gtest/include/gtest/gtest_prod.h | 58 + .../internal/gtest-death-test-internal.h | 319 + .../include/gtest/internal/gtest-filepath.h | 206 + .../include/gtest/internal/gtest-internal.h | 1158 + .../include/gtest/internal/gtest-linked_ptr.h | 233 + .../internal/gtest-param-util-generated.h | 5143 + .../gtest-param-util-generated.h.pump | 301 + .../include/gtest/internal/gtest-param-util.h | 619 + .../gtest/include/gtest/internal/gtest-port.h | 1947 + .../include/gtest/internal/gtest-string.h | 167 + .../include/gtest/internal/gtest-tuple.h | 1012 + .../include/gtest/internal/gtest-tuple.h.pump | 339 + .../include/gtest/internal/gtest-type-util.h | 3331 + .../gtest/internal/gtest-type-util.h.pump | 297 + UnitTest/gmock-1.7.0/gtest/m4/acx_pthread.m4 | 363 + UnitTest/gmock-1.7.0/gtest/m4/gtest.m4 | 74 + UnitTest/gmock-1.7.0/gtest/m4/libtool.m4 | 8001 + UnitTest/gmock-1.7.0/gtest/m4/ltoptions.m4 | 384 + UnitTest/gmock-1.7.0/gtest/m4/ltsugar.m4 | 123 + UnitTest/gmock-1.7.0/gtest/m4/ltversion.m4 | 23 + UnitTest/gmock-1.7.0/gtest/m4/lt~obsolete.m4 | 98 + UnitTest/gmock-1.7.0/gtest/make/Makefile | 82 + UnitTest/gmock-1.7.0/gtest/msvc/gtest-md.sln | 45 + .../gmock-1.7.0/gtest/msvc/gtest-md.vcproj | 126 + UnitTest/gmock-1.7.0/gtest/msvc/gtest.sln | 45 + UnitTest/gmock-1.7.0/gtest/msvc/gtest.vcproj | 126 + .../gtest/msvc/gtest_main-md.vcproj | 129 + .../gmock-1.7.0/gtest/msvc/gtest_main.vcproj | 129 + .../gtest/msvc/gtest_prod_test-md.vcproj | 164 + .../gtest/msvc/gtest_prod_test.vcproj | 164 + .../gtest/msvc/gtest_unittest-md.vcproj | 147 + .../gtest/msvc/gtest_unittest.vcproj | 147 + .../gmock-1.7.0/gtest/samples/prime_tables.h | 123 + UnitTest/gmock-1.7.0/gtest/samples/sample1.cc | 68 + UnitTest/gmock-1.7.0/gtest/samples/sample1.h | 43 + .../gtest/samples/sample10_unittest.cc | 144 + .../gtest/samples/sample1_unittest.cc | 153 + UnitTest/gmock-1.7.0/gtest/samples/sample2.cc | 56 + UnitTest/gmock-1.7.0/gtest/samples/sample2.h | 85 + .../gtest/samples/sample2_unittest.cc | 109 + .../gmock-1.7.0/gtest/samples/sample3-inl.h | 172 + .../gtest/samples/sample3_unittest.cc | 151 + UnitTest/gmock-1.7.0/gtest/samples/sample4.cc | 46 + UnitTest/gmock-1.7.0/gtest/samples/sample4.h | 53 + .../gtest/samples/sample4_unittest.cc | 45 + .../gtest/samples/sample5_unittest.cc | 199 + .../gtest/samples/sample6_unittest.cc | 224 + .../gtest/samples/sample7_unittest.cc | 130 + .../gtest/samples/sample8_unittest.cc | 173 + .../gtest/samples/sample9_unittest.cc | 160 + .../gtest/scripts/fuse_gtest_files.py | 250 + .../gtest/scripts/gen_gtest_pred_impl.py | 730 + .../gmock-1.7.0/gtest/scripts/gtest-config.in | 274 + UnitTest/gmock-1.7.0/gtest/scripts/pump.py | 855 + .../gmock-1.7.0/gtest/scripts/test/Makefile | 59 + UnitTest/gmock-1.7.0/gtest/src/gtest-all.cc | 48 + .../gmock-1.7.0/gtest/src/gtest-death-test.cc | 1344 + .../gmock-1.7.0/gtest/src/gtest-filepath.cc | 382 + .../gtest/src/gtest-internal-inl.h | 1218 + UnitTest/gmock-1.7.0/gtest/src/gtest-port.cc | 805 + .../gmock-1.7.0/gtest/src/gtest-printers.cc | 363 + .../gmock-1.7.0/gtest/src/gtest-test-part.cc | 110 + .../gmock-1.7.0/gtest/src/gtest-typed-test.cc | 110 + UnitTest/gmock-1.7.0/gtest/src/gtest.cc | 5015 + UnitTest/gmock-1.7.0/gtest/src/gtest_main.cc | 38 + .../gtest/test/gtest-death-test_ex_test.cc | 93 + .../gtest/test/gtest-death-test_test.cc | 1367 + .../gtest/test/gtest-filepath_test.cc | 680 + .../gtest/test/gtest-linked_ptr_test.cc | 154 + .../gtest/test/gtest-listener_test.cc | 310 + .../gtest/test/gtest-message_test.cc | 159 + .../gtest/test/gtest-options_test.cc | 215 + .../gtest/test/gtest-param-test2_test.cc | 65 + .../gtest/test/gtest-param-test_test.cc | 904 + .../gtest/test/gtest-param-test_test.h | 57 + .../gmock-1.7.0/gtest/test/gtest-port_test.cc | 1253 + .../gtest/test/gtest-printers_test.cc | 1566 + .../gtest/test/gtest-test-part_test.cc | 208 + .../gtest/test/gtest-tuple_test.cc | 320 + .../gtest/test/gtest-typed-test2_test.cc | 45 + .../gtest/test/gtest-typed-test_test.cc | 360 + .../gtest/test/gtest-typed-test_test.h | 66 + .../gtest/test/gtest-unittest-api_test.cc | 341 + .../gmock-1.7.0/gtest/test/gtest_all_test.cc | 47 + .../test/gtest_break_on_failure_unittest.py | 212 + .../test/gtest_break_on_failure_unittest_.cc | 88 + .../gtest/test/gtest_catch_exceptions_test.py | 237 + .../test/gtest_catch_exceptions_test_.cc | 311 + .../gtest/test/gtest_color_test.py | 130 + .../gtest/test/gtest_color_test_.cc | 71 + .../gtest/test/gtest_env_var_test.py | 103 + .../gtest/test/gtest_env_var_test_.cc | 126 + .../gtest/test/gtest_environment_test.cc | 192 + .../gtest/test/gtest_filter_unittest.py | 633 + .../gtest/test/gtest_filter_unittest_.cc | 140 + .../gmock-1.7.0/gtest/test/gtest_help_test.py | 172 + .../gtest/test/gtest_help_test_.cc | 46 + .../gtest/test/gtest_list_tests_unittest.py | 207 + .../gtest/test/gtest_list_tests_unittest_.cc | 157 + .../gtest/test/gtest_main_unittest.cc | 45 + .../gtest/test/gtest_no_test_unittest.cc | 56 + .../gtest/test/gtest_output_test.py | 335 + .../gtest/test/gtest_output_test_.cc | 1034 + .../test/gtest_output_test_golden_lin.txt | 720 + .../gtest/test/gtest_pred_impl_unittest.cc | 2427 + .../gtest/test/gtest_premature_exit_test.cc | 141 + .../gmock-1.7.0/gtest/test/gtest_prod_test.cc | 57 + .../gtest/test/gtest_repeat_test.cc | 253 + .../gtest/test/gtest_shuffle_test.py | 325 + .../gtest/test/gtest_shuffle_test_.cc | 103 + .../gtest/test/gtest_sole_header_test.cc | 57 + .../gtest/test/gtest_stress_test.cc | 256 + .../gtest/test/gtest_test_utils.py | 320 + .../test/gtest_throw_on_failure_ex_test.cc | 92 + .../gtest/test/gtest_throw_on_failure_test.py | 171 + .../test/gtest_throw_on_failure_test_.cc | 72 + .../gtest/test/gtest_uninitialized_test.py | 70 + .../gtest/test/gtest_uninitialized_test_.cc | 43 + .../gmock-1.7.0/gtest/test/gtest_unittest.cc | 7415 + .../gtest/test/gtest_xml_outfile1_test_.cc | 49 + .../gtest/test/gtest_xml_outfile2_test_.cc | 49 + .../gtest/test/gtest_xml_outfiles_test.py | 132 + .../gtest/test/gtest_xml_output_unittest.py | 307 + .../gtest/test/gtest_xml_output_unittest_.cc | 181 + .../gtest/test/gtest_xml_test_utils.py | 194 + UnitTest/gmock-1.7.0/gtest/test/production.cc | 36 + UnitTest/gmock-1.7.0/gtest/test/production.h | 55 + .../gtest/xcode/Config/DebugProject.xcconfig | 30 + .../xcode/Config/FrameworkTarget.xcconfig | 17 + .../gtest/xcode/Config/General.xcconfig | 41 + .../xcode/Config/ReleaseProject.xcconfig | 32 + .../xcode/Config/StaticLibraryTarget.xcconfig | 18 + .../gtest/xcode/Config/TestTarget.xcconfig | 8 + .../gtest/xcode/Resources/Info.plist | 30 + .../xcode/Samples/FrameworkSample/Info.plist | 28 + .../WidgetFramework.xcodeproj/project.pbxproj | 457 + .../xcode/Samples/FrameworkSample/runtests.sh | 62 + .../xcode/Samples/FrameworkSample/widget.cc | 63 + .../xcode/Samples/FrameworkSample/widget.h | 59 + .../Samples/FrameworkSample/widget_test.cc | 68 + .../gtest/xcode/Scripts/runtests.sh | 65 + .../gtest/xcode/Scripts/versiongenerate.py | 100 + .../xcode/gtest.xcodeproj/project.pbxproj | 1135 + .../gmock-1.7.0/include/gmock/gmock-actions.h | 1078 + .../include/gmock/gmock-cardinalities.h | 147 + .../include/gmock/gmock-generated-actions.h | 2415 + .../gmock/gmock-generated-actions.h.pump | 821 + .../gmock/gmock-generated-function-mockers.h | 991 + .../gmock-generated-function-mockers.h.pump | 265 + .../include/gmock/gmock-generated-matchers.h | 2190 + .../gmock/gmock-generated-matchers.h.pump | 674 + .../gmock/gmock-generated-nice-strict.h | 397 + .../gmock/gmock-generated-nice-strict.h.pump | 161 + .../include/gmock/gmock-matchers.h | 3986 + .../include/gmock/gmock-more-actions.h | 233 + .../include/gmock/gmock-more-matchers.h | 58 + .../include/gmock/gmock-spec-builders.h | 1791 + UnitTest/gmock-1.7.0/include/gmock/gmock.h | 94 + .../internal/gmock-generated-internal-utils.h | 279 + .../gmock-generated-internal-utils.h.pump | 136 + .../gmock/internal/gmock-internal-utils.h | 498 + .../include/gmock/internal/gmock-port.h | 78 + UnitTest/gmock-1.7.0/make/Makefile | 101 + UnitTest/gmock-1.7.0/msvc/2005/gmock.sln | 32 + UnitTest/gmock-1.7.0/msvc/2005/gmock.vcproj | 191 + .../msvc/2005/gmock_config.vsprops | 15 + .../gmock-1.7.0/msvc/2005/gmock_main.vcproj | 187 + .../gmock-1.7.0/msvc/2005/gmock_test.vcproj | 201 + UnitTest/gmock-1.7.0/msvc/2010/gmock.sln | 32 + UnitTest/gmock-1.7.0/msvc/2010/gmock.vcxproj | 82 + .../gmock-1.7.0/msvc/2010/gmock_config.props | 19 + .../gmock-1.7.0/msvc/2010/gmock_main.vcxproj | 88 + .../gmock-1.7.0/msvc/2010/gmock_test.vcxproj | 101 + .../gmock-1.7.0/scripts/fuse_gmock_files.py | 240 + .../gmock-1.7.0/scripts/generator/LICENSE | 203 + UnitTest/gmock-1.7.0/scripts/generator/README | 35 + .../scripts/generator/README.cppclean | 115 + .../scripts/generator/cpp/__init__.py | 0 .../gmock-1.7.0/scripts/generator/cpp/ast.py | 1723 + .../scripts/generator/cpp/gmock_class.py | 226 + .../scripts/generator/cpp/keywords.py | 59 + .../scripts/generator/cpp/tokenize.py | 287 + .../scripts/generator/cpp/utils.py | 41 + .../scripts/generator/gmock_gen.py | 31 + UnitTest/gmock-1.7.0/scripts/gmock-config.in | 303 + UnitTest/gmock-1.7.0/src/gmock-all.cc | 47 + .../gmock-1.7.0/src/gmock-cardinalities.cc | 156 + .../gmock-1.7.0/src/gmock-internal-utils.cc | 174 + UnitTest/gmock-1.7.0/src/gmock-matchers.cc | 498 + .../gmock-1.7.0/src/gmock-spec-builders.cc | 813 + UnitTest/gmock-1.7.0/src/gmock.cc | 182 + UnitTest/gmock-1.7.0/src/gmock_main.cc | 54 + .../gmock-1.7.0/test/gmock-actions_test.cc | 1256 + .../test/gmock-cardinalities_test.cc | 428 + .../test/gmock-generated-actions_test.cc | 1225 + .../gmock-generated-function-mockers_test.cc | 588 + .../gmock-generated-internal-utils_test.cc | 127 + .../test/gmock-generated-matchers_test.cc | 1289 + .../test/gmock-internal-utils_test.cc | 649 + .../gmock-1.7.0/test/gmock-matchers_test.cc | 5247 + .../test/gmock-more-actions_test.cc | 705 + .../test/gmock-nice-strict_test.cc | 424 + UnitTest/gmock-1.7.0/test/gmock-port_test.cc | 43 + .../test/gmock-spec-builders_test.cc | 2613 + UnitTest/gmock-1.7.0/test/gmock_all_test.cc | 48 + UnitTest/gmock-1.7.0/test/gmock_ex_test.cc | 78 + UnitTest/gmock-1.7.0/test/gmock_leak_test.py | 108 + UnitTest/gmock-1.7.0/test/gmock_leak_test_.cc | 100 + UnitTest/gmock-1.7.0/test/gmock_link2_test.cc | 40 + UnitTest/gmock-1.7.0/test/gmock_link_test.cc | 40 + UnitTest/gmock-1.7.0/test/gmock_link_test.h | 669 + .../gmock-1.7.0/test/gmock_output_test.py | 180 + .../gmock-1.7.0/test/gmock_output_test_.cc | 291 + .../test/gmock_output_test_golden.txt | 310 + .../gmock-1.7.0/test/gmock_stress_test.cc | 322 + UnitTest/gmock-1.7.0/test/gmock_test.cc | 255 + UnitTest/gmock-1.7.0/test/gmock_test_utils.py | 112 + UnitTest/gtest-1.7.0/CHANGES | 157 + UnitTest/gtest-1.7.0/CMakeLists.txt | 252 + UnitTest/gtest-1.7.0/CONTRIBUTORS | 37 + UnitTest/gtest-1.7.0/LICENSE | 28 + UnitTest/gtest-1.7.0/Makefile.am | 306 + UnitTest/gtest-1.7.0/Makefile.in | 1360 + UnitTest/gtest-1.7.0/README | 435 + UnitTest/gtest-1.7.0/aclocal.m4 | 1198 + UnitTest/gtest-1.7.0/build-aux/config.guess | 1530 + UnitTest/gtest-1.7.0/build-aux/config.h.in | 69 + UnitTest/gtest-1.7.0/build-aux/config.sub | 1773 + UnitTest/gtest-1.7.0/build-aux/depcomp | 688 + UnitTest/gtest-1.7.0/build-aux/install-sh | 527 + UnitTest/gtest-1.7.0/build-aux/ltmain.sh | 9661 + UnitTest/gtest-1.7.0/build-aux/missing | 331 + .../gtest-1.7.0/cmake/internal_utils.cmake | 227 + UnitTest/gtest-1.7.0/codegear/gtest.cbproj | 138 + UnitTest/gtest-1.7.0/codegear/gtest.groupproj | 54 + UnitTest/gtest-1.7.0/codegear/gtest_all.cc | 38 + UnitTest/gtest-1.7.0/codegear/gtest_link.cc | 40 + .../gtest-1.7.0/codegear/gtest_main.cbproj | 82 + .../codegear/gtest_unittest.cbproj | 88 + UnitTest/gtest-1.7.0/configure | 18222 ++ UnitTest/gtest-1.7.0/configure.ac | 68 + .../gtest-1.7.0/fused-src/gtest/gtest-all.cc | 9592 + UnitTest/gtest-1.7.0/fused-src/gtest/gtest.h | 20061 ++ .../gtest-1.7.0/fused-src/gtest/gtest_main.cc | 38 + .../include/gtest/gtest-death-test.h | 294 + .../gtest-1.7.0/include/gtest/gtest-message.h | 250 + .../include/gtest/gtest-param-test.h | 1421 + .../include/gtest/gtest-param-test.h.pump | 487 + .../include/gtest/gtest-printers.h | 855 + .../gtest-1.7.0/include/gtest/gtest-spi.h | 232 + .../include/gtest/gtest-test-part.h | 179 + .../include/gtest/gtest-typed-test.h | 259 + UnitTest/gtest-1.7.0/include/gtest/gtest.h | 2291 + .../include/gtest/gtest_pred_impl.h | 358 + .../gtest-1.7.0/include/gtest/gtest_prod.h | 58 + .../internal/gtest-death-test-internal.h | 319 + .../include/gtest/internal/gtest-filepath.h | 206 + .../include/gtest/internal/gtest-internal.h | 1158 + .../include/gtest/internal/gtest-linked_ptr.h | 233 + .../internal/gtest-param-util-generated.h | 5143 + .../gtest-param-util-generated.h.pump | 301 + .../include/gtest/internal/gtest-param-util.h | 619 + .../include/gtest/internal/gtest-port.h | 1947 + .../include/gtest/internal/gtest-string.h | 167 + .../include/gtest/internal/gtest-tuple.h | 1012 + .../include/gtest/internal/gtest-tuple.h.pump | 339 + .../include/gtest/internal/gtest-type-util.h | 3331 + .../gtest/internal/gtest-type-util.h.pump | 297 + UnitTest/gtest-1.7.0/m4/acx_pthread.m4 | 363 + UnitTest/gtest-1.7.0/m4/gtest.m4 | 74 + UnitTest/gtest-1.7.0/m4/libtool.m4 | 8001 + UnitTest/gtest-1.7.0/m4/ltoptions.m4 | 384 + UnitTest/gtest-1.7.0/m4/ltsugar.m4 | 123 + UnitTest/gtest-1.7.0/m4/ltversion.m4 | 23 + UnitTest/gtest-1.7.0/m4/lt~obsolete.m4 | 98 + UnitTest/gtest-1.7.0/make/Makefile | 82 + UnitTest/gtest-1.7.0/msvc/gtest-md.sln | 45 + UnitTest/gtest-1.7.0/msvc/gtest-md.vcproj | 126 + UnitTest/gtest-1.7.0/msvc/gtest.sln | 45 + UnitTest/gtest-1.7.0/msvc/gtest.vcproj | 126 + .../gtest-1.7.0/msvc/gtest_main-md.vcproj | 129 + UnitTest/gtest-1.7.0/msvc/gtest_main.vcproj | 129 + .../msvc/gtest_prod_test-md.vcproj | 164 + .../gtest-1.7.0/msvc/gtest_prod_test.vcproj | 164 + .../gtest-1.7.0/msvc/gtest_unittest-md.vcproj | 147 + .../gtest-1.7.0/msvc/gtest_unittest.vcproj | 147 + UnitTest/gtest-1.7.0/samples/prime_tables.h | 123 + UnitTest/gtest-1.7.0/samples/sample1.cc | 68 + UnitTest/gtest-1.7.0/samples/sample1.h | 43 + .../gtest-1.7.0/samples/sample10_unittest.cc | 144 + .../gtest-1.7.0/samples/sample1_unittest.cc | 153 + UnitTest/gtest-1.7.0/samples/sample2.cc | 56 + UnitTest/gtest-1.7.0/samples/sample2.h | 85 + .../gtest-1.7.0/samples/sample2_unittest.cc | 109 + UnitTest/gtest-1.7.0/samples/sample3-inl.h | 172 + .../gtest-1.7.0/samples/sample3_unittest.cc | 151 + UnitTest/gtest-1.7.0/samples/sample4.cc | 46 + UnitTest/gtest-1.7.0/samples/sample4.h | 53 + .../gtest-1.7.0/samples/sample4_unittest.cc | 45 + .../gtest-1.7.0/samples/sample5_unittest.cc | 199 + .../gtest-1.7.0/samples/sample6_unittest.cc | 224 + .../gtest-1.7.0/samples/sample7_unittest.cc | 130 + .../gtest-1.7.0/samples/sample8_unittest.cc | 173 + .../gtest-1.7.0/samples/sample9_unittest.cc | 160 + .../gtest-1.7.0/scripts/fuse_gtest_files.py | 250 + .../scripts/gen_gtest_pred_impl.py | 730 + UnitTest/gtest-1.7.0/scripts/gtest-config.in | 274 + UnitTest/gtest-1.7.0/scripts/pump.py | 855 + UnitTest/gtest-1.7.0/scripts/test/Makefile | 59 + UnitTest/gtest-1.7.0/src/gtest-all.cc | 48 + UnitTest/gtest-1.7.0/src/gtest-death-test.cc | 1344 + UnitTest/gtest-1.7.0/src/gtest-filepath.cc | 382 + UnitTest/gtest-1.7.0/src/gtest-internal-inl.h | 1218 + UnitTest/gtest-1.7.0/src/gtest-port.cc | 805 + UnitTest/gtest-1.7.0/src/gtest-printers.cc | 363 + UnitTest/gtest-1.7.0/src/gtest-test-part.cc | 110 + UnitTest/gtest-1.7.0/src/gtest-typed-test.cc | 110 + UnitTest/gtest-1.7.0/src/gtest.cc | 5015 + UnitTest/gtest-1.7.0/src/gtest_main.cc | 38 + .../test/gtest-death-test_ex_test.cc | 93 + .../gtest-1.7.0/test/gtest-death-test_test.cc | 1367 + .../gtest-1.7.0/test/gtest-filepath_test.cc | 680 + .../gtest-1.7.0/test/gtest-linked_ptr_test.cc | 154 + .../gtest-1.7.0/test/gtest-listener_test.cc | 310 + .../gtest-1.7.0/test/gtest-message_test.cc | 159 + .../gtest-1.7.0/test/gtest-options_test.cc | 215 + .../test/gtest-param-test2_test.cc | 65 + .../gtest-1.7.0/test/gtest-param-test_test.cc | 904 + .../gtest-1.7.0/test/gtest-param-test_test.h | 57 + UnitTest/gtest-1.7.0/test/gtest-port_test.cc | 1253 + .../gtest-1.7.0/test/gtest-printers_test.cc | 1566 + .../gtest-1.7.0/test/gtest-test-part_test.cc | 208 + UnitTest/gtest-1.7.0/test/gtest-tuple_test.cc | 320 + .../test/gtest-typed-test2_test.cc | 45 + .../gtest-1.7.0/test/gtest-typed-test_test.cc | 360 + .../gtest-1.7.0/test/gtest-typed-test_test.h | 66 + .../test/gtest-unittest-api_test.cc | 341 + UnitTest/gtest-1.7.0/test/gtest_all_test.cc | 47 + .../test/gtest_break_on_failure_unittest.py | 212 + .../test/gtest_break_on_failure_unittest_.cc | 88 + .../test/gtest_catch_exceptions_test.py | 237 + .../test/gtest_catch_exceptions_test_.cc | 311 + UnitTest/gtest-1.7.0/test/gtest_color_test.py | 130 + .../gtest-1.7.0/test/gtest_color_test_.cc | 71 + .../gtest-1.7.0/test/gtest_env_var_test.py | 103 + .../gtest-1.7.0/test/gtest_env_var_test_.cc | 126 + .../test/gtest_environment_test.cc | 192 + .../gtest-1.7.0/test/gtest_filter_unittest.py | 633 + .../test/gtest_filter_unittest_.cc | 140 + UnitTest/gtest-1.7.0/test/gtest_help_test.py | 172 + UnitTest/gtest-1.7.0/test/gtest_help_test_.cc | 46 + .../test/gtest_list_tests_unittest.py | 207 + .../test/gtest_list_tests_unittest_.cc | 157 + .../gtest-1.7.0/test/gtest_main_unittest.cc | 45 + .../test/gtest_no_test_unittest.cc | 56 + .../gtest-1.7.0/test/gtest_output_test.py | 335 + .../gtest-1.7.0/test/gtest_output_test_.cc | 1034 + .../test/gtest_output_test_golden_lin.txt | 720 + .../test/gtest_pred_impl_unittest.cc | 2427 + .../test/gtest_premature_exit_test.cc | 141 + UnitTest/gtest-1.7.0/test/gtest_prod_test.cc | 57 + .../gtest-1.7.0/test/gtest_repeat_test.cc | 253 + .../gtest-1.7.0/test/gtest_shuffle_test.py | 325 + .../gtest-1.7.0/test/gtest_shuffle_test_.cc | 103 + .../test/gtest_sole_header_test.cc | 57 + .../gtest-1.7.0/test/gtest_stress_test.cc | 256 + UnitTest/gtest-1.7.0/test/gtest_test_utils.py | 320 + .../test/gtest_throw_on_failure_ex_test.cc | 92 + .../test/gtest_throw_on_failure_test.py | 171 + .../test/gtest_throw_on_failure_test_.cc | 72 + .../test/gtest_uninitialized_test.py | 70 + .../test/gtest_uninitialized_test_.cc | 43 + UnitTest/gtest-1.7.0/test/gtest_unittest.cc | 7415 + .../test/gtest_xml_outfile1_test_.cc | 49 + .../test/gtest_xml_outfile2_test_.cc | 49 + .../test/gtest_xml_outfiles_test.py | 132 + .../test/gtest_xml_output_unittest.py | 307 + .../test/gtest_xml_output_unittest_.cc | 181 + .../gtest-1.7.0/test/gtest_xml_test_utils.py | 194 + UnitTest/gtest-1.7.0/test/production.cc | 36 + UnitTest/gtest-1.7.0/test/production.h | 55 + .../xcode/Config/DebugProject.xcconfig | 30 + .../xcode/Config/FrameworkTarget.xcconfig | 17 + .../gtest-1.7.0/xcode/Config/General.xcconfig | 41 + .../xcode/Config/ReleaseProject.xcconfig | 32 + .../xcode/Config/StaticLibraryTarget.xcconfig | 18 + .../xcode/Config/TestTarget.xcconfig | 8 + .../gtest-1.7.0/xcode/Resources/Info.plist | 30 + .../xcode/Samples/FrameworkSample/Info.plist | 28 + .../WidgetFramework.xcodeproj/project.pbxproj | 457 + .../xcode/Samples/FrameworkSample/runtests.sh | 62 + .../xcode/Samples/FrameworkSample/widget.cc | 63 + .../xcode/Samples/FrameworkSample/widget.h | 59 + .../Samples/FrameworkSample/widget_test.cc | 68 + .../gtest-1.7.0/xcode/Scripts/runtests.sh | 65 + .../xcode/Scripts/versiongenerate.py | 100 + .../xcode/gtest.xcodeproj/project.pbxproj | 1135 + UnitTest/testgtest.cpp | 7 + 772 files changed, 621608 insertions(+) create mode 100644 .hgignore create mode 100644 Assets/Environment/Common/Collections/Arcade/Exclude.txt create mode 100644 Assets/Environment/Common/Collections/Arcade/Include.txt create mode 100644 Assets/Environment/Common/Collections/Arcade/Include.xml create mode 100644 Assets/Environment/Common/Collections/Arcade/Settings.conf create mode 100644 Assets/Environment/Common/Collections/Main/Menu.xml create mode 100644 Assets/Environment/Common/Collections/Main/Settings.conf create mode 100644 Assets/Environment/Common/Collections/NES and Arcade/Menu.xml create mode 100644 Assets/Environment/Common/Collections/NES and Arcade/Settings.conf create mode 100644 Assets/Environment/Common/Collections/Nintendo Entertainment System/Exclude.txt create mode 100644 Assets/Environment/Common/Collections/Nintendo Entertainment System/Include.txt create mode 100644 Assets/Environment/Common/Collections/Nintendo Entertainment System/Settings.conf create mode 100644 Assets/Environment/Common/Controls.conf create mode 100644 Assets/Environment/Common/Launchers/Fceux.conf create mode 100644 Assets/Environment/Common/Launchers/HyperLaunch.conf create mode 100644 Assets/Environment/Common/Launchers/MAME.conf create mode 100644 Assets/Environment/Common/Launchers/Nestopia.conf create mode 100644 Assets/Environment/Common/Layouts/Default 16x9/Age.otf create mode 100644 Assets/Environment/Common/Layouts/Default 16x9/Layout.xml create mode 100644 Assets/Environment/Common/Layouts/Default 16x9/background.png create mode 100644 Assets/Environment/Common/Layouts/Default 16x9/highlight.wav create mode 100644 Assets/Environment/Common/Layouts/Default 16x9/load.wav create mode 100644 Assets/Environment/Common/Layouts/Default 16x9/logo.png create mode 100644 Assets/Environment/Common/Layouts/Default 16x9/select.wav create mode 100644 Assets/Environment/Common/Layouts/Default 16x9/square.png create mode 100644 Assets/Environment/Common/Layouts/Default 16x9/unload.wav create mode 100644 Assets/Environment/Common/Layouts/Default 4x3/Age.otf create mode 100644 Assets/Environment/Common/Layouts/Default 4x3/Layout.xml create mode 100644 Assets/Environment/Common/Layouts/Default 4x3/background.png create mode 100644 Assets/Environment/Common/Layouts/Default 4x3/highlight.wav create mode 100644 Assets/Environment/Common/Layouts/Default 4x3/load.wav create mode 100644 Assets/Environment/Common/Layouts/Default 4x3/logo.png create mode 100644 Assets/Environment/Common/Layouts/Default 4x3/select.wav create mode 100644 Assets/Environment/Common/Layouts/Default 4x3/square.png create mode 100644 Assets/Environment/Common/Layouts/Default 4x3/unload.wav create mode 100644 Assets/Environment/Common/Settings.conf create mode 100644 Assets/Environment/Linux/README-UBUNTU.txt create mode 100644 Assets/Environment/Windows/RetroFE.lnk create mode 100644 Build Instructions.txt create mode 100644 CMake/FindGStreamer.cmake create mode 100644 CMake/FindGlib2.cmake create mode 100644 CMake/FindSDL2.cmake create mode 100644 CMake/FindSDL2_image.cmake create mode 100644 CMake/FindSDL2_mixer.cmake create mode 100644 CMake/FindSDL2_ttf.cmake create mode 100644 LICENSE.txt create mode 100644 Scripts/SetupEnvironment.bat create mode 100644 Source/CMakeLists.txt create mode 100644 Source/Collection/CollectionInfo.cpp create mode 100644 Source/Collection/CollectionInfo.h create mode 100644 Source/Collection/CollectionInfoBuilder.cpp create mode 100644 Source/Collection/CollectionInfoBuilder.h create mode 100644 Source/Collection/Item.cpp create mode 100644 Source/Collection/Item.h create mode 100644 Source/Collection/MenuParser.cpp create mode 100644 Source/Collection/MenuParser.h create mode 100644 Source/Control/UserInput.cpp create mode 100644 Source/Control/UserInput.h create mode 100644 Source/Database/CollectionDatabase.cpp create mode 100644 Source/Database/CollectionDatabase.h create mode 100644 Source/Database/Configuration.cpp create mode 100644 Source/Database/Configuration.h create mode 100644 Source/Database/DB.cpp create mode 100644 Source/Database/DB.h create mode 100644 Source/Database/MamelistMetadata.cpp create mode 100644 Source/Database/MamelistMetadata.h create mode 100644 Source/Database/Metadata.h create mode 100644 Source/Execute/Launcher.cpp create mode 100644 Source/Execute/Launcher.h create mode 100644 Source/Graphics/Animate/Tween.cpp create mode 100644 Source/Graphics/Animate/Tween.h create mode 100644 Source/Graphics/Animate/TweenTypes.h create mode 100644 Source/Graphics/Component/Component.cpp create mode 100644 Source/Graphics/Component/Component.h create mode 100644 Source/Graphics/Component/Image.cpp create mode 100644 Source/Graphics/Component/Image.h create mode 100644 Source/Graphics/Component/ImageBuilder.cpp create mode 100644 Source/Graphics/Component/ImageBuilder.h create mode 100644 Source/Graphics/Component/ReloadableMedia.cpp create mode 100644 Source/Graphics/Component/ReloadableMedia.h create mode 100644 Source/Graphics/Component/ReloadableText.cpp create mode 100644 Source/Graphics/Component/ReloadableText.h create mode 100644 Source/Graphics/Component/ScrollingList.cpp create mode 100644 Source/Graphics/Component/ScrollingList.h create mode 100644 Source/Graphics/Component/Text.cpp create mode 100644 Source/Graphics/Component/Text.h create mode 100644 Source/Graphics/Component/VideoBuilder.cpp create mode 100644 Source/Graphics/Component/VideoBuilder.h create mode 100644 Source/Graphics/Component/VideoComponent.cpp create mode 100644 Source/Graphics/Component/VideoComponent.h create mode 100644 Source/Graphics/ComponentItemBinding.cpp create mode 100644 Source/Graphics/ComponentItemBinding.h create mode 100644 Source/Graphics/ComponentItemBindingBuilder.cpp create mode 100644 Source/Graphics/ComponentItemBindingBuilder.h create mode 100644 Source/Graphics/Font.cpp create mode 100644 Source/Graphics/Font.h create mode 100644 Source/Graphics/FontCache.cpp create mode 100644 Source/Graphics/FontCache.h create mode 100644 Source/Graphics/MenuNotifierInterface.h create mode 100644 Source/Graphics/Page.cpp create mode 100644 Source/Graphics/Page.h create mode 100644 Source/Graphics/PageBuilder.cpp create mode 100644 Source/Graphics/PageBuilder.h create mode 100644 Source/Graphics/ViewInfo.cpp create mode 100644 Source/Graphics/ViewInfo.h create mode 100644 Source/Main.cpp create mode 100644 Source/RetroFE.cpp create mode 100644 Source/RetroFE.h create mode 100644 Source/SDL.cpp create mode 100644 Source/SDL.h create mode 100644 Source/Sound/Sound.cpp create mode 100644 Source/Sound/Sound.h create mode 100644 Source/Utility/Log.cpp create mode 100644 Source/Utility/Log.h create mode 100644 Source/Utility/Utils.cpp create mode 100644 Source/Utility/Utils.h create mode 100644 Source/Version.cpp create mode 100644 Source/Version.h create mode 100644 Source/Video/GStreamerVideo.cpp create mode 100644 Source/Video/GStreamerVideo.h create mode 100644 Source/Video/IVideo.h create mode 100644 Source/Video/VideoFactory.cpp create mode 100644 Source/Video/VideoFactory.h create mode 100644 ThirdParty/GStreamer/LICENSE.gstreamer.txt create mode 100644 ThirdParty/SDL2-2.0.3/BUGS.txt create mode 100644 ThirdParty/SDL2-2.0.3/COPYING.txt create mode 100644 ThirdParty/SDL2-2.0.3/LICENSE.SDL2.txt create mode 100644 ThirdParty/SDL2-2.0.3/README-SDL.txt create mode 100644 ThirdParty/SDL2-2.0.3/README.txt create mode 100644 ThirdParty/SDL2-2.0.3/WhatsNew.txt create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_assert.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_atomic.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_audio.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_bits.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_blendmode.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_clipboard.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_config.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_cpuinfo.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_endian.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_error.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_events.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_filesystem.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_gamecontroller.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_gesture.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_haptic.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_hints.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_joystick.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_keyboard.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_keycode.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_loadso.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_log.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_main.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_messagebox.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_mouse.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_mutex.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_name.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengl.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengles.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengles2.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_pixels.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_platform.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_power.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_quit.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_rect.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_render.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_revision.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_rwops.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_scancode.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_shape.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_stdinc.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_surface.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_system.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_syswm.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_assert.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_common.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_compare.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_crc32.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_font.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_fuzzer.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_harness.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_images.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_log.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_md5.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_random.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_thread.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_timer.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_touch.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_types.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_version.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/SDL_video.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/begin_code.h create mode 100644 ThirdParty/SDL2-2.0.3/include/SDL2/close_code.h create mode 100644 ThirdParty/SDL2-2.0.3/lib/x64/SDL2.dll create mode 100644 ThirdParty/SDL2-2.0.3/lib/x64/SDL2.lib create mode 100644 ThirdParty/SDL2-2.0.3/lib/x64/SDL2main.lib create mode 100644 ThirdParty/SDL2-2.0.3/lib/x64/SDL2test.lib create mode 100644 ThirdParty/SDL2-2.0.3/lib/x86/SDL2.dll create mode 100644 ThirdParty/SDL2-2.0.3/lib/x86/SDL2.lib create mode 100644 ThirdParty/SDL2-2.0.3/lib/x86/SDL2main.lib create mode 100644 ThirdParty/SDL2-2.0.3/lib/x86/SDL2test.lib create mode 100644 ThirdParty/SDL2_image-2.0.0/CHANGES.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/COPYING.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/README.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/include/SDL2/SDL_image.h create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/LICENSE.jpeg.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/LICENSE.png.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/LICENSE.tiff.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/LICENSE.webp.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/LICENSE.zlib.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/SDL2_image.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/SDL2_image.lib create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/libjpeg-9.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/libpng16-16.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/libtiff-5.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/libwebp-4.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x64/zlib1.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/LICENSE.jpeg.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/LICENSE.png.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/LICENSE.tiff.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/LICENSE.webp.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/LICENSE.zlib.txt create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/SDL2_image.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/SDL2_image.lib create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/libjpeg-9.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/libpng16-16.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/libtiff-5.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/libwebp-4.dll create mode 100644 ThirdParty/SDL2_image-2.0.0/lib/x86/zlib1.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/CHANGES.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/COPYING.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/README.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/include/SDL2/SDL_mixer.h create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/LICENSE.FLAC.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/LICENSE.mikmod.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/LICENSE.modplug.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/LICENSE.ogg-vorbis.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/LICENSE.smpeg.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/SDL2_mixer.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/SDL2_mixer.lib create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/libFLAC-8.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/libmikmod-2.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/libmodplug-1.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/libogg-0.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/libvorbis-0.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/libvorbisfile-3.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x64/smpeg2.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/LICENSE.FLAC.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/LICENSE.mikmod.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/LICENSE.modplug.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/LICENSE.ogg-vorbis.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/LICENSE.smpeg.txt create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/SDL2_mixer.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/SDL2_mixer.lib create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/libFLAC-8.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/libmikmod-2.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/libmodplug-1.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/libogg-0.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/libvorbis-0.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/libvorbisfile-3.dll create mode 100644 ThirdParty/SDL2_mixer-2.0.0/lib/x86/smpeg2.dll create mode 100644 ThirdParty/SDL2_ttf-2.0.12/CHANGES.txt create mode 100644 ThirdParty/SDL2_ttf-2.0.12/COPYING.txt create mode 100644 ThirdParty/SDL2_ttf-2.0.12/README.txt create mode 100644 ThirdParty/SDL2_ttf-2.0.12/include/SDL2/SDL_ttf.h create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x64/LICENSE.freetype.txt create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x64/LICENSE.zlib.txt create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x64/SDL2_ttf.dll create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x64/SDL2_ttf.lib create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x64/libfreetype-6.dll create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x64/zlib1.dll create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x86/LICENSE.freetype.txt create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x86/LICENSE.zlib.txt create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x86/SDL2_ttf.dll create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x86/SDL2_ttf.lib create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x86/libfreetype-6.dll create mode 100644 ThirdParty/SDL2_ttf-2.0.12/lib/x86/zlib1.dll create mode 100644 ThirdParty/dirent-1.20.1/ChangeLog create mode 100644 ThirdParty/dirent-1.20.1/examples/find.c create mode 100644 ThirdParty/dirent-1.20.1/examples/locate.c create mode 100644 ThirdParty/dirent-1.20.1/examples/ls.c create mode 100644 ThirdParty/dirent-1.20.1/examples/updatedb.c create mode 100644 ThirdParty/dirent-1.20.1/include/dirent.h create mode 100644 ThirdParty/dirent-1.20.1/tests/1/dir/readme.txt create mode 100644 ThirdParty/dirent-1.20.1/tests/1/file create mode 100644 ThirdParty/dirent-1.20.1/tests/2/Testfile-1.2.3.dat create mode 100644 ThirdParty/dirent-1.20.1/tests/2/file.txt create mode 100644 ThirdParty/dirent-1.20.1/tests/t-dirent.c create mode 100644 ThirdParty/dirent-1.20.1/vs2008/find/find.vcproj create mode 100644 ThirdParty/dirent-1.20.1/vs2008/locate/locate.vcproj create mode 100644 ThirdParty/dirent-1.20.1/vs2008/ls/ls.vcproj create mode 100644 ThirdParty/dirent-1.20.1/vs2008/t-dirent/t-dirent.vcproj create mode 100644 ThirdParty/dirent-1.20.1/vs2008/updatedb/updatedb.vcproj create mode 100644 ThirdParty/dirent-1.20.1/vs2008/vs2008.sln create mode 100644 ThirdParty/rapidxml-1.13/LICENSE.rapidxml.txt create mode 100644 ThirdParty/rapidxml-1.13/rapidxml.hpp create mode 100644 ThirdParty/rapidxml-1.13/rapidxml_iterators.hpp create mode 100644 ThirdParty/rapidxml-1.13/rapidxml_print.hpp create mode 100644 ThirdParty/rapidxml-1.13/rapidxml_utils.hpp create mode 100644 ThirdParty/sqlite3/LICENSE.sqlite3.txt create mode 100644 ThirdParty/sqlite3/sqlite3.c create mode 100644 ThirdParty/sqlite3/sqlite3.h create mode 100644 ThirdParty/sqlite3/sqlite3ext.h create mode 100644 ThirdParty/zlib128-dll/DLL_FAQ.txt create mode 100644 ThirdParty/zlib128-dll/README.txt create mode 100644 ThirdParty/zlib128-dll/USAGE.txt create mode 100644 ThirdParty/zlib128-dll/include/zconf.h create mode 100644 ThirdParty/zlib128-dll/include/zlib.h create mode 100644 ThirdParty/zlib128-dll/lib/zdll.lib create mode 100644 ThirdParty/zlib128-dll/lib/zlib.def create mode 100644 ThirdParty/zlib128-dll/test/example_d.exe create mode 100644 ThirdParty/zlib128-dll/test/minigzip_d.exe create mode 100644 ThirdParty/zlib128-dll/zlib1.dll create mode 100644 UnitTest/CMakeLists.txt create mode 100644 UnitTest/RetroFE/Utility/Utils_UnitTest.cpp create mode 100644 UnitTest/gmock-1.7.0/CHANGES create mode 100644 UnitTest/gmock-1.7.0/CMakeLists.txt create mode 100644 UnitTest/gmock-1.7.0/CONTRIBUTORS create mode 100644 UnitTest/gmock-1.7.0/LICENSE create mode 100644 UnitTest/gmock-1.7.0/Makefile.am create mode 100644 UnitTest/gmock-1.7.0/Makefile.in create mode 100644 UnitTest/gmock-1.7.0/README create mode 100644 UnitTest/gmock-1.7.0/aclocal.m4 create mode 100644 UnitTest/gmock-1.7.0/build-aux/config.guess create mode 100644 UnitTest/gmock-1.7.0/build-aux/config.h.in create mode 100644 UnitTest/gmock-1.7.0/build-aux/config.sub create mode 100644 UnitTest/gmock-1.7.0/build-aux/depcomp create mode 100644 UnitTest/gmock-1.7.0/build-aux/install-sh create mode 100644 UnitTest/gmock-1.7.0/build-aux/ltmain.sh create mode 100644 UnitTest/gmock-1.7.0/build-aux/missing create mode 100644 UnitTest/gmock-1.7.0/configure create mode 100644 UnitTest/gmock-1.7.0/configure.ac create mode 100644 UnitTest/gmock-1.7.0/fused-src/gmock-gtest-all.cc create mode 100644 UnitTest/gmock-1.7.0/fused-src/gmock/gmock.h create mode 100644 UnitTest/gmock-1.7.0/fused-src/gmock_main.cc create mode 100644 UnitTest/gmock-1.7.0/fused-src/gtest/gtest.h create mode 100644 UnitTest/gmock-1.7.0/gtest/CHANGES create mode 100644 UnitTest/gmock-1.7.0/gtest/CMakeLists.txt create mode 100644 UnitTest/gmock-1.7.0/gtest/CONTRIBUTORS create mode 100644 UnitTest/gmock-1.7.0/gtest/LICENSE create mode 100644 UnitTest/gmock-1.7.0/gtest/Makefile.am create mode 100644 UnitTest/gmock-1.7.0/gtest/Makefile.in create mode 100644 UnitTest/gmock-1.7.0/gtest/README create mode 100644 UnitTest/gmock-1.7.0/gtest/aclocal.m4 create mode 100644 UnitTest/gmock-1.7.0/gtest/build-aux/config.guess create mode 100644 UnitTest/gmock-1.7.0/gtest/build-aux/config.h.in create mode 100644 UnitTest/gmock-1.7.0/gtest/build-aux/config.sub create mode 100644 UnitTest/gmock-1.7.0/gtest/build-aux/depcomp create mode 100644 UnitTest/gmock-1.7.0/gtest/build-aux/install-sh create mode 100644 UnitTest/gmock-1.7.0/gtest/build-aux/ltmain.sh create mode 100644 UnitTest/gmock-1.7.0/gtest/build-aux/missing create mode 100644 UnitTest/gmock-1.7.0/gtest/cmake/internal_utils.cmake create mode 100644 UnitTest/gmock-1.7.0/gtest/codegear/gtest.cbproj create mode 100644 UnitTest/gmock-1.7.0/gtest/codegear/gtest.groupproj create mode 100644 UnitTest/gmock-1.7.0/gtest/codegear/gtest_all.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/codegear/gtest_link.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/codegear/gtest_main.cbproj create mode 100644 UnitTest/gmock-1.7.0/gtest/codegear/gtest_unittest.cbproj create mode 100644 UnitTest/gmock-1.7.0/gtest/configure create mode 100644 UnitTest/gmock-1.7.0/gtest/configure.ac create mode 100644 UnitTest/gmock-1.7.0/gtest/fused-src/gtest/gtest-all.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/fused-src/gtest/gtest.h create mode 100644 UnitTest/gmock-1.7.0/gtest/fused-src/gtest/gtest_main.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest-death-test.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest-message.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest-param-test.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest-param-test.h.pump create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest-printers.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest-spi.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest-test-part.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest-typed-test.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest_pred_impl.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/gtest_prod.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-death-test-internal.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-filepath.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-internal.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-linked_ptr.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-param-util-generated.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-param-util-generated.h.pump create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-param-util.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-port.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-string.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-tuple.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-tuple.h.pump create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-type-util.h create mode 100644 UnitTest/gmock-1.7.0/gtest/include/gtest/internal/gtest-type-util.h.pump create mode 100644 UnitTest/gmock-1.7.0/gtest/m4/acx_pthread.m4 create mode 100644 UnitTest/gmock-1.7.0/gtest/m4/gtest.m4 create mode 100644 UnitTest/gmock-1.7.0/gtest/m4/libtool.m4 create mode 100644 UnitTest/gmock-1.7.0/gtest/m4/ltoptions.m4 create mode 100644 UnitTest/gmock-1.7.0/gtest/m4/ltsugar.m4 create mode 100644 UnitTest/gmock-1.7.0/gtest/m4/ltversion.m4 create mode 100644 UnitTest/gmock-1.7.0/gtest/m4/lt~obsolete.m4 create mode 100644 UnitTest/gmock-1.7.0/gtest/make/Makefile create mode 100644 UnitTest/gmock-1.7.0/gtest/msvc/gtest-md.sln create mode 100644 UnitTest/gmock-1.7.0/gtest/msvc/gtest-md.vcproj create mode 100644 UnitTest/gmock-1.7.0/gtest/msvc/gtest.sln create mode 100644 UnitTest/gmock-1.7.0/gtest/msvc/gtest.vcproj create mode 100644 UnitTest/gmock-1.7.0/gtest/msvc/gtest_main-md.vcproj create mode 100644 UnitTest/gmock-1.7.0/gtest/msvc/gtest_main.vcproj create mode 100644 UnitTest/gmock-1.7.0/gtest/msvc/gtest_prod_test-md.vcproj create mode 100644 UnitTest/gmock-1.7.0/gtest/msvc/gtest_prod_test.vcproj create mode 100644 UnitTest/gmock-1.7.0/gtest/msvc/gtest_unittest-md.vcproj create mode 100644 UnitTest/gmock-1.7.0/gtest/msvc/gtest_unittest.vcproj create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/prime_tables.h create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample1.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample1.h create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample10_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample1_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample2.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample2.h create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample2_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample3-inl.h create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample3_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample4.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample4.h create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample4_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample5_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample6_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample7_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample8_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/samples/sample9_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/scripts/fuse_gtest_files.py create mode 100644 UnitTest/gmock-1.7.0/gtest/scripts/gen_gtest_pred_impl.py create mode 100644 UnitTest/gmock-1.7.0/gtest/scripts/gtest-config.in create mode 100644 UnitTest/gmock-1.7.0/gtest/scripts/pump.py create mode 100644 UnitTest/gmock-1.7.0/gtest/scripts/test/Makefile create mode 100644 UnitTest/gmock-1.7.0/gtest/src/gtest-all.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/src/gtest-death-test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/src/gtest-filepath.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/src/gtest-internal-inl.h create mode 100644 UnitTest/gmock-1.7.0/gtest/src/gtest-port.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/src/gtest-printers.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/src/gtest-test-part.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/src/gtest-typed-test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/src/gtest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/src/gtest_main.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-death-test_ex_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-death-test_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-filepath_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-linked_ptr_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-listener_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-message_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-options_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-param-test2_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-param-test_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-param-test_test.h create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-port_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-printers_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-test-part_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-tuple_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-typed-test2_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-typed-test_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-typed-test_test.h create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest-unittest-api_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_all_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_break_on_failure_unittest.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_break_on_failure_unittest_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_catch_exceptions_test.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_catch_exceptions_test_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_color_test.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_color_test_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_env_var_test.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_env_var_test_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_environment_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_filter_unittest.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_filter_unittest_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_help_test.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_help_test_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_list_tests_unittest.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_list_tests_unittest_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_main_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_no_test_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_output_test.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_output_test_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_output_test_golden_lin.txt create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_pred_impl_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_premature_exit_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_prod_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_repeat_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_shuffle_test.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_shuffle_test_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_sole_header_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_stress_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_test_utils.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_throw_on_failure_ex_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_throw_on_failure_test.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_throw_on_failure_test_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_uninitialized_test.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_uninitialized_test_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_unittest.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_xml_outfile1_test_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_xml_outfile2_test_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_xml_outfiles_test.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_xml_output_unittest.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_xml_output_unittest_.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/gtest_xml_test_utils.py create mode 100644 UnitTest/gmock-1.7.0/gtest/test/production.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/test/production.h create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Config/DebugProject.xcconfig create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Config/FrameworkTarget.xcconfig create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Config/General.xcconfig create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Config/ReleaseProject.xcconfig create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Config/StaticLibraryTarget.xcconfig create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Config/TestTarget.xcconfig create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Resources/Info.plist create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Samples/FrameworkSample/Info.plist create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Samples/FrameworkSample/runtests.sh create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Samples/FrameworkSample/widget.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Samples/FrameworkSample/widget.h create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Samples/FrameworkSample/widget_test.cc create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Scripts/runtests.sh create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/Scripts/versiongenerate.py create mode 100644 UnitTest/gmock-1.7.0/gtest/xcode/gtest.xcodeproj/project.pbxproj create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-actions.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-cardinalities.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-generated-actions.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-generated-actions.h.pump create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-generated-function-mockers.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-generated-function-mockers.h.pump create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-generated-matchers.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-generated-matchers.h.pump create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-generated-nice-strict.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-generated-nice-strict.h.pump create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-matchers.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-more-actions.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-more-matchers.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock-spec-builders.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/gmock.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/internal/gmock-generated-internal-utils.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/internal/gmock-generated-internal-utils.h.pump create mode 100644 UnitTest/gmock-1.7.0/include/gmock/internal/gmock-internal-utils.h create mode 100644 UnitTest/gmock-1.7.0/include/gmock/internal/gmock-port.h create mode 100644 UnitTest/gmock-1.7.0/make/Makefile create mode 100644 UnitTest/gmock-1.7.0/msvc/2005/gmock.sln create mode 100644 UnitTest/gmock-1.7.0/msvc/2005/gmock.vcproj create mode 100644 UnitTest/gmock-1.7.0/msvc/2005/gmock_config.vsprops create mode 100644 UnitTest/gmock-1.7.0/msvc/2005/gmock_main.vcproj create mode 100644 UnitTest/gmock-1.7.0/msvc/2005/gmock_test.vcproj create mode 100644 UnitTest/gmock-1.7.0/msvc/2010/gmock.sln create mode 100644 UnitTest/gmock-1.7.0/msvc/2010/gmock.vcxproj create mode 100644 UnitTest/gmock-1.7.0/msvc/2010/gmock_config.props create mode 100644 UnitTest/gmock-1.7.0/msvc/2010/gmock_main.vcxproj create mode 100644 UnitTest/gmock-1.7.0/msvc/2010/gmock_test.vcxproj create mode 100644 UnitTest/gmock-1.7.0/scripts/fuse_gmock_files.py create mode 100644 UnitTest/gmock-1.7.0/scripts/generator/LICENSE create mode 100644 UnitTest/gmock-1.7.0/scripts/generator/README create mode 100644 UnitTest/gmock-1.7.0/scripts/generator/README.cppclean create mode 100644 UnitTest/gmock-1.7.0/scripts/generator/cpp/__init__.py create mode 100644 UnitTest/gmock-1.7.0/scripts/generator/cpp/ast.py create mode 100644 UnitTest/gmock-1.7.0/scripts/generator/cpp/gmock_class.py create mode 100644 UnitTest/gmock-1.7.0/scripts/generator/cpp/keywords.py create mode 100644 UnitTest/gmock-1.7.0/scripts/generator/cpp/tokenize.py create mode 100644 UnitTest/gmock-1.7.0/scripts/generator/cpp/utils.py create mode 100644 UnitTest/gmock-1.7.0/scripts/generator/gmock_gen.py create mode 100644 UnitTest/gmock-1.7.0/scripts/gmock-config.in create mode 100644 UnitTest/gmock-1.7.0/src/gmock-all.cc create mode 100644 UnitTest/gmock-1.7.0/src/gmock-cardinalities.cc create mode 100644 UnitTest/gmock-1.7.0/src/gmock-internal-utils.cc create mode 100644 UnitTest/gmock-1.7.0/src/gmock-matchers.cc create mode 100644 UnitTest/gmock-1.7.0/src/gmock-spec-builders.cc create mode 100644 UnitTest/gmock-1.7.0/src/gmock.cc create mode 100644 UnitTest/gmock-1.7.0/src/gmock_main.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-actions_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-cardinalities_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-generated-actions_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-generated-function-mockers_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-generated-internal-utils_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-generated-matchers_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-internal-utils_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-matchers_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-more-actions_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-nice-strict_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-port_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock-spec-builders_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock_all_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock_ex_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock_leak_test.py create mode 100644 UnitTest/gmock-1.7.0/test/gmock_leak_test_.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock_link2_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock_link_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock_link_test.h create mode 100644 UnitTest/gmock-1.7.0/test/gmock_output_test.py create mode 100644 UnitTest/gmock-1.7.0/test/gmock_output_test_.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock_output_test_golden.txt create mode 100644 UnitTest/gmock-1.7.0/test/gmock_stress_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock_test.cc create mode 100644 UnitTest/gmock-1.7.0/test/gmock_test_utils.py create mode 100644 UnitTest/gtest-1.7.0/CHANGES create mode 100644 UnitTest/gtest-1.7.0/CMakeLists.txt create mode 100644 UnitTest/gtest-1.7.0/CONTRIBUTORS create mode 100644 UnitTest/gtest-1.7.0/LICENSE create mode 100644 UnitTest/gtest-1.7.0/Makefile.am create mode 100644 UnitTest/gtest-1.7.0/Makefile.in create mode 100644 UnitTest/gtest-1.7.0/README create mode 100644 UnitTest/gtest-1.7.0/aclocal.m4 create mode 100644 UnitTest/gtest-1.7.0/build-aux/config.guess create mode 100644 UnitTest/gtest-1.7.0/build-aux/config.h.in create mode 100644 UnitTest/gtest-1.7.0/build-aux/config.sub create mode 100644 UnitTest/gtest-1.7.0/build-aux/depcomp create mode 100644 UnitTest/gtest-1.7.0/build-aux/install-sh create mode 100644 UnitTest/gtest-1.7.0/build-aux/ltmain.sh create mode 100644 UnitTest/gtest-1.7.0/build-aux/missing create mode 100644 UnitTest/gtest-1.7.0/cmake/internal_utils.cmake create mode 100644 UnitTest/gtest-1.7.0/codegear/gtest.cbproj create mode 100644 UnitTest/gtest-1.7.0/codegear/gtest.groupproj create mode 100644 UnitTest/gtest-1.7.0/codegear/gtest_all.cc create mode 100644 UnitTest/gtest-1.7.0/codegear/gtest_link.cc create mode 100644 UnitTest/gtest-1.7.0/codegear/gtest_main.cbproj create mode 100644 UnitTest/gtest-1.7.0/codegear/gtest_unittest.cbproj create mode 100644 UnitTest/gtest-1.7.0/configure create mode 100644 UnitTest/gtest-1.7.0/configure.ac create mode 100644 UnitTest/gtest-1.7.0/fused-src/gtest/gtest-all.cc create mode 100644 UnitTest/gtest-1.7.0/fused-src/gtest/gtest.h create mode 100644 UnitTest/gtest-1.7.0/fused-src/gtest/gtest_main.cc create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest-death-test.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest-message.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest-param-test.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest-param-test.h.pump create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest-printers.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest-spi.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest-test-part.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest-typed-test.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest_pred_impl.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/gtest_prod.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-filepath.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-internal.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-param-util.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-port.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-string.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-tuple.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-type-util.h create mode 100644 UnitTest/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump create mode 100644 UnitTest/gtest-1.7.0/m4/acx_pthread.m4 create mode 100644 UnitTest/gtest-1.7.0/m4/gtest.m4 create mode 100644 UnitTest/gtest-1.7.0/m4/libtool.m4 create mode 100644 UnitTest/gtest-1.7.0/m4/ltoptions.m4 create mode 100644 UnitTest/gtest-1.7.0/m4/ltsugar.m4 create mode 100644 UnitTest/gtest-1.7.0/m4/ltversion.m4 create mode 100644 UnitTest/gtest-1.7.0/m4/lt~obsolete.m4 create mode 100644 UnitTest/gtest-1.7.0/make/Makefile create mode 100644 UnitTest/gtest-1.7.0/msvc/gtest-md.sln create mode 100644 UnitTest/gtest-1.7.0/msvc/gtest-md.vcproj create mode 100644 UnitTest/gtest-1.7.0/msvc/gtest.sln create mode 100644 UnitTest/gtest-1.7.0/msvc/gtest.vcproj create mode 100644 UnitTest/gtest-1.7.0/msvc/gtest_main-md.vcproj create mode 100644 UnitTest/gtest-1.7.0/msvc/gtest_main.vcproj create mode 100644 UnitTest/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj create mode 100644 UnitTest/gtest-1.7.0/msvc/gtest_prod_test.vcproj create mode 100644 UnitTest/gtest-1.7.0/msvc/gtest_unittest-md.vcproj create mode 100644 UnitTest/gtest-1.7.0/msvc/gtest_unittest.vcproj create mode 100644 UnitTest/gtest-1.7.0/samples/prime_tables.h create mode 100644 UnitTest/gtest-1.7.0/samples/sample1.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample1.h create mode 100644 UnitTest/gtest-1.7.0/samples/sample10_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample1_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample2.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample2.h create mode 100644 UnitTest/gtest-1.7.0/samples/sample2_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample3-inl.h create mode 100644 UnitTest/gtest-1.7.0/samples/sample3_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample4.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample4.h create mode 100644 UnitTest/gtest-1.7.0/samples/sample4_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample5_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample6_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample7_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample8_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/samples/sample9_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/scripts/fuse_gtest_files.py create mode 100644 UnitTest/gtest-1.7.0/scripts/gen_gtest_pred_impl.py create mode 100644 UnitTest/gtest-1.7.0/scripts/gtest-config.in create mode 100644 UnitTest/gtest-1.7.0/scripts/pump.py create mode 100644 UnitTest/gtest-1.7.0/scripts/test/Makefile create mode 100644 UnitTest/gtest-1.7.0/src/gtest-all.cc create mode 100644 UnitTest/gtest-1.7.0/src/gtest-death-test.cc create mode 100644 UnitTest/gtest-1.7.0/src/gtest-filepath.cc create mode 100644 UnitTest/gtest-1.7.0/src/gtest-internal-inl.h create mode 100644 UnitTest/gtest-1.7.0/src/gtest-port.cc create mode 100644 UnitTest/gtest-1.7.0/src/gtest-printers.cc create mode 100644 UnitTest/gtest-1.7.0/src/gtest-test-part.cc create mode 100644 UnitTest/gtest-1.7.0/src/gtest-typed-test.cc create mode 100644 UnitTest/gtest-1.7.0/src/gtest.cc create mode 100644 UnitTest/gtest-1.7.0/src/gtest_main.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-death-test_ex_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-death-test_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-filepath_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-linked_ptr_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-listener_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-message_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-options_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-param-test2_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-param-test_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-param-test_test.h create mode 100644 UnitTest/gtest-1.7.0/test/gtest-port_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-printers_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-test-part_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-tuple_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-typed-test2_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-typed-test_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest-typed-test_test.h create mode 100644 UnitTest/gtest-1.7.0/test/gtest-unittest-api_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_all_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_break_on_failure_unittest.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_catch_exceptions_test.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_color_test.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_color_test_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_env_var_test.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_env_var_test_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_environment_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_filter_unittest.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_filter_unittest_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_help_test.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_help_test_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_list_tests_unittest.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_list_tests_unittest_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_main_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_no_test_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_output_test.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_output_test_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_output_test_golden_lin.txt create mode 100644 UnitTest/gtest-1.7.0/test/gtest_pred_impl_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_premature_exit_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_prod_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_repeat_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_shuffle_test.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_shuffle_test_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_sole_header_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_stress_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_test_utils.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_throw_on_failure_test.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_uninitialized_test.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_uninitialized_test_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_unittest.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_xml_outfiles_test.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_xml_output_unittest.py create mode 100644 UnitTest/gtest-1.7.0/test/gtest_xml_output_unittest_.cc create mode 100644 UnitTest/gtest-1.7.0/test/gtest_xml_test_utils.py create mode 100644 UnitTest/gtest-1.7.0/test/production.cc create mode 100644 UnitTest/gtest-1.7.0/test/production.h create mode 100644 UnitTest/gtest-1.7.0/xcode/Config/DebugProject.xcconfig create mode 100644 UnitTest/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig create mode 100644 UnitTest/gtest-1.7.0/xcode/Config/General.xcconfig create mode 100644 UnitTest/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig create mode 100644 UnitTest/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig create mode 100644 UnitTest/gtest-1.7.0/xcode/Config/TestTarget.xcconfig create mode 100644 UnitTest/gtest-1.7.0/xcode/Resources/Info.plist create mode 100644 UnitTest/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist create mode 100644 UnitTest/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj create mode 100644 UnitTest/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh create mode 100644 UnitTest/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc create mode 100644 UnitTest/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h create mode 100644 UnitTest/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc create mode 100644 UnitTest/gtest-1.7.0/xcode/Scripts/runtests.sh create mode 100644 UnitTest/gtest-1.7.0/xcode/Scripts/versiongenerate.py create mode 100644 UnitTest/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj create mode 100644 UnitTest/testgtest.cpp diff --git a/.hgignore b/.hgignore new file mode 100644 index 0000000..4539299 --- /dev/null +++ b/.hgignore @@ -0,0 +1,2 @@ +syntax: glob +Build/ \ No newline at end of file diff --git a/Assets/Environment/Common/Collections/Arcade/Exclude.txt b/Assets/Environment/Common/Collections/Arcade/Exclude.txt new file mode 100644 index 0000000..e69de29 diff --git a/Assets/Environment/Common/Collections/Arcade/Include.txt b/Assets/Environment/Common/Collections/Arcade/Include.txt new file mode 100644 index 0000000..e69de29 diff --git a/Assets/Environment/Common/Collections/Arcade/Include.xml b/Assets/Environment/Common/Collections/Arcade/Include.xml new file mode 100644 index 0000000..0b7017d --- /dev/null +++ b/Assets/Environment/Common/Collections/Arcade/Include.xml @@ -0,0 +1,749 @@ + + +
+ MAME + 03/10/2012 + .145 Ongoing + HyperList XML Exporter Version 1.3 Copywrite (c) 2009-2011 William Strong +
+ + Alpha Mission + aso + + SNK + 1985 + Shoot-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Altered Beast (set 8, 8751 317-0078) + + + Sega + 1988 + Beat-'Em-Up + AAMA - Yellow (Animated Violence Mild) + Yes + + + Arkanoid (World) + + + Taito Corporation Japan + 1986 + Breakout + AAMA - Green (Suitable For All Ages) + Yes + + + Battle Toads + + + Rare + 1994 + Beat-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Bosconian (new version) + + + Namco + 1981 + Shoot-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Bubble Bobble + + + Taito Corporation + 1986 + Platform + AAMA - Green (Suitable For All Ages) + Yes + + + Burger Time (Data East set 1) + + + Data East Corporation + 1982 + Platform + AAMA - Green (Suitable For All Ages) + Yes + + + Cabal (US set 1, Trackball version) + cabal + + TAD Corporation (Fabtek license) + 1988 + Shooter + AAMA - Yellow (Animated Violence Mild) + Yes + + + Cadillacs and Dinosaurs (USA 930201) + dino + + Capcom + 1993 + Beat-'Em-Up + AAMA - Yellow (Animated Violence Mild) + Yes + + + Centipede (revision 3) + + + Atari + 1980 + Shoot-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Darius (World) + + + Taito Corporation Japan + 1986 + Shoot-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Dig Dug (rev 2) + + + Namco + 1982 + Maze + AAMA - Green (Suitable For All Ages) + Yes + + + DoDonPachi (International, Master Ver. 97/02/05) + + + Cave (Atlus license) + 1997 + Shoot-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Donkey Kong (US set 1) + + + Nintendo of America + 1981 + Platform + AAMA - Green (Suitable For All Ages) + Yes + + + Galaga '88 + + + Namco + 1987 + Shoot-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Galaxian (Namco set 1) + + + Namco + 1979 + Shoot-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Ghosts'n Goblins (US) + gng + + Capcom (Taito America license) + 1985 + Platform + AAMA - Yellow (Animated Violence Mild) + Yes + + + Ghouls'n Ghosts (USA) + ghouls + + Capcom + 1988 + Platform + AAMA - Yellow (Animated Violence Mild) + Yes + + + Golden Tee 2K (v1.00) + + + Incredible Technologies + 2000 + Sports/Golf + AAMA - Green (Suitable For All Ages) + Yes + + + Gradius (Japan, ROM version) + nemesis + + Konami + 1985 + Shoot-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Gyruss (Konami) + + + Konami + 1983 + Shoot-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Hyper Street Fighter 2: The Anniversary Edition (USA 040202) + + + Capcom + 2004 + Fighter + AAMA - Yellow (Animated Violence Mild) + Yes + + + Joust (White/Green label) + + + Williams + 1982 + Platform + AAMA - Green (Suitable For All Ages) + Yes + + + Jr. Pac-Man + + + Bally Midway + 1983 + Maze + AAMA - Green (Suitable For All Ages) + Yes + + + Killer Instinct (v1.5d) + + + Rare + 1994 + Fighter + AAMA - Red (Animated Violence Strong) + Yes + + + Killer Instinct 2 (v1.4) + + + Rare + 1995 + Fighter + AAMA - Red (Animated Violence Strong) + Yes + + + Marble Madness (set 1) + + + Atari Games + 1984 + Maze + AAMA - Green (Suitable For All Ages) + Yes + + + Mario Bros. (US, Revision F) + + + Nintendo of America + 1983 + Platform + AAMA - Green (Suitable For All Ages) + Yes + + + Marvel Super Heroes (USA 951024) + msh + + Capcom + 1995 + Fighter + AAMA - Yellow (Animated Violence Mild) + Yes + + + Marvel Super Heroes Vs. Street Fighter (USA 970827) + mshvsf + + Capcom + 1997 + Fighter + AAMA - Yellow (Animated Violence Mild) + Yes + + + Marvel Vs. Capcom: Clash of Super Heroes (USA 980123) + mvsc + + Capcom + 1998 + Fighter + AAMA - Yellow (Animated Violence Mild) + Yes + + + Metal Slug - Super Vehicle-001 + + + Nazca + 1996 + Platform + AAMA - Red (Animated Violence Strong) + Yes + + + Metal Slug 2 - Super Vehicle-001/II + + + SNK + 1998 + Platform + AAMA - Red (Animated Violence Strong) + Yes + + + Metal Slug 3 (NGM-2560) + + + SNK + 2000 + Platform + AAMA - Red (Animated Violence Strong) + Yes + + + Metal Slug 4 (NGM-2630) + + + Mega / Playmore + 2002 + Platform + AAMA - Red (Animated Violence Strong) + Yes + + + Metal Slug 5 (NGM-2680) + + + SNK Playmore + 2003 + Platform + AAMA - Red (Animated Violence Strong) + Yes + + + Metal Slug X - Super Vehicle-001 + + + SNK + 1999 + Platform + AAMA - Red (Animated Violence Strong) + Yes + + + Michael Jackson's Moonwalker (US, FD1094/8751 317-0158) + mwalk + + Sega + 1990 + Maze + AAMA - Yellow (Animated Violence Mild) + Yes + + + Millipede + + + Atari + 1982 + Shoot-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Missile Command (rev 3) + + + Atari + 1980 + Shooter + AAMA - Green (Suitable For All Ages) + Yes + + + Mortal Kombat (rev 5.0 T-Unit 03/19/93) + + + Midway + 1992 + Fighter + AAMA - Red (Life Like Violence Strong) + Yes + + + Mortal Kombat 3 (rev 2.1) + + + Midway + 1994 + Fighter + AAMA - Red (Life Like Violence Strong) + Yes + + + Mortal Kombat II (rev L3.1) + + + Midway + 1993 + Fighter + AAMA - Red (Life Like Violence Strong) + Yes + + + Mr. Driller (Japan, DRI1/VER.A2) + + + Namco + 1999 + Puzzle + AAMA - Green (Suitable For All Ages) + Yes + + + Ms. Pac-Man + + + Midway + 1981 + Maze + AAMA - Green (Suitable For All Ages) + Yes + + + NBA Jam TE (rev 4.0 03/23/94) + + + Midway + 1994 + Sports/Basketball + AAMA - Green (Suitable For All Ages) + Yes + + + Neo Bomberman + + + Hudson + 1997 + Maze + AAMA - Green (Suitable For All Ages) + Yes + + + Pac-Man - 25th Anniversary Edition (Rev 2.00) + + + Namco + 2005 + Maze + AAMA - Green (Suitable For All Ages) + Yes + + + Puzz Loop (USA) + puzzloop + + Mitchell + 1998 + Puzzle + AAMA - Green (Suitable For All Ages) + Yes + + + Puzzle Bobble (Japan, B-System) + + + Taito Corporation + 1994 + Puzzle + AAMA - Green (Suitable For All Ages) + Yes + + + Rampage (ver 3 8-27-86) + + + Bally Midway + 1986 + Action + AAMA - Yellow (Animated Violence Mild) + Yes + + + Rampart (Trackball) + + + Atari Games + 1990 + Shooter + AAMA - Green (Suitable For All Ages) + Yes + + + Rygar (US set 1) + + + Tecmo + 1986 + Platform + AAMA - Green (Suitable For All Ages) + Yes + + + Shuffleshot (v1.40) + + + Strata/Incredible Technologies + 1997 + Sports + AAMA - Green (Suitable For All Ages) + Yes + + + Simpsons Bowling (GQ829 UAA) + + + Konami + 2000 + Sports/Bowling + AAMA - Green (Suitable For All Ages) + Yes + + + Street Fighter Alpha 3 (USA 980904) + sfa3 + + Capcom + 1998 + Fighter + AAMA - Yellow (Animated Violence Mild) + Yes + + + Street Fighter II': Champion Edition (USA 920313) + sf2ce + + Capcom + 1992 + Fighter + AAMA - Yellow (Animated Violence Mild) + Yes + + + Street Fighter III 3rd Strike: Fight for the Future (USA 990608) + sfiii3 + + Capcom + 1999 + Fighter + AAMA - Yellow (Animated Violence Mild) + Yes + + + Strider (USA, B-Board 89624B-2) + + + Capcom + 1989 + Platform + AAMA - Yellow (Animated Violence Mild) + Yes + + + Sunset Riders (2 Players ver UBC) + ssriders + + Konami + 1991 + Platform + AAMA - Green (Suitable For All Ages) + Yes + + + Super Gem Fighter Mini Mix (USA 970904) + + + Capcom + 1997 + Fighter + AAMA - Yellow (Animated Violence Mild) + Yes + + + Super Puzzle Fighter II Turbo (USA 960620) + + + Capcom + 1996 + Puzzle + AAMA - Yellow (Animated Violence Mild) + Yes + + + Tapper (Budweiser, set 1) + + + Bally Midway + 1983 + Miscellaneous + AAMA - Green (Suitable For All Ages) + Yes + + + Teenage Mutant Ninja Turtles (Japan 2 Players) + tmnt + + Konami + 1990 + Beat-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Teenage Mutant Ninja Turtles - Turtles in Time (2 Players ver UDA) + tmnt2 + + Konami + 1991 + Beat-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Tetris the Absolute The Grand Master 2 + + + Arika + 2000 + Puzzle + AAMA - Green (Suitable For All Ages) + Yes + + + The King of Fighters 2000 (NGM-2570) (NGH-2570) + + + SNK + 2000 + Fighter + AAMA - Red (Animated Violence Strong) + Yes + + + The Simpsons (2 Players World, set 1) + simpsons + + Konami + 1991 + Beat-'Em-Up + AAMA - Green (Suitable For All Ages) + Yes + + + Tron (8/9) + + + Bally Midway + 1982 + Compilation + AAMA - Green (Suitable For All Ages) + Yes + + + Ultimate Mortal Kombat 3 (rev 1.2) + + + Midway + 1994 + Fighter + AAMA - Red (Animated Violence Strong) + Yes + + + World Class Bowling Deluxe (v2.00) + + + Incredible Technologies + 1999 + Sports/Bowling + AAMA - Green (Suitable For All Ages) + Yes + + + X-Men (2 Players ver EAA) + xmen + + Konami + 1992 + Beat-'Em-Up + AAMA - Yellow (Animated Violence Mild) + Yes + + + X-Men Vs. Street Fighter (USA 961023) + xmvsf + + Capcom + 1996 + Fighter + AAMA - Yellow (Animated Violence Mild) + Yes + + + X-Men: Children of the Atom (USA 950105) + xmcota + + Capcom + 1994 + Fighter + AAMA - Yellow (Animated Violence Mild) + Yes + +
\ No newline at end of file diff --git a/Assets/Environment/Common/Collections/Arcade/Settings.conf b/Assets/Environment/Common/Collections/Arcade/Settings.conf new file mode 100644 index 0000000..341f7b6 --- /dev/null +++ b/Assets/Environment/Common/Collections/Arcade/Settings.conf @@ -0,0 +1,13 @@ +# override the default layout with something else if desired +#layout = Default +launcher = MAME + +list.path = ../ROMs/MAME +list.extensions = zip + +media.video = ../Media/Arcade/Videos +media.title = ../Media/Arcade/Titles +media.snap = ../Media/Arcade/Snaps +media.box = ../Media/Arcade/Boxes +media.cart = ../Media/Arcade/Carts + diff --git a/Assets/Environment/Common/Collections/Main/Menu.xml b/Assets/Environment/Common/Collections/Main/Menu.xml new file mode 100644 index 0000000..2a84880 --- /dev/null +++ b/Assets/Environment/Common/Collections/Main/Menu.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Assets/Environment/Common/Collections/Main/Settings.conf b/Assets/Environment/Common/Collections/Main/Settings.conf new file mode 100644 index 0000000..5863137 --- /dev/null +++ b/Assets/Environment/Common/Collections/Main/Settings.conf @@ -0,0 +1,9 @@ +# override the default layout with something else if desired +# layout = SomeCustomBuiltTheme + +media.video = ../Media/Systems/Videos +media.title = ../Media/Systems/Titles +media.box = ../Media/Systems/Boxes +media.cart = ../Media/Systems/Carts +media.snap = ../Media/Systems/Snaps + diff --git a/Assets/Environment/Common/Collections/NES and Arcade/Menu.xml b/Assets/Environment/Common/Collections/NES and Arcade/Menu.xml new file mode 100644 index 0000000..df54a3b --- /dev/null +++ b/Assets/Environment/Common/Collections/NES and Arcade/Menu.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/Assets/Environment/Common/Collections/NES and Arcade/Settings.conf b/Assets/Environment/Common/Collections/NES and Arcade/Settings.conf new file mode 100644 index 0000000..5863137 --- /dev/null +++ b/Assets/Environment/Common/Collections/NES and Arcade/Settings.conf @@ -0,0 +1,9 @@ +# override the default layout with something else if desired +# layout = SomeCustomBuiltTheme + +media.video = ../Media/Systems/Videos +media.title = ../Media/Systems/Titles +media.box = ../Media/Systems/Boxes +media.cart = ../Media/Systems/Carts +media.snap = ../Media/Systems/Snaps + diff --git a/Assets/Environment/Common/Collections/Nintendo Entertainment System/Exclude.txt b/Assets/Environment/Common/Collections/Nintendo Entertainment System/Exclude.txt new file mode 100644 index 0000000..e69de29 diff --git a/Assets/Environment/Common/Collections/Nintendo Entertainment System/Include.txt b/Assets/Environment/Common/Collections/Nintendo Entertainment System/Include.txt new file mode 100644 index 0000000..e69de29 diff --git a/Assets/Environment/Common/Collections/Nintendo Entertainment System/Settings.conf b/Assets/Environment/Common/Collections/Nintendo Entertainment System/Settings.conf new file mode 100644 index 0000000..6b6725e --- /dev/null +++ b/Assets/Environment/Common/Collections/Nintendo Entertainment System/Settings.conf @@ -0,0 +1,13 @@ +# override the default layout with something else if desired +#layout = SomeNewLayout +launcher = Nestopia + +list.path = ../ROMs/Nintendo NES +list.extensions = nes + +media.video = ../Media/Nintendo NES/Videos +media.title = ../Media/Nintendo NES/Titles +media.box = ../Media/Nintendo NES/Boxes +media.cart = ../Media/Nintendo NES/Carts +media.snap = ../Media/Nintendo NES/Snaps + diff --git a/Assets/Environment/Common/Controls.conf b/Assets/Environment/Common/Controls.conf new file mode 100644 index 0000000..b4fd723 --- /dev/null +++ b/Assets/Environment/Common/Controls.conf @@ -0,0 +1,7 @@ +previousItem = Up +nextItem = Down +pageUp = Left +pageDown = Right +select = Space +back = Escape +quit = Q diff --git a/Assets/Environment/Common/Launchers/Fceux.conf b/Assets/Environment/Common/Launchers/Fceux.conf new file mode 100644 index 0000000..6f3d733 --- /dev/null +++ b/Assets/Environment/Common/Launchers/Fceux.conf @@ -0,0 +1,2 @@ +executable = D:\Emulators\fceux\fceux.exe +arguments = "%ITEM_FILEPATH%" diff --git a/Assets/Environment/Common/Launchers/HyperLaunch.conf b/Assets/Environment/Common/Launchers/HyperLaunch.conf new file mode 100644 index 0000000..057a172 --- /dev/null +++ b/Assets/Environment/Common/Launchers/HyperLaunch.conf @@ -0,0 +1,6 @@ +executable = ../HyperLaunch/HyperLaunch.exe +arguments = -s "%ITEM_COLLECTION_NAME%" -r "%ITEM_FILEPATH%" -p RetroFE -f "%RETROFE_EXEC_PATH%" + +# For v3.0.1.1 compliant version, comment out the above arguments +# and uncomment the following line: +#arguments = "%ITEM_COLLECTION_NAME%" "%ITEM_NAME%" diff --git a/Assets/Environment/Common/Launchers/MAME.conf b/Assets/Environment/Common/Launchers/MAME.conf new file mode 100644 index 0000000..1094015 --- /dev/null +++ b/Assets/Environment/Common/Launchers/MAME.conf @@ -0,0 +1,2 @@ +executable = D:/Emulators/MAME/mamepp.exe +arguments = "%ITEM_NAME%" diff --git a/Assets/Environment/Common/Launchers/Nestopia.conf b/Assets/Environment/Common/Launchers/Nestopia.conf new file mode 100644 index 0000000..61a51d7 --- /dev/null +++ b/Assets/Environment/Common/Launchers/Nestopia.conf @@ -0,0 +1,2 @@ +executable = D:\Emulators\nestopia\nestopia.exe +arguments = "%ITEM_FILEPATH%" diff --git a/Assets/Environment/Common/Layouts/Default 16x9/Age.otf b/Assets/Environment/Common/Layouts/Default 16x9/Age.otf new file mode 100644 index 0000000000000000000000000000000000000000..5d767811bcf1ea95170f842cbc412731356f1f1c GIT binary patch literal 19328 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Assets/Environment/Common/Layouts/Default 16x9/background.png b/Assets/Environment/Common/Layouts/Default 16x9/background.png new file mode 100644 index 0000000000000000000000000000000000000000..5d5f7e69d64a27b22fbe9ce42c42b137e3b8c9d6 GIT binary patch literal 1889556 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

8^Vmb=^{SiVKG=o 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�Bn0_cNsf;5E86LAb5+)s#q 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⋙=?)zK=Yf0)k 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

mc@ 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%0A^-LF&xcVftvE6t)60CbMjZRz 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

&H3g52)lxcT-`^gX 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

~EhS4UG?bik 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

cVv!113L5 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

TSSb?RUPUmUpw)q~KDRO`&y3Um5-5!yY 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

$<(40(q;6_#AX9vpOa-e9`5|4P!?(aq{X;Wod# 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�p~f&PPGy4}AAWOnv{rMz7AhD(cpmp6CIz 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

})+(9yB#PtTadGB6z|SESQ3@0cJP-{wiUs`Z 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 literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 16x9/highlight.wav b/Assets/Environment/Common/Layouts/Default 16x9/highlight.wav new file mode 100644 index 0000000000000000000000000000000000000000..589d167e8d9e73b90eb4294138028273bdb77872 GIT binary patch literal 41276 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 literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 16x9/load.wav b/Assets/Environment/Common/Layouts/Default 16x9/load.wav new file mode 100644 index 0000000000000000000000000000000000000000..077480ea488e2ee3411a8019e6847a7311aafbb6 GIT binary patch literal 314376 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�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

    {f#c!Ke5hA#ROl>x>)dTD!zofO+pLqR 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 literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 16x9/select.wav b/Assets/Environment/Common/Layouts/Default 16x9/select.wav new file mode 100644 index 0000000000000000000000000000000000000000..6678b930caf8d5a0d8c2dd0155905d99d0571c41 GIT binary patch literal 242154 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%0DEZuC&P#P7(#+NAk)q=UkD`X(Nv_M;4)SfR8xs zE#M@wkdX5^q0Hi>GK+JNx}Rqf({oY=ryt)$nhLHkl~d6NoS&w0!u){q)Q7=+dHB}t zecb*Ic=l3H;biPnImJ%~)Lr;~u=|?5cKx#nr>?ri@c-ukdB}#V4^O*(d4yX=J~1uR zn?_BhVfyyvbk1`bzzoiPno}^RQRZo!&fequUE;n*SzaM6--~;ZbYBSeZ1j9)p{H*l zy7T5E3o#QJhS|tKWTI;?6ZwTq}_upfbemIiu!+@c*j_(`{3Gfy&8E>Nt{2g@azlA=RN$75wh#r?W zaeEV)jW@8r&WixA@k;$G*k45t|3tL(zec#%i8G0CZ;|FZ=!W?#Zz%YN!F%NQw*aHa zPyOMeD7U%@pQIk6fpOH~DatwyylM;(?dmPeqJ0)3pOHguxq$B-_?BdLaQh4X6Yw8T z+^1=?@r<13uxl!J;=82JkoFkz7!%rHD*2@&A2Kz%JV#B^BvBKlzkHYI*Gn~n>wjO{(b7_n;DZa zCsSwj$@{izIxrpgS+tGV>ulO8lW{f+m_r+?ogm`nD;Sxd@+)Lk6*0@=?+fOgniu6A z*#&m6i@8`1J|IY)kd9V`UHVlucBwAP*LqvKA9D}xQeYx>RZ9Gbd&ZYL#rAwl#24c} zAt&D!5p!A1cLCq(j!=SpHKkbztN?s%ZgGH5sLN_#74`U-KK7*%x$UGT`ReRS>b?S4 zLj6}z+a>rdqivLv(k~Bl3E!XKw+cUT_s?)!3j8y~wUuTOCxg_c#=uv~t z_FnS;e?O%K+9xL7(mJt2>voBW9dAv%`PTL~{*=`Im*VyuF>?6eQAz!7@6)Q!h#_f7 z0|qAdPwv}lz~JGJKAe{Dz{s@69#4DZ{wI=dx{0<+d9u}jVNa$djCden)X=nqKZQU^ q?K<2yY*fOazJ2>7qzry!$P)?u)9xQJa!A_9gp~FP{{1(%*S`U_CTu7G literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 16x9/square.png b/Assets/Environment/Common/Layouts/Default 16x9/square.png new file mode 100644 index 0000000000000000000000000000000000000000..de7cb82a493df05380a82fa7f077ad9795d6cc76 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^b|B2b1|*9Qu5bZTjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBufiR<}hF1enFxAt=F(kwJ?Ri7N0|o*IHsntbEn@tp7kS9( z+M}E2|L?7Kcs=d%j%9_uk7pe-?ah|DZn7>jhBSfgXJjs2V@`K^X5R|5kipZ{&t;uc GLK6T79Zg{X literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 16x9/unload.wav b/Assets/Environment/Common/Layouts/Default 16x9/unload.wav new file mode 100644 index 0000000000000000000000000000000000000000..65f069a25b35f6d6a81da2487b928ed5a80b50ae GIT binary patch literal 411596 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

    f(Xep_>_Mg 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

      yPSSZL@dQG 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 DE+|=E literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 4x3/Age.otf b/Assets/Environment/Common/Layouts/Default 4x3/Age.otf new file mode 100644 index 0000000000000000000000000000000000000000..5d767811bcf1ea95170f842cbc412731356f1f1c GIT binary patch literal 19328 zcmcJ031C!3(tp31d2f<_WFVPLNHUNN$e|DtjsW41Bg!FBPC-G0gb?mC2_cveA}B`& zxk*A2NH~OWDF_1MEgpER*Sg@fnkXnAsGqAsPqw4^|EgyYc4c+<`+wiORKI@xs;jH3 ztE;QJUxwX%_b_I%LS|(hZyPw!^KJ1h&ob6}B|r=sK5W!O)$67)7PblS!>~~aoimbu z?82DlVT`4w&rX{c|9yBj#`N16v+SFekv93q$usZ3yJrC1rlG)?YVD8wPk>g_W@qP) z{%`w7jM={j{+gK?nR8lw(I%ZSUWKwBW~b%OW4nd}Rf|Mo%t@P_QDn7%o>s`1_0+t% zS=kLISZCnlnR%Fo6mZMn7Rx6#?tPhAtrt+jPS4!<_pA4Y!iM(NE7l=+wlWKq;)gnx z?-~roY&za=uwGG={O|nfPR78;E<9K)QQA7DGn?fZOA($|`|sLc!3SEoN|Hf@EP?O= z>NhZXY1Nq?V@|@ji z2?>;&EY31EkZ(l!+vd(&lsSFsv~17K>9=?~ckI;BGii}$R8B_r+^kt?Ii69|XV1-v z_w=7N%cIb;Jee6;8JRg5ljHkO%@~<6b-}E(%wN$Jc25u9^i;IQWMpPdpF79XDZXRJ zjwtm^&+?>svNO{rXUtB^oavc6#WQg3oa`xSlQO5L$Nx&k-|Ag+CqunGX>%rfGG=8= zO`DVLq4_au`kV~Ul*|kys2V>lJ9}Qwgapb5$fVDmoxpBmbJ;w$h-I?rY$}_^vY{$B zvvhU~?wwgj)(PNYlYrr2qcAWTz?jRj*esTYCn}rHW}_sB#p9_z%4gwzjars^%0P__ zlv4f4!0eBJdGY z9H-%l+METNbCCC-jZEDAIpR4REs@N#F$O&`sS|+VFaJkw(os5FO?v1g*%zj@49uKn zq^0VaX|OZD{-Tj1_@`fVx9(JuM9F|216l8$y>9K(w_pF{+Xf9r(e3VL&0}IcEn42x zs&$*TH{a5(eO!n5gpQp$cS-C@RoERC&1%yPd(ik`ZZ-;WG;R_a<_vd5G>wc>?`O@P zGIwGAgDaM=EL!D#WbK-D>o;!Lw7FzUX<0>i<+iHrjNMOo%K#}u+0@1KkWPvEt=@Xi z7{*3WK7&o0nU^+^v2pi}y_d0_6EHaHH*yr4F>m_(Ia%2YG8a9-a+eequpxKh)v!Cs zl-e|`C~PR~q0StvC2I>2cV<0c;rg<1pfL@D@c`Sw9%a?+C_BNPXRol=*ctX$_Bp%4 zer65YC@oFP)e5u?me(vFTR!zfdty9oJO>&YK-U9$aZs@?7_Po(BNfa~XEWIL>*&3} zUS+4*hwL*}!+h))ZKRe8dW%8tRYfn-)9hDzp{h$97FBQfgt3OIh94U$aeuC1cSA|T zriRjnYCP?3c=T#Y_`iJh%h_L^XYA(%KhLMza6QSa% zYzW#O%kIUb9>?y(^kM8fEK%7k+_C`R4&3LkaBVvBS_{Q~(ZEXcBy1!*;q9NN*a>Z^7@%M!(0icTcz`tUpsfVNmI zi?GD8#+I4PrF{lEV^F@y{|@*rRX-1Peqv3upIL~aQ3yQZYXReyOlDe|uqF)cYo*M| z{sjIU$S1Q9;+{*#GAWMH6 zH>UI3_H$VfE@d^5vW6!a{JIn~QOzO&cyDjYMj}Ge_!z zKWjnBH?YB0q&D@&hH@9Ik3S`R9bS)%!5={_g9SI7Q8_9xaT#dkI8vv2n}F1=+O?xj zI5;OdL8{$gRU?=MvseJV1s9;t(K@9zmFg;WfFI79sJs)s;4B=eiCWZVWJ4`$1pVPi zsdtSO{Sf3`u$olv2;_B|e>sPPi%wSNJZ_tVNC_ z-~#0uq`FG&s+?MJu|_HlQK>_vja3?|(y)e7a7o-YRq|}AIBW_!msupn6!L(n1X){p1j8q3sGnNRRn**QHC~(po zn3V5=v1^XEwJZksmypt!#scRXr1UlxZ?7O74{Gr3RccjfFv>j`_bc$mNz+b3=MSCEo4+Oi;(I#8=EWcU)&a8PRt$y1up@CZ`sU0cX%5u94e-vVAZQp&dr zq+LL#9dItQ_UH?xp(tq&DN!1(N?d5SJ$ghbX?}Z1vKA@HusueEFljX76wMAuIqRTG z;=yw*d=RTjZ7S7OY6pHi#)#5J=tVpu{fq|>l#+hNL#mX9s<&Yc2aqRiiD#` z9&RBASTM>7YSa=iYG;tAQA@yhQA({OpcTRiQK>_fH&!XNl7LnSljcGKbk;=Lx?vg8 zc+6#TO{ta6DjkosBW#k1l;qhFZzxYv?F3HVLTXj1O{Ka@4e)@qNacwik`YJRNR@=B z)S=SGDs7_DP?d&(6UbWCa;Y=|qtFR9xfUtes7|bz$~RYOj7mwfM;(d@+9seF5Aawpb7;lwMP@p#)AWiI%7WMjLaN0ich?4mTVi_-iq;OYuWT;QjR z()ljnrv`bN(Os0zcVQk?(h{w70S`o>ovIawT8V1x64lrxs{ zq8hMCEA&6ET8wk%p_fv}PqL`6PlLYO9$lX|7V5kBQ)o(iRH8 zrOK0(5|v~U8A&FQ#i{ZRDkb@J1<#j}l4b4+`UjClfs?M7cP}AL1phtRt&kr1$&~g3 zW>0vRE_jkXp|`zQFHq~n`T)Nd>ks^1c+25y_5n_Bg?TI9UIvx^kkzf~Z69E{fYBQ^ zu8*SMN73&C`X);HtGCojU(~&VIz2%l8Tc-w#80xqACH_1J^)sHv>AhWtIbNwo&%k> zk!Jv3pWbM+Z-g>Go~G7!@*^7A3mhGp)})ET&SihsY??z0*J89Jt&euQ^7yA{^RyhT zP+OywYP+=)+DqD7+E>~)+7A|Haah7FEiE@&;w?#*K9<`pLoCBBMV2bdZp$IdNz1#I zGnP-ShP9(L*}BeJY&~TC!CG%~*jm}*ZM|*dY^k?!1&mxF}^asF@7-W?S{RHJ=)&N9&b;wC)@9|kFih2YC&r; z>6YIUBAx9%&KM=`7E@C5+3pNjwMj6>>TE%IVrZVywDQ^MgD{5WVkRyCrJ1BJpQisB( zRhHIR^6zMUC27!lN~@A_L079It%tM@(#m&@szq67dbX%iTB~%m z!qJ*WD;n`ZrPp{Nxzb8SD->C3TAfH9v`)}kM17i(o~%3BbH5}?l_e(& zMV8yoKaC_w>~cV2-za-ab{4Z0oRLlSw+0UwR>$Ac8MJgpX*5|zvV~*`$qo{AvVLUy z{Q5!`&ZcY$SvIn3WN&o8RRb1TG_q%8%`D2A(R-`1Wn{^y+^*~xSuwInembVIUWBVD z+htR>i!9ewoNMj>v+j{z|8Mk<=+NxF(X6?uzyH2&`1SvK&8IoypDF(;y@vh!xog^b zb^iEEZlv$mH2>et{Z?21XC?m|V?uMnZwdeN+|}{CW|x0Ich%Zaz2D}q*~|aC+&|k` zf4u3pxLQ!XT5+Q>tM0~Tav>{Xr5e{FwKiI!maN^aP0-%5SS*p2WJ{`LhGn&NlJ%S| z**4tvh5kKeC`I$+E2iSU1NWVPAk0zDmIGD*RsvQ5iU3}~YJdgxj-$?TmAj&9TNRzF zG@2<7k^Do7OepdupKv1X%kjJduoAEePz3M-Rs$XZtO2YAtOKkEl%mcSKpCJMPyyHq z*amu)fGWUt0JUF>KGdQQwd(28uRWr7m+^EN?`TD$9$)3uhQ1txckg1O0jbDaetmMI z7oY`fik~SKp-6<{fr+@M;=UaB6@Zn1Re&OZ7qA-O?@bMQQ-j{rpf@$F1m&fGEr2pW zIiLct6%e9iMiKV!$!HDUuLZ0FtOw}ItER|!G++W?DS)FCUMl1=8h46`Cm_ERumSmv zfK7nS0NPnOt72h_gj129jQb8y*cljU|M>o~R*(l=qkMLXvnU3p=!8av{C@JRDf*z8 zmZDhVb|T8s@H_?gIe4B6m))qh+pd3&E*b3MNs0362wgawe673~i321Q*dQ_`=MDgOt3jIyP;m*RN~pbStBr~qsQYy(sRssP&o*Ji_2N>sZQ zdW(}r$ce^~;$n)aNaHE~rMP!A?iB4#L^;iX$tYV6ycK|zfK`AZfETbDaHBEUfchH& zn*f^uCBQ2My)A$;KslfSuoZ9{IC={ly#rw+%zSjQfOK&n+li)m=2f$mVU^Uz&gNszy{FT2-pPJ3@AZaDPRkr3{VcJ0Bi;PRvZ1cxg(@; zDPWPvu98lW1+Teoj@770`r7=u5}02#m|r!RUp1ItHR#n9^y&(Fbp^e;f?i!gudbk1 z|EYccSM%u~?eh+_xf5W)DFq@*%P-bv)V?ZfxPlgc_xDHd{goRoL#u!1_xo=V;hrUE zID>0$!#6l*I@53oG%xutA`JZisOtc7$LaZ>f1vOWTr?cSX#VaG_W1_C8<*YyQ5F5M zgl>po2Iz(3PO<-Qe$WT}FvA&koiS3F`#1gt${Sw9j1BydvmiRukm6$x*bfW#cWKx4 zChUg9s9lgw@cff;rgk^1N)oKfc$7}S`B^WVpG`&#Fa<~9{n$db6enrR;dzW_YhW+Z zSqavrnV=j^o-^WQJA4)n-Ws7j+JUE?@ut`>jzxPnVK280c0Ai-_b~x67WS?X-C5uT z;L{mg_=WVH1Fks0sRJ(BGmnBlKpbd_ z1B>FosyNU=4ZC9CqAU7-H!cJ68x8ykxNJCmoCun!xEev0X=sh4se`{Mpf(kk1qbc( zkrJ;~#j6dxdcoCdT*2%STtSfadgO_FuDGY2hnoN-JGyL&dkyV|1o{Af5|;t_hJzOM z1bzrEQ%SUu>Q9L3k3;pRvFcBd>W@YBr-|xM6V)G6^~a+6qpSWHsy~fYe}YthLeQJp z=qL5Zq59KU^~a+0#j1K@Q$5k3H6?-m=xiI#r|qg&oVK!TILFmA8@@B4`^~;4%-2lw zHE+axF&1Bp)fa1%;d1)li|Rhp#el}Xp`lgHnm-$c(@9P5H)Z921saa}**OOBvOFB|F+|)rzQ>%y@inB4gL|yf_!Iy#)K)M^p1r{E z=?go|5D~D)7~8M0LyW;fJkHpYj6GptPce4P!pays$=Gv@J+0x30`@G!Sg@BFd(nc= z3owhJR**k?6Q7J}I5=i+Fa|@pj98vB&tNEn_2 z4qw@47WRe4cF_U64F~hX(1T5^5?I5r#rTrNZs}}Uj19ySmh;wV>#f#>)`Qk3tzX*O z+E&<#ZI!kiwq3T1 zj0u?$vLIwx$hwg75MM~Wqm|=s$3u>4$KM(ojl&zqH6Ge{R^uIwpKH>%$%rP8H~BiW zb7)rR#?ZIITw#5~riX0|dphirv#GPCvxBpTGu1iG`GE65XSwt9@V?4>kJ+MBj*I=JcdrqxaV)b!J)UpM_BGAPm$d2?jP z$a^D?M}8TlMfHtZ9Cae9CR&SjM0bfE8~sppN%V2~f#W@IYc6aHwY7XK7x~AzOc6=; zeOx9PL%8Vf72T`3S9X(0(H;0;E_&R`9jMTXx8Vg`I+M6?iqPm5T=t0Pj$FI}9jmV_ zVgk2MRG1*$3Us}|u*=|!ai#pC2#ys=UeS#RcbDCx^9l;`Vq^~^7vzufHv>d&;SM>r zDo4B~Quc@xA}jKb@tdgGWioU!7q1ylpY%Tc61U$s-g}?BVomY3m?KBLM^WH-SK7oF z*-!L4AZ`^7krK8|q|D;Ze39qn!|kIh#~sLsY1Q(SOcE2_BH3_0Q?}{hyjYQ9h~T6T zM{(KF$nhSia*K{A_^fsff7Sl@(#K~$8uQd9{U^J0N~c#k-6Bb*xVrNc`)z(qJh!IQ{F>WTpsV3Q#V3b!%9TK z2i#dx^1e%^JZcxQ?|vmhVwZ9;1HyH_Th3*IS0>1W=)8xQ1gteg}eDD-q~nQL>Z;U%a*Ktg^NWG?#tgXr#z~5NsT(1RD#(*3#fV?5q*_Vu*`IzlcVEbztzB~MV#CSZ)!;^d= zzIKp7pmPg&d5manTz$Tk%htxkd*)2ZianHhZ}kMXZ1wt8)OWd~nEO1}*A~HX7w7Z1 zI2j!4r}qw5n%0l^;IX85XLxyOL0)V!cf8jzN7zUUeJ%b3rLjZ*lAxq{Tyzsj(dDJ3 z;G>5DCGJuFE3&q&H8j(62&nc43IhZSkfOx8w8Y6pOz8BE_1>9k-HTOYg-XeBc=2 zn1o>#6Mc(aE!EVA#aX5-&Wji+*=;f(!wtvl&T^062khHf?$6VS=C_K&MHHzYW7A z*qgxRUKqDU{&!?1eI97tUZ{7d4D+7mKaa3upu@Z()GbH*%3PaBrS_6p7;QKfq>@Pt zukmdmn>d6|<0k_IM?>$3{HiIln#_WIfg%AuJtz#bz? z?2hMo-SCClc96ZFJ61tSwk*`jfYK2q;>s#spN}52Gia*3DpQ7M@^7FL`F6)?uw4$k z4GY5{CvUa$dyyI;3cS$Ag4JB!>8-z6+M=Bo#57Uv`rIfXTNHanuF%COBT*cBm6z?@ zyst*=fh|gw1yIw%WlP-M4M#6x;Tc{@Ekhskz-L}y3F;=gM?1tbRXGrZZxjh4%J-sc zfmk5_dx4z4kS`ZOn^spyy;?5ZBd3ew-rZt))LyZ$T&Z|{vMHH7X!TFE-@fl z%$MJ9&yfpaX2|pUa$|+z_*)g3Ka%nWB7XldUVpoNvy5C?lqZbb3yTEHy%4qJl?6}C z*%jouDDRyj?^?(UMbPHe^ zs=jXdlPM8*(CD>7_#)DEahtuq(NlWfBL&6f(PA&i%a`mTB}*3{W7+-?E%nC0^-`;; zSVUcQh~BP}qKyx)E!-p9MT&98e3A6f;U$kxDv5fwddKmXqlE@$+FX>uF|dm=xP1=a zLdLZZjJ(u{sXj90Rm1TXEaCgdlqI}HHa!yikzA+eu3xe!$BktxMf5i?#|&i&dy93- z5>~oJ{82s*R<=?M&_s9Ay6(P8SA8Yc$x3mH7*L-h2iP&~NHNu{yEUMc$~E!j!#Y7x z1}mlf>q&AC)T-rMj2DaJ`N69uv72u{Ok(@`R884 zJXd{aSL~FX&&`2BYz^&Kl!54gzF_W%k3|`5;j$%bV$aIuI&2#Bd+EMB|B_q2W7EFR zMRg=Bqtf%0SaaRk#*)HKu#Cx~;4%KWtll)MJi9s%hA}UD>8wO~C=!$8j99LhtSR1D z>UO-N8cN}g*)Rg1+y{$TQzV-EPLnwwYONH_c5>N#2d^7pt3M=$`VQG0vYoF?+^KC7 zz4veBV!XI>4=P>umu*G%D5TT_wezf%z7{Uo1M{p0Y87G}F!?oM(m1>nfr$W<_*o2* zgN?nHc7MC~n;;Q!wClI0x#L~0=qG*@1Hs;4G(6BM@{aLgyggQYSsl+Su##Q6xQ0K8 zdwaCqt^QG$Xe2UpIS?!M;s;`q#E&k?WvVWc?G>e^6)}#~ar{#;_!DT5ubc3>{wl(T zi*h;HEjP;nVzcptx0lKf7F&#?-ky`(atoN=Z-{jT;@MYaqgcm!Oo~)YinlSGPzS3p zj`1W}rOTERzeyC$-J*p|6+`Mq$RYA=X&MU)D=OE<)`-2jV-gk%Os=D1kS5+EsU7_j ze;ErwmoH?K7|&7hk{DEZl9a3pv-ok;wNhR3YsE;ao$s3u-%mu^ zyYn%G7D={muYWoC1h()KEC=!4gao+ZBC;=k0Ta4IV9+YmP^8(bN*3il94q7N7m%$L z?R~R!5q&)AqKt7nwvOXpi|(}~s6~E34TGT4r%drqam)1Kvb=`~jU6EyEs@WOweBOv z8RLi{)-Dmxy#gu8=CZ#leKLHMv8#%{e(sT=BTsmbJpV|-X!i=S(M2>;y|u><9r7M> zpDZfsdjIMm$H8&@h)DS}*J!Cw9jq5wF7zW3Yv7CiZbgz2QS0Q#==sNe`PbgBFTeqd zL{~>+#qCMD9!gpn32m=fMG7~~UIm3)7CT%MW>BgaeANE+^H07mLSjU-casE@ z&E2wX{b~QyaLBLk;j*@99dy68NVFHj*Ksl2CWeak@Sf!tC>a)3D5l9FVu-V9oA_!f zhvt6ek^_uM-u~&)&KI%@9$FAnB;$3_GymjYMR2r3R@4nTuWhZ{-kaZ2mwa9;u1ofC zSzI^xy!LwCj&59DNcc)yCwuPVkG>fxbt9wWc7zmlV;5?F_FazSo;vF}tul*SE9b1q&;BWe$4Os8iaWZIG>?Fe>|LY#! zQnX(f_Mn&|lST5@XSwqbtVR3L+*!Sx4@Br7I*#Yg(*u?1srrld(S2N0hV+jGD=KQ=^VYbxmaZu&iFL@2<8yqcMRRQj23chIK6lBXvbh*))StHb4#}bQ zuxkCJfmIEi_Jn)V?vf!fvf04T zB%>+Z7W2bT(jni5;SPIIBsUegb;Hra7tllbhOcQ(*tTtWn!+9Z)PqQV4bL@GxG0bv zOE}7t>qagNgP?XmR;PXGbt6%`dLYJ6N$L>jyuf|6!U|`urB@u-!sP+kGTK*5x<-*& zZmP(UDXmF~7a`JmOpJ0K5KB{Cn5xcM$Iihy%;233XT?);l-)V&{^j=Je4U|IfEnk) zeiUQ+ij*WV#`$hf?z~XnSA5i#`({AYt$06v;+gFSAB~;9@5F)=ZXXvZ_1t*FAK$#s zt4bbN_;Bnv*%?lTaYTga2l#}0v!`apKCxg-gk$-L^snH3)7f#0hna(ZbfB`yx_#(ZaCG*4+8c z-xJ8=eFGlvQ}(r${N4pKGh>~f9-2S4e4@J@{GoWhgr9hJ>tQUh)hBaLxaBl4*|m7p zlEQrVeh%YTZSNRhZk4^r4*$uqW*k2zY`cW@IE=zEOoMWD?(d z{trX06yKoUd=jtzW6W251G@op*B@ivBrbS>`G;+1i;HnYaT)Ib3Dx~UaOk`eCoZ%F z{yv!5Kcrpe8$5s`X4}`5-&OZUZ_4iP%HODavm0fryK)&)H^)Qyz4<&*jM)he{{EZT z&Ur-!)y-|oAK-F}aP;PgwdS4=#9Fe22HJ-)#H)yr!C>KXBn?>5&LVlFkvP7AAH=BsPIMz56X$vZjTCC5KLm=4E8_tl@8ZQ$zJexFwd)aHP?{IB zpO4`11oy%)l$Q?TvbXQ2Zm7NIe^&b=U#SPR|3@va@D)?{c5nW@-Z{UK?}%k>`7AL5 zGZw>y0h_LDUxn|oFMkd?e0LzqLlkpz9{2t02&R6#Xxy6z(0-yoXD9+2nDTskUTML4 zj-8r(JN7FZcO#?|p!F}2{<6s4zMR@Et&}z_=mUVV(Hx@;o*tV}9%t^X|j)jCE3NtdAEDknaG$ z0V~2Z8M2FStc(g&!Y(&?JEu_T6e_`X*+?D-i=Y6|gEb4at+*-w|2yAw*TFq&SLogi z%krXS@zo$_w+aRh`rZC{Si}+Ch&A>jYYz;2EoRxq$My_)cgDP|J-W=tcB+h?I!DLO zF~X&GE*Oh?>``J@y$8oW?hF`{z;iiS6FEzytFfc8|LrDnZ}C!ZK8|}u);PW&7`_(A z6$#lRjkkw|LR?JY=v~-$&Raa4Z&8yFg?`$t#Vg&e*53Ue*FGtx__eMvZPWcn4bKvj zRHwG*^Y|>@9y9!h-}Vi9*;u3nEYmDnNUqtXMzBjsuuDm_`vf~N;QXB&>qn)sK7(Oc z;NrPx3q96{Ba8YF*dcY_%Xjz?+@Qvw-$RlyzCp_VBnRxzKkQRux8~}uvhzcE)R)|r z{{@@Bh@1kOzg?*fD!Subm@u<=Yjp6ZL@u*^cXZ-TpP19R6L%CA`wBLQ)M7)*d`{3${S)p)99gbq#W=e>hO^06aq9R1`-uG&A4|q*-L>A@ zZQ31Lrgl_&UOT0o#y=<2;KND$|1ER~j> zmOYkJmOtSi6fRlAt&!Gd*4wOut)r~>T2rmlt@Ew9)(!ZFg`GHie8&2+^>yo?tbeh7 zZ2jB{hty`V+3`;d;kGDSb6Y!GcUynk0NY6XJHtdy z)K+1uvK_IVusvgY!S=H4H2&G)tnD+~Iok!>kNA#&>!Es-?$KMRe|_ks-=UAz@7L4x z4E)=}BK<-9+rxUj1poH1OFyh1)1TI#*H7uM;h!Hq#J@k(=;!nc`VYF#uo!kD#0WQ{ zj2Po4qpi{2=xp>fZa0P+_ZasXlZ=^0wvlfX;$I|+jCIClqs*u@b{Tt(gT~>V+}O2W zUvKQ3sc+&VKF~`Gm#lrD`yg+3_X7nh7cYr*&`u^c58H9GBX-5jn|Z9MAv&;{@J~}r zUke<^^swg@K-)02T5_`!_Yd(femggP|0T}54$wZQ|Ljl%zlK^f`EM3?KaVa*3QtYysSGuJ; zdd^($9Jg7BP0N4U?l)Z%JLy>7J~*#C%1cLbQ-(gymvVCkzbJxDpIpT$;wXNIi((aV zJYUuS>9H?oM#*(#N9`}~divR_vq9#0S^{!?FN&$Ia{i3ytXHmIQh{C8BqOh2Ixj6K ze~mj&NXTdyd0CLDGL0fa@Yb^3_*iGI>H0wNF%f*&+k*|9$(lwN^m{R)zToyN_)6U9 zD4_x(*}*esB6`o-uj4G^m1Mo37}5LZ?|46VSCp>VLeYB&`WuUUP5auRU`9F1PG(k87E?bfa6?jE$=cmbx8kMztdxiiT=Y8lQu?n(iXuuwIT8XZHPFq-iY4D zP4YW^%Ch3@CohYp-pem>nQZ@2e5*fQoKrfXwRCt}xy@NnZZCBEH5VZsy(|VQ#Hl#d z_1#aHCBW zALJ(1;hzh6rCNJm6fGa;vZYtPhy~b;2J*Gj&Bff@xn;xlnAIX)mr1+FcaRV^PL8qn zWu6poqpi2ik^DiLITz7JlLCGk`ApCdhmp9R&wXa*p_rF`)a6XWc_44LF5A(Bkz)+= zyc!sD6n_|#31^TPb&7_@kQh@;tRLnI{vOAPYql$&yZSKcKDOy<6O3=_dU9ln;w znD33_CSss@SA!!{c7L3{Ixx>c&&`_IR&yoKGX+ZWd0ZAZ^T&@ZUh;TU zvZ>A{%&f)OsWWfK)P+`>b;DhzSg}hS`B*w*h4y0)Y`+Y1o5#seM3-~(NnVa_$C@~A zz=%^sZhe}Y?<4Yn*vXqW$%zMz(FU4J$l~p2tu^7{(iy+M_bz-qaMb&kBhltvh*@Sp zb}exP*3t{H?8gi=Wr_j42K2UyVRa+-03o^QHlL*gGAnzeq`1s24#S6=VD3RRkGH}G??M_PmHyJ@T!o*H$im78$&Ya8*GXf8Clwo4F1(sz~9aBLG4F~pL z%(@XS(^u;<--MsEN8AH+aEtj_M7}zm%9z`VrgD>VR#Qx+twgh9&Y#io+NvB=en|-i z(~XLBs5%xef_uYDTWrR@B8Sl~^#BtGCOhdHg)%cngyNHjCT@(m+oZ#$6&T_r#amXz zuC<#1Z^Ukn@E_8e5wKa&FkniN9OZN@Wxhx + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Assets/Environment/Common/Layouts/Default 4x3/background.png b/Assets/Environment/Common/Layouts/Default 4x3/background.png new file mode 100644 index 0000000000000000000000000000000000000000..ce0e1a06b94aee0f94579a494569df1531c9f892 GIT binary patch literal 1369155 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%0DR4dVbSR-IQN-n{W<#22dLr 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
      +XBGMuxN=*~KNzu&e# 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

      q{&f2t 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%0AA0ySK)OW7?&{Dga;+wd{9rD*ppZ&eMeT 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%0Dw(qCS;%K!~&9DGUdir(5W_H^GW zCS(XUP+b}hlJ&qk3p8;9V2bi{&WFcXQH-Q*jC~YA*zNA;>2@YqrW5SU8oA~1VfeK6 zzTj#epZCY}^Uw3+Kj$$~_ig`Xg=_gdZ-;*p!*+p$J%TNG1~5wzB?K%eE)W9l2t_Ew z9915xY-(%Tw5bHPh(IV?g-elIYoUk7L3?0LV`ssy>G9NXT|X--`yp%fJz!m13>DX z$7t8Bs`Pd|(xZYzMcgVDT6Mk)t!yzLHN);MC3J#bD0)R7PuG3;>x&alBHnumnBH?klwyp);qF|=r>GL!5hscv9-3rkORESv( zNiytQAJ4c8G0DcV4fu=dE~0{a=Q}s|OdJ=_cd|jRgP+34n``1r@7PF@Rt(f+Hg0D^|;#m6MPO;a`rm zl~`xmt&kZ;;Wa@;foZy(YyI)~xMM!@vR59NfzX@0sO}7hc}57*CZZ}pm>!9c0KhyF z9N=Kynz9mlc+6S8;Rr@ROvpeCV8jrJNI1MECY1~lRgsDXK#a;vB3}4h>lRPg&%W6v z2ocY)Tg-)7kqxPcku_V>sxT{$^E?yr6|oBHYp0(oEFN<`00@K3%7g{wv7lze4bg-qg{MuBD9m%N^fUdw;^AHvob@%YOaT!Bf@B%3ZA=V~=5FSI zP*g%lUtCZE_i5|l=che?%=5>&gjFbdZA5L8rpojs1c>Ef6Y@wqDt`F&3iqnW3~r1qF`^>l!6jjLkD?p~$)lk(V1>e5PY56q z9arT6QGpb&6+8hoQNA1t0h2I^5&;xDpdw0Hl^I}>l(vo~zyb&q5pg02Q%05pn%VQ? z$NlF&{QNWXAD&X6k)_m>nN^sZ2dvXUy=jTa5qy8F=e)CS+uj;W*)!HkXew`_8!=RZ z@}_(}{W!B4rqDI<;_=7xIf1U<@THIMqYaynV?7apg{$`pS)cQ?I|JA9mg}sgeATz z*KbMe>siPE7GY7N>)!jm*6HDEP3U`LXbl(xu}F7HUY<-1fgl2i3Yhp^Ve5SeDbWDM z;;NLyf-(dog4Wg7wWwhg;>!7m+6X=~-8?Aw^uQz{w^+6;l6#}ehJEj(zas7X~>ZaR^GJ$*KbZ`Jg+>lUcQ47+Qc0f&x z9SAbq{NV{6l*Vpf@@{}UqX6JSvb6>n5V4|?r2%wSMQ#C=F%t#@ReJft24mZVE_OaE zJ|F{;zwjdnjEF2R0FdzrJKU)9ESQ3*sEU^WitMME)Dx<@bds0ibdvO}oW7RGizuM* zSF&4Gs>%YOfD0IvkR!_05nxD&B^81ALWocbKn$xWp%O`2Z-^vBC#0`g!M+|2?=1n4 zps2i%rf_H6ta-898I{qtNYbJ~xG|eBuBZrd*nw|Nlv`BFdfa0*#twM*NI0dai4=R zuG%gM7|C=#Rb}tnYV;WyL9BbbUWf^Sh@ilrk_1Ix6K6vDIzl=EXT|MtdK`lbGO@MS zZBMu3xZfW?#hkFSVvG@t(;tu9=kxZv&7To70!Y5Meid!$cSuNENoTDE>qhY)1ZE)V zs!CXu7V$*L(Hip>f#(We$HTq#9k69aSWxq-#n=m^0wc}9PJ0qW>zey}BSk4FvbpBt z)8<_urHL?l5SAh~VA&u%41n8sktS=NX2D^sLmGk*KylmJ_V2OoK%EE$qolCF=dzVq z!d-QA-I@*o6ptV@Ku1VqMz}JcNQ}zbkQEuB7_f68BWA4W>s~R1I+j8T0D)IlmPB~g z)BJgsh4x0{TkGGNcC3}_C$S1k@#Ztv>gjJljTcOs#1%j!L%6J3mH?fA&3t7Xf>*57 z8NCKEC>23ra)n@3$3K^ky8kZ|lHfx*>$mgy17WDVY~vfW26$3?WNa0iJ9tgNqP9{}_+6wa3j$%FiTQBawNL{LRQ z02MyXj!Yp^Ml4on9rD1suk*9kVt(nZBUb@L#g`KsgINdqoae_;W<~G)eQXy@2Zsz0 zY)udlV|}a#aU=Hw=#99eG7)5$$K8>N1_q#?kSD}vMikI;x5O%DORz6cox#66>H=kj z?(?}Gzfq%g{`6JAdmDcx-N_fhL|R>`Y(`WvQ6pxgCK^>1k)D0-y9x-S7!|jLp zmT=ADs>$dS3U-wDtN>yp^_s0$?xa zOe%}{yshVFtb_AFUVZ$sU;qC4{_FL6@$++@Kh`m$Fd@qgQ;BaM8L+#U%O60 z?iIe~=Q{uJ@HXBBe<{`?06@32c|<(4^$yZxPb`w7Oo=v@O93RL!2z|P5DSO~Q-_kw zu=D3pE+Pnl%CM?@CZ1p(15LHUO_rc6_9kvdTYek*&QMoV^N(mc)CIm_o-JlB5*8DwD<|4P6kjG*7+o4@_ zM53J*=UO&xW{^{ws+!91yt&U@vvM&*u>fBjhC?`fpclg!+h6+rtr#HBNmKK^Q4P2s=Q_c-r}S z8m!aj1BKewde_bCsN%Uk%MPGLrI8wQf}Djy+6pv65?@H)#&%`CuQ_A>SHxB@5e}$T zz=@PdMLoUBvj7VLX_qFIm!dBg7;4)A*doHr)~Y(05;KUqaBs?Sp5Smk?`hAqj)Gu7 z3X+Pq6MT|MC zHlVM2@rkiGFN|75hzOJ(3sH%)aU)i*ut4~i8Yz(sX@kmG=5e0$21440)J#a^fhY(` zoJ3kx0POA=B?_diW~*YTL9k;GmRDI;RT43YGU7Gx_3)3wTC6|9-95~VsWp``#HXL9 zdk*d2Mq@%d@35ZFD!5#)B-fSeI8JjN8<2Qpcr-{v5aK-&6JLZ$L>f9HRw__2@5m6e zmRGmSHeQCjuIXodAbv7Y)K<6yNrZ>bU={>oS?0?vF?w%^mpIDzS7031HumeXFH?yF zqE{9X2rxEcj+p21$b3LFYwpZ;tx1DL2$+9_Dgg=C%GUlV!v7X0&KW@L<@dNCr zSU@27iqw@fHG%8Pv?Kz9agkJi?Y(rnT(2yg00vM^+SU}StvZ)K{rtnCY(AR4LJ%ZW z^eW6RUbx5fhs~d0cjd~)Zk9l*=_`-><8l8-hV@No8%12e2wmHYHbE$}=>e*nvJ{n& z7NZVnm#*w?M;k8;m~G24#uBn(&ZI&`8Y(5**7u>(3OW3APbTV(nKYq+Igt`EN+Cq0 zWqe(@R6M$;w1>}W=ZMiKA`hOcWBw_9%9lu7Eb(^PEh6tu-R94a$S9ybLmZiBb zhCp_0+a6ZSh1dK9Vb?(I#Q{s_7~PmRfI{*aEr8ZKXQ_bM`@La zT=rcEyZq_RFGAKG(r`U9PcP&IDn=BP1uX=eG?5D64F4_j6N1xbt~0R_ zfc73`X0u^~GKLw4fJ4eAO#zpXsxl&*MP@`+`7)29jaadQ5;6@SDa%{wg9oQp9}gF%>37D)i$;r2?!3GOGAiXRj{O^D6*n!W-CJJ(sR}G zBj<0=`_IT1>8~E$qOw+_U@E46{hSgOSAhNQc{`6kDh{GNk7rr7?QMIxAObuN?tcz%BXrtSHOm?QxW>|^~2{=RZu0qwSCt0W$zWRa@&3wx-Q_fV9@S=vGw91vsaF`26#He7X&+ zm(YfEC3)*w6^QTTe?K7YS`{C6fHI$AnjC%z*q zlo74o5OW56IBdXB)sPzCz%-%@(P;fecxM!(ZOAD3Y86lSCt*TzA_ZW?=BpS0P_j4? zsC6p9hJ_uV3-8EWYq^JqXLwLhA#iKlbVzcCsEFHIXL*D6M%sZ(qB0_)aXpeJtMa($ z{#L8z?U>Iea|ftEn$w^6KM3Ep{VKAvwl*#vYu*3HZ3Qh+W!&Y}y_PMxMoW#`JZr^Pz%(MFoD&dHaEU zX?q{CWfJ6BwNO;X*0%33&7QMtVFPO7)DnY8Kt}*Z1czVyV4(_i3tLvXv`?Uh=8#cL z0;BbYHJ*B@_9F322vks2gzz<)TL*xu^kwUCpNt>`ebCD*$#}b5Ur>~yAfC29D_FP) zq4$;rSx{-qn)~sXk1E@`_8}tI1UlEO4AE<*MIZ~QgwKDj`NugwV*UY9X^^Sd6d6TU zBTU3pBrWQJ3q({&1Do`QQ{)Zl6{$0KsrH~_rHYUo-fH0&Y5ukuC6>n3-bmm!SpeJ=mS&oqInH~-$(pn$8 z4gd%{Z|D7Uu7&tjs%cp#Q?))IyUxf$AOR>M(B2VSCfo6h1P~B@EnVhNr)JU8zWmeSR5=s znBbYo8G+1%jf5zdhkHmSV*@w z$WR>{id?@&cPuOr&j5(1T-B>x~5yjH5UJ zmLqqDhKQ9j*((9Ci_*5gF>`nzG7uIsWI?cdRYM>p*%?aO=q&`|`S|Vl{HM)-@0VYJ z|Kbi&OkJgQmcR-mfb;~KK0W`O`9EudyMuws_pR?^bcB`0h}SHbb1wUxKmGFLgI->{y9hirczZ-0OJ{`b+Z0PAVZl3*7_s5qY=z^%7|V^j1BsDR7@FvP&hS`cMP8N~^M1W1s|F@WmJkXZ}z zT#vO30aSsBRZ_r<0H`b+(hF8$%Urh3s-KC7L(DT z_NpGZ0b&$p2H2Mg=wrI7tB3pfCuAT*!8ILcWcUp&M_|XcwU>PTmG*IYeZ^{i)-fOF zdOmJP`3JS$_SdfO1X~(r1d;5Q4VnUG!qWrN6N>;O)(J__84G}{DiEY0Nhl^FcWC>z zf2UgI>;Cy5{=$ydc|I&E%9c?$jn;%P(-9fkrkA}B$$6Z|hkLMY+FKF1m2g|)HH~tD z9Wg(`m)(9Gk5AAS`L5f3L9vXx+da`5268>qSX6)*R6`OZs+vnkkGWV z5Mq(}Igf|g6NreIfB-Vq<4hMC(l3;4%_qcDvP53LqU=Iol+js;5_kcE2I zMr|7)7ZdlY>SltNPSG0bx2tV`OM75}osZQ3f!(JakC?9_1>GyMK!LE2D+rP{Zo8E8 zu^h`F#r7{ywM8ZaZH(dkHg2p# z+fZVJ#LD#L^vpQ1?ug-O5kHBJ>$h*cy;ISAoS8R-d&YD(-Cnir+zCm{{IpujZjYGj z9Q}#0)-$oE4%E&~sKCviYaQt!5ZF+(Mq@!nLV?5xDS(m!0M^25U|K=g zB+5QE7WtB?R(W_Vx8r$+m+snH3tAykO%NM0XF(=rYWU%CigtiAlI=WVo(Ml^e^co! zqi7&264e*eYCa+#1(WK_%1(&d27@%z#=W)9$wQ@QXyszDt}j`M$LCzLN|>n>sM7tG zUS<_>!BlQL(xr4ukeDCm^TRT)+u!!zr5v!GeUbD;sSF0BCCJ*{uDb?rhB zc^>wBMr+(R?U&A8>1qk80(_P8_^~01G-4S>1+LAxu4Gm5|V)Vin)NRZLRI!MPJ*ti*Aqt z^~_k@I`W1&3s%uYEX0a1pEtLs>c90Ns!h5s!zkb{XJX#7fM^qyzK!iN&^e4Ui&kV3 z?FzY%{%wr+K3=xV-ZoL@x$IECLAQ{ysCtBv^jF7XCPHexZTrrU=Xrw+U{)d}r{qjE z%ZM-3W@iB^4ZmboRz{qX)R?992%xI+tYqzf+eO;;>t%ltLR$|%9%%=HHSDlmGuY2( z!VPiHdel;^PRtbxizu0qvK%0UF9tXBr_aiCY@sj#6}gFC!n>_;9s^Ki!y!VA+-DR5 zH0F(U?Hg>DL9MNI6v`NXC8E|EF?s~DB6GRN)8>2>@?cVt)~~{)ty81`hTr`GYyKV( z)xGQm;FYBnDv>j#2vxb;>SwQsS>Qo-uFB3s2!$#|w=pQoZBB!;K$in8nZ{#b0YLWu zkEVB9l3cmA?AFyCKtyI%)h2nmPfIe>gZ}@M^wiztA$L_}W(45w>!ydK;u~OL3z&0` zL9{1I6^7>*F5}B>;W?-_L199`RzOHcxW{!>{-m(Jy_7WFHxUJ7$if2R5}{g2z@j@5 zMwrFGM5dc=Z_;l-mAoc3%N8w#0r~o+=XH*hV;}+$}a z*Y$WGXH}k*{{((*J%#>5;D{&)RNW7RKo2<2@!_XazUguA{a_Bn0KkYZN~zSUGB3JH zQIGBT_8ra-h|8Yuv7u^5?rzUaE2a#F5~SX`K+CMczVrUQ-;U}}6meU~8>=F;E)e}T z`{B<&D=t6(RqL5y^YL?he)0k3hfu3rbNqQd{&9VN+NjJbn8YZODo0an{f2;%GeVa? ziQU)xxQg=F>L?C_s%iv^j?=DjzOTp68o!V(-2Ouu7=^S*V-A0OUhCsM+1sJIU(#+$ zDBysbOMtev?cAhlUh{Y46UsoHGO!YJrMoa90%v(3R9Si@GVUsE-`}==E5OJ=NJ~r4 z@^IS3Ch^bz3{+2$O0t&LVf z0xQyYk|uiS{+iUXIEw**RJkeZ#w-L_*i+2`L@d^=?SC}p91rtfn2SIKQJ4Xu za)B^&$AUDATt%&K#h7I`Yj?$i`oYo>Fyg9Aus|pXgIGWWoQYIbYh2Ig$N6|)b_u_5 zza83%H(%ko0t=DDBXR@`CG7n;_8)7i*;;evXEH>X0l%OE5>_oMuDFm(wMZIMm7h5W z*vSYL2J0!n+7+^VeaveLefInR6nF(^n~*_Gb?d$Ae}lgVychj}_}0wW-2tma@g=1b zQq$J@t@WMBguG(dSdh+wRUOx!B|;mjRJCy}_XpSSf{`#~-?Sla4Tvy>=^*r&7nJS& zkF9Hjonsdc7*oes!ECsZn2S@SDfUH&uTPr={JJD?+Hmv3ADCi0q;V|}jk=lFcg=f`Fu$I?H<0o*b3XI>6QL6w5DplG zJEAcHvm)0v!lFzlx0stT1VxElI0{w%0P0cwmEJ-a3wCQ(+rC?mM(WEGKk9+T$ zVCT4=&*y1Xb=+^nhY}R7Xf#UOY-WmaMm9Max9?QdB3J8%g)9|YNNx~}o-j8ED zMn2M?Yi1&7ziU5;6d9DWD{c)K7^>%189pwIaTRQZr{}Nd^H~*pL;9b{44e zjLNXeP`!x+h?ta95CMU@k$^*v!O7kC>Gfex^xDD`b>Tt+8s@T4UIJA__C(SN8EWIR%DH zl44b%S4;))X;$_bIH(;girO(N3RsSQ|H~$~ZU5_Wyh7%R$68m+p9RGIRkZ`l%%}O2 zWhf$K6YQ9ovFeLl3qTcu2wFg7$v~svL}-aGD;MKkw(nfGEQNn}LjuCUh}UMEQg$xBeR&A>Ml()5b2=)8s_uyk@55eh>5wA7~-MOQGkk(1d0ielMtx5 zVPsGf{l?n+@ts8=E`emEOdwI=p4QDnx9{3^1}e9hBO`m;h5XDpzCcwu+m^L$lb!RyWoIIn5q%{Q<57Ob|T61|Mh^R1s{Zj&% zc>xM1Te4u=x7%L|^%^f#8-xlmOJvpmpYyyBGg?iz=?fqNwCE+VMTjsXgi4hZF<_xh z^Xtf5A_Dw;g-?eQ3 zfG#8fXqCq8m1(z06%bR*DUzklL~eh+2(wV<^v)co^3hDp_@6 zo#nX3dj_$Pw2fNKInAD|piO&kqP%#yzs8DnS*2H`;0tqs67mw=WcxuFYyHo;92I+i zA(Fs_FbHqT_ugKFz!NAv;{mxU5}BzWGc)Wf6)1Ef%yJUelIXp~3pGI%B+kezDL_x6 zB*+VV0wDoowW`b<6%Wh@rXz36f~?^==ViH2P&k1yjS^QflaOlX2K0P9pP%PB8P~?r z_f~vC>?IOa0DuGl`Q?a?HP`t`u(~2kAzcE83a63TyIsFv8wjsdG1s#kwzeI&tt+Lq ziYI){NlDVdmPfGy6rlqXfp93ZN@o_rr~701%J9Mz*^q7mf3y0R1x)*>qDE)=dzdEy z7NCe|&%zZn&ha=O&&R0PUiWVzy!?IIg1iVPV*oU>K<*5jZft){QE!5kKW#KcK7!ZVhz+1_G8SvZ${|mPJW4#?$5~^KC0;NVl-dJeXLt34gs|7E|M{k>TO+ zH9o}fCCk|zmAL~Uvg(F{)W2iDi*}L?pk~a7=bG>CPok#MNqR9CBe5cHEE^zDMP+z; zCSWCF0kkN{jPxus4@k@=TZAnekU;=tFnxrb$S>Q=kG8+c{+ilh4wO9rt5{GNu@DTv zecAPUo{zPBEiOo5iBQ$US6tT&fxf9!=i~wsN~-|RU~Ywok-I**Y&Z zTtRMCekv+Aq!!Yeh-%wJqFr>I;C_xZtm+0`I{^w|GF1~%6@-d_N?5Tn5a3XKE6$=7 z@pQX@UqtUJjp#sxg3OBab4^HpHma_ZwnHcg7r>R3m>gc|R`r2+U_KbVOVpOkT1k*w z<_rv$z0l@7F~-(e4H)HAhD73r~tdvW<*eJLaAh(a27#9M3fuEQ^XOw(oRTG zwbr=K$8|js6;ZuHFj-Kk!VpoBiilYiVRv}U_^&lTeW7pPc)Pd#F1@R6323a`+i~2L znk_3p&j=rgf%!MA6vCoL+=-X!8&R(!0)W6u1O^1CoaGO92;87ZzBX)ec>>mi?Qi|~ zgMs4Tj7iGO>wE$Rgu72U?#!U=Rl7zmH}}j4!#r7TRScuFA;DpUlM;mlg)!`5^-QC>w4EWm)YmO;{QZQomGNEW^8?T?Ba%CnRi z0W17@K7Z@F)BZ;nWjYdZS^8YzD=VQAlLU5dTYq`!d&6{C#k4_j#4I$@W~h$IvN2Nn zwE20Cr_IHvm4Ym~b>U4omVaJO0Fe~{2#^H8bX4<*r#r0cLND#i-22uUNvcK5VkRQD z33XBI1VqJ{3#q7KgF7|N(nL!LKw>6>nDhA@#l5p`&^G1P`|Gi;aSliTgrbBP95;f- zvU6`KrVf=^MWEj(RuyHII}2{i25E^N8JGj}y>f>9_l@tH?g?|kw0J^3vJkO~50;&? zNxBFlBQOx{QigerHJ#Cjun?0C}VaAc!2&I*5ogF0};94+Iu^C4NOv03i9|c8pE++uPsz{cl1l8kT=z z4yMl1k_iexSJ5o&B29Z+p<$?XXM%>PG)S0sWe|#3>70n|==eB)}r( zV9Khh@=-acT0#dFVju*7LS*gVxD6~7ZOj^x2}QgKe^>G%t=b|ZoJf!;iG#TaGHfC& zMA6nU*L8i2c_JMEnBhPZrUg8*Z3yMpSkY>K-P)nYfj~ScQYy_>W(9U3gscD8!`WA!A*`p%@DhK{jrMF5y`5;r1KLGI?H)wMeCJi3Dil^ZC5E!SMpy zE~2^L4u@ksp0s{JI+hW`B_+Uy!P$ec9>nCfxYCrk|0neAoj)wKzw~WBKa~h zmfJ%1CIFQgmWU*cI4c1yG7`&(i(9X(fbg(1;!;&*mcp4yfDTFQT1gREfZF#RipLWm zDr{Ezysq;^5v49di0+j{x3+DlJqa-jVXXN$&n43Jh~A@ZxAZ-VkqCfbMSP(+Mn**X z)mq!`_pP1D!rYWzC$56D^$*m;>^AB-Y`7)ri|DKNC_EyNc_WrWbX#~5P{Uv$Bt#Ms zWrVA|Cr0v$T;u%Lnm0e=-J&DU+s&T0SvAOJ~3K~zc$ z%!HZ*38-dc#4peU09Y~SV|pNThDL}C;ghBTv$a#3avAX ztfnG_0See`)m-M#ffCbrU4R6HOah!qqawnm`DwN+AaU331@F^;yE_!9w%&Jv4N?FC zU{$5rvN^(?l+xZYiFiYza*ZmGtg5INMj#Z=Us1xjDcwQPPxK>FQgOkV&*WWPpCXI6Re{?lamrr%?K@VpMm`;os4gFf z=oMB;kSE~_Nt50+DKEjA1dRv?4Y5R18h2%C(&?CKSY=-4^BUK1b=AG~Z-ws0YZgR? zS@~x{0jabX?c25=s>$*E>Xm`vqR7fjsEUYXak{r!`F#9-Jbx9b$^o>zg4-RN6xF%R z=TIRaCf*Uq<6MAGBC<-_Kf6bEP&fF5<1=nB%iIQDv%GwJh=+N%Dzs@47JwGJ4(+i8scz znC<}Em>#I@_yN_hy@3i4QRBOQA5XnL{^9dCAe*dAsS<`F@Rh#KGp_*>jUphf=dy{y zs%-*(qz_+DgpK62L^+ftnFDk9it;(J1p zFl+DqzW1YZV>yysxtJE32|LTP8cy#U-ERCfx*^zGa2W&eXP*ZF&VV#U`9Nr{9i z#E;0U;ydeIbu_smrAcqNLwp8Yh^<_MUPF7qL$CpH+j{HDM2MP*Rb1f046Id&B;Xp$ zGa=Ej7;*zjMCXP~4WUIWgka!80S+K$?1Eb&%m~>x4N*cSFCI;;aQQeZF2n;6405ht zxtQ>MZwIx5sX{zFd_0goWBttBrTsrbcSZt2P-3fuC>U8qsH9rtVPWfYjSE2p1&IU9 zB49yv+WOX1p%g-?X8Ps!jOfT*;PEA*;WyDE$*U3&plqG%I{!Q$k1U^Kwmy#A>;3gj z_f4fWQLGQG2hfqlvEaP^+2%U9ZTnU)e>^ZfAd-8#bC)k495*O*%K%&@3yUi>gFOm7 zsEjj#fkhAm)6y$qxw!>+My5r2IYB9@w!Ssp(>Q7byhL&W`$MMS4>^j4Jd1Y3lP*4Uc9{p%R;=WbfvPdX$Ex$hIbrmHG z=(hFSrcJU$_>~beQ@7siKhoF7=XI(RsSt=Jfv^8@da@_NR>&~vK-YGV^u!9YaSbs3;^}Gc1W^FX<6M^^>>`X| z^YWG4N_sWwmHhFz&hsNOGr-rmu8*~TSN=b_**s@(1cNMqy&WP7kcEKS$uWI?@q=&My)zPDAe2OoYm7QSA8THbMST}8 zg5Twds_>OZREE#873-|XidGpwnAv<$PR}rwo8nz*C*bs}$N&(l7#(pSbFr*k=7WI= zxB#;-10Xl5H{wiKzD8AVcw^`SfaCz^<`IS!kdIu2TTHly{e$W+ypk~~5&Sux%Mz%o zQnHXRHKO!091}5k%bc(@>@-<*kV;GX*HfHzy;b`q%v!{`TX?fRb{N2(0oRiQR}_^cWLjy2a8l#(1#ZoP6uSz zQEp6<;q15VsJlg^zuf8NI2bB@SqxmCqNLkfduiF(mz$3@R!SyjAQZik?7i(~D{BP>^N_paM6 zTWfq>IIhRIJ_n4~M1A|ggsVQD*Z&^ZPw*-If9%IMR?YNj5s8>3LQGk;2(5AyC~l=& zLwYk;%PXf<+od-VMKJ9hkO2>%%p{fzX{7yv?2e^fblU)4GH}{RuRyXL?utr`vTu9Y-^kipQuMn_pj{+8^Nm;&VA;ZahW|O^{o{;}ca?nUO;qUE z$url)u(h6-Q&&=D>@17H{o>#sB`@ba!_x1dvlos@+%kb$wWnN5RWm+dI+=Dscm@d!yVGRfUi+7Xn0b zQY;vOhP<&tB3L~#kpd!~tCvz$351lOh_Wk`LRzh>{DE+0JPQVtMt)fXF{<2+@|0Ra$%+cHYWXr`2V~Yw zBsdqk0uoqO%qS~FL@X#|VrI8B&-ZzK5cbectZpOC!wXBC4&C-mZ<52WpX2(M&3CUm z;R_2v3h+0TSM6KEC}5F0GuoP-R%u!1`8?;jY&j6`utD^_y#ZUsN=%dkNZ^FJ&bmHi z*S_&MVa5lluQ$%0Hk$jgVY1nG{cL@dl;x^m>QSi{zwYh^tW zHoz&|=-BnPvmg$3V@vX)1dHoWk|w%s?bcM#-d8+xWT{KLx9tvu5zjS0*Y$+rzJVYp zK~~H;)*6MP4LJ9(1r^e6A{`BVk@2^KY?s|NK^ookGs*kF<-3$4C zKF9TZ!2H*~|MfW9uGZ>-UwAQSSW)8x{ZHaI=-(31ivcQ8Vma0#UEJ^5Za_qSSH7y< zjT-W%!VVBcg*!_}!nr=&mmqB0H&O9A=Q3{=)q`WXkbdj?Ayl?3=G`&?r2>Ep>r0FkLjCC9p*4}N z+JF;FA~QWaMj>Pw$k*1e5z4gkiB$+lq+Rx1{YTn~NK^>=(l=>MxLN)?pP2>#XA0LTf<$x^#msU~cR*C(V!AiFF@a^IJ;wZuy0+sFV9bPwg#ko6 zh^(mdn$Phba6-boY(5?cv2TApjvpkP{v3HCz5w5$_GQr)X-aE5G8VPgH!vU1#fpf5 zM1Yw9X0}G4cHw<*$D0aQJ_{P^&SeTyaUJ`1bmm-;Qn&-sTK@j=Uysj!WklhPk+q8a z3A_u1D0%@{LJ34gc(`S7hJ}|eFT=EgganNNfl+b+%&4e9VxV+E5Z$?LSumbUMJtRM z5}uI|HV}-E6RxPek_|fY)))ybBUmsKp(562fg^2eO|J_;kcFr-V1^+UD-t)ATbekk zpb_1)M`@H_h>19&pkh|dg`PDlJ!1i2>vv`lW<>LF48$~mnP7+AZrQ0fiSqHSjZQ76^7is;W#cAf>JZVs5r(dUClpPboq&^T+c!4f}1E-gIk~ zP&KCg_FzwP0??i9E!XdP{XQT2-v74sn}l6)xjQixWHFO=#IR*HbHWKwZ9{-fWb3jl z5t+2VO51ZiV|~^dP(-*DGvc0UKK`-nvvTA7hBVwQgQ@NU%buhBSnEKJ@U zbohAA&vULM*pJ5im)F<6Zwx->wV93ee3rjM?A!L2*6v>=`(@8`ht@(Qg;+#Ll-YBE zDz^r}2pY@NBMGH_WCp^$bdw}sG3UeV6YJJ=Q|Sbf>5!p})G2aX3lmecsW!q!Bv@F` z0<4r!Nwe>&bc$4FfSP73T3m=F@xHF50 z7Jx`oIug#bv@w>RfPS98&+G4gT~Obt-C4S}mf>0Hbs$P*hK+y^Tc2*Ts9W~J#7A-j3`X;3=t9$lq9OG^q5dy zIS?1%%=Gd6e<6OyytRhCy)yN3te91n0O3|Ss;b}!B!X2Wf(*4P5MUG9OPElpG4dC8 z5rrt}h?r3ZIgk^zuQ_e~st|y@^B<~RWos?cQjxi`@>=zd^-6rJ1bd#>$KTJ#gLr3s zNq?XAuJl8>pgdx4^2+i8%(<`%k)TSKpEW0=5JyQb=!8P)6~+M(G3W5QisIlq%a2M5 z2yR=KJ5n+upcG(MWSBHn;eYR`*dPfDME3|tr1Udm`n+7E3uOhAmwQ!FB7mcGEC_ob zI#Z)$1_cgkoaQUfHUG5ro=m;JVAC}--H5uv59DXqbBs&iY9K74vS;+Dj(k&XEK%|B z%Me;bd74*5F_A`Ox)UZu<{EyT<-bjp+x~^d6(%MI(&B>|Br#Xd+$^7jB+SAMMG%v9 zXDRS14Av0t1-eei zNv@>p*+|meR}5KMy?3LJ8iF7|@Bciyluq~QJycd^#9GUpv`H7ydIW+5NSfLIeX*b> zkqaZ$jWL-(xFwI8_ef{mj(uzGFSef7^~1xpx89S0J;2urUlkvae-r&a24_OJR=hR( z?7RsjW~=gI61fR$LG$=~)qh^sOuK-N)?XpkIqy)`zgf5ZM`(E7LEJ zN6Dk40Mw?LDal|J8866~xO-e?_w;4+{E8Vy{tU)>eIUg0dz3K!#(Xd};v^uF1lEnI7bU?n6XQyV*K0|F61FrsR`v0`Md z8TmyT<*#mS5R(pQtrDy}kN}HfnWq3(B361;G}&p>%pyz`;I>8anr8EyaS) zA~0hq_JfLhS79JzsIkrqFu4)7S0EJWA`qGiyVA3;64(u#QWQiGim)gnA)gk@;R=it zsXz}zs7eF8sg)#QGj2SdTtwn2<*LFWDcUU8oKpei<@N2j{YJ=hYWim( zYd?4t=P#B*e1=a<799nAt#i#^9uFX(0(OI1RS$%}wuY^%6=wD@0;lDb>5+eAOgnwe z2@paJVXHiR8Pa3`L|<+dt+kD)i434lEKo5oaIm6_^d$JYdqh=ALv1po4Fojkm;HG@l4UUMtv9eU>-18rSuhD%_<-?_ z#gQKteZ_ahottRK!k>T%HHjMcR|vD~pVKUOux?pLMFCt~7wXoxm%hJ|$f_%xs|X;0 z8r2PeJ!+LZ3UDI<$d4>fe2D_ZCUipykOZI##R6s#9j!rDJm%x$@t@D#^i#hH@Ei|AV+QCvoLhfC?2U00|K*J+rEk1qlZsBT=SAR3$K+MOA4t z_UkE+Coa>b+rEuKh|Aq)rEBl1EVzRV^Y!JK5kex2q(sTuD$nrgxGc{!s45|)uP0Nr zB1Mq$A7M`X3aFq&K(cN7@kV__tYs|{Go`hC$SVdfzao;Wj;%NTZO&)a^?3X<6V^q9 z-?dZLQL-1as+MSdjb~((UxCkA4~u6OQEWcp;>m=7Cj(>wpkzjv`FW2u9TE`*i``C-6eKGQ_$|A@kuI1+$Yh{=hpdYwO zWF{@rLgrO84Q*;%-zYi)%>+pvG*qTE zyw1Nunq3O&F76eaSzN zSdwXFW@UJIS!M*2v_AT_W3a8V^CRPlS&cug3!tObLA#SuEqBkps+5j5~RbFNntes#0Kvo$> zR1=W0T+cHV(x+OefY6TEkb(qRsw&;W^Fcs_ zJ5kf^8lH|z1KX^+vRv-HFV%JRqaF#*}VD%|ED#sLEvnWz;+ z)!DR(YB^L|CZwm&yH^rzD1_$MIU^#MPhZQ^1CoqnL)PLAsiACy1yul080PVLH;+sD z6U!C9_ykT=1%mVr^&&@vy!Vi(Oc8+Q1-n4gO#y1s6~K;SrpRdwnH0S2;pw) zbc4~qjWPCp3%}O7FI!`OrBu6rRB;AIRG5Qv<;A_L=C(Bf8f`FP#`{?BbQK9~f-4dR6AOy9=%p7yx%F;`N8HdKhPSyVh&;yjl-%}MfZo>)9i1B-?aa(Z8U9#6Dl(Z0m2`dWz#K)xid9o z%><|kwEzRTSofM#F%gHhK_unBDk9=X#&3d++gsqG`h+S3L`Wh5h^$;OeLd1XAwhLh z*;TtRIhyCHFd}U5WqobAR>JD?vJGvW0l}~5IzQ6y#G(vdV2J{|w4M0Kk_vWO0c6C#p^Qpe=PFv@K!p`&Qi$Q7}sp}a7^XnRBE%qznn144nY3LR$FCx9^(=#cR$@I8$zED?e#%D)CxrTwgY z&)}*9prE3Bc>!aHKu1KaL;!Ntv9}#T*Nn)p6tue5atPT~VUu!7PqacJB9={QpcmFf zT#GoSxmhJ4_JU;YNE;AB%&@iQ!)yW?F{miAI$Oc?`B>D6q#Oy5u`>x031T1O*IvjN z6nH|Bv~PsC@3)uN*KNEm18gTZYz|HLhDSpTzIwkEyrtg#`kxt}jHu(=7$agQ?n#hT ztq;<7Th0ApHnme9k_Pn*_n$!Tq`#3K1^%VP+s4awdvE)mX|b4lBaljuDkx*dghui| zATMN*HaJGC|62Bs$^`m`x{zj6q`&yp!>Qr^~?MtVZs+{3R-0( zT!l}jy%Ai+6~gp#YKtL;& ztzYT&g*XFuj1;~YfOrrcgx?aX@(}^cel7o~yk%XLRd8_z#e;kS?3P#d%gG1s%$m%u zI~R5!(bhK7+Sc{(|JJ5a6eJC#i4H_l7=;LcSa<2W>OmsJ#5_O(V?k#4wJ;D7i!gc3 zwbq?QS*SNIt^)N55YG%R0qh-!Eq<-*L_!j!{Bmg{5+L|=JI@OW#vFyZ))fT+8{Su_9uAOJ~3K~zFgZmcY}PQS#%o$kyH zsR>eOFhqeMNb9?DXCxJD%2>N_6ezP7JV~N&vhKR(Nem?3w{M8E@LBbU7-b)o0qDxi zB%o?Re*Ie4BdfT-au*ad^z<`fR6r5|2>>B(3XIf)6pAsUERr0P($n3{?(U$R!tctA zC3Y<^%DfSOC$aE9-1?eZ>kW}ulxb|dab5HJ6_b##4CVwYL^^1T{z}}{b3NyIE@#+@ zMYQX{<2v4c`)<=)lkl|l6y8Oo&=8X3hBPuGlZZnYnHz+y;J~LgAH7utq$9czPV6hc zd6ciaDY1M*d<`IXck@_j6Q>IS5rb@B{n{7SVFAze|JeEnKacI`!@}c!zeCX0+xB`? z+Whs8`_I44l{9qQUx)OJTl$wp^asTWbR)`$4+{#~7z>!83i20JRaO;2LV8r4z)6gK z-<91S8Rm#x*jcK!*q?H|6O|bD0;5_;0sM}5W9W*zAXJi1xAPem+(}gh6`?UJF#=acMXWi`h)>Q3%s(?f zfPpkbz0z5BY9o<-W;hd;HX;IIA}sr2>oH5~tPQdN$pgr%Dl@7AvjU+25wWqf#K>@W zpX<}FXL&&)5EptfL3rf?+`%P@`0EHYBBTtjn9Dvde>52_w+O2Q3}8-VQc@LCMo1}$ zLSexwAZDgcO+<*Y60nVpkZpOO0eV)ML55=iG8dCq0XJfzDxxGxnd{;xwWwiZwX4!A`_uRiI4=LcZoXO;;EPLpCqy0`f(g8Wb2t>8Hsc>#Wwo5{We~1 zT{yzbtDHQq^i_b=S`w_VC`wY0y~x}yX>HfOao>?!m=Tyzwyx86i*scLFqU5DqjE+R zYw!C@&1b^dSo-mfj4TrF97zob9L>w0wLSoTAtDwdPGrdPBouKeXD((eN?0CNoCO`T zx1`DlUk}1y*@=6Urtbjngs1cib#LvJ@>n@DB1yB#Jqaqo3qAlf@fBnj=m{Qvhgza4 zm`zA_3c#o&27-kZl|Czj24`K@y>j-(9dDWm`3wvICVCnAHnbDCn@8TEuFRQ+03WDA z*pM2*prFc#_)0AJ7w^vVk|3zX90+$`2++y`lK>#2$^*nzWjkInsE}j*qNK)qAAEa# zyS*IRcD#JwhQGDgU~gRsa$X6G^k}k`Yr(Sfe==no)Y=Qe?|{U*30GGbefObrs;$L3 zRWkBoY(xi2lR?z03e!#`;5OR0X%kzMU@}bN1GrUwR6YrM!BO%%;T;5e8)VJt5%`1o zA^la<+)g{E&qw-euqMp4{#?%=ef*B4l^HfG15gvIFo{Ytp*Rj7z8B!x(6IE$W1Pfsh{MV%Fufk>0w>WS_cuJ9}^=tH*` z4x|T&9&H@056X3Cu(~h;f&heYM*<)c-C2(mVBN+(T02BWRu%vtWCX<&!ZsReR&X%1 zEj{kJ{I zh=>+3BeqB;6(I7u&{hANPwqqwiQN2rJ|54fLaPOqcEvLsq}_%P*?lcHGpZDEDg*)S zEc~J{x^V9U2?0*RC!&B~e*VXbg<92B^o6O_I@8YL4Oj{@?6URCuMZ&7+qk0!7N(u0QwuuO^;@GJKp}-x!7Ndi)IRunKv`j4!1OS+bkHV+uyYjB>MkG*Q=!}(a zh&Z}L#I?NatRf<4f+W{y2gFec9%rT@eNY{kUZvnwiO5h0)BZ8%r}XdJxQ%@Pqhn^_ ziXdQ;O?tU4Dg;y}CFD#?`?L&B0Ud6c9xPWOi@x^0_a>SL#S)zSw8*{fnd!CQS6=5j7iw;VUa}vh39YkkX&g+W2fO=;U z#H3EdK$0sWo?k6OB;z_Ni{yqBfQPRKd|_(kl^eG0l6q3Euy+xWc0_^2Jf9yzJ)$tF z4?yAmcH3TFw(-8)&-1z-_;^0|e!CrqXnoH6>0d!NzuA$p| zCSo%;xh?~`ke&%1e%iW--uv+)eFIH35C5PlUr*OP!2s$jSjk*Eijrm`5fhK(030NL z<@T*@|Jt@U(N>rqEs5G_9Xw9R^KOra&qu^WXp94?V`i?)*3<0H9NX9tTX{kjB5)so zqheGlWUDGjfRwNuP+3UZF7iUCNd=fl9<|Iqef|mcr0XA5pIHUCwSgFpd|^}1=el&A zhboI+EGdl4l8L@PZC!-GER0fFb6rV_G41kPt5zg+;w<@R!h=5fASdm4QRL}{8uoVFy6vp7*N3TrQ-nZYz@r_mIddy!>w@)mt z{u}eoxF@Z211!Oe@{E~8q&Jnl9gQ0SAy!pRBGlH9DFUwhbv^EnIg=2P(AIiX$KC4E&V9da$89@an<|xuO}k>b zRRDiLfWIISN<;06=*yN{CNf|mhQ+5e-2k$3RV9hE)`Y9c002kKzzj|cKYy+B16XTp z$Ll-9Yo0q*ax2n-)h&}UHUh%S=SStwD#*G;Wz{4A5zGQY$Gk+b^@HUtfv^noQPm=R zUMEt;y3#Ic$`r^zB@IT=w?N?BNM3~xD1-dSd=wmoEfF9h!wX-d*u!G|WO&EI!ih@A zP?U*|V9GmT5v1pX9Nj$aL4(&$Qfq&BwWE!?l`*IZ8mW11KcmVniU76CR3xH1KW2q7R4keMnCvIvFcKpB;u zcE$P30MG$=t9*K1P+f`{H!Q3=8KI9NRr5X3&g;WshB-nfRv`6=$b|@v2Qy1mrU3*| zR3(I!S=dM92gyOw88{LFglRBI$u^~9+psh1p

      7A<4{y@^#wt3@1b+1^~}o#NH3p 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

      yr7`pf@5w64sR&RR;pN{ns%E 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

      O@9Z6;%k89J3GxEY7TZ)b%kv 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 z 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ÏtGzOf1Ak_m2QS#Ff% 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

      d9b>%4 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 F#&J5=+dW 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ʏ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

      <7*7 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 z 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

      6OXrp&Ns?sOD-TsQGxvzhtg0rO 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 literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 4x3/load.wav b/Assets/Environment/Common/Layouts/Default 4x3/load.wav new file mode 100644 index 0000000000000000000000000000000000000000..077480ea488e2ee3411a8019e6847a7311aafbb6 GIT binary patch literal 314376 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�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

        {f#c!Ke5hA#ROl>x>)dTD!zofO+pLqR zWYBZw;IlX-8nFJ>tc{9RGRIb!)az>1f!(^H=RkFB{~4tRM$GHIdQ6+ep1hW0-7@{z z*=By%`-?Y4PSFE1n+h0Da{C@;$vI|tH-HSn-qySh{2yaQjy5%TQkD|#Q1Uw3w1htp zjMw*oop3IeHT$wk!DLwx;JTq|>!O@oNALr)mcE7yLc|c9d(LSl#EYoH$6$#E%Cc&h zwk{C_n5fCq{Y_YZo4U~}6H^po;o5nMO#a%uD1r8@d494<7tJ$1DSpa6Q1k)2P+8z0 zuBccF#pXpw;&m@`z(evspppk5O*<&bzc+5ja$u4*9pZj8euYo060M9RP2UEHkR+&{ zKI^Uv1bm1!b#ZBOk_#-aX){i*w47+vV?^JAB>S$XZnFKiHjiJKCOt?r-%CH;EN##D zG~Vg}U(`5tg$ubKx}BT3hE~G)_q=&U=IPS^f=J(irb2=eEkhS?{OCX*@!RTnC0g{= z0Dq#i7oBCR|Nk@@!3TR+Hl$c4HdJb=(+!m+6$JSNfN6klb ze(yK(HA&jmRmKx(SJ8u32nU@=6%Tc6TSW`bYp6_Ac^c+06o0yk~rCCL)#!lE&3 zBkP_3<;cqP&+mq18M%Fy+SpRrbJ2f~b}LPT{6v9Ts8=iTi}%F=6Pao)=gZ(B#@LNG zrA||*W}Fgj2%?WYr&Zz#oZ_JejmfX34Z}UQ3A2#$pS&%LW`)* zy)RGxCRm(dli0jmQuVmOzTI3Ug}(So-j^dk6+dqDx9{|q!3jlR1re;va02g|`Eq(X zFQR$(62u>LtP70%bpoGq+-Pq)>ff-xcENSA5WqBWqc2$8=T zVDWjvkhn<#rJl;2#3)ot>`rUT7A6M#KDbiP@QsO~9x|g9U3-oL@Ez(8u9Ko6(U-nh zq`93cVn+`gLv$uZv?o``ns#O`YM%BEAMRA=921+?T>96g^fnwHHS9N@4BoK??Lvdb z*6z?n!-U&D_1cw!PWv|RT8wy@;eiu(@7(A76W9Yk9iMI|Gy7eYprPpIc1SuAOxQ9T zoDF7zZ3uQb;@oD8n7By@>)9xsnGh-sfyix zj;cFkl1Dc=v^gzluc_l&?@-3om&ac7%xbPY?RxI4q@yMY_1noGUbo>iIET3GZoZb!7`pktcjP+b(NOv-tjK_lY4A6)deZ!fLBV9V z-Q?pzsYX!ZHxA65h{l9zDXXWy*5lrNgX_#dBblM;S1 zh#U2^XJxR-lIk;6QRry=z}4Ik^t2UjV|}0RWEH@^+#Y8*rc{@cd5V@8xDo9LU0B&WWv#W!9R`td~{GN{8a0(M_PovaSoavZnK~77mqX z!pTQVFzNswyAhPyo1bjZLy_73W+RTl(`k~I#sbG}e53F8r9-dAlX4P1MV;CXg5l@O zkYktQkg+UmOK*g<=Gj2ycV0d$`K)CS`(5U|FAXCCbg&il^#T`sy4PDD?oyzNWAD#*yr zdRkl{4F3G<{E(a|SlCiC80f$ejxd`_S^K9~*P*mv#aH6q|uHdPwcjPG(DYxH)josRZTKXJVwf{vuO6WA#GcU+6Vi znVKanvie2hR-q*&47ruVkbV}PCYCZJcrH{VmJb8=cr!y_$z99kJdF@k+ zjWdI08VTX+>}eOR*O z=)U+bo9<__TSdDUxY9(s5Fs5e4t8aVcK^QBy*$#J7##{;st@|t{e6<_EdR^l@t+3U zpoL9{xAY&q#s*@~7Ak_c_(J`JY7Nn=&5*#C8%k`=PUDW%o|T!gUK0i6tL^aXnQY#* zwkbZ2?^WsdW074?poauIkJOm=uQ1$dI-#c7=$E_ZARSt(KY)&H&5g{Ibqw*Z^oD#a zdGoJ!Wo3-{TWmh2lFD7S+u3UEJeYt*{+;zPh!9zy?&bDS8TOgAJkl#$m^&9yB(=dX z#J=du2^Vw#A)LDWm>AA;;lpcRedNC~d~X{Xh36CZ?$hzUBkR|OS;!^w`8QKc z{?|@5)2pJ~1c@PFxJqm-=u%SycV5PXMv6RZzSwBfr!WYRrN`*ER|6Y-bNK@NQFD$@ z3-w<=m2n%!K-=_h)5XnPzVI?TSB1KB@7&~O`Cw8vd9gMQ5EFzp(U*#k@iMB_dtw63 z9CQ1v2XuirdQ2TKj_$u349-&w&&8kG#YrNSO%ub!yS)(H#^xpIga~wOhurSfd1>{~{r8!>r%u(_O_^tb{6Q(Oo?Q3h zf>6jB_j0cN@}6gX0psexCsp0V$1xeaYD1{CQjkgqVjSzGV+ogkGqEV`JeJ$jy zZ7!lv&Mct}sH|02$9xjKh+c( z`PNK4Uu=vL2V!@oo1?$oSYJNHfmlgCK|GI&^;o(m81m+JGu@s$XaAAuSOcA5aX05` zB^PqSahPKm)4L-hx=WSTd7-Cznt?+9cy1*uE~zbjfv4@+`U|@DCz9WJGN~8msAqNF z*!OFlWN~jOeJMfC^lU=Xg*|!`o$69)fA?=7*r4rcXM$Zx07Ir2`j3w8L|0gQOx#l} z>Q=hb*D=Wd`FF=5%3_ZfJnwf@a_TCs~t zm@oZ#j0uW#HnSqX*$1*oYl;Fi|ATIXV{K}S^Hu)x?w<>njFsU$gm7rrKLO`_<))or zF+80|pjOBw3h%GZhqnTQAt5xei+g7ckz^)j#K)u5kCqvb*BZ1nYgNu1!M?FrzGdAZ zCy_srPj3V2OQ?9uUAILBh7X4YxP zYHCM>2_dzXuC4&MvphaH_67Q*u}WNZ&FgDapvPReaa$;X>~$q&E!vv8A@@5?IysNkUiX>Q z`6$AP`ewG6YP<+2k&v7P7Yha*zI#c~qm$$Ve~6;3JyD&!58-hW0k7N_};L|1p7OiSFM0x|9dW7tE39?$BD;z00-hMGCQ`EWlc_e1$0Gb-s8>i$3S z#|yWhJB!0!Y0|kmk6gVKr#FYY31gs(ebId0wLbgsZ^rHGXYtUwkL|LWuJS|r-6_2! zGj2`o9O6kSRP@DqG)(a;UoO9);_&2h=M2}yeHqv76Q^gvf@^P%%# zASSfc1*g*%Bndbr&DzzB+2I6TjT1TRY4mxN1Pxy^ON3dheQw(N4Pzi&Tac=&)RT4< zo;E4<*%z-{TXte&QgO6VJb`ZXj5>sm3zhY{L^d7HN(cmG#cUYZ_)e+)Hj~sWFS;W; z`Zc;}v@#9(thInvcH_m)xA&enHacHkcV0(1N|Q8rR2u)BsjbIYJ^Ei`l&g8H#i63g zyn9zv`>@O8@UpY~?Ra$o2|1T%O?s3~R_6J0uZOfhIp}%TONp4~!7=gf^8H2m>NS;A zseYP*-JQ#XXzZ00iaBlR7iO7jGbwjVGzESNLDJWIf2kO{UxXK$?DRKNo<~gLLQLnV z#wRMpAKGyo0E=FE){^l8iK15-9dsim+_1k9iY9i|2)M!wveKBcwX13>DOWj_bwVJf zTk{@0DEjE~#RZH{>RAX=x^+1>y&4b`-}-oe?1kg67ZEM%CDxSz0eR*?zL%R>l}iHa zt8QFOPy;9Tyxi832c(Bu4~UdlEV?hpT9ahkOZ1@&{3`-u5I}+McWr20ZxvsM=q!I0 zdeKJJ>SRNxzyFC|6W8h>_WNsYSMS+Whp#3I`^l}w{?sDOm}W|~^xXJaT}iipeF4FY z!}^bO2Z(6PzJH1fWN%tp`s{;f^-&WY+wH<2cDID1E6KP;eQXW%N%avth|;y^h4q!h zNgwWzQZCFBlQ~P}rym)uqxK@GFilSMaOg2wZ2yh5j4z4PvDF6LqfSTCX1nF=bm^+u zsSDp^uEfPvSx0s{Pb|qUT^Fou$e0%P+3cJKluA!i9!Kfx1RYenTv|9jtp&m|Hr?+XUW5&^y0PK#hPM=hkMZ7q;Ep|@3&&) z^hY_xaZ7vWQ_kIqUU?Ui)|}EfN+%=93f|iqD2};eWDL9*rU1nF+}rGj{L_E4yka-u z=lgaN0EakeMf&U#c4}}JP zA}D00V$~IRU(pfKURO)jhul};q9QloV#VsAbQH~y7zIB&D!Dgp<+n(+OQ!_n1#ch( z^E{iDtan6(gKp%bB7C3Dyf;g#D;mJFx(P`;4jIfpFRsf(jqsroWc)D&+vJwBJk-3C z`k-k2m2unH$Refm#Aob z^z<+C0E&Q?j|7xUu6Aa_H?Ep9jOgZBymgK+b5j3h--L}t!RDt+5(C~VJ=C0r ze8H9so8=>Ek6mEvCa`|J{hmFE@fRpIU}g}2lCwCe#x;ml-k*yjTSn+1kNbGfdo;Pf1qP)VpO0uf)9DTh6qKrD z4NqhzEu(Zo@=1-e%;aUPd7sQiCU}NCJ4q<9_?A zOor6mz&QAR5jYf4A)Ij0-6etczW)gA{DB`rwvV5l|QtBxKvY-cykD2C)NsCA@TXl9gcl>t> zY6{B?p&go2^tL{4Aa(zvx-~=sYDx6;Sb z_Fdc!ZH^I6(C4?rYFAr%SsSLw^;Yee`tJ2Uk49~5gTXxM-A zeZRB&OkzHyeshB(6hjAjMYwN_7CN!jU-* zUSVoRtPk+za=VXQ!}|QySZS`DZIh~JW!}$!R}Yr;?ha=}S4o2+GuAN4Ru?;yP(2Kp z1Iz|Z&jvBU8XHaf=;p!eYgdL+lh*4{oFj9Wt9>j&8p&uN%;1Y@dXf=y(iL~zlV*cFq^xzYQj&h8k3J zY-XYxc)t^1CIKv|tYh(`BCfWFieM+vutE6Vnlh$SNz67FrOMj+sM9WP$TY9s~}V24$6-;ndGoM5alGu*379k~ZV5>({Kiu&?b z?|Zi|sAy2O=1y`|lW9yVj+ir}^4Na9RJE1v`BLEz5Z3?6T>6+B#}&qtSr!lMO}^jU zWJMUk;@pp)ed%2>X}=xA^w;&#So2kZWeTxwyZNq7r}=ccLDNlw%-wJyKhS!jwDBHf zjpUtu^P;MTHbp^6+`jpqP}g_+9o-pN7j10`I@`RGWeI-d)=EOK5YrqD zlRkq&Zw}r4OY6Uo*|@h{B|9v%-q=YIeAdAhT$MKI3m(O#3)cl-@`_jXaF49?vgRs+8~A7mgdS}fvJDFC zrHUgkM+wIe{(7cb;Mpvz3@2kKKf(u5v4534lrHtEvhve7#)|M#X6uJp?GCaPCxkmD zv@+_4No*|QZD!bdv+e*Eo2A9-sDJ-a01Dkau5?A4((*D^uS70Qf6^ORdBaeR611(B z?3oZgm5t+E=RgE`B@SMpMm4MTsylCoth)ggh z7R7#ZxB&P)TBnYXqAT8}60J0tFfdNpUUyaE01|lX(H8L7rYE=5CD_ggkrsID<~0M} zUipFXY%z+h5X#+w_gMEvon!q9+f`P~#{rDD?M0t|jl0k0{@a-G{<#<*5$yVjbfKV6 zDlPZPOTw&-FvA9%WF&HrJd76k;K3Y*8Pj=4$}k~oE*y*heq3yRRu(GJ1ZLIC7z}ex zTO80mo)Bt}RT>@K@U&wH9c^py0*`zr_`2YgWM0c;dxgmC7$11YlP_@-(e4&-P)C4ty?fs~hc?q8Tw^u_)+=Tsi9&l8B05K~I63+O6eeOEJ>52~$P_bP#R z0iqDlj`Rx$pM2izi5~I{_l)rqoM)Hku#Y)Aj0S>ZY;iHsv3|Cb`F{*;j6mOfwrSwE zESN+@1)${!h&Ox_O*Y^$rG6M)e=D=BBj`5b-5y)bXaf7EqVf87vtWZ^<@92fyPOk^ zeN|jw;x0u95A~-Hv{!pWUZ#bB6pz~v@)h|3<4FnTcL)QBh3m?1TMF=&ZMt8kdD(H! z3W7qaQoV`3cO=wlMhB;N`s;$wC_NMhBJ{(9?Ae3>kZ>6@;7zX|PTH%(by`Q=JXNb4 zB`^})JrlL$$kfa>)mP&w#4Rrd5mZGZ(m#$=2#$g4UcUzvV)IQo69!$#&65F?Mz8N0 zalc4m8)?R;g>{l2U#{h)Wyb}MwEYW3x<@0};BSqT;^H=FaP31m@rgVXUWr8{WGs*V0^ zpa*2h1<}81*VEFToFQ8NbnTh-y1H)}B9HZT){U0Q>;uszChHk{fB&1DuRm#H?A40% zED=VRJ8FhD;`Xks#@+}Y3UVoN%t%Yd+NTWhHeJf0c{nYDbzkVMY~jF2PIX?!>og8# zOUexK1J-34wxUmfy3ySNmw!@Uis47%WESO?>$a~nMfKCcbme`Y*}z$Fe}c51_@}Lk s=O#aLwB>?$=Qgd2>>Qc`f8XP&P~GW|gC;sK54ZqS-e@ZPkhh5Ve@rse#Q*>R literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 4x3/select.wav b/Assets/Environment/Common/Layouts/Default 4x3/select.wav new file mode 100644 index 0000000000000000000000000000000000000000..6678b930caf8d5a0d8c2dd0155905d99d0571c41 GIT binary patch literal 242154 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%0DEZuC&P#P7(#+NAk)q=UkD`X(Nv_M;4)SfR8xs zE#M@wkdX5^q0Hi>GK+JNx}Rqf({oY=ryt)$nhLHkl~d6NoS&w0!u){q)Q7=+dHB}t zecb*Ic=l3H;biPnImJ%~)Lr;~u=|?5cKx#nr>?ri@c-ukdB}#V4^O*(d4yX=J~1uR zn?_BhVfyyvbk1`bzzoiPno}^RQRZo!&fequUE;n*SzaM6--~;ZbYBSeZ1j9)p{H*l zy7T5E3o#QJhS|tKWTI;?6ZwTq}_upfbemIiu!+@c*j_(`{3Gfy&8E>Nt{2g@azlA=RN$75wh#r?W zaeEV)jW@8r&WixA@k;$G*k45t|3tL(zec#%i8G0CZ;|FZ=!W?#Zz%YN!F%NQw*aHa zPyOMeD7U%@pQIk6fpOH~DatwyylM;(?dmPeqJ0)3pOHguxq$B-_?BdLaQh4X6Yw8T z+^1=?@r<13uxl!J;=82JkoFkz7!%rHD*2@&A2Kz%JV#B^BvBKlzkHYI*Gn~n>wjO{(b7_n;DZa zCsSwj$@{izIxrpgS+tGV>ulO8lW{f+m_r+?ogm`nD;Sxd@+)Lk6*0@=?+fOgniu6A z*#&m6i@8`1J|IY)kd9V`UHVlucBwAP*LqvKA9D}xQeYx>RZ9Gbd&ZYL#rAwl#24c} zAt&D!5p!A1cLCq(j!=SpHKkbztN?s%ZgGH5sLN_#74`U-KK7*%x$UGT`ReRS>b?S4 zLj6}z+a>rdqivLv(k~Bl3E!XKw+cUT_s?)!3j8y~wUuTOCxg_c#=uv~t z_FnS;e?O%K+9xL7(mJt2>voBW9dAv%`PTL~{*=`Im*VyuF>?6eQAz!7@6)Q!h#_f7 z0|qAdPwv}lz~JGJKAe{Dz{s@69#4DZ{wI=dx{0<+d9u}jVNa$djCden)X=nqKZQU^ q?K<2yY*fOazJ2>7qzry!$P)?u)9xQJa!A_9gp~FP{{1(%*S`U_CTu7G literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 4x3/square.png b/Assets/Environment/Common/Layouts/Default 4x3/square.png new file mode 100644 index 0000000000000000000000000000000000000000..de7cb82a493df05380a82fa7f077ad9795d6cc76 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^b|B2b1|*9Qu5bZTjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBufiR<}hF1enFxAt=F(kwJ?Ri7N0|o*IHsntbEn@tp7kS9( z+M}E2|L?7Kcs=d%j%9_uk7pe-?ah|DZn7>jhBSfgXJjs2V@`K^X5R|5kipZ{&t;uc GLK6T79Zg{X literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 4x3/unload.wav b/Assets/Environment/Common/Layouts/Default 4x3/unload.wav new file mode 100644 index 0000000000000000000000000000000000000000..65f069a25b35f6d6a81da2487b928ed5a80b50ae GIT binary patch literal 411596 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

        f(Xep_>_Mg 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

          yPSSZL@dQG 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 DE+|=E literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Settings.conf b/Assets/Environment/Common/Settings.conf new file mode 100644 index 0000000..9db1413 --- /dev/null +++ b/Assets/Environment/Common/Settings.conf @@ -0,0 +1,49 @@ +############################################################################## +# +# For support, visit www.retrofe.com +# or visit irc.foreverchat.net (channel #retrofe) +# +# For Documentation, visit www.retrofe.com/documentation +# +############################################################################## + + +####################################### +# Display +####################################### +fullscreen = no +horizontal = stretch # or enter in the screen pixel width (i.e 1024) +vertical = stretch # or enter in the screen pixel width (i.e 768) +layout = Default 16x9 +hideMouse = yes +showParenthesis = yes +showSquareBrackets = yes + +# If you would like RetroFE first load a different collection other than the +# main menu, uncomment the line below and replace it with your collection name. +# firstCollection = Arcade + +####################################### +# Video playback settings +####################################### + +# set to "no" for very old/slow systems +videoEnable = yes + +# Number of times to loop video playback (enter 0 to continuously loop) +videoLoop = 0 + +####################################### +# General +####################################### +# exit the frontend when the back button is pressed on the first page +exitOnFirstPageBack = yes + +# enter 0 attract mode, otherwise enter the number of seconds to wait before enabling attract mode +attractModeTime = 45 + +####################################### +# Debugging +####################################### +# do not set to "yes" unless you want your hard drive to quickly fill up +debug.logfps = no diff --git a/Assets/Environment/Linux/README-UBUNTU.txt b/Assets/Environment/Linux/README-UBUNTU.txt new file mode 100644 index 0000000..862eeec --- /dev/null +++ b/Assets/Environment/Linux/README-UBUNTU.txt @@ -0,0 +1,4 @@ +This program requires Ubuntu 14.04 and requires the following packages to be installed: + +sudo apt-get install zlib1g libsdl2-2.0 libsdl2-mixer-2.0 libsdl2-image-2.0 libsdl2-ttf-2.0 \ +libgstreamer1.0 libgstreamer-plugins-base1.0 libgstreamer-plugins-good1.0 libglib2.0 diff --git a/Assets/Environment/Windows/RetroFE.lnk b/Assets/Environment/Windows/RetroFE.lnk new file mode 100644 index 0000000000000000000000000000000000000000..fb83a0e8939a55391ad96edfc959ffa239a080c5 GIT binary patch literal 2161 zcmeHIZAg<*6n?gnmPt)qks`H1L;KLpk5b97-l7MT=E@B;=*NCqlm!t4 zQJ868Nc2HS^uhXFi3Ca?1X0k3Q6fOstb6UhdCNp&=%y&Gu_nU``8jYQg z3|L~ZoJ>ZxR^*B~{TNikswQu3uab?ZZEW)RTLM@K1Eym5&WEBirYWVvor~%7Kqrn$ zs3#(#7L90v2Y$35K+_y-9A_M|U0!2^b8jH%_2uROt74p8CRr2C{y1To$mzshas}aq z54qr@n2T!B+;XsZL4z4?pC`-P>W#&jrfKm4;fzb2@*7S!xje`sXDcCb0_%v>abMBP z2x)7HL_&Dl+xML}QiI1gembt`o?Ou|cvk7qV53Y$Hrz~{#9xnQN;4L+o4M}i+zS`? z;-$Tr^D>miVjAT!Ob0r;`7*21;k1mT_YRk*7`sRGbq7zq>sdg1yhJjeFc1^Blu4Va z32{guR%18&E@sHhSc24k<_efi%py=CV#_mCUt*Mp)M~W2#5hxoB_ci+464fG@DL$E zzBsU{>{dmAc5^i8=%VAkzCE0nVEFz_Q@TKd`_ZlA%H)G zLJ>vDA;RG>wJeOOAI8RHM6ipA!o+Js-i~z5Ug>m{YUy16SDSnl?5JcVIC#@Fejom~ zfAIw5A0$rh1oZ$R-;5cYw`{nZ@>;)jL$59C%B8B~y|PwE@CtQoqL$X=4L11wJ0lay pM + +CollectionInfo::CollectionInfo(std::string name, + std::string listPath, + std::string extensions, + std::string metadataType, + std::string metadataPath) +: Name(name) +, ListPath(listPath) +, Extensions(extensions) +, MetadataType(metadataType) +, MetadataPath(metadataPath) +{ +} + +CollectionInfo::~CollectionInfo() +{ +} + +std::string CollectionInfo::GetName() const +{ + return Name; +} + +std::string CollectionInfo::GetSettingsPath() const +{ + return Configuration::GetAbsolutePath() + "/Collections/" + GetName(); +} + +std::string CollectionInfo::GetListPath() const +{ + return ListPath; +} + +std::string CollectionInfo::GetMetadataType() const +{ + return MetadataType; +} + +std::string CollectionInfo::GetMetadataPath() const +{ + return MetadataPath; +} + +std::string CollectionInfo::GetExtensions() const +{ + return Extensions; +} + +void CollectionInfo::GetExtensions(std::vector &extensions) +{ + std::istringstream ss(Extensions); + std::string token; + + while(std::getline(ss, token, ',')) + { + extensions.push_back(token); + } +} + + + diff --git a/Source/Collection/CollectionInfo.h b/Source/Collection/CollectionInfo.h new file mode 100644 index 0000000..6bfaa1f --- /dev/null +++ b/Source/Collection/CollectionInfo.h @@ -0,0 +1,28 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include + +class CollectionInfo +{ +public: + CollectionInfo(std::string name, std::string listPath, std::string extensions, std::string metadataType, std::string metadataPath); + virtual ~CollectionInfo(); + std::string GetName() const; + std::string GetSettingsPath() const; + std::string GetListPath() const; + std::string GetMetadataType() const; + std::string GetMetadataPath() const; + std::string GetExtensions() const; + void GetExtensions(std::vector &extensions); + +private: + std::string Name; + std::string ListPath; + std::string Extensions; + std::string MetadataType; + std::string MetadataPath; +}; diff --git a/Source/Collection/CollectionInfoBuilder.cpp b/Source/Collection/CollectionInfoBuilder.cpp new file mode 100644 index 0000000..a8c389e --- /dev/null +++ b/Source/Collection/CollectionInfoBuilder.cpp @@ -0,0 +1,126 @@ +#include "CollectionInfoBuilder.h" +#include "CollectionInfo.h" +#include "../Database/Configuration.h" +#include "../Utility/Log.h" +#include +#include + +CollectionInfoBuilder::CollectionInfoBuilder(Configuration *c) +: Conf(c) +{ +} + +CollectionInfoBuilder::~CollectionInfoBuilder() +{ + std::map::iterator it = InfoMap.begin(); + + for(it == InfoMap.begin(); it != InfoMap.end(); ++it) + { + delete it->second; + } + + InfoMap.clear(); +} + +bool CollectionInfoBuilder::LoadAllCollections() +{ + std::vector collections; + + Conf->GetChildKeyCrumbs("collections", collections); + + if(collections.size() == 0) + { + Logger::Write(Logger::ZONE_ERROR, "Collections", "No collections were found. Please configure Settings.conf"); + return false; + } + + bool retVal = true; + std::vector::iterator it; + + for(it = collections.begin(); it != collections.end(); ++it) + { + // todo: There is nothing that should really stop us from creating a collection + // in the main folder. I just need to find some time to look at the impacts if + // I remove this conditional check. + if(*it != "Main") + { + if(ImportCollection(*it)) + { + Logger::Write(Logger::ZONE_INFO, "Collections", "Adding collection " + *it); + } + else + { + // Continue processing the rest of the collections if an error occurs during import. + // ImportCollection() will print out an error to the log file. + retVal = false; + } + } + } + + return retVal; +} + +void CollectionInfoBuilder::GetCollections(std::vector &collections) +{ + std::map::iterator InfoMapIt; + + for(InfoMapIt = InfoMap.begin(); InfoMapIt != InfoMap.end(); ++InfoMapIt) + { + collections.push_back(InfoMapIt->second); + } +} + +bool CollectionInfoBuilder::ImportCollection(std::string name) +{ + // create a new instance if one does not exist + if(InfoMap.find(name) != InfoMap.end()) + { + return true; + } + std::string listItemsPathKey = "collections." + name + ".list.path"; + std::string listFilterKey = "collections." + name + ".list.filter"; + std::string extensionsKey = "collections." + name + ".list.extensions"; + std::string launcherKey = "collections." + name + ".launcher"; + + //todo: metadata is not fully not implemented + std::string metadataTypeKey = "collections." + name + ".metadata.type"; + std::string metadataPathKey = "collections." + name + ".metadata.path"; + + std::string listItemsPath; + std::string launcherName; + std::string extensions; + std::string metadataType; + std::string metadataPath; + + if(!Conf->GetPropertyAbsolutePath(listItemsPathKey, listItemsPath)) + { + Logger::Write(Logger::ZONE_INFO, "Collections", "Property \"" + listItemsPathKey + "\" does not exist. Assuming \"" + name + "\" is a menu"); + return false; + } + + if(!Conf->GetProperty(extensionsKey, extensions)) + { + Logger::Write(Logger::ZONE_INFO, "Collections", "Property \"" + extensionsKey + "\" does not exist. Assuming \"" + name + "\" is a menu"); + return false; + } + + (void)Conf->GetProperty(metadataTypeKey, metadataType); + (void)Conf->GetProperty(metadataPathKey, metadataPath); + + if(!Conf->GetProperty(launcherKey, launcherName)) + { + std::stringstream ss; + ss << "Warning: launcher property \"" + << launcherKey + << "\" points to a launcher that is not configured (launchers." + << launcherName + << "). Your collection will be viewable, however you will not be able to " + << "launch any of the items in your collection."; + + Logger::Write(Logger::ZONE_WARNING, "Collections", ss.str()); + } + + InfoMap[name] = new CollectionInfo(name, listItemsPath, extensions, metadataType, metadataPath); + + return (InfoMap[name] != NULL); +} diff --git a/Source/Collection/CollectionInfoBuilder.h b/Source/Collection/CollectionInfoBuilder.h new file mode 100644 index 0000000..eb438bb --- /dev/null +++ b/Source/Collection/CollectionInfoBuilder.h @@ -0,0 +1,25 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include +#include + +class Configuration; +class CollectionInfo; + +class CollectionInfoBuilder +{ +public: + CollectionInfoBuilder(Configuration *c); + virtual ~CollectionInfoBuilder(); + bool LoadAllCollections(); + void GetCollections(std::vector &keys); + +private: + bool ImportCollection(std::string name); + std::map InfoMap; + Configuration *Conf; +}; diff --git a/Source/Collection/Item.cpp b/Source/Collection/Item.cpp new file mode 100644 index 0000000..61b9000 --- /dev/null +++ b/Source/Collection/Item.cpp @@ -0,0 +1,160 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Item.h" +#include "../Utility/Utils.h" +#include +#include + +Item::Item() +: NumberPlayers(0) +, NumberButtons(0) +, Leaf(true) +{ +} + +Item::~Item() +{ +} + +const std::string Item::GetFileName() const +{ + return Utils::GetFileName(FilePath); +} + +const std::string& Item::GetFilePath() const +{ + return FilePath; +} + +void Item::SetFilePath(const std::string& filepath) +{ + FilePath = filepath; +} + +const std::string& Item::GetLauncher() const +{ + return Launcher; +} + +void Item::SetLauncher(const std::string& launcher) +{ + Launcher = launcher; +} + +const std::string& Item::GetManufacturer() const +{ + return Manufacturer; +} + +void Item::SetManufacturer(const std::string& manufacturer) +{ + Manufacturer = manufacturer; +} + +const std::string& Item::GetName() const +{ + return Name; +} + +void Item::SetName(const std::string& name) +{ + Name = name; +} + +int Item::GetNumberButtons() const +{ + return NumberButtons; +} + +std::string Item::GetNumberButtonsString() +{ + std::stringstream ss; + ss << NumberButtons; + return ss.str(); +} + + +void Item::SetNumberButtons(int numberbuttons) +{ + NumberButtons = numberbuttons; +} + +int Item::GetNumberPlayers() const +{ + return NumberPlayers; +} + +std::string Item::GetNumberPlayersString() +{ + std::stringstream ss; + ss << NumberButtons; + return ss.str(); +} + + +void Item::SetNumberPlayers(int numberplayers) +{ + NumberPlayers = numberplayers; +} + +const std::string& Item::GetTitle() const +{ + return Title; +} + +const std::string& Item::GetLCTitle() const +{ + return LCTitle; +} + +void Item::SetTitle(const std::string& title) +{ + Title = title; + LCTitle = Title; + std::transform(LCTitle.begin(), LCTitle.end(), LCTitle.begin(), ::tolower); +} + +const std::string& Item::GetYear() const +{ + return Year; +} + +void Item::SetYear(const std::string& year) +{ + Year = year; +} + +bool Item::IsLeaf() const +{ + return Leaf; +} + +void Item::SetIsLeaf(bool leaf) +{ + Leaf = leaf; +} + +const std::string& Item::GetFullTitle() const +{ + return FullTitle; +} + +void Item::SetFullTitle(const std::string& fulltitle) +{ + FullTitle = fulltitle; +} + +const std::string& Item::GetCloneOf() const +{ + return CloneOf; +} + +void Item::SetCloneOf(const std::string& cloneOf) +{ + CloneOf = cloneOf; +} + +bool Item::operator<(const Item &rhs) { return LCTitle < rhs.LCTitle; } +bool Item::operator>(const Item &rhs) { return LCTitle > rhs.LCTitle; } + diff --git a/Source/Collection/Item.h b/Source/Collection/Item.h new file mode 100644 index 0000000..856041f --- /dev/null +++ b/Source/Collection/Item.h @@ -0,0 +1,56 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include + +class Item +{ +public: + Item(); + virtual ~Item(); + const std::string GetFileName() const; + const std::string& GetFilePath() const; + void SetFilePath(const std::string& filepath); + const std::string& GetLauncher() const; + void SetLauncher(const std::string& launcher); + const std::string& GetManufacturer() const; + void SetManufacturer(const std::string& manufacturer); + const std::string& GetName() const; + void SetName(const std::string& name); + int GetNumberButtons() const; + std::string GetNumberButtonsString(); + void SetNumberButtons(int numberbuttons); + void SetNumberPlayers(int numberplayers); + int GetNumberPlayers() const; + std::string GetNumberPlayersString(); + const std::string& GetTitle() const; + const std::string& GetLCTitle() const; + void SetTitle(const std::string& title); + const std::string& GetYear() const; + void SetYear(const std::string& year); + bool IsLeaf() const; + void SetIsLeaf(bool leaf); + const std::string& GetFullTitle() const; + void SetFullTitle(const std::string& fulltitle); + const std::string& GetCloneOf() const; + void SetCloneOf(const std::string& cloneOf); + bool operator<(const Item& rhs); + bool operator>(const Item& rhs); + +private: + std::string Launcher; + std::string FilePath; + std::string Name; + std::string Title; + std::string LCTitle; + std::string FullTitle; + std::string Year; + std::string Manufacturer; + std::string CloneOf; + int NumberPlayers; + int NumberButtons; + bool Leaf; +}; + diff --git a/Source/Collection/MenuParser.cpp b/Source/Collection/MenuParser.cpp new file mode 100644 index 0000000..5554b2d --- /dev/null +++ b/Source/Collection/MenuParser.cpp @@ -0,0 +1,108 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "MenuParser.h" +#include "Item.h" +#include "../Utility/Log.h" +#include "../Database/Configuration.h" +#include "../Database/CollectionDatabase.h" +#include "../Database/DB.h" +#include +#include +#include +#include + +bool VectorSort(const Item *d1, const Item *d2) +{ + return d1->GetLCTitle() < d2->GetLCTitle(); +} + +MenuParser::MenuParser() +{ +} + +MenuParser::~MenuParser() +{ +} + +//todo: clean up this method, too much nesting +bool MenuParser::GetMenuItems(CollectionDatabase *cdb, std::string collectionName, std::vector &items) +{ + bool retVal = false; + //todo: magic string + std::string menuFilename = Configuration::GetAbsolutePath() + "/Collections/" + collectionName + "/Menu.xml"; + rapidxml::xml_document<> doc; + rapidxml::xml_node<> * rootNode; + + Logger::Write(Logger::ZONE_INFO, "Menu", "Checking if menu exists at \"" + menuFilename + "\""); + + try + { + std::ifstream file(menuFilename.c_str()); + + // gracefully exit if there is no menu file for the pa + if(file.good()) + { + Logger::Write(Logger::ZONE_INFO, "Menu", "Found menu"); + std::vector buffer((std::istreambuf_iterator(file)), std::istreambuf_iterator()); + + buffer.push_back('\0'); + + doc.parse<0>(&buffer[0]); + + rootNode = doc.first_node("menu"); + + for (rapidxml::xml_node<> * itemNode = rootNode->first_node("item"); itemNode; itemNode = itemNode->next_sibling()) + { + rapidxml::xml_attribute<> *collectionAttribute = itemNode->first_attribute("collection"); + rapidxml::xml_attribute<> *importAttribute = itemNode->first_attribute("import"); + + if(!collectionAttribute) + { + retVal = false; + Logger::Write(Logger::ZONE_ERROR, "Menu", "Menu item tag is missing collection attribute"); + break; + } + else + { + //todo: too much nesting! Ack! + std::string import; + if(importAttribute) + { + import = importAttribute->value(); + } + if(import != "true") + { + //todo, check for empty string + std::string title = collectionAttribute->value(); + Item *item = new Item(); + item->SetTitle(title); + item->SetFullTitle(title); + item->SetName(collectionAttribute->value()); + item->SetIsLeaf(false); + items.push_back(item); + } + else + { + std::string collectionName = collectionAttribute->value(); + Logger::Write(Logger::ZONE_INFO, "Menu", "Loading collection into menu: " + collectionName); + cdb->GetCollection(collectionAttribute->value(), items); + } + } + } + + std::sort( items.begin(), items.end(), VectorSort); + + retVal = true; + } + } + catch(std::ifstream::failure &e) + { + std::stringstream ss; + ss << "Unable to open menu file \"" << menuFilename << "\": " << e.what(); + Logger::Write(Logger::ZONE_ERROR, "Menu", ss.str()); + } + + return retVal; + +} diff --git a/Source/Collection/MenuParser.h b/Source/Collection/MenuParser.h new file mode 100644 index 0000000..4c15e31 --- /dev/null +++ b/Source/Collection/MenuParser.h @@ -0,0 +1,17 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once +#include "Item.h" +#include + +class CollectionDatabase; + +class MenuParser +{ +public: + MenuParser(); + virtual ~MenuParser(); + bool GetMenuItems(CollectionDatabase *cdb, std::string collectionName, std::vector &items); + +}; diff --git a/Source/Control/UserInput.cpp b/Source/Control/UserInput.cpp new file mode 100644 index 0000000..a14e2cc --- /dev/null +++ b/Source/Control/UserInput.cpp @@ -0,0 +1,78 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "UserInput.h" +#include "../Database/Configuration.h" +#include "../Utility/Log.h" + +UserInput::UserInput(Configuration *c) +: Config(c) +{ +} + +UserInput::~UserInput() +{ +} + +bool UserInput::Initialize() +{ + bool retVal = true; + + retVal = MapKey("nextItem", KeyCodeNextItem) && retVal; + retVal = MapKey("previousItem", KeyCodePreviousItem) && retVal; + retVal = MapKey("pageDown", KeyCodePageDown) && retVal; + retVal = MapKey("pageUp", KeyCodePageUp) && retVal; + retVal = MapKey("select", KeyCodeSelect) && retVal; + retVal = MapKey("back", KeyCodeBack) && retVal; + retVal = MapKey("quit", KeyCodeQuit) && retVal; + // these features will need to be implemented at a later time +// retVal = MapKey("admin", KeyCodeAdminMode) && retVal; +// retVal = MapKey("remove", KeyCodeHideItem) && retVal; + + return retVal; +} + +SDL_Scancode UserInput::GetScancode(KeyCode_E key) +{ + SDL_Scancode scancode = SDL_SCANCODE_UNKNOWN; + std::map::iterator it = KeyMap.find(key); + + if(it != KeyMap.end()) + { + scancode = it->second; + } + + return scancode; +} + + +bool UserInput::MapKey(std::string keyDescription, KeyCode_E key) +{ + bool retVal = false; + SDL_Scancode scanCode; + std::string description; + + std::string configKey = "controls." + keyDescription; + + if(!Config->GetProperty(configKey, description)) + { + Logger::Write(Logger::ZONE_ERROR, "Configuration", "Missing property " + configKey); + } + else + { + scanCode = SDL_GetScancodeFromName(description.c_str()); + + if(scanCode == SDL_SCANCODE_UNKNOWN) + { + Logger::Write(Logger::ZONE_ERROR, "Configuration", "Unsupported property value for " + configKey + "(" + description + "). See Documentation/Keycodes.txt for valid inputs"); + } + else + { + KeyMap[key] = scanCode; + retVal = true; + } + } + + return retVal; +} + diff --git a/Source/Control/UserInput.h b/Source/Control/UserInput.h new file mode 100644 index 0000000..c58b2ad --- /dev/null +++ b/Source/Control/UserInput.h @@ -0,0 +1,38 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once +#include +#include +#include + +class Configuration; + +class UserInput +{ +public: + enum KeyCode_E + { + KeyCodeNextItem, + KeyCodePreviousItem, + KeyCodeSelect, + KeyCodeBack, + KeyCodePageDown, + KeyCodePageUp, + KeyCodeAdminMode, + KeyCodeHideItem, + KeyCodeQuit + }; + + UserInput(Configuration *c); + virtual ~UserInput(); + bool Initialize(); + SDL_Scancode GetScancode(KeyCode_E key); + + +private: + bool MapKey(std::string keyDescription, KeyCode_E key); + std::map KeyMap; + + Configuration *Config; +}; diff --git a/Source/Database/CollectionDatabase.cpp b/Source/Database/CollectionDatabase.cpp new file mode 100644 index 0000000..f8d1f5d --- /dev/null +++ b/Source/Database/CollectionDatabase.cpp @@ -0,0 +1,750 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "CollectionDatabase.h" +#include "../Collection/CollectionInfoBuilder.h" +#include "../Collection/CollectionInfo.h" +#include "../Collection/Item.h" +#include "../Utility/Log.h" +#include "../Utility/Utils.h" +#include "MamelistMetadata.h" +#include "Configuration.h" +#include "DB.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +CollectionDatabase::CollectionDatabase(DB *db, Configuration *c) +: Config(c) +, DBInstance(db) +{ + +} + +CollectionDatabase::~CollectionDatabase() +{ +} + +bool CollectionDatabase::ResetDatabase() +{ + bool retVal = true; + int rc; + char *error = NULL; + sqlite3 *handle = DBInstance->GetHandle(); + + Logger::Write(Logger::ZONE_INFO, "Database", "Erasing"); + + std::string sql; + sql.append("DROP TABLE IF EXISTS CollectionItems;"); + sql.append("DROP TABLE IF EXISTS Meta;"); + sql.append("DROP TABLE IF EXISTS Collections;"); + + rc = sqlite3_exec(handle, sql.c_str(), NULL, 0, &error); + + if(rc != SQLITE_OK) + { + std::stringstream ss; + ss << "Unable to create Configurations table. Error: " << error; + Logger::Write(Logger::ZONE_ERROR, "Database", ss.str()); + retVal = false; + } + + //CheckDatabase(); + + return retVal; +} + +bool CollectionDatabase::CheckDatabase() +{ + bool retVal = true; + int rc; + char *error = NULL; + sqlite3 *handle = DBInstance->GetHandle(); + + std::string sql; + sql.append("CREATE TABLE IF NOT EXISTS CollectionItems("); + sql.append("collectionName TEXT KEY,"); + sql.append("filePath TEXT NOT NULL DEFAULT '',"); + sql.append("name TEXT NOT NULL DEFAULT '',"); + sql.append("hidden INT NOT NULL DEFAULT 0);"); + + sql.append("CREATE TABLE IF NOT EXISTS Meta("); + sql.append("collectionName TEXT KEY,"); + sql.append("name TEXT NOT NULL DEFAULT '',"); + sql.append("title TEXT NOT NULL DEFAULT '',"); + sql.append("year TEXT NOT NULL DEFAULT '',"); + sql.append("manufacturer TEXT NOT NULL DEFAULT '',"); + sql.append("cloneOf TEXT NOT NULL DEFAULT '',"); + sql.append("players INTEGER,"); + sql.append("buttons INTEGER);"); + sql.append("CREATE UNIQUE INDEX IF NOT EXISTS MetaUniqueId ON Meta(collectionName, name);"); + + sql.append("CREATE TABLE IF NOT EXISTS Collections("); + sql.append("collectionName TEXT KEY,"); + sql.append("crc32 UNSIGNED INTEGER NOT NULL DEFAULT 0);"); + sql.append("CREATE UNIQUE INDEX IF NOT EXISTS CollectionsUniqueId ON Collections(collectionName);"); + + rc = sqlite3_exec(handle, sql.c_str(), NULL, 0, &error); + + if(rc != SQLITE_OK) + { + std::stringstream ss; + ss << "Unable to create Configurations table. Error: " << error; + Logger::Write(Logger::ZONE_ERROR, "Database", ss.str()); + + retVal = false; + } + + return retVal; +} + + +bool CollectionDatabase::Import() +{ + bool retVal = true; + + // should keep allocation here + CollectionInfoBuilder cib(Config); + + (void)cib.LoadAllCollections(); + + std::vector collections; + cib.GetCollections(collections); + + std::vector::iterator it; + for(it = collections.begin(); it != collections.end() && retVal; ++it) + { + CollectionInfo *info = *it; + std::string title = info->GetName(); + unsigned long crc32 = CalculateCollectionCrc32(info); + + std::stringstream crcStr; + crcStr << crc32; + + if(title != "Main") + { + if(CollectionChanged(info, crc32)) + { + std::string msg = "Detected collection \"" + title + "\" has changed (new CRC: " + crcStr.str() + "). Rebuilding database for this collection."; + Logger::Write(Logger::ZONE_INFO, "Database", msg); + + (void)ImportDirectory(info, crc32); + retVal = true; + } + else + { + std::stringstream ss; + std::string msg = "Collection \"" + title + "\" has not changed (CRC: " + crcStr.str() + "). Using existing database settings."; + Logger::Write(Logger::ZONE_INFO, "Database", msg); + + } + } + //std::cout << "Importing collection metadata for " << info->GetFullTitle() << " (collections." << info->GetName() << ")" << std::endl; + //ImportMetadata(info); + } + Logger::Write(Logger::ZONE_INFO, "Database", "COMPLETE"); + Sleep(1000); + return retVal; +} + +unsigned long CollectionDatabase::CalculateCollectionCrc32(CollectionInfo *info) +{ + unsigned long crc = crc32(0L, Z_NULL, 0); + + // start off by reading all of the contents in the collection configuration folders + std::string settingsFile = info->GetSettingsPath() + "/Settings.conf"; + crc = CrcFile(settingsFile, crc); + + + std::string includeFile = info->GetSettingsPath() + "/Include.txt"; + crc = CrcFile(includeFile, crc); + + std::string excludeFile = info->GetSettingsPath() + "/Exclude.txt"; + crc = CrcFile(excludeFile, crc); + + std::string mamelistFile = info->GetSettingsPath() + "/Mamelist.xml"; + crc = CrcFile(mamelistFile, crc); + + DIR *dp; + struct dirent *dirp; + std::string path = info->GetListPath(); + dp = opendir(path.c_str()); + + if(dp == NULL) + { + Logger::Write(Logger::ZONE_ERROR, "Database", "Could not read directory for caching \"" + info->GetListPath() + "\""); + return crc; + } + + std::vector extensions; + info->GetExtensions(extensions); + std::vector::iterator extensionsIt; + + // md5sum each filename for the matching extension + while((dirp = readdir(dp)) != NULL) + { + std::string file = dirp->d_name; + for(extensionsIt = extensions.begin(); extensionsIt != extensions.end(); ++extensionsIt) + { + std::string comparator = "." + *extensionsIt; + int start = file.length() - comparator.length() + 1; + + if(start >= 0 && file.compare(start, comparator.length(), *extensionsIt) == 0) + { + std::string filename = dirp->d_name; + filename.append("\n"); + crc = crc32(crc, (const unsigned char *)filename.c_str(), (unsigned int)filename.length()); + } + } + } + + return crc; +} + +unsigned long CollectionDatabase::CrcFile(std::string file, unsigned long crc) +{ + // CRC both the filename and its contents + crc = crc32(crc, (const unsigned char *)file.c_str(), (unsigned int)file.length()); + std::ifstream ifFile(file.c_str()); + if(ifFile.good()) + { + std::stringstream ss; + ss << ifFile.rdbuf(); + + crc = crc32(crc, (const unsigned char *)ss.str().c_str(), (unsigned int)ss.str().length()); + Logger::Write(Logger::ZONE_INFO, "Database", "Crcing \"" + file + "\""); + ifFile.close(); + } + + return crc; +} + +bool CollectionDatabase::CollectionChanged(CollectionInfo *info, unsigned long crc32) +{ + bool retVal = true; + + sqlite3 *handle = DBInstance->GetHandle(); + int rc; + sqlite3_stmt *stmt; + + sqlite3_prepare_v2(handle, + "SELECT crc32 " + "FROM Collections WHERE collectionName=? and crc32=?;", + -1, &stmt, 0); + + sqlite3_bind_text(stmt, 1, info->GetName().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_int(stmt, 2, crc32); + + rc = sqlite3_step(stmt); + + if(rc == SQLITE_ROW) + { + retVal = false; + } + + return retVal; +} + +bool CollectionDatabase::SetHidden(std::string collectionName, Item *item, bool hidden) +{ + bool retVal = true; + char *error = NULL; + sqlite3 *handle = DBInstance->GetHandle(); + std::string mode = (hidden) ? "hidden":"visible"; + int isHidden = (hidden)?1:0; + + Logger::Write(Logger::ZONE_DEBUG, "Database", "Marking \"" + item->GetFullTitle() + "\" " + mode); + + sqlite3_stmt *stmt; + sqlite3_prepare_v2(handle, + "UPDATE CollectionItems SET hidden=? WHERE collectionName=? AND name=?;", + -1, &stmt, 0); + + sqlite3_bind_int(stmt, 1, isHidden); + sqlite3_bind_text(stmt, 2, collectionName.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 3, item->GetFullTitle().c_str(), -1, SQLITE_TRANSIENT); + + sqlite3_step(stmt); + sqlite3_finalize(stmt); + + sqlite3_exec(handle, "COMMIT TRANSACTION;", NULL, NULL, &error); + + return retVal; +} + +//todo: This file needs MASSIVE REFACTORING! +bool CollectionDatabase::ImportDirectory(CollectionInfo *info, unsigned long crc32) +{ + DIR *dp; + struct dirent *dirp; + std::string path = info->GetListPath(); + std::map includeFilter; + std::map excludeFilter; + std::map includeList; + std::map metaList; + bool retVal = true; + char *error = NULL; + sqlite3 *handle = DBInstance->GetHandle(); + std::string includeFile = Configuration::GetAbsolutePath() + "/Collections/" + info->GetName() + "/Include.txt"; + std::string excludeFile = Configuration::GetAbsolutePath() + "/Collections/" + info->GetName() + "/Exclude.txt"; + std::string includeHyperListFile = Configuration::GetAbsolutePath() + "/Collections/" + info->GetName() + "/Include.xml"; + + if(!ImportBasicList(info, includeFile, includeFilter)) + { + ImportHyperList(info, includeHyperListFile, includeFilter); + + } + //todo: this shouldn't be read twice, perform a copy + ImportHyperList(info, includeHyperListFile, metaList); + + (void)ImportBasicList(info, excludeFile, excludeFilter); + + dp = opendir(path.c_str()); + std::vector extensions; + info->GetExtensions(extensions); + std::vector::iterator extensionsIt; + + if(dp == NULL) + { + Logger::Write(Logger::ZONE_ERROR, "Database", "Could not read directory \"" + info->GetListPath() + "\""); + //todo: store into a database + } + else + { + while((dirp = readdir(dp)) != NULL) + { + std::string file = dirp->d_name; + + Utils::NormalizeBackSlashes(file); + size_t position = file.find_last_of("."); + std::string basename = (std::string::npos == position)? file : file.substr(0, position); + + + if((includeFilter.size() == 0 || includeFilter.find(basename) != includeFilter.end()) && + (excludeFilter.size() == 0 || excludeFilter.find(basename) == excludeFilter.end())) + { + for(extensionsIt = extensions.begin(); extensionsIt != extensions.end(); ++extensionsIt) + { + std::string comparator = "." + *extensionsIt; + int start = file.length() - comparator.length() + 1; + + if(start >= 0) + { + if(file.compare(start, comparator.length(), *extensionsIt) == 0) + { + if(includeList.find(basename) == includeList.end()) + { + Item *i = new Item(); + i->SetFullTitle(file); + includeList[basename] = i; + } + if(metaList.find(basename) == metaList.end()) + { + Item *i = new Item(); + i->SetFullTitle(file); + metaList[basename] = i; + } + } + } + } + } + } + } + + while(includeFilter.size() > 0) + { + std::map::iterator it = includeFilter.begin(); + delete it->second; + includeFilter.erase(it); + } + while(excludeFilter.size() > 0) + { + std::map::iterator it = excludeFilter.begin(); + delete it->second; + excludeFilter.erase(it); + } + + + Logger::Write(Logger::ZONE_INFO, "Database", "Scanning to import \"" + path + "\""); + sqlite3_exec(handle, "BEGIN IMMEDIATE TRANSACTION;", NULL, NULL, &error); + + sqlite3_stmt *stmt; + sqlite3_prepare_v2(handle, + "DELETE FROM Collections WHERE collectionName=?;", + -1, &stmt, 0); + sqlite3_bind_text(stmt, 1, info->GetName().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_step(stmt); + sqlite3_finalize(stmt); + + sqlite3_prepare_v2(handle, + "DELETE FROM CollectionItems WHERE collectionName=?;", + -1, &stmt, 0); + sqlite3_bind_text(stmt, 1, info->GetName().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_step(stmt); + sqlite3_finalize(stmt); + + sqlite3_prepare_v2(handle, + "DELETE FROM Meta WHERE collectionName=?;", + -1, &stmt, 0); + sqlite3_bind_text(stmt, 1, info->GetName().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_step(stmt); + sqlite3_finalize(stmt); + + if(sqlite3_exec(handle, "COMMIT TRANSACTION;", NULL, NULL, &error) != SQLITE_OK) + { + std::stringstream ss; + ss << "Updating cache collection failure " << error; + Logger::Write(Logger::ZONE_ERROR, "Database", ss.str()); + retVal = false; + } + + std::map::iterator it; + + if(sqlite3_exec(handle, "BEGIN IMMEDIATE TRANSACTION;", NULL, NULL, &error) != SQLITE_OK) + { + std::stringstream ss; + ss << "Delete cache collection failure " << error; + Logger::Write(Logger::ZONE_ERROR, "Database", ss.str()); + retVal = false; + } + + for(it = includeList.begin(); it != includeList.end(); it++) + { + std::string basename = it->first; + Item *file = it->second; + + std::string name = file->GetFullTitle(); + Utils::NormalizeBackSlashes(name); + file->SetFullTitle(name); + + sqlite3_prepare_v2(handle, + "INSERT OR REPLACE INTO CollectionItems (collectionName, filePath, name) VALUES (?,?,?);", + -1, &stmt, 0); + + sqlite3_bind_text(stmt, 1, info->GetName().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 2, file->GetFullTitle().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 3, basename.c_str(), -1, SQLITE_TRANSIENT); + + //todo: better error handling for all of these messages + sqlite3_step(stmt); + sqlite3_finalize(stmt); + } + for(it = metaList.begin(); it != metaList.end(); it++) + { + std::string basename = it->first; + Item *file = it->second; + + sqlite3_prepare_v2(handle, + "INSERT OR REPLACE INTO Meta (collectionName, name, title, year, manufacturer, cloneOf, players, buttons) VALUES (?,?,?,?,?,?,?,?);", + -1, &stmt, 0); + + sqlite3_bind_text(stmt, 1, info->GetName().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 2, basename.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 3, basename.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 4, file->GetYear().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 5, file->GetManufacturer().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 6, file->GetCloneOf().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 7, file->GetNumberPlayersString().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 8, file->GetNumberButtonsString().c_str(), -1, SQLITE_TRANSIENT); + + sqlite3_step(stmt); + sqlite3_finalize(stmt); + } + + sqlite3_prepare_v2(handle, + "INSERT OR REPLACE INTO Collections (collectionName, crc32) VALUES (?,?);", + -1, &stmt, 0); + + sqlite3_bind_text(stmt, 1, info->GetName().c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_int(stmt, 2, crc32); + + sqlite3_step(stmt); + sqlite3_finalize(stmt); + + + if(sqlite3_exec(handle, "COMMIT TRANSACTION;", NULL, NULL, &error) != SQLITE_OK) + { + std::stringstream ss; + ss << "Updating cache collection failure " << error; + Logger::Write(Logger::ZONE_ERROR, "Database", ss.str()); + retVal = false; + } + + Logger::Write(Logger::ZONE_INFO, "Database", "Imported files from \"" + path + "\" into database"); + + //todo: create a helper method to get this file directly (copy paste hazard) + std::string mamelistFile = info->GetSettingsPath() + "/Mamelist.xml"; + std::ifstream infile(mamelistFile.c_str()); + + if(infile.good()) + { + Logger::Write(Logger::ZONE_INFO, "Database", "Updating Mamelist metadata for \"" + info->GetName() + "\" (\"" + mamelistFile + "\") into database. This will take a while..."); + MamelistMetadata mld(DBInstance); + mld.Import(mamelistFile, info->GetName()); + } + infile.close(); + + + while(includeList.size() > 0) + { + std::map::iterator it = includeList.begin(); + delete it->second; + includeList.erase(it); + } + while(metaList.size() > 0) + { + std::map::iterator it = metaList.begin(); + delete it->second; + metaList.erase(it); + } + return retVal; +} + +bool CollectionDatabase::ImportBasicList(CollectionInfo *info, std::string file, std::map &list) +{ + bool retVal = false; + + Logger::Write(Logger::ZONE_DEBUG, "Database", "Checking to see if \"" + file + "\" exists"); + + std::ifstream includeStream(file.c_str()); + + if (includeStream.good()) + { + Logger::Write(Logger::ZONE_DEBUG, "Database", "Importing \"" + file + "\""); + std::string line; + + while(std::getline(includeStream, line)) + { + if(list.find(line) == list.end()) + { + Item *i = new Item(); + line.erase( std::remove(line.begin(), line.end(), '\r'), line.end() ); + + i->SetFullTitle(line); + list[line] = i; + Logger::Write(Logger::ZONE_DEBUG, "Database", "Including \"" + line + "\" (if file exists)"); + } + } + + retVal = true; + } + + return retVal; +} +bool CollectionDatabase::ImportHyperList(CollectionInfo *info, std::string hyperlistFile, std::map &list) +{ + bool retVal = false; + rapidxml::xml_document<> doc; + std::ifstream file(hyperlistFile.c_str()); + std::vector buffer((std::istreambuf_iterator(file)), std::istreambuf_iterator()); + + Logger::Write(Logger::ZONE_DEBUG, "Database", "Checking to see if \"" + hyperlistFile + "\" exists"); + + if(!file.good()) + { + Logger::Write(Logger::ZONE_INFO, "Database", "Could not find HyperList file: " + hyperlistFile); + return retVal; + } + + try + { + Logger::Write(Logger::ZONE_INFO, "Database", "Importing: " + hyperlistFile); + buffer.push_back('\0'); + + doc.parse<0>(&buffer[0]); + + rapidxml::xml_node<> *root = doc.first_node("menu"); + + + if(!root) + { + Logger::Write(Logger::ZONE_ERROR, "CollectionDatabase", "Does not appear to be a HyperList file (missing tag)"); + return NULL; + } + else + { + for(rapidxml::xml_node<> *game = root->first_node("game"); game; game = game->next_sibling("game")) + { + rapidxml::xml_attribute<> *nameXml = game->first_attribute("name"); + rapidxml::xml_node<> *descriptionXml = game->first_node("description"); + rapidxml::xml_node<> *cloneofXml = game->first_node("cloneof"); + rapidxml::xml_node<> *crcXml = game->first_node("crc"); + rapidxml::xml_node<> *manufacturerXml = game->first_node("manufacturer"); + rapidxml::xml_node<> *yearXml = game->first_node("year"); + rapidxml::xml_node<> *genreXml = game->first_node("genre"); + rapidxml::xml_node<> *ratingXml = game->first_node("rating"); + rapidxml::xml_node<> *enabledXml = game->first_node("enabled"); + std::string name = (nameXml) ? nameXml->value() : ""; + std::string description = (descriptionXml) ? descriptionXml->value() : ""; + std::string crc = (crcXml) ? crcXml->value() : ""; + std::string cloneOf = (cloneofXml) ? cloneofXml->value() : ""; + std::string manufacturer = (manufacturerXml) ? manufacturerXml->value() : ""; + std::string year = (yearXml) ? yearXml->value() : ""; + std::string genre = (genreXml) ? genreXml->value() : ""; + std::string rating = (ratingXml) ? ratingXml->value() : ""; + std::string enabled = (enabledXml) ? enabledXml->value() : ""; + + if(name.length() > 0 && list.find(name) == list.end()) + { + Item *i = new Item(); + i->SetFullTitle(name); + i->SetYear(year); + i->SetManufacturer(manufacturer); + i->SetCloneOf(cloneOf); + list[name] = i; + Logger::Write(Logger::ZONE_DEBUG, "Database", "Including \"" + name + "\" (if file exists)"); + } + + } + } + } + catch(rapidxml::parse_error &e) + { + std::string what = e.what(); + long line = static_cast(std::count(&buffer.front(), e.where(), char('\n')) + 1); + std::stringstream ss; + ss << "Could not parse layout file. [Line: " << line << "] Reason: " << e.what(); + + Logger::Write(Logger::ZONE_ERROR, "Layout", ss.str()); + } + catch(std::exception &e) + { + std::string what = e.what(); + Logger::Write(Logger::ZONE_ERROR, "Layout", "Could not parse layout file. Reason: " + what); + } + + + return retVal; +} + +/* +bool CollectionDatabase::ImportMetadata(CollectionInfo *info) +{ + bool retVal = true; + std::string type = info->GetMetadataType(); + + if(type.compare("mamelist") == 0) + { + MamelistMetadata meta; + //todo: pass in collectionName + retVal = meta.Import(info->GetMetadataPath(), "arcade"); + } + else if(!type.empty()) + { + std::stringstream ss; + ss << "Unsupported metadata type \"" << type << "\" for " << info->GetFullTitle() << " (collections." << info->GetName() << ".metadata.type)" << std::endl; + Log::Write(Log::ERROR, "Database", ss.str()); + + retVal = false; + } + + return retVal; +} +*/ + +bool CollectionDatabase::GetCollection(std::string collectionName, std::vector &list) +{ + bool retVal = true; + + sqlite3 *handle = DBInstance->GetHandle(); + int rc; + sqlite3_stmt *stmt; + + bool showParenthesis = true; + bool showSquareBrackets = true; + + (void)Config->GetProperty("showParenthesis", showParenthesis); + (void)Config->GetProperty("showSquareBrackets", showSquareBrackets); + + //todo: program crashes if this query fails + sqlite3_prepare_v2(handle, + "SELECT DISTINCT CollectionItems.filePath, CollectionItems.name, Meta.title, Meta.year, Meta.manufacturer, Meta.players, Meta.buttons, Meta.cloneOf " + "FROM CollectionItems, Meta WHERE CollectionItems.collectionName=? AND Meta.collectionName=? AND CollectionItems.name=Meta.name AND CollectionItems.hidden=0 ORDER BY title ASC;", + -1, &stmt, 0); + + sqlite3_bind_text(stmt, 1, collectionName.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 2, collectionName.c_str(), -1, SQLITE_TRANSIENT); + + rc = sqlite3_step(stmt); + + while(rc == SQLITE_ROW) + { + std::string filePath = (char *)sqlite3_column_text(stmt, 0); + std::string name = (char *)sqlite3_column_text(stmt, 1); + std::string fullTitle = (char *)sqlite3_column_text(stmt, 2); + std::string year = (char *)sqlite3_column_text(stmt, 3); + std::string manufacturer = (char *)sqlite3_column_text(stmt, 4); + int numberPlayers = (int)sqlite3_column_int(stmt, 5); + int numberButtons = (int)sqlite3_column_int(stmt, 6); + std::string cloneOf = (char *)sqlite3_column_text(stmt, 7); + std::string launcher; + std::string title = fullTitle; + + if(!showParenthesis) + { + std::string::size_type firstPos = title.find_first_of("("); + std::string::size_type secondPos = title.find_first_of(")", firstPos); + + while(firstPos != std::string::npos && secondPos != std::string::npos) + { + firstPos = title.find_first_of("("); + secondPos = title.find_first_of(")", firstPos); + + if (firstPos != std::string::npos) + { + title.erase(firstPos, (secondPos - firstPos) + 1); + } + } + } + if(!showSquareBrackets) + { + std::string::size_type firstPos = title.find_first_of("["); + std::string::size_type secondPos = title.find_first_of("]", firstPos); + + while(firstPos != std::string::npos && secondPos != std::string::npos) + { + firstPos = title.find_first_of("["); + secondPos = title.find_first_of("]", firstPos); + + if (firstPos != std::string::npos && secondPos != std::string::npos) + { + title.erase(firstPos, (secondPos - firstPos) + 1); + } + } + } + + Item *item = new Item(); + item->SetFilePath(filePath); + item->SetName(name); + item->SetTitle(title); + item->SetFullTitle(fullTitle); + item->SetYear(year); + item->SetManufacturer(manufacturer); + item->SetNumberPlayers(numberPlayers); + item->SetNumberButtons(numberButtons); + item->SetCloneOf(cloneOf); + + //std::cout << "loading " << title << std::endl; + if(Config->GetProperty("collections." + collectionName + ".launcher", launcher)) + { + item->SetLauncher(launcher); + } + + list.push_back(item); + + rc = sqlite3_step(stmt); + } + + //todo: query the metadata table to populate each item + + return retVal; +} diff --git a/Source/Database/CollectionDatabase.h b/Source/Database/CollectionDatabase.h new file mode 100644 index 0000000..5986123 --- /dev/null +++ b/Source/Database/CollectionDatabase.h @@ -0,0 +1,44 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include +#include + +class DB; +class Configuration; +class CollectionInfo; +class Item; + +class CollectionDatabase +{ +public: + CollectionDatabase(DB *db, Configuration *c); + virtual ~CollectionDatabase(); + bool Import(); + bool ResetDatabase(); + bool CheckDatabase(); + + + bool GetCollection(std::string collectionName, std::vector &list); + bool SetHidden(std::string collectionName, Item *item, bool hidden); + +private: + unsigned long CalculateCollectionCrc32(CollectionInfo *info); + bool CollectionChanged(CollectionInfo *info, unsigned long crc32); + unsigned long CrcFile(std::string file, unsigned long crc); + +// bool ImportMetadata(CollectionInfo *info); + bool ImportDirectory(CollectionInfo *info, unsigned long crc32); + bool ImportBasicList(CollectionInfo *info, + std::string file, + std::map &list); + bool ImportHyperList(CollectionInfo *info, + std::string file, + std::map &list); + std::map *ImportHyperList(CollectionInfo *info); + Configuration *Config; + DB *DBInstance; +}; diff --git a/Source/Database/Configuration.cpp b/Source/Database/Configuration.cpp new file mode 100644 index 0000000..d50c09f --- /dev/null +++ b/Source/Database/Configuration.cpp @@ -0,0 +1,295 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Configuration.h" +#include "../Utility/Log.h" +#include "../Utility/Utils.h" +#include +#include +#include +#include + +std::string Configuration::AbsolutePath; + +Configuration::Configuration() +: Verbose(false) +{ +} + +Configuration::~Configuration() +{ +} + +bool Configuration::Import(std::string keyPrefix, std::string file) +{ + bool retVal = true; + int lineCount = 0; + std::string line; + + Logger::Write(Logger::ZONE_INFO, "Configuration", "Importing " + file); + + std::ifstream ifs(file.c_str()); + + if (!ifs.is_open()) + { + Logger::Write(Logger::ZONE_ERROR, "Configuration", "Could not open " + file); + + return false; + } + + while (std::getline (ifs, line)) + { + lineCount++; + retVal = retVal && ParseLine(keyPrefix, line, lineCount); + } + + ifs.close(); + + return retVal; +} + +bool Configuration::ParseLine(std::string keyPrefix, std::string line, int lineCount) +{ + bool retVal = false; + std::string key; + std::string value; + size_t position; + std::string delimiter = "="; + + // strip out any comments + if((position = line.find("#")) != std::string::npos) + { + line = line.substr(0, position); + } + // unix only wants \n. Windows uses \r\n. Strip off the \r for unix. + line.erase( std::remove(line.begin(), line.end(), '\r'), line.end() ); + if(line.empty() || (line.find_first_not_of(" \t\r") == std::string::npos)) + { + retVal = true; + } + // all configuration fields must have an assignment operator + else if((position = line.find(delimiter)) != std::string::npos) + { + if(keyPrefix.size() != 0) + { + keyPrefix += "."; + } + + key = keyPrefix + line.substr(0, position); + + key = TrimEnds(key); + + + value = line.substr(position + delimiter.length(), line.length()); + value = TrimEnds(value); + + + Properties.insert(PropertiesPair(key, value)); + + std::stringstream ss; + ss << "Dump: " << "\"" << key << "\" = \"" << value << "\""; + + + Logger::Write(Logger::ZONE_INFO, "Configuration", ss.str()); + retVal = true; + } + else + { + std::stringstream ss; + ss << "Missing an assignment operator (=) on line " << lineCount; + Logger::Write(Logger::ZONE_ERROR, "Configuration", ss.str()); + } + + return retVal; +} + +std::string Configuration::TrimEnds(std::string str) +{ + // strip off any initial tabs or spaces + size_t trimStart = str.find_first_not_of(" \t"); + + if(trimStart != std::string::npos) + { + size_t trimEnd = str.find_last_not_of(" \t"); + + str = str.substr(trimStart, trimEnd - trimStart + 1); + } + + return str; +} + +bool Configuration::GetProperty(std::string key, std::string &value) +{ + bool retVal = false; + if(Properties.find(key) != Properties.end()) + { + value = Properties[key]; + + retVal = true; + } + else if(Verbose) + { + Logger::Write(Logger::ZONE_DEBUG, "Configuration", "Missing property " + key); + } + + + return retVal; +} + +bool Configuration::GetProperty(std::string key, int &value) +{ + std::string strValue; + + bool retVal = GetProperty(key, strValue); + + if(retVal) + { + std::stringstream ss; + ss << strValue; + ss >> value; + } + + return retVal; +} + +bool Configuration::GetProperty(std::string key, bool &value) +{ + std::string strValue; + + bool retVal = GetProperty(key, strValue); + + if(retVal) + { + std::stringstream ss; + ss << strValue; + + for(unsigned int i=0; i < strValue.length(); ++i) + { + std::locale loc; + strValue[i] = std::tolower(strValue[i], loc); + } + + if(!strValue.compare("yes") || !strValue.compare("true")) + { + value = true; + } + else + { + value = false; + } + } + + return retVal; +} + +void Configuration::SetProperty(std::string key, std::string value) +{ + Properties[key] = value; +} + +bool Configuration::PropertyExists(std::string key) +{ + return (Properties.find(key) != Properties.end()); +} + +bool Configuration::PropertyPrefixExists(std::string key) +{ + PropertiesType::iterator it; + + for(it = Properties.begin(); it != Properties.end(); ++it) + { + std::string search = key + "."; + if(it->first.compare(0, search.length(), search) == 0) + { + return true; + } + } + + return false; +} + +void Configuration::GetChildKeyCrumbs(std::string parent, std::vector &children) +{ + PropertiesType::iterator it; + + for(it = Properties.begin(); it != Properties.end(); ++it) + { + std::string search = parent + "."; + if(it->first.compare(0, search.length(), search) == 0) + { + std::string crumb = Utils::Replace(it->first, search, ""); + + std::size_t end = crumb.find_first_of("."); + + if(end != std::string::npos) + { + crumb = crumb.substr(0, end); + } + + if(std::find(children.begin(), children.end(), crumb) == children.end()) + { + children.push_back(crumb); + } + } + } +} + +std::string Configuration::ConvertToAbsolutePath(std::string prefix, std::string path) +{ + char first = ' '; + char second = ' '; + + if(path.length() >= 0) + { + first = path.c_str()[0]; + } + if(path.length() >= 1) + { + second = path.c_str()[1]; + } + + // check to see if it is already an absolute path + if((first != '/') && + (first != '\\') && + //(first != '.') && + (second != ':')) + { + path = prefix + "/" + path; + } + + return path; +} + +bool Configuration::GetPropertyAbsolutePath(std::string key, std::string &value) +{ + bool retVal = GetProperty(key, value); + + if(retVal) + { + value = ConvertToAbsolutePath(GetAbsolutePath(), value); + } + + return retVal; +} + +void Configuration::SetAbsolutePath(std::string absolutePath) +{ + AbsolutePath = absolutePath; +} + +std::string Configuration::GetAbsolutePath() +{ + return AbsolutePath; +} + +bool Configuration::IsVerbose() const +{ + return Verbose; +} + +void Configuration::SetVerbose(bool verbose) +{ + this->Verbose = verbose; +} + + diff --git a/Source/Database/Configuration.h b/Source/Database/Configuration.h new file mode 100644 index 0000000..f181722 --- /dev/null +++ b/Source/Database/Configuration.h @@ -0,0 +1,43 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include +#include + +class Configuration +{ +public: + Configuration(); + virtual ~Configuration(); + + // gets the global configuration + bool Import(std::string keyPrefix, std::string file); + + bool GetProperty(std::string key, std::string &value); + bool GetProperty(std::string key, int &value); + bool GetProperty(std::string key, bool &value); + void GetChildKeyCrumbs(std::string parent, std::vector &children); + void SetProperty(std::string key, std::string value); + bool PropertyExists(std::string key); + bool PropertyPrefixExists(std::string key); + bool GetPropertyAbsolutePath(std::string key, std::string &value); + static void SetAbsolutePath(std::string absolutePath); + static std::string GetAbsolutePath(); + static std::string ConvertToAbsolutePath(std::string prefix, std::string path); + bool IsVerbose() const; + void SetVerbose(bool verbose); + bool IsRequiredPropertiesSet(); + +private: + bool ParseLine(std::string keyPrefix, std::string line, int lineCount); + std::string TrimEnds(std::string str); + typedef std::map PropertiesType; + typedef std::pair PropertiesPair; + bool Verbose; + + static std::string AbsolutePath; + PropertiesType Properties; +}; diff --git a/Source/Database/DB.cpp b/Source/Database/DB.cpp new file mode 100644 index 0000000..b042f66 --- /dev/null +++ b/Source/Database/DB.cpp @@ -0,0 +1,50 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "DB.h" +#include "Configuration.h" +#include "../Utility/Log.h" + +#include +#include + +DB::DB() +: Path(Configuration::GetAbsolutePath() + "/cache.db") +, Handle(NULL) +{ +} + +DB::~DB() +{ + DeInitialize(); +} + +bool DB::Initialize() +{ + bool retVal = false; + + if(sqlite3_open(Path.c_str(), &Handle) != 0) + { + std::stringstream ss; + ss << "Cannot open database: \"" << Path << "\"" << sqlite3_errmsg(Handle); + Logger::Write(Logger::ZONE_ERROR, "Database", ss.str()); + } + else + { + Logger::Write(Logger::ZONE_INFO, "Database", "Opened database \"" + Path + "\""); + retVal = true; + } + + return retVal; +} + + +void DB::DeInitialize() +{ + if(Handle != NULL) + { + sqlite3_close(Handle); + Handle = NULL; + } +} + diff --git a/Source/Database/DB.h b/Source/Database/DB.h new file mode 100644 index 0000000..f214b85 --- /dev/null +++ b/Source/Database/DB.h @@ -0,0 +1,21 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include +class DB +{ +public: + DB(); + bool Initialize(); + void DeInitialize(); + virtual ~DB(); + sqlite3 *GetHandle() { return Handle; } + +private: + sqlite3 *Handle; + std::string Path; +}; + diff --git a/Source/Database/MamelistMetadata.cpp b/Source/Database/MamelistMetadata.cpp new file mode 100644 index 0000000..9b2df78 --- /dev/null +++ b/Source/Database/MamelistMetadata.cpp @@ -0,0 +1,119 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "MamelistMetadata.h" +#include "DB.h" +#include "../Utility/Log.h" +#include "Metadata.h" +#include +#include +#include +#include +#include + + +MamelistMetadata::MamelistMetadata(DB *dbInstance) +: DBInstance(dbInstance) +{ +} + +MamelistMetadata::~MamelistMetadata() +{ +} + +bool MamelistMetadata::Import(std::string filename, std::string collection) +{ + bool retVal = true; + rapidxml::xml_document<> doc; + rapidxml::xml_node<> * rootNode; + char *error = NULL; + sqlite3 *handle = DBInstance->GetHandle(); + + std::ifstream f(filename.c_str()); + + if (!f.good()) + { + Logger::Write(Logger::ZONE_ERROR, "Mamelist", "Could not find mamelist metadata file at \"" + filename + "\""); + + retVal = false; + } + + f.close(); + + if(retVal) + { + Logger::Write(Logger::ZONE_INFO, "Mamelist", "Importing mamelist file \"" + filename + "\""); + std::ifstream file(filename.c_str()); + std::vector buffer((std::istreambuf_iterator(file)), std::istreambuf_iterator()); + + buffer.push_back('\0'); + + doc.parse<0>(&buffer[0]); + + rootNode = doc.first_node("mame"); + + sqlite3_exec(handle, "BEGIN IMMEDIATE TRANSACTION;", NULL, NULL, &error); + for (rapidxml::xml_node<> * game = rootNode->first_node("game"); game; game = game->next_sibling()) + { + rapidxml::xml_attribute<> *nameNode = game->first_attribute("name"); + rapidxml::xml_attribute<> *cloneOfXml = game->first_attribute("cloneof"); + + if(nameNode != NULL) + { + std::string name = nameNode->value(); + rapidxml::xml_node<> *descriptionNode = game->first_node("description"); + rapidxml::xml_node<> *yearNode = game->first_node("year"); + rapidxml::xml_node<> *manufacturerNode = game->first_node("manufacturer"); + rapidxml::xml_node<> *inputNode = game->first_node("input"); + + std::string description = (descriptionNode == NULL) ? nameNode->value() : descriptionNode->value(); + std::string year = (yearNode == NULL) ? "" : yearNode->value(); + std::string manufacturer = (manufacturerNode == NULL) ? "" : manufacturerNode->value(); + std::string cloneOf = (cloneOfXml == NULL) ? "" : cloneOfXml->value(); + std::string players; + std::string buttons; + + if(inputNode != NULL) + { + rapidxml::xml_attribute<> *playersAttribute = inputNode->first_attribute("players"); + rapidxml::xml_attribute<> *buttonsAttribute = inputNode->first_attribute("buttons"); + + if(playersAttribute) + { + players = playersAttribute->value(); + } + + if(buttonsAttribute) + { + buttons = buttonsAttribute->value(); + } + + } + + sqlite3_stmt *stmt; + sqlite3_prepare_v2(handle, + "UPDATE OR REPLACE Meta SET title=?, year=?, manufacturer=?, players=?, buttons=?, cloneOf=? WHERE name=? AND collectionName=?;", + -1, &stmt, 0); + + sqlite3_bind_text(stmt, 1, description.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 2, year.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 3, manufacturer.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 4, players.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 5, buttons.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 6, cloneOf.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 7, name.c_str(), -1, SQLITE_TRANSIENT); + sqlite3_bind_text(stmt, 8, collection.c_str(), -1, SQLITE_TRANSIENT); + + sqlite3_step(stmt); + sqlite3_finalize(stmt); + + } + } + sqlite3_exec(handle, "COMMIT TRANSACTION;", NULL, NULL, &error); + + } + + + + return retVal; +} diff --git a/Source/Database/MamelistMetadata.h b/Source/Database/MamelistMetadata.h new file mode 100644 index 0000000..4cb0b66 --- /dev/null +++ b/Source/Database/MamelistMetadata.h @@ -0,0 +1,18 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "Metadata.h" + +class DB; + +class MamelistMetadata : Metadata +{ +public: + MamelistMetadata(DB *dbInstance); + virtual ~MamelistMetadata(); + bool Import(std::string file, std::string collectionName); +private: + DB *DBInstance; +}; diff --git a/Source/Database/Metadata.h b/Source/Database/Metadata.h new file mode 100644 index 0000000..504ff7a --- /dev/null +++ b/Source/Database/Metadata.h @@ -0,0 +1,10 @@ +#pragma once + +#include + +class Metadata +{ +public: + virtual ~Metadata() {} + virtual bool Import(std::string file, std::string collectionName) = 0; +}; diff --git a/Source/Execute/Launcher.cpp b/Source/Execute/Launcher.cpp new file mode 100644 index 0000000..51d22b6 --- /dev/null +++ b/Source/Execute/Launcher.cpp @@ -0,0 +1,326 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Launcher.h" +#include "../Collection/Item.h" +#include "../Utility/Log.h" +#include "../Database/Configuration.h" +#include "../Utility/Utils.h" +#include "../RetroFE.h" +#include "../SDL.h" +#include +#include +#include +#include +#ifdef WIN32 +#include +#include +#endif + +Launcher::Launcher(RetroFE *p) +: Config(p->GetConfiguration()) +, RetroFEInst(p) +{ +} + +bool Launcher::Run(std::string collection, Item *collectionItem) +{ + std::string launcherName = collectionItem->GetLauncher(); + std::string executablePath; + std::string selectedItemsDirectory; + std::string selectedItemsPath; + std::string currentDirectory; + std::string extensions; + std::string matchedExtension; + std::string args; + + if(!GetLauncherExecutable(executablePath, currentDirectory, launcherName)) + { + Logger::Write(Logger::ZONE_ERROR, "Launcher", "Failed to find launcher executable (launcher: " + launcherName + " executable: " + executablePath + ")"); + return false; + } + if(!GetExtensions(extensions, collection)) + { + Logger::Write(Logger::ZONE_ERROR, "Launcher", "No file extensions configured for collection \"" + collection + "\""); + return false; + } + if(!GetCollectionDirectory(selectedItemsDirectory, collection)) + { + Logger::Write(Logger::ZONE_ERROR, "Launcher", "Could not find files in directory \"" + selectedItemsDirectory + "\" for collection \"" + collection + "\""); + return false; + } + if(!GetLauncherArgs(args, launcherName)) + { + Logger::Write(Logger::ZONE_ERROR, "Launcher", "No launcher arguments specified for launcher " + launcherName); + return false; + } + if(!FindFile(selectedItemsPath, matchedExtension, selectedItemsDirectory, collectionItem->GetName(), extensions)) + { + // FindFile() prints out diagnostic messages for us, no need to print anything here + return false; + } + args = ReplaceVariables(args, + selectedItemsPath, + collectionItem->GetName(), + collectionItem->GetFileName(), + selectedItemsDirectory, + collection); + + executablePath = ReplaceVariables(executablePath, + selectedItemsPath, + collectionItem->GetName(), + collectionItem->GetFileName(), + selectedItemsDirectory, + collection); + + currentDirectory = ReplaceVariables(currentDirectory, + selectedItemsPath, + collectionItem->GetName(), + collectionItem->GetFileName(), + selectedItemsDirectory, + collection); + + if(!ExecuteCommand(executablePath, args, currentDirectory)) + { + Logger::Write(Logger::ZONE_ERROR, "Launcher", "Failed to launch."); + return false; + } + + return true; +} + +std::string Launcher::ReplaceVariables(std::string str, + std::string itemFilePath, + std::string itemName, + std::string itemFilename, + std::string itemDirectory, + std::string itemCollectionName) +{ + str = Utils::Replace(str, "%ITEM_FILEPATH%", itemFilePath); + str = Utils::Replace(str, "%ITEM_NAME%", itemName); + str = Utils::Replace(str, "%ITEM_FILENAME%", itemFilename); + str = Utils::Replace(str, "%ITEM_DIRECTORY%", itemDirectory); + str = Utils::Replace(str, "%ITEM_COLLECTION_NAME%", itemCollectionName); + str = Utils::Replace(str, "%RETROFE_PATH%", Configuration::GetAbsolutePath()); +#ifdef WIN32 + str = Utils::Replace(str, "%RETROFE_EXEC_PATH%", Configuration::GetAbsolutePath() + "/RetroFE.exe"); +#else + str = Utils::Replace(str, "%RETROFE_EXEC_PATH%", Configuration::GetAbsolutePath() + "/RetroFE"); +#endif + + return str; +} + +bool Launcher::ExecuteCommand(std::string executable, std::string args, std::string currentDirectory) +{ + bool retVal = false; + std::string executionString = "\"" + executable + "\" " + args; + + Logger::Write(Logger::ZONE_INFO, "Launcher", "Attempting to launch: " + executionString); + Logger::Write(Logger::ZONE_INFO, "Launcher", " from within folder: " + currentDirectory); + + //todo: use delegation instead of depending on knowing the RetroFE class (tie to an interface) + RetroFEInst->LaunchEnter(); + +#ifdef WIN32 + STARTUPINFO startupInfo; + PROCESS_INFORMATION processInfo; + char applicationName[256]; + char currDir[256]; + memset(&applicationName, 0, sizeof(applicationName)); + memset(&startupInfo, 0, sizeof(startupInfo)); + memset(&processInfo, 0, sizeof(processInfo)); + strncpy(applicationName, executionString.c_str(), sizeof(applicationName)); + strncpy(currDir, currentDirectory.c_str(), sizeof(currDir)); + startupInfo.dwFlags = STARTF_USESTDHANDLES; + startupInfo.hStdError = GetStdHandle(STD_ERROR_HANDLE); + startupInfo.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE); + startupInfo.hStdInput = GetStdHandle(STD_INPUT_HANDLE); + startupInfo.wShowWindow = SW_SHOWDEFAULT; + + if(!CreateProcess(NULL, applicationName, NULL, NULL, FALSE, CREATE_NO_WINDOW, NULL, NULL, &startupInfo, &processInfo)) +#else + if(system(executionString.c_str()) != 0) +#endif + { + Logger::Write(Logger::ZONE_ERROR, "Launcher", "Failed to run: " + executable); + } + + else + { +#ifdef WIN32 + while(WAIT_OBJECT_0 != MsgWaitForMultipleObjects(1, &processInfo.hProcess, FALSE, INFINITE, QS_ALLINPUT)) + { + MSG msg; + while(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) + { + DispatchMessage(&msg); + } + } + + // result = GetExitCodeProcess(processInfo.hProcess, &exitCode); + CloseHandle(processInfo.hProcess); +#endif + retVal = true; + } + + Logger::Write(Logger::ZONE_INFO, "Launcher", "Completed"); + RetroFEInst->LaunchExit(); + + return retVal; +} + +bool Launcher::GetLauncherName(std::string &launcherName, std::string collection) +{ + std::string launcherKey = "collections." + collection + ".launcher"; + + // find the launcher for the particular item + if(!Config->GetProperty(launcherKey, launcherName)) + { + std::stringstream ss; + + ss << "Launch failed. Could not find a configured launcher for collection \"" + << collection + << "\" (could not find a property for \"" + << launcherKey + << "\")"; + + Logger::Write(Logger::ZONE_ERROR, "Launcher", ss.str()); + + return false; + } + + std::stringstream ss; + ss << "collections." + << collection + << " is configured to use launchers." + << launcherName + << "\""; + + Logger::Write(Logger::ZONE_DEBUG, "Launcher", ss.str()); + + return true; +} + + + +bool Launcher::GetLauncherExecutable(std::string &executable, std::string ¤tDirectory, std::string launcherName) +{ + std::string executableKey = "launchers." + launcherName + ".executable"; + + if(!Config->GetProperty(executableKey, executable)) + { + return false; + } + + std::string currentDirectoryKey = "launchers." + launcherName + ".currentDirectory"; + currentDirectory = Utils::GetDirectory(executable); + + Config->GetProperty(currentDirectoryKey, currentDirectory); + + return true; +} + +bool Launcher::GetLauncherArgs(std::string &args, std::string launcherName) +{ + std::string argsKey = "launchers." + launcherName + ".arguments"; + + if(!Config->GetProperty(argsKey, args)) + { + Logger::Write(Logger::ZONE_ERROR, "Launcher", "No arguments specified for: " + argsKey); + + return false; + } + return true; +} + +bool Launcher::GetExtensions(std::string &extensions, std::string collection) +{ + std::string extensionsKey = "collections." + collection + ".list.extensions"; + + if(!Config->GetProperty(extensionsKey, extensions)) + { + Logger::Write(Logger::ZONE_ERROR, "Launcher", "No extensions specified for: " + extensionsKey); + return false; + } + + extensions = Utils::Replace(extensions, " ", ""); + extensions = Utils::Replace(extensions, ".", ""); + + return true; +} + +bool Launcher::GetCollectionDirectory(std::string &directory, std::string collection) +{ + std::string itemsPathKey = "collections." + collection + ".list.path"; + std::string itemsPathValue; + + // find the items path folder (i.e. ROM path) + if(!Config->GetPropertyAbsolutePath(itemsPathKey, itemsPathValue)) + { + directory = ""; + } + else + { + directory += itemsPathValue + "/"; + } + + return true; +} + +bool Launcher::FindFile(std::string &foundFilePath, std::string &foundFilename, std::string directory, std::string filenameWithoutExtension, std::string extensions) +{ + std::string extension; + bool fileFound = false; + std::stringstream ss; + ss << extensions; + + while(!fileFound && std::getline(ss, extension, ',') ) + { + std::string selectedItemsPath = directory + filenameWithoutExtension + "." + extension; + std::ifstream f(selectedItemsPath.c_str()); + + if (f.good()) + { + std::stringstream ss; + + ss <<"Checking to see if \"" + << selectedItemsPath << "\" exists [Yes]"; + + fileFound = true; + + Logger::Write(Logger::ZONE_INFO, "Launcher", ss.str()); + + foundFilePath = selectedItemsPath; + foundFilename = extension; + } + else + { + std::stringstream ss; + + ss << "Checking to see if \"" + << selectedItemsPath << "\" exists [No]"; + + Logger::Write(Logger::ZONE_WARNING, "Launcher", ss.str()); + } + + f.close(); + } + + // get the launchers executable + + if(!fileFound) + { + std::stringstream ss; + ss <<"Could not find any files with the name \"" + << filenameWithoutExtension << "\" in folder \"" + << directory; + + Logger::Write(Logger::ZONE_ERROR, "Launcher", ss.str()); + + } + + return fileFound; +} + + diff --git a/Source/Execute/Launcher.h b/Source/Execute/Launcher.h new file mode 100644 index 0000000..ca70e6f --- /dev/null +++ b/Source/Execute/Launcher.h @@ -0,0 +1,40 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include + +class Configuration; +class Item; +class RetroFE; + +class Launcher +{ +public: + Launcher(RetroFE *p); + bool Run(std::string collection, Item *collectionItem); + +private: + std::string ReplaceString( + std::string subject, + const std::string &search, + const std::string &replace); + + bool GetLauncherName(std::string &launcherName, std::string collection); + bool GetLauncherExecutable(std::string &executable, std::string ¤tDirectory, std::string launcherName); + bool GetLauncherArgs(std::string &args, std::string launcherName); + bool GetExtensions(std::string &extensions, std::string launcherName); + bool GetCollectionDirectory(std::string &directory, std::string collection); + bool ExecuteCommand(std::string executable, std::string arguments, std::string currentDirectory); + bool FindFile(std::string &foundFilePath, std::string &foundFilename, std::string directory, std::string filenameWithoutExtension, std::string extensions); + std::string ReplaceVariables(std::string str, + std::string itemFilePath, + std::string itemName, + std::string itemFilename, + std::string itemDirectory, + std::string itemCollectionName); + + Configuration *Config; + RetroFE *RetroFEInst; +}; diff --git a/Source/Graphics/Animate/Tween.cpp b/Source/Graphics/Animate/Tween.cpp new file mode 100644 index 0000000..5cd926f --- /dev/null +++ b/Source/Graphics/Animate/Tween.cpp @@ -0,0 +1,370 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Tween.h" +#include +#define _USE_MATH_DEFINES +#include +#include + +std::map Tween::TweenTypeMap; +std::map Tween::TweenPropertyMap; + +Tween::Tween(TweenProperty property, TweenAlgorithm type, double start, double end, double duration) +: Property(property) +, Type(type) +, Start(start) +, End(end) +, Duration(duration) +{ +} + +TweenProperty Tween::GetProperty() const +{ + return Property; +} + + +bool Tween::GetTweenProperty(std::string name, TweenProperty &property) +{ + bool retVal = false; + + if(TweenPropertyMap.size() == 0) + { + TweenPropertyMap["x"] = TWEEN_PROPERTY_X; + TweenPropertyMap["y"] = TWEEN_PROPERTY_Y; + TweenPropertyMap["angle"] = TWEEN_PROPERTY_ANGLE; + TweenPropertyMap["transparency"] = TWEEN_PROPERTY_TRANSPARENCY; + TweenPropertyMap["width"] = TWEEN_PROPERTY_WIDTH; + TweenPropertyMap["height"] = TWEEN_PROPERTY_HEIGHT; + TweenPropertyMap["xorigin"] = TWEEN_PROPERTY_X_ORIGIN; + TweenPropertyMap["yorigin"] = TWEEN_PROPERTY_Y_ORIGIN; + TweenPropertyMap["xoffset"] = TWEEN_PROPERTY_X_OFFSET; + TweenPropertyMap["yoffset"] = TWEEN_PROPERTY_Y_OFFSET; + TweenPropertyMap["fontSize"] = TWEEN_PROPERTY_FONT_SIZE; + } + + std::transform(name.begin(), name.end(), name.begin(), ::tolower); + + if(TweenPropertyMap.find(name) != TweenPropertyMap.end()) + { + property = TweenPropertyMap[name]; + retVal = true; + } + + return retVal; +} + + +TweenAlgorithm Tween::GetTweenType(std::string name) +{ + if(TweenTypeMap.size() == 0) + { + TweenTypeMap["easeinquadratic"] = EASE_IN_QUADRATIC; + TweenTypeMap["easeoutquadratic"] = EASE_OUT_QUADRATIC; + TweenTypeMap["easeinoutquadratic"] = EASE_INOUT_QUADRATIC; + TweenTypeMap["easeincubic"] = EASE_IN_CUBIC; + TweenTypeMap["easeoutcubic"] = EASE_OUT_CUBIC; + TweenTypeMap["easeinoutcubic"] = EASE_INOUT_CUBIC; + TweenTypeMap["easeinquartic"] = EASE_IN_QUARTIC; + TweenTypeMap["easeoutquartic"] = EASE_OUT_QUARTIC; + TweenTypeMap["easeinoutquartic"] = EASE_INOUT_QUARTIC; + TweenTypeMap["easeinquintic"] = EASE_IN_QUINTIC; + TweenTypeMap["easeoutquintic"] = EASE_OUT_QUINTIC; + TweenTypeMap["easeinoutquintic"] = EASE_INOUT_QUINTIC; + TweenTypeMap["easeinsine"] = EASE_IN_SINE; + TweenTypeMap["easeoutsine"] = EASE_OUT_SINE; + TweenTypeMap["easeinoutsine"] = EASE_INOUT_SINE; + TweenTypeMap["easeinexponential"] = EASE_IN_EXPONENTIAL; + TweenTypeMap["easeoutexponential"] = EASE_OUT_EXPONENTIAL; + TweenTypeMap["easeinoutexponential"] = EASE_INOUT_EXPONENTIAL; + TweenTypeMap["easeincircular"] = EASE_IN_CIRCULAR; + TweenTypeMap["easeoutcircular"] = EASE_OUT_CIRCULAR; + TweenTypeMap["easeinoutcircular"] = EASE_INOUT_CIRCULAR; + TweenTypeMap["linear"] = LINEAR; + } + + std::transform(name.begin(), name.end(), name.begin(), ::tolower); + + if(TweenTypeMap.find(name) != TweenTypeMap.end()) + { + return TweenTypeMap[name]; + } + else + { + return TweenTypeMap["linear"]; + } +} + + +float Tween::Animate(double elapsedTime) +{ + return AnimateSingle(Type, Start, End, Duration, elapsedTime); +} + +//todo: SDL likes floats, consider having casting being performed elsewhere +float Tween::AnimateSingle(TweenAlgorithm type, double start, double end, double duration, double elapsedTime) +{ + double a = start; + double b = end - start; + double result = 0; + + switch(type) + { + case EASE_IN_QUADRATIC: + result = EaseInQuadratic(elapsedTime, duration, a, b); + break; + + case EASE_OUT_QUADRATIC: + result = EaseOutQuadratic(elapsedTime, duration, a, b); + break; + + case EASE_INOUT_QUADRATIC: + result = EaseInOutQuadratic(elapsedTime, duration, a, b); + break; + + case EASE_IN_CUBIC: + result = EaseInCubic(elapsedTime, duration, a, b); + break; + + case EASE_OUT_CUBIC: + result = EaseOutCubic(elapsedTime, duration, a, b); + break; + + case EASE_INOUT_CUBIC: + result = EaseInOutCubic(elapsedTime, duration, a, b); + break; + + case EASE_IN_QUARTIC: + result = EaseInQuartic(elapsedTime, duration, a, b); + break; + + case EASE_OUT_QUARTIC: + result = EaseOutQuartic(elapsedTime, duration, a, b); + break; + + case EASE_INOUT_QUARTIC: + result = EaseInOutQuartic(elapsedTime, duration, a, b); + break; + + case EASE_IN_QUINTIC: + result = EaseInQuintic(elapsedTime, duration, a, b); + break; + + case EASE_OUT_QUINTIC: + result = EaseOutQuintic(elapsedTime, duration, a, b); + break; + + case EASE_INOUT_QUINTIC: + result = EaseInOutQuintic(elapsedTime, duration, a, b); + break; + + case EASE_IN_SINE: + result = EaseInSine(elapsedTime, duration, a, b); + break; + + case EASE_OUT_SINE: + result = EaseOutSine(elapsedTime, duration, a, b); + break; + + case EASE_INOUT_SINE: + result = EaseInOutSine(elapsedTime, duration, a, b); + break; + + case EASE_IN_EXPONENTIAL: + result = EaseInExponential(elapsedTime, duration, a, b); + break; + + case EASE_OUT_EXPONENTIAL: + result = EaseOutExponential(elapsedTime, duration, a, b); + break; + + case EASE_INOUT_EXPONENTIAL: + result = EaseInOutExponential(elapsedTime, duration, a, b); + break; + + case EASE_IN_CIRCULAR: + result = EaseInCircular(elapsedTime, duration, a, b); + break; + + case EASE_OUT_CIRCULAR: + result = EaseOutCircular(elapsedTime, duration, a, b); + break; + + case EASE_INOUT_CIRCULAR: + result = EaseInOutCircular(elapsedTime, duration, a, b); + break; + + case LINEAR: + default: + result = Linear(elapsedTime, duration, a, b); + break; + } + + return static_cast(result); + +} + +double Tween::Linear(double t, double d, double b, double c) +{ + if(d == 0) return b; + return c*t/d + b; +}; + +double Tween::EaseInQuadratic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d; + return c*t*t + b; +}; + +double Tween::EaseOutQuadratic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d; + return -c * t*(t-2) + b; +}; + +double Tween::EaseInOutQuadratic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d/2; + if (t < 1) return c/2*t*t + b; + t--; + return -c/2 * (t*(t-2) - 1) + b; +}; + +double Tween::EaseInCubic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d; + return c*t*t*t + b; +}; + +double Tween::EaseOutCubic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d; + t--; + return c*(t*t*t + 1) + b; +}; + +double Tween::EaseInOutCubic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d/2; + if (t < 1) return c/2*t*t*t + b; + t -= 2; + return c/2*(t*t*t + 2) + b; +}; + +double Tween::EaseInQuartic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d; + return c*t*t*t*t + b; +}; + +double Tween::EaseOutQuartic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d; + t--; + return -c * (t*t*t*t - 1) + b; +}; + +double Tween::EaseInOutQuartic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d/2; + if (t < 1) return c/2*t*t*t*t + b; + t -= 2; + return -c/2 * (t*t*t*t - 2) + b; +}; + +double Tween::EaseInQuintic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d; + return c*t*t*t*t*t + b; +}; + + +double Tween::EaseOutQuintic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d; + t--; + return c*(t*t*t*t*t + 1) + b; +}; + +double Tween::EaseInOutQuintic(double t, double d, double b, double c) +{ + if(d == 0) return b; + t /= d/2; + if (t < 1) return c/2*t*t*t*t*t + b; + t -= 2; + return c/2*(t*t*t*t*t + 2) + b; +}; + +double Tween::EaseInSine(double t, double d, double b, double c) +{ + return -c * cos(t/d * (M_PI/2)) + c + b; +}; + +double Tween::EaseOutSine(double t, double d, double b, double c) +{ + return c * sin(t/d * (M_PI/2)) + b; +}; + +double Tween::EaseInOutSine(double t, double d, double b, double c) +{ + return -c/2 * (cos( M_PI*t/d) - 1) + b; +}; + +double Tween::EaseInExponential(double t, double d, double b, double c) +{ + return c * pow( 2, 10 * (t/d - 1) ) + b; +}; + +double Tween::EaseOutExponential(double t, double d, double b, double c) +{ + return c * ( - pow( 2, -10 * t/d ) + 1 ) + b; +}; + +double Tween::EaseInOutExponential(double t, double d, double b, double c) +{ + t /= d/2; + if (t < 1) return c/2 * pow( 2, 10 * (t - 1) ) + b; + t--; + return c/2 * ( -1* pow( 2, -10 * t) + 2 ) + b; +}; + +double Tween::EaseInCircular(double t, double d, double b, double c) +{ + t /= d; + return -c * (sqrt(1 - t*t) - 1) + b; +}; + + +double Tween::EaseOutCircular(double t, double d, double b, double c) +{ + t /= d; + t--; + return c * sqrt(1 - t*t) + b; +}; + +double Tween::EaseInOutCircular(double t, double d, double b, double c) +{ + t /= d/2; + if (t < 1) return -c/2 * (sqrt(1 - t*t) - 1) + b; + t -= 2; + return c/2 * (sqrt(1 - t*t) + 1) + b; +} +; + +//todo: sdl requires floats, should the casting be done at this layer? +float Tween::GetDuration() const +{ + return static_cast(Duration); +} diff --git a/Source/Graphics/Animate/Tween.h b/Source/Graphics/Animate/Tween.h new file mode 100644 index 0000000..9150b3e --- /dev/null +++ b/Source/Graphics/Animate/Tween.h @@ -0,0 +1,55 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "TweenTypes.h" +#include +#include + +class ViewInfo; + +class Tween +{ +public: + + Tween(TweenProperty name, TweenAlgorithm type, double start, double end, double duration); + float Animate(double elapsedTime); + static float AnimateSingle(TweenAlgorithm type, double start, double end, double duration, double elapsedTime); + static TweenAlgorithm GetTweenType(std::string name); + static bool GetTweenProperty(std::string name, TweenProperty &property); + TweenProperty GetProperty() const; + float GetDuration() const; + +private: + static double EaseInQuadratic(double elapsedTime, double duration, double b, double c); + static double EaseOutQuadratic(double elapsedTime, double duration, double b, double c); + static double EaseInOutQuadratic(double elapsedTime, double duration, double b, double c); + static double EaseInCubic(double elapsedTime, double duration, double b, double c); + static double EaseOutCubic(double elapsedTime, double duration, double b, double c); + static double EaseInOutCubic(double elapsedTime, double duration, double b, double c); + static double EaseInQuartic(double elapsedTime, double duration, double b, double c); + static double EaseOutQuartic(double elapsedTime, double duration, double b, double c); + static double EaseInOutQuartic(double elapsedTime, double duration, double b, double c); + static double EaseInQuintic(double elapsedTime, double duration, double b, double c); + static double EaseOutQuintic(double elapsedTime, double duration, double b, double c); + static double EaseInOutQuintic(double elapsedTime, double duration, double b, double c); + static double EaseInSine(double elapsedTime, double duration, double b, double c); + static double EaseOutSine(double elapsedTime, double duration, double b, double c); + static double EaseInOutSine(double elapsedTime, double duration, double b, double c); + static double EaseInExponential(double elapsedTime, double duration, double b, double c); + static double EaseOutExponential(double elapsedTime, double duration, double b, double c); + static double EaseInOutExponential(double elapsedTime, double duration, double b, double c); + static double EaseInCircular(double elapsedTime, double duration, double b, double c); + static double EaseOutCircular(double elapsedTime, double duration, double b, double c); + static double EaseInOutCircular(double elapsedTime, double duration, double b, double c); + static double Linear(double elapsedTime, double duration, double b, double c); + + static std::map TweenTypeMap; + static std::map TweenPropertyMap; + TweenProperty Property; + TweenAlgorithm Type; + double Start; + double End; + double Duration; +}; diff --git a/Source/Graphics/Animate/TweenTypes.h b/Source/Graphics/Animate/TweenTypes.h new file mode 100644 index 0000000..a90c55a --- /dev/null +++ b/Source/Graphics/Animate/TweenTypes.h @@ -0,0 +1,45 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +enum TweenAlgorithm +{ + LINEAR, + EASE_IN_QUADRATIC, + EASE_OUT_QUADRATIC, + EASE_INOUT_QUADRATIC, + EASE_IN_CUBIC, + EASE_OUT_CUBIC, + EASE_INOUT_CUBIC, + EASE_IN_QUARTIC, + EASE_OUT_QUARTIC, + EASE_INOUT_QUARTIC, + EASE_IN_QUINTIC, + EASE_OUT_QUINTIC, + EASE_INOUT_QUINTIC, + EASE_IN_SINE, + EASE_OUT_SINE, + EASE_INOUT_SINE, + EASE_IN_EXPONENTIAL, + EASE_OUT_EXPONENTIAL, + EASE_INOUT_EXPONENTIAL, + EASE_IN_CIRCULAR, + EASE_OUT_CIRCULAR, + EASE_INOUT_CIRCULAR, +}; + +enum TweenProperty +{ + TWEEN_PROPERTY_HEIGHT, + TWEEN_PROPERTY_WIDTH, + TWEEN_PROPERTY_ANGLE, + TWEEN_PROPERTY_TRANSPARENCY, + TWEEN_PROPERTY_X, + TWEEN_PROPERTY_Y, + TWEEN_PROPERTY_X_ORIGIN, + TWEEN_PROPERTY_Y_ORIGIN, + TWEEN_PROPERTY_X_OFFSET, + TWEEN_PROPERTY_Y_OFFSET, + TWEEN_PROPERTY_FONT_SIZE +}; diff --git a/Source/Graphics/Component/Component.cpp b/Source/Graphics/Component/Component.cpp new file mode 100644 index 0000000..3614558 --- /dev/null +++ b/Source/Graphics/Component/Component.cpp @@ -0,0 +1,282 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Component.h" +#include "../Animate/Tween.h" +#include "../../Graphics/ViewInfo.h" +#include "../../Utility/Log.h" + +Component::Component() +{ + OnEnterTweens = NULL; + OnExitTweens = NULL; + OnIdleTweens = NULL; + OnHighlightEnterTweens = NULL; + OnHighlightExitTweens = NULL; + SelectedItem = NULL; + NewItemSelectedSinceEnter = false; + FreeGraphicsMemory(); + +} + +Component::~Component() +{ + FreeGraphicsMemory(); +} + +void Component::FreeGraphicsMemory() +{ + CurrentAnimationState = HIDDEN; + EnterRequested = false; + ExitRequested = false; + NewItemSelected = false; + HighlightExitComplete = false; + CurrentTweens = NULL; + CurrentTweenIndex = 0; + CurrentTweenComplete = false; + ElapsedTweenTime =0; + ScrollActive = false; +} +void Component::AllocateGraphicsMemory() +{ +} + +void Component::TriggerEnterEvent() +{ + EnterRequested = true; +} + +void Component::TriggerExitEvent() +{ + ExitRequested = true; +} + +void Component::TriggerHighlightEvent(Item *selectedItem) +{ + NewItemSelected = true; + this->SelectedItem = selectedItem; +} + + +bool Component::IsIdle() +{ + return (CurrentAnimationState == IDLE); +} + +bool Component::IsHidden() +{ + return (CurrentAnimationState == HIDDEN); +} +bool Component::IsWaiting() +{ + return (CurrentAnimationState == HIGHLIGHT_WAIT); +} + + + +void Component::Update(float dt) +{ + ElapsedTweenTime += dt; + HighlightExitComplete = false; + if(IsHidden() || IsWaiting() || (IsIdle() && ExitRequested)) + { + CurrentTweenComplete = true; + } + + if(CurrentTweenComplete) + { + CurrentTweens = NULL; + + // There was no request to override our state path. Continue on as normal. + switch(CurrentAnimationState) + { + case ENTER: + CurrentTweens = OnHighlightEnterTweens; + CurrentAnimationState = HIGHLIGHT_ENTER; + break; + + case EXIT: + CurrentTweens = NULL; + CurrentAnimationState = HIDDEN; + + break; + + case HIGHLIGHT_ENTER: + CurrentTweens = OnIdleTweens; + CurrentAnimationState = IDLE; + break; + + case IDLE: + // prevent us from automatically jumping to the exit tween upon enter + if(EnterRequested) + { + EnterRequested = false; + NewItemSelected = false; + } + else if(IsScrollActive() || NewItemSelected || ExitRequested) + { + CurrentTweens = OnHighlightExitTweens; + CurrentAnimationState = HIGHLIGHT_EXIT; + } + else + { + CurrentTweens = OnIdleTweens; + CurrentAnimationState = IDLE; + } + break; + + case HIGHLIGHT_EXIT: + + // intentionally break down + case HIGHLIGHT_WAIT: + + if(ExitRequested && (CurrentAnimationState == HIGHLIGHT_WAIT)) + { + CurrentTweens = OnHighlightExitTweens; + CurrentAnimationState = HIGHLIGHT_EXIT; + + } + else if(ExitRequested && (CurrentAnimationState == HIGHLIGHT_EXIT)) + { + + CurrentTweens = OnExitTweens; + CurrentAnimationState = EXIT; + ExitRequested = false; + } + else if(IsScrollActive()) + { + CurrentTweens = NULL; + CurrentAnimationState = HIGHLIGHT_WAIT; + } + else if(NewItemSelected) + { + CurrentTweens = OnHighlightEnterTweens; + CurrentAnimationState = HIGHLIGHT_ENTER; + HighlightExitComplete = true; + NewItemSelected = false; + } + else + { + CurrentTweens = NULL; + CurrentAnimationState = HIGHLIGHT_WAIT; + } + break; + + case HIDDEN: + if(EnterRequested || ExitRequested) + { + CurrentTweens = OnEnterTweens; + CurrentAnimationState = ENTER; + } + else + { + CurrentTweens = NULL; + CurrentAnimationState = HIDDEN; + } + } + + CurrentTweenIndex = 0; + CurrentTweenComplete = false; + + ElapsedTweenTime = 0; + } + + CurrentTweenComplete = Animate(IsIdle()); +} + + +bool Component::Animate(bool loop) +{ + bool completeDone = false; + if(!CurrentTweens || CurrentTweenIndex >= CurrentTweens->size()) + { + completeDone = true; + } + else if(CurrentTweens) + { + bool currentDone = true; + std::vector *tweenSet = CurrentTweens->at(CurrentTweenIndex); + + for(unsigned int i = 0; i < tweenSet->size(); i++) + { + Tween *tween = tweenSet->at(i); + float elapsedTime = ElapsedTweenTime; + + //todo: too many levels of nesting + if(elapsedTime < tween->GetDuration()) + { + currentDone = false; + } + else + { + elapsedTime = tween->GetDuration(); + } + + float value = tween->Animate(elapsedTime); + + switch(tween->GetProperty()) + { + case TWEEN_PROPERTY_X: + GetBaseViewInfo()->SetX(value); + break; + + case TWEEN_PROPERTY_Y: + GetBaseViewInfo()->SetY(value); + break; + + case TWEEN_PROPERTY_HEIGHT: + GetBaseViewInfo()->SetHeight(value); + break; + + case TWEEN_PROPERTY_WIDTH: + GetBaseViewInfo()->SetWidth(value); + break; + + case TWEEN_PROPERTY_ANGLE: + GetBaseViewInfo()->SetAngle(value); + break; + + case TWEEN_PROPERTY_TRANSPARENCY: + GetBaseViewInfo()->SetTransparency(value); + break; + + case TWEEN_PROPERTY_X_ORIGIN: + GetBaseViewInfo()->SetXOrigin(value); + break; + + case TWEEN_PROPERTY_Y_ORIGIN: + GetBaseViewInfo()->SetYOrigin(value); + break; + + case TWEEN_PROPERTY_X_OFFSET: + GetBaseViewInfo()->SetXOffset(value); + break; + + case TWEEN_PROPERTY_Y_OFFSET: + GetBaseViewInfo()->SetYOffset(value); + break; + + case TWEEN_PROPERTY_FONT_SIZE: + GetBaseViewInfo()->SetFontSize(value); + break; + } + } + + if(currentDone) + { + CurrentTweenIndex++; + ElapsedTweenTime = 0; + } + } + + if(!CurrentTweens || CurrentTweenIndex >= CurrentTweens->size()) + { + if(loop) + { + CurrentTweenIndex = 0; + } + completeDone = true; + } + + return completeDone; +} diff --git a/Source/Graphics/Component/Component.h b/Source/Graphics/Component/Component.h new file mode 100644 index 0000000..d522d39 --- /dev/null +++ b/Source/Graphics/Component/Component.h @@ -0,0 +1,122 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include + +#include "../MenuNotifierInterface.h" +#include "../ViewInfo.h" +#include "../Animate/Tween.h" +#include "../../Collection/Item.h" + +class Component +{ +public: + Component(); + virtual ~Component(); + virtual void FreeGraphicsMemory(); + virtual void AllocateGraphicsMemory(); + virtual void LaunchEnter() {} + virtual void LaunchExit() {} + void TriggerEnterEvent(); + void TriggerExitEvent(); + void TriggerHighlightEvent(Item *selectedItem); + bool IsIdle(); + bool IsHidden(); + bool IsWaiting(); + typedef std::vector *> TweenSets; + + void SetOnEnterTweens(TweenSets *tweens) + { + this->OnEnterTweens = tweens; + } + + void SetOnExitTweens(TweenSets *tweens) + { + this->OnExitTweens = tweens; + } + + void SetOnIdleTweens(TweenSets *tweens) + { + this->OnIdleTweens = tweens; + } + + void SetOnHighlightEnterTweens(TweenSets *tweens) + { + this->OnHighlightEnterTweens = tweens; + } + + void SetOnHighlightExitTweens(TweenSets *tweens) + { + this->OnHighlightExitTweens = tweens; + } + virtual void Update(float dt); + + virtual void Draw() = 0; + + ViewInfo *GetBaseViewInfo() + { + return &BaseViewInfo; + } + void UpdateBaseViewInfo(ViewInfo &info) + { + BaseViewInfo = info; + } + + bool IsScrollActive() const + { + return ScrollActive; + } + + void SetScrollActive(bool scrollActive) + { + ScrollActive = scrollActive; + } + + + +protected: + Item *GetSelectedItem() + { + return SelectedItem; + } + enum AnimationState + { + IDLE, + ENTER, + HIGHLIGHT_EXIT, + HIGHLIGHT_WAIT, + HIGHLIGHT_ENTER, + EXIT, + HIDDEN + }; + + AnimationState CurrentAnimationState; + bool EnterRequested; + bool ExitRequested; + bool NewItemSelected; + bool HighlightExitComplete; + bool NewItemSelectedSinceEnter; +private: + bool Animate(bool loop); + bool IsTweenSequencingComplete(); + void ResetTweenSequence(std::vector *tweens); + + TweenSets *OnEnterTweens; + TweenSets *OnExitTweens; + TweenSets *OnIdleTweens; + TweenSets *OnHighlightEnterTweens; + TweenSets *OnHighlightExitTweens; + + TweenSets *CurrentTweens; + unsigned int CurrentTweenIndex; + + bool CurrentTweenComplete; + ViewInfo BaseViewInfo; + + float ElapsedTweenTime; + Tween *TweenInst; + Item *SelectedItem; + bool ScrollActive; +}; diff --git a/Source/Graphics/Component/Image.cpp b/Source/Graphics/Component/Image.cpp new file mode 100644 index 0000000..9ac12f9 --- /dev/null +++ b/Source/Graphics/Component/Image.cpp @@ -0,0 +1,75 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Image.h" +#include "../ViewInfo.h" +#include "../../SDL.h" +#include "../../Utility/Log.h" +#include + +Image::Image(std::string file, float scaleX, float scaleY) +: Texture(NULL) +, File(file) +, ScaleX(scaleX) +, ScaleY(scaleY) +{ + AllocateGraphicsMemory(); +} + +Image::~Image() +{ + FreeGraphicsMemory(); +} + +void Image::FreeGraphicsMemory() +{ + Component::FreeGraphicsMemory(); + + SDL_LockMutex(SDL::GetMutex()); + if (Texture != NULL) + { + SDL_DestroyTexture(Texture); + Texture = NULL; + } + SDL_UnlockMutex(SDL::GetMutex()); +} + +void Image::AllocateGraphicsMemory() +{ + int width; + int height; + + Component::AllocateGraphicsMemory(); + + if(!Texture) + { + SDL_LockMutex(SDL::GetMutex()); + Texture = IMG_LoadTexture(SDL::GetRenderer(), File.c_str()); + + if (Texture != NULL) + { + SDL_SetTextureBlendMode(Texture, SDL_BLENDMODE_BLEND); + SDL_QueryTexture(Texture, NULL, NULL, &width, &height); + GetBaseViewInfo()->SetImageWidth(width * ScaleX); + GetBaseViewInfo()->SetImageHeight(height * ScaleY); + } + SDL_UnlockMutex(SDL::GetMutex()); + + } +} + +void Image::Draw() +{ + if(Texture) + { + ViewInfo *info = GetBaseViewInfo(); + SDL_Rect rect; + + rect.x = static_cast(info->GetXRelativeToOrigin()); + rect.y = static_cast(info->GetYRelativeToOrigin()); + rect.h = static_cast(info->GetHeight()); + rect.w = static_cast(info->GetWidth()); + + SDL::RenderCopy(Texture, static_cast((info->GetTransparency() * 255)), NULL, &rect, info->GetAngle()); + } +} diff --git a/Source/Graphics/Component/Image.h b/Source/Graphics/Component/Image.h new file mode 100644 index 0000000..db37492 --- /dev/null +++ b/Source/Graphics/Component/Image.h @@ -0,0 +1,24 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "Component.h" +#include +#include + +class Image : public Component +{ +public: + Image(std::string file, float scaleX, float scaleY); + virtual ~Image(); + void FreeGraphicsMemory(); + void AllocateGraphicsMemory(); + void Draw(); + +protected: + SDL_Texture *Texture; + std::string File; + float ScaleX; + float ScaleY; +}; diff --git a/Source/Graphics/Component/ImageBuilder.cpp b/Source/Graphics/Component/ImageBuilder.cpp new file mode 100644 index 0000000..77bfdac --- /dev/null +++ b/Source/Graphics/Component/ImageBuilder.cpp @@ -0,0 +1,30 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "ImageBuilder.h" +#include "../../Utility/Utils.h" +#include "../../Utility/Log.h" +#include + +Image * ImageBuilder::CreateImage(std::string path, std::string name, float scaleX, float scaleY) +{ + Image *image = NULL; + std::vector extensions; + + extensions.push_back("png"); + extensions.push_back("PNG"); + extensions.push_back("jpg"); + extensions.push_back("JPG"); + extensions.push_back("jpeg"); + extensions.push_back("JPEG"); + + std::string prefix = path + "/" + name; + std::string file; + + if(Utils::FindMatchingFile(prefix, extensions, file)) + { + image = new Image(file, scaleX, scaleY); + } + + return image; +} diff --git a/Source/Graphics/Component/ImageBuilder.h b/Source/Graphics/Component/ImageBuilder.h new file mode 100644 index 0000000..4f37732 --- /dev/null +++ b/Source/Graphics/Component/ImageBuilder.h @@ -0,0 +1,15 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "Image.h" +#include "VideoComponent.h" +#include "../../Video/VideoFactory.h" + +//todo: this is more of a factory than a builder +class ImageBuilder +{ +public: + Image * CreateImage(std::string path, std::string name, float scaleX, float scaleY); +}; diff --git a/Source/Graphics/Component/ReloadableMedia.cpp b/Source/Graphics/Component/ReloadableMedia.cpp new file mode 100644 index 0000000..b1a9815 --- /dev/null +++ b/Source/Graphics/Component/ReloadableMedia.cpp @@ -0,0 +1,172 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "ReloadableMedia.h" +#include "ImageBuilder.h" +#include "VideoBuilder.h" +#include "../ViewInfo.h" +#include "../../Video/VideoFactory.h" +#include "../../Database/Configuration.h" +#include "../../Utility/Log.h" +#include "../../Utility/Utils.h" +#include "../../SDL.h" +#include +#include +#include + +ReloadableMedia::ReloadableMedia(std::string imagePath, std::string videoPath, bool isVideo, float scaleX, float scaleY) +: LoadedComponent(NULL) +, ImagePath(imagePath) +, VideoPath(videoPath) +, ReloadRequested(false) +, FirstLoad(true) +, IsVideo(isVideo) +, ScaleX(scaleX) +, ScaleY(scaleY) +{ + AllocateGraphicsMemory(); +} + +ReloadableMedia::~ReloadableMedia() +{ + if (LoadedComponent != NULL) + { + delete LoadedComponent; + } +} + +void ReloadableMedia::Update(float dt) +{ + if(NewItemSelected) + { + ReloadRequested = true; + } + // wait for the right moment to reload the image + if (ReloadRequested && (HighlightExitComplete || FirstLoad)) + { + ReloadTexture(); + ReloadRequested = false; + FirstLoad = false; + } + + if(LoadedComponent) + { + LoadedComponent->Update(dt); + } + + // needs to be ran at the end to prevent the NewItemSelected flag from being detected + Component::Update(dt); + +} + +void ReloadableMedia::AllocateGraphicsMemory() +{ + FirstLoad = true; + + if(LoadedComponent) + { + LoadedComponent->AllocateGraphicsMemory(); + } + + // NOTICE! needs to be done last to prevent flags from being missed + Component::AllocateGraphicsMemory(); +} + +void ReloadableMedia::LaunchEnter() +{ + if(LoadedComponent) + { + LoadedComponent->LaunchEnter(); + } +} + +void ReloadableMedia::LaunchExit() +{ + if(LoadedComponent) + { + LoadedComponent->LaunchExit(); + } +} + +void ReloadableMedia::FreeGraphicsMemory() +{ + Component::FreeGraphicsMemory(); + + if(LoadedComponent) + { + LoadedComponent->FreeGraphicsMemory(); + } +} +void ReloadableMedia::ReloadTexture() +{ + bool found = false; + + if(LoadedComponent) + { + delete LoadedComponent; + LoadedComponent = NULL; + } + + Item *selectedItem = GetSelectedItem(); + + if (selectedItem != NULL) + { + if(IsVideo) + { + std::vector names; + + names.push_back(selectedItem->GetName()); + + if(selectedItem->GetCloneOf().length() > 0) + { + names.push_back(selectedItem->GetCloneOf()); + } + + for(unsigned int n = 0; n < names.size() && !found; ++n) + { + std::string filePrefix; + filePrefix.append(VideoPath); + filePrefix.append("/"); + filePrefix.append(names[n]); + + std::string file; + + VideoBuilder videoBuild; + + LoadedComponent = videoBuild.CreateVideo(VideoPath, names[n], ScaleX, ScaleY); + + if(LoadedComponent) + { + LoadedComponent->AllocateGraphicsMemory(); + found = true; + } + } + } + + if(!LoadedComponent) + { + ImageBuilder imageBuild; + LoadedComponent = imageBuild.CreateImage(ImagePath, selectedItem->GetFullTitle(), ScaleX, ScaleY); + + if (LoadedComponent != NULL) + { + LoadedComponent->AllocateGraphicsMemory(); + GetBaseViewInfo()->SetImageWidth(LoadedComponent->GetBaseViewInfo()->GetImageWidth()); + GetBaseViewInfo()->SetImageHeight(LoadedComponent->GetBaseViewInfo()->GetImageHeight()); + } + } + } +} + +void ReloadableMedia::Draw() +{ + ViewInfo *info = GetBaseViewInfo(); + + if(LoadedComponent) + { + info->SetImageHeight(LoadedComponent->GetBaseViewInfo()->GetImageHeight()); + info->SetImageWidth(LoadedComponent->GetBaseViewInfo()->GetImageWidth()); + LoadedComponent->UpdateBaseViewInfo(*info); + LoadedComponent->Draw(); + } +} diff --git a/Source/Graphics/Component/ReloadableMedia.h b/Source/Graphics/Component/ReloadableMedia.h new file mode 100644 index 0000000..88dff9b --- /dev/null +++ b/Source/Graphics/Component/ReloadableMedia.h @@ -0,0 +1,38 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once +#include "Component.h" +#include "../../Video/IVideo.h" +#include "../../Collection/Item.h" +#include +#include + +class Image; + +//todo: this class should aggregate Image, Text, and Video component classes +class ReloadableMedia : public Component +{ +public: + ReloadableMedia(std::string imagePath, std::string videoPath, bool isVideo, float scaleX, float scaleY); + virtual ~ReloadableMedia(); + void Update(float dt); + void Draw(); + void FreeGraphicsMemory(); + void AllocateGraphicsMemory(); + void LaunchEnter(); + void LaunchExit(); + +private: + void ReloadTexture(); + Component *LoadedComponent; + std::string ImagePath; + std::string VideoPath; + bool ReloadRequested; + bool FirstLoad; + IVideo *VideoInst; + + bool IsVideo; + float ScaleX; + float ScaleY; +}; diff --git a/Source/Graphics/Component/ReloadableText.cpp b/Source/Graphics/Component/ReloadableText.cpp new file mode 100644 index 0000000..f54fe86 --- /dev/null +++ b/Source/Graphics/Component/ReloadableText.cpp @@ -0,0 +1,157 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "ReloadableText.h" +#include "../ViewInfo.h" +#include "../../Database/Configuration.h" +#include "../../Utility/Log.h" +#include "../../SDL.h" +#include +#include +#include + +ReloadableText::ReloadableText(std::string type, Font *font, SDL_Color color, std::string layoutKey, std::string collection, float scaleX, float scaleY) +: ImageInst(NULL) +, LayoutKey(layoutKey) +, Collection(collection) +, ReloadRequested(false) +, FirstLoad(true) +, FontInst(font) +, FontColor(color) +, ScaleX(scaleX) +, ScaleY(scaleY) +{ + + Type = TextTypeUnknown; + + if(type == "numberButtons") + { + Type = TextTypeNumberButtons; + } + else if(type == "numberPlayers") + { + Type = TextTypeNumberPlayers; + } + else if(type == "year") + { + Type = TextTypeYear; + } + else if(type == "title") + { + Type = TextTypeTitle; + } + else if(type == "manufacturer") + { + Type = TextTypeManufacturer; + } + + AllocateGraphicsMemory(); +} + + + +ReloadableText::~ReloadableText() +{ + if (ImageInst != NULL) + { + delete ImageInst; + } +} + +void ReloadableText::Update(float dt) +{ + if(NewItemSelected) + { + ReloadRequested = true; + } + // wait for the right moment to reload the image + if (ReloadRequested && (HighlightExitComplete || FirstLoad)) + { + ReloadTexture(); + ReloadRequested = false; + FirstLoad = false; + } + + // needs to be ran at the end to prevent the NewItemSelected flag from being detected + Component::Update(dt); + +} + +void ReloadableText::AllocateGraphicsMemory() +{ + FirstLoad = true; + + ReloadTexture(); + + // NOTICE! needs to be done last to prevent flags from being missed + Component::AllocateGraphicsMemory(); +} + +void ReloadableText::LaunchEnter() +{ +} + +void ReloadableText::LaunchExit() +{ +} + +void ReloadableText::FreeGraphicsMemory() +{ + Component::FreeGraphicsMemory(); + + if (ImageInst != NULL) + { + delete ImageInst; + ImageInst = NULL; + } +} +void ReloadableText::ReloadTexture() +{ + if (ImageInst != NULL) + { + delete ImageInst; + ImageInst = NULL; + } + + Item *selectedItem = GetSelectedItem(); + + if (selectedItem != NULL) + { + std::stringstream ss; + std::string text; + switch(Type) + { + case TextTypeNumberButtons: + ss << selectedItem->GetNumberButtons(); + break; + case TextTypeNumberPlayers: + ss << selectedItem->GetNumberPlayers(); + break; + case TextTypeYear: + ss << selectedItem->GetYear(); + break; + case TextTypeTitle: + ss << selectedItem->GetTitle(); + break; + case TextTypeManufacturer: + ss << selectedItem->GetManufacturer(); + break; + default: + break; + } + + ImageInst = new Text(ss.str(), FontInst, FontColor, ScaleX, ScaleY); + } +} + + +void ReloadableText::Draw() +{ + ViewInfo *info = GetBaseViewInfo(); + + if(ImageInst) + { + ImageInst->UpdateBaseViewInfo(*info); + ImageInst->Draw(); + } +} diff --git a/Source/Graphics/Component/ReloadableText.h b/Source/Graphics/Component/ReloadableText.h new file mode 100644 index 0000000..02c709e --- /dev/null +++ b/Source/Graphics/Component/ReloadableText.h @@ -0,0 +1,48 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once +#include "Component.h" +#include "Text.h" +#include "../Font.h" +#include "../../Collection/Item.h" +#include +#include + +class ReloadableText : public Component +{ +public: + ReloadableText(std::string type, Font *font, SDL_Color color, std::string layoutKey, std::string collectionName, float scaleX, float scaleY); + virtual ~ReloadableText(); + void Update(float dt); + void Draw(); + void FreeGraphicsMemory(); + void AllocateGraphicsMemory(); + void LaunchEnter(); + void LaunchExit(); + +private: + enum TextType + { + TextTypeUnknown = 0, + TextTypeNumberButtons, + TextTypeNumberPlayers, + TextTypeYear, + TextTypeTitle, + TextTypeManufacturer, + }; + + void ReloadTexture(); + + Text *ImageInst; + TextType Type; + std::string LayoutKey; + std::string Collection; + bool ReloadRequested; + bool FirstLoad; + Font *FontInst; + SDL_Color FontColor; + + float ScaleX; + float ScaleY; +}; diff --git a/Source/Graphics/Component/ScrollingList.cpp b/Source/Graphics/Component/ScrollingList.cpp new file mode 100644 index 0000000..8d30d2e --- /dev/null +++ b/Source/Graphics/Component/ScrollingList.cpp @@ -0,0 +1,654 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "../Animate/Tween.h" +#include "../Animate/TweenTypes.h" +#include "../ComponentItemBinding.h" +#include "../Font.h" +#include "ScrollingList.h" +#include "ImageBuilder.h" +#include "VideoBuilder.h" +#include "VideoComponent.h" +#include "ReloadableMedia.h" +#include "Text.h" +#include "../../Database/Configuration.h" // todo: decouple the GUI from the data +#include "../../Collection/Item.h" +#include "../../Utility/Log.h" +#include "../../SDL.h" +#include "../ViewInfo.h" +#include +#include +#include + + +//todo: remove coupling from configuration data (if possible) +ScrollingList::ScrollingList(Configuration *c, + float scaleX, + float scaleY, + Font *font, + SDL_Color fontColor, + std::string layoutKey, + std::string collectionName, + std::string imageType) +: IsScrollChangedStarted(true) +, IsScrollChangedSignalled(false) +, IsScrollChangedComplete(false) +, SpriteList(NULL) +, ScrollPoints(NULL) +, TweenEnterTime(0) +, FirstSpriteIndex(0) +, SelectedSpriteListIndex(0) +, CurrentAnimateTime(0) // in seconds +, ScrollTime(0) // in seconds +, CurrentScrollDirection(ScrollDirectionIdle) +, RequestedScrollDirection(ScrollDirectionIdle) +, CurrentScrollState(ScrollStateIdle) +, ScrollAcceleration(6) // todo: make configurable +, ScrollVelocity(0) +, Config(c) +, ScaleX(scaleX) +, ScaleY(scaleY) +, FontInst(font) +, FontColor(fontColor) +, LayoutKey(layoutKey) +, CollectionName(collectionName) +, ImageType(imageType) +, MaxLayer(0) +{ +} + +ScrollingList::~ScrollingList() +{ +} + +void ScrollingList::SetItems(std::vector *spriteList) +{ + SpriteList = spriteList; + FirstSpriteIndex = 0; + + // loop the scroll points if there are not enough + unsigned int originalSize = SpriteList->size(); + + while(ScrollPoints && ScrollPoints->size()+4 > SpriteList->size()) + { + for(unsigned int i = 0; i < originalSize; ++i) + { + Item *newItem = new Item(); + Item *originalItem = SpriteList->at(i)->GetCollectionItem(); + + *newItem = *originalItem; + ComponentItemBinding *newSprite = new ComponentItemBinding(newItem); + SpriteList->push_back(newSprite); + } + } + for(unsigned int i = 0; SpriteList && ScrollPoints && i < SelectedSpriteListIndex; ++i) + { + CircularDecrement(FirstSpriteIndex, SpriteList); + } + + IsScrollChangedComplete = true; +} + +void ScrollingList::SetPoints(std::vector *scrollPoints) +{ + ScrollPoints = scrollPoints; + for(unsigned int i = 0; i != scrollPoints->size(); ++i) + { + ViewInfo *info = scrollPoints->at(i); + MaxLayer = (MaxLayer < info->GetLayer()) ? MaxLayer : info->GetLayer(); + } + +} + +void ScrollingList::SetSelectedIndex(int selectedIndex) +{ + SelectedSpriteListIndex = selectedIndex; + + for(unsigned int i = 0; SpriteList && ScrollPoints && i < SelectedSpriteListIndex; ++i) + { + CircularDecrement(FirstSpriteIndex, SpriteList); + } + +} + +void ScrollingList::Click() +{ + if(CurrentScrollDirection == ScrollDirectionBack) + { + CircularDecrement(FirstSpriteIndex, SpriteList); + IsScrollChangedComplete = true; + } + if(CurrentScrollDirection == ScrollDirectionForward) + { + CircularIncrement(FirstSpriteIndex, SpriteList); + IsScrollChangedComplete = true; + } +} + +unsigned int ScrollingList::GetNextTween(unsigned int currentIndex, std::vector *list) +{ + if(CurrentScrollDirection == ScrollDirectionForward) + { + CircularDecrement(currentIndex, list); + } + else if(CurrentScrollDirection == ScrollDirectionBack) + { + CircularIncrement(currentIndex, list); + } + + return currentIndex; +} + +void ScrollingList::PageUp() +{ + if(ScrollPoints && ScrollPoints->size() > 4) + { + ScrollVelocity = 0; + unsigned int counts = ScrollPoints->size() - 4; + + for(unsigned int i = 0; i < counts; i++) + { + CircularDecrement(FirstSpriteIndex, SpriteList); + } + } + + CurrentScrollState = ScrollStatePageChange; + IsScrollChangedStarted = true; + IsScrollChangedSignalled = false; + IsScrollChangedComplete = false; +} + +void ScrollingList::PageDown() +{ + if(ScrollPoints && ScrollPoints->size() > 4) + { + unsigned int counts = ScrollPoints->size() - 4; + + ScrollVelocity = 0; + for(unsigned int i = 0; i < counts; i++) + { + CircularIncrement(FirstSpriteIndex, SpriteList); + } + } + + CurrentScrollState = ScrollStatePageChange; + IsScrollChangedStarted = true; + IsScrollChangedSignalled = false; + IsScrollChangedComplete = false; +} + +void ScrollingList::FreeGraphicsMemory() +{ + Component::FreeGraphicsMemory(); + TweenEnterTime = 0; + CurrentAnimateTime = 0; + ScrollTime = 0; + CurrentScrollDirection = ScrollDirectionIdle; + RequestedScrollDirection = ScrollDirectionIdle; + CurrentScrollState = ScrollStateIdle; + ScrollAcceleration = 6; // todo: make configurable + ScrollVelocity = 0; + + for(unsigned int i = 0; i < SpriteList->size(); i++) + { + ComponentItemBinding *s = SpriteList->at(i); + + DeallocateTexture(s); + } +} + + +void ScrollingList::Update(float dt) +{ + float scrollPeriod = 0; + Component::Update(dt); + + if(!ScrollPoints) + { + return; + } + + switch(CurrentScrollState) + { + case ScrollStateActive: + if(RequestedScrollDirection != CurrentScrollDirection) + { + CurrentScrollState = ScrollStateStopping; + + } + + break; + + case ScrollStateIdle: + ScrollTime = 0; + CurrentAnimateTime = 0; + ScrollVelocity = 0; + + if(RequestedScrollDirection != ScrollDirectionIdle) + { + CurrentScrollState = ScrollStateActive; + CurrentScrollDirection = RequestedScrollDirection; + } + break; + default: + break; + + }; + + if(CurrentScrollState != ScrollStatePageChange && CurrentScrollState != ScrollStateIdle) + { + IsScrollChangedStarted = true; + ScrollTime += dt; + CurrentAnimateTime += dt; + ScrollVelocity = ScrollTime * ScrollAcceleration; + + // clip at 5 items scrolled per second + if(ScrollVelocity > 30) + { + ScrollVelocity = 30; + } + if(ScrollVelocity > 0) + { + scrollPeriod = 1 / ScrollVelocity; + } + + // have we exceeded the time of when to stop on the next item in the list? + if(CurrentScrollState == ScrollStateStopping && CurrentAnimateTime >= scrollPeriod) + { + Click(); + CurrentAnimateTime = 0; + ScrollVelocity = 0; + CurrentScrollState = ScrollStateIdle; + } + } + + while(CurrentScrollState != ScrollStatePageChange && ScrollVelocity > 0 && CurrentAnimateTime >= scrollPeriod) + { + Click(); + CurrentAnimateTime -= scrollPeriod; + } + + + if(ScrollPoints && SpriteList->size() > 0 && FirstSpriteIndex < SpriteList->size()) + { + unsigned int spriteIndex = FirstSpriteIndex; + unsigned int numIterations = (ScrollPoints->size() > SpriteList->size()) ? SpriteList->size() : ScrollPoints->size(); + unsigned int start = (ScrollPoints->size() > SpriteList->size()) ? SelectedSpriteListIndex : 0; + + for(unsigned int i = start; i < start+numIterations; i++) + { + ComponentItemBinding *s = SpriteList->at(spriteIndex); + unsigned int nextI = GetNextTween(i, ScrollPoints); + + ViewInfo *currentViewInfo = ScrollPoints->at(i); + ViewInfo *nextViewInfo = ScrollPoints->at(nextI); + + AllocateTexture(s); + + Component *c = s->GetComponent(); + if(c) + { + currentViewInfo->SetImageHeight(c->GetBaseViewInfo()->GetImageHeight()); + currentViewInfo->SetImageWidth(c->GetBaseViewInfo()->GetImageWidth()); + nextViewInfo->SetImageHeight(c->GetBaseViewInfo()->GetImageHeight()); + nextViewInfo->SetImageWidth(c->GetBaseViewInfo()->GetImageWidth()); + + //todo: 30 is a magic number + ViewInfo *spriteViewInfo = c->GetBaseViewInfo(); + + spriteViewInfo->SetX(Tween::AnimateSingle(LINEAR, currentViewInfo->GetX(), nextViewInfo->GetX(), scrollPeriod, CurrentAnimateTime)); + spriteViewInfo->SetY(Tween::AnimateSingle(LINEAR, currentViewInfo->GetY(), nextViewInfo->GetY(), scrollPeriod, CurrentAnimateTime)); + spriteViewInfo->SetXOrigin(Tween::AnimateSingle(LINEAR, currentViewInfo->GetXOrigin(), nextViewInfo->GetXOrigin(), scrollPeriod, CurrentAnimateTime)); + spriteViewInfo->SetYOrigin(Tween::AnimateSingle(LINEAR, currentViewInfo->GetYOrigin(), nextViewInfo->GetYOrigin(), scrollPeriod, CurrentAnimateTime)); + spriteViewInfo->SetXOffset(Tween::AnimateSingle(LINEAR, currentViewInfo->GetXOffset(), nextViewInfo->GetXOffset(), scrollPeriod, CurrentAnimateTime)); + spriteViewInfo->SetYOffset(Tween::AnimateSingle(LINEAR, currentViewInfo->GetYOffset(), nextViewInfo->GetYOffset(), scrollPeriod, CurrentAnimateTime)); + spriteViewInfo->SetHeight(Tween::AnimateSingle(LINEAR, currentViewInfo->GetHeight(), nextViewInfo->GetHeight(), scrollPeriod, CurrentAnimateTime)); + spriteViewInfo->SetWidth(Tween::AnimateSingle(LINEAR, currentViewInfo->GetWidth(), nextViewInfo->GetWidth(), scrollPeriod, CurrentAnimateTime)); + spriteViewInfo->SetTransparency(Tween::AnimateSingle(LINEAR, currentViewInfo->GetTransparency(), nextViewInfo->GetTransparency(), scrollPeriod, CurrentAnimateTime)); + spriteViewInfo->SetAngle(Tween::AnimateSingle(LINEAR, currentViewInfo->GetAngle(), nextViewInfo->GetAngle(), scrollPeriod, CurrentAnimateTime)); + spriteViewInfo->SetFontSize(Tween::AnimateSingle(LINEAR, currentViewInfo->GetFontSize(), nextViewInfo->GetFontSize(), scrollPeriod, CurrentAnimateTime)); + c->Update(dt); + + } + + CircularIncrement(spriteIndex, SpriteList); + } + + // start freeing up memory if the list is too large + if(SpriteList->size() + 4 > ScrollPoints->size()) + { + spriteIndex = FirstSpriteIndex; + + CircularDecrement(spriteIndex, SpriteList); + DeallocateTexture(SpriteList->at(spriteIndex)); + + CircularDecrement(spriteIndex, SpriteList); + DeallocateTexture(SpriteList->at(spriteIndex)); + + + // point to the end of the list to start deallocating.. + // It's not fast, but it's easy to read + spriteIndex = FirstSpriteIndex; + for(unsigned int i = 0; i < ScrollPoints->size(); i++) + { + CircularIncrement(spriteIndex, SpriteList); + } + + CircularIncrement(spriteIndex, SpriteList); + DeallocateTexture(SpriteList->at(spriteIndex)); + + CircularIncrement(spriteIndex, SpriteList); + DeallocateTexture(SpriteList->at(spriteIndex)); + } + } + + if(IsScrollChangedStarted && !IsScrollChangedSignalled) + { + IsScrollChangedSignalled = true; + ComponentItemBinding *sprite = GetPendingCollectionItemSprite(); + Item *item = NULL; + + if(sprite) + { + item = sprite->GetCollectionItem(); + } + + for(std::vector::iterator it = NotificationComponents.begin(); + it != NotificationComponents.end(); + it++) + { + MenuNotifierInterface *c = *it; + if(c && item) + { + c->OnNewItemSelected(item); + } + } + + if(CurrentScrollState == ScrollStatePageChange) + { + IsScrollChangedComplete = true; + CurrentScrollState = ScrollStateIdle; + } + } + + if(IsScrollChangedStarted && IsScrollChangedSignalled && IsScrollChangedComplete) + { + IsScrollChangedStarted = false; + IsScrollChangedComplete = false; + IsScrollChangedSignalled = false; + } + +} + +void ScrollingList::AllocateTexture(ComponentItemBinding *s) +{ + //todo: move this outside of the Draw routine + if(s && s->GetComponent() == NULL) + { + const Item *item = s->GetCollectionItem(); + //todo: will create a runtime fault if not of the right type + //todo: remove coupling from knowing the collection name + + std::string collectionKey ="collections." + CollectionName + ".media." + ImageType; + std::string videoKey ="collections." + CollectionName + ".media.video"; + std::string imagePath; + std::string videoPath; + + Component *t = NULL; + + /* + // todo: to be supported at a later date + if(c->GetProperty(videoKey, videoPath)) + { + t = new VideoComponent(videoPath, item->GetFullTitle(), ScaleX, ScaleY); + } +*/ + if(!t && Config->GetPropertyAbsolutePath(collectionKey, imagePath)) + { + ImageBuilder imageBuild; + t = imageBuild.CreateImage(imagePath, item->GetName(), ScaleX, ScaleY); + + if(!t && item->GetTitle() != item->GetFullTitle()) + { + t = imageBuild.CreateImage(imagePath, item->GetFullTitle(), ScaleX, ScaleY); + } + } + if (!t) + { + t = new Text(item->GetTitle(), FontInst, FontColor, ScaleX, ScaleY); + } + + if(t) + { + s->SetComponent(t); + } + } + +} + +void ScrollingList::DeallocateTexture(ComponentItemBinding *s) +{ + if(s && s->GetComponent() != NULL) + { + delete s->GetComponent(); + } + s->SetComponent(NULL); +} + +void ScrollingList::Draw() +{ + //todo: Poor design implementation. + // caller should instead call ScrollingList::Draw(unsigned int layer) +} + +//todo: this is kind of a hack. Aggregation needs to happen differently +void ScrollingList::Draw(unsigned int layer) +{ + if(ScrollPoints && SpriteList && SpriteList->size() > 0 && FirstSpriteIndex < SpriteList->size()) + { + unsigned int spriteIndex = FirstSpriteIndex; + + for(unsigned int i = 0; i < ScrollPoints->size(); i++) + { + std::vector::iterator it = SpriteList->begin() + spriteIndex; + Component *c = (*it)->GetComponent(); + ViewInfo *currentViewInfo = ScrollPoints->at(i); + + if(currentViewInfo && currentViewInfo->GetLayer() == layer) + { + c->Draw(); + } + CircularIncrement(spriteIndex, SpriteList); + } + } +} + + +void ScrollingList::SetScrollDirection(ScrollDirection direction) +{ + RequestedScrollDirection = direction; +} + +void ScrollingList::RemoveSelectedItem() +{ + ComponentItemBinding *sprite = GetSelectedCollectionItemSprite(); + if(sprite) + { + Item *item = sprite->GetCollectionItem(); + DeallocateTexture(sprite); + int index = (FirstSpriteIndex + SelectedSpriteListIndex) % SpriteList->size(); + + std::vector::iterator it = SpriteList->begin() + index; + + SpriteList->erase(it); + delete sprite; + + if(item) + { + delete item; + } + + if(SelectedSpriteListIndex >= SpriteList->size()) + { + SelectedSpriteListIndex = 0; + } + if(FirstSpriteIndex >= SpriteList->size()) + { + FirstSpriteIndex = 0; + } + } + IsScrollChangedComplete = true; +} + + +std::vector *ScrollingList::GetCollectionItemSprites() +{ + return SpriteList; +} + +ComponentItemBinding* ScrollingList::GetSelectedCollectionItemSprite() +{ + ComponentItemBinding *item = NULL; + + if(SpriteList && SpriteList->size() > 0) + { + int index = (FirstSpriteIndex + SelectedSpriteListIndex) % SpriteList->size(); + + item = SpriteList->at(index); + } + + return item; +} + +ComponentItemBinding* ScrollingList::GetPendingCollectionItemSprite() +{ + ComponentItemBinding *item = NULL; + unsigned int index = FirstSpriteIndex; + if(CurrentScrollState != ScrollStatePageChange) + { + if(CurrentScrollDirection == ScrollDirectionBack) + { + CircularDecrement(index, SpriteList); + } + if(CurrentScrollDirection == ScrollDirectionForward) + { + CircularIncrement(index, SpriteList); + } + } + if(SpriteList && SpriteList->size() > 0) + { + index = (index + SelectedSpriteListIndex) % SpriteList->size(); + + item = SpriteList->at(index); + } + + return item; +} + +void ScrollingList::AddComponentForNotifications(MenuNotifierInterface *c) +{ + NotificationComponents.push_back(c); +} +void ScrollingList::RemoveComponentForNotifications(MenuNotifierInterface *c) +{ + for(std::vector::iterator it = NotificationComponents.begin(); + it != NotificationComponents.end(); + it++) + { + if(c == *it) + { + NotificationComponents.erase(it); + break; + } + } +} + + +ComponentItemBinding* ScrollingList::GetPendingSelectedCollectionItemSprite() +{ + ComponentItemBinding *item = NULL; + + unsigned int index = SelectedSpriteListIndex; + + if(CurrentScrollDirection == ScrollDirectionBack) + { + CircularDecrement(index, SpriteList); + } + if(CurrentScrollDirection == ScrollDirectionForward) + { + CircularIncrement(index, SpriteList); + } + + if(SpriteList && SpriteList->size() > 0) + { + index = (index + SelectedSpriteListIndex) % SpriteList->size(); + + item = SpriteList->at(index); + } + + return item; +} + +bool ScrollingList::IsIdle() +{ + return (Component::IsIdle() && CurrentScrollState == ScrollStateIdle); +} + +void ScrollingList::CircularIncrement(unsigned int &index, std::vector* list) +{ + index++; + + if(index >= list->size()) + { + index = 0; + } +} + +void ScrollingList::CircularDecrement(unsigned int &index, std::vector* list) +{ + if(index > 0) + { + index--; + } + else + { + if(list->size() > 0) + { + index = list->size() - 1; + } + else + { + index = 0; + } + } +} + + +void ScrollingList::CircularIncrement(unsigned int &index, std::vector *list) +{ + index++; + + if(index >= list->size()) + { + index = 0; + } +} +void ScrollingList::CircularDecrement(unsigned int &index, std::vector *list) +{ + if(index > 0) + { + index--; + } + else + { + if(list && list->size() > 0) + { + index = list->size() - 1; + } + else + { + index = 0; + } + } +} + diff --git a/Source/Graphics/Component/ScrollingList.h b/Source/Graphics/Component/ScrollingList.h new file mode 100644 index 0000000..29180b0 --- /dev/null +++ b/Source/Graphics/Component/ScrollingList.h @@ -0,0 +1,105 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include "Component.h" +#include "../Animate/Tween.h" +#include "../ComponentItemBinding.h" +#include "../MenuNotifierInterface.h" +#include "../ViewInfo.h" +#include "../../Database/Configuration.h" +#include + + +//todo: This scrolling implementation needs to be overhauled +// It needs to have a common interface to support different menu types +// (It was originally sandbox code that creeped into here) + +class Configuration; +class Font; + +class ScrollingList : public Component +{ +public: + enum ScrollDirection + { + ScrollDirectionBack, + ScrollDirectionForward, + ScrollDirectionIdle, + + }; + + ScrollingList(Configuration *c, float scaleX, float scaleY, Font *font, SDL_Color fontColor, std::string layoutKey, std::string CollectionName, std::string imageType); + virtual ~ScrollingList(); + void AllocateTexture(ComponentItemBinding *s); + void DeallocateTexture(ComponentItemBinding *s); + void SetItems(std::vector *spriteList); + void SetPoints(std::vector *scrollPoints); + void SetScrollDirection(ScrollDirection direction); + void PageUp(); + void PageDown(); + bool IsIdle(); + void SetSelectedIndex(int selectedIndex); + ComponentItemBinding *GetSelectedCollectionItemSprite(); + ComponentItemBinding *GetPendingCollectionItemSprite(); + ComponentItemBinding *GetPendingSelectedCollectionItemSprite(); + void AddComponentForNotifications(MenuNotifierInterface *c); + void RemoveComponentForNotifications(MenuNotifierInterface *c); + std::vector *GetCollectionItemSprites(); + void RemoveSelectedItem(); + void FreeGraphicsMemory(); + void Update(float dt); + void Draw(); + void Draw(unsigned int layer); + +private: + void Click(); + unsigned int GetNextTween(unsigned int currentIndex, std::vector *list); + bool IsScrollChangedStarted; + bool IsScrollChangedSignalled; + bool IsScrollChangedComplete; + +enum ScrollState + { + ScrollStateActive, + ScrollStatePageChange, + ScrollStateStopping, + ScrollStateIdle + }; + + std::vector *SpriteList; + std::vector *ScrollPoints; + std::vector NotificationComponents; + float TweenEnterTime; + + unsigned int FirstSpriteIndex; + unsigned int SelectedSpriteListIndex; + float CurrentAnimateTime; + float ScrollTime; + + ScrollDirection CurrentScrollDirection; + ScrollDirection RequestedScrollDirection; + ScrollState CurrentScrollState; + float ScrollAcceleration; + float ScrollVelocity; + + void CircularIncrement(unsigned &index, std::vector *list); + void CircularDecrement(unsigned &index, std::vector *list); + void CircularIncrement(unsigned &index, std::vector *list); + void CircularDecrement(unsigned &index, std::vector *list); + void UpdateOffset(float dt); + + std::string Collection; + Configuration *Config; + float ScaleX; + float ScaleY; + Font *FontInst; + SDL_Color FontColor; + std::string LayoutKey; + std::string CollectionName; + std::string ImageType; + unsigned int MaxLayer; +}; + diff --git a/Source/Graphics/Component/Text.cpp b/Source/Graphics/Component/Text.cpp new file mode 100644 index 0000000..18141cf --- /dev/null +++ b/Source/Graphics/Component/Text.cpp @@ -0,0 +1,103 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Text.h" +#include "../../Utility/Log.h" +#include "../../SDL.h" +#include "../Font.h" +#include + +Text::Text(std::string text, Font *font, SDL_Color fontColor, float scaleX, float scaleY) +: TextData(text) +, FontInst(font) +, FontColor(fontColor) +, ScaleX(scaleX) +, ScaleY(scaleY) +{ + AllocateGraphicsMemory(); +} + +Text::~Text() +{ + FreeGraphicsMemory(); +} + + +void Text::FreeGraphicsMemory() +{ + Component::FreeGraphicsMemory(); +} + +void Text::AllocateGraphicsMemory() +{ + //todo: make the font blend color a parameter that is passed in + Component::AllocateGraphicsMemory(); +} + +void Text::Draw() +{ + SDL_Texture *t = FontInst->GetTexture(); + + ViewInfo *info = GetBaseViewInfo(); + float imageHeight = 0; + float imageWidth = 0; + + // determine image width + for(unsigned int i = 0; i < TextData.size(); ++i) + { + Font::GlyphInfo glyph; + if(FontInst->GetRect(TextData[i], glyph)) + { + imageWidth += glyph.Advance; + imageHeight = (imageHeight >= glyph.Rect.h) ? imageHeight : glyph.Rect.h; + } + } + + float scale = (float)info->GetFontSize() / (float)imageHeight; + + + float width = info->GetRawWidth(); + float height = info->GetRawHeight(); + + info->SetWidth(imageWidth*scale); + info->SetHeight(imageHeight*scale); + + float xOrigin = info->GetXRelativeToOrigin(); + float yOrigin = info->GetYRelativeToOrigin(); + + info->SetWidth(width); + info->SetHeight(height); + + + SDL_Rect rect; + rect.x = static_cast(xOrigin); + + for(unsigned int i = 0; i < TextData.size(); ++i) + { + Font::GlyphInfo glyph; + + if(FontInst->GetRect(TextData[i], glyph) && glyph.Rect.h > 0) + { + SDL_Rect charRect = glyph.Rect; + float h = static_cast(charRect.h * scale); + float w = static_cast(charRect.w * scale); + rect.h = static_cast(h); + rect.w = static_cast(w); + rect.y = static_cast(yOrigin); + /* + std::stringstream ss; + ss << " cx:" << charRect.x << " cy:" << charRect.y << " cw:" << charRect.w << " ch:" << charRect.h; + ss << " x:" << rect.x << " y:" << rect.y << " w:" << rect.w << " h:" << rect.h; + Logger::Write(Logger::ZONE_DEBUG, "Text", ss.str()); + */ + + SDL_LockMutex(SDL::GetMutex()); + SDL_SetTextureColorMod(t, FontColor.r, FontColor.g, FontColor.b); + SDL_UnlockMutex(SDL::GetMutex()); + + SDL::RenderCopy(t, static_cast(info->GetTransparency() * 255), &charRect, &rect, info->GetAngle()); + rect.x += static_cast(glyph.Advance * scale); + } + } +} + diff --git a/Source/Graphics/Component/Text.h b/Source/Graphics/Component/Text.h new file mode 100644 index 0000000..2bede32 --- /dev/null +++ b/Source/Graphics/Component/Text.h @@ -0,0 +1,29 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "Component.h" + +#include +#include + +class Font; + +class Text : public Component +{ +public: + //todo: should have a Font flass that references fontcache, pass that in as an argument + Text(std::string text, Font *font, SDL_Color fontColor, float scaleX, float scaleY); + virtual ~Text(); + void AllocateGraphicsMemory(); + void FreeGraphicsMemory(); + void Draw(); + +private: + std::string TextData; + Font *FontInst; + SDL_Color FontColor; + float ScaleX; + float ScaleY; +}; diff --git a/Source/Graphics/Component/VideoBuilder.cpp b/Source/Graphics/Component/VideoBuilder.cpp new file mode 100644 index 0000000..637b75c --- /dev/null +++ b/Source/Graphics/Component/VideoBuilder.cpp @@ -0,0 +1,36 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "VideoBuilder.h" +#include "../../Utility/Utils.h" +#include "../../Utility/Log.h" +#include "../../Video/VideoFactory.h" +#include + + +VideoComponent * VideoBuilder::CreateVideo(std::string path, std::string name, float scaleX, float scaleY) +{ + VideoComponent *component = NULL; + std::vector extensions; + + extensions.push_back("mp4"); + extensions.push_back("MP4"); + extensions.push_back("avi"); + extensions.push_back("AVI"); + + std::string prefix = path + "/" + name; + std::string file; + + if(Utils::FindMatchingFile(prefix, extensions, file)) + { + IVideo *video = Factory.CreateVideo(); + + if(video) + { + component = new VideoComponent(video, file, scaleX, scaleY); + } + } + + return component; +} + diff --git a/Source/Graphics/Component/VideoBuilder.h b/Source/Graphics/Component/VideoBuilder.h new file mode 100644 index 0000000..89a36f3 --- /dev/null +++ b/Source/Graphics/Component/VideoBuilder.h @@ -0,0 +1,18 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "Image.h" +#include "VideoComponent.h" +#include "../../Video/VideoFactory.h" + +//todo: this is more of a factory than a builder +class VideoBuilder +{ +public: + VideoComponent * CreateVideo(std::string path, std::string name, float scaleX, float scaleY); + +private: + VideoFactory Factory; +}; diff --git a/Source/Graphics/Component/VideoComponent.cpp b/Source/Graphics/Component/VideoComponent.cpp new file mode 100644 index 0000000..2a9343c --- /dev/null +++ b/Source/Graphics/Component/VideoComponent.cpp @@ -0,0 +1,84 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "VideoComponent.h" +#include "../ViewInfo.h" +#include "../../Database/Configuration.h" +#include "../../Utility/Log.h" +#include "../../SDL.h" + +VideoComponent::VideoComponent(IVideo *videoInst, std::string videoFile, float scaleX, float scaleY) +: VideoTexture(NULL) +, VideoFile(videoFile) +, VideoInst(videoInst) +, ScaleX(scaleX) +, ScaleY(scaleY) +, IsPlaying(false) +{ +// AllocateGraphicsMemory(); +} + +VideoComponent::~VideoComponent() +{ + FreeGraphicsMemory(); + + if(VideoInst) + { + VideoInst->Stop(); + } +} + +void VideoComponent::Update(float dt) +{ + if(IsPlaying) + { + VideoInst->Update(dt); + } + + Component::Update(dt); + +} + +void VideoComponent::AllocateGraphicsMemory() +{ + Component::AllocateGraphicsMemory(); + + if(!IsPlaying) + { + IsPlaying = VideoInst->Play(VideoFile); + } +} + +void VideoComponent::FreeGraphicsMemory() +{ + VideoInst->Stop(); + IsPlaying = false; + + if (VideoTexture != NULL) + { + SDL_LockMutex(SDL::GetMutex()); + SDL_DestroyTexture(VideoTexture); + SDL_UnlockMutex(SDL::GetMutex()); + } + + Component::FreeGraphicsMemory(); +} + +void VideoComponent::Draw() +{ + ViewInfo *info = GetBaseViewInfo(); + SDL_Rect rect; + + rect.x = static_cast(info->GetXRelativeToOrigin()); + rect.y = static_cast(info->GetYRelativeToOrigin()); + rect.h = static_cast(info->GetHeight()); + rect.w = static_cast(info->GetWidth()); + + VideoInst->Draw(); + SDL_Texture *texture = VideoInst->GetTexture(); + + if(texture) + { + SDL::RenderCopy(texture, static_cast(info->GetTransparency() * 255), NULL, &rect, info->GetAngle()); + } +} diff --git a/Source/Graphics/Component/VideoComponent.h b/Source/Graphics/Component/VideoComponent.h new file mode 100644 index 0000000..7922fcf --- /dev/null +++ b/Source/Graphics/Component/VideoComponent.h @@ -0,0 +1,32 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once +#include "Component.h" +#include "Image.h" +#include "../../Collection/Item.h" +#include "../../Video/IVideo.h" +#include +#include + +class VideoComponent : public Component +{ +public: + VideoComponent(IVideo *videoInst, std::string videoFile, float scaleX, float scaleY); + virtual ~VideoComponent(); + void Update(float dt); + void Draw(); + void FreeGraphicsMemory(); + void AllocateGraphicsMemory(); + void LaunchEnter() {FreeGraphicsMemory(); } + void LaunchExit() { AllocateGraphicsMemory(); } + +private: + SDL_Texture *VideoTexture; + std::string VideoFile; + std::string Name; + IVideo *VideoInst; + float ScaleX; + float ScaleY; + bool IsPlaying; +}; diff --git a/Source/Graphics/ComponentItemBinding.cpp b/Source/Graphics/ComponentItemBinding.cpp new file mode 100644 index 0000000..5a308f4 --- /dev/null +++ b/Source/Graphics/ComponentItemBinding.cpp @@ -0,0 +1,35 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "ComponentItemBinding.h" + +ComponentItemBinding::ComponentItemBinding( Component *c, Item *item) +: CollectionComponent(c) +, CollectionItem(item) +{ +} + +ComponentItemBinding::ComponentItemBinding(Item *item) +: CollectionComponent(NULL) +, CollectionItem(item) +{ +} + +ComponentItemBinding::~ComponentItemBinding() +{ +} + +Item* ComponentItemBinding::GetCollectionItem() const +{ + return CollectionItem; +} + +void ComponentItemBinding::SetComponent(Component *c) +{ + CollectionComponent = c; +} + +Component* ComponentItemBinding::GetComponent() const +{ + return CollectionComponent; +} diff --git a/Source/Graphics/ComponentItemBinding.h b/Source/Graphics/ComponentItemBinding.h new file mode 100644 index 0000000..59a8418 --- /dev/null +++ b/Source/Graphics/ComponentItemBinding.h @@ -0,0 +1,23 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "Component/Component.h" +#include "../Collection/Item.h" + +class ComponentItemBinding +{ +public: + ComponentItemBinding(Component *c, Item *item); + ComponentItemBinding(Item *item); + virtual ~ComponentItemBinding(); + Item* GetCollectionItem() const; + + void SetComponent(Component *c); + Component* GetComponent() const; + +private: + Component *CollectionComponent; + Item *CollectionItem; +}; diff --git a/Source/Graphics/ComponentItemBindingBuilder.cpp b/Source/Graphics/ComponentItemBindingBuilder.cpp new file mode 100644 index 0000000..406d1b8 --- /dev/null +++ b/Source/Graphics/ComponentItemBindingBuilder.cpp @@ -0,0 +1,29 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "ComponentItemBindingBuilder.h" +#include "ComponentItemBinding.h" +#include "../Database/CollectionDatabase.h" +#include "../Collection/Item.h" + +ComponentItemBindingBuilder::ComponentItemBindingBuilder() +{ +} + +ComponentItemBindingBuilder::~ComponentItemBindingBuilder() +{ +} + +std::vector *ComponentItemBindingBuilder::BuildCollectionItems(std::vector *infoList) +{ + std::vector *sprites = new std::vector(); + std::vector::iterator it; + + for(it = infoList->begin(); it != infoList->end(); ++it) + { + ComponentItemBinding *s = new ComponentItemBinding(*it); + sprites->push_back(s); + } + + return sprites; +} diff --git a/Source/Graphics/ComponentItemBindingBuilder.h b/Source/Graphics/ComponentItemBindingBuilder.h new file mode 100644 index 0000000..a5fa8f9 --- /dev/null +++ b/Source/Graphics/ComponentItemBindingBuilder.h @@ -0,0 +1,18 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include + +class Item; +class ComponentItemBinding; + +class ComponentItemBindingBuilder +{ +public: + ComponentItemBindingBuilder(); + virtual ~ComponentItemBindingBuilder(); + static std::vector *BuildCollectionItems(std::vector *infoList); +}; diff --git a/Source/Graphics/Font.cpp b/Source/Graphics/Font.cpp new file mode 100644 index 0000000..569ef63 --- /dev/null +++ b/Source/Graphics/Font.cpp @@ -0,0 +1,145 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Font.h" +#include "../SDL.h" +#include "../Utility/Log.h" +#include +#include + +Font::Font() +: Texture(NULL) +{ +} + +Font::~Font() +{ + DeInitialize(); +} + +SDL_Texture *Font::GetTexture() +{ + return Texture; +} + +bool Font::GetRect(unsigned int charCode, GlyphInfo &glyph) +{ + std::map::iterator it = Atlas.find(charCode); + + if(it != Atlas.end()) + { + GlyphInfoBuild *info = it->second; + + glyph = info->Glyph; + + return true; + } + + return false; +} + +bool Font::Initialize(std::string fontPath, SDL_Color color) +{ + TTF_Font *font = TTF_OpenFont(fontPath.c_str(), 128); + + if (!font) + { + Logger::Write(Logger::ZONE_ERROR, "FontCache", "TTF_OpenFont failed"); + return false; + } + + int x = 0; + int y = 0; + int atlasHeight = 0; + int atlasWidth = 0; + + for(unsigned short int i = 32; i < 128; ++i) + { + GlyphInfoBuild *info = new GlyphInfoBuild; + memset(info, sizeof(GlyphInfoBuild), 0); + + info->Surface = TTF_RenderGlyph_Blended(font, i, color); + TTF_GlyphMetrics(font, i, &info->Glyph.MinX, &info->Glyph.MaxX, &info->Glyph.MinY, &info->Glyph.MaxY, &info->Glyph.Advance); + + if(x + info->Surface->w >= 1024) + { + atlasHeight += y; + atlasWidth = (atlasWidth >= x) ? atlasWidth : x; + x = 0; + y = 0; + } + + info->Glyph.Rect.w = info->Surface->w; + info->Glyph.Rect.h = info->Surface->h; + info->Glyph.Rect.x = x; + info->Glyph.Rect.y = atlasHeight; + Atlas[i] = info; + + x += info->Glyph.Rect.w; + y = (y > info->Glyph.Rect.h) ? y : info->Glyph.Rect.h; + /* + std::stringstream ss; + ss << " tw:" << atlasWidth << " th:" << atlasHeight << " x:" << x << " y:" << y << " w:" << info->Glyph.Rect.w << " h:" << info->Glyph.Rect.h; + Logger::Write(Logger::ZONE_ERROR, "FontCache", ss.str()); + */ + } + + atlasWidth = (atlasWidth >= x) ? atlasWidth : x; + atlasHeight += y; + + unsigned int rmask; + unsigned int gmask; + unsigned int bmask; + unsigned int amask; +#if SDL_BYTEORDER == SDL_BIG_ENDIAN + rmask = 0xff000000; + gmask = 0x00ff0000; + bmask = 0x0000ff00; + amask = 0x000000ff; +#else + rmask = 0x000000ff; + gmask = 0x0000ff00; + bmask = 0x00ff0000; + amask = 0xff000000; +#endif + SDL_Surface *atlasSurface = SDL_CreateRGBSurface(0, atlasWidth, atlasHeight, 24, rmask, gmask, bmask, amask); + + std::map::iterator it; + for(it = Atlas.begin(); it != Atlas.end(); it++) + { + GlyphInfoBuild *info = it->second; + SDL_BlitSurface(info->Surface, NULL, atlasSurface, &info->Glyph.Rect); + SDL_FreeSurface(info->Surface); + info->Surface = NULL; + } + + SDL_LockMutex(SDL::GetMutex()); + SDL_SetColorKey(atlasSurface, SDL_TRUE, SDL_MapRGB(atlasSurface->format, 0, 0, 0)); + Texture = SDL_CreateTextureFromSurface(SDL::GetRenderer(), atlasSurface); + SDL_FreeSurface(atlasSurface); + SDL_UnlockMutex(SDL::GetMutex()); + + TTF_CloseFont(font); + + return true; +} + +void Font::DeInitialize() +{ + if(Texture) + { + SDL_LockMutex(SDL::GetMutex()); + SDL_DestroyTexture(Texture); + Texture = NULL; + SDL_UnlockMutex(SDL::GetMutex()); + } + + std::map::iterator atlasIt = Atlas.begin(); + while(atlasIt != Atlas.end()) + { + delete atlasIt->second; + Atlas.erase(atlasIt); + atlasIt = Atlas.begin(); + } + +} diff --git a/Source/Graphics/Font.h b/Source/Graphics/Font.h new file mode 100644 index 0000000..e4f9f67 --- /dev/null +++ b/Source/Graphics/Font.h @@ -0,0 +1,42 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include +#include + +class Font +{ +public: + struct GlyphInfo + { + int MinX; + int MaxX; + int MinY; + int MaxY; + int Advance; + SDL_Rect Rect; + }; + + Font(); + virtual ~Font(); + bool Initialize(std::string fontPath, SDL_Color color); + void DeInitialize(); + SDL_Texture *GetTexture(); + bool GetRect(unsigned int charCode, GlyphInfo &glyph); + + +private: + struct GlyphInfoBuild + { + Font::GlyphInfo Glyph; + SDL_Surface *Surface; + }; + + std::map Atlas; + SDL_Texture *Texture; +}; + + diff --git a/Source/Graphics/FontCache.cpp b/Source/Graphics/FontCache.cpp new file mode 100644 index 0000000..b2d31b9 --- /dev/null +++ b/Source/Graphics/FontCache.cpp @@ -0,0 +1,72 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "FontCache.h" +#include "Font.h" +#include "../Utility/Log.h" +#include "../SDL.h" +#include +#include + +//todo: memory leak when launching games +FontCache::FontCache() +: IsInitialized(false) +{ +} + +FontCache::~FontCache() +{ + DeInitialize(); +} + +void FontCache::DeInitialize() +{ + IsInitialized = false; + std::map::iterator it = FontFaceMap.begin(); + while(it != FontFaceMap.end()) + { + delete it->second; + FontFaceMap.erase(it); + it = FontFaceMap.begin(); + } + + SDL_LockMutex(SDL::GetMutex()); + TTF_Quit(); + SDL_UnlockMutex(SDL::GetMutex()); +} + + +void FontCache::Initialize() +{ + //todo: make bool + TTF_Init(); + IsInitialized = true; +} +Font *FontCache::GetFont(std::string fontPath) +{ + Font *t = NULL; + + std::map::iterator it = FontFaceMap.find(fontPath); + + if(it != FontFaceMap.end()) + { + t = it->second; + } + + return t; +} + +bool FontCache::LoadFont(std::string fontPath, SDL_Color color) +{ + std::map::iterator it = FontFaceMap.find(fontPath); + + if(it == FontFaceMap.end()) + { + Font *f = new Font(); + f->Initialize(fontPath, color); + FontFaceMap[fontPath] = f; + } + + return true; +} + diff --git a/Source/Graphics/FontCache.h b/Source/Graphics/FontCache.h new file mode 100644 index 0000000..bb958fd --- /dev/null +++ b/Source/Graphics/FontCache.h @@ -0,0 +1,26 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "Font.h" +#include +#include + +class FontCache +{ +public: + void Initialize(); + void DeInitialize(); + FontCache(); + bool LoadFont(std::string font, SDL_Color color); + Font *GetFont(std::string font); + + virtual ~FontCache(); +private: + bool IsInitialized; + + std::map FontFaceMap; + +}; + diff --git a/Source/Graphics/MenuNotifierInterface.h b/Source/Graphics/MenuNotifierInterface.h new file mode 100644 index 0000000..7915273 --- /dev/null +++ b/Source/Graphics/MenuNotifierInterface.h @@ -0,0 +1,14 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "../Collection/Item.h" + +class MenuNotifierInterface +{ +public: + virtual ~MenuNotifierInterface() {} + virtual void OnNewItemSelected(Item *) = 0; +}; + diff --git a/Source/Graphics/Page.cpp b/Source/Graphics/Page.cpp new file mode 100644 index 0000000..3272f31 --- /dev/null +++ b/Source/Graphics/Page.cpp @@ -0,0 +1,406 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Page.h" +#include "ComponentItemBinding.h" +#include "Component/Component.h" +#include "../Utility/Log.h" +#include "Component/ScrollingList.h" +#include "../Sound/Sound.h" +#include "ComponentItemBindingBuilder.h" +#include + +Page::Page(std::string collectionName) +: CollectionName(collectionName) +, Menu(NULL) +, Items(NULL) +, ScrollActive(false) +, SelectedItem(NULL) +, SelectedItemChanged(false) +, LoadSoundChunk(NULL) +, UnloadSoundChunk(NULL) +, HighlightSoundChunk(NULL) +, SelectSoundChunk(NULL) +, HasSoundedWhenActive(false) +, FirstSoundPlayed(false) +{ +} + +Page::~Page() +{ + if(Menu) + { + Menu->RemoveComponentForNotifications(this); + } + + for(unsigned int i = 0; i < sizeof(LayerComponents)/sizeof(LayerComponents[0]); ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end(); ++it) + { + delete *it; + } + + LayerComponents[i].clear(); + } + + if(Menu) + { + delete Menu; + } + + if(LoadSoundChunk) + { + delete LoadSoundChunk; + LoadSoundChunk = NULL; + } + + if(UnloadSoundChunk) + { + delete UnloadSoundChunk; + UnloadSoundChunk = NULL; + } + + + if(HighlightSoundChunk) + { + delete HighlightSoundChunk; + HighlightSoundChunk = NULL; + } + + if(SelectSoundChunk) + { + delete SelectSoundChunk; + SelectSoundChunk = NULL; + } +} + +void Page::OnNewItemSelected(Item *item) +{ + SelectedItem = item; + SelectedItemChanged = true; +} + +void Page::SetMenu(ScrollingList *s) +{ + // todo: delete the old menu + Menu = s; + + if(Menu) + { + Menu->AddComponentForNotifications(this); + } +} + +bool Page::AddComponent(Component *c) +{ + bool retVal = false; + + unsigned int layer = c->GetBaseViewInfo()->GetLayer(); + + + if(layer < NUM_LAYERS) + { + LayerComponents[layer].push_back(c); + + retVal = true; + } + else + { + std::stringstream ss; + ss << "Component layer too large Layer: " << layer; + Logger::Write(Logger::ZONE_ERROR, "Page", ss.str()); + } + + return retVal; +} + +bool Page::IsIdle() +{ + bool idle = true; + + if(Menu != NULL && !Menu->IsIdle()) + { + idle = false; + } + + for(unsigned int i = 0; i < NUM_LAYERS && idle; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end() && idle; ++it) + { + idle = (*it)->IsIdle(); + } + } + + return idle; +} + + +bool Page::IsHidden() +{ + bool hidden = true; + + if(Menu != NULL) + { + hidden = Menu->IsHidden(); + } + + for(unsigned int i = 0; hidden && i < NUM_LAYERS; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); hidden && it != LayerComponents[i].end(); ++it) + { + hidden = (*it)->IsHidden(); + } + } + + return hidden; +} + +void Page::Start() +{ + Menu->TriggerEnterEvent(); + + if(LoadSoundChunk) + { + LoadSoundChunk->Play(); + } + + for(unsigned int i = 0; i < NUM_LAYERS; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end(); ++it) + { + (*it)->TriggerEnterEvent(); + } + } +} + +void Page::Stop() +{ + Menu->TriggerExitEvent(); + + if(UnloadSoundChunk) + { + UnloadSoundChunk->Play(); + } + + for(unsigned int i = 0; i < NUM_LAYERS; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end(); ++it) + { + (*it)->TriggerExitEvent(); + } + } +} + + +Item *Page::GetSelectedItem() +{ + return SelectedItem; +} + +void Page::RemoveSelectedItem() +{ + if(Menu) + { + //todo: change method to RemoveItem() and pass in SelectedItem + Menu->RemoveSelectedItem(); + SelectedItem = NULL; + } + +} + + +void Page::Highlight() +{ + Item *item = SelectedItem; + + if(item) + { + if(Menu) + { + Menu->TriggerHighlightEvent(item); + Menu->SetScrollActive(ScrollActive); + } + + for(unsigned int i = 0; i < NUM_LAYERS; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end(); ++it) + { + (*it)->TriggerHighlightEvent(item); + (*it)->SetScrollActive(ScrollActive); + } + } + } +} + + +void Page::SetScrolling(ScrollDirection direction) +{ + ScrollingList::ScrollDirection menuDirection; + + switch(direction) + { + case ScrollDirectionForward: + menuDirection = ScrollingList::ScrollDirectionForward; + ScrollActive = true; + break; + case ScrollDirectionBack: + menuDirection = ScrollingList::ScrollDirectionBack; + ScrollActive = true; + break; + case ScrollDirectionIdle: + default: + menuDirection = ScrollingList::ScrollDirectionIdle; + ScrollActive = false; + break; + } + if(Menu) + { + Menu->SetScrollDirection(menuDirection); + } +} + +void Page::PageScroll(ScrollDirection direction) +{ + if(Menu) + { + if(direction == ScrollDirectionForward) + { + Menu->PageDown(); + } + if(direction == ScrollDirectionBack) + { + Menu->PageUp(); + } + } +} + + +void Page::SetItems(std::vector *items) +{ + std::vector *sprites = ComponentItemBindingBuilder::BuildCollectionItems(items); + + if(Menu != NULL) + { + Menu->SetItems(sprites); + } +} + + + +void Page::Update(float dt) +{ + if(Menu != NULL) + { + Menu->Update(dt); + } + if(SelectedItemChanged && !HasSoundedWhenActive && HighlightSoundChunk) + { + // skip the first sound being played (as it is part of the on-enter) + if(FirstSoundPlayed) + { + HighlightSoundChunk->Play(); + HasSoundedWhenActive = true; + } + FirstSoundPlayed = true; + } + + if(SelectedItemChanged && !ScrollActive) + { + Highlight(); + SelectedItemChanged = false; + HasSoundedWhenActive = false; + } + + for(unsigned int i = 0; i < NUM_LAYERS; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end(); ++it) + { + (*it)->Update(dt); + } + } +} + +void Page::Draw() +{ + for(unsigned int i = 0; i < NUM_LAYERS; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end(); ++it) + { + (*it)->Draw(); + } + + Menu->Draw(i); + } +} + +const std::string& Page::GetCollectionName() const +{ + return CollectionName; +} + +void Page::FreeGraphicsMemory() +{ + Logger::Write(Logger::ZONE_DEBUG, "Page", "Free"); + Menu->FreeGraphicsMemory(); + + if(LoadSoundChunk) LoadSoundChunk->Free(); + if(UnloadSoundChunk) UnloadSoundChunk->Free(); + if(HighlightSoundChunk) HighlightSoundChunk->Free(); + if(SelectSoundChunk) SelectSoundChunk->Free(); + + for(unsigned int i = 0; i < NUM_LAYERS; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end(); ++it) + { + (*it)->FreeGraphicsMemory(); + } + } +} + +void Page::AllocateGraphicsMemory() +{ + FirstSoundPlayed = false; + Logger::Write(Logger::ZONE_DEBUG, "Page", "Allocating graphics memory"); + Menu->AllocateGraphicsMemory(); + + if(LoadSoundChunk) LoadSoundChunk->Allocate(); + if(UnloadSoundChunk) UnloadSoundChunk->Allocate(); + if(HighlightSoundChunk) HighlightSoundChunk->Allocate(); + if(SelectSoundChunk) SelectSoundChunk->Allocate(); + + for(unsigned int i = 0; i < NUM_LAYERS; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end(); ++it) + { + (*it)->AllocateGraphicsMemory(); + } + } + Logger::Write(Logger::ZONE_DEBUG, "Page", "Allocate graphics memory complete"); +} + +void Page::LaunchEnter() +{ + Menu->LaunchEnter(); + + for(unsigned int i = 0; i < NUM_LAYERS; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end(); ++it) + { + (*it)->LaunchEnter(); + } + } +} + +void Page::LaunchExit() +{ + Menu->LaunchExit(); + + for(unsigned int i = 0; i < NUM_LAYERS; ++i) + { + for(std::vector::iterator it = LayerComponents[i].begin(); it != LayerComponents[i].end(); ++it) + { + (*it)->LaunchExit(); + } + } +} + diff --git a/Source/Graphics/Page.h b/Source/Graphics/Page.h new file mode 100644 index 0000000..37950e8 --- /dev/null +++ b/Source/Graphics/Page.h @@ -0,0 +1,71 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "MenuNotifierInterface.h" + +#include +#include + +class Component; +class ScrollingList; +class Item; +class Sound; + +class Page : public MenuNotifierInterface +{ +public: + enum ScrollDirection + { + ScrollDirectionForward, + ScrollDirectionBack, + ScrollDirectionIdle + + }; + + Page(std::string collectionName); + virtual ~Page(); + virtual void OnNewItemSelected(Item *); + void SetItems(std::vector *items); + void SetMenu(ScrollingList *s); + void SetLoadSound(Sound *chunk) { LoadSoundChunk = chunk; } + void SetUnloadSound(Sound *chunk) { UnloadSoundChunk = chunk; } + void SetHighlightSound(Sound *chunk) { HighlightSoundChunk = chunk; } + void SetSelectSound(Sound *chunk) { SelectSoundChunk = chunk; } + bool AddComponent(Component *c); + void PageScroll(ScrollDirection direction); + void Start(); + void Stop(); + void SetScrolling(ScrollDirection direction); + Item *GetSelectedItem(); + Item *GetPendingSelectedItem(); + void RemoveSelectedItem(); + bool IsIdle(); + bool IsHidden(); + void Update(float dt); + void Draw(); + void FreeGraphicsMemory(); + void AllocateGraphicsMemory(); + void LaunchEnter(); + void LaunchExit(); + const std::string& GetCollectionName() const; + +private: + void Highlight(); + std::string CollectionName; + ScrollingList *Menu; + static const unsigned int NUM_LAYERS = 8; + std::vector LayerComponents[NUM_LAYERS]; + std::vector *Items; + bool ScrollActive; + Item *SelectedItem; + bool SelectedItemChanged; + Sound *LoadSoundChunk; + Sound *UnloadSoundChunk; + Sound *HighlightSoundChunk; + Sound *SelectSoundChunk; + bool HasSoundedWhenActive; + bool FirstSoundPlayed; + +}; diff --git a/Source/Graphics/PageBuilder.cpp b/Source/Graphics/PageBuilder.cpp new file mode 100644 index 0000000..4e00e9f --- /dev/null +++ b/Source/Graphics/PageBuilder.cpp @@ -0,0 +1,674 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "PageBuilder.h" +#include "Page.h" +#include "ViewInfo.h" +#include "Component/Image.h" +#include "Component/Text.h" +#include "Component/ReloadableText.h" +#include "Component/ReloadableMedia.h" +#include "Component/ScrollingList.h" +#include "Animate/TweenTypes.h" +#include "../Sound/Sound.h" +#include "../Collection/Item.h" +#include "../SDL.h" +#include "../Utility/Log.h" +#include "../Utility/Utils.h" +#include +#include +#include +#include +#include +#include + +using namespace rapidxml; + + +PageBuilder::PageBuilder(std::string layoutKey, std::string collection, Configuration *c, FontCache *fc) +: LayoutKey(layoutKey) +, Collection(collection) +, Config(c) +, ScaleX(1) +, ScaleY(1) +, ScreenHeight(0) +, ScreenWidth(0) +, FC(fc) +{ + ScreenWidth = SDL::GetWindowWidth(); + ScreenHeight = SDL::GetWindowHeight(); + FontColor.a = 255; + FontColor.r = 255; + FontColor.g = 0; + FontColor.b = 0; +} + +PageBuilder::~PageBuilder() +{ +} + +Page *PageBuilder::BuildPage() +{ + Page *page = NULL; + + std::string layoutFile; + std::string layoutName = LayoutKey; + + LayoutPath = Configuration::GetAbsolutePath() + "/Layouts/" + layoutName; + layoutFile = LayoutPath + "/Layout.xml"; + + Logger::Write(Logger::ZONE_INFO, "Layout", "Initializing " + layoutFile); + + rapidxml::xml_document<> doc; + std::ifstream file(layoutFile.c_str()); + std::vector buffer((std::istreambuf_iterator(file)), std::istreambuf_iterator()); + + if(!file.good()) + { + Logger::Write(Logger::ZONE_INFO, "Layout", "could not find layout file: " + layoutFile); + return NULL; + } + + try + { + buffer.push_back('\0'); + + doc.parse<0>(&buffer[0]); + + xml_node<> *root = doc.first_node("layout"); + + + if(!root) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Missing tag"); + return NULL; + } + else + { + xml_attribute<> *layoutWidthXml = root->first_attribute("width"); + xml_attribute<> *layoutHeightXml = root->first_attribute("height"); + xml_attribute<> *fontXml = root->first_attribute("font"); + xml_attribute<> *fontColorXml = root->first_attribute("fontColor"); + int layoutHeight; + int layoutWidth; + if(!layoutWidthXml || !layoutHeightXml) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", " tag must specify a width and height"); + return NULL; + } + if(fontXml) + { + //todo: reuse from ComponentBuilder. Not sure how since it relies on knowing the collection + std::string fontPropertyKey = "layouts." + LayoutKey + ".font"; + Config->SetProperty(fontPropertyKey, fontXml->value()); + + Font = Config->ConvertToAbsolutePath( + Config->GetAbsolutePath() + "/Layouts/" + LayoutKey + "/", + fontXml->value()); + + Logger::Write(Logger::ZONE_DEBUG, "Layout", "Layout font set to " + Font); + + } + + if(fontColorXml) + { + int intColor = 0; + std::stringstream ss; + ss << std::hex << fontColorXml->value(); + ss >> intColor; + + FontColor.b = intColor & 0xFF; + intColor >>= 8; + FontColor.g = intColor & 0xFF; + intColor >>= 8; + FontColor.r = intColor & 0xFF; + } + + layoutWidth = Utils::ConvertInt(layoutWidthXml->value()); + layoutHeight = Utils::ConvertInt(layoutHeightXml->value()); + + if(layoutWidth == 0 || layoutHeight == 0) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Layout width and height cannot be set to 0"); + return NULL; + } + + ScaleX = (float)ScreenWidth / (float)layoutWidth; + ScaleY = (float)ScreenHeight / (float)layoutHeight; + + std::stringstream ss; + ss << layoutWidth << "x" << layoutHeight << " (scale " << ScaleX << "x" << ScaleY << ")"; + Logger::Write(Logger::ZONE_DEBUG, "Layout", "Layout resolution " + ss.str()); + + page = new Page(Collection); + + // load sounds + for(xml_node<> *sound = root->first_node("sound"); sound; sound = sound->next_sibling("sound")) + { + xml_attribute<> *src = sound->first_attribute("src"); + xml_attribute<> *type = sound->first_attribute("type"); + std::string file = Configuration::ConvertToAbsolutePath(LayoutPath, src->value()); + if(!type) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Sound tag missing type attribute"); + } + else + { + Sound *sound = new Sound(file); + std::string soundType = type->value(); + + if(!soundType.compare("load")) + { + page->SetLoadSound(sound); + } + else if(!soundType.compare("unload")) + { + page->SetUnloadSound(sound); + } + else if(!soundType.compare("highlight")) + { + page->SetHighlightSound(sound); + } + else if(!soundType.compare("select")) + { + page->SetSelectSound(sound); + } + else + { + Logger::Write(Logger::ZONE_WARNING, "Layout", "Unsupported sound effect type \"" + soundType + "\""); + } + } + } + if(!BuildComponents(root, page)) + { + delete page; + page = NULL; + } + + } + + } + catch(rapidxml::parse_error &e) + { + std::string what = e.what(); + long line = static_cast(std::count(&buffer.front(), e.where(), char('\n')) + 1); + std::stringstream ss; + ss << "Could not parse layout file. [Line: " << line << "] Reason: " << e.what(); + + Logger::Write(Logger::ZONE_ERROR, "Layout", ss.str()); + } + catch(std::exception &e) + { + std::string what = e.what(); + Logger::Write(Logger::ZONE_ERROR, "Layout", "Could not parse layout file. Reason: " + what); + } + + if(page) + { + Logger::Write(Logger::ZONE_DEBUG, "Layout", "Created page"); + } + + return page; +} + + + +float PageBuilder::GetHorizontalAlignment(xml_attribute<> *attribute, float valueIfNull) +{ + float value; + std::string str; + + if(!attribute) + { + value = valueIfNull; + } + else + { + str = attribute->value(); + + if(!str.compare("left")) + { + value = 0; + } + else if(!str.compare("center")) + { + value = static_cast(ScreenWidth) / 2; + } + else if(!str.compare("right") || !str.compare("stretch")) + { + value = static_cast(ScreenWidth); + } + else + { + value = Utils::ConvertFloat(str) * ScaleX; + } + } + + return value; +} + +float PageBuilder::GetVerticalAlignment(xml_attribute<> *attribute, float valueIfNull) +{ + float value; + std::string str; + if(!attribute) + { + value = valueIfNull; + } + else + { + str = attribute->value(); + + if(!str.compare("top")) + { + value = 0; + } + else if(!str.compare("center")) + { + value = static_cast(ScreenHeight / 2); + } + else if(!str.compare("bottom") || !str.compare("stretch")) + { + value = static_cast(ScreenHeight); + } + else + { + value = Utils::ConvertFloat(str) * ScaleY; + } + } + return value; +} + + + + +bool PageBuilder::BuildComponents(xml_node<> *layout, Page *page) +{ + bool retVal = true; + xml_node<> *menuXml = layout->first_node("menu"); + if(!menuXml) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Missing menu tag"); + retVal = false; + } + else if(menuXml) + { + ScrollingList *scrollingList = BuildCustomMenu(menuXml); + page->SetMenu(scrollingList); + + for(xml_node<> *componentXml = layout->first_node("image"); componentXml; componentXml = componentXml->next_sibling("image")) + { + xml_attribute<> *src = componentXml->first_attribute("src"); + + if (!src) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Image component in layout does not specify a source image file"); + } + else + { + std::string imagePath; + imagePath = Configuration::ConvertToAbsolutePath(LayoutPath, imagePath); + + imagePath.append("/"); + imagePath.append(src->value()); + + + + Image *c = new Image(imagePath, ScaleX, ScaleY); + ViewInfo *v = c->GetBaseViewInfo(); + BuildViewInfo(componentXml, v); + LoadTweens(c, componentXml); + page->AddComponent(c); + } + } + + for(xml_node<> *componentXml = layout->first_node("text"); componentXml; componentXml = componentXml->next_sibling("text")) + { + xml_attribute<> *value = componentXml->first_attribute("value"); + + if (!value) + { + Logger::Write(Logger::ZONE_WARNING, "Layout", "Text component in layout does not specify a value"); + } + else + { + FC->LoadFont(Font, FontColor); + Text *c = new Text(value->value(), FC->GetFont(Font), FontColor, ScaleX, ScaleY); + ViewInfo *v = c->GetBaseViewInfo(); + + BuildViewInfo(componentXml, v); + + LoadTweens(c, componentXml); + page->AddComponent(c); + } + } + + LoadReloadableImages(layout, "reloadableImage", page); + LoadReloadableImages(layout, "reloadableVideo", page); + LoadReloadableImages(layout, "reloadableText", page); + } + + return retVal; +} + +void PageBuilder::LoadReloadableImages(xml_node<> *layout, std::string tagName, Page *page) +{ + for(xml_node<> *componentXml = layout->first_node(tagName.c_str()); componentXml; componentXml = componentXml->next_sibling(tagName.c_str())) + { + std::string reloadableImagePath; + std::string reloadableVideoPath; + xml_attribute<> *type = componentXml->first_attribute("type"); + + if(tagName == "reloadableVideo") + { + type = componentXml->first_attribute("imageType"); + } + + + if(!type && tagName == "reloadableVideo") + { + Logger::Write(Logger::ZONE_WARNING, "Layout", " component in layout does not specify an imageType for when the video does not exist"); + } + if(!type && (tagName == "reloadableImage" || tagName == "reloadableText")) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Image component in layout does not specify a source image file"); + } + + if(type && (tagName == "reloadableVideo" || tagName == "reloadableImage")) + { + std::string configImagePath = "collections." + Collection + ".media." + type->value(); + if(!Config->GetPropertyAbsolutePath(configImagePath, reloadableImagePath)) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Cannot process reloadable images because property \"" + configImagePath + "\" does not exist"); + } + + std::string configVideoPath = "collections." + Collection + ".media.video"; + + if(!Config->GetPropertyAbsolutePath(configVideoPath, reloadableVideoPath)) + { + Logger::Write(Logger::ZONE_WARNING, "Layout", "Could not find videos folder as \"" + configVideoPath + "\" does not exist"); + } + } + + + Component *c = NULL; + + if(tagName == "reloadableText") + { + if(type) + { + FC->LoadFont(Font, FontColor); + c = new ReloadableText(type->value(), FC->GetFont(Font), FontColor, LayoutKey, Collection, ScaleX, ScaleY); + } + } + else + { + c = new ReloadableMedia(reloadableImagePath, reloadableVideoPath, (tagName == "reloadableVideo"), ScaleX, ScaleY); + } + + if(c) + { + LoadTweens(c, componentXml); + + page->AddComponent(c); + } + } +} +void PageBuilder::LoadTweens(Component *c, xml_node<> *componentXml) +{ + ViewInfo *v = c->GetBaseViewInfo(); + + BuildViewInfo(componentXml, v); + + Component::TweenSets *tweenSets; + tweenSets = new std::vector *>(); + GetTweenSets(componentXml->first_node("onEnter"), tweenSets); + c->SetOnEnterTweens(tweenSets); + + tweenSets = new std::vector *>(); + GetTweenSets(componentXml->first_node("onExit"), tweenSets); + c->SetOnExitTweens(tweenSets); + + tweenSets = new std::vector *>(); + GetTweenSets(componentXml->first_node("onIdle"), tweenSets); + c->SetOnIdleTweens(tweenSets); + + tweenSets = new std::vector *>(); + GetTweenSets(componentXml->first_node("onHighlightEnter"), tweenSets); + c->SetOnHighlightEnterTweens(tweenSets); + + tweenSets = new std::vector *>(); + GetTweenSets(componentXml->first_node("onHighlightExit"), tweenSets); + c->SetOnHighlightExitTweens(tweenSets); +} + + +ScrollingList * PageBuilder::BuildCustomMenu(xml_node<> *menuXml) +{ + ScrollingList *menu = NULL; + std::string imageType="null"; + + xml_attribute<> *imageTypeXml = menuXml->first_attribute("imageType"); + + if(imageTypeXml) + { + imageType = imageTypeXml->value(); + } + + FC->LoadFont(Font, FontColor); + menu = new ScrollingList(Config, ScaleX, ScaleY, FC->GetFont(Font), FontColor, LayoutKey, Collection, imageType); + + ViewInfo *v = menu->GetBaseViewInfo(); + BuildViewInfo(menuXml, v); + + std::vector *points = new std::vector(); + + int i = 0; + for(xml_node<> *componentXml = menuXml->first_node("item"); componentXml; componentXml = componentXml->next_sibling("item")) + { + ViewInfo *viewInfo = new ViewInfo(); + BuildViewInfo(componentXml, viewInfo); + + points->push_back(viewInfo); + + xml_attribute<> *selected = componentXml->first_attribute("selected"); + + if(selected) + { + menu->SetSelectedIndex(i); + } + + i++; + } + + menu->SetPoints(points); + + + return menu; +} + + +xml_attribute<> *PageBuilder::FindRecursiveAttribute(xml_node<> *componentXml, std::string attribute) +{ + + xml_attribute<> *attributeXml = NULL; + xml_node<> *parent = componentXml->parent(); + + // root xml node height and width attributes are to define the layout size itself, not the elements + if(parent && parent->parent()) + { + attributeXml = componentXml->first_attribute(attribute.c_str()); + + if(!attributeXml) + { + attributeXml = FindRecursiveAttribute(parent, attribute); + } + } + + return attributeXml; +} + +void PageBuilder::BuildViewInfo(xml_node<> *componentXml, ViewInfo *info) +{ + xml_attribute<> *x = FindRecursiveAttribute(componentXml, "x"); + xml_attribute<> *y = FindRecursiveAttribute(componentXml, "y"); + xml_attribute<> *xOffset = FindRecursiveAttribute(componentXml, "xOffset"); + xml_attribute<> *yOffset = FindRecursiveAttribute(componentXml, "yOffset"); + xml_attribute<> *xOrigin = FindRecursiveAttribute(componentXml, "xOrigin"); + xml_attribute<> *yOrigin = FindRecursiveAttribute(componentXml, "yOrigin"); + xml_attribute<> *height = FindRecursiveAttribute(componentXml, "height"); + xml_attribute<> *width = FindRecursiveAttribute(componentXml, "width"); + xml_attribute<> *fontSize = FindRecursiveAttribute(componentXml, "fontSize"); + xml_attribute<> *minHeight = FindRecursiveAttribute(componentXml, "minHeight"); + xml_attribute<> *minWidth = FindRecursiveAttribute(componentXml, "minWidth"); + xml_attribute<> *maxHeight = FindRecursiveAttribute(componentXml, "maxHeight"); + xml_attribute<> *maxWidth = FindRecursiveAttribute(componentXml, "maxWidth"); + xml_attribute<> *transparency = FindRecursiveAttribute(componentXml, "transparency"); + xml_attribute<> *angle = FindRecursiveAttribute(componentXml, "angle"); + xml_attribute<> *layer = FindRecursiveAttribute(componentXml, "layer"); + + info->SetX(GetHorizontalAlignment(x, 0)); + info->SetY(GetVerticalAlignment(y, 0)); + + + info->SetXOffset( GetHorizontalAlignment(xOffset, 0)); + info->SetYOffset( GetVerticalAlignment(yOffset, 0)); + float xOriginRelative = GetHorizontalAlignment(xOrigin, 0); + float yOriginRelative = GetVerticalAlignment(yOrigin, 0); + + // the origins need to be saved as a percent since the heights and widths can be scaled + info->SetXOrigin(xOriginRelative / ScreenWidth); + info->SetYOrigin(yOriginRelative / ScreenHeight); + + + if(!height && !width) + { + info->SetHeight(-1); + info->SetWidth(-1); + } + else + { + info->SetHeight(GetVerticalAlignment(height, -1)); + info->SetWidth(GetHorizontalAlignment(width, -1)); + } + info->SetFontSize(GetVerticalAlignment(fontSize, -1)); + /* + std::stringstream ss; + ss << "font size is \"" << info->GetFontSize() << "\""; + Logger::Write(Logger::ZONE_ERROR, "Layout", ss.str()); + */ + info->SetMinHeight(GetVerticalAlignment(minHeight, 0)); + info->SetMinWidth(GetHorizontalAlignment(minWidth, 0)); + info->SetMaxHeight(GetVerticalAlignment(maxHeight, FLT_MAX)); + info->SetMaxWidth(GetVerticalAlignment(maxWidth, FLT_MAX)); + info->SetTransparency( transparency ? Utils::ConvertFloat(transparency->value()) : 1); + info->SetAngle( angle ? Utils::ConvertFloat(angle->value()) : 0); + info->SetLayer( layer ? Utils::ConvertInt(layer->value()) : 0); +} + + +void PageBuilder::GetTweenSets(xml_node<> *node, std::vector *> *tweenSets) +{ + if(node) + { + for(xml_node<> *set = node->first_node("set"); set; set = set->next_sibling("set")) + { + std::vector *tweens = new std::vector(); + GetTweenSet(set, *tweens); + tweenSets->push_back(tweens); + } + } +} + +void PageBuilder::GetTweenSet(xml_node<> *node, std::vector &tweens) +{ + xml_attribute<> *durationXml = node->first_attribute("duration"); + + if(!durationXml) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Animation set tag missing \"duration\" attribute"); + } + else + { + for(xml_node<> *animate = node->first_node("animate"); animate; animate = animate->next_sibling("animate")) + { + xml_attribute<> *type = animate->first_attribute("type"); + xml_attribute<> *from = animate->first_attribute("from"); + xml_attribute<> *to = animate->first_attribute("to"); + xml_attribute<> *algorithmXml = animate->first_attribute("algorithm"); + + if(!type) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Animate tag missing \"type\" attribute"); + } + else if(!from) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Animate tag missing \"from\" attribute"); + } + else if(!to) + { + Logger::Write(Logger::ZONE_ERROR, "Layout", "Animate tag missing \"to\" attribute"); + } + else + { + float fromValue = Utils::ConvertFloat(from->value()); + float toValue = Utils::ConvertFloat(to->value()); + float durationValue = Utils::ConvertFloat(durationXml->value()); + + TweenAlgorithm algorithm = LINEAR; + TweenProperty property; + + if(algorithmXml) + { + algorithm = Tween::GetTweenType(algorithmXml->value()); + + } + + if(Tween::GetTweenProperty(type->value(), property)) + { + switch(property) + { + case TWEEN_PROPERTY_WIDTH: + case TWEEN_PROPERTY_X: + case TWEEN_PROPERTY_X_OFFSET: + fromValue = GetHorizontalAlignment(from, 0); + toValue = GetHorizontalAlignment(to, 0); + break; + + // x origin gets translated to a percent + case TWEEN_PROPERTY_X_ORIGIN: + fromValue = GetHorizontalAlignment(from, 0) / ScreenWidth; + toValue = GetHorizontalAlignment(to, 0) / ScreenWidth; + break; + + case TWEEN_PROPERTY_HEIGHT: + case TWEEN_PROPERTY_Y: + case TWEEN_PROPERTY_Y_OFFSET: + case TWEEN_PROPERTY_FONT_SIZE: + fromValue = GetVerticalAlignment(from, 0); + toValue = GetVerticalAlignment(to, 0); + break; + + // y origin gets translated to a percent + case TWEEN_PROPERTY_Y_ORIGIN: + fromValue = GetVerticalAlignment(from, 0) / ScreenHeight; + toValue = GetVerticalAlignment(to, 0) / ScreenHeight; + break; + + default: + break; + } + + Tween *t = new Tween(property, algorithm, fromValue, toValue, durationValue); + tweens.push_back(t); + } + else + { + std::stringstream ss; + ss << "Unsupported tween type attribute \"" << type->value() << "\""; + Logger::Write(Logger::ZONE_ERROR, "Layout", ss.str()); + } + } + } + } +} diff --git a/Source/Graphics/PageBuilder.h b/Source/Graphics/PageBuilder.h new file mode 100644 index 0000000..b7d5aeb --- /dev/null +++ b/Source/Graphics/PageBuilder.h @@ -0,0 +1,59 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "Component/Image.h" +#include "FontCache.h" +#include +#include +#include +#include + +class ScrollingList; +class Page; +class ViewInfo; +class Configuration; + +class PageBuilder +{ +public: + PageBuilder(std::string layoutKey, std::string collection, Configuration *c, FontCache *fc); + virtual ~PageBuilder(); + Page *BuildPage(); + +private: + std::string LayoutKey; + std::string LayoutPath; + std::string Collection; + Configuration *Config; + float ScaleX; + float ScaleY; + int ScreenHeight; + int ScreenWidth; + SDL_Color FontColor; + std::string Font; + FontCache *FC; //todo: don't need Font itself, just need cache instances + void LoadReloadableImages(rapidxml::xml_node<> *layout, std::string tagName, Page *page); + + float GetVerticalAlignment(rapidxml::xml_attribute<> *attribute, float valueIfNull); + float GetHorizontalAlignment(rapidxml::xml_attribute<> *attribute, float valueIfNull); + void BuildViewInfo(rapidxml::xml_node<> *componentXml, ViewInfo *info); + bool BuildComponents(rapidxml::xml_node<> *layout, Page *page); + void LoadTweens(Component *c, rapidxml::xml_node<> *componentXml); + ScrollingList * BuildCustomMenu(rapidxml::xml_node<> *menuXml); + rapidxml::xml_attribute<> *FindRecursiveAttribute(rapidxml::xml_node<> *componentXml, std::string attribute); + + void GetTweenSets(rapidxml::xml_node<> *node, std::vector *> *tweenSets); + void GetTweenSet(rapidxml::xml_node<> *node, std::vector &tweens); + + + void LoadLayoutXml(); + void LoadAnimations(std::string keyPrefix, Component &component, ViewInfo *defaults); + std::vector *BuildTweenPoints(std::string iteratorPrefix, ViewInfo *defaults); + Component * LoadComponent(std::string keyPrefix); + ScrollingList * LoadMenu(); + + void LoadListItems(std::string keyPrefix, std::vector *tweenPointList, ViewInfo *defaults, int &selectedItemIndex); + void UpdateViewInfoFromTag(std::string keyPrefix, ViewInfo *p, ViewInfo *defaults); +}; diff --git a/Source/Graphics/ViewInfo.cpp b/Source/Graphics/ViewInfo.cpp new file mode 100644 index 0000000..7173b12 --- /dev/null +++ b/Source/Graphics/ViewInfo.cpp @@ -0,0 +1,300 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "ViewInfo.h" +#include "../Database/Configuration.h" +#include "Animate/TweenTypes.h" +#include + +ViewInfo::ViewInfo() +: X(0) +, Y(0) +, XOrigin(0) +, YOrigin(0) +, XOffset(0) +, YOffset(0) +, Width(-1) +, MinWidth(0) +, MaxWidth(FLT_MAX) +, Height(-1) +, MinHeight(0) +, MaxHeight(FLT_MAX) +, ImageWidth(0) +, ImageHeight(0) +, FontSize(-1) +, Angle(0) +, Transparency(1) +, Layer(0) +{ +} + + +ViewInfo::~ViewInfo() +{ +} + +float ViewInfo::GetXRelativeToOrigin() const +{ + return X + XOffset - XOrigin*GetWidth(); +} + +float ViewInfo::GetYRelativeToOrigin() const +{ + return Y + YOffset - YOrigin*GetHeight(); +} + +float ViewInfo::GetHeight() const +{ + float value = Height; + + if(Height == -1 && Width == -1) + { + value = ImageHeight; + } + else + { + if (Height == -1 && ImageWidth != 0) + { + value = ImageHeight * Width / ImageWidth; + } + + if (value < MinHeight) + { + value = MinHeight; + } + else if (value > MaxHeight) + { + value = MaxHeight; + } + } + + return value; +} + +float ViewInfo::GetWidth() const +{ + float value = Width; + + if(Height == -1 && Width == -1) + { + value = ImageWidth; + } + else + { + if (Width == -1 && ImageHeight != 0) + { + value = ImageWidth * Height / ImageHeight; + } + if (value < MinWidth) + { + value = MinWidth; + } + else if (value > MaxWidth) + { + value = MaxWidth; + } + } + + return value; +} + +float ViewInfo::GetXOffset() const +{ + return XOffset; +} + + +float ViewInfo::GetXOrigin() const +{ + return XOrigin; +} + + +float ViewInfo::GetYOffset() const +{ + return YOffset; +} + + +float ViewInfo::GetYOrigin() const +{ + return YOrigin; +} + +float ViewInfo::GetAngle() const +{ + return Angle; +} + +void ViewInfo::SetAngle(float angle) +{ + Angle = angle; +} + +float ViewInfo::GetImageHeight() const +{ + return ImageHeight; +} + +void ViewInfo::SetImageHeight(float imageheight) +{ + ImageHeight = imageheight; +} + +float ViewInfo::GetImageWidth() const +{ + return ImageWidth; +} + +void ViewInfo::SetImageWidth(float imagewidth) +{ + ImageWidth = imagewidth; +} + +unsigned int ViewInfo::GetLayer() const +{ + return Layer; +} + +void ViewInfo::SetLayer(unsigned int layer) +{ + Layer = layer; +} + +float ViewInfo::GetMaxHeight() const +{ + return MaxHeight; +} + +void ViewInfo::SetMaxHeight(float maxheight) +{ + MaxHeight = maxheight; +} + +float ViewInfo::GetMaxWidth() const +{ + return MaxWidth; +} + +void ViewInfo::SetMaxWidth(float maxwidth) +{ + MaxWidth = maxwidth; +} + +float ViewInfo::GetMinHeight() const +{ + return MinHeight; +} + +void ViewInfo::SetMinHeight(float minheight) +{ + MinHeight = minheight; +} + +float ViewInfo::GetMinWidth() const +{ + return MinWidth; +} + +void ViewInfo::SetMinWidth(float minwidth) +{ + MinWidth = minwidth; +} + +float ViewInfo::GetTransparency() const +{ + return Transparency; +} + +void ViewInfo::SetTransparency(float transparency) +{ + Transparency = transparency; +} + +float ViewInfo::GetX() const +{ + return X; +} + +void ViewInfo::SetX(float x) +{ + X = x; +} + +void ViewInfo::SetXOffset(float offset) +{ + XOffset = offset; +} + + +void ViewInfo::SetXOrigin(float origin) +{ + XOrigin = origin; +} + +float ViewInfo::GetY() const +{ + return Y; +} + +void ViewInfo::SetY(float y) +{ + Y = y; +} + +void ViewInfo::SetYOffset(float offset) +{ + YOffset = offset; +} + + +void ViewInfo::SetYOrigin(float origin) +{ + YOrigin = origin; +} + +float ViewInfo::GetRawYOrigin() +{ + return YOrigin; +} +float ViewInfo::GetRawXOrigin() +{ + return XOrigin; +} + +float ViewInfo::GetRawWidth() +{ + return Width; +} + +float ViewInfo::GetRawHeight() +{ + return Height; +} + +void ViewInfo::SetHeight(float height) +{ + Height = height; +} + +void ViewInfo::SetWidth(float width) +{ + Width = width; +} + +float ViewInfo::GetFontSize() const +{ + if(FontSize == -1) + { + return GetHeight(); + } + else + { + return FontSize; + } +} + +void ViewInfo::SetFontSize(float fontSize) +{ + FontSize = fontSize; +} diff --git a/Source/Graphics/ViewInfo.h b/Source/Graphics/ViewInfo.h new file mode 100644 index 0000000..3383cd2 --- /dev/null +++ b/Source/Graphics/ViewInfo.h @@ -0,0 +1,89 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "Animate/TweenTypes.h" +#include +#include + +class ViewInfo +{ +public: + + ViewInfo(); + virtual ~ViewInfo(); + + float GetXRelativeToOrigin() const; + float GetYRelativeToOrigin() const; + + float GetHeight() const; + float GetWidth() const; + float GetAngle() const; + void SetAngle(float angle); + float GetImageHeight() const; + void SetImageHeight(float imageheight); + float GetImageWidth() const; + void SetImageWidth(float imagewidth); + unsigned int GetLayer() const; + void SetLayer(unsigned int layer); + float GetMaxHeight() const; + void SetMaxHeight(float maxheight); + float GetMaxWidth() const; + void SetMaxWidth(float maxwidth); + float GetMinHeight() const; + void SetMinHeight(float minheight); + float GetMinWidth() const; + void SetMinWidth(float minwidth); + float GetTransparency() const; + void SetTransparency(float transparency); + float GetX() const; + void SetX(float x); + float GetXOffset() const; + void SetXOffset(float offset); + float GetXOrigin() const; + void SetXOrigin(float origin); + float GetY() const; + void SetY(float y); + float GetYOffset() const; + void SetYOffset(float offset); + float GetYOrigin() const; + void SetYOrigin(float origin); + float GetRawYOrigin(); + float GetRawXOrigin(); + float GetRawWidth(); + float GetRawHeight(); + + void SetHeight(float height); + void SetWidth(float width); + float GetFontSize() const; + void SetFontSize(float fontSize); + + static const int AlignCenter = -1; + static const int AlignLeft = -2; + static const int AlignTop = -3; + static const int AlignRight = -4; + static const int AlignBottom = -5; + +private: + float X; + float Y; + float XOrigin; + float YOrigin; + float XOffset; + float YOffset; + float Width; + float MinWidth; + float MaxWidth; + float Height; + float MinHeight; + float MaxHeight; + float ImageWidth; + float ImageHeight; + float FontSize; + float Angle; + float Transparency; + unsigned int Layer; + float HorizontalScale; + float VerticalScale; +}; diff --git a/Source/Main.cpp b/Source/Main.cpp new file mode 100644 index 0000000..064e989 --- /dev/null +++ b/Source/Main.cpp @@ -0,0 +1,198 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Database/Configuration.h" +#include "Database/CollectionDatabase.h" +#include "Collection/CollectionInfoBuilder.h" +#include "Collection/CollectionInfo.h" +#include "Database/DB.h" +#include "Database/MamelistMetadata.h" +#include "Execute/Launcher.h" +#include "Utility/Log.h" +#include "Utility/Utils.h" +#include "RetroFE.h" +#include "Version.h" +#include +#include +#include + +#ifdef WIN32 +#include +#else +#include +#include +#endif + +static bool ImportConfiguration(Configuration *c); + +int main(int argc, char *argv[]) +{ + Configuration config; + const char *environment = std::getenv("RETROFE_PATH"); + std::string environmentStr; + if (environment != NULL) + { + environmentStr = environment; + Configuration::SetAbsolutePath(environment); + } + else + { +#ifdef WIN32 + HMODULE hModule = GetModuleHandle(NULL); + CHAR exe[MAX_PATH]; + GetModuleFileName(hModule, exe, MAX_PATH); + std::string sPath(exe); + sPath = Utils::GetDirectory(sPath); + sPath = Utils::GetParentDirectory(sPath); +#else + char exepath[1024]; + sprintf(exepath, "/proc/%d/exe", getpid()); + readlink(exepath, exepath, sizeof(exepath)); + std::string sPath(exepath); + sPath = Utils::GetDirectory(sPath); +#endif + + + Configuration::SetAbsolutePath(sPath); + } + + // set the log file to write to + std::string logFile = Configuration::GetAbsolutePath() + "/Log.txt"; + + if(!Logger::StartLogFile(logFile)) + { + Logger::Write(Logger::ZONE_ERROR, "RetroFE", "Could not open \"" + logFile + "\" for writing"); + } + + Logger::Write(Logger::ZONE_INFO, "RetroFE", "Version " + Version::GetString() + " starting"); +#ifdef WIN32 + Logger::Write(Logger::ZONE_INFO, "RetroFE", "OS: Windows"); +#else + Logger::Write(Logger::ZONE_INFO, "RetroFE", "OS: Linux"); +#endif + + if(environment) + { + Logger::Write(Logger::ZONE_INFO, "RetroFE", "Environment variable set: RetroFE_PATH=" + environmentStr); + } + + Logger::Write(Logger::ZONE_INFO, "RetroFE", "Absolute path: " + Configuration::GetAbsolutePath()); + + if(!ImportConfiguration(&config)) + { + return -1; + } + + Logger::Write(Logger::ZONE_INFO, "RetroFE", "Imported configuration"); + + std::string dbFile = (Configuration::GetAbsolutePath() + "/cache.db"); + std::ifstream infile(dbFile.c_str()); + DB db; + if(!db.Initialize()) + { + return -1; + } + + CollectionDatabase cdb(&db, &config); + + cdb.CheckDatabase(); + + if(cdb.Import()) + { + RetroFE p(&cdb, &config); + + if(p.Initialize()) + { + p.Run(); + } + + p.DeInitialize(); + } + + Logger::CloseLogFile(); + return 0; +} + +bool ImportConfiguration(Configuration *c) +{ + std::string configPath = Configuration::GetAbsolutePath(); + std::string launchersPath = Configuration::GetAbsolutePath() + "/Launchers"; + std::string collectionsPath = Configuration::GetAbsolutePath() + "/Collections"; + DIR *dp; + struct dirent *dirp; + + if(!c->Import("", configPath + "/Settings.conf")) + { + Logger::Write(Logger::ZONE_ERROR, "RetroFE", "Could not import \"" + configPath + "/Settings.conf\""); + return false; + } + + + + if(!c->Import("controls", configPath + "/Controls.conf")) + { + Logger::Write(Logger::ZONE_ERROR, "RetroFE", "Could not import \"" + configPath + "/Settings.conf\""); + return false; + } + + dp = opendir(launchersPath.c_str()); + + if(dp == NULL) + { + Logger::Write(Logger::ZONE_ERROR, "RetroFE", "Could not read directory \"" + launchersPath + "\""); + return false; + } + + while((dirp = readdir(dp)) != NULL) + { + if (dirp->d_type != DT_DIR && std::string(dirp->d_name) != "." && std::string(dirp->d_name) != "..") + { + std::string basename = dirp->d_name; + + // if(basename.length() > 0) + { + std::string extension = basename.substr(basename.find_last_of("."), basename.size()-1); + basename = basename.substr(0, basename.find_last_of(".")); + + if(extension == ".conf") + { + std::string prefix = "launchers." + basename; + + std::string importFile = launchersPath + "/" + std::string(dirp->d_name); + + if(!c->Import(prefix, importFile)) + { + Logger::Write(Logger::ZONE_ERROR, "RetroFE", "Could not import \"" + importFile + "\""); + return false; + } + } + } + } + } + + dp = opendir(collectionsPath.c_str()); + + if(dp == NULL) + { + Logger::Write(Logger::ZONE_ERROR, "RetroFE", "Could not read directory \"" + collectionsPath + "\""); + return false; + } + + while((dirp = readdir(dp)) != NULL) + { + if (dirp->d_type == DT_DIR && std::string(dirp->d_name) != "." && std::string(dirp->d_name) != "..") + { + std::string prefix = "collections." + std::string(dirp->d_name); + + std::string settingsFile = collectionsPath + "/" + dirp->d_name + "/Settings.conf"; + + if(!c->Import(prefix, settingsFile)) + { + Logger::Write(Logger::ZONE_ERROR, "RetroFE", "Could not import \"" + settingsFile + "\""); + return false; + } + } + } + + return true; +} diff --git a/Source/RetroFE.cpp b/Source/RetroFE.cpp new file mode 100644 index 0000000..b442dcb --- /dev/null +++ b/Source/RetroFE.cpp @@ -0,0 +1,499 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "RetroFE.h" +#include "Database/CollectionDatabase.h" +#include "Database/Configuration.h" +#include "Collection/Item.h" +#include "Execute/Launcher.h" +#include "Utility/Log.h" +#include "Collection/MenuParser.h" +#include "SDL.h" +#include "Control/UserInput.h" +#include "Graphics/PageBuilder.h" +#include "Graphics/Page.h" +#include "Graphics/Component/ScrollingList.h" +#include "Video/VideoFactory.h" +#include +#include +#include +#ifdef WIN32 +#include +#include +#endif + + +Page *page = NULL; + +RetroFE::RetroFE(CollectionDatabase *db, Configuration *c) +: Config(c) +, CollectionDB(db) +, Input(Config) +, KeyInputDisable(0) +, InactiveKeyTime(0) +, AttractMode(false) +, CurrentTime(0) +, VideoInst(NULL) +{ +} + +RetroFE::~RetroFE() +{ + DeInitialize(); +} + +void RetroFE::Render() +{ + SDL_LockMutex(SDL::GetMutex()); + SDL_SetRenderDrawColor(SDL::GetRenderer(), 0x0, 0x0, 0x00, 0xFF); + SDL_RenderClear(SDL::GetRenderer()); + + Page *page = PageChain.back(); + + if(page) + { + page->Draw(); + } + + SDL_RenderPresent(SDL::GetRenderer()); + SDL_UnlockMutex(SDL::GetMutex()); +} + +bool RetroFE::Initialize() +{ + Logger::Write(Logger::ZONE_INFO, "RetroFE", "Initializing"); + + if(!Input.Initialize()) return false; + if(!SDL::Initialize(Config)) return false; + FC.Initialize(); + + bool videoEnable = true; + int videoLoop = 0; + + Config->GetProperty("videoEnable", videoEnable); + Config->GetProperty("videoLoop", videoLoop); + + VideoFactory::SetEnabled(videoEnable); + VideoFactory::SetNumLoops(videoLoop); + VideoFactory vf; + VideoInst = vf.CreateVideo(); + + return true; +} + +void RetroFE::LaunchEnter() +{ + if(PageChain.size() > 0) + { + Page *p = PageChain.back(); + p->LaunchEnter(); + } + SDL_SetWindowGrab(SDL::GetWindow(), SDL_FALSE); + +} + +void RetroFE::LaunchExit() +{ + SDL_RestoreWindow(SDL::GetWindow()); + SDL_SetWindowGrab(SDL::GetWindow(), SDL_TRUE); + + if(PageChain.size() > 0) + { + Page *p = PageChain.back(); + p->LaunchExit(); + } + +} + +void RetroFE::FreeGraphicsMemory() +{ + if(PageChain.size() > 0) + { + Page *p = PageChain.back(); + p->FreeGraphicsMemory(); + } + FC.DeInitialize(); + + SDL::DeInitialize(); +} + +void RetroFE::AllocateGraphicsMemory() +{ + SDL::Initialize(Config); + + FC.Initialize(); + + if(PageChain.size() > 0) + { + Page *p = PageChain.back(); + p->AllocateGraphicsMemory(); + p->Start(); + } +} + +bool RetroFE::DeInitialize() +{ + bool retVal = true; + FreeGraphicsMemory(); + + bool videoEnable = true; + + while(PageChain.size() > 0) + { + Page *page = PageChain.back(); + delete page; + PageChain.pop_back(); + } + + if(VideoInst) + { + delete VideoInst; + VideoInst = NULL; + } + + //todo: handle video deallocation + return retVal; +} + +Configuration *RetroFE::GetConfiguration() +{ + return Config; +} + + +void RetroFE::Run() +{ + int attractModeTime = 0; + bool attractMode = false; + std::string firstCollection = "Main"; + + Config->GetProperty("attractModeTime", attractModeTime); + Config->GetProperty("firstCollection", firstCollection); + + bool running = true; + Item *nextPageItem = NULL; + bool adminMode = false; + float attractModeRandomTime = 0; + bool selectActive = false; + + //todo: break up into helper methods + Logger::Write(Logger::ZONE_INFO, "RetroFE", "Loading first page"); + + page = LoadPage(firstCollection); + + float frameCount = 0; + float fpsStartTime = 0; + RETROFE_STATE state = RETROFE_IDLE; + + while (running) + { + float lastTime = 0; + float deltaTime = 0; + page = PageChain.back(); + Launcher l(this); + + if(!page) + { + Logger::Write(Logger::ZONE_WARNING, "RetroFE", "Could not load page"); + running = false; + break; + } + + // todo: This could be transformed to use the state design pattern. + switch(state) + { + case RETROFE_IDLE: + state = ProcessUserInput(); + break; + + case RETROFE_NEXT_PAGE_REQUEST: + page->Stop(); + state = RETROFE_NEXT_PAGE_WAIT; + break; + + case RETROFE_NEXT_PAGE_WAIT: + if(page->IsHidden()) + { + page = LoadPage(NextPageItem->GetName()); + state = RETROFE_NEW; + } + break; + + case RETROFE_LAUNCH_REQUEST: + l.Run(page->GetCollectionName(), NextPageItem); + state = RETROFE_IDLE; + break; + + case RETROFE_BACK_REQUEST: + page->Stop(); + state = RETROFE_BACK_WAIT; + break; + + case RETROFE_BACK_WAIT: + if(page->IsHidden()) + { + PageChain.pop_back(); + delete page; + + page = PageChain.back(); + CurrentTime = (float)SDL_GetTicks() / 1000; + + page->AllocateGraphicsMemory(); + page->Start(); + state = RETROFE_NEW; + } + break; + + case RETROFE_NEW: + if(page->IsIdle()) + { + state = RETROFE_IDLE; + } + break; + + case RETROFE_QUIT_REQUEST: + page->Stop(); + state = RETROFE_QUIT; + break; + + case RETROFE_QUIT: + if(page->IsHidden()) + { + running = false; + } + + break; + } + + // the logic below could be done in a helper method + if(running) + { + lastTime = CurrentTime; + CurrentTime = (float)SDL_GetTicks() / 1000; + + if (CurrentTime < lastTime) + { + CurrentTime = lastTime; + } + + deltaTime = CurrentTime - lastTime; + double sleepTime = 1000.0/60.0 - deltaTime*1000; + if(sleepTime > 0) + { + SDL_Delay(static_cast(sleepTime)); + } + + ++frameCount; + + if(CurrentTime - fpsStartTime > 1.0) + { + // don't print the first framerate, it's likely inaccurate + bool logFps = false; + Config->GetProperty("debug.logfps", logFps); + + if(fpsStartTime != 0 && logFps) + { + std::stringstream fpsstream; + fpsstream << frameCount/(CurrentTime - fpsStartTime) << " FPS"; + Logger::Write(Logger::ZONE_DEBUG, "RetroFE", fpsstream.str()); + } + + fpsStartTime = CurrentTime; + frameCount = 0; + } + + InactiveKeyTime += deltaTime; + + if(!AttractMode && InactiveKeyTime > attractModeTime) + { + AttractMode = true; + InactiveKeyTime = 0; + attractModeRandomTime = ((float)((1000+rand()) % 5000)) / 1000; + } + + if(attractMode) + { + page->SetScrolling(Page::ScrollDirectionForward); + + if(InactiveKeyTime > attractModeRandomTime) + { + InactiveKeyTime = 0; + attractMode = false; + page->SetScrolling(Page::ScrollDirectionIdle); + } + } + + page->Update(deltaTime); + Render(); + } + } +} + +bool RetroFE::ItemSelected() +{ + Item *item = page->GetSelectedItem(); + + if(!item) return false; + + if(item->IsLeaf()) + { + Launcher l(this); + + l.Run(page->GetCollectionName(), item); + } + else + { + NextPageItem = item; + LoadPage(page->GetCollectionName()); + page->Stop(); + } + + return true; +} + +bool RetroFE::Back(bool &exit) +{ + bool canGoBack = false; + + bool exitOnBack = false; + Config->GetProperty("exitOnFirstPageBack", exitOnBack); + exit = false; + + if(PageChain.size() > 1) + { + page->Stop(); + canGoBack = true; + } + else if(PageChain.size() == 1 && exitOnBack) + { + page->Stop(); + exit = true; + canGoBack = true; + } + + return canGoBack; +} + + +RetroFE::RETROFE_STATE RetroFE::ProcessUserInput() +{ + SDL_Event e; + bool exit = false; + RETROFE_STATE state = RETROFE_IDLE; + + if (SDL_PollEvent(&e) == 0) return state; + + if(e.type == SDL_KEYDOWN || e.type == SDL_KEYUP) + { + const Uint8 *keys = SDL_GetKeyboardState(NULL); + + InactiveKeyTime = 0; + AttractMode = false; + + if (keys[Input.GetScancode(UserInput::KeyCodePreviousItem)]) + { + page->SetScrolling(Page::ScrollDirectionBack); + } + if (keys[Input.GetScancode(UserInput::KeyCodeNextItem)]) + { + page->SetScrolling(Page::ScrollDirectionForward); + } + if (keys[Input.GetScancode(UserInput::KeyCodePageUp)]) + { + page->PageScroll(Page::ScrollDirectionBack); + } + if (keys[Input.GetScancode(UserInput::KeyCodePageDown)]) + { + page->PageScroll(Page::ScrollDirectionForward); + } + if (keys[Input.GetScancode(UserInput::KeyCodeAdminMode)]) + { + //todo: add admin mode support + } + if (keys[Input.GetScancode(UserInput::KeyCodeSelect)]) + { + NextPageItem = page->GetSelectedItem(); + + if(NextPageItem) + { + state = (NextPageItem->IsLeaf()) ? RETROFE_LAUNCH_REQUEST : RETROFE_NEXT_PAGE_REQUEST; + } + } + + if (keys[Input.GetScancode(UserInput::KeyCodeBack)]) + { + if(Back(exit)) + { + state = (exit) ? RETROFE_QUIT_REQUEST : RETROFE_BACK_REQUEST; + } + } + + if (keys[Input.GetScancode(UserInput::KeyCodeQuit)]) + { + state = RETROFE_QUIT_REQUEST; + } + + if(!keys[Input.GetScancode(UserInput::KeyCodePreviousItem)] && + !keys[Input.GetScancode(UserInput::KeyCodeNextItem)] && + !keys[Input.GetScancode(UserInput::KeyCodePageUp)] && + !keys[Input.GetScancode(UserInput::KeyCodePageDown)]) + { + page->SetScrolling(Page::ScrollDirectionIdle); + } + } + + return state; +} + + + +Page *RetroFE::LoadPage(std::string collectionName) +{ + Logger::Write(Logger::ZONE_INFO, "RetroFE", "Creating page for collection " + collectionName); + + Page *page = NULL; + std::vector *collection = new std::vector(); // the page will deallocate this once its done + MenuParser mp; + + mp.GetMenuItems(CollectionDB, collectionName, *collection); + CollectionDB->GetCollection(collectionName, *collection); + + //todo: handle this in a more esthetically pleasing way instead of crashing + if(collection->size() == 0) + { + Logger::Write(Logger::ZONE_WARNING, "RetroFE", "No list items found for collection " + collectionName); + } + else + { + std::string layoutKeyName = "collections." + collectionName + ".layout"; + std::string layoutName = "Default 16x9"; + + if(!Config->GetProperty(layoutKeyName, layoutName)) + { + Config->GetProperty("layout", layoutName); + } + + + if(PageChain.size() > 0) + { + Page *oldPage = PageChain.back(); + + if(oldPage) + { + oldPage->FreeGraphicsMemory(); + } + } + + PageBuilder pb(layoutName, collectionName, Config, &FC); + page = pb.BuildPage(); + page->SetItems(collection); + page->Start(); + + if(page) + { + PageChain.push_back(page); + } + } + + return page; +} diff --git a/Source/RetroFE.h b/Source/RetroFE.h new file mode 100644 index 0000000..203da6d --- /dev/null +++ b/Source/RetroFE.h @@ -0,0 +1,65 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "Collection/Item.h" +#include "Control/UserInput.h" +#include "Graphics/FontCache.h" +#include "Video/IVideo.h" +#include +#include + +class CollectionDatabase; +class Configuration; +class Page; + +class RetroFE +{ +public: + RetroFE(CollectionDatabase *db, Configuration *c); + virtual ~RetroFE(); + bool Initialize(); + bool DeInitialize(); + void Run(); + Configuration *GetConfiguration(); + void FreeGraphicsMemory(); + void AllocateGraphicsMemory(); + void LaunchEnter(); + void LaunchExit(); +private: + enum RETROFE_STATE + { + RETROFE_IDLE, + RETROFE_NEXT_PAGE_REQUEST, + RETROFE_NEXT_PAGE_WAIT, + RETROFE_LAUNCH_REQUEST, + RETROFE_BACK_REQUEST, + RETROFE_BACK_WAIT, + RETROFE_NEW, + RETROFE_QUIT_REQUEST, + RETROFE_QUIT, + }; + + void Render(); + bool ItemSelected(); + bool Back(bool &exit); + void Quit(); + Page *LoadPage(std::string collectionName); + RETROFE_STATE ProcessUserInput(); + void Update(float dt, bool scrollActive); + + + Configuration *Config; + CollectionDatabase *CollectionDB; + UserInput Input; + std::list PageChain; + float KeyInputDisable; + float InactiveKeyTime; + bool AttractMode; + float CurrentTime; + Item *NextPageItem; + FontCache FC; + IVideo *VideoInst; + +}; diff --git a/Source/SDL.cpp b/Source/SDL.cpp new file mode 100644 index 0000000..a056fc5 --- /dev/null +++ b/Source/SDL.cpp @@ -0,0 +1,256 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "SDL.h" +#include "Database/Configuration.h" +#include "Utility/Log.h" +#include + +SDL_Window *SDL::Window = NULL; +SDL_Renderer *SDL::Renderer = NULL; +SDL_mutex *SDL::Mutex = NULL; +int SDL::DisplayWidth = 0; +int SDL::DisplayHeight = 0; +int SDL::WindowWidth = 0; +int SDL::WindowHeight = 0; +bool SDL::Fullscreen = false; + + +bool SDL::Initialize(Configuration *config) +{ + bool retVal = true; + std::string hString; + std::string vString; + Uint32 windowFlags = SDL_WINDOW_OPENGL | SDL_WINDOW_BORDERLESS; + int audioRate = MIX_DEFAULT_FREQUENCY; + Uint16 audioFormat = MIX_DEFAULT_FORMAT; /* 16-bit stereo */ + int audioChannels = 1; + int audioBuffers = 4096; + bool hideMouse; + + Logger::Write(Logger::ZONE_DEBUG, "SDL", "Initializing"); + if (retVal && SDL_Init(SDL_INIT_EVERYTHING) != 0) + { + std::string error = SDL_GetError(); + Logger::Write(Logger::ZONE_ERROR, "SDL", "Initialize failed: " + error); + retVal = false; + } + + if(retVal && config->GetProperty("hideMouse", hideMouse)) + { + if(hideMouse) + { + SDL_ShowCursor(SDL_FALSE); + } + else + { + SDL_ShowCursor(SDL_TRUE); + } + } + + // check for a few other necessary Configurations + if(retVal) + { + // Get current display mode of all displays. + for(int i = 0; i < SDL_GetNumVideoDisplays(); ++i) + { + SDL_DisplayMode mode; + if(SDL_GetCurrentDisplayMode(i, &mode) == 0) + { + DisplayWidth = mode.w; + DisplayHeight = mode.h; + break; + } + } + + + if(!config->GetProperty("horizontal", hString)) + { + Logger::Write(Logger::ZONE_ERROR, "Configuration", "Missing property \"horizontal\""); + retVal = false; + } + else if(hString == "stretch") + { + // Get current display mode of all displays. + for(int i = 0; i < SDL_GetNumVideoDisplays(); ++i) + { + SDL_DisplayMode mode; + if(SDL_GetCurrentDisplayMode(i, &mode) == 0) + { + WindowWidth = mode.w; + break; + } + } + } + else if(!config->GetProperty("horizontal", WindowWidth)) + { + Logger::Write(Logger::ZONE_ERROR, "Configuration", "Invalid property value for \"horizontal\""); + } + } + + // check for a few other necessary Configurations + if(retVal) + { + if(!config->GetProperty("vertical", hString)) + { + Logger::Write(Logger::ZONE_ERROR, "Configuration", "Missing property \"vertical\""); + retVal = false; + } + else if(hString == "stretch") + { + // Get current display mode of all displays. + for(int i = 0; i < SDL_GetNumVideoDisplays(); ++i) + { + SDL_DisplayMode mode; + if(SDL_GetDesktopDisplayMode(i, &mode) == 0) + { + WindowHeight = mode.h; + break; + } + } + } + else if(!config->GetProperty("vertical", WindowHeight)) + { + Logger::Write(Logger::ZONE_ERROR, "Configuration", "Invalid property value for \"vertical\""); + } + } + + if(retVal && !config->GetProperty("fullscreen", Fullscreen)) + { + Logger::Write(Logger::ZONE_ERROR, "Configuration", "Missing property: \"fullscreen\""); + retVal = false; + } + + if (retVal && Fullscreen) + { + windowFlags |= SDL_WINDOW_FULLSCREEN_DESKTOP; + } + + if(retVal) + { + std::stringstream ss; + ss << "Creating "<< WindowWidth << "x" << WindowHeight << " window (fullscreen: " << Fullscreen << ")"; + Logger::Write(Logger::ZONE_DEBUG, "SDL", ss.str()); + + Window = SDL_CreateWindow("RetroFE", + SDL_WINDOWPOS_CENTERED, + SDL_WINDOWPOS_CENTERED, + WindowWidth, + WindowHeight, + windowFlags); + + if (Window == NULL) + { + std::string error = SDL_GetError(); + Logger::Write(Logger::ZONE_ERROR, "SDL", "Create window failed: " + error); + retVal = false; + } + } + + if(retVal) + { + Renderer = SDL_CreateRenderer(Window, + -1, + SDL_RENDERER_ACCELERATED); + + if (Renderer == NULL) + { + std::string error = SDL_GetError(); + Logger::Write(Logger::ZONE_ERROR, "SDL", "Create renderer failed: " + error); + retVal = false; + } + } + + if(retVal) + { + Mutex = SDL_CreateMutex(); + + if (Mutex == NULL) + { + std::string error = SDL_GetError(); + Logger::Write(Logger::ZONE_ERROR, "SDL", "Mutex creation failed: " + error); + retVal = false; + } + } + + //todo: specify in configuration file + if (retVal && Mix_OpenAudio(audioRate, audioFormat, audioChannels, audioBuffers) == -1) + { + std::string error = Mix_GetError(); + Logger::Write(Logger::ZONE_ERROR, "SDL", "Audio initialize failed: " + error); + retVal = false; + } + + return retVal; +} + +bool SDL::DeInitialize() +{ + std::string error = SDL_GetError(); + Logger::Write(Logger::ZONE_DEBUG, "SDL", "DeInitializing"); + + Mix_CloseAudio(); + Mix_Quit(); + if(Mutex) + { + SDL_DestroyMutex(Mutex); + Mutex = NULL; + } + + if(Renderer) + { + SDL_DestroyRenderer(Renderer); + Renderer = NULL; + } + + if(Window) + { + SDL_DestroyWindow(Window); + Window = NULL; + } + + SDL_ShowCursor(SDL_TRUE); + + SDL_Quit(); + + return true; +} + +SDL_Renderer* SDL::GetRenderer() +{ + return Renderer; +} + +SDL_mutex* SDL::GetMutex() +{ + return Mutex; +} + +SDL_Window* SDL::GetWindow() +{ + return Window; +} + + +bool SDL::RenderCopy(SDL_Texture *texture, unsigned char transparency, SDL_Rect *src, SDL_Rect *dest, double angle) +{ + SDL_Rect rotateRect; + rotateRect.w = dest->w; + rotateRect.h = dest->h; + + if(Fullscreen) + { + rotateRect.x = dest->x + (DisplayWidth - WindowWidth)/2; + rotateRect.y = dest->y + (DisplayHeight - WindowHeight)/2; + } + else + { + rotateRect.x = dest->x; + rotateRect.y = dest->y; + } + + SDL_SetTextureAlphaMod(texture, transparency); + SDL_RenderCopyEx(GetRenderer(), texture, src, &rotateRect, angle, NULL, SDL_FLIP_NONE); + + return true; +} diff --git a/Source/SDL.h b/Source/SDL.h new file mode 100644 index 0000000..5545c50 --- /dev/null +++ b/Source/SDL.h @@ -0,0 +1,32 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once +#include + +// todo: this wrapper could be cleaned up +class Configuration; + +class SDL +{ +public: + static bool Initialize(Configuration *config); + static bool DeInitialize(); + static SDL_Renderer *GetRenderer(); + static SDL_mutex *GetMutex(); + static SDL_Window *GetWindow(); + static bool RenderCopy(SDL_Texture *texture, unsigned char transparency, SDL_Rect *src, SDL_Rect *dest, double angle); + static int GetWindowWidth() { return WindowWidth; } + static int GetWindowHeight() { return WindowHeight; } + static bool IsFullscreen() { return Fullscreen; } + +private: + static SDL_Window *Window; + static SDL_Renderer *Renderer; + static SDL_mutex *Mutex; + static int DisplayWidth; + static int DisplayHeight; + static int WindowWidth; + static int WindowHeight; + static bool Fullscreen; +}; diff --git a/Source/Sound/Sound.cpp b/Source/Sound/Sound.cpp new file mode 100644 index 0000000..ca1775e --- /dev/null +++ b/Source/Sound/Sound.cpp @@ -0,0 +1,54 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Sound.h" + +#include "../Utility/Log.h" + +Sound::Sound(std::string file) +: File(file) +, Chunk(NULL) +{ + if(!Allocate()) + { + Logger::Write(Logger::ZONE_ERROR, "Sound", "Cannot load " + File); + } +} + +Sound::~Sound() +{ + if(Chunk) + { + Mix_FreeChunk(Chunk); + Chunk = NULL; + } +} + +void Sound::Play() +{ + if(Chunk) + { + (void)Mix_PlayChannel(-1, Chunk, 0); + } +} + +bool Sound::Free() +{ + if(Chunk) + { + Mix_FreeChunk(Chunk); + Chunk = NULL; + } + + return true; +} + +bool Sound::Allocate() +{ + if(!Chunk) + { + Chunk = Mix_LoadWAV(File.c_str()); + } + + return (Chunk != NULL); +} diff --git a/Source/Sound/Sound.h b/Source/Sound/Sound.h new file mode 100644 index 0000000..d96e7b9 --- /dev/null +++ b/Source/Sound/Sound.h @@ -0,0 +1,19 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include +class Sound +{ +public: + Sound(std::string file); + virtual ~Sound(); + void Play(); + bool Allocate(); + bool Free(); +private: + std::string File; + Mix_Chunk *Chunk; +}; diff --git a/Source/Utility/Log.cpp b/Source/Utility/Log.cpp new file mode 100644 index 0000000..e2ab8b2 --- /dev/null +++ b/Source/Utility/Log.cpp @@ -0,0 +1,64 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Log.h" +#include +#include +#include + +std::ofstream Logger::WriteFileStream; +std::streambuf *Logger::CerrStream = NULL; +std::streambuf *Logger::CoutStream = NULL; + +bool Logger::StartLogFile(std::string file) +{ + WriteFileStream.open(file.c_str()); + + CerrStream = std::cerr.rdbuf(WriteFileStream.rdbuf()); + CoutStream = std::cout.rdbuf(WriteFileStream.rdbuf()); + + return WriteFileStream.is_open(); +} + +void Logger::CloseLogFile() +{ + if(WriteFileStream.is_open()) + { + WriteFileStream.close(); + + } + + std::cerr.rdbuf(CerrStream); + std::cout.rdbuf(CoutStream); +} + + +void Logger::Write(Zone zone, std::string component, std::string message) +{ + std::string zoneStr; + + switch(zone) + { + case ZONE_INFO: + zoneStr = "INFO"; + break; + case ZONE_DEBUG: + zoneStr = "DEBUG"; + break; + case ZONE_WARNING: + zoneStr = "WARNING"; + break; + case ZONE_ERROR: + zoneStr = "ERROR"; + break; + } + std::time_t rawtime = std::time(NULL); + struct tm* timeinfo = std::localtime(&rawtime); + + static char timeStr[60]; + std::strftime(timeStr, sizeof(timeStr), "%Y-%m-%d %H:%M:%S", timeinfo); + + std::stringstream ss; + ss << "[" << timeStr << "] [" << zoneStr << "] [" << component << "] " << message << std::endl; + std::cout << ss.str(); +} diff --git a/Source/Utility/Log.h b/Source/Utility/Log.h new file mode 100644 index 0000000..22547fe --- /dev/null +++ b/Source/Utility/Log.h @@ -0,0 +1,31 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include +#include +#include +#include + +class Logger +{ +public: + enum Zone + { + ZONE_DEBUG, + ZONE_INFO, + ZONE_WARNING, + ZONE_ERROR + + }; + static bool StartLogFile(std::string file); + static void Write(Zone zone, std::string component, std::string message); + static void CloseLogFile(); +private: + + static std::streambuf *CerrStream; + static std::streambuf *CoutStream; + static std::ofstream WriteFileStream; +}; diff --git a/Source/Utility/Utils.cpp b/Source/Utility/Utils.cpp new file mode 100644 index 0000000..4fba56d --- /dev/null +++ b/Source/Utility/Utils.cpp @@ -0,0 +1,131 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Utils.h" +#include "../Database/Configuration.h" +#include "Log.h" +#include +#include +#include +#include + +Utils::Utils() +{ +} + +Utils::~Utils() +{ +} + + +bool Utils::FindMatchingFile(std::string prefix, std::vector &extensions, std::string &file) +{ + for(unsigned int i = 0; i < extensions.size(); ++i) + { + std::string temp = prefix + "." + extensions[i]; + temp = Configuration::ConvertToAbsolutePath(Configuration::GetAbsolutePath(), temp); + + std::ifstream f(temp.c_str()); + + if (f.good()) + { + file = temp; + return true; + } + } + + return false; +} + + +std::string Utils::Replace( + std::string subject, + const std::string& search, + const std::string& replace) +{ + size_t pos = 0; + while ((pos = subject.find(search, pos)) != std::string::npos) + { + subject.replace(pos, search.length(), replace); + pos += replace.length(); + } + return subject; +} + + +float Utils::ConvertFloat(std::string content) +{ + float retVal = 0; + std::stringstream ss; + ss << content; + ss >> retVal; + + return retVal; +} + +int Utils::ConvertInt(std::string content) +{ + int retVal = 0; + std::stringstream ss; + ss << content; + ss >> retVal; + + return retVal; +} + +void Utils::NormalizeBackSlashes(std::string& content) +{ + std::replace(content.begin(), content.end(), '\\', '/'); +} + +std::string Utils::GetDirectory(std::string filePath) +{ + + NormalizeBackSlashes(filePath); + std::string directory = filePath; + + const size_t last_slash_idx = filePath.rfind('/'); + if (std::string::npos != last_slash_idx) + { + directory = filePath.substr(0, last_slash_idx); + } + + return directory; +} + +std::string Utils::GetParentDirectory(std::string directory) +{ + + NormalizeBackSlashes(directory); + + size_t last_slash_idx = directory.find_last_of('/'); + if(directory.length() - 1 == last_slash_idx) + { + directory = directory.erase(last_slash_idx, directory.length()-1); + last_slash_idx = directory.find_last_of('/'); + } + + if (std::string::npos != last_slash_idx) + { + directory = directory.erase(last_slash_idx, directory.length()); + } + + return directory; +} + + +std::string Utils::GetFileName(std::string filePath) +{ + + NormalizeBackSlashes(filePath); + std::string filename = filePath; + + const size_t last_slash_idx = filePath.rfind('/'); + if (std::string::npos != last_slash_idx) + { + filename = filePath.erase(0, last_slash_idx+1); + } + + return filename; +} + diff --git a/Source/Utility/Utils.h b/Source/Utility/Utils.h new file mode 100644 index 0000000..f503a0d --- /dev/null +++ b/Source/Utility/Utils.h @@ -0,0 +1,26 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include + +class Utils +{ +public: + static std::string Replace(std::string subject, const std::string& search, + const std::string& replace); + + static float ConvertFloat(std::string content); + static int ConvertInt(std::string content); + static void NormalizeBackSlashes(std::string &content); + static std::string GetDirectory(std::string filePath); + static std::string GetParentDirectory(std::string filePath); + static std::string GetFileName(std::string filePath); + static bool FindMatchingFile(std::string prefix, std::vector &extensions, std::string &file); +private: + Utils(); + virtual ~Utils(); +}; + diff --git a/Source/Version.cpp b/Source/Version.cpp new file mode 100644 index 0000000..1c78a8f --- /dev/null +++ b/Source/Version.cpp @@ -0,0 +1,37 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "Version.h" +#include + +#ifndef RETROFE_VERSION_MAJOR +#define RETROFE_VERSION_MAJOR 0 +#endif + +#ifndef RETROFE_VERSION_MINOR +#define RETROFE_VERSION_MINOR 0 +#endif + +#ifndef RETROFE_VERSION_BUILD +#define RETROFE_VERSION_BUILD 0 +#endif + +#ifndef RETROFE_VERSION_PROD +#define RETROFE_VERSION_BETA +#endif + +std::string Version::GetString() +{ + std::stringstream version; + version << RETROFE_VERSION_MAJOR; + version << "."; + version << RETROFE_VERSION_MINOR; + version << "."; + version << RETROFE_VERSION_BUILD; + +#ifdef RETROFE_VERSION_BETA + version << "-beta"; +#endif + + return version.str(); +} diff --git a/Source/Version.h b/Source/Version.h new file mode 100644 index 0000000..f3cb1fc --- /dev/null +++ b/Source/Version.h @@ -0,0 +1,12 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include + +class Version +{ +public: + static std::string GetString(); +}; diff --git a/Source/Video/GStreamerVideo.cpp b/Source/Video/GStreamerVideo.cpp new file mode 100644 index 0000000..25a8c48 --- /dev/null +++ b/Source/Video/GStreamerVideo.cpp @@ -0,0 +1,351 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "GStreamerVideo.h" +#include "../Graphics/ViewInfo.h" +#include "../Graphics/Component/Image.h" +#include "../Database/Configuration.h" +#include "../Utility/Log.h" +#include "../SDL.h" +#include +#include +#include +#include +#include +#include +#include +#include + +bool GStreamerVideo::Initialized = false; + +//todo: this started out as sandbox code. This class needs to be refactored + +// MUST match video size +gboolean GStreamerVideo::BusCallback(GstBus *bus, GstMessage *msg, gpointer data) +{ + // this callback only needs to be defined so we can loop the video once it completes + return TRUE; +} +GStreamerVideo::GStreamerVideo() +: Playbin(NULL) +, VideoBin(NULL) +, VideoSink(NULL) +, VideoConvert(NULL) +, VideoConvertCaps(NULL) +, VideoBus(NULL) +, Texture(NULL) +, Height(0) +, Width(0) +, VideoBuffer(NULL) +, FrameReady(false) +, IsPlaying(false) +, PlayCount(0) +, NumLoops(0) +{ +} +GStreamerVideo::~GStreamerVideo() +{ + Stop(); +} + +void GStreamerVideo::SetNumLoops(int n) +{ + NumLoops = n; +} + +SDL_Texture *GStreamerVideo::GetTexture() const +{ + return Texture; +} + +void GStreamerVideo::ProcessNewBuffer (GstElement *fakesink, GstBuffer *buf, GstPad *new_pad, gpointer userdata) +{ + GStreamerVideo *video = (GStreamerVideo *)userdata; + GstMapInfo map; + SDL_LockMutex(SDL::GetMutex()); + + if (!video->FrameReady && video && video->IsPlaying && gst_buffer_map (buf, &map, GST_MAP_READ)) + { + if(!video->Width || !video->Height) + { + GstCaps *caps = gst_pad_get_current_caps (new_pad); + GstStructure *s = gst_caps_get_structure(caps, 0); + + gst_structure_get_int(s, "width", &video->Width); + gst_structure_get_int(s, "height", &video->Height); + } + + if(video->Height && video->Width) + { + if(!video->VideoBuffer) + { + video->VideoBuffer = new char[map.size]; + } + memcpy(video->VideoBuffer, map.data, map.size); + gst_buffer_unmap(buf, &map); + video->FrameReady = true; + } + } + SDL_UnlockMutex(SDL::GetMutex()); +} + + +bool GStreamerVideo::Initialize() +{ + bool retVal = true; + + std::string path = Configuration::GetAbsolutePath() + "/Core"; + gst_init(NULL, NULL); + GstRegistry *registry = gst_registry_get(); + gst_registry_scan_path(registry, path.c_str()); + + Initialized = true; + + return retVal; +} + +bool GStreamerVideo::DeInitialize() +{ + gst_deinit(); + Initialized = false; + return true; +} + + +bool GStreamerVideo::Stop() +{ + if(!Initialized) + { + return false; + } + + if(VideoSink) + { + g_object_set(G_OBJECT(VideoSink), "signal-handoffs", FALSE, NULL); + } + + if(Playbin) + { + (void)gst_element_set_state(Playbin, GST_STATE_NULL); + } + + FreeElements(); + + IsPlaying = false; + + if(Texture) + { + SDL_DestroyTexture(Texture); + Texture = NULL; + } + IsPlaying = false; + Height = 0; + Width = 0; + FrameReady = false; + + if(VideoBuffer) + { + delete VideoBuffer; + VideoBuffer = NULL; + } + return true; +} + +bool GStreamerVideo::Play(std::string file) +{ + PlayCount = 0; + + if(!Initialized) + { + return false; + } + + CurrentFile = file; + + const gchar *uriFile = gst_filename_to_uri (file.c_str(), NULL); + if(!uriFile) + { + return false; + } + else + { + Configuration::ConvertToAbsolutePath(Configuration::GetAbsolutePath(), file); + file = uriFile; + + // Pipeline = gst_pipeline_new("pipeline"); + Playbin = gst_element_factory_make("playbin", "player"); + VideoBin = gst_bin_new("SinkBin"); + VideoSink = gst_element_factory_make("fakesink", "video_sink"); + VideoConvert = gst_element_factory_make("capsfilter", "video_convert"); + VideoConvertCaps = gst_caps_from_string("video/x-raw,format=(string)YUY2"); + Height = 0; + Width = 0; + if(!Playbin) + { + Logger::Write(Logger::ZONE_DEBUG, "Video", "Could not create playbin"); + FreeElements(); + return false; + } + if(!VideoSink) + { + Logger::Write(Logger::ZONE_DEBUG, "Video", "Could not create video sink"); + FreeElements(); + return false; + } + if(!VideoConvert) + { + Logger::Write(Logger::ZONE_DEBUG, "Video", "Could not create video converter"); + FreeElements(); + return false; + } + if(!VideoConvertCaps) + { + Logger::Write(Logger::ZONE_DEBUG, "Video", "Could not create video caps"); + FreeElements(); + return false; + } + + gst_bin_add_many(GST_BIN(VideoBin), VideoConvert, VideoSink, NULL); + gst_element_link_filtered(VideoConvert, VideoSink, VideoConvertCaps); + GstPad *videoConvertSinkPad = gst_element_get_static_pad(VideoConvert, "sink"); + + if(!videoConvertSinkPad) + { + Logger::Write(Logger::ZONE_DEBUG, "Video", "Could not get video convert sink pad"); + FreeElements(); + return false; + } + + + g_object_set(G_OBJECT(VideoSink), "sync", TRUE, "qos", TRUE, NULL); + + GstPad *videoSinkPad = gst_ghost_pad_new("sink", videoConvertSinkPad); + if(!videoSinkPad) + { + Logger::Write(Logger::ZONE_DEBUG, "Video", "Could not get video bin sink pad"); + FreeElements(); + gst_object_unref(videoConvertSinkPad); + videoConvertSinkPad = NULL; + return false; + } + + gst_element_add_pad(VideoBin, videoSinkPad); + gst_object_unref(videoConvertSinkPad); + videoConvertSinkPad = NULL; + + g_object_set(G_OBJECT(Playbin), "uri", file.c_str(), "video-sink", VideoBin, NULL); + + IsPlaying = true; + + + g_object_set(G_OBJECT(VideoSink), "signal-handoffs", TRUE, NULL); + g_signal_connect(VideoSink, "handoff", G_CALLBACK(ProcessNewBuffer), this); + + VideoBus = gst_pipeline_get_bus(GST_PIPELINE(Playbin)); + gst_bus_add_watch(VideoBus, &BusCallback, this); + + /* Start playing */ + GstStateChangeReturn playState = gst_element_set_state(GST_ELEMENT(Playbin), GST_STATE_PLAYING); + if (playState != GST_STATE_CHANGE_ASYNC) + { + IsPlaying = false; + std::stringstream ss; + ss << "Unable to set the pipeline to the playing state: "; + ss << playState; + Logger::Write(Logger::ZONE_ERROR, "Video", ss.str()); + FreeElements(); + return false; + } + } + + return true; +} + +void GStreamerVideo::FreeElements() +{ + if(VideoBin) + { + gst_object_unref(VideoBin); + VideoBin = NULL; + } + if(VideoSink) + { + gst_object_unref(VideoSink); + VideoSink = NULL; + } + if(VideoConvert) + { + gst_object_unref(VideoConvert); + VideoConvert = NULL; + } + if(VideoConvertCaps) + { + gst_object_unref(VideoConvertCaps); + VideoConvertCaps = NULL; + } + if(Playbin) + { + gst_object_unref(Playbin); + Playbin = NULL; + } + +} + +void GStreamerVideo::Draw() +{ + FrameReady = false; +} + +void GStreamerVideo::Update(float dt) +{ + SDL_LockMutex(SDL::GetMutex()); + if(!Texture && Width != 0 && Height != 0) + { + Texture = SDL_CreateTexture(SDL::GetRenderer(), SDL_PIXELFORMAT_YUY2, + SDL_TEXTUREACCESS_STREAMING, Width, Height); + SDL_SetTextureBlendMode(Texture, SDL_BLENDMODE_BLEND); + } + + if(VideoBuffer && FrameReady && Texture && Width && Height) + { + //todo: change to width of cap + void *pixels; + int pitch; + SDL_LockTexture(Texture, NULL, &pixels, &pitch); + memcpy(pixels, VideoBuffer, Width*Height*2); //todo: magic number + SDL_UnlockTexture(Texture); + } + SDL_UnlockMutex(SDL::GetMutex()); + + + if(VideoBus) + { + GstMessage *msg = gst_bus_pop(VideoBus); + if(msg) + { + if(GST_MESSAGE_TYPE(msg) == GST_MESSAGE_EOS) + { + Logger::Write(Logger::ZONE_ERROR, "Video", "EOS!"); + + PlayCount++; + + //todo: nesting hazard + // if number of loops is 0, set to infinite (todo: this is misleading, rename variable) + if(!NumLoops || NumLoops > PlayCount) + { + gst_element_seek(Playbin, + 1.0, + GST_FORMAT_TIME, + GST_SEEK_FLAG_FLUSH, + GST_SEEK_TYPE_SET, + 0, + GST_SEEK_TYPE_NONE, + GST_CLOCK_TIME_NONE); + } + } + + gst_message_unref(msg); + } + } +} + diff --git a/Source/Video/GStreamerVideo.h b/Source/Video/GStreamerVideo.h new file mode 100644 index 0000000..521e465 --- /dev/null +++ b/Source/Video/GStreamerVideo.h @@ -0,0 +1,50 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include "IVideo.h" + +extern "C" +{ +#include +#include +} + + +class GStreamerVideo : public IVideo +{ +public: + GStreamerVideo(); + ~GStreamerVideo(); + bool Initialize(); + bool Play(std::string file); + bool Stop(); + bool DeInitialize(); + SDL_Texture *GetTexture() const; + void Update(float dt); + void Draw(); + void SetNumLoops(int n); + void FreeElements(); + +private: + static void ProcessNewBuffer (GstElement *fakesink, GstBuffer *buf, GstPad *pad, gpointer data); + static gboolean BusCallback(GstBus *bus, GstMessage *msg, gpointer data); + + GstElement *Playbin; + GstElement *VideoBin; + GstElement *VideoSink; + GstElement *VideoConvert; + GstCaps *VideoConvertCaps; + GstBus *VideoBus; + SDL_Texture* Texture; + gint Height; + gint Width; + char *VideoBuffer; + bool FrameReady; + bool IsPlaying; + static bool Initialized; + int PlayCount; + std::string CurrentFile; + int NumLoops; +}; diff --git a/Source/Video/IVideo.h b/Source/Video/IVideo.h new file mode 100644 index 0000000..4490538 --- /dev/null +++ b/Source/Video/IVideo.h @@ -0,0 +1,20 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +#include +#include + +class IVideo +{ +public: + virtual ~IVideo() {} + virtual bool Initialize() = 0; + virtual bool Play(std::string file) = 0; + virtual bool Stop() = 0; + virtual bool DeInitialize() = 0; + virtual SDL_Texture *GetTexture() const = 0; + virtual void Update(float dt) = 0; + virtual void Draw() = 0; +}; diff --git a/Source/Video/VideoFactory.cpp b/Source/Video/VideoFactory.cpp new file mode 100644 index 0000000..7ae7da3 --- /dev/null +++ b/Source/Video/VideoFactory.cpp @@ -0,0 +1,33 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#include "VideoFactory.h" +#include "IVideo.h" +#include "GStreamerVideo.h" + +bool VideoFactory::Enabled = true; +int VideoFactory::NumLoops = 0; + +IVideo *VideoFactory::CreateVideo() +{ + IVideo *instance = NULL; + + if(Enabled) + { + instance = new GStreamerVideo(); + instance->Initialize(); + ((GStreamerVideo *)(instance))->SetNumLoops(NumLoops); + } + + return instance; +} + +void VideoFactory::SetEnabled(bool enabled) +{ + Enabled = enabled; +} + +void VideoFactory::SetNumLoops(int numLoops) +{ + NumLoops = numLoops; +} diff --git a/Source/Video/VideoFactory.h b/Source/Video/VideoFactory.h new file mode 100644 index 0000000..9ec47bf --- /dev/null +++ b/Source/Video/VideoFactory.h @@ -0,0 +1,18 @@ +/* This file is subject to the terms and conditions defined in + * file 'LICENSE.txt', which is part of this source code package. + */ +#pragma once + +class IVideo; + +class VideoFactory +{ +public: + IVideo *CreateVideo(); + static void SetEnabled(bool enabled); + static void SetNumLoops(int numLoops); + +private: + static bool Enabled; + static int NumLoops; +}; diff --git a/ThirdParty/GStreamer/LICENSE.gstreamer.txt b/ThirdParty/GStreamer/LICENSE.gstreamer.txt new file mode 100644 index 0000000..50fb0f3 --- /dev/null +++ b/ThirdParty/GStreamer/LICENSE.gstreamer.txt @@ -0,0 +1,81 @@ +Installer, default installation: The installer (Microsoft Windows +and MacOSX) and the default installation (GNU/Linux) contain and +install the minimal default installation. At install time or later, +the downloading of optional components is also possible, but read on +for certain legal cautions you might want to take. All downloads are +from the freedesktop.org website, for registered/approved users only. + +Licensing of GStreamer: GStreamer minimal default installation only +contains packages which are licensed under the GNU LGPL license v2.1. +This license gives you the Freedom to use, modify, make copies of the +software either in the original or in a modified form, provided that +the software you redistribute is licensed under the same licensing +terms. This only extends to the software itself and modified versions +of it, but you are free to link the LGPL software as a library used by +other software under whichever license. In other words, it is a weak +copyleft license. + +Therefore, it is possible to use GStreamer to build applications that +are then distributed under a different license, including a +proprietary one, provided that reverse engineering is not prohibited +for debugging modifications purposes. Only the pieces of GStreamer that +are under the LGPL need to be kept under the LGPL, and the +corresponding source code must be distributed along with the +application (or an irrevocable offer to do so for at least three years +from distribution). Please consult section 6 of the LGPL for further +details as to what the corresponding source code must contain. + +Some portions of the minimal default installation may be under +different licenses, which are both more liberal than the LGPL (they +are less strict conditions for granting the license) and compatible +with the LGPL. This is advised locally. + +Optional packages: There are two types of optional packages, which are +under a different license or have other issues concerning +patentability (or both). + +GPL code: Part of the optional packages are under the GNU GPL v2 or +v3. This means that you cannot link the GPL software in a program +unless the same program is also under the GPL, but you are invited to +seek competent advice on how this works in your precise case and +design choices. GPL is called “strong copyleft†because the +condition to distributed under the same license has the largest +possible scope and extends to all derivative works. + +Patents: Certain software, and in particular software that implements +multimedia standard formats such as Mp3, MPEG 2 video and audio, +h.264, MPEG 4 audio and video, AC3, etc, can have patent issues. In +certain countries patents are granted on software and even +software-only solution are by and large considered patentable and are +patented (such as in the United States). In certain others, patents +on pure software solutions are formally prohibited, but granted (this +is the case of Europe), and in others again are neither allowed nor +granted. + +It is up to you to make sure that in the countries where GStreamer is +used, products are made using it and product are distributed, a +license from the applicable patent holders is required or not. +Receiving GStreamer – or links to other downloadable software – +does not provide any license expressed or implied over these patents, +except in very limited conditions where the license so provides. No +representation is made. + +In certain cases, the optional packages are distributed only as source +code. It is up the receiver to make sure that in the applicable +circumstances compiling the same code for a given platform or +distributing the object code is an act that infringes one or more +patents. + +Software is as-is: All software and GStreamer is provided as-is, +without any warranty whatsoever. The individual licenses have +particular language disclaiming liability: we invite you to read all +of them. Should you need a warranty on the fact that software works as +intended or have any kind of indemnification, you have the option to +subscribe a software maintenance agreement with a company or entity +that is in that business. Fluendo and Collabora, as well as some other +companies, provide software maintenance agreements under certain +conditions, you are invited to contact them in order to receive +further details and discuss of the commercial terms. + +We use cookies and HTTP logs for statistical analysis and on an +aggregate basis only. diff --git a/ThirdParty/SDL2-2.0.3/BUGS.txt b/ThirdParty/SDL2-2.0.3/BUGS.txt new file mode 100644 index 0000000..7ef5538 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/BUGS.txt @@ -0,0 +1,16 @@ + +Bugs are now managed in the SDL bug tracker, here: + + http://bugzilla.libsdl.org/ + +You may report bugs there, and search to see if a given issue has already + been reported, discussed, and maybe even fixed. + + +You may also find help on the SDL mailing list. Subscription information: + + http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org + +Bug reports are welcome here, but we really appreciate if you use Bugzilla, as + bugs discussed on the mailing list may be forgotten or missed. + diff --git a/ThirdParty/SDL2-2.0.3/COPYING.txt b/ThirdParty/SDL2-2.0.3/COPYING.txt new file mode 100644 index 0000000..e0d7cc4 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/COPYING.txt @@ -0,0 +1,20 @@ + +Simple DirectMedia Layer +Copyright (C) 1997-2014 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + diff --git a/ThirdParty/SDL2-2.0.3/LICENSE.SDL2.txt b/ThirdParty/SDL2-2.0.3/LICENSE.SDL2.txt new file mode 100644 index 0000000..facd634 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/LICENSE.SDL2.txt @@ -0,0 +1,19 @@ + +Simple DirectMedia Layer +Copyright (C) 1997-2013 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. diff --git a/ThirdParty/SDL2-2.0.3/README-SDL.txt b/ThirdParty/SDL2-2.0.3/README-SDL.txt new file mode 100644 index 0000000..0630395 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/README-SDL.txt @@ -0,0 +1,13 @@ + +Please distribute this file with the SDL runtime environment: + +The Simple DirectMedia Layer (SDL for short) is a cross-platform library +designed to make it easy to write multi-media software, such as games and +emulators. + +The Simple DirectMedia Layer library source code is available from: +http://www.libsdl.org/ + +This library is distributed under the terms of the zlib license: +http://www.zlib.net/zlib_license.html + diff --git a/ThirdParty/SDL2-2.0.3/README.txt b/ThirdParty/SDL2-2.0.3/README.txt new file mode 100644 index 0000000..735637b --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/README.txt @@ -0,0 +1,42 @@ + + Simple DirectMedia Layer + + (SDL) + + Version 2.0 + +--- +http://www.libsdl.org/ + +Simple DirectMedia Layer is a cross-platform development library designed +to provide low level access to audio, keyboard, mouse, joystick, and graphics +hardware via OpenGL and Direct3D. It is used by video playback software, +emulators, and popular games including Valve's award winning catalog +and many Humble Bundle games. + +SDL officially supports Windows, Mac OS X, Linux, iOS, and Android. +Support for other platforms may be found in the source code. + +SDL is written in C, works natively with C++, and there are bindings +available for several other languages, including C# and Python. + +This library is distributed under the zlib license, which can be found +in the file "COPYING.txt". + +The best way to learn how to use SDL is to check out the header files in +the "include" subdirectory and the programs in the "test" subdirectory. +The header files and test programs are well commented and always up to date. +More documentation and FAQs are available online at: + http://wiki.libsdl.org/ + +If you need help with the library, or just want to discuss SDL related +issues, you can join the developers mailing list: + http://www.libsdl.org/mailing-list.php + +If you want to report bugs or contribute patches, please submit them to +bugzilla: + http://bugzilla.libsdl.org/ + +Enjoy! + Sam Lantinga (slouken@libsdl.org) + diff --git a/ThirdParty/SDL2-2.0.3/WhatsNew.txt b/ThirdParty/SDL2-2.0.3/WhatsNew.txt new file mode 100644 index 0000000..bcbdcd1 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/WhatsNew.txt @@ -0,0 +1,108 @@ + +This is a list of major changes in SDL's version history. + +--------------------------------------------------------------------------- +2.0.3: +--------------------------------------------------------------------------- + +Mac OS X: +* Fixed creating an OpenGL context by default on Mac OS X 10.6 + + +--------------------------------------------------------------------------- +2.0.2: +--------------------------------------------------------------------------- +General: +* Added SDL_GL_ResetAttributes() to reset OpenGL attributes to default values +* Added an API to load a database of game controller mappings from a file: + SDL_GameControllerAddMappingsFromFile(), SDL_GameControllerAddMappingsFromRW() +* Added game controller mappings for the PS4 and OUYA controllers +* Added SDL_GetDefaultAssertionHandler() and SDL_GetAssertionHandler() +* Added SDL_DetachThread() +* Added SDL_HasAVX() to determine if the CPU has AVX features +* Added SDL_vsscanf(), SDL_acos(), and SDL_asin() to the stdlib routines +* EGL can now create/manage OpenGL and OpenGL ES 1.x/2.x contexts, and share + them using SDL_GL_SHARE_WITH_CURRENT_CONTEXT +* Added a field "clicks" to the mouse button event which records whether the event is a single click, double click, etc. +* The screensaver is now disabled by default, and there is a hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER that can change that behavior. +* Added a hint SDL_HINT_MOUSE_RELATIVE_MODE_WARP to specify whether mouse relative mode should be emulated using mouse warping. +* testgl2 does not need to link with libGL anymore +* Added testgles2 test program to demonstrate working with OpenGL ES 2.0 +* Added controllermap test program to visually map a game controller + +Windows: +* Support for OpenGL ES 2.x contexts using either WGL or EGL (natively via + the driver or emulated through ANGLE) +* Added a hint SDL_HINT_VIDEO_WIN_D3DCOMPILER to specify which D3D shader compiler to use for OpenGL ES 2 support through ANGLE +* Added a hint SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT that is useful when creating multiple windows that should share the same OpenGL context. +* Added an event SDL_RENDER_TARGETS_RESET that is sent when D3D9 render targets are reset after the device has been restored. + +Mac OS X: +* Added a hint SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK to control whether Ctrl+click should be treated as a right click on Mac OS X. This is off by default. + +Linux: +* Fixed fullscreen and focused behavior when receiving NotifyGrab events +* Added experimental Wayland and Mir support, disabled by default + +Android: +* Joystick support (minimum SDK version required to build SDL is now 12, + the required runtime version remains at 10, but on such devices joystick + support won't be available). +* Hotplugging support for joysticks +* Added a hint SDL_HINT_ACCELEROMETER_AS_JOYSTICK to control whether the accelerometer should be listed as a 3 axis joystick, which it will by default. + + +--------------------------------------------------------------------------- +2.0.1: +--------------------------------------------------------------------------- + +General: +* Added an API to get common filesystem paths in SDL_filesystem.h: + SDL_GetBasePath(), SDL_GetPrefPath() +* Added an API to do optimized YV12 and IYUV texture updates: + SDL_UpdateYUVTexture() +* Added an API to get the amount of RAM on the system: + SDL_GetSystemRAM() +* Added a macro to perform timestamp comparisons with SDL_GetTicks(): + SDL_TICKS_PASSED() +* Dramatically improved OpenGL ES 2.0 rendering performance +* Added OpenGL attribute SDL_GL_FRAMEBUFFER_SRGB_CAPABLE + +Windows: +* Created a static library configuration for the Visual Studio 2010 project +* Added a hint to create the Direct3D device with support for multi-threading: + SDL_HINT_RENDER_DIRECT3D_THREADSAFE +* Added a function to get the D3D9 adapter index for a display: + SDL_Direct3D9GetAdapterIndex() +* Added a function to get the D3D9 device for a D3D9 renderer: + SDL_RenderGetD3D9Device() +* Fixed building SDL with the mingw32 toolchain (mingw-w64 is preferred) +* Fixed crash when using two XInput controllers at the same time +* Fixed detecting a mixture of XInput and DirectInput controllers +* Fixed clearing a D3D render target larger than the window +* Improved support for format specifiers in SDL_snprintf() + +Mac OS X: +* Added support for retina displays: + Create your window with the SDL_WINDOW_ALLOW_HIGHDPI flag, and then use SDL_GL_GetDrawableSize() to find the actual drawable size. You are responsible for scaling mouse and drawing coordinates appropriately. +* Fixed mouse warping in fullscreen mode +* Right mouse click is emulated by holding the Ctrl key while left clicking + +Linux: +* Fixed float audio support with the PulseAudio driver +* Fixed missing line endpoints in the OpenGL renderer on some drivers +* X11 symbols are no longer defined to avoid collisions when linking statically + +iOS: +* Fixed status bar visibility on iOS 7 +* Flipped the accelerometer Y axis to match expected values + +Android: +IMPORTANT: You MUST get the updated SDLActivity.java to match C code +* Moved EGL initialization to native code +* Fixed the accelerometer axis rotation relative to the device rotation +* Fixed race conditions when handling the EGL context on pause/resume +* Touch devices are available for enumeration immediately after init + +Raspberry Pi: +* Added support for the Raspberry Pi, see README-raspberrypi.txt for details diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL.h new file mode 100644 index 0000000..a907709 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL.h @@ -0,0 +1,163 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL.h + * + * Main include header for the SDL library + */ + +/** + * \mainpage Simple DirectMedia Layer (SDL) + * + * http://www.libsdl.org/ + * + * \section intro_sec Introduction + * + * Simple DirectMedia Layer is a cross-platform development library designed + * to provide low level access to audio, keyboard, mouse, joystick, and + * graphics hardware via OpenGL and Direct3D. It is used by video playback + * software, emulators, and popular games including Valve's award winning + * catalog and many Humble Bundle games. + * + * SDL officially supports Windows, Mac OS X, Linux, iOS, and Android. + * Support for other platforms may be found in the source code. + * + * SDL is written in C, works natively with C++, and there are bindings + * available for several other languages, including C# and Python. + * + * This library is distributed under the zlib license, which can be found + * in the file "COPYING.txt". + * + * The best way to learn how to use SDL is to check out the header files in + * the "include" subdirectory and the programs in the "test" subdirectory. + * The header files and test programs are well commented and always up to date. + * More documentation and FAQs are available online at: + * http://wiki.libsdl.org/ + * + * If you need help with the library, or just want to discuss SDL related + * issues, you can join the developers mailing list: + * http://www.libsdl.org/mailing-list.php + * + * Enjoy! + * Sam Lantinga (slouken@libsdl.org) + */ + +#ifndef _SDL_H +#define _SDL_H + +#include "SDL_main.h" +#include "SDL_stdinc.h" +#include "SDL_assert.h" +#include "SDL_atomic.h" +#include "SDL_audio.h" +#include "SDL_clipboard.h" +#include "SDL_cpuinfo.h" +#include "SDL_endian.h" +#include "SDL_error.h" +#include "SDL_events.h" +#include "SDL_filesystem.h" +#include "SDL_joystick.h" +#include "SDL_gamecontroller.h" +#include "SDL_haptic.h" +#include "SDL_hints.h" +#include "SDL_loadso.h" +#include "SDL_log.h" +#include "SDL_messagebox.h" +#include "SDL_mutex.h" +#include "SDL_power.h" +#include "SDL_render.h" +#include "SDL_rwops.h" +#include "SDL_system.h" +#include "SDL_thread.h" +#include "SDL_timer.h" +#include "SDL_version.h" +#include "SDL_video.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* As of version 0.5, SDL is loaded dynamically into the application */ + +/** + * \name SDL_INIT_* + * + * These are the flags which may be passed to SDL_Init(). You should + * specify the subsystems which you will be using in your application. + */ +/* @{ */ +#define SDL_INIT_TIMER 0x00000001 +#define SDL_INIT_AUDIO 0x00000010 +#define SDL_INIT_VIDEO 0x00000020 /**< SDL_INIT_VIDEO implies SDL_INIT_EVENTS */ +#define SDL_INIT_JOYSTICK 0x00000200 /**< SDL_INIT_JOYSTICK implies SDL_INIT_EVENTS */ +#define SDL_INIT_HAPTIC 0x00001000 +#define SDL_INIT_GAMECONTROLLER 0x00002000 /**< SDL_INIT_GAMECONTROLLER implies SDL_INIT_JOYSTICK */ +#define SDL_INIT_EVENTS 0x00004000 +#define SDL_INIT_NOPARACHUTE 0x00100000 /**< Don't catch fatal signals */ +#define SDL_INIT_EVERYTHING ( \ + SDL_INIT_TIMER | SDL_INIT_AUDIO | SDL_INIT_VIDEO | SDL_INIT_EVENTS | \ + SDL_INIT_JOYSTICK | SDL_INIT_HAPTIC | SDL_INIT_GAMECONTROLLER \ + ) +/* @} */ + +/** + * This function initializes the subsystems specified by \c flags + * Unless the ::SDL_INIT_NOPARACHUTE flag is set, it will install cleanup + * signal handlers for some commonly ignored fatal signals (like SIGSEGV). + */ +extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags); + +/** + * This function initializes specific SDL subsystems + */ +extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags); + +/** + * This function cleans up specific SDL subsystems + */ +extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags); + +/** + * This function returns a mask of the specified subsystems which have + * previously been initialized. + * + * If \c flags is 0, it returns a mask of all initialized subsystems. + */ +extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags); + +/** + * This function cleans up all initialized subsystems. You should + * call it upon all exit conditions. + */ +extern DECLSPEC void SDLCALL SDL_Quit(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_H */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_assert.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_assert.h new file mode 100644 index 0000000..42348f7 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_assert.h @@ -0,0 +1,284 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef _SDL_assert_h +#define _SDL_assert_h + +#include "SDL_config.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef SDL_ASSERT_LEVEL +#ifdef SDL_DEFAULT_ASSERT_LEVEL +#define SDL_ASSERT_LEVEL SDL_DEFAULT_ASSERT_LEVEL +#elif defined(_DEBUG) || defined(DEBUG) || \ + (defined(__GNUC__) && !defined(__OPTIMIZE__)) +#define SDL_ASSERT_LEVEL 2 +#else +#define SDL_ASSERT_LEVEL 1 +#endif +#endif /* SDL_ASSERT_LEVEL */ + +/* +These are macros and not first class functions so that the debugger breaks +on the assertion line and not in some random guts of SDL, and so each +assert can have unique static variables associated with it. +*/ + +#if defined(_MSC_VER) +/* Don't include intrin.h here because it contains C++ code */ + extern void __cdecl __debugbreak(void); + #define SDL_TriggerBreakpoint() __debugbreak() +#elif (defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" ) +#elif defined(HAVE_SIGNAL_H) + #include + #define SDL_TriggerBreakpoint() raise(SIGTRAP) +#else + /* How do we trigger breakpoints on this platform? */ + #define SDL_TriggerBreakpoint() +#endif + +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 supports __func__ as a standard. */ +# define SDL_FUNCTION __func__ +#elif ((__GNUC__ >= 2) || defined(_MSC_VER)) +# define SDL_FUNCTION __FUNCTION__ +#else +# define SDL_FUNCTION "???" +#endif +#define SDL_FILE __FILE__ +#define SDL_LINE __LINE__ + +/* +sizeof (x) makes the compiler still parse the expression even without +assertions enabled, so the code is always checked at compile time, but +doesn't actually generate code for it, so there are no side effects or +expensive checks at run time, just the constant size of what x WOULD be, +which presumably gets optimized out as unused. +This also solves the problem of... + + int somevalue = blah(); + SDL_assert(somevalue == 1); + +...which would cause compiles to complain that somevalue is unused if we +disable assertions. +*/ + +#ifdef _MSC_VER /* stupid /W4 warnings. */ +#define SDL_NULL_WHILE_LOOP_CONDITION (-1 == __LINE__) +#else +#define SDL_NULL_WHILE_LOOP_CONDITION (0) +#endif + +#define SDL_disabled_assert(condition) \ + do { (void) sizeof ((condition)); } while (SDL_NULL_WHILE_LOOP_CONDITION) + +typedef enum +{ + SDL_ASSERTION_RETRY, /**< Retry the assert immediately. */ + SDL_ASSERTION_BREAK, /**< Make the debugger trigger a breakpoint. */ + SDL_ASSERTION_ABORT, /**< Terminate the program. */ + SDL_ASSERTION_IGNORE, /**< Ignore the assert. */ + SDL_ASSERTION_ALWAYS_IGNORE /**< Ignore the assert from now on. */ +} SDL_assert_state; + +typedef struct SDL_assert_data +{ + int always_ignore; + unsigned int trigger_count; + const char *condition; + const char *filename; + int linenum; + const char *function; + const struct SDL_assert_data *next; +} SDL_assert_data; + +#if (SDL_ASSERT_LEVEL > 0) + +/* Never call this directly. Use the SDL_assert* macros. */ +extern DECLSPEC SDL_assert_state SDLCALL SDL_ReportAssertion(SDL_assert_data *, + const char *, + const char *, int) +#if defined(__clang__) +#if __has_feature(attribute_analyzer_noreturn) +/* this tells Clang's static analysis that we're a custom assert function, + and that the analyzer should assume the condition was always true past this + SDL_assert test. */ + __attribute__((analyzer_noreturn)) +#endif +#endif +; + +/* the do {} while(0) avoids dangling else problems: + if (x) SDL_assert(y); else blah(); + ... without the do/while, the "else" could attach to this macro's "if". + We try to handle just the minimum we need here in a macro...the loop, + the static vars, and break points. The heavy lifting is handled in + SDL_ReportAssertion(), in SDL_assert.c. +*/ +#define SDL_enabled_assert(condition) \ + do { \ + while ( !(condition) ) { \ + static struct SDL_assert_data assert_data = { \ + 0, 0, #condition, 0, 0, 0, 0 \ + }; \ + const SDL_assert_state state = SDL_ReportAssertion(&assert_data, \ + SDL_FUNCTION, \ + SDL_FILE, \ + SDL_LINE); \ + if (state == SDL_ASSERTION_RETRY) { \ + continue; /* go again. */ \ + } else if (state == SDL_ASSERTION_BREAK) { \ + SDL_TriggerBreakpoint(); \ + } \ + break; /* not retrying. */ \ + } \ + } while (SDL_NULL_WHILE_LOOP_CONDITION) + +#endif /* enabled assertions support code */ + +/* Enable various levels of assertions. */ +#if SDL_ASSERT_LEVEL == 0 /* assertions disabled */ +# define SDL_assert(condition) SDL_disabled_assert(condition) +# define SDL_assert_release(condition) SDL_disabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 1 /* release settings. */ +# define SDL_assert(condition) SDL_disabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 2 /* normal settings. */ +# define SDL_assert(condition) SDL_enabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 3 /* paranoid settings. */ +# define SDL_assert(condition) SDL_enabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_enabled_assert(condition) +#else +# error Unknown assertion level. +#endif + +/* this assertion is never disabled at any level. */ +#define SDL_assert_always(condition) SDL_enabled_assert(condition) + + +typedef SDL_assert_state (SDLCALL *SDL_AssertionHandler)( + const SDL_assert_data* data, void* userdata); + +/** + * \brief Set an application-defined assertion handler. + * + * This allows an app to show its own assertion UI and/or force the + * response to an assertion failure. If the app doesn't provide this, SDL + * will try to do the right thing, popping up a system-specific GUI dialog, + * and probably minimizing any fullscreen windows. + * + * This callback may fire from any thread, but it runs wrapped in a mutex, so + * it will only fire from one thread at a time. + * + * Setting the callback to NULL restores SDL's original internal handler. + * + * This callback is NOT reset to SDL's internal handler upon SDL_Quit()! + * + * \return SDL_assert_state value of how to handle the assertion failure. + * + * \param handler Callback function, called when an assertion fails. + * \param userdata A pointer passed to the callback as-is. + */ +extern DECLSPEC void SDLCALL SDL_SetAssertionHandler( + SDL_AssertionHandler handler, + void *userdata); + +/** + * \brief Get the default assertion handler. + * + * This returns the function pointer that is called by default when an + * assertion is triggered. This is an internal function provided by SDL, + * that is used for assertions when SDL_SetAssertionHandler() hasn't been + * used to provide a different function. + * + * \return The default SDL_AssertionHandler that is called when an assert triggers. + */ +extern DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetDefaultAssertionHandler(void); + +/** + * \brief Get the current assertion handler. + * + * This returns the function pointer that is called when an assertion is + * triggered. This is either the value last passed to + * SDL_SetAssertionHandler(), or if no application-specified function is + * set, is equivalent to calling SDL_GetDefaultAssertionHandler(). + * + * \param puserdata Pointer to a void*, which will store the "userdata" + * pointer that was passed to SDL_SetAssertionHandler(). + * This value will always be NULL for the default handler. + * If you don't care about this data, it is safe to pass + * a NULL pointer to this function to ignore it. + * \return The SDL_AssertionHandler that is called when an assert triggers. + */ +extern DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetAssertionHandler(void **puserdata); + +/** + * \brief Get a list of all assertion failures. + * + * Get all assertions triggered since last call to SDL_ResetAssertionReport(), + * or the start of the program. + * + * The proper way to examine this data looks something like this: + * + * + * const SDL_assert_data *item = SDL_GetAssertionReport(); + * while (item) { + * printf("'%s', %s (%s:%d), triggered %u times, always ignore: %s.\n", + * item->condition, item->function, item->filename, + * item->linenum, item->trigger_count, + * item->always_ignore ? "yes" : "no"); + * item = item->next; + * } + * + * + * \return List of all assertions. + * \sa SDL_ResetAssertionReport + */ +extern DECLSPEC const SDL_assert_data * SDLCALL SDL_GetAssertionReport(void); + +/** + * \brief Reset the list of all assertion failures. + * + * Reset list of all assertions triggered. + * + * \sa SDL_GetAssertionReport + */ +extern DECLSPEC void SDLCALL SDL_ResetAssertionReport(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_assert_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_atomic.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_atomic.h new file mode 100644 index 0000000..bb3a9b6 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_atomic.h @@ -0,0 +1,260 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_atomic.h + * + * Atomic operations. + * + * IMPORTANT: + * If you are not an expert in concurrent lockless programming, you should + * only be using the atomic lock and reference counting functions in this + * file. In all other cases you should be protecting your data structures + * with full mutexes. + * + * The list of "safe" functions to use are: + * SDL_AtomicLock() + * SDL_AtomicUnlock() + * SDL_AtomicIncRef() + * SDL_AtomicDecRef() + * + * Seriously, here be dragons! + * ^^^^^^^^^^^^^^^^^^^^^^^^^^^ + * + * You can find out a little more about lockless programming and the + * subtle issues that can arise here: + * http://msdn.microsoft.com/en-us/library/ee418650%28v=vs.85%29.aspx + * + * There's also lots of good information here: + * http://www.1024cores.net/home/lock-free-algorithms + * http://preshing.com/ + * + * These operations may or may not actually be implemented using + * processor specific atomic operations. When possible they are + * implemented as true processor specific atomic operations. When that + * is not possible the are implemented using locks that *do* use the + * available atomic operations. + * + * All of the atomic operations that modify memory are full memory barriers. + */ + +#ifndef _SDL_atomic_h_ +#define _SDL_atomic_h_ + +#include "SDL_stdinc.h" +#include "SDL_platform.h" + +#include "begin_code.h" + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \name SDL AtomicLock + * + * The atomic locks are efficient spinlocks using CPU instructions, + * but are vulnerable to starvation and can spin forever if a thread + * holding a lock has been terminated. For this reason you should + * minimize the code executed inside an atomic lock and never do + * expensive things like API or system calls while holding them. + * + * The atomic locks are not safe to lock recursively. + * + * Porting Note: + * The spin lock functions and type are required and can not be + * emulated because they are used in the atomic emulation code. + */ +/* @{ */ + +typedef int SDL_SpinLock; + +/** + * \brief Try to lock a spin lock by setting it to a non-zero value. + * + * \param lock Points to the lock. + * + * \return SDL_TRUE if the lock succeeded, SDL_FALSE if the lock is already held. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_AtomicTryLock(SDL_SpinLock *lock); + +/** + * \brief Lock a spin lock by setting it to a non-zero value. + * + * \param lock Points to the lock. + */ +extern DECLSPEC void SDLCALL SDL_AtomicLock(SDL_SpinLock *lock); + +/** + * \brief Unlock a spin lock by setting it to 0. Always returns immediately + * + * \param lock Points to the lock. + */ +extern DECLSPEC void SDLCALL SDL_AtomicUnlock(SDL_SpinLock *lock); + +/* @} *//* SDL AtomicLock */ + + +/** + * The compiler barrier prevents the compiler from reordering + * reads and writes to globally visible variables across the call. + */ +#if defined(_MSC_VER) && (_MSC_VER > 1200) +void _ReadWriteBarrier(void); +#pragma intrinsic(_ReadWriteBarrier) +#define SDL_CompilerBarrier() _ReadWriteBarrier() +#elif defined(__GNUC__) +#define SDL_CompilerBarrier() __asm__ __volatile__ ("" : : : "memory") +#else +#define SDL_CompilerBarrier() \ +{ SDL_SpinLock _tmp = 0; SDL_AtomicLock(&_tmp); SDL_AtomicUnlock(&_tmp); } +#endif + +/** + * Memory barriers are designed to prevent reads and writes from being + * reordered by the compiler and being seen out of order on multi-core CPUs. + * + * A typical pattern would be for thread A to write some data and a flag, + * and for thread B to read the flag and get the data. In this case you + * would insert a release barrier between writing the data and the flag, + * guaranteeing that the data write completes no later than the flag is + * written, and you would insert an acquire barrier between reading the + * flag and reading the data, to ensure that all the reads associated + * with the flag have completed. + * + * In this pattern you should always see a release barrier paired with + * an acquire barrier and you should gate the data reads/writes with a + * single flag variable. + * + * For more information on these semantics, take a look at the blog post: + * http://preshing.com/20120913/acquire-and-release-semantics + */ +#if defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__)) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("lwsync" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("lwsync" : : : "memory") +#elif defined(__GNUC__) && defined(__arm__) +#if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7EM__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory") +#elif defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6T2__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) +#ifdef __thumb__ +/* The mcr instruction isn't available in thumb mode, use real functions */ +extern DECLSPEC void SDLCALL SDL_MemoryBarrierRelease(); +extern DECLSPEC void SDLCALL SDL_MemoryBarrierAcquire(); +#else +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory") +#endif /* __thumb__ */ +#else +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("" : : : "memory") +#endif /* __GNUC__ && __arm__ */ +#else +/* This is correct for the x86 and x64 CPUs, and we'll expand this over time. */ +#define SDL_MemoryBarrierRelease() SDL_CompilerBarrier() +#define SDL_MemoryBarrierAcquire() SDL_CompilerBarrier() +#endif + +/** + * \brief A type representing an atomic integer value. It is a struct + * so people don't accidentally use numeric operations on it. + */ +typedef struct { int value; } SDL_atomic_t; + +/** + * \brief Set an atomic variable to a new value if it is currently an old value. + * + * \return SDL_TRUE if the atomic variable was set, SDL_FALSE otherwise. + * + * \note If you don't know what this function is for, you shouldn't use it! +*/ +extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCAS(SDL_atomic_t *a, int oldval, int newval); + +/** + * \brief Set an atomic variable to a value. + * + * \return The previous value of the atomic variable. + */ +extern DECLSPEC int SDLCALL SDL_AtomicSet(SDL_atomic_t *a, int v); + +/** + * \brief Get the value of an atomic variable + */ +extern DECLSPEC int SDLCALL SDL_AtomicGet(SDL_atomic_t *a); + +/** + * \brief Add to an atomic variable. + * + * \return The previous value of the atomic variable. + * + * \note This same style can be used for any number operation + */ +extern DECLSPEC int SDLCALL SDL_AtomicAdd(SDL_atomic_t *a, int v); + +/** + * \brief Increment an atomic variable used as a reference count. + */ +#ifndef SDL_AtomicIncRef +#define SDL_AtomicIncRef(a) SDL_AtomicAdd(a, 1) +#endif + +/** + * \brief Decrement an atomic variable used as a reference count. + * + * \return SDL_TRUE if the variable reached zero after decrementing, + * SDL_FALSE otherwise + */ +#ifndef SDL_AtomicDecRef +#define SDL_AtomicDecRef(a) (SDL_AtomicAdd(a, -1) == 1) +#endif + +/** + * \brief Set a pointer to a new value if it is currently an old value. + * + * \return SDL_TRUE if the pointer was set, SDL_FALSE otherwise. + * + * \note If you don't know what this function is for, you shouldn't use it! +*/ +extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCASPtr(void **a, void *oldval, void *newval); + +/** + * \brief Set a pointer to a value atomically. + * + * \return The previous value of the pointer. + */ +extern DECLSPEC void* SDLCALL SDL_AtomicSetPtr(void **a, void* v); + +/** + * \brief Get the value of a pointer atomically. + */ +extern DECLSPEC void* SDLCALL SDL_AtomicGetPtr(void **a); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif + +#include "close_code.h" + +#endif /* _SDL_atomic_h_ */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_audio.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_audio.h new file mode 100644 index 0000000..4c987d5 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_audio.h @@ -0,0 +1,506 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_audio.h + * + * Access to the raw audio mixing buffer for the SDL library. + */ + +#ifndef _SDL_audio_h +#define _SDL_audio_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" +#include "SDL_endian.h" +#include "SDL_mutex.h" +#include "SDL_thread.h" +#include "SDL_rwops.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief Audio format flags. + * + * These are what the 16 bits in SDL_AudioFormat currently mean... + * (Unspecified bits are always zero). + * + * \verbatim + ++-----------------------sample is signed if set + || + || ++-----------sample is bigendian if set + || || + || || ++---sample is float if set + || || || + || || || +---sample bit size---+ + || || || | | + 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 + \endverbatim + * + * There are macros in SDL 2.0 and later to query these bits. + */ +typedef Uint16 SDL_AudioFormat; + +/** + * \name Audio flags + */ +/* @{ */ + +#define SDL_AUDIO_MASK_BITSIZE (0xFF) +#define SDL_AUDIO_MASK_DATATYPE (1<<8) +#define SDL_AUDIO_MASK_ENDIAN (1<<12) +#define SDL_AUDIO_MASK_SIGNED (1<<15) +#define SDL_AUDIO_BITSIZE(x) (x & SDL_AUDIO_MASK_BITSIZE) +#define SDL_AUDIO_ISFLOAT(x) (x & SDL_AUDIO_MASK_DATATYPE) +#define SDL_AUDIO_ISBIGENDIAN(x) (x & SDL_AUDIO_MASK_ENDIAN) +#define SDL_AUDIO_ISSIGNED(x) (x & SDL_AUDIO_MASK_SIGNED) +#define SDL_AUDIO_ISINT(x) (!SDL_AUDIO_ISFLOAT(x)) +#define SDL_AUDIO_ISLITTLEENDIAN(x) (!SDL_AUDIO_ISBIGENDIAN(x)) +#define SDL_AUDIO_ISUNSIGNED(x) (!SDL_AUDIO_ISSIGNED(x)) + +/** + * \name Audio format flags + * + * Defaults to LSB byte order. + */ +/* @{ */ +#define AUDIO_U8 0x0008 /**< Unsigned 8-bit samples */ +#define AUDIO_S8 0x8008 /**< Signed 8-bit samples */ +#define AUDIO_U16LSB 0x0010 /**< Unsigned 16-bit samples */ +#define AUDIO_S16LSB 0x8010 /**< Signed 16-bit samples */ +#define AUDIO_U16MSB 0x1010 /**< As above, but big-endian byte order */ +#define AUDIO_S16MSB 0x9010 /**< As above, but big-endian byte order */ +#define AUDIO_U16 AUDIO_U16LSB +#define AUDIO_S16 AUDIO_S16LSB +/* @} */ + +/** + * \name int32 support + */ +/* @{ */ +#define AUDIO_S32LSB 0x8020 /**< 32-bit integer samples */ +#define AUDIO_S32MSB 0x9020 /**< As above, but big-endian byte order */ +#define AUDIO_S32 AUDIO_S32LSB +/* @} */ + +/** + * \name float32 support + */ +/* @{ */ +#define AUDIO_F32LSB 0x8120 /**< 32-bit floating point samples */ +#define AUDIO_F32MSB 0x9120 /**< As above, but big-endian byte order */ +#define AUDIO_F32 AUDIO_F32LSB +/* @} */ + +/** + * \name Native audio byte ordering + */ +/* @{ */ +#if SDL_BYTEORDER == SDL_LIL_ENDIAN +#define AUDIO_U16SYS AUDIO_U16LSB +#define AUDIO_S16SYS AUDIO_S16LSB +#define AUDIO_S32SYS AUDIO_S32LSB +#define AUDIO_F32SYS AUDIO_F32LSB +#else +#define AUDIO_U16SYS AUDIO_U16MSB +#define AUDIO_S16SYS AUDIO_S16MSB +#define AUDIO_S32SYS AUDIO_S32MSB +#define AUDIO_F32SYS AUDIO_F32MSB +#endif +/* @} */ + +/** + * \name Allow change flags + * + * Which audio format changes are allowed when opening a device. + */ +/* @{ */ +#define SDL_AUDIO_ALLOW_FREQUENCY_CHANGE 0x00000001 +#define SDL_AUDIO_ALLOW_FORMAT_CHANGE 0x00000002 +#define SDL_AUDIO_ALLOW_CHANNELS_CHANGE 0x00000004 +#define SDL_AUDIO_ALLOW_ANY_CHANGE (SDL_AUDIO_ALLOW_FREQUENCY_CHANGE|SDL_AUDIO_ALLOW_FORMAT_CHANGE|SDL_AUDIO_ALLOW_CHANNELS_CHANGE) +/* @} */ + +/* @} *//* Audio flags */ + +/** + * This function is called when the audio device needs more data. + * + * \param userdata An application-specific parameter saved in + * the SDL_AudioSpec structure + * \param stream A pointer to the audio data buffer. + * \param len The length of that buffer in bytes. + * + * Once the callback returns, the buffer will no longer be valid. + * Stereo samples are stored in a LRLRLR ordering. + */ +typedef void (SDLCALL * SDL_AudioCallback) (void *userdata, Uint8 * stream, + int len); + +/** + * The calculated values in this structure are calculated by SDL_OpenAudio(). + */ +typedef struct SDL_AudioSpec +{ + int freq; /**< DSP frequency -- samples per second */ + SDL_AudioFormat format; /**< Audio data format */ + Uint8 channels; /**< Number of channels: 1 mono, 2 stereo */ + Uint8 silence; /**< Audio buffer silence value (calculated) */ + Uint16 samples; /**< Audio buffer size in samples (power of 2) */ + Uint16 padding; /**< Necessary for some compile environments */ + Uint32 size; /**< Audio buffer size in bytes (calculated) */ + SDL_AudioCallback callback; + void *userdata; +} SDL_AudioSpec; + + +struct SDL_AudioCVT; +typedef void (SDLCALL * SDL_AudioFilter) (struct SDL_AudioCVT * cvt, + SDL_AudioFormat format); + +/** + * A structure to hold a set of audio conversion filters and buffers. + */ +#ifdef __GNUC__ +/* This structure is 84 bytes on 32-bit architectures, make sure GCC doesn't + pad it out to 88 bytes to guarantee ABI compatibility between compilers. + vvv + The next time we rev the ABI, make sure to size the ints and add padding. +*/ +#define SDL_AUDIOCVT_PACKED __attribute__((packed)) +#else +#define SDL_AUDIOCVT_PACKED +#endif +/* */ +typedef struct SDL_AudioCVT +{ + int needed; /**< Set to 1 if conversion possible */ + SDL_AudioFormat src_format; /**< Source audio format */ + SDL_AudioFormat dst_format; /**< Target audio format */ + double rate_incr; /**< Rate conversion increment */ + Uint8 *buf; /**< Buffer to hold entire audio data */ + int len; /**< Length of original audio buffer */ + int len_cvt; /**< Length of converted audio buffer */ + int len_mult; /**< buffer must be len*len_mult big */ + double len_ratio; /**< Given len, final size is len*len_ratio */ + SDL_AudioFilter filters[10]; /**< Filter list */ + int filter_index; /**< Current audio conversion function */ +} SDL_AUDIOCVT_PACKED SDL_AudioCVT; + + +/* Function prototypes */ + +/** + * \name Driver discovery functions + * + * These functions return the list of built in audio drivers, in the + * order that they are normally initialized by default. + */ +/* @{ */ +extern DECLSPEC int SDLCALL SDL_GetNumAudioDrivers(void); +extern DECLSPEC const char *SDLCALL SDL_GetAudioDriver(int index); +/* @} */ + +/** + * \name Initialization and cleanup + * + * \internal These functions are used internally, and should not be used unless + * you have a specific need to specify the audio driver you want to + * use. You should normally use SDL_Init() or SDL_InitSubSystem(). + */ +/* @{ */ +extern DECLSPEC int SDLCALL SDL_AudioInit(const char *driver_name); +extern DECLSPEC void SDLCALL SDL_AudioQuit(void); +/* @} */ + +/** + * This function returns the name of the current audio driver, or NULL + * if no driver has been initialized. + */ +extern DECLSPEC const char *SDLCALL SDL_GetCurrentAudioDriver(void); + +/** + * This function opens the audio device with the desired parameters, and + * returns 0 if successful, placing the actual hardware parameters in the + * structure pointed to by \c obtained. If \c obtained is NULL, the audio + * data passed to the callback function will be guaranteed to be in the + * requested format, and will be automatically converted to the hardware + * audio format if necessary. This function returns -1 if it failed + * to open the audio device, or couldn't set up the audio thread. + * + * When filling in the desired audio spec structure, + * - \c desired->freq should be the desired audio frequency in samples-per- + * second. + * - \c desired->format should be the desired audio format. + * - \c desired->samples is the desired size of the audio buffer, in + * samples. This number should be a power of two, and may be adjusted by + * the audio driver to a value more suitable for the hardware. Good values + * seem to range between 512 and 8096 inclusive, depending on the + * application and CPU speed. Smaller values yield faster response time, + * but can lead to underflow if the application is doing heavy processing + * and cannot fill the audio buffer in time. A stereo sample consists of + * both right and left channels in LR ordering. + * Note that the number of samples is directly related to time by the + * following formula: \code ms = (samples*1000)/freq \endcode + * - \c desired->size is the size in bytes of the audio buffer, and is + * calculated by SDL_OpenAudio(). + * - \c desired->silence is the value used to set the buffer to silence, + * and is calculated by SDL_OpenAudio(). + * - \c desired->callback should be set to a function that will be called + * when the audio device is ready for more data. It is passed a pointer + * to the audio buffer, and the length in bytes of the audio buffer. + * This function usually runs in a separate thread, and so you should + * protect data structures that it accesses by calling SDL_LockAudio() + * and SDL_UnlockAudio() in your code. + * - \c desired->userdata is passed as the first parameter to your callback + * function. + * + * The audio device starts out playing silence when it's opened, and should + * be enabled for playing by calling \c SDL_PauseAudio(0) when you are ready + * for your audio callback function to be called. Since the audio driver + * may modify the requested size of the audio buffer, you should allocate + * any local mixing buffers after you open the audio device. + */ +extern DECLSPEC int SDLCALL SDL_OpenAudio(SDL_AudioSpec * desired, + SDL_AudioSpec * obtained); + +/** + * SDL Audio Device IDs. + * + * A successful call to SDL_OpenAudio() is always device id 1, and legacy + * SDL audio APIs assume you want this device ID. SDL_OpenAudioDevice() calls + * always returns devices >= 2 on success. The legacy calls are good both + * for backwards compatibility and when you don't care about multiple, + * specific, or capture devices. + */ +typedef Uint32 SDL_AudioDeviceID; + +/** + * Get the number of available devices exposed by the current driver. + * Only valid after a successfully initializing the audio subsystem. + * Returns -1 if an explicit list of devices can't be determined; this is + * not an error. For example, if SDL is set up to talk to a remote audio + * server, it can't list every one available on the Internet, but it will + * still allow a specific host to be specified to SDL_OpenAudioDevice(). + * + * In many common cases, when this function returns a value <= 0, it can still + * successfully open the default device (NULL for first argument of + * SDL_OpenAudioDevice()). + */ +extern DECLSPEC int SDLCALL SDL_GetNumAudioDevices(int iscapture); + +/** + * Get the human-readable name of a specific audio device. + * Must be a value between 0 and (number of audio devices-1). + * Only valid after a successfully initializing the audio subsystem. + * The values returned by this function reflect the latest call to + * SDL_GetNumAudioDevices(); recall that function to redetect available + * hardware. + * + * The string returned by this function is UTF-8 encoded, read-only, and + * managed internally. You are not to free it. If you need to keep the + * string for any length of time, you should make your own copy of it, as it + * will be invalid next time any of several other SDL functions is called. + */ +extern DECLSPEC const char *SDLCALL SDL_GetAudioDeviceName(int index, + int iscapture); + + +/** + * Open a specific audio device. Passing in a device name of NULL requests + * the most reasonable default (and is equivalent to calling SDL_OpenAudio()). + * + * The device name is a UTF-8 string reported by SDL_GetAudioDeviceName(), but + * some drivers allow arbitrary and driver-specific strings, such as a + * hostname/IP address for a remote audio server, or a filename in the + * diskaudio driver. + * + * \return 0 on error, a valid device ID that is >= 2 on success. + * + * SDL_OpenAudio(), unlike this function, always acts on device ID 1. + */ +extern DECLSPEC SDL_AudioDeviceID SDLCALL SDL_OpenAudioDevice(const char + *device, + int iscapture, + const + SDL_AudioSpec * + desired, + SDL_AudioSpec * + obtained, + int + allowed_changes); + + + +/** + * \name Audio state + * + * Get the current audio state. + */ +/* @{ */ +typedef enum +{ + SDL_AUDIO_STOPPED = 0, + SDL_AUDIO_PLAYING, + SDL_AUDIO_PAUSED +} SDL_AudioStatus; +extern DECLSPEC SDL_AudioStatus SDLCALL SDL_GetAudioStatus(void); + +extern DECLSPEC SDL_AudioStatus SDLCALL +SDL_GetAudioDeviceStatus(SDL_AudioDeviceID dev); +/* @} *//* Audio State */ + +/** + * \name Pause audio functions + * + * These functions pause and unpause the audio callback processing. + * They should be called with a parameter of 0 after opening the audio + * device to start playing sound. This is so you can safely initialize + * data for your callback function after opening the audio device. + * Silence will be written to the audio device during the pause. + */ +/* @{ */ +extern DECLSPEC void SDLCALL SDL_PauseAudio(int pause_on); +extern DECLSPEC void SDLCALL SDL_PauseAudioDevice(SDL_AudioDeviceID dev, + int pause_on); +/* @} *//* Pause audio functions */ + +/** + * This function loads a WAVE from the data source, automatically freeing + * that source if \c freesrc is non-zero. For example, to load a WAVE file, + * you could do: + * \code + * SDL_LoadWAV_RW(SDL_RWFromFile("sample.wav", "rb"), 1, ...); + * \endcode + * + * If this function succeeds, it returns the given SDL_AudioSpec, + * filled with the audio data format of the wave data, and sets + * \c *audio_buf to a malloc()'d buffer containing the audio data, + * and sets \c *audio_len to the length of that audio buffer, in bytes. + * You need to free the audio buffer with SDL_FreeWAV() when you are + * done with it. + * + * This function returns NULL and sets the SDL error message if the + * wave file cannot be opened, uses an unknown data format, or is + * corrupt. Currently raw and MS-ADPCM WAVE files are supported. + */ +extern DECLSPEC SDL_AudioSpec *SDLCALL SDL_LoadWAV_RW(SDL_RWops * src, + int freesrc, + SDL_AudioSpec * spec, + Uint8 ** audio_buf, + Uint32 * audio_len); + +/** + * Loads a WAV from a file. + * Compatibility convenience function. + */ +#define SDL_LoadWAV(file, spec, audio_buf, audio_len) \ + SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len) + +/** + * This function frees data previously allocated with SDL_LoadWAV_RW() + */ +extern DECLSPEC void SDLCALL SDL_FreeWAV(Uint8 * audio_buf); + +/** + * This function takes a source format and rate and a destination format + * and rate, and initializes the \c cvt structure with information needed + * by SDL_ConvertAudio() to convert a buffer of audio data from one format + * to the other. + * + * \return -1 if the format conversion is not supported, 0 if there's + * no conversion needed, or 1 if the audio filter is set up. + */ +extern DECLSPEC int SDLCALL SDL_BuildAudioCVT(SDL_AudioCVT * cvt, + SDL_AudioFormat src_format, + Uint8 src_channels, + int src_rate, + SDL_AudioFormat dst_format, + Uint8 dst_channels, + int dst_rate); + +/** + * Once you have initialized the \c cvt structure using SDL_BuildAudioCVT(), + * created an audio buffer \c cvt->buf, and filled it with \c cvt->len bytes of + * audio data in the source format, this function will convert it in-place + * to the desired format. + * + * The data conversion may expand the size of the audio data, so the buffer + * \c cvt->buf should be allocated after the \c cvt structure is initialized by + * SDL_BuildAudioCVT(), and should be \c cvt->len*cvt->len_mult bytes long. + */ +extern DECLSPEC int SDLCALL SDL_ConvertAudio(SDL_AudioCVT * cvt); + +#define SDL_MIX_MAXVOLUME 128 +/** + * This takes two audio buffers of the playing audio format and mixes + * them, performing addition, volume adjustment, and overflow clipping. + * The volume ranges from 0 - 128, and should be set to ::SDL_MIX_MAXVOLUME + * for full audio volume. Note this does not change hardware volume. + * This is provided for convenience -- you can mix your own audio data. + */ +extern DECLSPEC void SDLCALL SDL_MixAudio(Uint8 * dst, const Uint8 * src, + Uint32 len, int volume); + +/** + * This works like SDL_MixAudio(), but you specify the audio format instead of + * using the format of audio device 1. Thus it can be used when no audio + * device is open at all. + */ +extern DECLSPEC void SDLCALL SDL_MixAudioFormat(Uint8 * dst, + const Uint8 * src, + SDL_AudioFormat format, + Uint32 len, int volume); + +/** + * \name Audio lock functions + * + * The lock manipulated by these functions protects the callback function. + * During a SDL_LockAudio()/SDL_UnlockAudio() pair, you can be guaranteed that + * the callback function is not running. Do not call these from the callback + * function or you will cause deadlock. + */ +/* @{ */ +extern DECLSPEC void SDLCALL SDL_LockAudio(void); +extern DECLSPEC void SDLCALL SDL_LockAudioDevice(SDL_AudioDeviceID dev); +extern DECLSPEC void SDLCALL SDL_UnlockAudio(void); +extern DECLSPEC void SDLCALL SDL_UnlockAudioDevice(SDL_AudioDeviceID dev); +/* @} *//* Audio lock functions */ + +/** + * This function shuts down audio processing and closes the audio device. + */ +extern DECLSPEC void SDLCALL SDL_CloseAudio(void); +extern DECLSPEC void SDLCALL SDL_CloseAudioDevice(SDL_AudioDeviceID dev); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_audio_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_bits.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_bits.h new file mode 100644 index 0000000..341524f --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_bits.h @@ -0,0 +1,97 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_bits.h + * + * Functions for fiddling with bits and bitmasks. + */ + +#ifndef _SDL_bits_h +#define _SDL_bits_h + +#include "SDL_stdinc.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \file SDL_bits.h + */ + +/** + * Get the index of the most significant bit. Result is undefined when called + * with 0. This operation can also be stated as "count leading zeroes" and + * "log base 2". + * + * \return Index of the most significant bit, or -1 if the value is 0. + */ +SDL_FORCE_INLINE int +SDL_MostSignificantBitIndex32(Uint32 x) +{ +#if defined(__GNUC__) && __GNUC__ >= 4 + /* Count Leading Zeroes builtin in GCC. + * http://gcc.gnu.org/onlinedocs/gcc-4.3.4/gcc/Other-Builtins.html + */ + if (x == 0) { + return -1; + } + return 31 - __builtin_clz(x); +#else + /* Based off of Bit Twiddling Hacks by Sean Eron Anderson + * , released in the public domain. + * http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog + */ + const Uint32 b[] = {0x2, 0xC, 0xF0, 0xFF00, 0xFFFF0000}; + const int S[] = {1, 2, 4, 8, 16}; + + int msbIndex = 0; + int i; + + if (x == 0) { + return -1; + } + + for (i = 4; i >= 0; i--) + { + if (x & b[i]) + { + x >>= S[i]; + msbIndex |= S[i]; + } + } + + return msbIndex; +#endif +} + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_bits_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_blendmode.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_blendmode.h new file mode 100644 index 0000000..8c257be --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_blendmode.h @@ -0,0 +1,63 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_blendmode.h + * + * Header file declaring the SDL_BlendMode enumeration + */ + +#ifndef _SDL_blendmode_h +#define _SDL_blendmode_h + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief The blend mode used in SDL_RenderCopy() and drawing operations. + */ +typedef enum +{ + SDL_BLENDMODE_NONE = 0x00000000, /**< no blending + dstRGBA = srcRGBA */ + SDL_BLENDMODE_BLEND = 0x00000001, /**< alpha blending + dstRGB = (srcRGB * srcA) + (dstRGB * (1-srcA)) + dstA = srcA + (dstA * (1-srcA)) */ + SDL_BLENDMODE_ADD = 0x00000002, /**< additive blending + dstRGB = (srcRGB * srcA) + dstRGB + dstA = dstA */ + SDL_BLENDMODE_MOD = 0x00000004 /**< color modulate + dstRGB = srcRGB * dstRGB + dstA = dstA */ +} SDL_BlendMode; + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_video_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_clipboard.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_clipboard.h new file mode 100644 index 0000000..74e2b32 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_clipboard.h @@ -0,0 +1,71 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_clipboard.h + * + * Include file for SDL clipboard handling + */ + +#ifndef _SDL_clipboard_h +#define _SDL_clipboard_h + +#include "SDL_stdinc.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Function prototypes */ + +/** + * \brief Put UTF-8 text into the clipboard + * + * \sa SDL_GetClipboardText() + */ +extern DECLSPEC int SDLCALL SDL_SetClipboardText(const char *text); + +/** + * \brief Get UTF-8 text from the clipboard, which must be freed with SDL_free() + * + * \sa SDL_SetClipboardText() + */ +extern DECLSPEC char * SDLCALL SDL_GetClipboardText(void); + +/** + * \brief Returns a flag indicating whether the clipboard exists and contains a text string that is non-empty + * + * \sa SDL_GetClipboardText() + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasClipboardText(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_clipboard_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_config.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_config.h new file mode 100644 index 0000000..35eda46 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_config.h @@ -0,0 +1,210 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef _SDL_config_windows_h +#define _SDL_config_windows_h + +#include "SDL_platform.h" + +/* This is a set of defines to configure the SDL features */ + +#if !defined(_STDINT_H_) && (!defined(HAVE_STDINT_H) || !_HAVE_STDINT_H) +#if defined(__GNUC__) || defined(__DMC__) || defined(__WATCOMC__) +#define HAVE_STDINT_H 1 +#elif defined(_MSC_VER) +typedef signed __int8 int8_t; +typedef unsigned __int8 uint8_t; +typedef signed __int16 int16_t; +typedef unsigned __int16 uint16_t; +typedef signed __int32 int32_t; +typedef unsigned __int32 uint32_t; +typedef signed __int64 int64_t; +typedef unsigned __int64 uint64_t; +#ifndef _UINTPTR_T_DEFINED +#ifdef _WIN64 +typedef unsigned __int64 uintptr_t; +#else +typedef unsigned int uintptr_t; +#endif +#define _UINTPTR_T_DEFINED +#endif +/* Older Visual C++ headers don't have the Win64-compatible typedefs... */ +#if ((_MSC_VER <= 1200) && (!defined(DWORD_PTR))) +#define DWORD_PTR DWORD +#endif +#if ((_MSC_VER <= 1200) && (!defined(LONG_PTR))) +#define LONG_PTR LONG +#endif +#else /* !__GNUC__ && !_MSC_VER */ +typedef signed char int8_t; +typedef unsigned char uint8_t; +typedef signed short int16_t; +typedef unsigned short uint16_t; +typedef signed int int32_t; +typedef unsigned int uint32_t; +typedef signed long long int64_t; +typedef unsigned long long uint64_t; +#ifndef _SIZE_T_DEFINED_ +#define _SIZE_T_DEFINED_ +typedef unsigned int size_t; +#endif +typedef unsigned int uintptr_t; +#endif /* __GNUC__ || _MSC_VER */ +#endif /* !_STDINT_H_ && !HAVE_STDINT_H */ + +#ifdef _WIN64 +# define SIZEOF_VOIDP 8 +#else +# define SIZEOF_VOIDP 4 +#endif + +/* This is disabled by default to avoid C runtime dependencies and manifest requirements */ +#ifdef HAVE_LIBC +/* Useful headers */ +#define HAVE_STDIO_H 1 +#define STDC_HEADERS 1 +#define HAVE_STRING_H 1 +#define HAVE_CTYPE_H 1 +#define HAVE_MATH_H 1 +#define HAVE_SIGNAL_H 1 + +/* C library functions */ +#define HAVE_MALLOC 1 +#define HAVE_CALLOC 1 +#define HAVE_REALLOC 1 +#define HAVE_FREE 1 +#define HAVE_ALLOCA 1 +#define HAVE_QSORT 1 +#define HAVE_ABS 1 +#define HAVE_MEMSET 1 +#define HAVE_MEMCPY 1 +#define HAVE_MEMMOVE 1 +#define HAVE_MEMCMP 1 +#define HAVE_STRLEN 1 +#define HAVE__STRREV 1 +#define HAVE__STRUPR 1 +#define HAVE__STRLWR 1 +#define HAVE_STRCHR 1 +#define HAVE_STRRCHR 1 +#define HAVE_STRSTR 1 +#define HAVE__LTOA 1 +#define HAVE__ULTOA 1 +#define HAVE_STRTOL 1 +#define HAVE_STRTOUL 1 +#define HAVE_STRTOD 1 +#define HAVE_ATOI 1 +#define HAVE_ATOF 1 +#define HAVE_STRCMP 1 +#define HAVE_STRNCMP 1 +#define HAVE__STRICMP 1 +#define HAVE__STRNICMP 1 +#define HAVE_ATAN 1 +#define HAVE_ATAN2 1 +#define HAVE_ACOS 1 +#define HAVE_ASIN 1 +#define HAVE_CEIL 1 +#define HAVE_COS 1 +#define HAVE_COSF 1 +#define HAVE_FABS 1 +#define HAVE_FLOOR 1 +#define HAVE_LOG 1 +#define HAVE_POW 1 +#define HAVE_SIN 1 +#define HAVE_SINF 1 +#define HAVE_SQRT 1 +#if _MSC_VER >= 1800 +#define HAVE_STRTOLL 1 +#define HAVE_VSSCANF 1 +#define HAVE_COPYSIGN 1 +#define HAVE_SCALBN 1 +#endif +#if !defined(_MSC_VER) || defined(_USE_MATH_DEFINES) +#define HAVE_M_PI 1 +#endif +#else +#define HAVE_STDARG_H 1 +#define HAVE_STDDEF_H 1 +#endif + +/* Enable various audio drivers */ +#define SDL_AUDIO_DRIVER_DSOUND 1 +#define SDL_AUDIO_DRIVER_XAUDIO2 1 +#define SDL_AUDIO_DRIVER_WINMM 1 +#define SDL_AUDIO_DRIVER_DISK 1 +#define SDL_AUDIO_DRIVER_DUMMY 1 + +/* Enable various input drivers */ +#define SDL_JOYSTICK_DINPUT 1 +#define SDL_HAPTIC_DINPUT 1 + +/* Enable various shared object loading systems */ +#define SDL_LOADSO_WINDOWS 1 + +/* Enable various threading systems */ +#define SDL_THREAD_WINDOWS 1 + +/* Enable various timer systems */ +#define SDL_TIMER_WINDOWS 1 + +/* Enable various video drivers */ +#define SDL_VIDEO_DRIVER_DUMMY 1 +#define SDL_VIDEO_DRIVER_WINDOWS 1 + +#ifndef SDL_VIDEO_RENDER_D3D +#define SDL_VIDEO_RENDER_D3D 1 +#endif +#ifndef SDL_VIDEO_RENDER_D3D11 +#define SDL_VIDEO_RENDER_D3D11 0 +#endif + +/* Enable OpenGL support */ +#ifndef SDL_VIDEO_OPENGL +#define SDL_VIDEO_OPENGL 1 +#endif +#ifndef SDL_VIDEO_OPENGL_WGL +#define SDL_VIDEO_OPENGL_WGL 1 +#endif +#ifndef SDL_VIDEO_RENDER_OGL +#define SDL_VIDEO_RENDER_OGL 1 +#endif +#ifndef SDL_VIDEO_RENDER_OGL_ES2 +#define SDL_VIDEO_RENDER_OGL_ES2 1 +#endif +#ifndef SDL_VIDEO_OPENGL_ES2 +#define SDL_VIDEO_OPENGL_ES2 1 +#endif +#ifndef SDL_VIDEO_OPENGL_EGL +#define SDL_VIDEO_OPENGL_EGL 1 +#endif + + +/* Enable system power support */ +#define SDL_POWER_WINDOWS 1 + +/* Enable filesystem support */ +#define SDL_FILESYSTEM_WINDOWS 1 + +/* Enable assembly routines (Win64 doesn't have inline asm) */ +#ifndef _WIN64 +#define SDL_ASSEMBLY_ROUTINES 1 +#endif + +#endif /* _SDL_config_windows_h */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_cpuinfo.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_cpuinfo.h new file mode 100644 index 0000000..1f6efd3 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_cpuinfo.h @@ -0,0 +1,156 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_cpuinfo.h + * + * CPU feature detection for SDL. + */ + +#ifndef _SDL_cpuinfo_h +#define _SDL_cpuinfo_h + +#include "SDL_stdinc.h" + +/* Need to do this here because intrin.h has C++ code in it */ +/* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */ +#if defined(_MSC_VER) && (_MSC_VER >= 1500) && (defined(_M_IX86) || defined(_M_X64)) +#include +#ifndef _WIN64 +#define __MMX__ +#define __3dNOW__ +#endif +#define __SSE__ +#define __SSE2__ +#elif defined(__MINGW64_VERSION_MAJOR) +#include +#else +#ifdef __ALTIVEC__ +#if HAVE_ALTIVEC_H && !defined(__APPLE_ALTIVEC__) +#include +#undef pixel +#endif +#endif +#ifdef __MMX__ +#include +#endif +#ifdef __3dNOW__ +#include +#endif +#ifdef __SSE__ +#include +#endif +#ifdef __SSE2__ +#include +#endif +#endif + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* This is a guess for the cacheline size used for padding. + * Most x86 processors have a 64 byte cache line. + * The 64-bit PowerPC processors have a 128 byte cache line. + * We'll use the larger value to be generally safe. + */ +#define SDL_CACHELINE_SIZE 128 + +/** + * This function returns the number of CPU cores available. + */ +extern DECLSPEC int SDLCALL SDL_GetCPUCount(void); + +/** + * This function returns the L1 cache line size of the CPU + * + * This is useful for determining multi-threaded structure padding + * or SIMD prefetch sizes. + */ +extern DECLSPEC int SDLCALL SDL_GetCPUCacheLineSize(void); + +/** + * This function returns true if the CPU has the RDTSC instruction. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasRDTSC(void); + +/** + * This function returns true if the CPU has AltiVec features. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasAltiVec(void); + +/** + * This function returns true if the CPU has MMX features. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasMMX(void); + +/** + * This function returns true if the CPU has 3DNow! features. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_Has3DNow(void); + +/** + * This function returns true if the CPU has SSE features. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE(void); + +/** + * This function returns true if the CPU has SSE2 features. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE2(void); + +/** + * This function returns true if the CPU has SSE3 features. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE3(void); + +/** + * This function returns true if the CPU has SSE4.1 features. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE41(void); + +/** + * This function returns true if the CPU has SSE4.2 features. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE42(void); + +/** + * This function returns true if the CPU has AVX features. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasAVX(void); + +/** + * This function returns the amount of RAM configured in the system, in MB. + */ +extern DECLSPEC int SDLCALL SDL_GetSystemRAM(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_cpuinfo_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_endian.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_endian.h new file mode 100644 index 0000000..161c418 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_endian.h @@ -0,0 +1,239 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_endian.h + * + * Functions for reading and writing endian-specific values + */ + +#ifndef _SDL_endian_h +#define _SDL_endian_h + +#include "SDL_stdinc.h" + +/** + * \name The two types of endianness + */ +/* @{ */ +#define SDL_LIL_ENDIAN 1234 +#define SDL_BIG_ENDIAN 4321 +/* @} */ + +#ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */ +#ifdef __linux__ +#include +#define SDL_BYTEORDER __BYTE_ORDER +#else /* __linux __ */ +#if defined(__hppa__) || \ + defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ + (defined(__MIPS__) && defined(__MISPEB__)) || \ + defined(__ppc__) || defined(__POWERPC__) || defined(_M_PPC) || \ + defined(__sparc__) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#endif +#endif /* __linux __ */ +#endif /* !SDL_BYTEORDER */ + + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \file SDL_endian.h + */ +#if defined(__GNUC__) && defined(__i386__) && \ + !(__GNUC__ == 2 && __GNUC_MINOR__ == 95 /* broken gcc version */) +SDL_FORCE_INLINE Uint16 +SDL_Swap16(Uint16 x) +{ + __asm__("xchgb %b0,%h0": "=q"(x):"0"(x)); + return x; +} +#elif defined(__GNUC__) && defined(__x86_64__) +SDL_FORCE_INLINE Uint16 +SDL_Swap16(Uint16 x) +{ + __asm__("xchgb %b0,%h0": "=Q"(x):"0"(x)); + return x; +} +#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__)) +SDL_FORCE_INLINE Uint16 +SDL_Swap16(Uint16 x) +{ + int result; + + __asm__("rlwimi %0,%2,8,16,23": "=&r"(result):"0"(x >> 8), "r"(x)); + return (Uint16)result; +} +#elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__)) && !defined(__mcoldfire__) +SDL_FORCE_INLINE Uint16 +SDL_Swap16(Uint16 x) +{ + __asm__("rorw #8,%0": "=d"(x): "0"(x):"cc"); + return x; +} +#else +SDL_FORCE_INLINE Uint16 +SDL_Swap16(Uint16 x) +{ + return SDL_static_cast(Uint16, ((x << 8) | (x >> 8))); +} +#endif + +#if defined(__GNUC__) && defined(__i386__) +SDL_FORCE_INLINE Uint32 +SDL_Swap32(Uint32 x) +{ + __asm__("bswap %0": "=r"(x):"0"(x)); + return x; +} +#elif defined(__GNUC__) && defined(__x86_64__) +SDL_FORCE_INLINE Uint32 +SDL_Swap32(Uint32 x) +{ + __asm__("bswapl %0": "=r"(x):"0"(x)); + return x; +} +#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__)) +SDL_FORCE_INLINE Uint32 +SDL_Swap32(Uint32 x) +{ + Uint32 result; + + __asm__("rlwimi %0,%2,24,16,23": "=&r"(result):"0"(x >> 24), "r"(x)); + __asm__("rlwimi %0,%2,8,8,15": "=&r"(result):"0"(result), "r"(x)); + __asm__("rlwimi %0,%2,24,0,7": "=&r"(result):"0"(result), "r"(x)); + return result; +} +#elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__)) && !defined(__mcoldfire__) +SDL_FORCE_INLINE Uint32 +SDL_Swap32(Uint32 x) +{ + __asm__("rorw #8,%0\n\tswap %0\n\trorw #8,%0": "=d"(x): "0"(x):"cc"); + return x; +} +#else +SDL_FORCE_INLINE Uint32 +SDL_Swap32(Uint32 x) +{ + return SDL_static_cast(Uint32, ((x << 24) | ((x << 8) & 0x00FF0000) | + ((x >> 8) & 0x0000FF00) | (x >> 24))); +} +#endif + +#if defined(__GNUC__) && defined(__i386__) +SDL_FORCE_INLINE Uint64 +SDL_Swap64(Uint64 x) +{ + union + { + struct + { + Uint32 a, b; + } s; + Uint64 u; + } v; + v.u = x; + __asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1": "=r"(v.s.a), "=r"(v.s.b):"0"(v.s.a), + "1"(v.s. + b)); + return v.u; +} +#elif defined(__GNUC__) && defined(__x86_64__) +SDL_FORCE_INLINE Uint64 +SDL_Swap64(Uint64 x) +{ + __asm__("bswapq %0": "=r"(x):"0"(x)); + return x; +} +#else +SDL_FORCE_INLINE Uint64 +SDL_Swap64(Uint64 x) +{ + Uint32 hi, lo; + + /* Separate into high and low 32-bit values and swap them */ + lo = SDL_static_cast(Uint32, x & 0xFFFFFFFF); + x >>= 32; + hi = SDL_static_cast(Uint32, x & 0xFFFFFFFF); + x = SDL_Swap32(lo); + x <<= 32; + x |= SDL_Swap32(hi); + return (x); +} +#endif + + +SDL_FORCE_INLINE float +SDL_SwapFloat(float x) +{ + union + { + float f; + Uint32 ui32; + } swapper; + swapper.f = x; + swapper.ui32 = SDL_Swap32(swapper.ui32); + return swapper.f; +} + + +/** + * \name Swap to native + * Byteswap item from the specified endianness to the native endianness. + */ +/* @{ */ +#if SDL_BYTEORDER == SDL_LIL_ENDIAN +#define SDL_SwapLE16(X) (X) +#define SDL_SwapLE32(X) (X) +#define SDL_SwapLE64(X) (X) +#define SDL_SwapFloatLE(X) (X) +#define SDL_SwapBE16(X) SDL_Swap16(X) +#define SDL_SwapBE32(X) SDL_Swap32(X) +#define SDL_SwapBE64(X) SDL_Swap64(X) +#define SDL_SwapFloatBE(X) SDL_SwapFloat(X) +#else +#define SDL_SwapLE16(X) SDL_Swap16(X) +#define SDL_SwapLE32(X) SDL_Swap32(X) +#define SDL_SwapLE64(X) SDL_Swap64(X) +#define SDL_SwapFloatLE(X) SDL_SwapFloat(X) +#define SDL_SwapBE16(X) (X) +#define SDL_SwapBE32(X) (X) +#define SDL_SwapBE64(X) (X) +#define SDL_SwapFloatBE(X) (X) +#endif +/* @} *//* Swap to native */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_endian_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_error.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_error.h new file mode 100644 index 0000000..5776cfa --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_error.h @@ -0,0 +1,76 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_error.h + * + * Simple error message routines for SDL. + */ + +#ifndef _SDL_error_h +#define _SDL_error_h + +#include "SDL_stdinc.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Public functions */ +/* SDL_SetError() unconditionally returns -1. */ +extern DECLSPEC int SDLCALL SDL_SetError(const char *fmt, ...); +extern DECLSPEC const char *SDLCALL SDL_GetError(void); +extern DECLSPEC void SDLCALL SDL_ClearError(void); + +/** + * \name Internal error functions + * + * \internal + * Private error reporting function - used internally. + */ +/* @{ */ +#define SDL_OutOfMemory() SDL_Error(SDL_ENOMEM) +#define SDL_Unsupported() SDL_Error(SDL_UNSUPPORTED) +#define SDL_InvalidParamError(param) SDL_SetError("Parameter '%s' is invalid", (param)) +typedef enum +{ + SDL_ENOMEM, + SDL_EFREAD, + SDL_EFWRITE, + SDL_EFSEEK, + SDL_UNSUPPORTED, + SDL_LASTERROR +} SDL_errorcode; +/* SDL_Error() unconditionally returns -1. */ +extern DECLSPEC int SDLCALL SDL_Error(SDL_errorcode code); +/* @} *//* Internal error functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_error_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_events.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_events.h new file mode 100644 index 0000000..fc5a145 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_events.h @@ -0,0 +1,723 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_events.h + * + * Include file for SDL event handling. + */ + +#ifndef _SDL_events_h +#define _SDL_events_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" +#include "SDL_video.h" +#include "SDL_keyboard.h" +#include "SDL_mouse.h" +#include "SDL_joystick.h" +#include "SDL_gamecontroller.h" +#include "SDL_quit.h" +#include "SDL_gesture.h" +#include "SDL_touch.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* General keyboard/mouse state definitions */ +#define SDL_RELEASED 0 +#define SDL_PRESSED 1 + +/** + * \brief The types of events that can be delivered. + */ +typedef enum +{ + SDL_FIRSTEVENT = 0, /**< Unused (do not remove) */ + + /* Application events */ + SDL_QUIT = 0x100, /**< User-requested quit */ + + /* These application events have special meaning on iOS, see README-ios.txt for details */ + SDL_APP_TERMINATING, /**< The application is being terminated by the OS + Called on iOS in applicationWillTerminate() + Called on Android in onDestroy() + */ + SDL_APP_LOWMEMORY, /**< The application is low on memory, free memory if possible. + Called on iOS in applicationDidReceiveMemoryWarning() + Called on Android in onLowMemory() + */ + SDL_APP_WILLENTERBACKGROUND, /**< The application is about to enter the background + Called on iOS in applicationWillResignActive() + Called on Android in onPause() + */ + SDL_APP_DIDENTERBACKGROUND, /**< The application did enter the background and may not get CPU for some time + Called on iOS in applicationDidEnterBackground() + Called on Android in onPause() + */ + SDL_APP_WILLENTERFOREGROUND, /**< The application is about to enter the foreground + Called on iOS in applicationWillEnterForeground() + Called on Android in onResume() + */ + SDL_APP_DIDENTERFOREGROUND, /**< The application is now interactive + Called on iOS in applicationDidBecomeActive() + Called on Android in onResume() + */ + + /* Window events */ + SDL_WINDOWEVENT = 0x200, /**< Window state change */ + SDL_SYSWMEVENT, /**< System specific event */ + + /* Keyboard events */ + SDL_KEYDOWN = 0x300, /**< Key pressed */ + SDL_KEYUP, /**< Key released */ + SDL_TEXTEDITING, /**< Keyboard text editing (composition) */ + SDL_TEXTINPUT, /**< Keyboard text input */ + + /* Mouse events */ + SDL_MOUSEMOTION = 0x400, /**< Mouse moved */ + SDL_MOUSEBUTTONDOWN, /**< Mouse button pressed */ + SDL_MOUSEBUTTONUP, /**< Mouse button released */ + SDL_MOUSEWHEEL, /**< Mouse wheel motion */ + + /* Joystick events */ + SDL_JOYAXISMOTION = 0x600, /**< Joystick axis motion */ + SDL_JOYBALLMOTION, /**< Joystick trackball motion */ + SDL_JOYHATMOTION, /**< Joystick hat position change */ + SDL_JOYBUTTONDOWN, /**< Joystick button pressed */ + SDL_JOYBUTTONUP, /**< Joystick button released */ + SDL_JOYDEVICEADDED, /**< A new joystick has been inserted into the system */ + SDL_JOYDEVICEREMOVED, /**< An opened joystick has been removed */ + + /* Game controller events */ + SDL_CONTROLLERAXISMOTION = 0x650, /**< Game controller axis motion */ + SDL_CONTROLLERBUTTONDOWN, /**< Game controller button pressed */ + SDL_CONTROLLERBUTTONUP, /**< Game controller button released */ + SDL_CONTROLLERDEVICEADDED, /**< A new Game controller has been inserted into the system */ + SDL_CONTROLLERDEVICEREMOVED, /**< An opened Game controller has been removed */ + SDL_CONTROLLERDEVICEREMAPPED, /**< The controller mapping was updated */ + + /* Touch events */ + SDL_FINGERDOWN = 0x700, + SDL_FINGERUP, + SDL_FINGERMOTION, + + /* Gesture events */ + SDL_DOLLARGESTURE = 0x800, + SDL_DOLLARRECORD, + SDL_MULTIGESTURE, + + /* Clipboard events */ + SDL_CLIPBOARDUPDATE = 0x900, /**< The clipboard changed */ + + /* Drag and drop events */ + SDL_DROPFILE = 0x1000, /**< The system requests a file open */ + + /* Render events */ + SDL_RENDER_TARGETS_RESET = 0x2000, /**< The render targets have been reset */ + + /** Events ::SDL_USEREVENT through ::SDL_LASTEVENT are for your use, + * and should be allocated with SDL_RegisterEvents() + */ + SDL_USEREVENT = 0x8000, + + /** + * This last event is only for bounding internal arrays + */ + SDL_LASTEVENT = 0xFFFF +} SDL_EventType; + +/** + * \brief Fields shared by every event + */ +typedef struct SDL_CommonEvent +{ + Uint32 type; + Uint32 timestamp; +} SDL_CommonEvent; + +/** + * \brief Window state change event data (event.window.*) + */ +typedef struct SDL_WindowEvent +{ + Uint32 type; /**< ::SDL_WINDOWEVENT */ + Uint32 timestamp; + Uint32 windowID; /**< The associated window */ + Uint8 event; /**< ::SDL_WindowEventID */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint32 data1; /**< event dependent data */ + Sint32 data2; /**< event dependent data */ +} SDL_WindowEvent; + +/** + * \brief Keyboard button event structure (event.key.*) + */ +typedef struct SDL_KeyboardEvent +{ + Uint32 type; /**< ::SDL_KEYDOWN or ::SDL_KEYUP */ + Uint32 timestamp; + Uint32 windowID; /**< The window with keyboard focus, if any */ + Uint8 state; /**< ::SDL_PRESSED or ::SDL_RELEASED */ + Uint8 repeat; /**< Non-zero if this is a key repeat */ + Uint8 padding2; + Uint8 padding3; + SDL_Keysym keysym; /**< The key that was pressed or released */ +} SDL_KeyboardEvent; + +#define SDL_TEXTEDITINGEVENT_TEXT_SIZE (32) +/** + * \brief Keyboard text editing event structure (event.edit.*) + */ +typedef struct SDL_TextEditingEvent +{ + Uint32 type; /**< ::SDL_TEXTEDITING */ + Uint32 timestamp; + Uint32 windowID; /**< The window with keyboard focus, if any */ + char text[SDL_TEXTEDITINGEVENT_TEXT_SIZE]; /**< The editing text */ + Sint32 start; /**< The start cursor of selected editing text */ + Sint32 length; /**< The length of selected editing text */ +} SDL_TextEditingEvent; + + +#define SDL_TEXTINPUTEVENT_TEXT_SIZE (32) +/** + * \brief Keyboard text input event structure (event.text.*) + */ +typedef struct SDL_TextInputEvent +{ + Uint32 type; /**< ::SDL_TEXTINPUT */ + Uint32 timestamp; + Uint32 windowID; /**< The window with keyboard focus, if any */ + char text[SDL_TEXTINPUTEVENT_TEXT_SIZE]; /**< The input text */ +} SDL_TextInputEvent; + +/** + * \brief Mouse motion event structure (event.motion.*) + */ +typedef struct SDL_MouseMotionEvent +{ + Uint32 type; /**< ::SDL_MOUSEMOTION */ + Uint32 timestamp; + Uint32 windowID; /**< The window with mouse focus, if any */ + Uint32 which; /**< The mouse instance id, or SDL_TOUCH_MOUSEID */ + Uint32 state; /**< The current button state */ + Sint32 x; /**< X coordinate, relative to window */ + Sint32 y; /**< Y coordinate, relative to window */ + Sint32 xrel; /**< The relative motion in the X direction */ + Sint32 yrel; /**< The relative motion in the Y direction */ +} SDL_MouseMotionEvent; + +/** + * \brief Mouse button event structure (event.button.*) + */ +typedef struct SDL_MouseButtonEvent +{ + Uint32 type; /**< ::SDL_MOUSEBUTTONDOWN or ::SDL_MOUSEBUTTONUP */ + Uint32 timestamp; + Uint32 windowID; /**< The window with mouse focus, if any */ + Uint32 which; /**< The mouse instance id, or SDL_TOUCH_MOUSEID */ + Uint8 button; /**< The mouse button index */ + Uint8 state; /**< ::SDL_PRESSED or ::SDL_RELEASED */ + Uint8 clicks; /**< 1 for single-click, 2 for double-click, etc. */ + Uint8 padding1; + Sint32 x; /**< X coordinate, relative to window */ + Sint32 y; /**< Y coordinate, relative to window */ +} SDL_MouseButtonEvent; + +/** + * \brief Mouse wheel event structure (event.wheel.*) + */ +typedef struct SDL_MouseWheelEvent +{ + Uint32 type; /**< ::SDL_MOUSEWHEEL */ + Uint32 timestamp; + Uint32 windowID; /**< The window with mouse focus, if any */ + Uint32 which; /**< The mouse instance id, or SDL_TOUCH_MOUSEID */ + Sint32 x; /**< The amount scrolled horizontally, positive to the right and negative to the left */ + Sint32 y; /**< The amount scrolled vertically, positive away from the user and negative toward the user */ +} SDL_MouseWheelEvent; + +/** + * \brief Joystick axis motion event structure (event.jaxis.*) + */ +typedef struct SDL_JoyAxisEvent +{ + Uint32 type; /**< ::SDL_JOYAXISMOTION */ + Uint32 timestamp; + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 axis; /**< The joystick axis index */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 value; /**< The axis value (range: -32768 to 32767) */ + Uint16 padding4; +} SDL_JoyAxisEvent; + +/** + * \brief Joystick trackball motion event structure (event.jball.*) + */ +typedef struct SDL_JoyBallEvent +{ + Uint32 type; /**< ::SDL_JOYBALLMOTION */ + Uint32 timestamp; + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 ball; /**< The joystick trackball index */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 xrel; /**< The relative motion in the X direction */ + Sint16 yrel; /**< The relative motion in the Y direction */ +} SDL_JoyBallEvent; + +/** + * \brief Joystick hat position change event structure (event.jhat.*) + */ +typedef struct SDL_JoyHatEvent +{ + Uint32 type; /**< ::SDL_JOYHATMOTION */ + Uint32 timestamp; + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 hat; /**< The joystick hat index */ + Uint8 value; /**< The hat position value. + * \sa ::SDL_HAT_LEFTUP ::SDL_HAT_UP ::SDL_HAT_RIGHTUP + * \sa ::SDL_HAT_LEFT ::SDL_HAT_CENTERED ::SDL_HAT_RIGHT + * \sa ::SDL_HAT_LEFTDOWN ::SDL_HAT_DOWN ::SDL_HAT_RIGHTDOWN + * + * Note that zero means the POV is centered. + */ + Uint8 padding1; + Uint8 padding2; +} SDL_JoyHatEvent; + +/** + * \brief Joystick button event structure (event.jbutton.*) + */ +typedef struct SDL_JoyButtonEvent +{ + Uint32 type; /**< ::SDL_JOYBUTTONDOWN or ::SDL_JOYBUTTONUP */ + Uint32 timestamp; + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 button; /**< The joystick button index */ + Uint8 state; /**< ::SDL_PRESSED or ::SDL_RELEASED */ + Uint8 padding1; + Uint8 padding2; +} SDL_JoyButtonEvent; + +/** + * \brief Joystick device event structure (event.jdevice.*) + */ +typedef struct SDL_JoyDeviceEvent +{ + Uint32 type; /**< ::SDL_JOYDEVICEADDED or ::SDL_JOYDEVICEREMOVED */ + Uint32 timestamp; + Sint32 which; /**< The joystick device index for the ADDED event, instance id for the REMOVED event */ +} SDL_JoyDeviceEvent; + + +/** + * \brief Game controller axis motion event structure (event.caxis.*) + */ +typedef struct SDL_ControllerAxisEvent +{ + Uint32 type; /**< ::SDL_CONTROLLERAXISMOTION */ + Uint32 timestamp; + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 axis; /**< The controller axis (SDL_GameControllerAxis) */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 value; /**< The axis value (range: -32768 to 32767) */ + Uint16 padding4; +} SDL_ControllerAxisEvent; + + +/** + * \brief Game controller button event structure (event.cbutton.*) + */ +typedef struct SDL_ControllerButtonEvent +{ + Uint32 type; /**< ::SDL_CONTROLLERBUTTONDOWN or ::SDL_CONTROLLERBUTTONUP */ + Uint32 timestamp; + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 button; /**< The controller button (SDL_GameControllerButton) */ + Uint8 state; /**< ::SDL_PRESSED or ::SDL_RELEASED */ + Uint8 padding1; + Uint8 padding2; +} SDL_ControllerButtonEvent; + + +/** + * \brief Controller device event structure (event.cdevice.*) + */ +typedef struct SDL_ControllerDeviceEvent +{ + Uint32 type; /**< ::SDL_CONTROLLERDEVICEADDED, ::SDL_CONTROLLERDEVICEREMOVED, or ::SDL_CONTROLLERDEVICEREMAPPED */ + Uint32 timestamp; + Sint32 which; /**< The joystick device index for the ADDED event, instance id for the REMOVED or REMAPPED event */ +} SDL_ControllerDeviceEvent; + + +/** + * \brief Touch finger event structure (event.tfinger.*) + */ +typedef struct SDL_TouchFingerEvent +{ + Uint32 type; /**< ::SDL_FINGERMOTION or ::SDL_FINGERDOWN or ::SDL_FINGERUP */ + Uint32 timestamp; + SDL_TouchID touchId; /**< The touch device id */ + SDL_FingerID fingerId; + float x; /**< Normalized in the range 0...1 */ + float y; /**< Normalized in the range 0...1 */ + float dx; /**< Normalized in the range 0...1 */ + float dy; /**< Normalized in the range 0...1 */ + float pressure; /**< Normalized in the range 0...1 */ +} SDL_TouchFingerEvent; + + +/** + * \brief Multiple Finger Gesture Event (event.mgesture.*) + */ +typedef struct SDL_MultiGestureEvent +{ + Uint32 type; /**< ::SDL_MULTIGESTURE */ + Uint32 timestamp; + SDL_TouchID touchId; /**< The touch device index */ + float dTheta; + float dDist; + float x; + float y; + Uint16 numFingers; + Uint16 padding; +} SDL_MultiGestureEvent; + + +/** + * \brief Dollar Gesture Event (event.dgesture.*) + */ +typedef struct SDL_DollarGestureEvent +{ + Uint32 type; /**< ::SDL_DOLLARGESTURE */ + Uint32 timestamp; + SDL_TouchID touchId; /**< The touch device id */ + SDL_GestureID gestureId; + Uint32 numFingers; + float error; + float x; /**< Normalized center of gesture */ + float y; /**< Normalized center of gesture */ +} SDL_DollarGestureEvent; + + +/** + * \brief An event used to request a file open by the system (event.drop.*) + * This event is disabled by default, you can enable it with SDL_EventState() + * \note If you enable this event, you must free the filename in the event. + */ +typedef struct SDL_DropEvent +{ + Uint32 type; /**< ::SDL_DROPFILE */ + Uint32 timestamp; + char *file; /**< The file name, which should be freed with SDL_free() */ +} SDL_DropEvent; + + +/** + * \brief The "quit requested" event + */ +typedef struct SDL_QuitEvent +{ + Uint32 type; /**< ::SDL_QUIT */ + Uint32 timestamp; +} SDL_QuitEvent; + +/** + * \brief OS Specific event + */ +typedef struct SDL_OSEvent +{ + Uint32 type; /**< ::SDL_QUIT */ + Uint32 timestamp; +} SDL_OSEvent; + +/** + * \brief A user-defined event type (event.user.*) + */ +typedef struct SDL_UserEvent +{ + Uint32 type; /**< ::SDL_USEREVENT through ::SDL_LASTEVENT-1 */ + Uint32 timestamp; + Uint32 windowID; /**< The associated window if any */ + Sint32 code; /**< User defined event code */ + void *data1; /**< User defined data pointer */ + void *data2; /**< User defined data pointer */ +} SDL_UserEvent; + + +struct SDL_SysWMmsg; +typedef struct SDL_SysWMmsg SDL_SysWMmsg; + +/** + * \brief A video driver dependent system event (event.syswm.*) + * This event is disabled by default, you can enable it with SDL_EventState() + * + * \note If you want to use this event, you should include SDL_syswm.h. + */ +typedef struct SDL_SysWMEvent +{ + Uint32 type; /**< ::SDL_SYSWMEVENT */ + Uint32 timestamp; + SDL_SysWMmsg *msg; /**< driver dependent data, defined in SDL_syswm.h */ +} SDL_SysWMEvent; + +/** + * \brief General event structure + */ +typedef union SDL_Event +{ + Uint32 type; /**< Event type, shared with all events */ + SDL_CommonEvent common; /**< Common event data */ + SDL_WindowEvent window; /**< Window event data */ + SDL_KeyboardEvent key; /**< Keyboard event data */ + SDL_TextEditingEvent edit; /**< Text editing event data */ + SDL_TextInputEvent text; /**< Text input event data */ + SDL_MouseMotionEvent motion; /**< Mouse motion event data */ + SDL_MouseButtonEvent button; /**< Mouse button event data */ + SDL_MouseWheelEvent wheel; /**< Mouse wheel event data */ + SDL_JoyAxisEvent jaxis; /**< Joystick axis event data */ + SDL_JoyBallEvent jball; /**< Joystick ball event data */ + SDL_JoyHatEvent jhat; /**< Joystick hat event data */ + SDL_JoyButtonEvent jbutton; /**< Joystick button event data */ + SDL_JoyDeviceEvent jdevice; /**< Joystick device change event data */ + SDL_ControllerAxisEvent caxis; /**< Game Controller axis event data */ + SDL_ControllerButtonEvent cbutton; /**< Game Controller button event data */ + SDL_ControllerDeviceEvent cdevice; /**< Game Controller device event data */ + SDL_QuitEvent quit; /**< Quit request event data */ + SDL_UserEvent user; /**< Custom event data */ + SDL_SysWMEvent syswm; /**< System dependent window event data */ + SDL_TouchFingerEvent tfinger; /**< Touch finger event data */ + SDL_MultiGestureEvent mgesture; /**< Gesture event data */ + SDL_DollarGestureEvent dgesture; /**< Gesture event data */ + SDL_DropEvent drop; /**< Drag and drop event data */ + + /* This is necessary for ABI compatibility between Visual C++ and GCC + Visual C++ will respect the push pack pragma and use 52 bytes for + this structure, and GCC will use the alignment of the largest datatype + within the union, which is 8 bytes. + + So... we'll add padding to force the size to be 56 bytes for both. + */ + Uint8 padding[56]; +} SDL_Event; + + +/* Function prototypes */ + +/** + * Pumps the event loop, gathering events from the input devices. + * + * This function updates the event queue and internal input device state. + * + * This should only be run in the thread that sets the video mode. + */ +extern DECLSPEC void SDLCALL SDL_PumpEvents(void); + +/* @{ */ +typedef enum +{ + SDL_ADDEVENT, + SDL_PEEKEVENT, + SDL_GETEVENT +} SDL_eventaction; + +/** + * Checks the event queue for messages and optionally returns them. + * + * If \c action is ::SDL_ADDEVENT, up to \c numevents events will be added to + * the back of the event queue. + * + * If \c action is ::SDL_PEEKEVENT, up to \c numevents events at the front + * of the event queue, within the specified minimum and maximum type, + * will be returned and will not be removed from the queue. + * + * If \c action is ::SDL_GETEVENT, up to \c numevents events at the front + * of the event queue, within the specified minimum and maximum type, + * will be returned and will be removed from the queue. + * + * \return The number of events actually stored, or -1 if there was an error. + * + * This function is thread-safe. + */ +extern DECLSPEC int SDLCALL SDL_PeepEvents(SDL_Event * events, int numevents, + SDL_eventaction action, + Uint32 minType, Uint32 maxType); +/* @} */ + +/** + * Checks to see if certain event types are in the event queue. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasEvent(Uint32 type); +extern DECLSPEC SDL_bool SDLCALL SDL_HasEvents(Uint32 minType, Uint32 maxType); + +/** + * This function clears events from the event queue + */ +extern DECLSPEC void SDLCALL SDL_FlushEvent(Uint32 type); +extern DECLSPEC void SDLCALL SDL_FlushEvents(Uint32 minType, Uint32 maxType); + +/** + * \brief Polls for currently pending events. + * + * \return 1 if there are any pending events, or 0 if there are none available. + * + * \param event If not NULL, the next event is removed from the queue and + * stored in that area. + */ +extern DECLSPEC int SDLCALL SDL_PollEvent(SDL_Event * event); + +/** + * \brief Waits indefinitely for the next available event. + * + * \return 1, or 0 if there was an error while waiting for events. + * + * \param event If not NULL, the next event is removed from the queue and + * stored in that area. + */ +extern DECLSPEC int SDLCALL SDL_WaitEvent(SDL_Event * event); + +/** + * \brief Waits until the specified timeout (in milliseconds) for the next + * available event. + * + * \return 1, or 0 if there was an error while waiting for events. + * + * \param event If not NULL, the next event is removed from the queue and + * stored in that area. + * \param timeout The timeout (in milliseconds) to wait for next event. + */ +extern DECLSPEC int SDLCALL SDL_WaitEventTimeout(SDL_Event * event, + int timeout); + +/** + * \brief Add an event to the event queue. + * + * \return 1 on success, 0 if the event was filtered, or -1 if the event queue + * was full or there was some other error. + */ +extern DECLSPEC int SDLCALL SDL_PushEvent(SDL_Event * event); + +typedef int (SDLCALL * SDL_EventFilter) (void *userdata, SDL_Event * event); + +/** + * Sets up a filter to process all events before they change internal state and + * are posted to the internal event queue. + * + * The filter is prototyped as: + * \code + * int SDL_EventFilter(void *userdata, SDL_Event * event); + * \endcode + * + * If the filter returns 1, then the event will be added to the internal queue. + * If it returns 0, then the event will be dropped from the queue, but the + * internal state will still be updated. This allows selective filtering of + * dynamically arriving events. + * + * \warning Be very careful of what you do in the event filter function, as + * it may run in a different thread! + * + * There is one caveat when dealing with the ::SDL_QuitEvent event type. The + * event filter is only called when the window manager desires to close the + * application window. If the event filter returns 1, then the window will + * be closed, otherwise the window will remain open if possible. + * + * If the quit event is generated by an interrupt signal, it will bypass the + * internal queue and be delivered to the application at the next event poll. + */ +extern DECLSPEC void SDLCALL SDL_SetEventFilter(SDL_EventFilter filter, + void *userdata); + +/** + * Return the current event filter - can be used to "chain" filters. + * If there is no event filter set, this function returns SDL_FALSE. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_GetEventFilter(SDL_EventFilter * filter, + void **userdata); + +/** + * Add a function which is called when an event is added to the queue. + */ +extern DECLSPEC void SDLCALL SDL_AddEventWatch(SDL_EventFilter filter, + void *userdata); + +/** + * Remove an event watch function added with SDL_AddEventWatch() + */ +extern DECLSPEC void SDLCALL SDL_DelEventWatch(SDL_EventFilter filter, + void *userdata); + +/** + * Run the filter function on the current event queue, removing any + * events for which the filter returns 0. + */ +extern DECLSPEC void SDLCALL SDL_FilterEvents(SDL_EventFilter filter, + void *userdata); + +/* @{ */ +#define SDL_QUERY -1 +#define SDL_IGNORE 0 +#define SDL_DISABLE 0 +#define SDL_ENABLE 1 + +/** + * This function allows you to set the state of processing certain events. + * - If \c state is set to ::SDL_IGNORE, that event will be automatically + * dropped from the event queue and will not event be filtered. + * - If \c state is set to ::SDL_ENABLE, that event will be processed + * normally. + * - If \c state is set to ::SDL_QUERY, SDL_EventState() will return the + * current processing state of the specified event. + */ +extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint32 type, int state); +/* @} */ +#define SDL_GetEventState(type) SDL_EventState(type, SDL_QUERY) + +/** + * This function allocates a set of user-defined events, and returns + * the beginning event number for that set of events. + * + * If there aren't enough user-defined events left, this function + * returns (Uint32)-1 + */ +extern DECLSPEC Uint32 SDLCALL SDL_RegisterEvents(int numevents); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_events_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_filesystem.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_filesystem.h new file mode 100644 index 0000000..de3e227 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_filesystem.h @@ -0,0 +1,136 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_filesystem.h + * + * \brief Include file for filesystem SDL API functions + */ + +#ifndef _SDL_filesystem_h +#define _SDL_filesystem_h + +#include "SDL_stdinc.h" + +#include "begin_code.h" + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief Get the path where the application resides. + * + * Get the "base path". This is the directory where the application was run + * from, which is probably the installation directory, and may or may not + * be the process's current working directory. + * + * This returns an absolute path in UTF-8 encoding, and is guaranteed to + * end with a path separator ('\\' on Windows, '/' most other places). + * + * The pointer returned by this function is owned by you. Please call + * SDL_free() on the pointer when you are done with it, or it will be a + * memory leak. This is not necessarily a fast call, though, so you should + * call this once near startup and save the string if you need it. + * + * Some platforms can't determine the application's path, and on other + * platforms, this might be meaningless. In such cases, this function will + * return NULL. + * + * \return String of base dir in UTF-8 encoding, or NULL on error. + * + * \sa SDL_GetPrefPath + */ +extern DECLSPEC char *SDLCALL SDL_GetBasePath(void); + +/** + * \brief Get the user-and-app-specific path where files can be written. + * + * Get the "pref dir". This is meant to be where users can write personal + * files (preferences and save games, etc) that are specific to your + * application. This directory is unique per user, per application. + * + * This function will decide the appropriate location in the native filesystem, + * create the directory if necessary, and return a string of the absolute + * path to the directory in UTF-8 encoding. + * + * On Windows, the string might look like: + * "C:\\Users\\bob\\AppData\\Roaming\\My Company\\My Program Name\\" + * + * On Linux, the string might look like: + * "/home/bob/.local/share/My Program Name/" + * + * On Mac OS X, the string might look like: + * "/Users/bob/Library/Application Support/My Program Name/" + * + * (etc.) + * + * You specify the name of your organization (if it's not a real organization, + * your name or an Internet domain you own might do) and the name of your + * application. These should be untranslated proper names. + * + * Both the org and app strings may become part of a directory name, so + * please follow these rules: + * + * - Try to use the same org string (including case-sensitivity) for + * all your applications that use this function. + * - Always use a unique app string for each one, and make sure it never + * changes for an app once you've decided on it. + * - Unicode characters are legal, as long as it's UTF-8 encoded, but... + * - ...only use letters, numbers, and spaces. Avoid punctuation like + * "Game Name 2: Bad Guy's Revenge!" ... "Game Name 2" is sufficient. + * + * This returns an absolute path in UTF-8 encoding, and is guaranteed to + * end with a path separator ('\\' on Windows, '/' most other places). + * + * The pointer returned by this function is owned by you. Please call + * SDL_free() on the pointer when you are done with it, or it will be a + * memory leak. This is not necessarily a fast call, though, so you should + * call this once near startup and save the string if you need it. + * + * You should assume the path returned by this function is the only safe + * place to write files (and that SDL_GetBasePath(), while it might be + * writable, or even the parent of the returned path, aren't where you + * should be writing things). + * + * Some platforms can't determine the pref path, and on other + * platforms, this might be meaningless. In such cases, this function will + * return NULL. + * + * \param org The name of your organization. + * \param app The name of your application. + * \return UTF-8 string of user dir in platform-dependent notation. NULL + * if there's a problem (creating directory failed, etc). + * + * \sa SDL_GetBasePath + */ +extern DECLSPEC char *SDLCALL SDL_GetPrefPath(const char *org, const char *app); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_system_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_gamecontroller.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_gamecontroller.h new file mode 100644 index 0000000..b00ad71 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_gamecontroller.h @@ -0,0 +1,316 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_gamecontroller.h + * + * Include file for SDL game controller event handling + */ + +#ifndef _SDL_gamecontroller_h +#define _SDL_gamecontroller_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" +#include "SDL_rwops.h" +#include "SDL_joystick.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \file SDL_gamecontroller.h + * + * In order to use these functions, SDL_Init() must have been called + * with the ::SDL_INIT_JOYSTICK flag. This causes SDL to scan the system + * for game controllers, and load appropriate drivers. + * + * If you would like to receive controller updates while the application + * is in the background, you should set the following hint before calling + * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS + */ + +/* The gamecontroller structure used to identify an SDL game controller */ +struct _SDL_GameController; +typedef struct _SDL_GameController SDL_GameController; + + +typedef enum +{ + SDL_CONTROLLER_BINDTYPE_NONE = 0, + SDL_CONTROLLER_BINDTYPE_BUTTON, + SDL_CONTROLLER_BINDTYPE_AXIS, + SDL_CONTROLLER_BINDTYPE_HAT +} SDL_GameControllerBindType; + +/** + * Get the SDL joystick layer binding for this controller button/axis mapping + */ +typedef struct SDL_GameControllerButtonBind +{ + SDL_GameControllerBindType bindType; + union + { + int button; + int axis; + struct { + int hat; + int hat_mask; + } hat; + } value; + +} SDL_GameControllerButtonBind; + + +/** + * To count the number of game controllers in the system for the following: + * int nJoysticks = SDL_NumJoysticks(); + * int nGameControllers = 0; + * for ( int i = 0; i < nJoysticks; i++ ) { + * if ( SDL_IsGameController(i) ) { + * nGameControllers++; + * } + * } + * + * Using the SDL_HINT_GAMECONTROLLERCONFIG hint or the SDL_GameControllerAddMapping you can add support for controllers SDL is unaware of or cause an existing controller to have a different binding. The format is: + * guid,name,mappings + * + * Where GUID is the string value from SDL_JoystickGetGUIDString(), name is the human readable string for the device and mappings are controller mappings to joystick ones. + * Under Windows there is a reserved GUID of "xinput" that covers any XInput devices. + * The mapping format for joystick is: + * bX - a joystick button, index X + * hX.Y - hat X with value Y + * aX - axis X of the joystick + * Buttons can be used as a controller axis and vice versa. + * + * This string shows an example of a valid mapping for a controller + * "341a3608000000000000504944564944,Afterglow PS3 Controller,a:b1,b:b2,y:b3,x:b0,start:b9,guide:b12,back:b8,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftshoulder:b4,rightshoulder:b5,leftstick:b10,rightstick:b11,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b6,righttrigger:b7", + * + */ + +/** + * Load a set of mappings from a seekable SDL data stream (memory or file), filtered by the current SDL_GetPlatform() + * A community sourced database of controllers is available at https://raw.github.com/gabomdq/SDL_GameControllerDB/master/gamecontrollerdb.txt + * + * If \c freerw is non-zero, the stream will be closed after being read. + * + * \return number of mappings added, -1 on error + */ +extern DECLSPEC int SDLCALL SDL_GameControllerAddMappingsFromRW( SDL_RWops * rw, int freerw ); + +/** + * Load a set of mappings from a file, filtered by the current SDL_GetPlatform() + * + * Convenience macro. + */ +#define SDL_GameControllerAddMappingsFromFile(file) SDL_GameControllerAddMappingsFromRW(SDL_RWFromFile(file, "rb"), 1) + +/** + * Add or update an existing mapping configuration + * + * \return 1 if mapping is added, 0 if updated, -1 on error + */ +extern DECLSPEC int SDLCALL SDL_GameControllerAddMapping( const char* mappingString ); + +/** + * Get a mapping string for a GUID + * + * \return the mapping string. Must be freed with SDL_free. Returns NULL if no mapping is available + */ +extern DECLSPEC char * SDLCALL SDL_GameControllerMappingForGUID( SDL_JoystickGUID guid ); + +/** + * Get a mapping string for an open GameController + * + * \return the mapping string. Must be freed with SDL_free. Returns NULL if no mapping is available + */ +extern DECLSPEC char * SDLCALL SDL_GameControllerMapping( SDL_GameController * gamecontroller ); + +/** + * Is the joystick on this index supported by the game controller interface? + */ +extern DECLSPEC SDL_bool SDLCALL SDL_IsGameController(int joystick_index); + + +/** + * Get the implementation dependent name of a game controller. + * This can be called before any controllers are opened. + * If no name can be found, this function returns NULL. + */ +extern DECLSPEC const char *SDLCALL SDL_GameControllerNameForIndex(int joystick_index); + +/** + * Open a game controller for use. + * The index passed as an argument refers to the N'th game controller on the system. + * This index is the value which will identify this controller in future controller + * events. + * + * \return A controller identifier, or NULL if an error occurred. + */ +extern DECLSPEC SDL_GameController *SDLCALL SDL_GameControllerOpen(int joystick_index); + +/** + * Return the name for this currently opened controller + */ +extern DECLSPEC const char *SDLCALL SDL_GameControllerName(SDL_GameController *gamecontroller); + +/** + * Returns SDL_TRUE if the controller has been opened and currently connected, + * or SDL_FALSE if it has not. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_GameControllerGetAttached(SDL_GameController *gamecontroller); + +/** + * Get the underlying joystick object used by a controller + */ +extern DECLSPEC SDL_Joystick *SDLCALL SDL_GameControllerGetJoystick(SDL_GameController *gamecontroller); + +/** + * Enable/disable controller event polling. + * + * If controller events are disabled, you must call SDL_GameControllerUpdate() + * yourself and check the state of the controller when you want controller + * information. + * + * The state can be one of ::SDL_QUERY, ::SDL_ENABLE or ::SDL_IGNORE. + */ +extern DECLSPEC int SDLCALL SDL_GameControllerEventState(int state); + +/** + * Update the current state of the open game controllers. + * + * This is called automatically by the event loop if any game controller + * events are enabled. + */ +extern DECLSPEC void SDLCALL SDL_GameControllerUpdate(void); + + +/** + * The list of axes available from a controller + */ +typedef enum +{ + SDL_CONTROLLER_AXIS_INVALID = -1, + SDL_CONTROLLER_AXIS_LEFTX, + SDL_CONTROLLER_AXIS_LEFTY, + SDL_CONTROLLER_AXIS_RIGHTX, + SDL_CONTROLLER_AXIS_RIGHTY, + SDL_CONTROLLER_AXIS_TRIGGERLEFT, + SDL_CONTROLLER_AXIS_TRIGGERRIGHT, + SDL_CONTROLLER_AXIS_MAX +} SDL_GameControllerAxis; + +/** + * turn this string into a axis mapping + */ +extern DECLSPEC SDL_GameControllerAxis SDLCALL SDL_GameControllerGetAxisFromString(const char *pchString); + +/** + * turn this axis enum into a string mapping + */ +extern DECLSPEC const char* SDLCALL SDL_GameControllerGetStringForAxis(SDL_GameControllerAxis axis); + +/** + * Get the SDL joystick layer binding for this controller button mapping + */ +extern DECLSPEC SDL_GameControllerButtonBind SDLCALL +SDL_GameControllerGetBindForAxis(SDL_GameController *gamecontroller, + SDL_GameControllerAxis axis); + +/** + * Get the current state of an axis control on a game controller. + * + * The state is a value ranging from -32768 to 32767. + * + * The axis indices start at index 0. + */ +extern DECLSPEC Sint16 SDLCALL +SDL_GameControllerGetAxis(SDL_GameController *gamecontroller, + SDL_GameControllerAxis axis); + +/** + * The list of buttons available from a controller + */ +typedef enum +{ + SDL_CONTROLLER_BUTTON_INVALID = -1, + SDL_CONTROLLER_BUTTON_A, + SDL_CONTROLLER_BUTTON_B, + SDL_CONTROLLER_BUTTON_X, + SDL_CONTROLLER_BUTTON_Y, + SDL_CONTROLLER_BUTTON_BACK, + SDL_CONTROLLER_BUTTON_GUIDE, + SDL_CONTROLLER_BUTTON_START, + SDL_CONTROLLER_BUTTON_LEFTSTICK, + SDL_CONTROLLER_BUTTON_RIGHTSTICK, + SDL_CONTROLLER_BUTTON_LEFTSHOULDER, + SDL_CONTROLLER_BUTTON_RIGHTSHOULDER, + SDL_CONTROLLER_BUTTON_DPAD_UP, + SDL_CONTROLLER_BUTTON_DPAD_DOWN, + SDL_CONTROLLER_BUTTON_DPAD_LEFT, + SDL_CONTROLLER_BUTTON_DPAD_RIGHT, + SDL_CONTROLLER_BUTTON_MAX +} SDL_GameControllerButton; + +/** + * turn this string into a button mapping + */ +extern DECLSPEC SDL_GameControllerButton SDLCALL SDL_GameControllerGetButtonFromString(const char *pchString); + +/** + * turn this button enum into a string mapping + */ +extern DECLSPEC const char* SDLCALL SDL_GameControllerGetStringForButton(SDL_GameControllerButton button); + +/** + * Get the SDL joystick layer binding for this controller button mapping + */ +extern DECLSPEC SDL_GameControllerButtonBind SDLCALL +SDL_GameControllerGetBindForButton(SDL_GameController *gamecontroller, + SDL_GameControllerButton button); + + +/** + * Get the current state of a button on a game controller. + * + * The button indices start at index 0. + */ +extern DECLSPEC Uint8 SDLCALL SDL_GameControllerGetButton(SDL_GameController *gamecontroller, + SDL_GameControllerButton button); + +/** + * Close a controller previously opened with SDL_GameControllerOpen(). + */ +extern DECLSPEC void SDLCALL SDL_GameControllerClose(SDL_GameController *gamecontroller); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_gamecontroller_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_gesture.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_gesture.h new file mode 100644 index 0000000..dbc1692 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_gesture.h @@ -0,0 +1,87 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_gesture.h + * + * Include file for SDL gesture event handling. + */ + +#ifndef _SDL_gesture_h +#define _SDL_gesture_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" +#include "SDL_video.h" + +#include "SDL_touch.h" + + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +typedef Sint64 SDL_GestureID; + +/* Function prototypes */ + +/** + * \brief Begin Recording a gesture on the specified touch, or all touches (-1) + * + * + */ +extern DECLSPEC int SDLCALL SDL_RecordGesture(SDL_TouchID touchId); + + +/** + * \brief Save all currently loaded Dollar Gesture templates + * + * + */ +extern DECLSPEC int SDLCALL SDL_SaveAllDollarTemplates(SDL_RWops *dst); + +/** + * \brief Save a currently loaded Dollar Gesture template + * + * + */ +extern DECLSPEC int SDLCALL SDL_SaveDollarTemplate(SDL_GestureID gestureId,SDL_RWops *dst); + + +/** + * \brief Load Dollar Gesture templates from a file + * + * + */ +extern DECLSPEC int SDLCALL SDL_LoadDollarTemplates(SDL_TouchID touchId, SDL_RWops *src); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_gesture_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_haptic.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_haptic.h new file mode 100644 index 0000000..234975a --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_haptic.h @@ -0,0 +1,1225 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_haptic.h + * + * \brief The SDL Haptic subsystem allows you to control haptic (force feedback) + * devices. + * + * The basic usage is as follows: + * - Initialize the Subsystem (::SDL_INIT_HAPTIC). + * - Open a Haptic Device. + * - SDL_HapticOpen() to open from index. + * - SDL_HapticOpenFromJoystick() to open from an existing joystick. + * - Create an effect (::SDL_HapticEffect). + * - Upload the effect with SDL_HapticNewEffect(). + * - Run the effect with SDL_HapticRunEffect(). + * - (optional) Free the effect with SDL_HapticDestroyEffect(). + * - Close the haptic device with SDL_HapticClose(). + * + * \par Simple rumble example: + * \code + * SDL_Haptic *haptic; + * + * // Open the device + * haptic = SDL_HapticOpen( 0 ); + * if (haptic == NULL) + * return -1; + * + * // Initialize simple rumble + * if (SDL_HapticRumbleInit( haptic ) != 0) + * return -1; + * + * // Play effect at 50% strength for 2 seconds + * if (SDL_HapticRumblePlay( haptic, 0.5, 2000 ) != 0) + * return -1; + * SDL_Delay( 2000 ); + * + * // Clean up + * SDL_HapticClose( haptic ); + * \endcode + * + * \par Complete example: + * \code + * int test_haptic( SDL_Joystick * joystick ) { + * SDL_Haptic *haptic; + * SDL_HapticEffect effect; + * int effect_id; + * + * // Open the device + * haptic = SDL_HapticOpenFromJoystick( joystick ); + * if (haptic == NULL) return -1; // Most likely joystick isn't haptic + * + * // See if it can do sine waves + * if ((SDL_HapticQuery(haptic) & SDL_HAPTIC_SINE)==0) { + * SDL_HapticClose(haptic); // No sine effect + * return -1; + * } + * + * // Create the effect + * memset( &effect, 0, sizeof(SDL_HapticEffect) ); // 0 is safe default + * effect.type = SDL_HAPTIC_SINE; + * effect.periodic.direction.type = SDL_HAPTIC_POLAR; // Polar coordinates + * effect.periodic.direction.dir[0] = 18000; // Force comes from south + * effect.periodic.period = 1000; // 1000 ms + * effect.periodic.magnitude = 20000; // 20000/32767 strength + * effect.periodic.length = 5000; // 5 seconds long + * effect.periodic.attack_length = 1000; // Takes 1 second to get max strength + * effect.periodic.fade_length = 1000; // Takes 1 second to fade away + * + * // Upload the effect + * effect_id = SDL_HapticNewEffect( haptic, &effect ); + * + * // Test the effect + * SDL_HapticRunEffect( haptic, effect_id, 1 ); + * SDL_Delay( 5000); // Wait for the effect to finish + * + * // We destroy the effect, although closing the device also does this + * SDL_HapticDestroyEffect( haptic, effect_id ); + * + * // Close the device + * SDL_HapticClose(haptic); + * + * return 0; // Success + * } + * \endcode + * + * You can also find out more information on my blog: + * http://bobbens.dyndns.org/journal/2010/sdl_haptic/ + * + * \author Edgar Simo Serra + */ + +#ifndef _SDL_haptic_h +#define _SDL_haptic_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" +#include "SDL_joystick.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/** + * \typedef SDL_Haptic + * + * \brief The haptic structure used to identify an SDL haptic. + * + * \sa SDL_HapticOpen + * \sa SDL_HapticOpenFromJoystick + * \sa SDL_HapticClose + */ +struct _SDL_Haptic; +typedef struct _SDL_Haptic SDL_Haptic; + + +/** + * \name Haptic features + * + * Different haptic features a device can have. + */ +/* @{ */ + +/** + * \name Haptic effects + */ +/* @{ */ + +/** + * \brief Constant effect supported. + * + * Constant haptic effect. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_CONSTANT (1<<0) + +/** + * \brief Sine wave effect supported. + * + * Periodic haptic effect that simulates sine waves. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SINE (1<<1) + +/** + * \brief Left/Right effect supported. + * + * Haptic effect for direct control over high/low frequency motors. + * + * \sa SDL_HapticLeftRight + * \warning this value was SDL_HAPTIC_SQUARE right before 2.0.0 shipped. Sorry, + * we ran out of bits, and this is important for XInput devices. + */ +#define SDL_HAPTIC_LEFTRIGHT (1<<2) + +/* !!! FIXME: put this back when we have more bits in 2.1 */ +/* #define SDL_HAPTIC_SQUARE (1<<2) */ + +/** + * \brief Triangle wave effect supported. + * + * Periodic haptic effect that simulates triangular waves. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_TRIANGLE (1<<3) + +/** + * \brief Sawtoothup wave effect supported. + * + * Periodic haptic effect that simulates saw tooth up waves. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SAWTOOTHUP (1<<4) + +/** + * \brief Sawtoothdown wave effect supported. + * + * Periodic haptic effect that simulates saw tooth down waves. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SAWTOOTHDOWN (1<<5) + +/** + * \brief Ramp effect supported. + * + * Ramp haptic effect. + * + * \sa SDL_HapticRamp + */ +#define SDL_HAPTIC_RAMP (1<<6) + +/** + * \brief Spring effect supported - uses axes position. + * + * Condition haptic effect that simulates a spring. Effect is based on the + * axes position. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_SPRING (1<<7) + +/** + * \brief Damper effect supported - uses axes velocity. + * + * Condition haptic effect that simulates dampening. Effect is based on the + * axes velocity. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_DAMPER (1<<8) + +/** + * \brief Inertia effect supported - uses axes acceleration. + * + * Condition haptic effect that simulates inertia. Effect is based on the axes + * acceleration. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_INERTIA (1<<9) + +/** + * \brief Friction effect supported - uses axes movement. + * + * Condition haptic effect that simulates friction. Effect is based on the + * axes movement. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_FRICTION (1<<10) + +/** + * \brief Custom effect is supported. + * + * User defined custom haptic effect. + */ +#define SDL_HAPTIC_CUSTOM (1<<11) + +/* @} *//* Haptic effects */ + +/* These last few are features the device has, not effects */ + +/** + * \brief Device can set global gain. + * + * Device supports setting the global gain. + * + * \sa SDL_HapticSetGain + */ +#define SDL_HAPTIC_GAIN (1<<12) + +/** + * \brief Device can set autocenter. + * + * Device supports setting autocenter. + * + * \sa SDL_HapticSetAutocenter + */ +#define SDL_HAPTIC_AUTOCENTER (1<<13) + +/** + * \brief Device can be queried for effect status. + * + * Device can be queried for effect status. + * + * \sa SDL_HapticGetEffectStatus + */ +#define SDL_HAPTIC_STATUS (1<<14) + +/** + * \brief Device can be paused. + * + * \sa SDL_HapticPause + * \sa SDL_HapticUnpause + */ +#define SDL_HAPTIC_PAUSE (1<<15) + + +/** + * \name Direction encodings + */ +/* @{ */ + +/** + * \brief Uses polar coordinates for the direction. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_POLAR 0 + +/** + * \brief Uses cartesian coordinates for the direction. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_CARTESIAN 1 + +/** + * \brief Uses spherical coordinates for the direction. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_SPHERICAL 2 + +/* @} *//* Direction encodings */ + +/* @} *//* Haptic features */ + +/* + * Misc defines. + */ + +/** + * \brief Used to play a device an infinite number of times. + * + * \sa SDL_HapticRunEffect + */ +#define SDL_HAPTIC_INFINITY 4294967295U + + +/** + * \brief Structure that represents a haptic direction. + * + * Directions can be specified by: + * - ::SDL_HAPTIC_POLAR : Specified by polar coordinates. + * - ::SDL_HAPTIC_CARTESIAN : Specified by cartesian coordinates. + * - ::SDL_HAPTIC_SPHERICAL : Specified by spherical coordinates. + * + * Cardinal directions of the haptic device are relative to the positioning + * of the device. North is considered to be away from the user. + * + * The following diagram represents the cardinal directions: + * \verbatim + .--. + |__| .-------. + |=.| |.-----.| + |--| || || + | | |'-----'| + |__|~')_____(' + [ COMPUTER ] + + + North (0,-1) + ^ + | + | + (1,0) West <----[ HAPTIC ]----> East (-1,0) + | + | + v + South (0,1) + + + [ USER ] + \|||/ + (o o) + ---ooO-(_)-Ooo--- + \endverbatim + * + * If type is ::SDL_HAPTIC_POLAR, direction is encoded by hundredths of a + * degree starting north and turning clockwise. ::SDL_HAPTIC_POLAR only uses + * the first \c dir parameter. The cardinal directions would be: + * - North: 0 (0 degrees) + * - East: 9000 (90 degrees) + * - South: 18000 (180 degrees) + * - West: 27000 (270 degrees) + * + * If type is ::SDL_HAPTIC_CARTESIAN, direction is encoded by three positions + * (X axis, Y axis and Z axis (with 3 axes)). ::SDL_HAPTIC_CARTESIAN uses + * the first three \c dir parameters. The cardinal directions would be: + * - North: 0,-1, 0 + * - East: -1, 0, 0 + * - South: 0, 1, 0 + * - West: 1, 0, 0 + * + * The Z axis represents the height of the effect if supported, otherwise + * it's unused. In cartesian encoding (1, 2) would be the same as (2, 4), you + * can use any multiple you want, only the direction matters. + * + * If type is ::SDL_HAPTIC_SPHERICAL, direction is encoded by two rotations. + * The first two \c dir parameters are used. The \c dir parameters are as + * follows (all values are in hundredths of degrees): + * - Degrees from (1, 0) rotated towards (0, 1). + * - Degrees towards (0, 0, 1) (device needs at least 3 axes). + * + * + * Example of force coming from the south with all encodings (force coming + * from the south means the user will have to pull the stick to counteract): + * \code + * SDL_HapticDirection direction; + * + * // Cartesian directions + * direction.type = SDL_HAPTIC_CARTESIAN; // Using cartesian direction encoding. + * direction.dir[0] = 0; // X position + * direction.dir[1] = 1; // Y position + * // Assuming the device has 2 axes, we don't need to specify third parameter. + * + * // Polar directions + * direction.type = SDL_HAPTIC_POLAR; // We'll be using polar direction encoding. + * direction.dir[0] = 18000; // Polar only uses first parameter + * + * // Spherical coordinates + * direction.type = SDL_HAPTIC_SPHERICAL; // Spherical encoding + * direction.dir[0] = 9000; // Since we only have two axes we don't need more parameters. + * \endcode + * + * \sa SDL_HAPTIC_POLAR + * \sa SDL_HAPTIC_CARTESIAN + * \sa SDL_HAPTIC_SPHERICAL + * \sa SDL_HapticEffect + * \sa SDL_HapticNumAxes + */ +typedef struct SDL_HapticDirection +{ + Uint8 type; /**< The type of encoding. */ + Sint32 dir[3]; /**< The encoded direction. */ +} SDL_HapticDirection; + + +/** + * \brief A structure containing a template for a Constant effect. + * + * The struct is exclusive to the ::SDL_HAPTIC_CONSTANT effect. + * + * A constant effect applies a constant force in the specified direction + * to the joystick. + * + * \sa SDL_HAPTIC_CONSTANT + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticConstant +{ + /* Header */ + Uint16 type; /**< ::SDL_HAPTIC_CONSTANT */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Constant */ + Sint16 level; /**< Strength of the constant effect. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticConstant; + +/** + * \brief A structure containing a template for a Periodic effect. + * + * The struct handles the following effects: + * - ::SDL_HAPTIC_SINE + * - ::SDL_HAPTIC_LEFTRIGHT + * - ::SDL_HAPTIC_TRIANGLE + * - ::SDL_HAPTIC_SAWTOOTHUP + * - ::SDL_HAPTIC_SAWTOOTHDOWN + * + * A periodic effect consists in a wave-shaped effect that repeats itself + * over time. The type determines the shape of the wave and the parameters + * determine the dimensions of the wave. + * + * Phase is given by hundredth of a cycle meaning that giving the phase a value + * of 9000 will displace it 25% of its period. Here are sample values: + * - 0: No phase displacement. + * - 9000: Displaced 25% of its period. + * - 18000: Displaced 50% of its period. + * - 27000: Displaced 75% of its period. + * - 36000: Displaced 100% of its period, same as 0, but 0 is preferred. + * + * Examples: + * \verbatim + SDL_HAPTIC_SINE + __ __ __ __ + / \ / \ / \ / + / \__/ \__/ \__/ + + SDL_HAPTIC_SQUARE + __ __ __ __ __ + | | | | | | | | | | + | |__| |__| |__| |__| | + + SDL_HAPTIC_TRIANGLE + /\ /\ /\ /\ /\ + / \ / \ / \ / \ / + / \/ \/ \/ \/ + + SDL_HAPTIC_SAWTOOTHUP + /| /| /| /| /| /| /| + / | / | / | / | / | / | / | + / |/ |/ |/ |/ |/ |/ | + + SDL_HAPTIC_SAWTOOTHDOWN + \ |\ |\ |\ |\ |\ |\ | + \ | \ | \ | \ | \ | \ | \ | + \| \| \| \| \| \| \| + \endverbatim + * + * \sa SDL_HAPTIC_SINE + * \sa SDL_HAPTIC_LEFTRIGHT + * \sa SDL_HAPTIC_TRIANGLE + * \sa SDL_HAPTIC_SAWTOOTHUP + * \sa SDL_HAPTIC_SAWTOOTHDOWN + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticPeriodic +{ + /* Header */ + Uint16 type; /**< ::SDL_HAPTIC_SINE, ::SDL_HAPTIC_LEFTRIGHT, + ::SDL_HAPTIC_TRIANGLE, ::SDL_HAPTIC_SAWTOOTHUP or + ::SDL_HAPTIC_SAWTOOTHDOWN */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Periodic */ + Uint16 period; /**< Period of the wave. */ + Sint16 magnitude; /**< Peak value. */ + Sint16 offset; /**< Mean value of the wave. */ + Uint16 phase; /**< Horizontal shift given by hundredth of a cycle. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticPeriodic; + +/** + * \brief A structure containing a template for a Condition effect. + * + * The struct handles the following effects: + * - ::SDL_HAPTIC_SPRING: Effect based on axes position. + * - ::SDL_HAPTIC_DAMPER: Effect based on axes velocity. + * - ::SDL_HAPTIC_INERTIA: Effect based on axes acceleration. + * - ::SDL_HAPTIC_FRICTION: Effect based on axes movement. + * + * Direction is handled by condition internals instead of a direction member. + * The condition effect specific members have three parameters. The first + * refers to the X axis, the second refers to the Y axis and the third + * refers to the Z axis. The right terms refer to the positive side of the + * axis and the left terms refer to the negative side of the axis. Please + * refer to the ::SDL_HapticDirection diagram for which side is positive and + * which is negative. + * + * \sa SDL_HapticDirection + * \sa SDL_HAPTIC_SPRING + * \sa SDL_HAPTIC_DAMPER + * \sa SDL_HAPTIC_INERTIA + * \sa SDL_HAPTIC_FRICTION + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticCondition +{ + /* Header */ + Uint16 type; /**< ::SDL_HAPTIC_SPRING, ::SDL_HAPTIC_DAMPER, + ::SDL_HAPTIC_INERTIA or ::SDL_HAPTIC_FRICTION */ + SDL_HapticDirection direction; /**< Direction of the effect - Not used ATM. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Condition */ + Uint16 right_sat[3]; /**< Level when joystick is to the positive side. */ + Uint16 left_sat[3]; /**< Level when joystick is to the negative side. */ + Sint16 right_coeff[3]; /**< How fast to increase the force towards the positive side. */ + Sint16 left_coeff[3]; /**< How fast to increase the force towards the negative side. */ + Uint16 deadband[3]; /**< Size of the dead zone. */ + Sint16 center[3]; /**< Position of the dead zone. */ +} SDL_HapticCondition; + +/** + * \brief A structure containing a template for a Ramp effect. + * + * This struct is exclusively for the ::SDL_HAPTIC_RAMP effect. + * + * The ramp effect starts at start strength and ends at end strength. + * It augments in linear fashion. If you use attack and fade with a ramp + * the effects get added to the ramp effect making the effect become + * quadratic instead of linear. + * + * \sa SDL_HAPTIC_RAMP + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticRamp +{ + /* Header */ + Uint16 type; /**< ::SDL_HAPTIC_RAMP */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Ramp */ + Sint16 start; /**< Beginning strength level. */ + Sint16 end; /**< Ending strength level. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticRamp; + +/** + * \brief A structure containing a template for a Left/Right effect. + * + * This struct is exclusively for the ::SDL_HAPTIC_LEFTRIGHT effect. + * + * The Left/Right effect is used to explicitly control the large and small + * motors, commonly found in modern game controllers. One motor is high + * frequency, the other is low frequency. + * + * \sa SDL_HAPTIC_LEFTRIGHT + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticLeftRight +{ + /* Header */ + Uint16 type; /**< ::SDL_HAPTIC_LEFTRIGHT */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + + /* Rumble */ + Uint16 large_magnitude; /**< Control of the large controller motor. */ + Uint16 small_magnitude; /**< Control of the small controller motor. */ +} SDL_HapticLeftRight; + +/** + * \brief A structure containing a template for the ::SDL_HAPTIC_CUSTOM effect. + * + * A custom force feedback effect is much like a periodic effect, where the + * application can define its exact shape. You will have to allocate the + * data yourself. Data should consist of channels * samples Uint16 samples. + * + * If channels is one, the effect is rotated using the defined direction. + * Otherwise it uses the samples in data for the different axes. + * + * \sa SDL_HAPTIC_CUSTOM + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticCustom +{ + /* Header */ + Uint16 type; /**< ::SDL_HAPTIC_CUSTOM */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Custom */ + Uint8 channels; /**< Axes to use, minimum of one. */ + Uint16 period; /**< Sample periods. */ + Uint16 samples; /**< Amount of samples. */ + Uint16 *data; /**< Should contain channels*samples items. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticCustom; + +/** + * \brief The generic template for any haptic effect. + * + * All values max at 32767 (0x7FFF). Signed values also can be negative. + * Time values unless specified otherwise are in milliseconds. + * + * You can also pass ::SDL_HAPTIC_INFINITY to length instead of a 0-32767 + * value. Neither delay, interval, attack_length nor fade_length support + * ::SDL_HAPTIC_INFINITY. Fade will also not be used since effect never ends. + * + * Additionally, the ::SDL_HAPTIC_RAMP effect does not support a duration of + * ::SDL_HAPTIC_INFINITY. + * + * Button triggers may not be supported on all devices, it is advised to not + * use them if possible. Buttons start at index 1 instead of index 0 like + * the joystick. + * + * If both attack_length and fade_level are 0, the envelope is not used, + * otherwise both values are used. + * + * Common parts: + * \code + * // Replay - All effects have this + * Uint32 length; // Duration of effect (ms). + * Uint16 delay; // Delay before starting effect. + * + * // Trigger - All effects have this + * Uint16 button; // Button that triggers effect. + * Uint16 interval; // How soon before effect can be triggered again. + * + * // Envelope - All effects except condition effects have this + * Uint16 attack_length; // Duration of the attack (ms). + * Uint16 attack_level; // Level at the start of the attack. + * Uint16 fade_length; // Duration of the fade out (ms). + * Uint16 fade_level; // Level at the end of the fade. + * \endcode + * + * + * Here we have an example of a constant effect evolution in time: + * \verbatim + Strength + ^ + | + | effect level --> _________________ + | / \ + | / \ + | / \ + | / \ + | attack_level --> | \ + | | | <--- fade_level + | + +--------------------------------------------------> Time + [--] [---] + attack_length fade_length + + [------------------][-----------------------] + delay length + \endverbatim + * + * Note either the attack_level or the fade_level may be above the actual + * effect level. + * + * \sa SDL_HapticConstant + * \sa SDL_HapticPeriodic + * \sa SDL_HapticCondition + * \sa SDL_HapticRamp + * \sa SDL_HapticLeftRight + * \sa SDL_HapticCustom + */ +typedef union SDL_HapticEffect +{ + /* Common for all force feedback effects */ + Uint16 type; /**< Effect type. */ + SDL_HapticConstant constant; /**< Constant effect. */ + SDL_HapticPeriodic periodic; /**< Periodic effect. */ + SDL_HapticCondition condition; /**< Condition effect. */ + SDL_HapticRamp ramp; /**< Ramp effect. */ + SDL_HapticLeftRight leftright; /**< Left/Right effect. */ + SDL_HapticCustom custom; /**< Custom effect. */ +} SDL_HapticEffect; + + +/* Function prototypes */ +/** + * \brief Count the number of haptic devices attached to the system. + * + * \return Number of haptic devices detected on the system. + */ +extern DECLSPEC int SDLCALL SDL_NumHaptics(void); + +/** + * \brief Get the implementation dependent name of a Haptic device. + * + * This can be called before any joysticks are opened. + * If no name can be found, this function returns NULL. + * + * \param device_index Index of the device to get its name. + * \return Name of the device or NULL on error. + * + * \sa SDL_NumHaptics + */ +extern DECLSPEC const char *SDLCALL SDL_HapticName(int device_index); + +/** + * \brief Opens a Haptic device for usage. + * + * The index passed as an argument refers to the N'th Haptic device on this + * system. + * + * When opening a haptic device, its gain will be set to maximum and + * autocenter will be disabled. To modify these values use + * SDL_HapticSetGain() and SDL_HapticSetAutocenter(). + * + * \param device_index Index of the device to open. + * \return Device identifier or NULL on error. + * + * \sa SDL_HapticIndex + * \sa SDL_HapticOpenFromMouse + * \sa SDL_HapticOpenFromJoystick + * \sa SDL_HapticClose + * \sa SDL_HapticSetGain + * \sa SDL_HapticSetAutocenter + * \sa SDL_HapticPause + * \sa SDL_HapticStopAll + */ +extern DECLSPEC SDL_Haptic *SDLCALL SDL_HapticOpen(int device_index); + +/** + * \brief Checks if the haptic device at index has been opened. + * + * \param device_index Index to check to see if it has been opened. + * \return 1 if it has been opened or 0 if it hasn't. + * + * \sa SDL_HapticOpen + * \sa SDL_HapticIndex + */ +extern DECLSPEC int SDLCALL SDL_HapticOpened(int device_index); + +/** + * \brief Gets the index of a haptic device. + * + * \param haptic Haptic device to get the index of. + * \return The index of the haptic device or -1 on error. + * + * \sa SDL_HapticOpen + * \sa SDL_HapticOpened + */ +extern DECLSPEC int SDLCALL SDL_HapticIndex(SDL_Haptic * haptic); + +/** + * \brief Gets whether or not the current mouse has haptic capabilities. + * + * \return SDL_TRUE if the mouse is haptic, SDL_FALSE if it isn't. + * + * \sa SDL_HapticOpenFromMouse + */ +extern DECLSPEC int SDLCALL SDL_MouseIsHaptic(void); + +/** + * \brief Tries to open a haptic device from the current mouse. + * + * \return The haptic device identifier or NULL on error. + * + * \sa SDL_MouseIsHaptic + * \sa SDL_HapticOpen + */ +extern DECLSPEC SDL_Haptic *SDLCALL SDL_HapticOpenFromMouse(void); + +/** + * \brief Checks to see if a joystick has haptic features. + * + * \param joystick Joystick to test for haptic capabilities. + * \return 1 if the joystick is haptic, 0 if it isn't + * or -1 if an error ocurred. + * + * \sa SDL_HapticOpenFromJoystick + */ +extern DECLSPEC int SDLCALL SDL_JoystickIsHaptic(SDL_Joystick * joystick); + +/** + * \brief Opens a Haptic device for usage from a Joystick device. + * + * You must still close the haptic device seperately. It will not be closed + * with the joystick. + * + * When opening from a joystick you should first close the haptic device before + * closing the joystick device. If not, on some implementations the haptic + * device will also get unallocated and you'll be unable to use force feedback + * on that device. + * + * \param joystick Joystick to create a haptic device from. + * \return A valid haptic device identifier on success or NULL on error. + * + * \sa SDL_HapticOpen + * \sa SDL_HapticClose + */ +extern DECLSPEC SDL_Haptic *SDLCALL SDL_HapticOpenFromJoystick(SDL_Joystick * + joystick); + +/** + * \brief Closes a Haptic device previously opened with SDL_HapticOpen(). + * + * \param haptic Haptic device to close. + */ +extern DECLSPEC void SDLCALL SDL_HapticClose(SDL_Haptic * haptic); + +/** + * \brief Returns the number of effects a haptic device can store. + * + * On some platforms this isn't fully supported, and therefore is an + * approximation. Always check to see if your created effect was actually + * created and do not rely solely on SDL_HapticNumEffects(). + * + * \param haptic The haptic device to query effect max. + * \return The number of effects the haptic device can store or + * -1 on error. + * + * \sa SDL_HapticNumEffectsPlaying + * \sa SDL_HapticQuery + */ +extern DECLSPEC int SDLCALL SDL_HapticNumEffects(SDL_Haptic * haptic); + +/** + * \brief Returns the number of effects a haptic device can play at the same + * time. + * + * This is not supported on all platforms, but will always return a value. + * Added here for the sake of completeness. + * + * \param haptic The haptic device to query maximum playing effects. + * \return The number of effects the haptic device can play at the same time + * or -1 on error. + * + * \sa SDL_HapticNumEffects + * \sa SDL_HapticQuery + */ +extern DECLSPEC int SDLCALL SDL_HapticNumEffectsPlaying(SDL_Haptic * haptic); + +/** + * \brief Gets the haptic devices supported features in bitwise matter. + * + * Example: + * \code + * if (SDL_HapticQuery(haptic) & SDL_HAPTIC_CONSTANT) { + * printf("We have constant haptic effect!"); + * } + * \endcode + * + * \param haptic The haptic device to query. + * \return Haptic features in bitwise manner (OR'd). + * + * \sa SDL_HapticNumEffects + * \sa SDL_HapticEffectSupported + */ +extern DECLSPEC unsigned int SDLCALL SDL_HapticQuery(SDL_Haptic * haptic); + + +/** + * \brief Gets the number of haptic axes the device has. + * + * \sa SDL_HapticDirection + */ +extern DECLSPEC int SDLCALL SDL_HapticNumAxes(SDL_Haptic * haptic); + +/** + * \brief Checks to see if effect is supported by haptic. + * + * \param haptic Haptic device to check on. + * \param effect Effect to check to see if it is supported. + * \return SDL_TRUE if effect is supported, SDL_FALSE if it isn't or -1 on error. + * + * \sa SDL_HapticQuery + * \sa SDL_HapticNewEffect + */ +extern DECLSPEC int SDLCALL SDL_HapticEffectSupported(SDL_Haptic * haptic, + SDL_HapticEffect * + effect); + +/** + * \brief Creates a new haptic effect on the device. + * + * \param haptic Haptic device to create the effect on. + * \param effect Properties of the effect to create. + * \return The id of the effect on success or -1 on error. + * + * \sa SDL_HapticUpdateEffect + * \sa SDL_HapticRunEffect + * \sa SDL_HapticDestroyEffect + */ +extern DECLSPEC int SDLCALL SDL_HapticNewEffect(SDL_Haptic * haptic, + SDL_HapticEffect * effect); + +/** + * \brief Updates the properties of an effect. + * + * Can be used dynamically, although behaviour when dynamically changing + * direction may be strange. Specifically the effect may reupload itself + * and start playing from the start. You cannot change the type either when + * running SDL_HapticUpdateEffect(). + * + * \param haptic Haptic device that has the effect. + * \param effect Effect to update. + * \param data New effect properties to use. + * \return 0 on success or -1 on error. + * + * \sa SDL_HapticNewEffect + * \sa SDL_HapticRunEffect + * \sa SDL_HapticDestroyEffect + */ +extern DECLSPEC int SDLCALL SDL_HapticUpdateEffect(SDL_Haptic * haptic, + int effect, + SDL_HapticEffect * data); + +/** + * \brief Runs the haptic effect on its associated haptic device. + * + * If iterations are ::SDL_HAPTIC_INFINITY, it'll run the effect over and over + * repeating the envelope (attack and fade) every time. If you only want the + * effect to last forever, set ::SDL_HAPTIC_INFINITY in the effect's length + * parameter. + * + * \param haptic Haptic device to run the effect on. + * \param effect Identifier of the haptic effect to run. + * \param iterations Number of iterations to run the effect. Use + * ::SDL_HAPTIC_INFINITY for infinity. + * \return 0 on success or -1 on error. + * + * \sa SDL_HapticStopEffect + * \sa SDL_HapticDestroyEffect + * \sa SDL_HapticGetEffectStatus + */ +extern DECLSPEC int SDLCALL SDL_HapticRunEffect(SDL_Haptic * haptic, + int effect, + Uint32 iterations); + +/** + * \brief Stops the haptic effect on its associated haptic device. + * + * \param haptic Haptic device to stop the effect on. + * \param effect Identifier of the effect to stop. + * \return 0 on success or -1 on error. + * + * \sa SDL_HapticRunEffect + * \sa SDL_HapticDestroyEffect + */ +extern DECLSPEC int SDLCALL SDL_HapticStopEffect(SDL_Haptic * haptic, + int effect); + +/** + * \brief Destroys a haptic effect on the device. + * + * This will stop the effect if it's running. Effects are automatically + * destroyed when the device is closed. + * + * \param haptic Device to destroy the effect on. + * \param effect Identifier of the effect to destroy. + * + * \sa SDL_HapticNewEffect + */ +extern DECLSPEC void SDLCALL SDL_HapticDestroyEffect(SDL_Haptic * haptic, + int effect); + +/** + * \brief Gets the status of the current effect on the haptic device. + * + * Device must support the ::SDL_HAPTIC_STATUS feature. + * + * \param haptic Haptic device to query the effect status on. + * \param effect Identifier of the effect to query its status. + * \return 0 if it isn't playing, 1 if it is playing or -1 on error. + * + * \sa SDL_HapticRunEffect + * \sa SDL_HapticStopEffect + */ +extern DECLSPEC int SDLCALL SDL_HapticGetEffectStatus(SDL_Haptic * haptic, + int effect); + +/** + * \brief Sets the global gain of the device. + * + * Device must support the ::SDL_HAPTIC_GAIN feature. + * + * The user may specify the maximum gain by setting the environment variable + * SDL_HAPTIC_GAIN_MAX which should be between 0 and 100. All calls to + * SDL_HapticSetGain() will scale linearly using SDL_HAPTIC_GAIN_MAX as the + * maximum. + * + * \param haptic Haptic device to set the gain on. + * \param gain Value to set the gain to, should be between 0 and 100. + * \return 0 on success or -1 on error. + * + * \sa SDL_HapticQuery + */ +extern DECLSPEC int SDLCALL SDL_HapticSetGain(SDL_Haptic * haptic, int gain); + +/** + * \brief Sets the global autocenter of the device. + * + * Autocenter should be between 0 and 100. Setting it to 0 will disable + * autocentering. + * + * Device must support the ::SDL_HAPTIC_AUTOCENTER feature. + * + * \param haptic Haptic device to set autocentering on. + * \param autocenter Value to set autocenter to, 0 disables autocentering. + * \return 0 on success or -1 on error. + * + * \sa SDL_HapticQuery + */ +extern DECLSPEC int SDLCALL SDL_HapticSetAutocenter(SDL_Haptic * haptic, + int autocenter); + +/** + * \brief Pauses a haptic device. + * + * Device must support the ::SDL_HAPTIC_PAUSE feature. Call + * SDL_HapticUnpause() to resume playback. + * + * Do not modify the effects nor add new ones while the device is paused. + * That can cause all sorts of weird errors. + * + * \param haptic Haptic device to pause. + * \return 0 on success or -1 on error. + * + * \sa SDL_HapticUnpause + */ +extern DECLSPEC int SDLCALL SDL_HapticPause(SDL_Haptic * haptic); + +/** + * \brief Unpauses a haptic device. + * + * Call to unpause after SDL_HapticPause(). + * + * \param haptic Haptic device to pause. + * \return 0 on success or -1 on error. + * + * \sa SDL_HapticPause + */ +extern DECLSPEC int SDLCALL SDL_HapticUnpause(SDL_Haptic * haptic); + +/** + * \brief Stops all the currently playing effects on a haptic device. + * + * \param haptic Haptic device to stop. + * \return 0 on success or -1 on error. + */ +extern DECLSPEC int SDLCALL SDL_HapticStopAll(SDL_Haptic * haptic); + +/** + * \brief Checks to see if rumble is supported on a haptic device. + * + * \param haptic Haptic device to check to see if it supports rumble. + * \return SDL_TRUE if effect is supported, SDL_FALSE if it isn't or -1 on error. + * + * \sa SDL_HapticRumbleInit + * \sa SDL_HapticRumblePlay + * \sa SDL_HapticRumbleStop + */ +extern DECLSPEC int SDLCALL SDL_HapticRumbleSupported(SDL_Haptic * haptic); + +/** + * \brief Initializes the haptic device for simple rumble playback. + * + * \param haptic Haptic device to initialize for simple rumble playback. + * \return 0 on success or -1 on error. + * + * \sa SDL_HapticOpen + * \sa SDL_HapticRumbleSupported + * \sa SDL_HapticRumblePlay + * \sa SDL_HapticRumbleStop + */ +extern DECLSPEC int SDLCALL SDL_HapticRumbleInit(SDL_Haptic * haptic); + +/** + * \brief Runs simple rumble on a haptic device + * + * \param haptic Haptic device to play rumble effect on. + * \param strength Strength of the rumble to play as a 0-1 float value. + * \param length Length of the rumble to play in milliseconds. + * \return 0 on success or -1 on error. + * + * \sa SDL_HapticRumbleSupported + * \sa SDL_HapticRumbleInit + * \sa SDL_HapticRumbleStop + */ +extern DECLSPEC int SDLCALL SDL_HapticRumblePlay(SDL_Haptic * haptic, float strength, Uint32 length ); + +/** + * \brief Stops the simple rumble on a haptic device. + * + * \param haptic Haptic to stop the rumble on. + * \return 0 on success or -1 on error. + * + * \sa SDL_HapticRumbleSupported + * \sa SDL_HapticRumbleInit + * \sa SDL_HapticRumblePlay + */ +extern DECLSPEC int SDLCALL SDL_HapticRumbleStop(SDL_Haptic * haptic); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_haptic_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_hints.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_hints.h new file mode 100644 index 0000000..b98ce68 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_hints.h @@ -0,0 +1,517 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_hints.h + * + * Official documentation for SDL configuration variables + * + * This file contains functions to set and get configuration hints, + * as well as listing each of them alphabetically. + * + * The convention for naming hints is SDL_HINT_X, where "SDL_X" is + * the environment variable that can be used to override the default. + * + * In general these hints are just that - they may or may not be + * supported or applicable on any given platform, but they provide + * a way for an application or user to give the library a hint as + * to how they would like the library to work. + */ + +#ifndef _SDL_hints_h +#define _SDL_hints_h + +#include "SDL_stdinc.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief A variable controlling how 3D acceleration is used to accelerate the SDL screen surface. + * + * SDL can try to accelerate the SDL screen surface by using streaming + * textures with a 3D rendering engine. This variable controls whether and + * how this is done. + * + * This variable can be set to the following values: + * "0" - Disable 3D acceleration + * "1" - Enable 3D acceleration, using the default renderer. + * "X" - Enable 3D acceleration, using X where X is one of the valid rendering drivers. (e.g. "direct3d", "opengl", etc.) + * + * By default SDL tries to make a best guess for each platform whether + * to use acceleration or not. + */ +#define SDL_HINT_FRAMEBUFFER_ACCELERATION "SDL_FRAMEBUFFER_ACCELERATION" + +/** + * \brief A variable specifying which render driver to use. + * + * If the application doesn't pick a specific renderer to use, this variable + * specifies the name of the preferred renderer. If the preferred renderer + * can't be initialized, the normal default renderer is used. + * + * This variable is case insensitive and can be set to the following values: + * "direct3d" + * "opengl" + * "opengles2" + * "opengles" + * "software" + * + * The default varies by platform, but it's the first one in the list that + * is available on the current platform. + */ +#define SDL_HINT_RENDER_DRIVER "SDL_RENDER_DRIVER" + +/** + * \brief A variable controlling whether the OpenGL render driver uses shaders if they are available. + * + * This variable can be set to the following values: + * "0" - Disable shaders + * "1" - Enable shaders + * + * By default shaders are used if OpenGL supports them. + */ +#define SDL_HINT_RENDER_OPENGL_SHADERS "SDL_RENDER_OPENGL_SHADERS" + +/** + * \brief A variable controlling whether the Direct3D device is initialized for thread-safe operations. + * + * This variable can be set to the following values: + * "0" - Thread-safety is not enabled (faster) + * "1" - Thread-safety is enabled + * + * By default the Direct3D device is created with thread-safety disabled. + */ +#define SDL_HINT_RENDER_DIRECT3D_THREADSAFE "SDL_RENDER_DIRECT3D_THREADSAFE" + +/** + * \brief A variable controlling whether to enable Direct3D 11+'s Debug Layer. + * + * This variable does not have any effect on the Direct3D 9 based renderer. + * + * This variable can be set to the following values: + * "0" - Disable Debug Layer use + * "1" - Enable Debug Layer use + * + * By default, SDL does not use Direct3D Debug Layer. + */ +#define SDL_HINT_RENDER_DIRECT3D11_DEBUG "SDL_HINT_RENDER_DIRECT3D11_DEBUG" + +/** + * \brief A variable controlling the scaling quality + * + * This variable can be set to the following values: + * "0" or "nearest" - Nearest pixel sampling + * "1" or "linear" - Linear filtering (supported by OpenGL and Direct3D) + * "2" or "best" - Currently this is the same as "linear" + * + * By default nearest pixel sampling is used + */ +#define SDL_HINT_RENDER_SCALE_QUALITY "SDL_RENDER_SCALE_QUALITY" + +/** + * \brief A variable controlling whether updates to the SDL screen surface should be synchronized with the vertical refresh, to avoid tearing. + * + * This variable can be set to the following values: + * "0" - Disable vsync + * "1" - Enable vsync + * + * By default SDL does not sync screen surface updates with vertical refresh. + */ +#define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC" + +/** + * \brief A variable controlling whether the screensaver is enabled. + * + * This variable can be set to the following values: + * "0" - Disable screensaver + * "1" - Enable screensaver + * + * By default SDL will disable the screensaver. + */ +#define SDL_HINT_VIDEO_ALLOW_SCREENSAVER "SDL_VIDEO_ALLOW_SCREENSAVER" + +/** + * \brief A variable controlling whether the X11 VidMode extension should be used. + * + * This variable can be set to the following values: + * "0" - Disable XVidMode + * "1" - Enable XVidMode + * + * By default SDL will use XVidMode if it is available. + */ +#define SDL_HINT_VIDEO_X11_XVIDMODE "SDL_VIDEO_X11_XVIDMODE" + +/** + * \brief A variable controlling whether the X11 Xinerama extension should be used. + * + * This variable can be set to the following values: + * "0" - Disable Xinerama + * "1" - Enable Xinerama + * + * By default SDL will use Xinerama if it is available. + */ +#define SDL_HINT_VIDEO_X11_XINERAMA "SDL_VIDEO_X11_XINERAMA" + +/** + * \brief A variable controlling whether the X11 XRandR extension should be used. + * + * This variable can be set to the following values: + * "0" - Disable XRandR + * "1" - Enable XRandR + * + * By default SDL will not use XRandR because of window manager issues. + */ +#define SDL_HINT_VIDEO_X11_XRANDR "SDL_VIDEO_X11_XRANDR" + +/** + * \brief A variable controlling whether grabbing input grabs the keyboard + * + * This variable can be set to the following values: + * "0" - Grab will affect only the mouse + * "1" - Grab will affect mouse and keyboard + * + * By default SDL will not grab the keyboard so system shortcuts still work. + */ +#define SDL_HINT_GRAB_KEYBOARD "SDL_GRAB_KEYBOARD" + +/** +* \brief A variable controlling whether relative mouse mode is implemented using mouse warping +* +* This variable can be set to the following values: +* "0" - Relative mouse mode uses raw input +* "1" - Relative mouse mode uses mouse warping +* +* By default SDL will use raw input for relative mouse mode +*/ +#define SDL_HINT_MOUSE_RELATIVE_MODE_WARP "SDL_MOUSE_RELATIVE_MODE_WARP" + +/** + * \brief Minimize your SDL_Window if it loses key focus when in fullscreen mode. Defaults to true. + * + */ +#define SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS "SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS" + +/** + * \brief A variable controlling whether the idle timer is disabled on iOS. + * + * When an iOS app does not receive touches for some time, the screen is + * dimmed automatically. For games where the accelerometer is the only input + * this is problematic. This functionality can be disabled by setting this + * hint. + * + * This variable can be set to the following values: + * "0" - Enable idle timer + * "1" - Disable idle timer + */ +#define SDL_HINT_IDLE_TIMER_DISABLED "SDL_IOS_IDLE_TIMER_DISABLED" + +/** + * \brief A variable controlling which orientations are allowed on iOS. + * + * In some circumstances it is necessary to be able to explicitly control + * which UI orientations are allowed. + * + * This variable is a space delimited list of the following values: + * "LandscapeLeft", "LandscapeRight", "Portrait" "PortraitUpsideDown" + */ +#define SDL_HINT_ORIENTATIONS "SDL_IOS_ORIENTATIONS" + +/** + * \brief A variable controlling whether an Android built-in accelerometer should be + * listed as a joystick device, rather than listing actual joysticks only. + * + * This variable can be set to the following values: + * "0" - List only real joysticks and accept input from them + * "1" - List real joysticks along with the accelerometer as if it were a 3 axis joystick (the default). + */ +#define SDL_HINT_ACCELEROMETER_AS_JOYSTICK "SDL_ACCELEROMETER_AS_JOYSTICK" + + +/** + * \brief A variable that lets you disable the detection and use of Xinput gamepad devices + * + * The variable can be set to the following values: + * "0" - Disable XInput detection (only uses direct input) + * "1" - Enable XInput detection (the default) + */ +#define SDL_HINT_XINPUT_ENABLED "SDL_XINPUT_ENABLED" + + +/** + * \brief A variable that lets you manually hint extra gamecontroller db entries + * + * The variable should be newline delimited rows of gamecontroller config data, see SDL_gamecontroller.h + * + * This hint must be set before calling SDL_Init(SDL_INIT_GAMECONTROLLER) + * You can update mappings after the system is initialized with SDL_GameControllerMappingForGUID() and SDL_GameControllerAddMapping() + */ +#define SDL_HINT_GAMECONTROLLERCONFIG "SDL_GAMECONTROLLERCONFIG" + + +/** + * \brief A variable that lets you enable joystick (and gamecontroller) events even when your app is in the background. + * + * The variable can be set to the following values: + * "0" - Disable joystick & gamecontroller input events when the + * application is in the background. + * "1" - Enable joystick & gamecontroller input events when the + * application is in the background. + * + * The default value is "0". This hint may be set at any time. + */ +#define SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS "SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS" + + +/** + * \brief If set to 0 then never set the top most bit on a SDL Window, even if the video mode expects it. + * This is a debugging aid for developers and not expected to be used by end users. The default is "1" + * + * This variable can be set to the following values: + * "0" - don't allow topmost + * "1" - allow topmost + */ +#define SDL_HINT_ALLOW_TOPMOST "SDL_ALLOW_TOPMOST" + + +/** + * \brief A variable that controls the timer resolution, in milliseconds. + * + * The higher resolution the timer, the more frequently the CPU services + * timer interrupts, and the more precise delays are, but this takes up + * power and CPU time. This hint is only used on Windows 7 and earlier. + * + * See this blog post for more information: + * http://randomascii.wordpress.com/2013/07/08/windows-timer-resolution-megawatts-wasted/ + * + * If this variable is set to "0", the system timer resolution is not set. + * + * The default value is "1". This hint may be set at any time. + */ +#define SDL_HINT_TIMER_RESOLUTION "SDL_TIMER_RESOLUTION" + + +/** + * \brief If set to 1, then do not allow high-DPI windows. ("Retina" on Mac) + */ +#define SDL_HINT_VIDEO_HIGHDPI_DISABLED "SDL_VIDEO_HIGHDPI_DISABLED" + +/** + * \brief A variable that determines whether ctrl+click should generate a right-click event on Mac + * + * If present, holding ctrl while left clicking will generate a right click + * event when on Mac. + */ +#define SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK "SDL_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK" + +/** +* \brief A variable specifying which shader compiler to preload when using the Chrome ANGLE binaries +* +* SDL has EGL and OpenGL ES2 support on Windows via the ANGLE project. It +* can use two different sets of binaries, those compiled by the user from source +* or those provided by the Chrome browser. In the later case, these binaries require +* that SDL loads a DLL providing the shader compiler. +* +* This variable can be set to the following values: +* "d3dcompiler_46.dll" - default, best for Vista or later. +* "d3dcompiler_43.dll" - for XP support. +* "none" - do not load any library, useful if you compiled ANGLE from source and included the compiler in your binaries. +* +*/ +#define SDL_HINT_VIDEO_WIN_D3DCOMPILER "SDL_VIDEO_WIN_D3DCOMPILER" + +/** +* \brief A variable that is the address of another SDL_Window* (as a hex string formatted with "%p"). +* +* If this hint is set before SDL_CreateWindowFrom() and the SDL_Window* it is set to has +* SDL_WINDOW_OPENGL set (and running on WGL only, currently), then two things will occur on the newly +* created SDL_Window: +* +* 1. Its pixel format will be set to the same pixel format as this SDL_Window. This is +* needed for example when sharing an OpenGL context across multiple windows. +* +* 2. The flag SDL_WINDOW_OPENGL will be set on the new window so it can be used for +* OpenGL rendering. +* +* This variable can be set to the following values: +* The address (as a string "%p") of the SDL_Window* that new windows created with SDL_CreateWindowFrom() should +* share a pixel format with. +*/ +#define SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT "SDL_VIDEO_WINDOW_SHARE_PIXEL_FORMAT" + +/* + * \brief A URL to a WinRT app's privacy policy + * + * All network-enabled WinRT apps must make a privacy policy available to its + * users. On Windows 8, 8.1, and RT, Microsoft mandates that this policy be + * be available in the Windows Settings charm, as accessed from within the app. + * SDL provides code to add a URL-based link there, which can point to the app's + * privacy policy. + * + * To setup a URL to an app's privacy policy, set SDL_HINT_WINRT_PRIVACY_POLICY_URL + * before calling any SDL_Init functions. The contents of the hint should + * be a valid URL. For example, "http://www.example.com". + * + * The default value is "", which will prevent SDL from adding a privacy policy + * link to the Settings charm. This hint should only be set during app init. + * + * The label text of an app's "Privacy Policy" link may be customized via another + * hint, SDL_HINT_WINRT_PRIVACY_POLICY_LABEL. + * + * Please note that on Windows Phone, Microsoft does not provide standard UI + * for displaying a privacy policy link, and as such, SDL_HINT_WINRT_PRIVACY_POLICY_URL + * will not get used on that platform. Network-enabled phone apps should display + * their privacy policy through some other, in-app means. + */ +#define SDL_HINT_WINRT_PRIVACY_POLICY_URL "SDL_HINT_WINRT_PRIVACY_POLICY_URL" + +/** \brief Label text for a WinRT app's privacy policy link + * + * Network-enabled WinRT apps must include a privacy policy. On Windows 8, 8.1, and RT, + * Microsoft mandates that this policy be available via the Windows Settings charm. + * SDL provides code to add a link there, with it's label text being set via the + * optional hint, SDL_HINT_WINRT_PRIVACY_POLICY_LABEL. + * + * Please note that a privacy policy's contents are not set via this hint. A separate + * hint, SDL_HINT_WINRT_PRIVACY_POLICY_URL, is used to link to the actual text of the + * policy. + * + * The contents of this hint should be encoded as a UTF8 string. + * + * The default value is "Privacy Policy". This hint should only be set during app + * initialization, preferably before any calls to SDL_Init. + * + * For additional information on linking to a privacy policy, see the documentation for + * SDL_HINT_WINRT_PRIVACY_POLICY_URL. + */ +#define SDL_HINT_WINRT_PRIVACY_POLICY_LABEL "SDL_HINT_WINRT_PRIVACY_POLICY_LABEL" + +/** \brief If set to 1, back button press events on Windows Phone 8+ will be marked as handled. + * + * TODO, WinRT: document SDL_HINT_WINRT_HANDLE_BACK_BUTTON need and use + * For now, more details on why this is needed can be found at the + * beginning of the following web page: + * http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj247550(v=vs.105).aspx + */ +#define SDL_HINT_WINRT_HANDLE_BACK_BUTTON "SDL_HINT_WINRT_HANDLE_BACK_BUTTON" + +/** + * \brief A variable that dictates policy for fullscreen Spaces on Mac OS X. + * + * This hint only applies to Mac OS X. + * + * The variable can be set to the following values: + * "0" - Disable Spaces support (FULLSCREEN_DESKTOP won't use them and + * SDL_WINDOW_RESIZABLE windows won't offer the "fullscreen" + * button on their titlebars). + * "1" - Enable Spaces support (FULLSCREEN_DESKTOP will use them and + * SDL_WINDOW_RESIZABLE windows will offer the "fullscreen" + * button on their titlebars. + * + * The default value is "1". Spaces are disabled regardless of this hint if + * the OS isn't at least Mac OS X Lion (10.7). This hint must be set before + * any windows are created. + */ +#define SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES "SDL_VIDEO_MAC_FULLSCREEN_SPACES" + + +/** + * \brief An enumeration of hint priorities + */ +typedef enum +{ + SDL_HINT_DEFAULT, + SDL_HINT_NORMAL, + SDL_HINT_OVERRIDE +} SDL_HintPriority; + + +/** + * \brief Set a hint with a specific priority + * + * The priority controls the behavior when setting a hint that already + * has a value. Hints will replace existing hints of their priority and + * lower. Environment variables are considered to have override priority. + * + * \return SDL_TRUE if the hint was set, SDL_FALSE otherwise + */ +extern DECLSPEC SDL_bool SDLCALL SDL_SetHintWithPriority(const char *name, + const char *value, + SDL_HintPriority priority); + +/** + * \brief Set a hint with normal priority + * + * \return SDL_TRUE if the hint was set, SDL_FALSE otherwise + */ +extern DECLSPEC SDL_bool SDLCALL SDL_SetHint(const char *name, + const char *value); + +/** + * \brief Get a hint + * + * \return The string value of a hint variable. + */ +extern DECLSPEC const char * SDLCALL SDL_GetHint(const char *name); + +/** + * \brief Add a function to watch a particular hint + * + * \param name The hint to watch + * \param callback The function to call when the hint value changes + * \param userdata A pointer to pass to the callback function + */ +typedef void (*SDL_HintCallback)(void *userdata, const char *name, const char *oldValue, const char *newValue); +extern DECLSPEC void SDLCALL SDL_AddHintCallback(const char *name, + SDL_HintCallback callback, + void *userdata); + +/** + * \brief Remove a function watching a particular hint + * + * \param name The hint being watched + * \param callback The function being called when the hint value changes + * \param userdata A pointer being passed to the callback function + */ +extern DECLSPEC void SDLCALL SDL_DelHintCallback(const char *name, + SDL_HintCallback callback, + void *userdata); + +/** + * \brief Clear all hints + * + * This function is called during SDL_Quit() to free stored hints. + */ +extern DECLSPEC void SDLCALL SDL_ClearHints(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_hints_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_joystick.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_joystick.h new file mode 100644 index 0000000..b0b1c66 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_joystick.h @@ -0,0 +1,253 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_joystick.h + * + * Include file for SDL joystick event handling + * + * The term "device_index" identifies currently plugged in joystick devices between 0 and SDL_NumJoysticks, with the exact joystick + * behind a device_index changing as joysticks are plugged and unplugged. + * + * The term "instance_id" is the current instantiation of a joystick device in the system, if the joystick is removed and then re-inserted + * then it will get a new instance_id, instance_id's are monotonically increasing identifiers of a joystick plugged in. + * + * The term JoystickGUID is a stable 128-bit identifier for a joystick device that does not change over time, it identifies class of + * the device (a X360 wired controller for example). This identifier is platform dependent. + * + * + */ + +#ifndef _SDL_joystick_h +#define _SDL_joystick_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \file SDL_joystick.h + * + * In order to use these functions, SDL_Init() must have been called + * with the ::SDL_INIT_JOYSTICK flag. This causes SDL to scan the system + * for joysticks, and load appropriate drivers. + * + * If you would like to receive joystick updates while the application + * is in the background, you should set the following hint before calling + * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS + */ + +/* The joystick structure used to identify an SDL joystick */ +struct _SDL_Joystick; +typedef struct _SDL_Joystick SDL_Joystick; + +/* A structure that encodes the stable unique id for a joystick device */ +typedef struct { + Uint8 data[16]; +} SDL_JoystickGUID; + +typedef Sint32 SDL_JoystickID; + + +/* Function prototypes */ +/** + * Count the number of joysticks attached to the system right now + */ +extern DECLSPEC int SDLCALL SDL_NumJoysticks(void); + +/** + * Get the implementation dependent name of a joystick. + * This can be called before any joysticks are opened. + * If no name can be found, this function returns NULL. + */ +extern DECLSPEC const char *SDLCALL SDL_JoystickNameForIndex(int device_index); + +/** + * Open a joystick for use. + * The index passed as an argument refers tothe N'th joystick on the system. + * This index is the value which will identify this joystick in future joystick + * events. + * + * \return A joystick identifier, or NULL if an error occurred. + */ +extern DECLSPEC SDL_Joystick *SDLCALL SDL_JoystickOpen(int device_index); + +/** + * Return the name for this currently opened joystick. + * If no name can be found, this function returns NULL. + */ +extern DECLSPEC const char *SDLCALL SDL_JoystickName(SDL_Joystick * joystick); + +/** + * Return the GUID for the joystick at this index + */ +extern DECLSPEC SDL_JoystickGUID SDLCALL SDL_JoystickGetDeviceGUID(int device_index); + +/** + * Return the GUID for this opened joystick + */ +extern DECLSPEC SDL_JoystickGUID SDLCALL SDL_JoystickGetGUID(SDL_Joystick * joystick); + +/** + * Return a string representation for this guid. pszGUID must point to at least 33 bytes + * (32 for the string plus a NULL terminator). + */ +extern DECLSPEC void SDLCALL SDL_JoystickGetGUIDString(SDL_JoystickGUID guid, char *pszGUID, int cbGUID); + +/** + * convert a string into a joystick formatted guid + */ +extern DECLSPEC SDL_JoystickGUID SDLCALL SDL_JoystickGetGUIDFromString(const char *pchGUID); + +/** + * Returns SDL_TRUE if the joystick has been opened and currently connected, or SDL_FALSE if it has not. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_JoystickGetAttached(SDL_Joystick * joystick); + +/** + * Get the instance ID of an opened joystick or -1 if the joystick is invalid. + */ +extern DECLSPEC SDL_JoystickID SDLCALL SDL_JoystickInstanceID(SDL_Joystick * joystick); + +/** + * Get the number of general axis controls on a joystick. + */ +extern DECLSPEC int SDLCALL SDL_JoystickNumAxes(SDL_Joystick * joystick); + +/** + * Get the number of trackballs on a joystick. + * + * Joystick trackballs have only relative motion events associated + * with them and their state cannot be polled. + */ +extern DECLSPEC int SDLCALL SDL_JoystickNumBalls(SDL_Joystick * joystick); + +/** + * Get the number of POV hats on a joystick. + */ +extern DECLSPEC int SDLCALL SDL_JoystickNumHats(SDL_Joystick * joystick); + +/** + * Get the number of buttons on a joystick. + */ +extern DECLSPEC int SDLCALL SDL_JoystickNumButtons(SDL_Joystick * joystick); + +/** + * Update the current state of the open joysticks. + * + * This is called automatically by the event loop if any joystick + * events are enabled. + */ +extern DECLSPEC void SDLCALL SDL_JoystickUpdate(void); + +/** + * Enable/disable joystick event polling. + * + * If joystick events are disabled, you must call SDL_JoystickUpdate() + * yourself and check the state of the joystick when you want joystick + * information. + * + * The state can be one of ::SDL_QUERY, ::SDL_ENABLE or ::SDL_IGNORE. + */ +extern DECLSPEC int SDLCALL SDL_JoystickEventState(int state); + +/** + * Get the current state of an axis control on a joystick. + * + * The state is a value ranging from -32768 to 32767. + * + * The axis indices start at index 0. + */ +extern DECLSPEC Sint16 SDLCALL SDL_JoystickGetAxis(SDL_Joystick * joystick, + int axis); + +/** + * \name Hat positions + */ +/* @{ */ +#define SDL_HAT_CENTERED 0x00 +#define SDL_HAT_UP 0x01 +#define SDL_HAT_RIGHT 0x02 +#define SDL_HAT_DOWN 0x04 +#define SDL_HAT_LEFT 0x08 +#define SDL_HAT_RIGHTUP (SDL_HAT_RIGHT|SDL_HAT_UP) +#define SDL_HAT_RIGHTDOWN (SDL_HAT_RIGHT|SDL_HAT_DOWN) +#define SDL_HAT_LEFTUP (SDL_HAT_LEFT|SDL_HAT_UP) +#define SDL_HAT_LEFTDOWN (SDL_HAT_LEFT|SDL_HAT_DOWN) +/* @} */ + +/** + * Get the current state of a POV hat on a joystick. + * + * The hat indices start at index 0. + * + * \return The return value is one of the following positions: + * - ::SDL_HAT_CENTERED + * - ::SDL_HAT_UP + * - ::SDL_HAT_RIGHT + * - ::SDL_HAT_DOWN + * - ::SDL_HAT_LEFT + * - ::SDL_HAT_RIGHTUP + * - ::SDL_HAT_RIGHTDOWN + * - ::SDL_HAT_LEFTUP + * - ::SDL_HAT_LEFTDOWN + */ +extern DECLSPEC Uint8 SDLCALL SDL_JoystickGetHat(SDL_Joystick * joystick, + int hat); + +/** + * Get the ball axis change since the last poll. + * + * \return 0, or -1 if you passed it invalid parameters. + * + * The ball indices start at index 0. + */ +extern DECLSPEC int SDLCALL SDL_JoystickGetBall(SDL_Joystick * joystick, + int ball, int *dx, int *dy); + +/** + * Get the current state of a button on a joystick. + * + * The button indices start at index 0. + */ +extern DECLSPEC Uint8 SDLCALL SDL_JoystickGetButton(SDL_Joystick * joystick, + int button); + +/** + * Close a joystick previously opened with SDL_JoystickOpen(). + */ +extern DECLSPEC void SDLCALL SDL_JoystickClose(SDL_Joystick * joystick); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_joystick_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_keyboard.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_keyboard.h new file mode 100644 index 0000000..586a26c --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_keyboard.h @@ -0,0 +1,217 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_keyboard.h + * + * Include file for SDL keyboard event handling + */ + +#ifndef _SDL_keyboard_h +#define _SDL_keyboard_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" +#include "SDL_keycode.h" +#include "SDL_video.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief The SDL keysym structure, used in key events. + * + * \note If you are looking for translated character input, see the ::SDL_TEXTINPUT event. + */ +typedef struct SDL_Keysym +{ + SDL_Scancode scancode; /**< SDL physical key code - see ::SDL_Scancode for details */ + SDL_Keycode sym; /**< SDL virtual key code - see ::SDL_Keycode for details */ + Uint16 mod; /**< current key modifiers */ + Uint32 unused; +} SDL_Keysym; + +/* Function prototypes */ + +/** + * \brief Get the window which currently has keyboard focus. + */ +extern DECLSPEC SDL_Window * SDLCALL SDL_GetKeyboardFocus(void); + +/** + * \brief Get a snapshot of the current state of the keyboard. + * + * \param numkeys if non-NULL, receives the length of the returned array. + * + * \return An array of key states. Indexes into this array are obtained by using ::SDL_Scancode values. + * + * \b Example: + * \code + * const Uint8 *state = SDL_GetKeyboardState(NULL); + * if ( state[SDL_SCANCODE_RETURN] ) { + * printf(" is pressed.\n"); + * } + * \endcode + */ +extern DECLSPEC const Uint8 *SDLCALL SDL_GetKeyboardState(int *numkeys); + +/** + * \brief Get the current key modifier state for the keyboard. + */ +extern DECLSPEC SDL_Keymod SDLCALL SDL_GetModState(void); + +/** + * \brief Set the current key modifier state for the keyboard. + * + * \note This does not change the keyboard state, only the key modifier flags. + */ +extern DECLSPEC void SDLCALL SDL_SetModState(SDL_Keymod modstate); + +/** + * \brief Get the key code corresponding to the given scancode according + * to the current keyboard layout. + * + * See ::SDL_Keycode for details. + * + * \sa SDL_GetKeyName() + */ +extern DECLSPEC SDL_Keycode SDLCALL SDL_GetKeyFromScancode(SDL_Scancode scancode); + +/** + * \brief Get the scancode corresponding to the given key code according to the + * current keyboard layout. + * + * See ::SDL_Scancode for details. + * + * \sa SDL_GetScancodeName() + */ +extern DECLSPEC SDL_Scancode SDLCALL SDL_GetScancodeFromKey(SDL_Keycode key); + +/** + * \brief Get a human-readable name for a scancode. + * + * \return A pointer to the name for the scancode. + * If the scancode doesn't have a name, this function returns + * an empty string (""). + * + * \sa SDL_Scancode + */ +extern DECLSPEC const char *SDLCALL SDL_GetScancodeName(SDL_Scancode scancode); + +/** + * \brief Get a scancode from a human-readable name + * + * \return scancode, or SDL_SCANCODE_UNKNOWN if the name wasn't recognized + * + * \sa SDL_Scancode + */ +extern DECLSPEC SDL_Scancode SDLCALL SDL_GetScancodeFromName(const char *name); + +/** + * \brief Get a human-readable name for a key. + * + * \return A pointer to a UTF-8 string that stays valid at least until the next + * call to this function. If you need it around any longer, you must + * copy it. If the key doesn't have a name, this function returns an + * empty string (""). + * + * \sa SDL_Key + */ +extern DECLSPEC const char *SDLCALL SDL_GetKeyName(SDL_Keycode key); + +/** + * \brief Get a key code from a human-readable name + * + * \return key code, or SDLK_UNKNOWN if the name wasn't recognized + * + * \sa SDL_Keycode + */ +extern DECLSPEC SDL_Keycode SDLCALL SDL_GetKeyFromName(const char *name); + +/** + * \brief Start accepting Unicode text input events. + * This function will show the on-screen keyboard if supported. + * + * \sa SDL_StopTextInput() + * \sa SDL_SetTextInputRect() + * \sa SDL_HasScreenKeyboardSupport() + */ +extern DECLSPEC void SDLCALL SDL_StartTextInput(void); + +/** + * \brief Return whether or not Unicode text input events are enabled. + * + * \sa SDL_StartTextInput() + * \sa SDL_StopTextInput() + */ +extern DECLSPEC SDL_bool SDLCALL SDL_IsTextInputActive(void); + +/** + * \brief Stop receiving any text input events. + * This function will hide the on-screen keyboard if supported. + * + * \sa SDL_StartTextInput() + * \sa SDL_HasScreenKeyboardSupport() + */ +extern DECLSPEC void SDLCALL SDL_StopTextInput(void); + +/** + * \brief Set the rectangle used to type Unicode text inputs. + * This is used as a hint for IME and on-screen keyboard placement. + * + * \sa SDL_StartTextInput() + */ +extern DECLSPEC void SDLCALL SDL_SetTextInputRect(SDL_Rect *rect); + +/** + * \brief Returns whether the platform has some screen keyboard support. + * + * \return SDL_TRUE if some keyboard support is available else SDL_FALSE. + * + * \note Not all screen keyboard functions are supported on all platforms. + * + * \sa SDL_IsScreenKeyboardShown() + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasScreenKeyboardSupport(void); + +/** + * \brief Returns whether the screen keyboard is shown for given window. + * + * \param window The window for which screen keyboard should be queried. + * + * \return SDL_TRUE if screen keyboard is shown else SDL_FALSE. + * + * \sa SDL_HasScreenKeyboardSupport() + */ +extern DECLSPEC SDL_bool SDLCALL SDL_IsScreenKeyboardShown(SDL_Window *window); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_keyboard_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_keycode.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_keycode.h new file mode 100644 index 0000000..d5f5dd0 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_keycode.h @@ -0,0 +1,341 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_keycode.h + * + * Defines constants which identify keyboard keys and modifiers. + */ + +#ifndef _SDL_keycode_h +#define _SDL_keycode_h + +#include "SDL_stdinc.h" +#include "SDL_scancode.h" + +/** + * \brief The SDL virtual key representation. + * + * Values of this type are used to represent keyboard keys using the current + * layout of the keyboard. These values include Unicode values representing + * the unmodified character that would be generated by pressing the key, or + * an SDLK_* constant for those keys that do not generate characters. + */ +typedef Sint32 SDL_Keycode; + +#define SDLK_SCANCODE_MASK (1<<30) +#define SDL_SCANCODE_TO_KEYCODE(X) (X | SDLK_SCANCODE_MASK) + +enum +{ + SDLK_UNKNOWN = 0, + + SDLK_RETURN = '\r', + SDLK_ESCAPE = '\033', + SDLK_BACKSPACE = '\b', + SDLK_TAB = '\t', + SDLK_SPACE = ' ', + SDLK_EXCLAIM = '!', + SDLK_QUOTEDBL = '"', + SDLK_HASH = '#', + SDLK_PERCENT = '%', + SDLK_DOLLAR = '$', + SDLK_AMPERSAND = '&', + SDLK_QUOTE = '\'', + SDLK_LEFTPAREN = '(', + SDLK_RIGHTPAREN = ')', + SDLK_ASTERISK = '*', + SDLK_PLUS = '+', + SDLK_COMMA = ',', + SDLK_MINUS = '-', + SDLK_PERIOD = '.', + SDLK_SLASH = '/', + SDLK_0 = '0', + SDLK_1 = '1', + SDLK_2 = '2', + SDLK_3 = '3', + SDLK_4 = '4', + SDLK_5 = '5', + SDLK_6 = '6', + SDLK_7 = '7', + SDLK_8 = '8', + SDLK_9 = '9', + SDLK_COLON = ':', + SDLK_SEMICOLON = ';', + SDLK_LESS = '<', + SDLK_EQUALS = '=', + SDLK_GREATER = '>', + SDLK_QUESTION = '?', + SDLK_AT = '@', + /* + Skip uppercase letters + */ + SDLK_LEFTBRACKET = '[', + SDLK_BACKSLASH = '\\', + SDLK_RIGHTBRACKET = ']', + SDLK_CARET = '^', + SDLK_UNDERSCORE = '_', + SDLK_BACKQUOTE = '`', + SDLK_a = 'a', + SDLK_b = 'b', + SDLK_c = 'c', + SDLK_d = 'd', + SDLK_e = 'e', + SDLK_f = 'f', + SDLK_g = 'g', + SDLK_h = 'h', + SDLK_i = 'i', + SDLK_j = 'j', + SDLK_k = 'k', + SDLK_l = 'l', + SDLK_m = 'm', + SDLK_n = 'n', + SDLK_o = 'o', + SDLK_p = 'p', + SDLK_q = 'q', + SDLK_r = 'r', + SDLK_s = 's', + SDLK_t = 't', + SDLK_u = 'u', + SDLK_v = 'v', + SDLK_w = 'w', + SDLK_x = 'x', + SDLK_y = 'y', + SDLK_z = 'z', + + SDLK_CAPSLOCK = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CAPSLOCK), + + SDLK_F1 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F1), + SDLK_F2 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F2), + SDLK_F3 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F3), + SDLK_F4 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F4), + SDLK_F5 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F5), + SDLK_F6 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F6), + SDLK_F7 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F7), + SDLK_F8 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F8), + SDLK_F9 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F9), + SDLK_F10 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F10), + SDLK_F11 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F11), + SDLK_F12 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F12), + + SDLK_PRINTSCREEN = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PRINTSCREEN), + SDLK_SCROLLLOCK = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SCROLLLOCK), + SDLK_PAUSE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAUSE), + SDLK_INSERT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_INSERT), + SDLK_HOME = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_HOME), + SDLK_PAGEUP = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAGEUP), + SDLK_DELETE = '\177', + SDLK_END = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_END), + SDLK_PAGEDOWN = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAGEDOWN), + SDLK_RIGHT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RIGHT), + SDLK_LEFT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LEFT), + SDLK_DOWN = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DOWN), + SDLK_UP = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_UP), + + SDLK_NUMLOCKCLEAR = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_NUMLOCKCLEAR), + SDLK_KP_DIVIDE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DIVIDE), + SDLK_KP_MULTIPLY = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MULTIPLY), + SDLK_KP_MINUS = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MINUS), + SDLK_KP_PLUS = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PLUS), + SDLK_KP_ENTER = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_ENTER), + SDLK_KP_1 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_1), + SDLK_KP_2 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_2), + SDLK_KP_3 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_3), + SDLK_KP_4 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_4), + SDLK_KP_5 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_5), + SDLK_KP_6 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_6), + SDLK_KP_7 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_7), + SDLK_KP_8 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_8), + SDLK_KP_9 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_9), + SDLK_KP_0 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_0), + SDLK_KP_PERIOD = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PERIOD), + + SDLK_APPLICATION = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_APPLICATION), + SDLK_POWER = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_POWER), + SDLK_KP_EQUALS = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EQUALS), + SDLK_F13 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F13), + SDLK_F14 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F14), + SDLK_F15 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F15), + SDLK_F16 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F16), + SDLK_F17 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F17), + SDLK_F18 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F18), + SDLK_F19 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F19), + SDLK_F20 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F20), + SDLK_F21 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F21), + SDLK_F22 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F22), + SDLK_F23 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F23), + SDLK_F24 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F24), + SDLK_EXECUTE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EXECUTE), + SDLK_HELP = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_HELP), + SDLK_MENU = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MENU), + SDLK_SELECT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SELECT), + SDLK_STOP = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_STOP), + SDLK_AGAIN = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AGAIN), + SDLK_UNDO = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_UNDO), + SDLK_CUT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CUT), + SDLK_COPY = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_COPY), + SDLK_PASTE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PASTE), + SDLK_FIND = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_FIND), + SDLK_MUTE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MUTE), + SDLK_VOLUMEUP = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_VOLUMEUP), + SDLK_VOLUMEDOWN = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_VOLUMEDOWN), + SDLK_KP_COMMA = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_COMMA), + SDLK_KP_EQUALSAS400 = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EQUALSAS400), + + SDLK_ALTERASE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_ALTERASE), + SDLK_SYSREQ = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SYSREQ), + SDLK_CANCEL = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CANCEL), + SDLK_CLEAR = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CLEAR), + SDLK_PRIOR = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PRIOR), + SDLK_RETURN2 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RETURN2), + SDLK_SEPARATOR = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SEPARATOR), + SDLK_OUT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_OUT), + SDLK_OPER = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_OPER), + SDLK_CLEARAGAIN = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CLEARAGAIN), + SDLK_CRSEL = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CRSEL), + SDLK_EXSEL = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EXSEL), + + SDLK_KP_00 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_00), + SDLK_KP_000 = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_000), + SDLK_THOUSANDSSEPARATOR = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_THOUSANDSSEPARATOR), + SDLK_DECIMALSEPARATOR = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DECIMALSEPARATOR), + SDLK_CURRENCYUNIT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CURRENCYUNIT), + SDLK_CURRENCYSUBUNIT = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CURRENCYSUBUNIT), + SDLK_KP_LEFTPAREN = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LEFTPAREN), + SDLK_KP_RIGHTPAREN = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_RIGHTPAREN), + SDLK_KP_LEFTBRACE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LEFTBRACE), + SDLK_KP_RIGHTBRACE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_RIGHTBRACE), + SDLK_KP_TAB = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_TAB), + SDLK_KP_BACKSPACE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_BACKSPACE), + SDLK_KP_A = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_A), + SDLK_KP_B = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_B), + SDLK_KP_C = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_C), + SDLK_KP_D = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_D), + SDLK_KP_E = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_E), + SDLK_KP_F = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_F), + SDLK_KP_XOR = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_XOR), + SDLK_KP_POWER = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_POWER), + SDLK_KP_PERCENT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PERCENT), + SDLK_KP_LESS = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LESS), + SDLK_KP_GREATER = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_GREATER), + SDLK_KP_AMPERSAND = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_AMPERSAND), + SDLK_KP_DBLAMPERSAND = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DBLAMPERSAND), + SDLK_KP_VERTICALBAR = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_VERTICALBAR), + SDLK_KP_DBLVERTICALBAR = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DBLVERTICALBAR), + SDLK_KP_COLON = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_COLON), + SDLK_KP_HASH = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_HASH), + SDLK_KP_SPACE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_SPACE), + SDLK_KP_AT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_AT), + SDLK_KP_EXCLAM = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EXCLAM), + SDLK_KP_MEMSTORE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMSTORE), + SDLK_KP_MEMRECALL = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMRECALL), + SDLK_KP_MEMCLEAR = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMCLEAR), + SDLK_KP_MEMADD = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMADD), + SDLK_KP_MEMSUBTRACT = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMSUBTRACT), + SDLK_KP_MEMMULTIPLY = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMMULTIPLY), + SDLK_KP_MEMDIVIDE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMDIVIDE), + SDLK_KP_PLUSMINUS = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PLUSMINUS), + SDLK_KP_CLEAR = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_CLEAR), + SDLK_KP_CLEARENTRY = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_CLEARENTRY), + SDLK_KP_BINARY = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_BINARY), + SDLK_KP_OCTAL = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_OCTAL), + SDLK_KP_DECIMAL = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DECIMAL), + SDLK_KP_HEXADECIMAL = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_HEXADECIMAL), + + SDLK_LCTRL = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LCTRL), + SDLK_LSHIFT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LSHIFT), + SDLK_LALT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LALT), + SDLK_LGUI = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LGUI), + SDLK_RCTRL = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RCTRL), + SDLK_RSHIFT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RSHIFT), + SDLK_RALT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RALT), + SDLK_RGUI = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RGUI), + + SDLK_MODE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MODE), + + SDLK_AUDIONEXT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AUDIONEXT), + SDLK_AUDIOPREV = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AUDIOPREV), + SDLK_AUDIOSTOP = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AUDIOSTOP), + SDLK_AUDIOPLAY = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AUDIOPLAY), + SDLK_AUDIOMUTE = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AUDIOMUTE), + SDLK_MEDIASELECT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIASELECT), + SDLK_WWW = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_WWW), + SDLK_MAIL = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MAIL), + SDLK_CALCULATOR = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CALCULATOR), + SDLK_COMPUTER = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_COMPUTER), + SDLK_AC_SEARCH = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_SEARCH), + SDLK_AC_HOME = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_HOME), + SDLK_AC_BACK = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_BACK), + SDLK_AC_FORWARD = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_FORWARD), + SDLK_AC_STOP = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_STOP), + SDLK_AC_REFRESH = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_REFRESH), + SDLK_AC_BOOKMARKS = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_BOOKMARKS), + + SDLK_BRIGHTNESSDOWN = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_BRIGHTNESSDOWN), + SDLK_BRIGHTNESSUP = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_BRIGHTNESSUP), + SDLK_DISPLAYSWITCH = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DISPLAYSWITCH), + SDLK_KBDILLUMTOGGLE = + SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KBDILLUMTOGGLE), + SDLK_KBDILLUMDOWN = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KBDILLUMDOWN), + SDLK_KBDILLUMUP = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KBDILLUMUP), + SDLK_EJECT = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EJECT), + SDLK_SLEEP = SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SLEEP) +}; + +/** + * \brief Enumeration of valid key mods (possibly OR'd together). + */ +typedef enum +{ + KMOD_NONE = 0x0000, + KMOD_LSHIFT = 0x0001, + KMOD_RSHIFT = 0x0002, + KMOD_LCTRL = 0x0040, + KMOD_RCTRL = 0x0080, + KMOD_LALT = 0x0100, + KMOD_RALT = 0x0200, + KMOD_LGUI = 0x0400, + KMOD_RGUI = 0x0800, + KMOD_NUM = 0x1000, + KMOD_CAPS = 0x2000, + KMOD_MODE = 0x4000, + KMOD_RESERVED = 0x8000 +} SDL_Keymod; + +#define KMOD_CTRL (KMOD_LCTRL|KMOD_RCTRL) +#define KMOD_SHIFT (KMOD_LSHIFT|KMOD_RSHIFT) +#define KMOD_ALT (KMOD_LALT|KMOD_RALT) +#define KMOD_GUI (KMOD_LGUI|KMOD_RGUI) + +#endif /* _SDL_keycode_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_loadso.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_loadso.h new file mode 100644 index 0000000..0359eae --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_loadso.h @@ -0,0 +1,81 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_loadso.h + * + * System dependent library loading routines + * + * Some things to keep in mind: + * \li These functions only work on C function names. Other languages may + * have name mangling and intrinsic language support that varies from + * compiler to compiler. + * \li Make sure you declare your function pointers with the same calling + * convention as the actual library function. Your code will crash + * mysteriously if you do not do this. + * \li Avoid namespace collisions. If you load a symbol from the library, + * it is not defined whether or not it goes into the global symbol + * namespace for the application. If it does and it conflicts with + * symbols in your code or other shared libraries, you will not get + * the results you expect. :) + */ + +#ifndef _SDL_loadso_h +#define _SDL_loadso_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This function dynamically loads a shared object and returns a pointer + * to the object handle (or NULL if there was an error). + * The 'sofile' parameter is a system dependent name of the object file. + */ +extern DECLSPEC void *SDLCALL SDL_LoadObject(const char *sofile); + +/** + * Given an object handle, this function looks up the address of the + * named function in the shared object and returns it. This address + * is no longer valid after calling SDL_UnloadObject(). + */ +extern DECLSPEC void *SDLCALL SDL_LoadFunction(void *handle, + const char *name); + +/** + * Unload a shared object from memory. + */ +extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_loadso_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_log.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_log.h new file mode 100644 index 0000000..5c2bca5 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_log.h @@ -0,0 +1,211 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_log.h + * + * Simple log messages with categories and priorities. + * + * By default logs are quiet, but if you're debugging SDL you might want: + * + * SDL_LogSetAllPriority(SDL_LOG_PRIORITY_WARN); + * + * Here's where the messages go on different platforms: + * Windows: debug output stream + * Android: log output + * Others: standard error output (stderr) + */ + +#ifndef _SDL_log_h +#define _SDL_log_h + +#include "SDL_stdinc.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + + +/** + * \brief The maximum size of a log message + * + * Messages longer than the maximum size will be truncated + */ +#define SDL_MAX_LOG_MESSAGE 4096 + +/** + * \brief The predefined log categories + * + * By default the application category is enabled at the INFO level, + * the assert category is enabled at the WARN level, test is enabled + * at the VERBOSE level and all other categories are enabled at the + * CRITICAL level. + */ +enum +{ + SDL_LOG_CATEGORY_APPLICATION, + SDL_LOG_CATEGORY_ERROR, + SDL_LOG_CATEGORY_ASSERT, + SDL_LOG_CATEGORY_SYSTEM, + SDL_LOG_CATEGORY_AUDIO, + SDL_LOG_CATEGORY_VIDEO, + SDL_LOG_CATEGORY_RENDER, + SDL_LOG_CATEGORY_INPUT, + SDL_LOG_CATEGORY_TEST, + + /* Reserved for future SDL library use */ + SDL_LOG_CATEGORY_RESERVED1, + SDL_LOG_CATEGORY_RESERVED2, + SDL_LOG_CATEGORY_RESERVED3, + SDL_LOG_CATEGORY_RESERVED4, + SDL_LOG_CATEGORY_RESERVED5, + SDL_LOG_CATEGORY_RESERVED6, + SDL_LOG_CATEGORY_RESERVED7, + SDL_LOG_CATEGORY_RESERVED8, + SDL_LOG_CATEGORY_RESERVED9, + SDL_LOG_CATEGORY_RESERVED10, + + /* Beyond this point is reserved for application use, e.g. + enum { + MYAPP_CATEGORY_AWESOME1 = SDL_LOG_CATEGORY_CUSTOM, + MYAPP_CATEGORY_AWESOME2, + MYAPP_CATEGORY_AWESOME3, + ... + }; + */ + SDL_LOG_CATEGORY_CUSTOM +}; + +/** + * \brief The predefined log priorities + */ +typedef enum +{ + SDL_LOG_PRIORITY_VERBOSE = 1, + SDL_LOG_PRIORITY_DEBUG, + SDL_LOG_PRIORITY_INFO, + SDL_LOG_PRIORITY_WARN, + SDL_LOG_PRIORITY_ERROR, + SDL_LOG_PRIORITY_CRITICAL, + SDL_NUM_LOG_PRIORITIES +} SDL_LogPriority; + + +/** + * \brief Set the priority of all log categories + */ +extern DECLSPEC void SDLCALL SDL_LogSetAllPriority(SDL_LogPriority priority); + +/** + * \brief Set the priority of a particular log category + */ +extern DECLSPEC void SDLCALL SDL_LogSetPriority(int category, + SDL_LogPriority priority); + +/** + * \brief Get the priority of a particular log category + */ +extern DECLSPEC SDL_LogPriority SDLCALL SDL_LogGetPriority(int category); + +/** + * \brief Reset all priorities to default. + * + * \note This is called in SDL_Quit(). + */ +extern DECLSPEC void SDLCALL SDL_LogResetPriorities(void); + +/** + * \brief Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO + */ +extern DECLSPEC void SDLCALL SDL_Log(const char *fmt, ...); + +/** + * \brief Log a message with SDL_LOG_PRIORITY_VERBOSE + */ +extern DECLSPEC void SDLCALL SDL_LogVerbose(int category, const char *fmt, ...); + +/** + * \brief Log a message with SDL_LOG_PRIORITY_DEBUG + */ +extern DECLSPEC void SDLCALL SDL_LogDebug(int category, const char *fmt, ...); + +/** + * \brief Log a message with SDL_LOG_PRIORITY_INFO + */ +extern DECLSPEC void SDLCALL SDL_LogInfo(int category, const char *fmt, ...); + +/** + * \brief Log a message with SDL_LOG_PRIORITY_WARN + */ +extern DECLSPEC void SDLCALL SDL_LogWarn(int category, const char *fmt, ...); + +/** + * \brief Log a message with SDL_LOG_PRIORITY_ERROR + */ +extern DECLSPEC void SDLCALL SDL_LogError(int category, const char *fmt, ...); + +/** + * \brief Log a message with SDL_LOG_PRIORITY_CRITICAL + */ +extern DECLSPEC void SDLCALL SDL_LogCritical(int category, const char *fmt, ...); + +/** + * \brief Log a message with the specified category and priority. + */ +extern DECLSPEC void SDLCALL SDL_LogMessage(int category, + SDL_LogPriority priority, + const char *fmt, ...); + +/** + * \brief Log a message with the specified category and priority. + */ +extern DECLSPEC void SDLCALL SDL_LogMessageV(int category, + SDL_LogPriority priority, + const char *fmt, va_list ap); + +/** + * \brief The prototype for the log output function + */ +typedef void (*SDL_LogOutputFunction)(void *userdata, int category, SDL_LogPriority priority, const char *message); + +/** + * \brief Get the current log output function. + */ +extern DECLSPEC void SDLCALL SDL_LogGetOutputFunction(SDL_LogOutputFunction *callback, void **userdata); + +/** + * \brief This function allows you to replace the default log output + * function with one of your own. + */ +extern DECLSPEC void SDLCALL SDL_LogSetOutputFunction(SDL_LogOutputFunction callback, void *userdata); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_log_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_main.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_main.h new file mode 100644 index 0000000..2e8fae9 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_main.h @@ -0,0 +1,155 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef _SDL_main_h +#define _SDL_main_h + +#include "SDL_stdinc.h" + +/** + * \file SDL_main.h + * + * Redefine main() on some platforms so that it is called by SDL. + */ + +#ifndef SDL_MAIN_HANDLED +#if defined(__WIN32__) +/* On Windows SDL provides WinMain(), which parses the command line and passes + the arguments to your main function. + + If you provide your own WinMain(), you may define SDL_MAIN_HANDLED + */ +#define SDL_MAIN_AVAILABLE + +#elif defined(__WINRT__) +/* On WinRT, SDL provides a main function that initializes CoreApplication, + creating an instance of IFrameworkView in the process. + + Please note that #include'ing SDL_main.h is not enough to get a main() + function working. In non-XAML apps, the file, + src/main/winrt/SDL_WinRT_main_NonXAML.cpp, or a copy of it, must be compiled + into the app itself. In XAML apps, the function, SDL_WinRTRunApp must be + called, with a pointer to the Direct3D-hosted XAML control passed in. +*/ +#define SDL_MAIN_NEEDED + +#elif defined(__IPHONEOS__) +/* On iOS SDL provides a main function that creates an application delegate + and starts the iOS application run loop. + + See src/video/uikit/SDL_uikitappdelegate.m for more details. + */ +#define SDL_MAIN_NEEDED + +#elif defined(__ANDROID__) +/* On Android SDL provides a Java class in SDLActivity.java that is the + main activity entry point. + + See README-android.txt for more details on extending that class. + */ +#define SDL_MAIN_NEEDED + +#endif +#endif /* SDL_MAIN_HANDLED */ + +#ifdef __cplusplus +#define C_LINKAGE "C" +#else +#define C_LINKAGE +#endif /* __cplusplus */ + +/** + * \file SDL_main.h + * + * The application's main() function must be called with C linkage, + * and should be declared like this: + * \code + * #ifdef __cplusplus + * extern "C" + * #endif + * int main(int argc, char *argv[]) + * { + * } + * \endcode + */ + +#if defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE) +#define main SDL_main +#endif + +/** + * The prototype for the application's main() function + */ +extern C_LINKAGE int SDL_main(int argc, char *argv[]); + + +#include "begin_code.h" +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is called by the real SDL main function to let the rest of the + * library know that initialization was done properly. + * + * Calling this yourself without knowing what you're doing can cause + * crashes and hard to diagnose problems with your application. + */ +extern DECLSPEC void SDLCALL SDL_SetMainReady(void); + +#ifdef __WIN32__ + +/** + * This can be called to set the application class at startup + */ +extern DECLSPEC int SDLCALL SDL_RegisterApp(char *name, Uint32 style, + void *hInst); +extern DECLSPEC void SDLCALL SDL_UnregisterApp(void); + +#endif /* __WIN32__ */ + + +#ifdef __WINRT__ + +/** + * \brief Initializes and launches an SDL/WinRT application. + * + * \param mainFunction The SDL app's C-style main(). + * \param xamlBackgroundPanel An optional, XAML-based, background panel. + * For Non-XAML apps, this value must be set to NULL. For XAML apps, + * pass in a pointer to a SwapChainBackgroundPanel, casted to an + * IInspectable (via reinterpret_cast). + * \ret 0 on success, -1 on failure. On failure, use SDL_GetError to retrieve more + * information on the failure. + */ +extern DECLSPEC int SDLCALL SDL_WinRTRunApp(int (*mainFunction)(int, char **), void * xamlBackgroundPanel); + +#endif /* __WINRT__ */ + + +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_main_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_messagebox.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_messagebox.h new file mode 100644 index 0000000..6004da0 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_messagebox.h @@ -0,0 +1,144 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef _SDL_messagebox_h +#define _SDL_messagebox_h + +#include "SDL_stdinc.h" +#include "SDL_video.h" /* For SDL_Window */ + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief SDL_MessageBox flags. If supported will display warning icon, etc. + */ +typedef enum +{ + SDL_MESSAGEBOX_ERROR = 0x00000010, /**< error dialog */ + SDL_MESSAGEBOX_WARNING = 0x00000020, /**< warning dialog */ + SDL_MESSAGEBOX_INFORMATION = 0x00000040 /**< informational dialog */ +} SDL_MessageBoxFlags; + +/** + * \brief Flags for SDL_MessageBoxButtonData. + */ +typedef enum +{ + SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT = 0x00000001, /**< Marks the default button when return is hit */ + SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT = 0x00000002 /**< Marks the default button when escape is hit */ +} SDL_MessageBoxButtonFlags; + +/** + * \brief Individual button data. + */ +typedef struct +{ + Uint32 flags; /**< ::SDL_MessageBoxButtonFlags */ + int buttonid; /**< User defined button id (value returned via SDL_ShowMessageBox) */ + const char * text; /**< The UTF-8 button text */ +} SDL_MessageBoxButtonData; + +/** + * \brief RGB value used in a message box color scheme + */ +typedef struct +{ + Uint8 r, g, b; +} SDL_MessageBoxColor; + +typedef enum +{ + SDL_MESSAGEBOX_COLOR_BACKGROUND, + SDL_MESSAGEBOX_COLOR_TEXT, + SDL_MESSAGEBOX_COLOR_BUTTON_BORDER, + SDL_MESSAGEBOX_COLOR_BUTTON_BACKGROUND, + SDL_MESSAGEBOX_COLOR_BUTTON_SELECTED, + SDL_MESSAGEBOX_COLOR_MAX +} SDL_MessageBoxColorType; + +/** + * \brief A set of colors to use for message box dialogs + */ +typedef struct +{ + SDL_MessageBoxColor colors[SDL_MESSAGEBOX_COLOR_MAX]; +} SDL_MessageBoxColorScheme; + +/** + * \brief MessageBox structure containing title, text, window, etc. + */ +typedef struct +{ + Uint32 flags; /**< ::SDL_MessageBoxFlags */ + SDL_Window *window; /**< Parent window, can be NULL */ + const char *title; /**< UTF-8 title */ + const char *message; /**< UTF-8 message text */ + + int numbuttons; + const SDL_MessageBoxButtonData *buttons; + + const SDL_MessageBoxColorScheme *colorScheme; /**< ::SDL_MessageBoxColorScheme, can be NULL to use system settings */ +} SDL_MessageBoxData; + +/** + * \brief Create a modal message box. + * + * \param messageboxdata The SDL_MessageBoxData structure with title, text, etc. + * \param buttonid The pointer to which user id of hit button should be copied. + * + * \return -1 on error, otherwise 0 and buttonid contains user id of button + * hit or -1 if dialog was closed. + * + * \note This function should be called on the thread that created the parent + * window, or on the main thread if the messagebox has no parent. It will + * block execution of that thread until the user clicks a button or + * closes the messagebox. + */ +extern DECLSPEC int SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid); + +/** + * \brief Create a simple modal message box + * + * \param flags ::SDL_MessageBoxFlags + * \param title UTF-8 title text + * \param message UTF-8 message text + * \param window The parent window, or NULL for no parent + * + * \return 0 on success, -1 on error + * + * \sa SDL_ShowMessageBox + */ +extern DECLSPEC int SDLCALL SDL_ShowSimpleMessageBox(Uint32 flags, const char *title, const char *message, SDL_Window *window); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_messagebox_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_mouse.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_mouse.h new file mode 100644 index 0000000..ebfd18f --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_mouse.h @@ -0,0 +1,224 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_mouse.h + * + * Include file for SDL mouse event handling. + */ + +#ifndef _SDL_mouse_h +#define _SDL_mouse_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" +#include "SDL_video.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct SDL_Cursor SDL_Cursor; /* Implementation dependent */ + +/** + * \brief Cursor types for SDL_CreateSystemCursor. + */ +typedef enum +{ + SDL_SYSTEM_CURSOR_ARROW, /**< Arrow */ + SDL_SYSTEM_CURSOR_IBEAM, /**< I-beam */ + SDL_SYSTEM_CURSOR_WAIT, /**< Wait */ + SDL_SYSTEM_CURSOR_CROSSHAIR, /**< Crosshair */ + SDL_SYSTEM_CURSOR_WAITARROW, /**< Small wait cursor (or Wait if not available) */ + SDL_SYSTEM_CURSOR_SIZENWSE, /**< Double arrow pointing northwest and southeast */ + SDL_SYSTEM_CURSOR_SIZENESW, /**< Double arrow pointing northeast and southwest */ + SDL_SYSTEM_CURSOR_SIZEWE, /**< Double arrow pointing west and east */ + SDL_SYSTEM_CURSOR_SIZENS, /**< Double arrow pointing north and south */ + SDL_SYSTEM_CURSOR_SIZEALL, /**< Four pointed arrow pointing north, south, east, and west */ + SDL_SYSTEM_CURSOR_NO, /**< Slashed circle or crossbones */ + SDL_SYSTEM_CURSOR_HAND, /**< Hand */ + SDL_NUM_SYSTEM_CURSORS +} SDL_SystemCursor; + +/* Function prototypes */ + +/** + * \brief Get the window which currently has mouse focus. + */ +extern DECLSPEC SDL_Window * SDLCALL SDL_GetMouseFocus(void); + +/** + * \brief Retrieve the current state of the mouse. + * + * The current button state is returned as a button bitmask, which can + * be tested using the SDL_BUTTON(X) macros, and x and y are set to the + * mouse cursor position relative to the focus window for the currently + * selected mouse. You can pass NULL for either x or y. + */ +extern DECLSPEC Uint32 SDLCALL SDL_GetMouseState(int *x, int *y); + +/** + * \brief Retrieve the relative state of the mouse. + * + * The current button state is returned as a button bitmask, which can + * be tested using the SDL_BUTTON(X) macros, and x and y are set to the + * mouse deltas since the last call to SDL_GetRelativeMouseState(). + */ +extern DECLSPEC Uint32 SDLCALL SDL_GetRelativeMouseState(int *x, int *y); + +/** + * \brief Moves the mouse to the given position within the window. + * + * \param window The window to move the mouse into, or NULL for the current mouse focus + * \param x The x coordinate within the window + * \param y The y coordinate within the window + * + * \note This function generates a mouse motion event + */ +extern DECLSPEC void SDLCALL SDL_WarpMouseInWindow(SDL_Window * window, + int x, int y); + +/** + * \brief Set relative mouse mode. + * + * \param enabled Whether or not to enable relative mode + * + * \return 0 on success, or -1 if relative mode is not supported. + * + * While the mouse is in relative mode, the cursor is hidden, and the + * driver will try to report continuous motion in the current window. + * Only relative motion events will be delivered, the mouse position + * will not change. + * + * \note This function will flush any pending mouse motion. + * + * \sa SDL_GetRelativeMouseMode() + */ +extern DECLSPEC int SDLCALL SDL_SetRelativeMouseMode(SDL_bool enabled); + +/** + * \brief Query whether relative mouse mode is enabled. + * + * \sa SDL_SetRelativeMouseMode() + */ +extern DECLSPEC SDL_bool SDLCALL SDL_GetRelativeMouseMode(void); + +/** + * \brief Create a cursor, using the specified bitmap data and + * mask (in MSB format). + * + * The cursor width must be a multiple of 8 bits. + * + * The cursor is created in black and white according to the following: + * + * + * + * + * + * + *
          data mask resulting pixel on screen
          0 1 White
          1 1 Black
          0 0 Transparent
          1 0 Inverted color if possible, black + * if not.
          + * + * \sa SDL_FreeCursor() + */ +extern DECLSPEC SDL_Cursor *SDLCALL SDL_CreateCursor(const Uint8 * data, + const Uint8 * mask, + int w, int h, int hot_x, + int hot_y); + +/** + * \brief Create a color cursor. + * + * \sa SDL_FreeCursor() + */ +extern DECLSPEC SDL_Cursor *SDLCALL SDL_CreateColorCursor(SDL_Surface *surface, + int hot_x, + int hot_y); + +/** + * \brief Create a system cursor. + * + * \sa SDL_FreeCursor() + */ +extern DECLSPEC SDL_Cursor *SDLCALL SDL_CreateSystemCursor(SDL_SystemCursor id); + +/** + * \brief Set the active cursor. + */ +extern DECLSPEC void SDLCALL SDL_SetCursor(SDL_Cursor * cursor); + +/** + * \brief Return the active cursor. + */ +extern DECLSPEC SDL_Cursor *SDLCALL SDL_GetCursor(void); + +/** + * \brief Return the default cursor. + */ +extern DECLSPEC SDL_Cursor *SDLCALL SDL_GetDefaultCursor(void); + +/** + * \brief Frees a cursor created with SDL_CreateCursor(). + * + * \sa SDL_CreateCursor() + */ +extern DECLSPEC void SDLCALL SDL_FreeCursor(SDL_Cursor * cursor); + +/** + * \brief Toggle whether or not the cursor is shown. + * + * \param toggle 1 to show the cursor, 0 to hide it, -1 to query the current + * state. + * + * \return 1 if the cursor is shown, or 0 if the cursor is hidden. + */ +extern DECLSPEC int SDLCALL SDL_ShowCursor(int toggle); + +/** + * Used as a mask when testing buttons in buttonstate. + * - Button 1: Left mouse button + * - Button 2: Middle mouse button + * - Button 3: Right mouse button + */ +#define SDL_BUTTON(X) (1 << ((X)-1)) +#define SDL_BUTTON_LEFT 1 +#define SDL_BUTTON_MIDDLE 2 +#define SDL_BUTTON_RIGHT 3 +#define SDL_BUTTON_X1 4 +#define SDL_BUTTON_X2 5 +#define SDL_BUTTON_LMASK SDL_BUTTON(SDL_BUTTON_LEFT) +#define SDL_BUTTON_MMASK SDL_BUTTON(SDL_BUTTON_MIDDLE) +#define SDL_BUTTON_RMASK SDL_BUTTON(SDL_BUTTON_RIGHT) +#define SDL_BUTTON_X1MASK SDL_BUTTON(SDL_BUTTON_X1) +#define SDL_BUTTON_X2MASK SDL_BUTTON(SDL_BUTTON_X2) + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_mouse_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_mutex.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_mutex.h new file mode 100644 index 0000000..3e8b4db --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_mutex.h @@ -0,0 +1,251 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef _SDL_mutex_h +#define _SDL_mutex_h + +/** + * \file SDL_mutex.h + * + * Functions to provide thread synchronization primitives. + */ + +#include "SDL_stdinc.h" +#include "SDL_error.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Synchronization functions which can time out return this value + * if they time out. + */ +#define SDL_MUTEX_TIMEDOUT 1 + +/** + * This is the timeout value which corresponds to never time out. + */ +#define SDL_MUTEX_MAXWAIT (~(Uint32)0) + + +/** + * \name Mutex functions + */ +/* @{ */ + +/* The SDL mutex structure, defined in SDL_sysmutex.c */ +struct SDL_mutex; +typedef struct SDL_mutex SDL_mutex; + +/** + * Create a mutex, initialized unlocked. + */ +extern DECLSPEC SDL_mutex *SDLCALL SDL_CreateMutex(void); + +/** + * Lock the mutex. + * + * \return 0, or -1 on error. + */ +#define SDL_mutexP(m) SDL_LockMutex(m) +extern DECLSPEC int SDLCALL SDL_LockMutex(SDL_mutex * mutex); + +/** + * Try to lock the mutex + * + * \return 0, SDL_MUTEX_TIMEDOUT, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_TryLockMutex(SDL_mutex * mutex); + +/** + * Unlock the mutex. + * + * \return 0, or -1 on error. + * + * \warning It is an error to unlock a mutex that has not been locked by + * the current thread, and doing so results in undefined behavior. + */ +#define SDL_mutexV(m) SDL_UnlockMutex(m) +extern DECLSPEC int SDLCALL SDL_UnlockMutex(SDL_mutex * mutex); + +/** + * Destroy a mutex. + */ +extern DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_mutex * mutex); + +/* @} *//* Mutex functions */ + + +/** + * \name Semaphore functions + */ +/* @{ */ + +/* The SDL semaphore structure, defined in SDL_syssem.c */ +struct SDL_semaphore; +typedef struct SDL_semaphore SDL_sem; + +/** + * Create a semaphore, initialized with value, returns NULL on failure. + */ +extern DECLSPEC SDL_sem *SDLCALL SDL_CreateSemaphore(Uint32 initial_value); + +/** + * Destroy a semaphore. + */ +extern DECLSPEC void SDLCALL SDL_DestroySemaphore(SDL_sem * sem); + +/** + * This function suspends the calling thread until the semaphore pointed + * to by \c sem has a positive count. It then atomically decreases the + * semaphore count. + */ +extern DECLSPEC int SDLCALL SDL_SemWait(SDL_sem * sem); + +/** + * Non-blocking variant of SDL_SemWait(). + * + * \return 0 if the wait succeeds, ::SDL_MUTEX_TIMEDOUT if the wait would + * block, and -1 on error. + */ +extern DECLSPEC int SDLCALL SDL_SemTryWait(SDL_sem * sem); + +/** + * Variant of SDL_SemWait() with a timeout in milliseconds. + * + * \return 0 if the wait succeeds, ::SDL_MUTEX_TIMEDOUT if the wait does not + * succeed in the allotted time, and -1 on error. + * + * \warning On some platforms this function is implemented by looping with a + * delay of 1 ms, and so should be avoided if possible. + */ +extern DECLSPEC int SDLCALL SDL_SemWaitTimeout(SDL_sem * sem, Uint32 ms); + +/** + * Atomically increases the semaphore's count (not blocking). + * + * \return 0, or -1 on error. + */ +extern DECLSPEC int SDLCALL SDL_SemPost(SDL_sem * sem); + +/** + * Returns the current count of the semaphore. + */ +extern DECLSPEC Uint32 SDLCALL SDL_SemValue(SDL_sem * sem); + +/* @} *//* Semaphore functions */ + + +/** + * \name Condition variable functions + */ +/* @{ */ + +/* The SDL condition variable structure, defined in SDL_syscond.c */ +struct SDL_cond; +typedef struct SDL_cond SDL_cond; + +/** + * Create a condition variable. + * + * Typical use of condition variables: + * + * Thread A: + * SDL_LockMutex(lock); + * while ( ! condition ) { + * SDL_CondWait(cond, lock); + * } + * SDL_UnlockMutex(lock); + * + * Thread B: + * SDL_LockMutex(lock); + * ... + * condition = true; + * ... + * SDL_CondSignal(cond); + * SDL_UnlockMutex(lock); + * + * There is some discussion whether to signal the condition variable + * with the mutex locked or not. There is some potential performance + * benefit to unlocking first on some platforms, but there are some + * potential race conditions depending on how your code is structured. + * + * In general it's safer to signal the condition variable while the + * mutex is locked. + */ +extern DECLSPEC SDL_cond *SDLCALL SDL_CreateCond(void); + +/** + * Destroy a condition variable. + */ +extern DECLSPEC void SDLCALL SDL_DestroyCond(SDL_cond * cond); + +/** + * Restart one of the threads that are waiting on the condition variable. + * + * \return 0 or -1 on error. + */ +extern DECLSPEC int SDLCALL SDL_CondSignal(SDL_cond * cond); + +/** + * Restart all threads that are waiting on the condition variable. + * + * \return 0 or -1 on error. + */ +extern DECLSPEC int SDLCALL SDL_CondBroadcast(SDL_cond * cond); + +/** + * Wait on the condition variable, unlocking the provided mutex. + * + * \warning The mutex must be locked before entering this function! + * + * The mutex is re-locked once the condition variable is signaled. + * + * \return 0 when it is signaled, or -1 on error. + */ +extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond * cond, SDL_mutex * mutex); + +/** + * Waits for at most \c ms milliseconds, and returns 0 if the condition + * variable is signaled, ::SDL_MUTEX_TIMEDOUT if the condition is not + * signaled in the allotted time, and -1 on error. + * + * \warning On some platforms this function is implemented by looping with a + * delay of 1 ms, and so should be avoided if possible. + */ +extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond * cond, + SDL_mutex * mutex, Uint32 ms); + +/* @} *//* Condition variable functions */ + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_mutex_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_name.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_name.h new file mode 100644 index 0000000..719666f --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_name.h @@ -0,0 +1,33 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef _SDLname_h_ +#define _SDLname_h_ + +#if defined(__STDC__) || defined(__cplusplus) +#define NeedFunctionPrototypes 1 +#endif + +#define SDL_NAME(X) SDL_##X + +#endif /* _SDLname_h_ */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengl.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengl.h new file mode 100644 index 0000000..b48ea7a --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengl.h @@ -0,0 +1,11126 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_opengl.h + * + * This is a simple file to encapsulate the OpenGL API headers. + */ + +#ifndef _SDL_opengl_h +#define _SDL_opengl_h + +#include "SDL_config.h" + +#ifndef __IPHONEOS__ + +#ifdef __WIN32__ +#define WIN32_LEAN_AND_MEAN +#ifndef NOMINMAX +#define NOMINMAX /* Don't defined min() and max() */ +#endif +#include +#endif + +#ifdef __glext_h_ +/* Someone has already included glext.h */ +#define NO_SDL_GLEXT +#endif +#ifndef NO_SDL_GLEXT +#define __glext_h_ /* Don't let gl.h include glext.h */ +#endif +#if defined(__MACOSX__) +#include /* Header File For The OpenGL Library */ +#define __X_GL_H +#else +#include /* Header File For The OpenGL Library */ +#endif +#ifndef NO_SDL_GLEXT +#undef __glext_h_ +#endif + +/** + * \file SDL_opengl.h + * + * This file is included because glext.h is not available on some systems. + * If you don't want this version included, simply define ::NO_SDL_GLEXT. + * + * The latest version is available from: + * http://www.opengl.org/registry/ + */ + +/** + * \def NO_SDL_GLEXT + * + * Define this if you have your own version of glext.h and want to disable the + * version included in SDL_opengl.h. + */ + +#if !defined(NO_SDL_GLEXT) && !defined(GL_GLEXT_LEGACY) +#ifndef __glext_h_ +#define __glext_h_ + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright (c) 2007-2010 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Header file version number, required by OpenGL ABI for Linux */ +/* glext.h last updated $Date: 2010-08-03 01:30:25 -0700 (Tue, 03 Aug 2010) $ */ +/* Current version at http://www.opengl.org/registry/ */ +#define GL_GLEXT_VERSION 64 +/* Function declaration macros - to move into glplatform.h */ + +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) +#define WIN32_LEAN_AND_MEAN 1 +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif +#ifndef GLAPI +#define GLAPI extern +#endif + +/*************************************************************/ + +#ifndef GL_VERSION_1_2 +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_TEXTURE_BINDING_3D 0x806A +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#endif + +#ifndef GL_VERSION_1_2_DEPRECATED +#define GL_RESCALE_NORMAL 0x803A +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#endif + +#ifndef GL_ARB_imaging +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_BLEND_COLOR 0x8005 +#define GL_FUNC_ADD 0x8006 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +#define GL_BLEND_EQUATION 0x8009 +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#endif + +#ifndef GL_ARB_imaging_DEPRECATED +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_CONVOLUTION_BORDER_MODE 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS 0x8015 +#define GL_REDUCE 0x8016 +#define GL_CONVOLUTION_FORMAT 0x8017 +#define GL_CONVOLUTION_WIDTH 0x8018 +#define GL_CONVOLUTION_HEIGHT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_HISTOGRAM_WIDTH 0x8026 +#define GL_HISTOGRAM_FORMAT 0x8027 +#define GL_HISTOGRAM_RED_SIZE 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C +#define GL_HISTOGRAM_SINK 0x802D +#define GL_MINMAX 0x802E +#define GL_MINMAX_FORMAT 0x802F +#define GL_MINMAX_SINK 0x8030 +#define GL_TABLE_TOO_LARGE 0x8031 +#define GL_COLOR_MATRIX 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_COLOR_TABLE_SCALE 0x80D6 +#define GL_COLOR_TABLE_BIAS 0x80D7 +#define GL_COLOR_TABLE_FORMAT 0x80D8 +#define GL_COLOR_TABLE_WIDTH 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF +#define GL_CONSTANT_BORDER 0x8151 +#define GL_REPLICATE_BORDER 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR 0x8154 +#endif + +#ifndef GL_VERSION_1_3 +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_CLAMP_TO_BORDER 0x812D +#endif + +#ifndef GL_VERSION_1_3_DEPRECATED +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +#define GL_MULTISAMPLE_BIT 0x20000000 +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_SUBTRACT 0x84E7 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +#endif + +#ifndef GL_VERSION_1_4 +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_POINT_FADE_THRESHOLD_SIZE 0x8128 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_DEPTH_COMPONENT24 0x81A6 +#define GL_DEPTH_COMPONENT32 0x81A7 +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_MAX_TEXTURE_LOD_BIAS 0x84FD +#define GL_TEXTURE_LOD_BIAS 0x8501 +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_TEXTURE_DEPTH_SIZE 0x884A +#define GL_TEXTURE_COMPARE_MODE 0x884C +#define GL_TEXTURE_COMPARE_FUNC 0x884D +#endif + +#ifndef GL_VERSION_1_4_DEPRECATED +#define GL_POINT_SIZE_MIN 0x8126 +#define GL_POINT_SIZE_MAX 0x8127 +#define GL_POINT_DISTANCE_ATTENUATION 0x8129 +#define GL_GENERATE_MIPMAP 0x8191 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_FOG_COORDINATE_SOURCE 0x8450 +#define GL_FOG_COORDINATE 0x8451 +#define GL_FRAGMENT_DEPTH 0x8452 +#define GL_CURRENT_FOG_COORDINATE 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER 0x8456 +#define GL_FOG_COORDINATE_ARRAY 0x8457 +#define GL_COLOR_SUM 0x8458 +#define GL_CURRENT_SECONDARY_COLOR 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER 0x845D +#define GL_SECONDARY_COLOR_ARRAY 0x845E +#define GL_TEXTURE_FILTER_CONTROL 0x8500 +#define GL_DEPTH_TEXTURE_MODE 0x884B +#define GL_COMPARE_R_TO_TEXTURE 0x884E +#endif + +#ifndef GL_VERSION_1_5 +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_QUERY_COUNTER_BITS 0x8864 +#define GL_CURRENT_QUERY 0x8865 +#define GL_QUERY_RESULT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE 0x8867 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_READ_ONLY 0x88B8 +#define GL_WRITE_ONLY 0x88B9 +#define GL_READ_WRITE 0x88BA +#define GL_BUFFER_ACCESS 0x88BB +#define GL_BUFFER_MAPPED 0x88BC +#define GL_BUFFER_MAP_POINTER 0x88BD +#define GL_STREAM_DRAW 0x88E0 +#define GL_STREAM_READ 0x88E1 +#define GL_STREAM_COPY 0x88E2 +#define GL_STATIC_DRAW 0x88E4 +#define GL_STATIC_READ 0x88E5 +#define GL_STATIC_COPY 0x88E6 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_DYNAMIC_READ 0x88E9 +#define GL_DYNAMIC_COPY 0x88EA +#define GL_SAMPLES_PASSED 0x8914 +#endif + +#ifndef GL_VERSION_1_5_DEPRECATED +#define GL_VERTEX_ARRAY_BUFFER_BINDING 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING 0x889E +#define GL_FOG_COORD_SRC 0x8450 +#define GL_FOG_COORD 0x8451 +#define GL_CURRENT_FOG_COORD 0x8453 +#define GL_FOG_COORD_ARRAY_TYPE 0x8454 +#define GL_FOG_COORD_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORD_ARRAY_POINTER 0x8456 +#define GL_FOG_COORD_ARRAY 0x8457 +#define GL_FOG_COORD_ARRAY_BUFFER_BINDING 0x889D +#define GL_SRC0_RGB 0x8580 +#define GL_SRC1_RGB 0x8581 +#define GL_SRC2_RGB 0x8582 +#define GL_SRC0_ALPHA 0x8588 +#define GL_SRC1_ALPHA 0x8589 +#define GL_SRC2_ALPHA 0x858A +#endif + +#ifndef GL_VERSION_2_0 +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_MAX_DRAW_BUFFERS 0x8824 +#define GL_DRAW_BUFFER0 0x8825 +#define GL_DRAW_BUFFER1 0x8826 +#define GL_DRAW_BUFFER2 0x8827 +#define GL_DRAW_BUFFER3 0x8828 +#define GL_DRAW_BUFFER4 0x8829 +#define GL_DRAW_BUFFER5 0x882A +#define GL_DRAW_BUFFER6 0x882B +#define GL_DRAW_BUFFER7 0x882C +#define GL_DRAW_BUFFER8 0x882D +#define GL_DRAW_BUFFER9 0x882E +#define GL_DRAW_BUFFER10 0x882F +#define GL_DRAW_BUFFER11 0x8830 +#define GL_DRAW_BUFFER12 0x8831 +#define GL_DRAW_BUFFER13 0x8832 +#define GL_DRAW_BUFFER14 0x8833 +#define GL_DRAW_BUFFER15 0x8834 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A +#define GL_MAX_VARYING_FLOATS 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_SHADER_TYPE 0x8B4F +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_1D 0x8B5D +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_3D 0x8B5F +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_SAMPLER_1D_SHADOW 0x8B61 +#define GL_SAMPLER_2D_SHADOW 0x8B62 +#define GL_DELETE_STATUS 0x8B80 +#define GL_COMPILE_STATUS 0x8B81 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0 +#define GL_LOWER_LEFT 0x8CA1 +#define GL_UPPER_LEFT 0x8CA2 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#endif + +#ifndef GL_VERSION_2_0_DEPRECATED +#define GL_VERTEX_PROGRAM_TWO_SIDE 0x8643 +#define GL_POINT_SPRITE 0x8861 +#define GL_COORD_REPLACE 0x8862 +#define GL_MAX_TEXTURE_COORDS 0x8871 +#endif + +#ifndef GL_VERSION_2_1 +#define GL_PIXEL_PACK_BUFFER 0x88EB +#define GL_PIXEL_UNPACK_BUFFER 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING 0x88EF +#define GL_FLOAT_MAT2x3 0x8B65 +#define GL_FLOAT_MAT2x4 0x8B66 +#define GL_FLOAT_MAT3x2 0x8B67 +#define GL_FLOAT_MAT3x4 0x8B68 +#define GL_FLOAT_MAT4x2 0x8B69 +#define GL_FLOAT_MAT4x3 0x8B6A +#define GL_SRGB 0x8C40 +#define GL_SRGB8 0x8C41 +#define GL_SRGB_ALPHA 0x8C42 +#define GL_SRGB8_ALPHA8 0x8C43 +#define GL_COMPRESSED_SRGB 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA 0x8C49 +#endif + +#ifndef GL_VERSION_2_1_DEPRECATED +#define GL_CURRENT_RASTER_SECONDARY_COLOR 0x845F +#define GL_SLUMINANCE_ALPHA 0x8C44 +#define GL_SLUMINANCE8_ALPHA8 0x8C45 +#define GL_SLUMINANCE 0x8C46 +#define GL_SLUMINANCE8 0x8C47 +#define GL_COMPRESSED_SLUMINANCE 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA 0x8C4B +#endif + +#ifndef GL_VERSION_3_0 +#define GL_COMPARE_REF_TO_TEXTURE 0x884E +#define GL_CLIP_DISTANCE0 0x3000 +#define GL_CLIP_DISTANCE1 0x3001 +#define GL_CLIP_DISTANCE2 0x3002 +#define GL_CLIP_DISTANCE3 0x3003 +#define GL_CLIP_DISTANCE4 0x3004 +#define GL_CLIP_DISTANCE5 0x3005 +#define GL_CLIP_DISTANCE6 0x3006 +#define GL_CLIP_DISTANCE7 0x3007 +#define GL_MAX_CLIP_DISTANCES 0x0D32 +#define GL_MAJOR_VERSION 0x821B +#define GL_MINOR_VERSION 0x821C +#define GL_NUM_EXTENSIONS 0x821D +#define GL_CONTEXT_FLAGS 0x821E +#define GL_DEPTH_BUFFER 0x8223 +#define GL_STENCIL_BUFFER 0x8224 +#define GL_COMPRESSED_RED 0x8225 +#define GL_COMPRESSED_RG 0x8226 +#define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x0001 +#define GL_RGBA32F 0x8814 +#define GL_RGB32F 0x8815 +#define GL_RGBA16F 0x881A +#define GL_RGB16F 0x881B +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER 0x88FD +#define GL_MAX_ARRAY_TEXTURE_LAYERS 0x88FF +#define GL_MIN_PROGRAM_TEXEL_OFFSET 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET 0x8905 +#define GL_CLAMP_READ_COLOR 0x891C +#define GL_FIXED_ONLY 0x891D +#define GL_MAX_VARYING_COMPONENTS 0x8B4B +#define GL_TEXTURE_1D_ARRAY 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY 0x8C19 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY 0x8C1D +#define GL_R11F_G11F_B10F 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B +#define GL_RGB9_E5 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV 0x8C3E +#define GL_TEXTURE_SHARED_SIZE 0x8C3F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH 0x8C76 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE 0x8C85 +#define GL_PRIMITIVES_GENERATED 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN 0x8C88 +#define GL_RASTERIZER_DISCARD 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS 0x8C8B +#define GL_INTERLEAVED_ATTRIBS 0x8C8C +#define GL_SEPARATE_ATTRIBS 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING 0x8C8F +#define GL_RGBA32UI 0x8D70 +#define GL_RGB32UI 0x8D71 +#define GL_RGBA16UI 0x8D76 +#define GL_RGB16UI 0x8D77 +#define GL_RGBA8UI 0x8D7C +#define GL_RGB8UI 0x8D7D +#define GL_RGBA32I 0x8D82 +#define GL_RGB32I 0x8D83 +#define GL_RGBA16I 0x8D88 +#define GL_RGB16I 0x8D89 +#define GL_RGBA8I 0x8D8E +#define GL_RGB8I 0x8D8F +#define GL_RED_INTEGER 0x8D94 +#define GL_GREEN_INTEGER 0x8D95 +#define GL_BLUE_INTEGER 0x8D96 +#define GL_RGB_INTEGER 0x8D98 +#define GL_RGBA_INTEGER 0x8D99 +#define GL_BGR_INTEGER 0x8D9A +#define GL_BGRA_INTEGER 0x8D9B +#define GL_SAMPLER_1D_ARRAY 0x8DC0 +#define GL_SAMPLER_2D_ARRAY 0x8DC1 +#define GL_SAMPLER_1D_ARRAY_SHADOW 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW 0x8DC5 +#define GL_UNSIGNED_INT_VEC2 0x8DC6 +#define GL_UNSIGNED_INT_VEC3 0x8DC7 +#define GL_UNSIGNED_INT_VEC4 0x8DC8 +#define GL_INT_SAMPLER_1D 0x8DC9 +#define GL_INT_SAMPLER_2D 0x8DCA +#define GL_INT_SAMPLER_3D 0x8DCB +#define GL_INT_SAMPLER_CUBE 0x8DCC +#define GL_INT_SAMPLER_1D_ARRAY 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY 0x8DCF +#define GL_UNSIGNED_INT_SAMPLER_1D 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY 0x8DD7 +#define GL_QUERY_WAIT 0x8E13 +#define GL_QUERY_NO_WAIT 0x8E14 +#define GL_QUERY_BY_REGION_WAIT 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT 0x8E16 +#define GL_BUFFER_ACCESS_FLAGS 0x911F +#define GL_BUFFER_MAP_LENGTH 0x9120 +#define GL_BUFFER_MAP_OFFSET 0x9121 +/* Reuse tokens from ARB_depth_buffer_float */ +/* reuse GL_DEPTH_COMPONENT32F */ +/* reuse GL_DEPTH32F_STENCIL8 */ +/* reuse GL_FLOAT_32_UNSIGNED_INT_24_8_REV */ +/* Reuse tokens from ARB_framebuffer_object */ +/* reuse GL_INVALID_FRAMEBUFFER_OPERATION */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE */ +/* reuse GL_FRAMEBUFFER_DEFAULT */ +/* reuse GL_FRAMEBUFFER_UNDEFINED */ +/* reuse GL_DEPTH_STENCIL_ATTACHMENT */ +/* reuse GL_INDEX */ +/* reuse GL_MAX_RENDERBUFFER_SIZE */ +/* reuse GL_DEPTH_STENCIL */ +/* reuse GL_UNSIGNED_INT_24_8 */ +/* reuse GL_DEPTH24_STENCIL8 */ +/* reuse GL_TEXTURE_STENCIL_SIZE */ +/* reuse GL_TEXTURE_RED_TYPE */ +/* reuse GL_TEXTURE_GREEN_TYPE */ +/* reuse GL_TEXTURE_BLUE_TYPE */ +/* reuse GL_TEXTURE_ALPHA_TYPE */ +/* reuse GL_TEXTURE_DEPTH_TYPE */ +/* reuse GL_UNSIGNED_NORMALIZED */ +/* reuse GL_FRAMEBUFFER_BINDING */ +/* reuse GL_DRAW_FRAMEBUFFER_BINDING */ +/* reuse GL_RENDERBUFFER_BINDING */ +/* reuse GL_READ_FRAMEBUFFER */ +/* reuse GL_DRAW_FRAMEBUFFER */ +/* reuse GL_READ_FRAMEBUFFER_BINDING */ +/* reuse GL_RENDERBUFFER_SAMPLES */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER */ +/* reuse GL_FRAMEBUFFER_COMPLETE */ +/* reuse GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT */ +/* reuse GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT */ +/* reuse GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER */ +/* reuse GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER */ +/* reuse GL_FRAMEBUFFER_UNSUPPORTED */ +/* reuse GL_MAX_COLOR_ATTACHMENTS */ +/* reuse GL_COLOR_ATTACHMENT0 */ +/* reuse GL_COLOR_ATTACHMENT1 */ +/* reuse GL_COLOR_ATTACHMENT2 */ +/* reuse GL_COLOR_ATTACHMENT3 */ +/* reuse GL_COLOR_ATTACHMENT4 */ +/* reuse GL_COLOR_ATTACHMENT5 */ +/* reuse GL_COLOR_ATTACHMENT6 */ +/* reuse GL_COLOR_ATTACHMENT7 */ +/* reuse GL_COLOR_ATTACHMENT8 */ +/* reuse GL_COLOR_ATTACHMENT9 */ +/* reuse GL_COLOR_ATTACHMENT10 */ +/* reuse GL_COLOR_ATTACHMENT11 */ +/* reuse GL_COLOR_ATTACHMENT12 */ +/* reuse GL_COLOR_ATTACHMENT13 */ +/* reuse GL_COLOR_ATTACHMENT14 */ +/* reuse GL_COLOR_ATTACHMENT15 */ +/* reuse GL_DEPTH_ATTACHMENT */ +/* reuse GL_STENCIL_ATTACHMENT */ +/* reuse GL_FRAMEBUFFER */ +/* reuse GL_RENDERBUFFER */ +/* reuse GL_RENDERBUFFER_WIDTH */ +/* reuse GL_RENDERBUFFER_HEIGHT */ +/* reuse GL_RENDERBUFFER_INTERNAL_FORMAT */ +/* reuse GL_STENCIL_INDEX1 */ +/* reuse GL_STENCIL_INDEX4 */ +/* reuse GL_STENCIL_INDEX8 */ +/* reuse GL_STENCIL_INDEX16 */ +/* reuse GL_RENDERBUFFER_RED_SIZE */ +/* reuse GL_RENDERBUFFER_GREEN_SIZE */ +/* reuse GL_RENDERBUFFER_BLUE_SIZE */ +/* reuse GL_RENDERBUFFER_ALPHA_SIZE */ +/* reuse GL_RENDERBUFFER_DEPTH_SIZE */ +/* reuse GL_RENDERBUFFER_STENCIL_SIZE */ +/* reuse GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE */ +/* reuse GL_MAX_SAMPLES */ +/* Reuse tokens from ARB_framebuffer_sRGB */ +/* reuse GL_FRAMEBUFFER_SRGB */ +/* Reuse tokens from ARB_half_float_vertex */ +/* reuse GL_HALF_FLOAT */ +/* Reuse tokens from ARB_map_buffer_range */ +/* reuse GL_MAP_READ_BIT */ +/* reuse GL_MAP_WRITE_BIT */ +/* reuse GL_MAP_INVALIDATE_RANGE_BIT */ +/* reuse GL_MAP_INVALIDATE_BUFFER_BIT */ +/* reuse GL_MAP_FLUSH_EXPLICIT_BIT */ +/* reuse GL_MAP_UNSYNCHRONIZED_BIT */ +/* Reuse tokens from ARB_texture_compression_rgtc */ +/* reuse GL_COMPRESSED_RED_RGTC1 */ +/* reuse GL_COMPRESSED_SIGNED_RED_RGTC1 */ +/* reuse GL_COMPRESSED_RG_RGTC2 */ +/* reuse GL_COMPRESSED_SIGNED_RG_RGTC2 */ +/* Reuse tokens from ARB_texture_rg */ +/* reuse GL_RG */ +/* reuse GL_RG_INTEGER */ +/* reuse GL_R8 */ +/* reuse GL_R16 */ +/* reuse GL_RG8 */ +/* reuse GL_RG16 */ +/* reuse GL_R16F */ +/* reuse GL_R32F */ +/* reuse GL_RG16F */ +/* reuse GL_RG32F */ +/* reuse GL_R8I */ +/* reuse GL_R8UI */ +/* reuse GL_R16I */ +/* reuse GL_R16UI */ +/* reuse GL_R32I */ +/* reuse GL_R32UI */ +/* reuse GL_RG8I */ +/* reuse GL_RG8UI */ +/* reuse GL_RG16I */ +/* reuse GL_RG16UI */ +/* reuse GL_RG32I */ +/* reuse GL_RG32UI */ +/* Reuse tokens from ARB_vertex_array_object */ +/* reuse GL_VERTEX_ARRAY_BINDING */ +#endif + +#ifndef GL_VERSION_3_0_DEPRECATED +#define GL_CLAMP_VERTEX_COLOR 0x891A +#define GL_CLAMP_FRAGMENT_COLOR 0x891B +#define GL_ALPHA_INTEGER 0x8D97 +/* Reuse tokens from ARB_framebuffer_object */ +/* reuse GL_TEXTURE_LUMINANCE_TYPE */ +/* reuse GL_TEXTURE_INTENSITY_TYPE */ +#endif + +#ifndef GL_VERSION_3_1 +#define GL_SAMPLER_2D_RECT 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW 0x8B64 +#define GL_SAMPLER_BUFFER 0x8DC2 +#define GL_INT_SAMPLER_2D_RECT 0x8DCD +#define GL_INT_SAMPLER_BUFFER 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER 0x8DD8 +#define GL_TEXTURE_BUFFER 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT 0x8C2E +#define GL_TEXTURE_RECTANGLE 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE 0x84F8 +#define GL_RED_SNORM 0x8F90 +#define GL_RG_SNORM 0x8F91 +#define GL_RGB_SNORM 0x8F92 +#define GL_RGBA_SNORM 0x8F93 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGB8_SNORM 0x8F96 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM 0x8F98 +#define GL_RG16_SNORM 0x8F99 +#define GL_RGB16_SNORM 0x8F9A +#define GL_RGBA16_SNORM 0x8F9B +#define GL_SIGNED_NORMALIZED 0x8F9C +#define GL_PRIMITIVE_RESTART 0x8F9D +#define GL_PRIMITIVE_RESTART_INDEX 0x8F9E +/* Reuse tokens from ARB_copy_buffer */ +/* reuse GL_COPY_READ_BUFFER */ +/* reuse GL_COPY_WRITE_BUFFER */ +/* Reuse tokens from ARB_draw_instanced (none) */ +/* Reuse tokens from ARB_uniform_buffer_object */ +/* reuse GL_UNIFORM_BUFFER */ +/* reuse GL_UNIFORM_BUFFER_BINDING */ +/* reuse GL_UNIFORM_BUFFER_START */ +/* reuse GL_UNIFORM_BUFFER_SIZE */ +/* reuse GL_MAX_VERTEX_UNIFORM_BLOCKS */ +/* reuse GL_MAX_FRAGMENT_UNIFORM_BLOCKS */ +/* reuse GL_MAX_COMBINED_UNIFORM_BLOCKS */ +/* reuse GL_MAX_UNIFORM_BUFFER_BINDINGS */ +/* reuse GL_MAX_UNIFORM_BLOCK_SIZE */ +/* reuse GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS */ +/* reuse GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS */ +/* reuse GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT */ +/* reuse GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH */ +/* reuse GL_ACTIVE_UNIFORM_BLOCKS */ +/* reuse GL_UNIFORM_TYPE */ +/* reuse GL_UNIFORM_SIZE */ +/* reuse GL_UNIFORM_NAME_LENGTH */ +/* reuse GL_UNIFORM_BLOCK_INDEX */ +/* reuse GL_UNIFORM_OFFSET */ +/* reuse GL_UNIFORM_ARRAY_STRIDE */ +/* reuse GL_UNIFORM_MATRIX_STRIDE */ +/* reuse GL_UNIFORM_IS_ROW_MAJOR */ +/* reuse GL_UNIFORM_BLOCK_BINDING */ +/* reuse GL_UNIFORM_BLOCK_DATA_SIZE */ +/* reuse GL_UNIFORM_BLOCK_NAME_LENGTH */ +/* reuse GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS */ +/* reuse GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES */ +/* reuse GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER */ +/* reuse GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER */ +/* reuse GL_INVALID_INDEX */ +#endif + +#ifndef GL_VERSION_3_2 +#define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 +#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define GL_LINES_ADJACENCY 0x000A +#define GL_LINE_STRIP_ADJACENCY 0x000B +#define GL_TRIANGLES_ADJACENCY 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY 0x000D +#define GL_PROGRAM_POINT_SIZE 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS 0x8DA8 +#define GL_GEOMETRY_SHADER 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT 0x8916 +#define GL_GEOMETRY_INPUT_TYPE 0x8917 +#define GL_GEOMETRY_OUTPUT_TYPE 0x8918 +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS 0x8DE1 +#define GL_MAX_VERTEX_OUTPUT_COMPONENTS 0x9122 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS 0x9124 +#define GL_MAX_FRAGMENT_INPUT_COMPONENTS 0x9125 +#define GL_CONTEXT_PROFILE_MASK 0x9126 +/* reuse GL_MAX_VARYING_COMPONENTS */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER */ +/* Reuse tokens from ARB_depth_clamp */ +/* reuse GL_DEPTH_CLAMP */ +/* Reuse tokens from ARB_draw_elements_base_vertex (none) */ +/* Reuse tokens from ARB_fragment_coord_conventions (none) */ +/* Reuse tokens from ARB_provoking_vertex */ +/* reuse GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION */ +/* reuse GL_FIRST_VERTEX_CONVENTION */ +/* reuse GL_LAST_VERTEX_CONVENTION */ +/* reuse GL_PROVOKING_VERTEX */ +/* Reuse tokens from ARB_seamless_cube_map */ +/* reuse GL_TEXTURE_CUBE_MAP_SEAMLESS */ +/* Reuse tokens from ARB_sync */ +/* reuse GL_MAX_SERVER_WAIT_TIMEOUT */ +/* reuse GL_OBJECT_TYPE */ +/* reuse GL_SYNC_CONDITION */ +/* reuse GL_SYNC_STATUS */ +/* reuse GL_SYNC_FLAGS */ +/* reuse GL_SYNC_FENCE */ +/* reuse GL_SYNC_GPU_COMMANDS_COMPLETE */ +/* reuse GL_UNSIGNALED */ +/* reuse GL_SIGNALED */ +/* reuse GL_ALREADY_SIGNALED */ +/* reuse GL_TIMEOUT_EXPIRED */ +/* reuse GL_CONDITION_SATISFIED */ +/* reuse GL_WAIT_FAILED */ +/* reuse GL_TIMEOUT_IGNORED */ +/* reuse GL_SYNC_FLUSH_COMMANDS_BIT */ +/* reuse GL_TIMEOUT_IGNORED */ +/* Reuse tokens from ARB_texture_multisample */ +/* reuse GL_SAMPLE_POSITION */ +/* reuse GL_SAMPLE_MASK */ +/* reuse GL_SAMPLE_MASK_VALUE */ +/* reuse GL_MAX_SAMPLE_MASK_WORDS */ +/* reuse GL_TEXTURE_2D_MULTISAMPLE */ +/* reuse GL_PROXY_TEXTURE_2D_MULTISAMPLE */ +/* reuse GL_TEXTURE_2D_MULTISAMPLE_ARRAY */ +/* reuse GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY */ +/* reuse GL_TEXTURE_BINDING_2D_MULTISAMPLE */ +/* reuse GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY */ +/* reuse GL_TEXTURE_SAMPLES */ +/* reuse GL_TEXTURE_FIXED_SAMPLE_LOCATIONS */ +/* reuse GL_SAMPLER_2D_MULTISAMPLE */ +/* reuse GL_INT_SAMPLER_2D_MULTISAMPLE */ +/* reuse GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE */ +/* reuse GL_SAMPLER_2D_MULTISAMPLE_ARRAY */ +/* reuse GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY */ +/* reuse GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY */ +/* reuse GL_MAX_COLOR_TEXTURE_SAMPLES */ +/* reuse GL_MAX_DEPTH_TEXTURE_SAMPLES */ +/* reuse GL_MAX_INTEGER_SAMPLES */ +/* Don't need to reuse tokens from ARB_vertex_array_bgra since they're already in 1.2 core */ +#endif + +#ifndef GL_VERSION_3_3 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE +/* Reuse tokens from ARB_blend_func_extended */ +/* reuse GL_SRC1_COLOR */ +/* reuse GL_ONE_MINUS_SRC1_COLOR */ +/* reuse GL_ONE_MINUS_SRC1_ALPHA */ +/* reuse GL_MAX_DUAL_SOURCE_DRAW_BUFFERS */ +/* Reuse tokens from ARB_explicit_attrib_location (none) */ +/* Reuse tokens from ARB_occlusion_query2 */ +/* reuse GL_ANY_SAMPLES_PASSED */ +/* Reuse tokens from ARB_sampler_objects */ +/* reuse GL_SAMPLER_BINDING */ +/* Reuse tokens from ARB_shader_bit_encoding (none) */ +/* Reuse tokens from ARB_texture_rgb10_a2ui */ +/* reuse GL_RGB10_A2UI */ +/* Reuse tokens from ARB_texture_swizzle */ +/* reuse GL_TEXTURE_SWIZZLE_R */ +/* reuse GL_TEXTURE_SWIZZLE_G */ +/* reuse GL_TEXTURE_SWIZZLE_B */ +/* reuse GL_TEXTURE_SWIZZLE_A */ +/* reuse GL_TEXTURE_SWIZZLE_RGBA */ +/* Reuse tokens from ARB_timer_query */ +/* reuse GL_TIME_ELAPSED */ +/* reuse GL_TIMESTAMP */ +/* Reuse tokens from ARB_vertex_type_2_10_10_10_rev */ +/* reuse GL_INT_2_10_10_10_REV */ +#endif + +#ifndef GL_VERSION_4_0 +#define GL_SAMPLE_SHADING 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE 0x8C37 +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5F +#define GL_TEXTURE_CUBE_MAP_ARRAY 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY 0x900F +/* Reuse tokens from ARB_texture_query_lod (none) */ +/* Reuse tokens from ARB_draw_buffers_blend (none) */ +/* Reuse tokens from ARB_draw_indirect */ +/* reuse GL_DRAW_INDIRECT_BUFFER */ +/* reuse GL_DRAW_INDIRECT_BUFFER_BINDING */ +/* Reuse tokens from ARB_gpu_shader5 */ +/* reuse GL_GEOMETRY_SHADER_INVOCATIONS */ +/* reuse GL_MAX_GEOMETRY_SHADER_INVOCATIONS */ +/* reuse GL_MIN_FRAGMENT_INTERPOLATION_OFFSET */ +/* reuse GL_MAX_FRAGMENT_INTERPOLATION_OFFSET */ +/* reuse GL_FRAGMENT_INTERPOLATION_OFFSET_BITS */ +/* reuse GL_MAX_VERTEX_STREAMS */ +/* Reuse tokens from ARB_gpu_shader_fp64 */ +/* reuse GL_DOUBLE_VEC2 */ +/* reuse GL_DOUBLE_VEC3 */ +/* reuse GL_DOUBLE_VEC4 */ +/* reuse GL_DOUBLE_MAT2 */ +/* reuse GL_DOUBLE_MAT3 */ +/* reuse GL_DOUBLE_MAT4 */ +/* reuse GL_DOUBLE_MAT2x3 */ +/* reuse GL_DOUBLE_MAT2x4 */ +/* reuse GL_DOUBLE_MAT3x2 */ +/* reuse GL_DOUBLE_MAT3x4 */ +/* reuse GL_DOUBLE_MAT4x2 */ +/* reuse GL_DOUBLE_MAT4x3 */ +/* Reuse tokens from ARB_shader_subroutine */ +/* reuse GL_ACTIVE_SUBROUTINES */ +/* reuse GL_ACTIVE_SUBROUTINE_UNIFORMS */ +/* reuse GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS */ +/* reuse GL_ACTIVE_SUBROUTINE_MAX_LENGTH */ +/* reuse GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH */ +/* reuse GL_MAX_SUBROUTINES */ +/* reuse GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS */ +/* reuse GL_NUM_COMPATIBLE_SUBROUTINES */ +/* reuse GL_COMPATIBLE_SUBROUTINES */ +/* Reuse tokens from ARB_tessellation_shader */ +/* reuse GL_PATCHES */ +/* reuse GL_PATCH_VERTICES */ +/* reuse GL_PATCH_DEFAULT_INNER_LEVEL */ +/* reuse GL_PATCH_DEFAULT_OUTER_LEVEL */ +/* reuse GL_TESS_CONTROL_OUTPUT_VERTICES */ +/* reuse GL_TESS_GEN_MODE */ +/* reuse GL_TESS_GEN_SPACING */ +/* reuse GL_TESS_GEN_VERTEX_ORDER */ +/* reuse GL_TESS_GEN_POINT_MODE */ +/* reuse GL_ISOLINES */ +/* reuse GL_FRACTIONAL_ODD */ +/* reuse GL_FRACTIONAL_EVEN */ +/* reuse GL_MAX_PATCH_VERTICES */ +/* reuse GL_MAX_TESS_GEN_LEVEL */ +/* reuse GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS */ +/* reuse GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS */ +/* reuse GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS */ +/* reuse GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS */ +/* reuse GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS */ +/* reuse GL_MAX_TESS_PATCH_COMPONENTS */ +/* reuse GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS */ +/* reuse GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS */ +/* reuse GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS */ +/* reuse GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS */ +/* reuse GL_MAX_TESS_CONTROL_INPUT_COMPONENTS */ +/* reuse GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS */ +/* reuse GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS */ +/* reuse GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS */ +/* reuse GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER */ +/* reuse GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER */ +/* reuse GL_TESS_EVALUATION_SHADER */ +/* reuse GL_TESS_CONTROL_SHADER */ +/* Reuse tokens from ARB_texture_buffer_object_rgb32 (none) */ +/* Reuse tokens from ARB_transform_feedback2 */ +/* reuse GL_TRANSFORM_FEEDBACK */ +/* reuse GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED */ +/* reuse GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE */ +/* reuse GL_TRANSFORM_FEEDBACK_BINDING */ +/* Reuse tokens from ARB_transform_feedback3 */ +/* reuse GL_MAX_TRANSFORM_FEEDBACK_BUFFERS */ +/* reuse GL_MAX_VERTEX_STREAMS */ +#endif + +#ifndef GL_VERSION_4_1 +/* Reuse tokens from ARB_ES2_compatibility */ +/* reuse GL_FIXED */ +/* reuse GL_IMPLEMENTATION_COLOR_READ_TYPE */ +/* reuse GL_IMPLEMENTATION_COLOR_READ_FORMAT */ +/* reuse GL_LOW_FLOAT */ +/* reuse GL_MEDIUM_FLOAT */ +/* reuse GL_HIGH_FLOAT */ +/* reuse GL_LOW_INT */ +/* reuse GL_MEDIUM_INT */ +/* reuse GL_HIGH_INT */ +/* reuse GL_SHADER_COMPILER */ +/* reuse GL_NUM_SHADER_BINARY_FORMATS */ +/* reuse GL_MAX_VERTEX_UNIFORM_VECTORS */ +/* reuse GL_MAX_VARYING_VECTORS */ +/* reuse GL_MAX_FRAGMENT_UNIFORM_VECTORS */ +/* Reuse tokens from ARB_get_program_binary */ +/* reuse GL_PROGRAM_BINARY_RETRIEVABLE_HINT */ +/* reuse GL_PROGRAM_BINARY_LENGTH */ +/* reuse GL_NUM_PROGRAM_BINARY_FORMATS */ +/* reuse GL_PROGRAM_BINARY_FORMATS */ +/* Reuse tokens from ARB_separate_shader_objects */ +/* reuse GL_VERTEX_SHADER_BIT */ +/* reuse GL_FRAGMENT_SHADER_BIT */ +/* reuse GL_GEOMETRY_SHADER_BIT */ +/* reuse GL_TESS_CONTROL_SHADER_BIT */ +/* reuse GL_TESS_EVALUATION_SHADER_BIT */ +/* reuse GL_ALL_SHADER_BITS */ +/* reuse GL_PROGRAM_SEPARABLE */ +/* reuse GL_ACTIVE_PROGRAM */ +/* reuse GL_PROGRAM_PIPELINE_BINDING */ +/* Reuse tokens from ARB_shader_precision (none) */ +/* Reuse tokens from ARB_vertex_attrib_64bit - all are in GL 3.0 and 4.0 already */ +/* Reuse tokens from ARB_viewport_array - some are in GL 1.1 and ARB_provoking_vertex already */ +/* reuse GL_MAX_VIEWPORTS */ +/* reuse GL_VIEWPORT_SUBPIXEL_BITS */ +/* reuse GL_VIEWPORT_BOUNDS_RANGE */ +/* reuse GL_LAYER_PROVOKING_VERTEX */ +/* reuse GL_VIEWPORT_INDEX_PROVOKING_VERTEX */ +/* reuse GL_UNDEFINED_VERTEX */ +#endif + +#ifndef GL_ARB_multitexture +#define GL_TEXTURE0_ARB 0x84C0 +#define GL_TEXTURE1_ARB 0x84C1 +#define GL_TEXTURE2_ARB 0x84C2 +#define GL_TEXTURE3_ARB 0x84C3 +#define GL_TEXTURE4_ARB 0x84C4 +#define GL_TEXTURE5_ARB 0x84C5 +#define GL_TEXTURE6_ARB 0x84C6 +#define GL_TEXTURE7_ARB 0x84C7 +#define GL_TEXTURE8_ARB 0x84C8 +#define GL_TEXTURE9_ARB 0x84C9 +#define GL_TEXTURE10_ARB 0x84CA +#define GL_TEXTURE11_ARB 0x84CB +#define GL_TEXTURE12_ARB 0x84CC +#define GL_TEXTURE13_ARB 0x84CD +#define GL_TEXTURE14_ARB 0x84CE +#define GL_TEXTURE15_ARB 0x84CF +#define GL_TEXTURE16_ARB 0x84D0 +#define GL_TEXTURE17_ARB 0x84D1 +#define GL_TEXTURE18_ARB 0x84D2 +#define GL_TEXTURE19_ARB 0x84D3 +#define GL_TEXTURE20_ARB 0x84D4 +#define GL_TEXTURE21_ARB 0x84D5 +#define GL_TEXTURE22_ARB 0x84D6 +#define GL_TEXTURE23_ARB 0x84D7 +#define GL_TEXTURE24_ARB 0x84D8 +#define GL_TEXTURE25_ARB 0x84D9 +#define GL_TEXTURE26_ARB 0x84DA +#define GL_TEXTURE27_ARB 0x84DB +#define GL_TEXTURE28_ARB 0x84DC +#define GL_TEXTURE29_ARB 0x84DD +#define GL_TEXTURE30_ARB 0x84DE +#define GL_TEXTURE31_ARB 0x84DF +#define GL_ACTIVE_TEXTURE_ARB 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 +#define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 +#endif + +#ifndef GL_ARB_transpose_matrix +#define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6 +#endif + +#ifndef GL_ARB_multisample +#define GL_MULTISAMPLE_ARB 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE_ARB 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_ARB 0x809F +#define GL_SAMPLE_COVERAGE_ARB 0x80A0 +#define GL_SAMPLE_BUFFERS_ARB 0x80A8 +#define GL_SAMPLES_ARB 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE_ARB 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT_ARB 0x80AB +#define GL_MULTISAMPLE_BIT_ARB 0x20000000 +#endif + +#ifndef GL_ARB_texture_env_add +#endif + +#ifndef GL_ARB_texture_cube_map +#define GL_NORMAL_MAP_ARB 0x8511 +#define GL_REFLECTION_MAP_ARB 0x8512 +#define GL_TEXTURE_CUBE_MAP_ARB 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARB 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB 0x851C +#endif + +#ifndef GL_ARB_texture_compression +#define GL_COMPRESSED_ALPHA_ARB 0x84E9 +#define GL_COMPRESSED_LUMINANCE_ARB 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB +#define GL_COMPRESSED_INTENSITY_ARB 0x84EC +#define GL_COMPRESSED_RGB_ARB 0x84ED +#define GL_COMPRESSED_RGBA_ARB 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT_ARB 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB 0x86A0 +#define GL_TEXTURE_COMPRESSED_ARB 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3 +#endif + +#ifndef GL_ARB_texture_border_clamp +#define GL_CLAMP_TO_BORDER_ARB 0x812D +#endif + +#ifndef GL_ARB_point_parameters +#define GL_POINT_SIZE_MIN_ARB 0x8126 +#define GL_POINT_SIZE_MAX_ARB 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128 +#define GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129 +#endif + +#ifndef GL_ARB_vertex_blend +#define GL_MAX_VERTEX_UNITS_ARB 0x86A4 +#define GL_ACTIVE_VERTEX_UNITS_ARB 0x86A5 +#define GL_WEIGHT_SUM_UNITY_ARB 0x86A6 +#define GL_VERTEX_BLEND_ARB 0x86A7 +#define GL_CURRENT_WEIGHT_ARB 0x86A8 +#define GL_WEIGHT_ARRAY_TYPE_ARB 0x86A9 +#define GL_WEIGHT_ARRAY_STRIDE_ARB 0x86AA +#define GL_WEIGHT_ARRAY_SIZE_ARB 0x86AB +#define GL_WEIGHT_ARRAY_POINTER_ARB 0x86AC +#define GL_WEIGHT_ARRAY_ARB 0x86AD +#define GL_MODELVIEW0_ARB 0x1700 +#define GL_MODELVIEW1_ARB 0x850A +#define GL_MODELVIEW2_ARB 0x8722 +#define GL_MODELVIEW3_ARB 0x8723 +#define GL_MODELVIEW4_ARB 0x8724 +#define GL_MODELVIEW5_ARB 0x8725 +#define GL_MODELVIEW6_ARB 0x8726 +#define GL_MODELVIEW7_ARB 0x8727 +#define GL_MODELVIEW8_ARB 0x8728 +#define GL_MODELVIEW9_ARB 0x8729 +#define GL_MODELVIEW10_ARB 0x872A +#define GL_MODELVIEW11_ARB 0x872B +#define GL_MODELVIEW12_ARB 0x872C +#define GL_MODELVIEW13_ARB 0x872D +#define GL_MODELVIEW14_ARB 0x872E +#define GL_MODELVIEW15_ARB 0x872F +#define GL_MODELVIEW16_ARB 0x8730 +#define GL_MODELVIEW17_ARB 0x8731 +#define GL_MODELVIEW18_ARB 0x8732 +#define GL_MODELVIEW19_ARB 0x8733 +#define GL_MODELVIEW20_ARB 0x8734 +#define GL_MODELVIEW21_ARB 0x8735 +#define GL_MODELVIEW22_ARB 0x8736 +#define GL_MODELVIEW23_ARB 0x8737 +#define GL_MODELVIEW24_ARB 0x8738 +#define GL_MODELVIEW25_ARB 0x8739 +#define GL_MODELVIEW26_ARB 0x873A +#define GL_MODELVIEW27_ARB 0x873B +#define GL_MODELVIEW28_ARB 0x873C +#define GL_MODELVIEW29_ARB 0x873D +#define GL_MODELVIEW30_ARB 0x873E +#define GL_MODELVIEW31_ARB 0x873F +#endif + +#ifndef GL_ARB_matrix_palette +#define GL_MATRIX_PALETTE_ARB 0x8840 +#define GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB 0x8841 +#define GL_MAX_PALETTE_MATRICES_ARB 0x8842 +#define GL_CURRENT_PALETTE_MATRIX_ARB 0x8843 +#define GL_MATRIX_INDEX_ARRAY_ARB 0x8844 +#define GL_CURRENT_MATRIX_INDEX_ARB 0x8845 +#define GL_MATRIX_INDEX_ARRAY_SIZE_ARB 0x8846 +#define GL_MATRIX_INDEX_ARRAY_TYPE_ARB 0x8847 +#define GL_MATRIX_INDEX_ARRAY_STRIDE_ARB 0x8848 +#define GL_MATRIX_INDEX_ARRAY_POINTER_ARB 0x8849 +#endif + +#ifndef GL_ARB_texture_env_combine +#define GL_COMBINE_ARB 0x8570 +#define GL_COMBINE_RGB_ARB 0x8571 +#define GL_COMBINE_ALPHA_ARB 0x8572 +#define GL_SOURCE0_RGB_ARB 0x8580 +#define GL_SOURCE1_RGB_ARB 0x8581 +#define GL_SOURCE2_RGB_ARB 0x8582 +#define GL_SOURCE0_ALPHA_ARB 0x8588 +#define GL_SOURCE1_ALPHA_ARB 0x8589 +#define GL_SOURCE2_ALPHA_ARB 0x858A +#define GL_OPERAND0_RGB_ARB 0x8590 +#define GL_OPERAND1_RGB_ARB 0x8591 +#define GL_OPERAND2_RGB_ARB 0x8592 +#define GL_OPERAND0_ALPHA_ARB 0x8598 +#define GL_OPERAND1_ALPHA_ARB 0x8599 +#define GL_OPERAND2_ALPHA_ARB 0x859A +#define GL_RGB_SCALE_ARB 0x8573 +#define GL_ADD_SIGNED_ARB 0x8574 +#define GL_INTERPOLATE_ARB 0x8575 +#define GL_SUBTRACT_ARB 0x84E7 +#define GL_CONSTANT_ARB 0x8576 +#define GL_PRIMARY_COLOR_ARB 0x8577 +#define GL_PREVIOUS_ARB 0x8578 +#endif + +#ifndef GL_ARB_texture_env_crossbar +#endif + +#ifndef GL_ARB_texture_env_dot3 +#define GL_DOT3_RGB_ARB 0x86AE +#define GL_DOT3_RGBA_ARB 0x86AF +#endif + +#ifndef GL_ARB_texture_mirrored_repeat +#define GL_MIRRORED_REPEAT_ARB 0x8370 +#endif + +#ifndef GL_ARB_depth_texture +#define GL_DEPTH_COMPONENT16_ARB 0x81A5 +#define GL_DEPTH_COMPONENT24_ARB 0x81A6 +#define GL_DEPTH_COMPONENT32_ARB 0x81A7 +#define GL_TEXTURE_DEPTH_SIZE_ARB 0x884A +#define GL_DEPTH_TEXTURE_MODE_ARB 0x884B +#endif + +#ifndef GL_ARB_shadow +#define GL_TEXTURE_COMPARE_MODE_ARB 0x884C +#define GL_TEXTURE_COMPARE_FUNC_ARB 0x884D +#define GL_COMPARE_R_TO_TEXTURE_ARB 0x884E +#endif + +#ifndef GL_ARB_shadow_ambient +#define GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF +#endif + +#ifndef GL_ARB_window_pos +#endif + +#ifndef GL_ARB_vertex_program +#define GL_COLOR_SUM_ARB 0x8458 +#define GL_VERTEX_PROGRAM_ARB 0x8620 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB_ARB 0x8626 +#define GL_PROGRAM_LENGTH_ARB 0x8627 +#define GL_PROGRAM_STRING_ARB 0x8628 +#define GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB 0x862E +#define GL_MAX_PROGRAM_MATRICES_ARB 0x862F +#define GL_CURRENT_MATRIX_STACK_DEPTH_ARB 0x8640 +#define GL_CURRENT_MATRIX_ARB 0x8641 +#define GL_VERTEX_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_ARB 0x8643 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB 0x8645 +#define GL_PROGRAM_ERROR_POSITION_ARB 0x864B +#define GL_PROGRAM_BINDING_ARB 0x8677 +#define GL_MAX_VERTEX_ATTRIBS_ARB 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB 0x886A +#define GL_PROGRAM_ERROR_STRING_ARB 0x8874 +#define GL_PROGRAM_FORMAT_ASCII_ARB 0x8875 +#define GL_PROGRAM_FORMAT_ARB 0x8876 +#define GL_PROGRAM_INSTRUCTIONS_ARB 0x88A0 +#define GL_MAX_PROGRAM_INSTRUCTIONS_ARB 0x88A1 +#define GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A2 +#define GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A3 +#define GL_PROGRAM_TEMPORARIES_ARB 0x88A4 +#define GL_MAX_PROGRAM_TEMPORARIES_ARB 0x88A5 +#define GL_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A6 +#define GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A7 +#define GL_PROGRAM_PARAMETERS_ARB 0x88A8 +#define GL_MAX_PROGRAM_PARAMETERS_ARB 0x88A9 +#define GL_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AA +#define GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AB +#define GL_PROGRAM_ATTRIBS_ARB 0x88AC +#define GL_MAX_PROGRAM_ATTRIBS_ARB 0x88AD +#define GL_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AE +#define GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AF +#define GL_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B0 +#define GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B1 +#define GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B2 +#define GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B3 +#define GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB 0x88B4 +#define GL_MAX_PROGRAM_ENV_PARAMETERS_ARB 0x88B5 +#define GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB 0x88B6 +#define GL_TRANSPOSE_CURRENT_MATRIX_ARB 0x88B7 +#define GL_MATRIX0_ARB 0x88C0 +#define GL_MATRIX1_ARB 0x88C1 +#define GL_MATRIX2_ARB 0x88C2 +#define GL_MATRIX3_ARB 0x88C3 +#define GL_MATRIX4_ARB 0x88C4 +#define GL_MATRIX5_ARB 0x88C5 +#define GL_MATRIX6_ARB 0x88C6 +#define GL_MATRIX7_ARB 0x88C7 +#define GL_MATRIX8_ARB 0x88C8 +#define GL_MATRIX9_ARB 0x88C9 +#define GL_MATRIX10_ARB 0x88CA +#define GL_MATRIX11_ARB 0x88CB +#define GL_MATRIX12_ARB 0x88CC +#define GL_MATRIX13_ARB 0x88CD +#define GL_MATRIX14_ARB 0x88CE +#define GL_MATRIX15_ARB 0x88CF +#define GL_MATRIX16_ARB 0x88D0 +#define GL_MATRIX17_ARB 0x88D1 +#define GL_MATRIX18_ARB 0x88D2 +#define GL_MATRIX19_ARB 0x88D3 +#define GL_MATRIX20_ARB 0x88D4 +#define GL_MATRIX21_ARB 0x88D5 +#define GL_MATRIX22_ARB 0x88D6 +#define GL_MATRIX23_ARB 0x88D7 +#define GL_MATRIX24_ARB 0x88D8 +#define GL_MATRIX25_ARB 0x88D9 +#define GL_MATRIX26_ARB 0x88DA +#define GL_MATRIX27_ARB 0x88DB +#define GL_MATRIX28_ARB 0x88DC +#define GL_MATRIX29_ARB 0x88DD +#define GL_MATRIX30_ARB 0x88DE +#define GL_MATRIX31_ARB 0x88DF +#endif + +#ifndef GL_ARB_fragment_program +#define GL_FRAGMENT_PROGRAM_ARB 0x8804 +#define GL_PROGRAM_ALU_INSTRUCTIONS_ARB 0x8805 +#define GL_PROGRAM_TEX_INSTRUCTIONS_ARB 0x8806 +#define GL_PROGRAM_TEX_INDIRECTIONS_ARB 0x8807 +#define GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x8808 +#define GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x8809 +#define GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x880A +#define GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB 0x880B +#define GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB 0x880C +#define GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB 0x880D +#define GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x880E +#define GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x880F +#define GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x8810 +#define GL_MAX_TEXTURE_COORDS_ARB 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_ARB 0x8872 +#endif + +#ifndef GL_ARB_vertex_buffer_object +#define GL_BUFFER_SIZE_ARB 0x8764 +#define GL_BUFFER_USAGE_ARB 0x8765 +#define GL_ARRAY_BUFFER_ARB 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER_ARB 0x8893 +#define GL_ARRAY_BUFFER_BINDING_ARB 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB 0x8895 +#define GL_VERTEX_ARRAY_BUFFER_BINDING_ARB 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING_ARB 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING_ARB 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING_ARB 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB 0x889E +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB 0x889F +#define GL_READ_ONLY_ARB 0x88B8 +#define GL_WRITE_ONLY_ARB 0x88B9 +#define GL_READ_WRITE_ARB 0x88BA +#define GL_BUFFER_ACCESS_ARB 0x88BB +#define GL_BUFFER_MAPPED_ARB 0x88BC +#define GL_BUFFER_MAP_POINTER_ARB 0x88BD +#define GL_STREAM_DRAW_ARB 0x88E0 +#define GL_STREAM_READ_ARB 0x88E1 +#define GL_STREAM_COPY_ARB 0x88E2 +#define GL_STATIC_DRAW_ARB 0x88E4 +#define GL_STATIC_READ_ARB 0x88E5 +#define GL_STATIC_COPY_ARB 0x88E6 +#define GL_DYNAMIC_DRAW_ARB 0x88E8 +#define GL_DYNAMIC_READ_ARB 0x88E9 +#define GL_DYNAMIC_COPY_ARB 0x88EA +#endif + +#ifndef GL_ARB_occlusion_query +#define GL_QUERY_COUNTER_BITS_ARB 0x8864 +#define GL_CURRENT_QUERY_ARB 0x8865 +#define GL_QUERY_RESULT_ARB 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_ARB 0x8867 +#define GL_SAMPLES_PASSED_ARB 0x8914 +#endif + +#ifndef GL_ARB_shader_objects +#define GL_PROGRAM_OBJECT_ARB 0x8B40 +#define GL_SHADER_OBJECT_ARB 0x8B48 +#define GL_OBJECT_TYPE_ARB 0x8B4E +#define GL_OBJECT_SUBTYPE_ARB 0x8B4F +#define GL_FLOAT_VEC2_ARB 0x8B50 +#define GL_FLOAT_VEC3_ARB 0x8B51 +#define GL_FLOAT_VEC4_ARB 0x8B52 +#define GL_INT_VEC2_ARB 0x8B53 +#define GL_INT_VEC3_ARB 0x8B54 +#define GL_INT_VEC4_ARB 0x8B55 +#define GL_BOOL_ARB 0x8B56 +#define GL_BOOL_VEC2_ARB 0x8B57 +#define GL_BOOL_VEC3_ARB 0x8B58 +#define GL_BOOL_VEC4_ARB 0x8B59 +#define GL_FLOAT_MAT2_ARB 0x8B5A +#define GL_FLOAT_MAT3_ARB 0x8B5B +#define GL_FLOAT_MAT4_ARB 0x8B5C +#define GL_SAMPLER_1D_ARB 0x8B5D +#define GL_SAMPLER_2D_ARB 0x8B5E +#define GL_SAMPLER_3D_ARB 0x8B5F +#define GL_SAMPLER_CUBE_ARB 0x8B60 +#define GL_SAMPLER_1D_SHADOW_ARB 0x8B61 +#define GL_SAMPLER_2D_SHADOW_ARB 0x8B62 +#define GL_SAMPLER_2D_RECT_ARB 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64 +#define GL_OBJECT_DELETE_STATUS_ARB 0x8B80 +#define GL_OBJECT_COMPILE_STATUS_ARB 0x8B81 +#define GL_OBJECT_LINK_STATUS_ARB 0x8B82 +#define GL_OBJECT_VALIDATE_STATUS_ARB 0x8B83 +#define GL_OBJECT_INFO_LOG_LENGTH_ARB 0x8B84 +#define GL_OBJECT_ATTACHED_OBJECTS_ARB 0x8B85 +#define GL_OBJECT_ACTIVE_UNIFORMS_ARB 0x8B86 +#define GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB 0x8B87 +#define GL_OBJECT_SHADER_SOURCE_LENGTH_ARB 0x8B88 +#endif + +#ifndef GL_ARB_vertex_shader +#define GL_VERTEX_SHADER_ARB 0x8B31 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB 0x8B4A +#define GL_MAX_VARYING_FLOATS_ARB 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB 0x8B4D +#define GL_OBJECT_ACTIVE_ATTRIBUTES_ARB 0x8B89 +#define GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB 0x8B8A +#endif + +#ifndef GL_ARB_fragment_shader +#define GL_FRAGMENT_SHADER_ARB 0x8B30 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB 0x8B49 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B +#endif + +#ifndef GL_ARB_shading_language_100 +#define GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C +#endif + +#ifndef GL_ARB_texture_non_power_of_two +#endif + +#ifndef GL_ARB_point_sprite +#define GL_POINT_SPRITE_ARB 0x8861 +#define GL_COORD_REPLACE_ARB 0x8862 +#endif + +#ifndef GL_ARB_fragment_program_shadow +#endif + +#ifndef GL_ARB_draw_buffers +#define GL_MAX_DRAW_BUFFERS_ARB 0x8824 +#define GL_DRAW_BUFFER0_ARB 0x8825 +#define GL_DRAW_BUFFER1_ARB 0x8826 +#define GL_DRAW_BUFFER2_ARB 0x8827 +#define GL_DRAW_BUFFER3_ARB 0x8828 +#define GL_DRAW_BUFFER4_ARB 0x8829 +#define GL_DRAW_BUFFER5_ARB 0x882A +#define GL_DRAW_BUFFER6_ARB 0x882B +#define GL_DRAW_BUFFER7_ARB 0x882C +#define GL_DRAW_BUFFER8_ARB 0x882D +#define GL_DRAW_BUFFER9_ARB 0x882E +#define GL_DRAW_BUFFER10_ARB 0x882F +#define GL_DRAW_BUFFER11_ARB 0x8830 +#define GL_DRAW_BUFFER12_ARB 0x8831 +#define GL_DRAW_BUFFER13_ARB 0x8832 +#define GL_DRAW_BUFFER14_ARB 0x8833 +#define GL_DRAW_BUFFER15_ARB 0x8834 +#endif + +#ifndef GL_ARB_texture_rectangle +#define GL_TEXTURE_RECTANGLE_ARB 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8 +#endif + +#ifndef GL_ARB_color_buffer_float +#define GL_RGBA_FLOAT_MODE_ARB 0x8820 +#define GL_CLAMP_VERTEX_COLOR_ARB 0x891A +#define GL_CLAMP_FRAGMENT_COLOR_ARB 0x891B +#define GL_CLAMP_READ_COLOR_ARB 0x891C +#define GL_FIXED_ONLY_ARB 0x891D +#endif + +#ifndef GL_ARB_half_float_pixel +#define GL_HALF_FLOAT_ARB 0x140B +#endif + +#ifndef GL_ARB_texture_float +#define GL_TEXTURE_RED_TYPE_ARB 0x8C10 +#define GL_TEXTURE_GREEN_TYPE_ARB 0x8C11 +#define GL_TEXTURE_BLUE_TYPE_ARB 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE_ARB 0x8C13 +#define GL_TEXTURE_LUMINANCE_TYPE_ARB 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE_ARB 0x8C15 +#define GL_TEXTURE_DEPTH_TYPE_ARB 0x8C16 +#define GL_UNSIGNED_NORMALIZED_ARB 0x8C17 +#define GL_RGBA32F_ARB 0x8814 +#define GL_RGB32F_ARB 0x8815 +#define GL_ALPHA32F_ARB 0x8816 +#define GL_INTENSITY32F_ARB 0x8817 +#define GL_LUMINANCE32F_ARB 0x8818 +#define GL_LUMINANCE_ALPHA32F_ARB 0x8819 +#define GL_RGBA16F_ARB 0x881A +#define GL_RGB16F_ARB 0x881B +#define GL_ALPHA16F_ARB 0x881C +#define GL_INTENSITY16F_ARB 0x881D +#define GL_LUMINANCE16F_ARB 0x881E +#define GL_LUMINANCE_ALPHA16F_ARB 0x881F +#endif + +#ifndef GL_ARB_pixel_buffer_object +#define GL_PIXEL_PACK_BUFFER_ARB 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_ARB 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_ARB 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_ARB 0x88EF +#endif + +#ifndef GL_ARB_depth_buffer_float +#define GL_DEPTH_COMPONENT32F 0x8CAC +#define GL_DEPTH32F_STENCIL8 0x8CAD +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD +#endif + +#ifndef GL_ARB_draw_instanced +#endif + +#ifndef GL_ARB_framebuffer_object +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING 0x8210 +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE 0x8211 +#define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE 0x8212 +#define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE 0x8213 +#define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE 0x8214 +#define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE 0x8215 +#define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE 0x8216 +#define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE 0x8217 +#define GL_FRAMEBUFFER_DEFAULT 0x8218 +#define GL_FRAMEBUFFER_UNDEFINED 0x8219 +#define GL_DEPTH_STENCIL_ATTACHMENT 0x821A +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_DEPTH_STENCIL 0x84F9 +#define GL_UNSIGNED_INT_24_8 0x84FA +#define GL_DEPTH24_STENCIL8 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE 0x88F1 +#define GL_TEXTURE_RED_TYPE 0x8C10 +#define GL_TEXTURE_GREEN_TYPE 0x8C11 +#define GL_TEXTURE_BLUE_TYPE 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE 0x8C13 +#define GL_TEXTURE_DEPTH_TYPE 0x8C16 +#define GL_UNSIGNED_NORMALIZED 0x8C17 +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_DRAW_FRAMEBUFFER_BINDING GL_FRAMEBUFFER_BINDING +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_READ_FRAMEBUFFER 0x8CA8 +#define GL_DRAW_FRAMEBUFFER 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING 0x8CAA +#define GL_RENDERBUFFER_SAMPLES 0x8CAB +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS 0x8CDF +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_COLOR_ATTACHMENT1 0x8CE1 +#define GL_COLOR_ATTACHMENT2 0x8CE2 +#define GL_COLOR_ATTACHMENT3 0x8CE3 +#define GL_COLOR_ATTACHMENT4 0x8CE4 +#define GL_COLOR_ATTACHMENT5 0x8CE5 +#define GL_COLOR_ATTACHMENT6 0x8CE6 +#define GL_COLOR_ATTACHMENT7 0x8CE7 +#define GL_COLOR_ATTACHMENT8 0x8CE8 +#define GL_COLOR_ATTACHMENT9 0x8CE9 +#define GL_COLOR_ATTACHMENT10 0x8CEA +#define GL_COLOR_ATTACHMENT11 0x8CEB +#define GL_COLOR_ATTACHMENT12 0x8CEC +#define GL_COLOR_ATTACHMENT13 0x8CED +#define GL_COLOR_ATTACHMENT14 0x8CEE +#define GL_COLOR_ATTACHMENT15 0x8CEF +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_STENCIL_INDEX1 0x8D46 +#define GL_STENCIL_INDEX4 0x8D47 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_STENCIL_INDEX16 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE 0x8D56 +#define GL_MAX_SAMPLES 0x8D57 +#endif + +#ifndef GL_ARB_framebuffer_object_DEPRECATED +#define GL_INDEX 0x8222 +#define GL_TEXTURE_LUMINANCE_TYPE 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE 0x8C15 +#endif + +#ifndef GL_ARB_framebuffer_sRGB +#define GL_FRAMEBUFFER_SRGB 0x8DB9 +#endif + +#ifndef GL_ARB_geometry_shader4 +#define GL_LINES_ADJACENCY_ARB 0x000A +#define GL_LINE_STRIP_ADJACENCY_ARB 0x000B +#define GL_TRIANGLES_ADJACENCY_ARB 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_ARB 0x000D +#define GL_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB 0x8DA9 +#define GL_GEOMETRY_SHADER_ARB 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_ARB 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_ARB 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_ARB 0x8DDC +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_ARB 0x8DDE +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB 0x8DE1 +/* reuse GL_MAX_VARYING_COMPONENTS */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER */ +#endif + +#ifndef GL_ARB_half_float_vertex +#define GL_HALF_FLOAT 0x140B +#endif + +#ifndef GL_ARB_instanced_arrays +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB 0x88FE +#endif + +#ifndef GL_ARB_map_buffer_range +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT 0x0020 +#endif + +#ifndef GL_ARB_texture_buffer_object +#define GL_TEXTURE_BUFFER_ARB 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_ARB 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_ARB 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_ARB 0x8C2E +#endif + +#ifndef GL_ARB_texture_compression_rgtc +#define GL_COMPRESSED_RED_RGTC1 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC +#define GL_COMPRESSED_RG_RGTC2 0x8DBD +#define GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE +#endif + +#ifndef GL_ARB_texture_rg +#define GL_RG 0x8227 +#define GL_RG_INTEGER 0x8228 +#define GL_R8 0x8229 +#define GL_R16 0x822A +#define GL_RG8 0x822B +#define GL_RG16 0x822C +#define GL_R16F 0x822D +#define GL_R32F 0x822E +#define GL_RG16F 0x822F +#define GL_RG32F 0x8230 +#define GL_R8I 0x8231 +#define GL_R8UI 0x8232 +#define GL_R16I 0x8233 +#define GL_R16UI 0x8234 +#define GL_R32I 0x8235 +#define GL_R32UI 0x8236 +#define GL_RG8I 0x8237 +#define GL_RG8UI 0x8238 +#define GL_RG16I 0x8239 +#define GL_RG16UI 0x823A +#define GL_RG32I 0x823B +#define GL_RG32UI 0x823C +#endif + +#ifndef GL_ARB_vertex_array_object +#define GL_VERTEX_ARRAY_BINDING 0x85B5 +#endif + +#ifndef GL_ARB_uniform_buffer_object +#define GL_UNIFORM_BUFFER 0x8A11 +#define GL_UNIFORM_BUFFER_BINDING 0x8A28 +#define GL_UNIFORM_BUFFER_START 0x8A29 +#define GL_UNIFORM_BUFFER_SIZE 0x8A2A +#define GL_MAX_VERTEX_UNIFORM_BLOCKS 0x8A2B +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C +#define GL_MAX_FRAGMENT_UNIFORM_BLOCKS 0x8A2D +#define GL_MAX_COMBINED_UNIFORM_BLOCKS 0x8A2E +#define GL_MAX_UNIFORM_BUFFER_BINDINGS 0x8A2F +#define GL_MAX_UNIFORM_BLOCK_SIZE 0x8A30 +#define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS 0x8A31 +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32 +#define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS 0x8A33 +#define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT 0x8A34 +#define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH 0x8A35 +#define GL_ACTIVE_UNIFORM_BLOCKS 0x8A36 +#define GL_UNIFORM_TYPE 0x8A37 +#define GL_UNIFORM_SIZE 0x8A38 +#define GL_UNIFORM_NAME_LENGTH 0x8A39 +#define GL_UNIFORM_BLOCK_INDEX 0x8A3A +#define GL_UNIFORM_OFFSET 0x8A3B +#define GL_UNIFORM_ARRAY_STRIDE 0x8A3C +#define GL_UNIFORM_MATRIX_STRIDE 0x8A3D +#define GL_UNIFORM_IS_ROW_MAJOR 0x8A3E +#define GL_UNIFORM_BLOCK_BINDING 0x8A3F +#define GL_UNIFORM_BLOCK_DATA_SIZE 0x8A40 +#define GL_UNIFORM_BLOCK_NAME_LENGTH 0x8A41 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS 0x8A42 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES 0x8A43 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER 0x8A44 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER 0x8A46 +#define GL_INVALID_INDEX 0xFFFFFFFFu +#endif + +#ifndef GL_ARB_compatibility +/* ARB_compatibility just defines tokens from core 3.0 */ +#endif + +#ifndef GL_ARB_copy_buffer +#define GL_COPY_READ_BUFFER 0x8F36 +#define GL_COPY_WRITE_BUFFER 0x8F37 +#endif + +#ifndef GL_ARB_shader_texture_lod +#endif + +#ifndef GL_ARB_depth_clamp +#define GL_DEPTH_CLAMP 0x864F +#endif + +#ifndef GL_ARB_draw_elements_base_vertex +#endif + +#ifndef GL_ARB_fragment_coord_conventions +#endif + +#ifndef GL_ARB_provoking_vertex +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION 0x8E4D +#define GL_LAST_VERTEX_CONVENTION 0x8E4E +#define GL_PROVOKING_VERTEX 0x8E4F +#endif + +#ifndef GL_ARB_seamless_cube_map +#define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F +#endif + +#ifndef GL_ARB_sync +#define GL_MAX_SERVER_WAIT_TIMEOUT 0x9111 +#define GL_OBJECT_TYPE 0x9112 +#define GL_SYNC_CONDITION 0x9113 +#define GL_SYNC_STATUS 0x9114 +#define GL_SYNC_FLAGS 0x9115 +#define GL_SYNC_FENCE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE 0x9117 +#define GL_UNSIGNALED 0x9118 +#define GL_SIGNALED 0x9119 +#define GL_ALREADY_SIGNALED 0x911A +#define GL_TIMEOUT_EXPIRED 0x911B +#define GL_CONDITION_SATISFIED 0x911C +#define GL_WAIT_FAILED 0x911D +#define GL_SYNC_FLUSH_COMMANDS_BIT 0x00000001 +#define GL_TIMEOUT_IGNORED 0xFFFFFFFFFFFFFFFFull +#endif + +#ifndef GL_ARB_texture_multisample +#define GL_SAMPLE_POSITION 0x8E50 +#define GL_SAMPLE_MASK 0x8E51 +#define GL_SAMPLE_MASK_VALUE 0x8E52 +#define GL_MAX_SAMPLE_MASK_WORDS 0x8E59 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE 0x9101 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9103 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE 0x9104 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY 0x9105 +#define GL_TEXTURE_SAMPLES 0x9106 +#define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS 0x9107 +#define GL_SAMPLER_2D_MULTISAMPLE 0x9108 +#define GL_INT_SAMPLER_2D_MULTISAMPLE 0x9109 +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE 0x910A +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910D +#define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E +#define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F +#define GL_MAX_INTEGER_SAMPLES 0x9110 +#endif + +#ifndef GL_ARB_vertex_array_bgra +/* reuse GL_BGRA */ +#endif + +#ifndef GL_ARB_draw_buffers_blend +#endif + +#ifndef GL_ARB_sample_shading +#define GL_SAMPLE_SHADING_ARB 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_ARB 0x8C37 +#endif + +#ifndef GL_ARB_texture_cube_map_array +#define GL_TEXTURE_CUBE_MAP_ARRAY_ARB 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900F +#endif + +#ifndef GL_ARB_texture_gather +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5F +#endif + +#ifndef GL_ARB_texture_query_lod +#endif + +#ifndef GL_ARB_shading_language_include +#define GL_SHADER_INCLUDE_ARB 0x8DAE +#define GL_NAMED_STRING_LENGTH_ARB 0x8DE9 +#define GL_NAMED_STRING_TYPE_ARB 0x8DEA +#endif + +#ifndef GL_ARB_texture_compression_bptc +#define GL_COMPRESSED_RGBA_BPTC_UNORM_ARB 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB 0x8E8F +#endif + +#ifndef GL_ARB_blend_func_extended +#define GL_SRC1_COLOR 0x88F9 +/* reuse GL_SRC1_ALPHA */ +#define GL_ONE_MINUS_SRC1_COLOR 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA 0x88FB +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC +#endif + +#ifndef GL_ARB_explicit_attrib_location +#endif + +#ifndef GL_ARB_occlusion_query2 +#define GL_ANY_SAMPLES_PASSED 0x8C2F +#endif + +#ifndef GL_ARB_sampler_objects +#define GL_SAMPLER_BINDING 0x8919 +#endif + +#ifndef GL_ARB_shader_bit_encoding +#endif + +#ifndef GL_ARB_texture_rgb10_a2ui +#define GL_RGB10_A2UI 0x906F +#endif + +#ifndef GL_ARB_texture_swizzle +#define GL_TEXTURE_SWIZZLE_R 0x8E42 +#define GL_TEXTURE_SWIZZLE_G 0x8E43 +#define GL_TEXTURE_SWIZZLE_B 0x8E44 +#define GL_TEXTURE_SWIZZLE_A 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA 0x8E46 +#endif + +#ifndef GL_ARB_timer_query +#define GL_TIME_ELAPSED 0x88BF +#define GL_TIMESTAMP 0x8E28 +#endif + +#ifndef GL_ARB_vertex_type_2_10_10_10_rev +/* reuse GL_UNSIGNED_INT_2_10_10_10_REV */ +#define GL_INT_2_10_10_10_REV 0x8D9F +#endif + +#ifndef GL_ARB_draw_indirect +#define GL_DRAW_INDIRECT_BUFFER 0x8F3F +#define GL_DRAW_INDIRECT_BUFFER_BINDING 0x8F43 +#endif + +#ifndef GL_ARB_gpu_shader5 +#define GL_GEOMETRY_SHADER_INVOCATIONS 0x887F +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS 0x8E5D +/* reuse GL_MAX_VERTEX_STREAMS */ +#endif + +#ifndef GL_ARB_gpu_shader_fp64 +/* reuse GL_DOUBLE */ +#define GL_DOUBLE_VEC2 0x8FFC +#define GL_DOUBLE_VEC3 0x8FFD +#define GL_DOUBLE_VEC4 0x8FFE +#define GL_DOUBLE_MAT2 0x8F46 +#define GL_DOUBLE_MAT3 0x8F47 +#define GL_DOUBLE_MAT4 0x8F48 +#define GL_DOUBLE_MAT2x3 0x8F49 +#define GL_DOUBLE_MAT2x4 0x8F4A +#define GL_DOUBLE_MAT3x2 0x8F4B +#define GL_DOUBLE_MAT3x4 0x8F4C +#define GL_DOUBLE_MAT4x2 0x8F4D +#define GL_DOUBLE_MAT4x3 0x8F4E +#endif + +#ifndef GL_ARB_shader_subroutine +#define GL_ACTIVE_SUBROUTINES 0x8DE5 +#define GL_ACTIVE_SUBROUTINE_UNIFORMS 0x8DE6 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS 0x8E47 +#define GL_ACTIVE_SUBROUTINE_MAX_LENGTH 0x8E48 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH 0x8E49 +#define GL_MAX_SUBROUTINES 0x8DE7 +#define GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS 0x8DE8 +#define GL_NUM_COMPATIBLE_SUBROUTINES 0x8E4A +#define GL_COMPATIBLE_SUBROUTINES 0x8E4B +/* reuse GL_UNIFORM_SIZE */ +/* reuse GL_UNIFORM_NAME_LENGTH */ +#endif + +#ifndef GL_ARB_tessellation_shader +#define GL_PATCHES 0x000E +#define GL_PATCH_VERTICES 0x8E72 +#define GL_PATCH_DEFAULT_INNER_LEVEL 0x8E73 +#define GL_PATCH_DEFAULT_OUTER_LEVEL 0x8E74 +#define GL_TESS_CONTROL_OUTPUT_VERTICES 0x8E75 +#define GL_TESS_GEN_MODE 0x8E76 +#define GL_TESS_GEN_SPACING 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER 0x8E78 +#define GL_TESS_GEN_POINT_MODE 0x8E79 +/* reuse GL_TRIANGLES */ +/* reuse GL_QUADS */ +#define GL_ISOLINES 0x8E7A +/* reuse GL_EQUAL */ +#define GL_FRACTIONAL_ODD 0x8E7B +#define GL_FRACTIONAL_EVEN 0x8E7C +/* reuse GL_CCW */ +/* reuse GL_CW */ +#define GL_MAX_PATCH_VERTICES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E1F +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER 0x84F0 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER 0x84F1 +#define GL_TESS_EVALUATION_SHADER 0x8E87 +#define GL_TESS_CONTROL_SHADER 0x8E88 +#endif + +#ifndef GL_ARB_texture_buffer_object_rgb32 +/* reuse GL_RGB32F */ +/* reuse GL_RGB32UI */ +/* reuse GL_RGB32I */ +#endif + +#ifndef GL_ARB_transform_feedback2 +#define GL_TRANSFORM_FEEDBACK 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING 0x8E25 +#endif + +#ifndef GL_ARB_transform_feedback3 +#define GL_MAX_TRANSFORM_FEEDBACK_BUFFERS 0x8E70 +#define GL_MAX_VERTEX_STREAMS 0x8E71 +#endif + +#ifndef GL_ARB_ES2_compatibility +#define GL_FIXED 0x140C +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#endif + +#ifndef GL_ARB_get_program_binary +#define GL_PROGRAM_BINARY_RETRIEVABLE_HINT 0x8257 +#define GL_PROGRAM_BINARY_LENGTH 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS 0x87FE +#define GL_PROGRAM_BINARY_FORMATS 0x87FF +#endif + +#ifndef GL_ARB_separate_shader_objects +#define GL_VERTEX_SHADER_BIT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT 0x00000002 +#define GL_GEOMETRY_SHADER_BIT 0x00000004 +#define GL_TESS_CONTROL_SHADER_BIT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT 0x00000010 +#define GL_ALL_SHADER_BITS 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE 0x8258 +#define GL_ACTIVE_PROGRAM 0x8259 +#define GL_PROGRAM_PIPELINE_BINDING 0x825A +#endif + +#ifndef GL_ARB_shader_precision +#endif + +#ifndef GL_ARB_vertex_attrib_64bit +/* reuse GL_RGB32I */ +/* reuse GL_DOUBLE_VEC2 */ +/* reuse GL_DOUBLE_VEC3 */ +/* reuse GL_DOUBLE_VEC4 */ +/* reuse GL_DOUBLE_MAT2 */ +/* reuse GL_DOUBLE_MAT3 */ +/* reuse GL_DOUBLE_MAT4 */ +/* reuse GL_DOUBLE_MAT2x3 */ +/* reuse GL_DOUBLE_MAT2x4 */ +/* reuse GL_DOUBLE_MAT3x2 */ +/* reuse GL_DOUBLE_MAT3x4 */ +/* reuse GL_DOUBLE_MAT4x2 */ +/* reuse GL_DOUBLE_MAT4x3 */ +#endif + +#ifndef GL_ARB_viewport_array +/* reuse GL_SCISSOR_BOX */ +/* reuse GL_VIEWPORT */ +/* reuse GL_DEPTH_RANGE */ +/* reuse GL_SCISSOR_TEST */ +#define GL_MAX_VIEWPORTS 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE 0x825D +#define GL_LAYER_PROVOKING_VERTEX 0x825E +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX 0x825F +#define GL_UNDEFINED_VERTEX 0x8260 +/* reuse GL_FIRST_VERTEX_CONVENTION */ +/* reuse GL_LAST_VERTEX_CONVENTION */ +/* reuse GL_PROVOKING_VERTEX */ +#endif + +#ifndef GL_ARB_cl_event +#define GL_SYNC_CL_EVENT_ARB 0x8240 +#define GL_SYNC_CL_EVENT_COMPLETE_ARB 0x8241 +#endif + +#ifndef GL_ARB_debug_output +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_ARB 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_ARB 0x8245 +#define GL_DEBUG_SOURCE_API_ARB 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_ARB 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_ARB 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_ARB 0x824A +#define GL_DEBUG_SOURCE_OTHER_ARB 0x824B +#define GL_DEBUG_TYPE_ERROR_ARB 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_ARB 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_ARB 0x8250 +#define GL_DEBUG_TYPE_OTHER_ARB 0x8251 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_ARB 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_ARB 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_ARB 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_ARB 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_ARB 0x9147 +#define GL_DEBUG_SEVERITY_LOW_ARB 0x9148 +#endif + +#ifndef GL_ARB_robustness +/* reuse GL_NO_ERROR */ +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB 0x00000004 +#define GL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 +#define GL_GUILTY_CONTEXT_RESET_ARB 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_ARB 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_ARB 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 +#define GL_NO_RESET_NOTIFICATION_ARB 0x8261 +#endif + +#ifndef GL_ARB_shader_stencil_export +#endif + +#ifndef GL_EXT_abgr +#define GL_ABGR_EXT 0x8000 +#endif + +#ifndef GL_EXT_blend_color +#define GL_CONSTANT_COLOR_EXT 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002 +#define GL_CONSTANT_ALPHA_EXT 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004 +#define GL_BLEND_COLOR_EXT 0x8005 +#endif + +#ifndef GL_EXT_polygon_offset +#define GL_POLYGON_OFFSET_EXT 0x8037 +#define GL_POLYGON_OFFSET_FACTOR_EXT 0x8038 +#define GL_POLYGON_OFFSET_BIAS_EXT 0x8039 +#endif + +#ifndef GL_EXT_texture +#define GL_ALPHA4_EXT 0x803B +#define GL_ALPHA8_EXT 0x803C +#define GL_ALPHA12_EXT 0x803D +#define GL_ALPHA16_EXT 0x803E +#define GL_LUMINANCE4_EXT 0x803F +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE12_EXT 0x8041 +#define GL_LUMINANCE16_EXT 0x8042 +#define GL_LUMINANCE4_ALPHA4_EXT 0x8043 +#define GL_LUMINANCE6_ALPHA2_EXT 0x8044 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_LUMINANCE12_ALPHA4_EXT 0x8046 +#define GL_LUMINANCE12_ALPHA12_EXT 0x8047 +#define GL_LUMINANCE16_ALPHA16_EXT 0x8048 +#define GL_INTENSITY_EXT 0x8049 +#define GL_INTENSITY4_EXT 0x804A +#define GL_INTENSITY8_EXT 0x804B +#define GL_INTENSITY12_EXT 0x804C +#define GL_INTENSITY16_EXT 0x804D +#define GL_RGB2_EXT 0x804E +#define GL_RGB4_EXT 0x804F +#define GL_RGB5_EXT 0x8050 +#define GL_RGB8_EXT 0x8051 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB12_EXT 0x8053 +#define GL_RGB16_EXT 0x8054 +#define GL_RGBA2_EXT 0x8055 +#define GL_RGBA4_EXT 0x8056 +#define GL_RGB5_A1_EXT 0x8057 +#define GL_RGBA8_EXT 0x8058 +#define GL_RGB10_A2_EXT 0x8059 +#define GL_RGBA12_EXT 0x805A +#define GL_RGBA16_EXT 0x805B +#define GL_TEXTURE_RED_SIZE_EXT 0x805C +#define GL_TEXTURE_GREEN_SIZE_EXT 0x805D +#define GL_TEXTURE_BLUE_SIZE_EXT 0x805E +#define GL_TEXTURE_ALPHA_SIZE_EXT 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE_EXT 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE_EXT 0x8061 +#define GL_REPLACE_EXT 0x8062 +#define GL_PROXY_TEXTURE_1D_EXT 0x8063 +#define GL_PROXY_TEXTURE_2D_EXT 0x8064 +#define GL_TEXTURE_TOO_LARGE_EXT 0x8065 +#endif + +#ifndef GL_EXT_texture3D +#define GL_PACK_SKIP_IMAGES_EXT 0x806B +#define GL_PACK_IMAGE_HEIGHT_EXT 0x806C +#define GL_UNPACK_SKIP_IMAGES_EXT 0x806D +#define GL_UNPACK_IMAGE_HEIGHT_EXT 0x806E +#define GL_TEXTURE_3D_EXT 0x806F +#define GL_PROXY_TEXTURE_3D_EXT 0x8070 +#define GL_TEXTURE_DEPTH_EXT 0x8071 +#define GL_TEXTURE_WRAP_R_EXT 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE_EXT 0x8073 +#endif + +#ifndef GL_SGIS_texture_filter4 +#define GL_FILTER4_SGIS 0x8146 +#define GL_TEXTURE_FILTER4_SIZE_SGIS 0x8147 +#endif + +#ifndef GL_EXT_subtexture +#endif + +#ifndef GL_EXT_copy_texture +#endif + +#ifndef GL_EXT_histogram +#define GL_HISTOGRAM_EXT 0x8024 +#define GL_PROXY_HISTOGRAM_EXT 0x8025 +#define GL_HISTOGRAM_WIDTH_EXT 0x8026 +#define GL_HISTOGRAM_FORMAT_EXT 0x8027 +#define GL_HISTOGRAM_RED_SIZE_EXT 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE_EXT 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE_EXT 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE_EXT 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE_EXT 0x802C +#define GL_HISTOGRAM_SINK_EXT 0x802D +#define GL_MINMAX_EXT 0x802E +#define GL_MINMAX_FORMAT_EXT 0x802F +#define GL_MINMAX_SINK_EXT 0x8030 +#define GL_TABLE_TOO_LARGE_EXT 0x8031 +#endif + +#ifndef GL_EXT_convolution +#define GL_CONVOLUTION_1D_EXT 0x8010 +#define GL_CONVOLUTION_2D_EXT 0x8011 +#define GL_SEPARABLE_2D_EXT 0x8012 +#define GL_CONVOLUTION_BORDER_MODE_EXT 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE_EXT 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS_EXT 0x8015 +#define GL_REDUCE_EXT 0x8016 +#define GL_CONVOLUTION_FORMAT_EXT 0x8017 +#define GL_CONVOLUTION_WIDTH_EXT 0x8018 +#define GL_CONVOLUTION_HEIGHT_EXT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH_EXT 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT_EXT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE_EXT 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE_EXT 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE_EXT 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE_EXT 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS_EXT 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS_EXT 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS_EXT 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS_EXT 0x8023 +#endif + +#ifndef GL_SGI_color_matrix +#define GL_COLOR_MATRIX_SGI 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE_SGI 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS_SGI 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI 0x80BB +#endif + +#ifndef GL_SGI_color_table +#define GL_COLOR_TABLE_SGI 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D2 +#define GL_PROXY_COLOR_TABLE_SGI 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D5 +#define GL_COLOR_TABLE_SCALE_SGI 0x80D6 +#define GL_COLOR_TABLE_BIAS_SGI 0x80D7 +#define GL_COLOR_TABLE_FORMAT_SGI 0x80D8 +#define GL_COLOR_TABLE_WIDTH_SGI 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE_SGI 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE_SGI 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE_SGI 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE_SGI 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE_SGI 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE_SGI 0x80DF +#endif + +#ifndef GL_SGIS_pixel_texture +#define GL_PIXEL_TEXTURE_SGIS 0x8353 +#define GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS 0x8354 +#define GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS 0x8355 +#define GL_PIXEL_GROUP_COLOR_SGIS 0x8356 +#endif + +#ifndef GL_SGIX_pixel_texture +#define GL_PIXEL_TEX_GEN_SGIX 0x8139 +#define GL_PIXEL_TEX_GEN_MODE_SGIX 0x832B +#endif + +#ifndef GL_SGIS_texture4D +#define GL_PACK_SKIP_VOLUMES_SGIS 0x8130 +#define GL_PACK_IMAGE_DEPTH_SGIS 0x8131 +#define GL_UNPACK_SKIP_VOLUMES_SGIS 0x8132 +#define GL_UNPACK_IMAGE_DEPTH_SGIS 0x8133 +#define GL_TEXTURE_4D_SGIS 0x8134 +#define GL_PROXY_TEXTURE_4D_SGIS 0x8135 +#define GL_TEXTURE_4DSIZE_SGIS 0x8136 +#define GL_TEXTURE_WRAP_Q_SGIS 0x8137 +#define GL_MAX_4D_TEXTURE_SIZE_SGIS 0x8138 +#define GL_TEXTURE_4D_BINDING_SGIS 0x814F +#endif + +#ifndef GL_SGI_texture_color_table +#define GL_TEXTURE_COLOR_TABLE_SGI 0x80BC +#define GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD +#endif + +#ifndef GL_EXT_cmyka +#define GL_CMYK_EXT 0x800C +#define GL_CMYKA_EXT 0x800D +#define GL_PACK_CMYK_HINT_EXT 0x800E +#define GL_UNPACK_CMYK_HINT_EXT 0x800F +#endif + +#ifndef GL_EXT_texture_object +#define GL_TEXTURE_PRIORITY_EXT 0x8066 +#define GL_TEXTURE_RESIDENT_EXT 0x8067 +#define GL_TEXTURE_1D_BINDING_EXT 0x8068 +#define GL_TEXTURE_2D_BINDING_EXT 0x8069 +#define GL_TEXTURE_3D_BINDING_EXT 0x806A +#endif + +#ifndef GL_SGIS_detail_texture +#define GL_DETAIL_TEXTURE_2D_SGIS 0x8095 +#define GL_DETAIL_TEXTURE_2D_BINDING_SGIS 0x8096 +#define GL_LINEAR_DETAIL_SGIS 0x8097 +#define GL_LINEAR_DETAIL_ALPHA_SGIS 0x8098 +#define GL_LINEAR_DETAIL_COLOR_SGIS 0x8099 +#define GL_DETAIL_TEXTURE_LEVEL_SGIS 0x809A +#define GL_DETAIL_TEXTURE_MODE_SGIS 0x809B +#define GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS 0x809C +#endif + +#ifndef GL_SGIS_sharpen_texture +#define GL_LINEAR_SHARPEN_SGIS 0x80AD +#define GL_LINEAR_SHARPEN_ALPHA_SGIS 0x80AE +#define GL_LINEAR_SHARPEN_COLOR_SGIS 0x80AF +#define GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS 0x80B0 +#endif + +#ifndef GL_EXT_packed_pixels +#define GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036 +#endif + +#ifndef GL_SGIS_texture_lod +#define GL_TEXTURE_MIN_LOD_SGIS 0x813A +#define GL_TEXTURE_MAX_LOD_SGIS 0x813B +#define GL_TEXTURE_BASE_LEVEL_SGIS 0x813C +#define GL_TEXTURE_MAX_LEVEL_SGIS 0x813D +#endif + +#ifndef GL_SGIS_multisample +#define GL_MULTISAMPLE_SGIS 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_SGIS 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_SGIS 0x809F +#define GL_SAMPLE_MASK_SGIS 0x80A0 +#define GL_1PASS_SGIS 0x80A1 +#define GL_2PASS_0_SGIS 0x80A2 +#define GL_2PASS_1_SGIS 0x80A3 +#define GL_4PASS_0_SGIS 0x80A4 +#define GL_4PASS_1_SGIS 0x80A5 +#define GL_4PASS_2_SGIS 0x80A6 +#define GL_4PASS_3_SGIS 0x80A7 +#define GL_SAMPLE_BUFFERS_SGIS 0x80A8 +#define GL_SAMPLES_SGIS 0x80A9 +#define GL_SAMPLE_MASK_VALUE_SGIS 0x80AA +#define GL_SAMPLE_MASK_INVERT_SGIS 0x80AB +#define GL_SAMPLE_PATTERN_SGIS 0x80AC +#endif + +#ifndef GL_EXT_rescale_normal +#define GL_RESCALE_NORMAL_EXT 0x803A +#endif + +#ifndef GL_EXT_vertex_array +#define GL_VERTEX_ARRAY_EXT 0x8074 +#define GL_NORMAL_ARRAY_EXT 0x8075 +#define GL_COLOR_ARRAY_EXT 0x8076 +#define GL_INDEX_ARRAY_EXT 0x8077 +#define GL_TEXTURE_COORD_ARRAY_EXT 0x8078 +#define GL_EDGE_FLAG_ARRAY_EXT 0x8079 +#define GL_VERTEX_ARRAY_SIZE_EXT 0x807A +#define GL_VERTEX_ARRAY_TYPE_EXT 0x807B +#define GL_VERTEX_ARRAY_STRIDE_EXT 0x807C +#define GL_VERTEX_ARRAY_COUNT_EXT 0x807D +#define GL_NORMAL_ARRAY_TYPE_EXT 0x807E +#define GL_NORMAL_ARRAY_STRIDE_EXT 0x807F +#define GL_NORMAL_ARRAY_COUNT_EXT 0x8080 +#define GL_COLOR_ARRAY_SIZE_EXT 0x8081 +#define GL_COLOR_ARRAY_TYPE_EXT 0x8082 +#define GL_COLOR_ARRAY_STRIDE_EXT 0x8083 +#define GL_COLOR_ARRAY_COUNT_EXT 0x8084 +#define GL_INDEX_ARRAY_TYPE_EXT 0x8085 +#define GL_INDEX_ARRAY_STRIDE_EXT 0x8086 +#define GL_INDEX_ARRAY_COUNT_EXT 0x8087 +#define GL_TEXTURE_COORD_ARRAY_SIZE_EXT 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE_EXT 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A +#define GL_TEXTURE_COORD_ARRAY_COUNT_EXT 0x808B +#define GL_EDGE_FLAG_ARRAY_STRIDE_EXT 0x808C +#define GL_EDGE_FLAG_ARRAY_COUNT_EXT 0x808D +#define GL_VERTEX_ARRAY_POINTER_EXT 0x808E +#define GL_NORMAL_ARRAY_POINTER_EXT 0x808F +#define GL_COLOR_ARRAY_POINTER_EXT 0x8090 +#define GL_INDEX_ARRAY_POINTER_EXT 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER_EXT 0x8093 +#endif + +#ifndef GL_EXT_misc_attribute +#endif + +#ifndef GL_SGIS_generate_mipmap +#define GL_GENERATE_MIPMAP_SGIS 0x8191 +#define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 +#endif + +#ifndef GL_SGIX_clipmap +#define GL_LINEAR_CLIPMAP_LINEAR_SGIX 0x8170 +#define GL_TEXTURE_CLIPMAP_CENTER_SGIX 0x8171 +#define GL_TEXTURE_CLIPMAP_FRAME_SGIX 0x8172 +#define GL_TEXTURE_CLIPMAP_OFFSET_SGIX 0x8173 +#define GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8174 +#define GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX 0x8175 +#define GL_TEXTURE_CLIPMAP_DEPTH_SGIX 0x8176 +#define GL_MAX_CLIPMAP_DEPTH_SGIX 0x8177 +#define GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8178 +#define GL_NEAREST_CLIPMAP_NEAREST_SGIX 0x844D +#define GL_NEAREST_CLIPMAP_LINEAR_SGIX 0x844E +#define GL_LINEAR_CLIPMAP_NEAREST_SGIX 0x844F +#endif + +#ifndef GL_SGIX_shadow +#define GL_TEXTURE_COMPARE_SGIX 0x819A +#define GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B +#define GL_TEXTURE_LEQUAL_R_SGIX 0x819C +#define GL_TEXTURE_GEQUAL_R_SGIX 0x819D +#endif + +#ifndef GL_SGIS_texture_edge_clamp +#define GL_CLAMP_TO_EDGE_SGIS 0x812F +#endif + +#ifndef GL_SGIS_texture_border_clamp +#define GL_CLAMP_TO_BORDER_SGIS 0x812D +#endif + +#ifndef GL_EXT_blend_minmax +#define GL_FUNC_ADD_EXT 0x8006 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#define GL_BLEND_EQUATION_EXT 0x8009 +#endif + +#ifndef GL_EXT_blend_subtract +#define GL_FUNC_SUBTRACT_EXT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B +#endif + +#ifndef GL_EXT_blend_logic_op +#endif + +#ifndef GL_SGIX_interlace +#define GL_INTERLACE_SGIX 0x8094 +#endif + +#ifndef GL_SGIX_pixel_tiles +#define GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX 0x813E +#define GL_PIXEL_TILE_CACHE_INCREMENT_SGIX 0x813F +#define GL_PIXEL_TILE_WIDTH_SGIX 0x8140 +#define GL_PIXEL_TILE_HEIGHT_SGIX 0x8141 +#define GL_PIXEL_TILE_GRID_WIDTH_SGIX 0x8142 +#define GL_PIXEL_TILE_GRID_HEIGHT_SGIX 0x8143 +#define GL_PIXEL_TILE_GRID_DEPTH_SGIX 0x8144 +#define GL_PIXEL_TILE_CACHE_SIZE_SGIX 0x8145 +#endif + +#ifndef GL_SGIS_texture_select +#define GL_DUAL_ALPHA4_SGIS 0x8110 +#define GL_DUAL_ALPHA8_SGIS 0x8111 +#define GL_DUAL_ALPHA12_SGIS 0x8112 +#define GL_DUAL_ALPHA16_SGIS 0x8113 +#define GL_DUAL_LUMINANCE4_SGIS 0x8114 +#define GL_DUAL_LUMINANCE8_SGIS 0x8115 +#define GL_DUAL_LUMINANCE12_SGIS 0x8116 +#define GL_DUAL_LUMINANCE16_SGIS 0x8117 +#define GL_DUAL_INTENSITY4_SGIS 0x8118 +#define GL_DUAL_INTENSITY8_SGIS 0x8119 +#define GL_DUAL_INTENSITY12_SGIS 0x811A +#define GL_DUAL_INTENSITY16_SGIS 0x811B +#define GL_DUAL_LUMINANCE_ALPHA4_SGIS 0x811C +#define GL_DUAL_LUMINANCE_ALPHA8_SGIS 0x811D +#define GL_QUAD_ALPHA4_SGIS 0x811E +#define GL_QUAD_ALPHA8_SGIS 0x811F +#define GL_QUAD_LUMINANCE4_SGIS 0x8120 +#define GL_QUAD_LUMINANCE8_SGIS 0x8121 +#define GL_QUAD_INTENSITY4_SGIS 0x8122 +#define GL_QUAD_INTENSITY8_SGIS 0x8123 +#define GL_DUAL_TEXTURE_SELECT_SGIS 0x8124 +#define GL_QUAD_TEXTURE_SELECT_SGIS 0x8125 +#endif + +#ifndef GL_SGIX_sprite +#define GL_SPRITE_SGIX 0x8148 +#define GL_SPRITE_MODE_SGIX 0x8149 +#define GL_SPRITE_AXIS_SGIX 0x814A +#define GL_SPRITE_TRANSLATION_SGIX 0x814B +#define GL_SPRITE_AXIAL_SGIX 0x814C +#define GL_SPRITE_OBJECT_ALIGNED_SGIX 0x814D +#define GL_SPRITE_EYE_ALIGNED_SGIX 0x814E +#endif + +#ifndef GL_SGIX_texture_multi_buffer +#define GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E +#endif + +#ifndef GL_EXT_point_parameters +#define GL_POINT_SIZE_MIN_EXT 0x8126 +#define GL_POINT_SIZE_MAX_EXT 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128 +#define GL_DISTANCE_ATTENUATION_EXT 0x8129 +#endif + +#ifndef GL_SGIS_point_parameters +#define GL_POINT_SIZE_MIN_SGIS 0x8126 +#define GL_POINT_SIZE_MAX_SGIS 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_SGIS 0x8128 +#define GL_DISTANCE_ATTENUATION_SGIS 0x8129 +#endif + +#ifndef GL_SGIX_instruments +#define GL_INSTRUMENT_BUFFER_POINTER_SGIX 0x8180 +#define GL_INSTRUMENT_MEASUREMENTS_SGIX 0x8181 +#endif + +#ifndef GL_SGIX_texture_scale_bias +#define GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179 +#define GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A +#define GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B +#define GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C +#endif + +#ifndef GL_SGIX_framezoom +#define GL_FRAMEZOOM_SGIX 0x818B +#define GL_FRAMEZOOM_FACTOR_SGIX 0x818C +#define GL_MAX_FRAMEZOOM_FACTOR_SGIX 0x818D +#endif + +#ifndef GL_SGIX_tag_sample_buffer +#endif + +#ifndef GL_FfdMaskSGIX +#define GL_TEXTURE_DEFORMATION_BIT_SGIX 0x00000001 +#define GL_GEOMETRY_DEFORMATION_BIT_SGIX 0x00000002 +#endif + +#ifndef GL_SGIX_polynomial_ffd +#define GL_GEOMETRY_DEFORMATION_SGIX 0x8194 +#define GL_TEXTURE_DEFORMATION_SGIX 0x8195 +#define GL_DEFORMATIONS_MASK_SGIX 0x8196 +#define GL_MAX_DEFORMATION_ORDER_SGIX 0x8197 +#endif + +#ifndef GL_SGIX_reference_plane +#define GL_REFERENCE_PLANE_SGIX 0x817D +#define GL_REFERENCE_PLANE_EQUATION_SGIX 0x817E +#endif + +#ifndef GL_SGIX_flush_raster +#endif + +#ifndef GL_SGIX_depth_texture +#define GL_DEPTH_COMPONENT16_SGIX 0x81A5 +#define GL_DEPTH_COMPONENT24_SGIX 0x81A6 +#define GL_DEPTH_COMPONENT32_SGIX 0x81A7 +#endif + +#ifndef GL_SGIS_fog_function +#define GL_FOG_FUNC_SGIS 0x812A +#define GL_FOG_FUNC_POINTS_SGIS 0x812B +#define GL_MAX_FOG_FUNC_POINTS_SGIS 0x812C +#endif + +#ifndef GL_SGIX_fog_offset +#define GL_FOG_OFFSET_SGIX 0x8198 +#define GL_FOG_OFFSET_VALUE_SGIX 0x8199 +#endif + +#ifndef GL_HP_image_transform +#define GL_IMAGE_SCALE_X_HP 0x8155 +#define GL_IMAGE_SCALE_Y_HP 0x8156 +#define GL_IMAGE_TRANSLATE_X_HP 0x8157 +#define GL_IMAGE_TRANSLATE_Y_HP 0x8158 +#define GL_IMAGE_ROTATE_ANGLE_HP 0x8159 +#define GL_IMAGE_ROTATE_ORIGIN_X_HP 0x815A +#define GL_IMAGE_ROTATE_ORIGIN_Y_HP 0x815B +#define GL_IMAGE_MAG_FILTER_HP 0x815C +#define GL_IMAGE_MIN_FILTER_HP 0x815D +#define GL_IMAGE_CUBIC_WEIGHT_HP 0x815E +#define GL_CUBIC_HP 0x815F +#define GL_AVERAGE_HP 0x8160 +#define GL_IMAGE_TRANSFORM_2D_HP 0x8161 +#define GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8162 +#define GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8163 +#endif + +#ifndef GL_HP_convolution_border_modes +#define GL_IGNORE_BORDER_HP 0x8150 +#define GL_CONSTANT_BORDER_HP 0x8151 +#define GL_REPLICATE_BORDER_HP 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR_HP 0x8154 +#endif + +#ifndef GL_INGR_palette_buffer +#endif + +#ifndef GL_SGIX_texture_add_env +#define GL_TEXTURE_ENV_BIAS_SGIX 0x80BE +#endif + +#ifndef GL_EXT_color_subtable +#endif + +#ifndef GL_PGI_vertex_hints +#define GL_VERTEX_DATA_HINT_PGI 0x1A22A +#define GL_VERTEX_CONSISTENT_HINT_PGI 0x1A22B +#define GL_MATERIAL_SIDE_HINT_PGI 0x1A22C +#define GL_MAX_VERTEX_HINT_PGI 0x1A22D +#define GL_COLOR3_BIT_PGI 0x00010000 +#define GL_COLOR4_BIT_PGI 0x00020000 +#define GL_EDGEFLAG_BIT_PGI 0x00040000 +#define GL_INDEX_BIT_PGI 0x00080000 +#define GL_MAT_AMBIENT_BIT_PGI 0x00100000 +#define GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI 0x00200000 +#define GL_MAT_DIFFUSE_BIT_PGI 0x00400000 +#define GL_MAT_EMISSION_BIT_PGI 0x00800000 +#define GL_MAT_COLOR_INDEXES_BIT_PGI 0x01000000 +#define GL_MAT_SHININESS_BIT_PGI 0x02000000 +#define GL_MAT_SPECULAR_BIT_PGI 0x04000000 +#define GL_NORMAL_BIT_PGI 0x08000000 +#define GL_TEXCOORD1_BIT_PGI 0x10000000 +#define GL_TEXCOORD2_BIT_PGI 0x20000000 +#define GL_TEXCOORD3_BIT_PGI 0x40000000 +#define GL_TEXCOORD4_BIT_PGI 0x80000000 +#define GL_VERTEX23_BIT_PGI 0x00000004 +#define GL_VERTEX4_BIT_PGI 0x00000008 +#endif + +#ifndef GL_PGI_misc_hints +#define GL_PREFER_DOUBLEBUFFER_HINT_PGI 0x1A1F8 +#define GL_CONSERVE_MEMORY_HINT_PGI 0x1A1FD +#define GL_RECLAIM_MEMORY_HINT_PGI 0x1A1FE +#define GL_NATIVE_GRAPHICS_HANDLE_PGI 0x1A202 +#define GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI 0x1A203 +#define GL_NATIVE_GRAPHICS_END_HINT_PGI 0x1A204 +#define GL_ALWAYS_FAST_HINT_PGI 0x1A20C +#define GL_ALWAYS_SOFT_HINT_PGI 0x1A20D +#define GL_ALLOW_DRAW_OBJ_HINT_PGI 0x1A20E +#define GL_ALLOW_DRAW_WIN_HINT_PGI 0x1A20F +#define GL_ALLOW_DRAW_FRG_HINT_PGI 0x1A210 +#define GL_ALLOW_DRAW_MEM_HINT_PGI 0x1A211 +#define GL_STRICT_DEPTHFUNC_HINT_PGI 0x1A216 +#define GL_STRICT_LIGHTING_HINT_PGI 0x1A217 +#define GL_STRICT_SCISSOR_HINT_PGI 0x1A218 +#define GL_FULL_STIPPLE_HINT_PGI 0x1A219 +#define GL_CLIP_NEAR_HINT_PGI 0x1A220 +#define GL_CLIP_FAR_HINT_PGI 0x1A221 +#define GL_WIDE_LINE_HINT_PGI 0x1A222 +#define GL_BACK_NORMALS_HINT_PGI 0x1A223 +#endif + +#ifndef GL_EXT_paletted_texture +#define GL_COLOR_INDEX1_EXT 0x80E2 +#define GL_COLOR_INDEX2_EXT 0x80E3 +#define GL_COLOR_INDEX4_EXT 0x80E4 +#define GL_COLOR_INDEX8_EXT 0x80E5 +#define GL_COLOR_INDEX12_EXT 0x80E6 +#define GL_COLOR_INDEX16_EXT 0x80E7 +#define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED +#endif + +#ifndef GL_EXT_clip_volume_hint +#define GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0 +#endif + +#ifndef GL_SGIX_list_priority +#define GL_LIST_PRIORITY_SGIX 0x8182 +#endif + +#ifndef GL_SGIX_ir_instrument1 +#define GL_IR_INSTRUMENT1_SGIX 0x817F +#endif + +#ifndef GL_SGIX_calligraphic_fragment +#define GL_CALLIGRAPHIC_FRAGMENT_SGIX 0x8183 +#endif + +#ifndef GL_SGIX_texture_lod_bias +#define GL_TEXTURE_LOD_BIAS_S_SGIX 0x818E +#define GL_TEXTURE_LOD_BIAS_T_SGIX 0x818F +#define GL_TEXTURE_LOD_BIAS_R_SGIX 0x8190 +#endif + +#ifndef GL_SGIX_shadow_ambient +#define GL_SHADOW_AMBIENT_SGIX 0x80BF +#endif + +#ifndef GL_EXT_index_texture +#endif + +#ifndef GL_EXT_index_material +#define GL_INDEX_MATERIAL_EXT 0x81B8 +#define GL_INDEX_MATERIAL_PARAMETER_EXT 0x81B9 +#define GL_INDEX_MATERIAL_FACE_EXT 0x81BA +#endif + +#ifndef GL_EXT_index_func +#define GL_INDEX_TEST_EXT 0x81B5 +#define GL_INDEX_TEST_FUNC_EXT 0x81B6 +#define GL_INDEX_TEST_REF_EXT 0x81B7 +#endif + +#ifndef GL_EXT_index_array_formats +#define GL_IUI_V2F_EXT 0x81AD +#define GL_IUI_V3F_EXT 0x81AE +#define GL_IUI_N3F_V2F_EXT 0x81AF +#define GL_IUI_N3F_V3F_EXT 0x81B0 +#define GL_T2F_IUI_V2F_EXT 0x81B1 +#define GL_T2F_IUI_V3F_EXT 0x81B2 +#define GL_T2F_IUI_N3F_V2F_EXT 0x81B3 +#define GL_T2F_IUI_N3F_V3F_EXT 0x81B4 +#endif + +#ifndef GL_EXT_compiled_vertex_array +#define GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8 +#define GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9 +#endif + +#ifndef GL_EXT_cull_vertex +#define GL_CULL_VERTEX_EXT 0x81AA +#define GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB +#define GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC +#endif + +#ifndef GL_SGIX_ycrcb +#define GL_YCRCB_422_SGIX 0x81BB +#define GL_YCRCB_444_SGIX 0x81BC +#endif + +#ifndef GL_SGIX_fragment_lighting +#define GL_FRAGMENT_LIGHTING_SGIX 0x8400 +#define GL_FRAGMENT_COLOR_MATERIAL_SGIX 0x8401 +#define GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX 0x8402 +#define GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX 0x8403 +#define GL_MAX_FRAGMENT_LIGHTS_SGIX 0x8404 +#define GL_MAX_ACTIVE_LIGHTS_SGIX 0x8405 +#define GL_CURRENT_RASTER_NORMAL_SGIX 0x8406 +#define GL_LIGHT_ENV_MODE_SGIX 0x8407 +#define GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX 0x8408 +#define GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX 0x8409 +#define GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX 0x840A +#define GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX 0x840B +#define GL_FRAGMENT_LIGHT0_SGIX 0x840C +#define GL_FRAGMENT_LIGHT1_SGIX 0x840D +#define GL_FRAGMENT_LIGHT2_SGIX 0x840E +#define GL_FRAGMENT_LIGHT3_SGIX 0x840F +#define GL_FRAGMENT_LIGHT4_SGIX 0x8410 +#define GL_FRAGMENT_LIGHT5_SGIX 0x8411 +#define GL_FRAGMENT_LIGHT6_SGIX 0x8412 +#define GL_FRAGMENT_LIGHT7_SGIX 0x8413 +#endif + +#ifndef GL_IBM_rasterpos_clip +#define GL_RASTER_POSITION_UNCLIPPED_IBM 0x19262 +#endif + +#ifndef GL_HP_texture_lighting +#define GL_TEXTURE_LIGHTING_MODE_HP 0x8167 +#define GL_TEXTURE_POST_SPECULAR_HP 0x8168 +#define GL_TEXTURE_PRE_SPECULAR_HP 0x8169 +#endif + +#ifndef GL_EXT_draw_range_elements +#define GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 +#define GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 +#endif + +#ifndef GL_WIN_phong_shading +#define GL_PHONG_WIN 0x80EA +#define GL_PHONG_HINT_WIN 0x80EB +#endif + +#ifndef GL_WIN_specular_fog +#define GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC +#endif + +#ifndef GL_EXT_light_texture +#define GL_FRAGMENT_MATERIAL_EXT 0x8349 +#define GL_FRAGMENT_NORMAL_EXT 0x834A +#define GL_FRAGMENT_COLOR_EXT 0x834C +#define GL_ATTENUATION_EXT 0x834D +#define GL_SHADOW_ATTENUATION_EXT 0x834E +#define GL_TEXTURE_APPLICATION_MODE_EXT 0x834F +#define GL_TEXTURE_LIGHT_EXT 0x8350 +#define GL_TEXTURE_MATERIAL_FACE_EXT 0x8351 +#define GL_TEXTURE_MATERIAL_PARAMETER_EXT 0x8352 +/* reuse GL_FRAGMENT_DEPTH_EXT */ +#endif + +#ifndef GL_SGIX_blend_alpha_minmax +#define GL_ALPHA_MIN_SGIX 0x8320 +#define GL_ALPHA_MAX_SGIX 0x8321 +#endif + +#ifndef GL_SGIX_impact_pixel_texture +#define GL_PIXEL_TEX_GEN_Q_CEILING_SGIX 0x8184 +#define GL_PIXEL_TEX_GEN_Q_ROUND_SGIX 0x8185 +#define GL_PIXEL_TEX_GEN_Q_FLOOR_SGIX 0x8186 +#define GL_PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX 0x8187 +#define GL_PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX 0x8188 +#define GL_PIXEL_TEX_GEN_ALPHA_LS_SGIX 0x8189 +#define GL_PIXEL_TEX_GEN_ALPHA_MS_SGIX 0x818A +#endif + +#ifndef GL_EXT_bgra +#define GL_BGR_EXT 0x80E0 +#define GL_BGRA_EXT 0x80E1 +#endif + +#ifndef GL_SGIX_async +#define GL_ASYNC_MARKER_SGIX 0x8329 +#endif + +#ifndef GL_SGIX_async_pixel +#define GL_ASYNC_TEX_IMAGE_SGIX 0x835C +#define GL_ASYNC_DRAW_PIXELS_SGIX 0x835D +#define GL_ASYNC_READ_PIXELS_SGIX 0x835E +#define GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F +#define GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360 +#define GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361 +#endif + +#ifndef GL_SGIX_async_histogram +#define GL_ASYNC_HISTOGRAM_SGIX 0x832C +#define GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D +#endif + +#ifndef GL_INTEL_texture_scissor +#endif + +#ifndef GL_INTEL_parallel_arrays +#define GL_PARALLEL_ARRAYS_INTEL 0x83F4 +#define GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL 0x83F5 +#define GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL 0x83F6 +#define GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL 0x83F7 +#define GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL 0x83F8 +#endif + +#ifndef GL_HP_occlusion_test +#define GL_OCCLUSION_TEST_HP 0x8165 +#define GL_OCCLUSION_TEST_RESULT_HP 0x8166 +#endif + +#ifndef GL_EXT_pixel_transform +#define GL_PIXEL_TRANSFORM_2D_EXT 0x8330 +#define GL_PIXEL_MAG_FILTER_EXT 0x8331 +#define GL_PIXEL_MIN_FILTER_EXT 0x8332 +#define GL_PIXEL_CUBIC_WEIGHT_EXT 0x8333 +#define GL_CUBIC_EXT 0x8334 +#define GL_AVERAGE_EXT 0x8335 +#define GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8336 +#define GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8337 +#define GL_PIXEL_TRANSFORM_2D_MATRIX_EXT 0x8338 +#endif + +#ifndef GL_EXT_pixel_transform_color_table +#endif + +#ifndef GL_EXT_shared_texture_palette +#define GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB +#endif + +#ifndef GL_EXT_separate_specular_color +#define GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8 +#define GL_SINGLE_COLOR_EXT 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA +#endif + +#ifndef GL_EXT_secondary_color +#define GL_COLOR_SUM_EXT 0x8458 +#define GL_CURRENT_SECONDARY_COLOR_EXT 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE_EXT 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE_EXT 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER_EXT 0x845D +#define GL_SECONDARY_COLOR_ARRAY_EXT 0x845E +#endif + +#ifndef GL_EXT_texture_perturb_normal +#define GL_PERTURB_EXT 0x85AE +#define GL_TEXTURE_NORMAL_EXT 0x85AF +#endif + +#ifndef GL_EXT_multi_draw_arrays +#endif + +#ifndef GL_EXT_fog_coord +#define GL_FOG_COORDINATE_SOURCE_EXT 0x8450 +#define GL_FOG_COORDINATE_EXT 0x8451 +#define GL_FRAGMENT_DEPTH_EXT 0x8452 +#define GL_CURRENT_FOG_COORDINATE_EXT 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE_EXT 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE_EXT 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456 +#define GL_FOG_COORDINATE_ARRAY_EXT 0x8457 +#endif + +#ifndef GL_REND_screen_coordinates +#define GL_SCREEN_COORDINATES_REND 0x8490 +#define GL_INVERTED_SCREEN_W_REND 0x8491 +#endif + +#ifndef GL_EXT_coordinate_frame +#define GL_TANGENT_ARRAY_EXT 0x8439 +#define GL_BINORMAL_ARRAY_EXT 0x843A +#define GL_CURRENT_TANGENT_EXT 0x843B +#define GL_CURRENT_BINORMAL_EXT 0x843C +#define GL_TANGENT_ARRAY_TYPE_EXT 0x843E +#define GL_TANGENT_ARRAY_STRIDE_EXT 0x843F +#define GL_BINORMAL_ARRAY_TYPE_EXT 0x8440 +#define GL_BINORMAL_ARRAY_STRIDE_EXT 0x8441 +#define GL_TANGENT_ARRAY_POINTER_EXT 0x8442 +#define GL_BINORMAL_ARRAY_POINTER_EXT 0x8443 +#define GL_MAP1_TANGENT_EXT 0x8444 +#define GL_MAP2_TANGENT_EXT 0x8445 +#define GL_MAP1_BINORMAL_EXT 0x8446 +#define GL_MAP2_BINORMAL_EXT 0x8447 +#endif + +#ifndef GL_EXT_texture_env_combine +#define GL_COMBINE_EXT 0x8570 +#define GL_COMBINE_RGB_EXT 0x8571 +#define GL_COMBINE_ALPHA_EXT 0x8572 +#define GL_RGB_SCALE_EXT 0x8573 +#define GL_ADD_SIGNED_EXT 0x8574 +#define GL_INTERPOLATE_EXT 0x8575 +#define GL_CONSTANT_EXT 0x8576 +#define GL_PRIMARY_COLOR_EXT 0x8577 +#define GL_PREVIOUS_EXT 0x8578 +#define GL_SOURCE0_RGB_EXT 0x8580 +#define GL_SOURCE1_RGB_EXT 0x8581 +#define GL_SOURCE2_RGB_EXT 0x8582 +#define GL_SOURCE0_ALPHA_EXT 0x8588 +#define GL_SOURCE1_ALPHA_EXT 0x8589 +#define GL_SOURCE2_ALPHA_EXT 0x858A +#define GL_OPERAND0_RGB_EXT 0x8590 +#define GL_OPERAND1_RGB_EXT 0x8591 +#define GL_OPERAND2_RGB_EXT 0x8592 +#define GL_OPERAND0_ALPHA_EXT 0x8598 +#define GL_OPERAND1_ALPHA_EXT 0x8599 +#define GL_OPERAND2_ALPHA_EXT 0x859A +#endif + +#ifndef GL_APPLE_specular_vector +#define GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0 +#endif + +#ifndef GL_APPLE_transform_hint +#define GL_TRANSFORM_HINT_APPLE 0x85B1 +#endif + +#ifndef GL_SGIX_fog_scale +#define GL_FOG_SCALE_SGIX 0x81FC +#define GL_FOG_SCALE_VALUE_SGIX 0x81FD +#endif + +#ifndef GL_SUNX_constant_data +#define GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5 +#define GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6 +#endif + +#ifndef GL_SUN_global_alpha +#define GL_GLOBAL_ALPHA_SUN 0x81D9 +#define GL_GLOBAL_ALPHA_FACTOR_SUN 0x81DA +#endif + +#ifndef GL_SUN_triangle_list +#define GL_RESTART_SUN 0x0001 +#define GL_REPLACE_MIDDLE_SUN 0x0002 +#define GL_REPLACE_OLDEST_SUN 0x0003 +#define GL_TRIANGLE_LIST_SUN 0x81D7 +#define GL_REPLACEMENT_CODE_SUN 0x81D8 +#define GL_REPLACEMENT_CODE_ARRAY_SUN 0x85C0 +#define GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN 0x85C1 +#define GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN 0x85C2 +#define GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN 0x85C3 +#define GL_R1UI_V3F_SUN 0x85C4 +#define GL_R1UI_C4UB_V3F_SUN 0x85C5 +#define GL_R1UI_C3F_V3F_SUN 0x85C6 +#define GL_R1UI_N3F_V3F_SUN 0x85C7 +#define GL_R1UI_C4F_N3F_V3F_SUN 0x85C8 +#define GL_R1UI_T2F_V3F_SUN 0x85C9 +#define GL_R1UI_T2F_N3F_V3F_SUN 0x85CA +#define GL_R1UI_T2F_C4F_N3F_V3F_SUN 0x85CB +#endif + +#ifndef GL_SUN_vertex +#endif + +#ifndef GL_EXT_blend_func_separate +#define GL_BLEND_DST_RGB_EXT 0x80C8 +#define GL_BLEND_SRC_RGB_EXT 0x80C9 +#define GL_BLEND_DST_ALPHA_EXT 0x80CA +#define GL_BLEND_SRC_ALPHA_EXT 0x80CB +#endif + +#ifndef GL_INGR_color_clamp +#define GL_RED_MIN_CLAMP_INGR 0x8560 +#define GL_GREEN_MIN_CLAMP_INGR 0x8561 +#define GL_BLUE_MIN_CLAMP_INGR 0x8562 +#define GL_ALPHA_MIN_CLAMP_INGR 0x8563 +#define GL_RED_MAX_CLAMP_INGR 0x8564 +#define GL_GREEN_MAX_CLAMP_INGR 0x8565 +#define GL_BLUE_MAX_CLAMP_INGR 0x8566 +#define GL_ALPHA_MAX_CLAMP_INGR 0x8567 +#endif + +#ifndef GL_INGR_interlace_read +#define GL_INTERLACE_READ_INGR 0x8568 +#endif + +#ifndef GL_EXT_stencil_wrap +#define GL_INCR_WRAP_EXT 0x8507 +#define GL_DECR_WRAP_EXT 0x8508 +#endif + +#ifndef GL_EXT_422_pixels +#define GL_422_EXT 0x80CC +#define GL_422_REV_EXT 0x80CD +#define GL_422_AVERAGE_EXT 0x80CE +#define GL_422_REV_AVERAGE_EXT 0x80CF +#endif + +#ifndef GL_NV_texgen_reflection +#define GL_NORMAL_MAP_NV 0x8511 +#define GL_REFLECTION_MAP_NV 0x8512 +#endif + +#ifndef GL_EXT_texture_cube_map +#define GL_NORMAL_MAP_EXT 0x8511 +#define GL_REFLECTION_MAP_EXT 0x8512 +#define GL_TEXTURE_CUBE_MAP_EXT 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_EXT 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_EXT 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT 0x851C +#endif + +#ifndef GL_SUN_convolution_border_modes +#define GL_WRAP_BORDER_SUN 0x81D4 +#endif + +#ifndef GL_EXT_texture_env_add +#endif + +#ifndef GL_EXT_texture_lod_bias +#define GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD +#define GL_TEXTURE_FILTER_CONTROL_EXT 0x8500 +#define GL_TEXTURE_LOD_BIAS_EXT 0x8501 +#endif + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif + +#ifndef GL_EXT_vertex_weighting +#define GL_MODELVIEW0_STACK_DEPTH_EXT GL_MODELVIEW_STACK_DEPTH +#define GL_MODELVIEW1_STACK_DEPTH_EXT 0x8502 +#define GL_MODELVIEW0_MATRIX_EXT GL_MODELVIEW_MATRIX +#define GL_MODELVIEW1_MATRIX_EXT 0x8506 +#define GL_VERTEX_WEIGHTING_EXT 0x8509 +#define GL_MODELVIEW0_EXT GL_MODELVIEW +#define GL_MODELVIEW1_EXT 0x850A +#define GL_CURRENT_VERTEX_WEIGHT_EXT 0x850B +#define GL_VERTEX_WEIGHT_ARRAY_EXT 0x850C +#define GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT 0x850D +#define GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT 0x850E +#define GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT 0x850F +#define GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT 0x8510 +#endif + +#ifndef GL_NV_light_max_exponent +#define GL_MAX_SHININESS_NV 0x8504 +#define GL_MAX_SPOT_EXPONENT_NV 0x8505 +#endif + +#ifndef GL_NV_vertex_array_range +#define GL_VERTEX_ARRAY_RANGE_NV 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_NV 0x851E +#define GL_VERTEX_ARRAY_RANGE_VALID_NV 0x851F +#define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520 +#define GL_VERTEX_ARRAY_RANGE_POINTER_NV 0x8521 +#endif + +#ifndef GL_NV_register_combiners +#define GL_REGISTER_COMBINERS_NV 0x8522 +#define GL_VARIABLE_A_NV 0x8523 +#define GL_VARIABLE_B_NV 0x8524 +#define GL_VARIABLE_C_NV 0x8525 +#define GL_VARIABLE_D_NV 0x8526 +#define GL_VARIABLE_E_NV 0x8527 +#define GL_VARIABLE_F_NV 0x8528 +#define GL_VARIABLE_G_NV 0x8529 +#define GL_CONSTANT_COLOR0_NV 0x852A +#define GL_CONSTANT_COLOR1_NV 0x852B +#define GL_PRIMARY_COLOR_NV 0x852C +#define GL_SECONDARY_COLOR_NV 0x852D +#define GL_SPARE0_NV 0x852E +#define GL_SPARE1_NV 0x852F +#define GL_DISCARD_NV 0x8530 +#define GL_E_TIMES_F_NV 0x8531 +#define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532 +#define GL_UNSIGNED_IDENTITY_NV 0x8536 +#define GL_UNSIGNED_INVERT_NV 0x8537 +#define GL_EXPAND_NORMAL_NV 0x8538 +#define GL_EXPAND_NEGATE_NV 0x8539 +#define GL_HALF_BIAS_NORMAL_NV 0x853A +#define GL_HALF_BIAS_NEGATE_NV 0x853B +#define GL_SIGNED_IDENTITY_NV 0x853C +#define GL_SIGNED_NEGATE_NV 0x853D +#define GL_SCALE_BY_TWO_NV 0x853E +#define GL_SCALE_BY_FOUR_NV 0x853F +#define GL_SCALE_BY_ONE_HALF_NV 0x8540 +#define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV 0x8541 +#define GL_COMBINER_INPUT_NV 0x8542 +#define GL_COMBINER_MAPPING_NV 0x8543 +#define GL_COMBINER_COMPONENT_USAGE_NV 0x8544 +#define GL_COMBINER_AB_DOT_PRODUCT_NV 0x8545 +#define GL_COMBINER_CD_DOT_PRODUCT_NV 0x8546 +#define GL_COMBINER_MUX_SUM_NV 0x8547 +#define GL_COMBINER_SCALE_NV 0x8548 +#define GL_COMBINER_BIAS_NV 0x8549 +#define GL_COMBINER_AB_OUTPUT_NV 0x854A +#define GL_COMBINER_CD_OUTPUT_NV 0x854B +#define GL_COMBINER_SUM_OUTPUT_NV 0x854C +#define GL_MAX_GENERAL_COMBINERS_NV 0x854D +#define GL_NUM_GENERAL_COMBINERS_NV 0x854E +#define GL_COLOR_SUM_CLAMP_NV 0x854F +#define GL_COMBINER0_NV 0x8550 +#define GL_COMBINER1_NV 0x8551 +#define GL_COMBINER2_NV 0x8552 +#define GL_COMBINER3_NV 0x8553 +#define GL_COMBINER4_NV 0x8554 +#define GL_COMBINER5_NV 0x8555 +#define GL_COMBINER6_NV 0x8556 +#define GL_COMBINER7_NV 0x8557 +/* reuse GL_TEXTURE0_ARB */ +/* reuse GL_TEXTURE1_ARB */ +/* reuse GL_ZERO */ +/* reuse GL_NONE */ +/* reuse GL_FOG */ +#endif + +#ifndef GL_NV_fog_distance +#define GL_FOG_DISTANCE_MODE_NV 0x855A +#define GL_EYE_RADIAL_NV 0x855B +#define GL_EYE_PLANE_ABSOLUTE_NV 0x855C +/* reuse GL_EYE_PLANE */ +#endif + +#ifndef GL_NV_texgen_emboss +#define GL_EMBOSS_LIGHT_NV 0x855D +#define GL_EMBOSS_CONSTANT_NV 0x855E +#define GL_EMBOSS_MAP_NV 0x855F +#endif + +#ifndef GL_NV_blend_square +#endif + +#ifndef GL_NV_texture_env_combine4 +#define GL_COMBINE4_NV 0x8503 +#define GL_SOURCE3_RGB_NV 0x8583 +#define GL_SOURCE3_ALPHA_NV 0x858B +#define GL_OPERAND3_RGB_NV 0x8593 +#define GL_OPERAND3_ALPHA_NV 0x859B +#endif + +#ifndef GL_MESA_resize_buffers +#endif + +#ifndef GL_MESA_window_pos +#endif + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif + +#ifndef GL_IBM_cull_vertex +#define GL_CULL_VERTEX_IBM 103050 +#endif + +#ifndef GL_IBM_multimode_draw_arrays +#endif + +#ifndef GL_IBM_vertex_array_lists +#define GL_VERTEX_ARRAY_LIST_IBM 103070 +#define GL_NORMAL_ARRAY_LIST_IBM 103071 +#define GL_COLOR_ARRAY_LIST_IBM 103072 +#define GL_INDEX_ARRAY_LIST_IBM 103073 +#define GL_TEXTURE_COORD_ARRAY_LIST_IBM 103074 +#define GL_EDGE_FLAG_ARRAY_LIST_IBM 103075 +#define GL_FOG_COORDINATE_ARRAY_LIST_IBM 103076 +#define GL_SECONDARY_COLOR_ARRAY_LIST_IBM 103077 +#define GL_VERTEX_ARRAY_LIST_STRIDE_IBM 103080 +#define GL_NORMAL_ARRAY_LIST_STRIDE_IBM 103081 +#define GL_COLOR_ARRAY_LIST_STRIDE_IBM 103082 +#define GL_INDEX_ARRAY_LIST_STRIDE_IBM 103083 +#define GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM 103084 +#define GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM 103085 +#define GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM 103086 +#define GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM 103087 +#endif + +#ifndef GL_SGIX_subsample +#define GL_PACK_SUBSAMPLE_RATE_SGIX 0x85A0 +#define GL_UNPACK_SUBSAMPLE_RATE_SGIX 0x85A1 +#define GL_PIXEL_SUBSAMPLE_4444_SGIX 0x85A2 +#define GL_PIXEL_SUBSAMPLE_2424_SGIX 0x85A3 +#define GL_PIXEL_SUBSAMPLE_4242_SGIX 0x85A4 +#endif + +#ifndef GL_SGIX_ycrcb_subsample +#endif + +#ifndef GL_SGIX_ycrcba +#define GL_YCRCB_SGIX 0x8318 +#define GL_YCRCBA_SGIX 0x8319 +#endif + +#ifndef GL_SGI_depth_pass_instrument +#define GL_DEPTH_PASS_INSTRUMENT_SGIX 0x8310 +#define GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX 0x8311 +#define GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX 0x8312 +#endif + +#ifndef GL_3DFX_texture_compression_FXT1 +#define GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0 +#define GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1 +#endif + +#ifndef GL_3DFX_multisample +#define GL_MULTISAMPLE_3DFX 0x86B2 +#define GL_SAMPLE_BUFFERS_3DFX 0x86B3 +#define GL_SAMPLES_3DFX 0x86B4 +#define GL_MULTISAMPLE_BIT_3DFX 0x20000000 +#endif + +#ifndef GL_3DFX_tbuffer +#endif + +#ifndef GL_EXT_multisample +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_EXT 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#define GL_SAMPLE_MASK_EXT 0x80A0 +#define GL_1PASS_EXT 0x80A1 +#define GL_2PASS_0_EXT 0x80A2 +#define GL_2PASS_1_EXT 0x80A3 +#define GL_4PASS_0_EXT 0x80A4 +#define GL_4PASS_1_EXT 0x80A5 +#define GL_4PASS_2_EXT 0x80A6 +#define GL_4PASS_3_EXT 0x80A7 +#define GL_SAMPLE_BUFFERS_EXT 0x80A8 +#define GL_SAMPLES_EXT 0x80A9 +#define GL_SAMPLE_MASK_VALUE_EXT 0x80AA +#define GL_SAMPLE_MASK_INVERT_EXT 0x80AB +#define GL_SAMPLE_PATTERN_EXT 0x80AC +#define GL_MULTISAMPLE_BIT_EXT 0x20000000 +#endif + +#ifndef GL_SGIX_vertex_preclip +#define GL_VERTEX_PRECLIP_SGIX 0x83EE +#define GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF +#endif + +#ifndef GL_SGIX_convolution_accuracy +#define GL_CONVOLUTION_HINT_SGIX 0x8316 +#endif + +#ifndef GL_SGIX_resample +#define GL_PACK_RESAMPLE_SGIX 0x842C +#define GL_UNPACK_RESAMPLE_SGIX 0x842D +#define GL_RESAMPLE_REPLICATE_SGIX 0x842E +#define GL_RESAMPLE_ZERO_FILL_SGIX 0x842F +#define GL_RESAMPLE_DECIMATE_SGIX 0x8430 +#endif + +#ifndef GL_SGIS_point_line_texgen +#define GL_EYE_DISTANCE_TO_POINT_SGIS 0x81F0 +#define GL_OBJECT_DISTANCE_TO_POINT_SGIS 0x81F1 +#define GL_EYE_DISTANCE_TO_LINE_SGIS 0x81F2 +#define GL_OBJECT_DISTANCE_TO_LINE_SGIS 0x81F3 +#define GL_EYE_POINT_SGIS 0x81F4 +#define GL_OBJECT_POINT_SGIS 0x81F5 +#define GL_EYE_LINE_SGIS 0x81F6 +#define GL_OBJECT_LINE_SGIS 0x81F7 +#endif + +#ifndef GL_SGIS_texture_color_mask +#define GL_TEXTURE_COLOR_WRITEMASK_SGIS 0x81EF +#endif + +#ifndef GL_EXT_texture_env_dot3 +#define GL_DOT3_RGB_EXT 0x8740 +#define GL_DOT3_RGBA_EXT 0x8741 +#endif + +#ifndef GL_ATI_texture_mirror_once +#define GL_MIRROR_CLAMP_ATI 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_ATI 0x8743 +#endif + +#ifndef GL_NV_fence +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +#endif + +#ifndef GL_IBM_texture_mirrored_repeat +#define GL_MIRRORED_REPEAT_IBM 0x8370 +#endif + +#ifndef GL_NV_evaluators +#define GL_EVAL_2D_NV 0x86C0 +#define GL_EVAL_TRIANGULAR_2D_NV 0x86C1 +#define GL_MAP_TESSELLATION_NV 0x86C2 +#define GL_MAP_ATTRIB_U_ORDER_NV 0x86C3 +#define GL_MAP_ATTRIB_V_ORDER_NV 0x86C4 +#define GL_EVAL_FRACTIONAL_TESSELLATION_NV 0x86C5 +#define GL_EVAL_VERTEX_ATTRIB0_NV 0x86C6 +#define GL_EVAL_VERTEX_ATTRIB1_NV 0x86C7 +#define GL_EVAL_VERTEX_ATTRIB2_NV 0x86C8 +#define GL_EVAL_VERTEX_ATTRIB3_NV 0x86C9 +#define GL_EVAL_VERTEX_ATTRIB4_NV 0x86CA +#define GL_EVAL_VERTEX_ATTRIB5_NV 0x86CB +#define GL_EVAL_VERTEX_ATTRIB6_NV 0x86CC +#define GL_EVAL_VERTEX_ATTRIB7_NV 0x86CD +#define GL_EVAL_VERTEX_ATTRIB8_NV 0x86CE +#define GL_EVAL_VERTEX_ATTRIB9_NV 0x86CF +#define GL_EVAL_VERTEX_ATTRIB10_NV 0x86D0 +#define GL_EVAL_VERTEX_ATTRIB11_NV 0x86D1 +#define GL_EVAL_VERTEX_ATTRIB12_NV 0x86D2 +#define GL_EVAL_VERTEX_ATTRIB13_NV 0x86D3 +#define GL_EVAL_VERTEX_ATTRIB14_NV 0x86D4 +#define GL_EVAL_VERTEX_ATTRIB15_NV 0x86D5 +#define GL_MAX_MAP_TESSELLATION_NV 0x86D6 +#define GL_MAX_RATIONAL_EVAL_ORDER_NV 0x86D7 +#endif + +#ifndef GL_NV_packed_depth_stencil +#define GL_DEPTH_STENCIL_NV 0x84F9 +#define GL_UNSIGNED_INT_24_8_NV 0x84FA +#endif + +#ifndef GL_NV_register_combiners2 +#define GL_PER_STAGE_CONSTANTS_NV 0x8535 +#endif + +#ifndef GL_NV_texture_compression_vtc +#endif + +#ifndef GL_NV_texture_rectangle +#define GL_TEXTURE_RECTANGLE_NV 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8 +#endif + +#ifndef GL_NV_texture_shader +#define GL_OFFSET_TEXTURE_RECTANGLE_NV 0x864C +#define GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV 0x864D +#define GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV 0x864E +#define GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV 0x86D9 +#define GL_UNSIGNED_INT_S8_S8_8_8_NV 0x86DA +#define GL_UNSIGNED_INT_8_8_S8_S8_REV_NV 0x86DB +#define GL_DSDT_MAG_INTENSITY_NV 0x86DC +#define GL_SHADER_CONSISTENT_NV 0x86DD +#define GL_TEXTURE_SHADER_NV 0x86DE +#define GL_SHADER_OPERATION_NV 0x86DF +#define GL_CULL_MODES_NV 0x86E0 +#define GL_OFFSET_TEXTURE_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_BIAS_NV 0x86E3 +#define GL_OFFSET_TEXTURE_2D_MATRIX_NV GL_OFFSET_TEXTURE_MATRIX_NV +#define GL_OFFSET_TEXTURE_2D_SCALE_NV GL_OFFSET_TEXTURE_SCALE_NV +#define GL_OFFSET_TEXTURE_2D_BIAS_NV GL_OFFSET_TEXTURE_BIAS_NV +#define GL_PREVIOUS_TEXTURE_INPUT_NV 0x86E4 +#define GL_CONST_EYE_NV 0x86E5 +#define GL_PASS_THROUGH_NV 0x86E6 +#define GL_CULL_FRAGMENT_NV 0x86E7 +#define GL_OFFSET_TEXTURE_2D_NV 0x86E8 +#define GL_DEPENDENT_AR_TEXTURE_2D_NV 0x86E9 +#define GL_DEPENDENT_GB_TEXTURE_2D_NV 0x86EA +#define GL_DOT_PRODUCT_NV 0x86EC +#define GL_DOT_PRODUCT_DEPTH_REPLACE_NV 0x86ED +#define GL_DOT_PRODUCT_TEXTURE_2D_NV 0x86EE +#define GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV 0x86F0 +#define GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV 0x86F1 +#define GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV 0x86F2 +#define GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV 0x86F3 +#define GL_HILO_NV 0x86F4 +#define GL_DSDT_NV 0x86F5 +#define GL_DSDT_MAG_NV 0x86F6 +#define GL_DSDT_MAG_VIB_NV 0x86F7 +#define GL_HILO16_NV 0x86F8 +#define GL_SIGNED_HILO_NV 0x86F9 +#define GL_SIGNED_HILO16_NV 0x86FA +#define GL_SIGNED_RGBA_NV 0x86FB +#define GL_SIGNED_RGBA8_NV 0x86FC +#define GL_SIGNED_RGB_NV 0x86FE +#define GL_SIGNED_RGB8_NV 0x86FF +#define GL_SIGNED_LUMINANCE_NV 0x8701 +#define GL_SIGNED_LUMINANCE8_NV 0x8702 +#define GL_SIGNED_LUMINANCE_ALPHA_NV 0x8703 +#define GL_SIGNED_LUMINANCE8_ALPHA8_NV 0x8704 +#define GL_SIGNED_ALPHA_NV 0x8705 +#define GL_SIGNED_ALPHA8_NV 0x8706 +#define GL_SIGNED_INTENSITY_NV 0x8707 +#define GL_SIGNED_INTENSITY8_NV 0x8708 +#define GL_DSDT8_NV 0x8709 +#define GL_DSDT8_MAG8_NV 0x870A +#define GL_DSDT8_MAG8_INTENSITY8_NV 0x870B +#define GL_SIGNED_RGB_UNSIGNED_ALPHA_NV 0x870C +#define GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV 0x870D +#define GL_HI_SCALE_NV 0x870E +#define GL_LO_SCALE_NV 0x870F +#define GL_DS_SCALE_NV 0x8710 +#define GL_DT_SCALE_NV 0x8711 +#define GL_MAGNITUDE_SCALE_NV 0x8712 +#define GL_VIBRANCE_SCALE_NV 0x8713 +#define GL_HI_BIAS_NV 0x8714 +#define GL_LO_BIAS_NV 0x8715 +#define GL_DS_BIAS_NV 0x8716 +#define GL_DT_BIAS_NV 0x8717 +#define GL_MAGNITUDE_BIAS_NV 0x8718 +#define GL_VIBRANCE_BIAS_NV 0x8719 +#define GL_TEXTURE_BORDER_VALUES_NV 0x871A +#define GL_TEXTURE_HI_SIZE_NV 0x871B +#define GL_TEXTURE_LO_SIZE_NV 0x871C +#define GL_TEXTURE_DS_SIZE_NV 0x871D +#define GL_TEXTURE_DT_SIZE_NV 0x871E +#define GL_TEXTURE_MAG_SIZE_NV 0x871F +#endif + +#ifndef GL_NV_texture_shader2 +#define GL_DOT_PRODUCT_TEXTURE_3D_NV 0x86EF +#endif + +#ifndef GL_NV_vertex_array_range2 +#define GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533 +#endif + +#ifndef GL_NV_vertex_program +#define GL_VERTEX_PROGRAM_NV 0x8620 +#define GL_VERTEX_STATE_PROGRAM_NV 0x8621 +#define GL_ATTRIB_ARRAY_SIZE_NV 0x8623 +#define GL_ATTRIB_ARRAY_STRIDE_NV 0x8624 +#define GL_ATTRIB_ARRAY_TYPE_NV 0x8625 +#define GL_CURRENT_ATTRIB_NV 0x8626 +#define GL_PROGRAM_LENGTH_NV 0x8627 +#define GL_PROGRAM_STRING_NV 0x8628 +#define GL_MODELVIEW_PROJECTION_NV 0x8629 +#define GL_IDENTITY_NV 0x862A +#define GL_INVERSE_NV 0x862B +#define GL_TRANSPOSE_NV 0x862C +#define GL_INVERSE_TRANSPOSE_NV 0x862D +#define GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV 0x862E +#define GL_MAX_TRACK_MATRICES_NV 0x862F +#define GL_MATRIX0_NV 0x8630 +#define GL_MATRIX1_NV 0x8631 +#define GL_MATRIX2_NV 0x8632 +#define GL_MATRIX3_NV 0x8633 +#define GL_MATRIX4_NV 0x8634 +#define GL_MATRIX5_NV 0x8635 +#define GL_MATRIX6_NV 0x8636 +#define GL_MATRIX7_NV 0x8637 +#define GL_CURRENT_MATRIX_STACK_DEPTH_NV 0x8640 +#define GL_CURRENT_MATRIX_NV 0x8641 +#define GL_VERTEX_PROGRAM_POINT_SIZE_NV 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_NV 0x8643 +#define GL_PROGRAM_PARAMETER_NV 0x8644 +#define GL_ATTRIB_ARRAY_POINTER_NV 0x8645 +#define GL_PROGRAM_TARGET_NV 0x8646 +#define GL_PROGRAM_RESIDENT_NV 0x8647 +#define GL_TRACK_MATRIX_NV 0x8648 +#define GL_TRACK_MATRIX_TRANSFORM_NV 0x8649 +#define GL_VERTEX_PROGRAM_BINDING_NV 0x864A +#define GL_PROGRAM_ERROR_POSITION_NV 0x864B +#define GL_VERTEX_ATTRIB_ARRAY0_NV 0x8650 +#define GL_VERTEX_ATTRIB_ARRAY1_NV 0x8651 +#define GL_VERTEX_ATTRIB_ARRAY2_NV 0x8652 +#define GL_VERTEX_ATTRIB_ARRAY3_NV 0x8653 +#define GL_VERTEX_ATTRIB_ARRAY4_NV 0x8654 +#define GL_VERTEX_ATTRIB_ARRAY5_NV 0x8655 +#define GL_VERTEX_ATTRIB_ARRAY6_NV 0x8656 +#define GL_VERTEX_ATTRIB_ARRAY7_NV 0x8657 +#define GL_VERTEX_ATTRIB_ARRAY8_NV 0x8658 +#define GL_VERTEX_ATTRIB_ARRAY9_NV 0x8659 +#define GL_VERTEX_ATTRIB_ARRAY10_NV 0x865A +#define GL_VERTEX_ATTRIB_ARRAY11_NV 0x865B +#define GL_VERTEX_ATTRIB_ARRAY12_NV 0x865C +#define GL_VERTEX_ATTRIB_ARRAY13_NV 0x865D +#define GL_VERTEX_ATTRIB_ARRAY14_NV 0x865E +#define GL_VERTEX_ATTRIB_ARRAY15_NV 0x865F +#define GL_MAP1_VERTEX_ATTRIB0_4_NV 0x8660 +#define GL_MAP1_VERTEX_ATTRIB1_4_NV 0x8661 +#define GL_MAP1_VERTEX_ATTRIB2_4_NV 0x8662 +#define GL_MAP1_VERTEX_ATTRIB3_4_NV 0x8663 +#define GL_MAP1_VERTEX_ATTRIB4_4_NV 0x8664 +#define GL_MAP1_VERTEX_ATTRIB5_4_NV 0x8665 +#define GL_MAP1_VERTEX_ATTRIB6_4_NV 0x8666 +#define GL_MAP1_VERTEX_ATTRIB7_4_NV 0x8667 +#define GL_MAP1_VERTEX_ATTRIB8_4_NV 0x8668 +#define GL_MAP1_VERTEX_ATTRIB9_4_NV 0x8669 +#define GL_MAP1_VERTEX_ATTRIB10_4_NV 0x866A +#define GL_MAP1_VERTEX_ATTRIB11_4_NV 0x866B +#define GL_MAP1_VERTEX_ATTRIB12_4_NV 0x866C +#define GL_MAP1_VERTEX_ATTRIB13_4_NV 0x866D +#define GL_MAP1_VERTEX_ATTRIB14_4_NV 0x866E +#define GL_MAP1_VERTEX_ATTRIB15_4_NV 0x866F +#define GL_MAP2_VERTEX_ATTRIB0_4_NV 0x8670 +#define GL_MAP2_VERTEX_ATTRIB1_4_NV 0x8671 +#define GL_MAP2_VERTEX_ATTRIB2_4_NV 0x8672 +#define GL_MAP2_VERTEX_ATTRIB3_4_NV 0x8673 +#define GL_MAP2_VERTEX_ATTRIB4_4_NV 0x8674 +#define GL_MAP2_VERTEX_ATTRIB5_4_NV 0x8675 +#define GL_MAP2_VERTEX_ATTRIB6_4_NV 0x8676 +#define GL_MAP2_VERTEX_ATTRIB7_4_NV 0x8677 +#define GL_MAP2_VERTEX_ATTRIB8_4_NV 0x8678 +#define GL_MAP2_VERTEX_ATTRIB9_4_NV 0x8679 +#define GL_MAP2_VERTEX_ATTRIB10_4_NV 0x867A +#define GL_MAP2_VERTEX_ATTRIB11_4_NV 0x867B +#define GL_MAP2_VERTEX_ATTRIB12_4_NV 0x867C +#define GL_MAP2_VERTEX_ATTRIB13_4_NV 0x867D +#define GL_MAP2_VERTEX_ATTRIB14_4_NV 0x867E +#define GL_MAP2_VERTEX_ATTRIB15_4_NV 0x867F +#endif + +#ifndef GL_SGIX_texture_coordinate_clamp +#define GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369 +#define GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A +#define GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B +#endif + +#ifndef GL_SGIX_scalebias_hint +#define GL_SCALEBIAS_HINT_SGIX 0x8322 +#endif + +#ifndef GL_OML_interlace +#define GL_INTERLACE_OML 0x8980 +#define GL_INTERLACE_READ_OML 0x8981 +#endif + +#ifndef GL_OML_subsample +#define GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982 +#define GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 +#endif + +#ifndef GL_OML_resample +#define GL_PACK_RESAMPLE_OML 0x8984 +#define GL_UNPACK_RESAMPLE_OML 0x8985 +#define GL_RESAMPLE_REPLICATE_OML 0x8986 +#define GL_RESAMPLE_ZERO_FILL_OML 0x8987 +#define GL_RESAMPLE_AVERAGE_OML 0x8988 +#define GL_RESAMPLE_DECIMATE_OML 0x8989 +#endif + +#ifndef GL_NV_copy_depth_to_color +#define GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E +#define GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F +#endif + +#ifndef GL_ATI_envmap_bumpmap +#define GL_BUMP_ROT_MATRIX_ATI 0x8775 +#define GL_BUMP_ROT_MATRIX_SIZE_ATI 0x8776 +#define GL_BUMP_NUM_TEX_UNITS_ATI 0x8777 +#define GL_BUMP_TEX_UNITS_ATI 0x8778 +#define GL_DUDV_ATI 0x8779 +#define GL_DU8DV8_ATI 0x877A +#define GL_BUMP_ENVMAP_ATI 0x877B +#define GL_BUMP_TARGET_ATI 0x877C +#endif + +#ifndef GL_ATI_fragment_shader +#define GL_FRAGMENT_SHADER_ATI 0x8920 +#define GL_REG_0_ATI 0x8921 +#define GL_REG_1_ATI 0x8922 +#define GL_REG_2_ATI 0x8923 +#define GL_REG_3_ATI 0x8924 +#define GL_REG_4_ATI 0x8925 +#define GL_REG_5_ATI 0x8926 +#define GL_REG_6_ATI 0x8927 +#define GL_REG_7_ATI 0x8928 +#define GL_REG_8_ATI 0x8929 +#define GL_REG_9_ATI 0x892A +#define GL_REG_10_ATI 0x892B +#define GL_REG_11_ATI 0x892C +#define GL_REG_12_ATI 0x892D +#define GL_REG_13_ATI 0x892E +#define GL_REG_14_ATI 0x892F +#define GL_REG_15_ATI 0x8930 +#define GL_REG_16_ATI 0x8931 +#define GL_REG_17_ATI 0x8932 +#define GL_REG_18_ATI 0x8933 +#define GL_REG_19_ATI 0x8934 +#define GL_REG_20_ATI 0x8935 +#define GL_REG_21_ATI 0x8936 +#define GL_REG_22_ATI 0x8937 +#define GL_REG_23_ATI 0x8938 +#define GL_REG_24_ATI 0x8939 +#define GL_REG_25_ATI 0x893A +#define GL_REG_26_ATI 0x893B +#define GL_REG_27_ATI 0x893C +#define GL_REG_28_ATI 0x893D +#define GL_REG_29_ATI 0x893E +#define GL_REG_30_ATI 0x893F +#define GL_REG_31_ATI 0x8940 +#define GL_CON_0_ATI 0x8941 +#define GL_CON_1_ATI 0x8942 +#define GL_CON_2_ATI 0x8943 +#define GL_CON_3_ATI 0x8944 +#define GL_CON_4_ATI 0x8945 +#define GL_CON_5_ATI 0x8946 +#define GL_CON_6_ATI 0x8947 +#define GL_CON_7_ATI 0x8948 +#define GL_CON_8_ATI 0x8949 +#define GL_CON_9_ATI 0x894A +#define GL_CON_10_ATI 0x894B +#define GL_CON_11_ATI 0x894C +#define GL_CON_12_ATI 0x894D +#define GL_CON_13_ATI 0x894E +#define GL_CON_14_ATI 0x894F +#define GL_CON_15_ATI 0x8950 +#define GL_CON_16_ATI 0x8951 +#define GL_CON_17_ATI 0x8952 +#define GL_CON_18_ATI 0x8953 +#define GL_CON_19_ATI 0x8954 +#define GL_CON_20_ATI 0x8955 +#define GL_CON_21_ATI 0x8956 +#define GL_CON_22_ATI 0x8957 +#define GL_CON_23_ATI 0x8958 +#define GL_CON_24_ATI 0x8959 +#define GL_CON_25_ATI 0x895A +#define GL_CON_26_ATI 0x895B +#define GL_CON_27_ATI 0x895C +#define GL_CON_28_ATI 0x895D +#define GL_CON_29_ATI 0x895E +#define GL_CON_30_ATI 0x895F +#define GL_CON_31_ATI 0x8960 +#define GL_MOV_ATI 0x8961 +#define GL_ADD_ATI 0x8963 +#define GL_MUL_ATI 0x8964 +#define GL_SUB_ATI 0x8965 +#define GL_DOT3_ATI 0x8966 +#define GL_DOT4_ATI 0x8967 +#define GL_MAD_ATI 0x8968 +#define GL_LERP_ATI 0x8969 +#define GL_CND_ATI 0x896A +#define GL_CND0_ATI 0x896B +#define GL_DOT2_ADD_ATI 0x896C +#define GL_SECONDARY_INTERPOLATOR_ATI 0x896D +#define GL_NUM_FRAGMENT_REGISTERS_ATI 0x896E +#define GL_NUM_FRAGMENT_CONSTANTS_ATI 0x896F +#define GL_NUM_PASSES_ATI 0x8970 +#define GL_NUM_INSTRUCTIONS_PER_PASS_ATI 0x8971 +#define GL_NUM_INSTRUCTIONS_TOTAL_ATI 0x8972 +#define GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI 0x8973 +#define GL_NUM_LOOPBACK_COMPONENTS_ATI 0x8974 +#define GL_COLOR_ALPHA_PAIRING_ATI 0x8975 +#define GL_SWIZZLE_STR_ATI 0x8976 +#define GL_SWIZZLE_STQ_ATI 0x8977 +#define GL_SWIZZLE_STR_DR_ATI 0x8978 +#define GL_SWIZZLE_STQ_DQ_ATI 0x8979 +#define GL_SWIZZLE_STRQ_ATI 0x897A +#define GL_SWIZZLE_STRQ_DQ_ATI 0x897B +#define GL_RED_BIT_ATI 0x00000001 +#define GL_GREEN_BIT_ATI 0x00000002 +#define GL_BLUE_BIT_ATI 0x00000004 +#define GL_2X_BIT_ATI 0x00000001 +#define GL_4X_BIT_ATI 0x00000002 +#define GL_8X_BIT_ATI 0x00000004 +#define GL_HALF_BIT_ATI 0x00000008 +#define GL_QUARTER_BIT_ATI 0x00000010 +#define GL_EIGHTH_BIT_ATI 0x00000020 +#define GL_SATURATE_BIT_ATI 0x00000040 +#define GL_COMP_BIT_ATI 0x00000002 +#define GL_NEGATE_BIT_ATI 0x00000004 +#define GL_BIAS_BIT_ATI 0x00000008 +#endif + +#ifndef GL_ATI_pn_triangles +#define GL_PN_TRIANGLES_ATI 0x87F0 +#define GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F1 +#define GL_PN_TRIANGLES_POINT_MODE_ATI 0x87F2 +#define GL_PN_TRIANGLES_NORMAL_MODE_ATI 0x87F3 +#define GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F4 +#define GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI 0x87F5 +#define GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI 0x87F6 +#define GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI 0x87F7 +#define GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI 0x87F8 +#endif + +#ifndef GL_ATI_vertex_array_object +#define GL_STATIC_ATI 0x8760 +#define GL_DYNAMIC_ATI 0x8761 +#define GL_PRESERVE_ATI 0x8762 +#define GL_DISCARD_ATI 0x8763 +#define GL_OBJECT_BUFFER_SIZE_ATI 0x8764 +#define GL_OBJECT_BUFFER_USAGE_ATI 0x8765 +#define GL_ARRAY_OBJECT_BUFFER_ATI 0x8766 +#define GL_ARRAY_OBJECT_OFFSET_ATI 0x8767 +#endif + +#ifndef GL_EXT_vertex_shader +#define GL_VERTEX_SHADER_EXT 0x8780 +#define GL_VERTEX_SHADER_BINDING_EXT 0x8781 +#define GL_OP_INDEX_EXT 0x8782 +#define GL_OP_NEGATE_EXT 0x8783 +#define GL_OP_DOT3_EXT 0x8784 +#define GL_OP_DOT4_EXT 0x8785 +#define GL_OP_MUL_EXT 0x8786 +#define GL_OP_ADD_EXT 0x8787 +#define GL_OP_MADD_EXT 0x8788 +#define GL_OP_FRAC_EXT 0x8789 +#define GL_OP_MAX_EXT 0x878A +#define GL_OP_MIN_EXT 0x878B +#define GL_OP_SET_GE_EXT 0x878C +#define GL_OP_SET_LT_EXT 0x878D +#define GL_OP_CLAMP_EXT 0x878E +#define GL_OP_FLOOR_EXT 0x878F +#define GL_OP_ROUND_EXT 0x8790 +#define GL_OP_EXP_BASE_2_EXT 0x8791 +#define GL_OP_LOG_BASE_2_EXT 0x8792 +#define GL_OP_POWER_EXT 0x8793 +#define GL_OP_RECIP_EXT 0x8794 +#define GL_OP_RECIP_SQRT_EXT 0x8795 +#define GL_OP_SUB_EXT 0x8796 +#define GL_OP_CROSS_PRODUCT_EXT 0x8797 +#define GL_OP_MULTIPLY_MATRIX_EXT 0x8798 +#define GL_OP_MOV_EXT 0x8799 +#define GL_OUTPUT_VERTEX_EXT 0x879A +#define GL_OUTPUT_COLOR0_EXT 0x879B +#define GL_OUTPUT_COLOR1_EXT 0x879C +#define GL_OUTPUT_TEXTURE_COORD0_EXT 0x879D +#define GL_OUTPUT_TEXTURE_COORD1_EXT 0x879E +#define GL_OUTPUT_TEXTURE_COORD2_EXT 0x879F +#define GL_OUTPUT_TEXTURE_COORD3_EXT 0x87A0 +#define GL_OUTPUT_TEXTURE_COORD4_EXT 0x87A1 +#define GL_OUTPUT_TEXTURE_COORD5_EXT 0x87A2 +#define GL_OUTPUT_TEXTURE_COORD6_EXT 0x87A3 +#define GL_OUTPUT_TEXTURE_COORD7_EXT 0x87A4 +#define GL_OUTPUT_TEXTURE_COORD8_EXT 0x87A5 +#define GL_OUTPUT_TEXTURE_COORD9_EXT 0x87A6 +#define GL_OUTPUT_TEXTURE_COORD10_EXT 0x87A7 +#define GL_OUTPUT_TEXTURE_COORD11_EXT 0x87A8 +#define GL_OUTPUT_TEXTURE_COORD12_EXT 0x87A9 +#define GL_OUTPUT_TEXTURE_COORD13_EXT 0x87AA +#define GL_OUTPUT_TEXTURE_COORD14_EXT 0x87AB +#define GL_OUTPUT_TEXTURE_COORD15_EXT 0x87AC +#define GL_OUTPUT_TEXTURE_COORD16_EXT 0x87AD +#define GL_OUTPUT_TEXTURE_COORD17_EXT 0x87AE +#define GL_OUTPUT_TEXTURE_COORD18_EXT 0x87AF +#define GL_OUTPUT_TEXTURE_COORD19_EXT 0x87B0 +#define GL_OUTPUT_TEXTURE_COORD20_EXT 0x87B1 +#define GL_OUTPUT_TEXTURE_COORD21_EXT 0x87B2 +#define GL_OUTPUT_TEXTURE_COORD22_EXT 0x87B3 +#define GL_OUTPUT_TEXTURE_COORD23_EXT 0x87B4 +#define GL_OUTPUT_TEXTURE_COORD24_EXT 0x87B5 +#define GL_OUTPUT_TEXTURE_COORD25_EXT 0x87B6 +#define GL_OUTPUT_TEXTURE_COORD26_EXT 0x87B7 +#define GL_OUTPUT_TEXTURE_COORD27_EXT 0x87B8 +#define GL_OUTPUT_TEXTURE_COORD28_EXT 0x87B9 +#define GL_OUTPUT_TEXTURE_COORD29_EXT 0x87BA +#define GL_OUTPUT_TEXTURE_COORD30_EXT 0x87BB +#define GL_OUTPUT_TEXTURE_COORD31_EXT 0x87BC +#define GL_OUTPUT_FOG_EXT 0x87BD +#define GL_SCALAR_EXT 0x87BE +#define GL_VECTOR_EXT 0x87BF +#define GL_MATRIX_EXT 0x87C0 +#define GL_VARIANT_EXT 0x87C1 +#define GL_INVARIANT_EXT 0x87C2 +#define GL_LOCAL_CONSTANT_EXT 0x87C3 +#define GL_LOCAL_EXT 0x87C4 +#define GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87C5 +#define GL_MAX_VERTEX_SHADER_VARIANTS_EXT 0x87C6 +#define GL_MAX_VERTEX_SHADER_INVARIANTS_EXT 0x87C7 +#define GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87C8 +#define GL_MAX_VERTEX_SHADER_LOCALS_EXT 0x87C9 +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CA +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT 0x87CB +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87CC +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT 0x87CD +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT 0x87CE +#define GL_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CF +#define GL_VERTEX_SHADER_VARIANTS_EXT 0x87D0 +#define GL_VERTEX_SHADER_INVARIANTS_EXT 0x87D1 +#define GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87D2 +#define GL_VERTEX_SHADER_LOCALS_EXT 0x87D3 +#define GL_VERTEX_SHADER_OPTIMIZED_EXT 0x87D4 +#define GL_X_EXT 0x87D5 +#define GL_Y_EXT 0x87D6 +#define GL_Z_EXT 0x87D7 +#define GL_W_EXT 0x87D8 +#define GL_NEGATIVE_X_EXT 0x87D9 +#define GL_NEGATIVE_Y_EXT 0x87DA +#define GL_NEGATIVE_Z_EXT 0x87DB +#define GL_NEGATIVE_W_EXT 0x87DC +#define GL_ZERO_EXT 0x87DD +#define GL_ONE_EXT 0x87DE +#define GL_NEGATIVE_ONE_EXT 0x87DF +#define GL_NORMALIZED_RANGE_EXT 0x87E0 +#define GL_FULL_RANGE_EXT 0x87E1 +#define GL_CURRENT_VERTEX_EXT 0x87E2 +#define GL_MVP_MATRIX_EXT 0x87E3 +#define GL_VARIANT_VALUE_EXT 0x87E4 +#define GL_VARIANT_DATATYPE_EXT 0x87E5 +#define GL_VARIANT_ARRAY_STRIDE_EXT 0x87E6 +#define GL_VARIANT_ARRAY_TYPE_EXT 0x87E7 +#define GL_VARIANT_ARRAY_EXT 0x87E8 +#define GL_VARIANT_ARRAY_POINTER_EXT 0x87E9 +#define GL_INVARIANT_VALUE_EXT 0x87EA +#define GL_INVARIANT_DATATYPE_EXT 0x87EB +#define GL_LOCAL_CONSTANT_VALUE_EXT 0x87EC +#define GL_LOCAL_CONSTANT_DATATYPE_EXT 0x87ED +#endif + +#ifndef GL_ATI_vertex_streams +#define GL_MAX_VERTEX_STREAMS_ATI 0x876B +#define GL_VERTEX_STREAM0_ATI 0x876C +#define GL_VERTEX_STREAM1_ATI 0x876D +#define GL_VERTEX_STREAM2_ATI 0x876E +#define GL_VERTEX_STREAM3_ATI 0x876F +#define GL_VERTEX_STREAM4_ATI 0x8770 +#define GL_VERTEX_STREAM5_ATI 0x8771 +#define GL_VERTEX_STREAM6_ATI 0x8772 +#define GL_VERTEX_STREAM7_ATI 0x8773 +#define GL_VERTEX_SOURCE_ATI 0x8774 +#endif + +#ifndef GL_ATI_element_array +#define GL_ELEMENT_ARRAY_ATI 0x8768 +#define GL_ELEMENT_ARRAY_TYPE_ATI 0x8769 +#define GL_ELEMENT_ARRAY_POINTER_ATI 0x876A +#endif + +#ifndef GL_SUN_mesh_array +#define GL_QUAD_MESH_SUN 0x8614 +#define GL_TRIANGLE_MESH_SUN 0x8615 +#endif + +#ifndef GL_SUN_slice_accum +#define GL_SLICE_ACCUM_SUN 0x85CC +#endif + +#ifndef GL_NV_multisample_filter_hint +#define GL_MULTISAMPLE_FILTER_HINT_NV 0x8534 +#endif + +#ifndef GL_NV_depth_clamp +#define GL_DEPTH_CLAMP_NV 0x864F +#endif + +#ifndef GL_NV_occlusion_query +#define GL_PIXEL_COUNTER_BITS_NV 0x8864 +#define GL_CURRENT_OCCLUSION_QUERY_ID_NV 0x8865 +#define GL_PIXEL_COUNT_NV 0x8866 +#define GL_PIXEL_COUNT_AVAILABLE_NV 0x8867 +#endif + +#ifndef GL_NV_point_sprite +#define GL_POINT_SPRITE_NV 0x8861 +#define GL_COORD_REPLACE_NV 0x8862 +#define GL_POINT_SPRITE_R_MODE_NV 0x8863 +#endif + +#ifndef GL_NV_texture_shader3 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV 0x8850 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV 0x8851 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8852 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV 0x8853 +#define GL_OFFSET_HILO_TEXTURE_2D_NV 0x8854 +#define GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV 0x8855 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV 0x8856 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8857 +#define GL_DEPENDENT_HILO_TEXTURE_2D_NV 0x8858 +#define GL_DEPENDENT_RGB_TEXTURE_3D_NV 0x8859 +#define GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV 0x885A +#define GL_DOT_PRODUCT_PASS_THROUGH_NV 0x885B +#define GL_DOT_PRODUCT_TEXTURE_1D_NV 0x885C +#define GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV 0x885D +#define GL_HILO8_NV 0x885E +#define GL_SIGNED_HILO8_NV 0x885F +#define GL_FORCE_BLUE_TO_ONE_NV 0x8860 +#endif + +#ifndef GL_NV_vertex_program1_1 +#endif + +#ifndef GL_EXT_shadow_funcs +#endif + +#ifndef GL_EXT_stencil_two_side +#define GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910 +#define GL_ACTIVE_STENCIL_FACE_EXT 0x8911 +#endif + +#ifndef GL_ATI_text_fragment_shader +#define GL_TEXT_FRAGMENT_SHADER_ATI 0x8200 +#endif + +#ifndef GL_APPLE_client_storage +#define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 +#endif + +#ifndef GL_APPLE_element_array +#define GL_ELEMENT_ARRAY_APPLE 0x8A0C +#define GL_ELEMENT_ARRAY_TYPE_APPLE 0x8A0D +#define GL_ELEMENT_ARRAY_POINTER_APPLE 0x8A0E +#endif + +#ifndef GL_APPLE_fence +#define GL_DRAW_PIXELS_APPLE 0x8A0A +#define GL_FENCE_APPLE 0x8A0B +#endif + +#ifndef GL_APPLE_vertex_array_object +#define GL_VERTEX_ARRAY_BINDING_APPLE 0x85B5 +#endif + +#ifndef GL_APPLE_vertex_array_range +#define GL_VERTEX_ARRAY_RANGE_APPLE 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE 0x851E +#define GL_VERTEX_ARRAY_STORAGE_HINT_APPLE 0x851F +#define GL_VERTEX_ARRAY_RANGE_POINTER_APPLE 0x8521 +#define GL_STORAGE_CLIENT_APPLE 0x85B4 +#define GL_STORAGE_CACHED_APPLE 0x85BE +#define GL_STORAGE_SHARED_APPLE 0x85BF +#endif + +#ifndef GL_APPLE_ycbcr_422 +#define GL_YCBCR_422_APPLE 0x85B9 +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#endif + +#ifndef GL_S3_s3tc +#define GL_RGB_S3TC 0x83A0 +#define GL_RGB4_S3TC 0x83A1 +#define GL_RGBA_S3TC 0x83A2 +#define GL_RGBA4_S3TC 0x83A3 +#endif + +#ifndef GL_ATI_draw_buffers +#define GL_MAX_DRAW_BUFFERS_ATI 0x8824 +#define GL_DRAW_BUFFER0_ATI 0x8825 +#define GL_DRAW_BUFFER1_ATI 0x8826 +#define GL_DRAW_BUFFER2_ATI 0x8827 +#define GL_DRAW_BUFFER3_ATI 0x8828 +#define GL_DRAW_BUFFER4_ATI 0x8829 +#define GL_DRAW_BUFFER5_ATI 0x882A +#define GL_DRAW_BUFFER6_ATI 0x882B +#define GL_DRAW_BUFFER7_ATI 0x882C +#define GL_DRAW_BUFFER8_ATI 0x882D +#define GL_DRAW_BUFFER9_ATI 0x882E +#define GL_DRAW_BUFFER10_ATI 0x882F +#define GL_DRAW_BUFFER11_ATI 0x8830 +#define GL_DRAW_BUFFER12_ATI 0x8831 +#define GL_DRAW_BUFFER13_ATI 0x8832 +#define GL_DRAW_BUFFER14_ATI 0x8833 +#define GL_DRAW_BUFFER15_ATI 0x8834 +#endif + +#ifndef GL_ATI_pixel_format_float +#define GL_TYPE_RGBA_FLOAT_ATI 0x8820 +#define GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835 +#endif + +#ifndef GL_ATI_texture_env_combine3 +#define GL_MODULATE_ADD_ATI 0x8744 +#define GL_MODULATE_SIGNED_ADD_ATI 0x8745 +#define GL_MODULATE_SUBTRACT_ATI 0x8746 +#endif + +#ifndef GL_ATI_texture_float +#define GL_RGBA_FLOAT32_ATI 0x8814 +#define GL_RGB_FLOAT32_ATI 0x8815 +#define GL_ALPHA_FLOAT32_ATI 0x8816 +#define GL_INTENSITY_FLOAT32_ATI 0x8817 +#define GL_LUMINANCE_FLOAT32_ATI 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_ATI 0x8819 +#define GL_RGBA_FLOAT16_ATI 0x881A +#define GL_RGB_FLOAT16_ATI 0x881B +#define GL_ALPHA_FLOAT16_ATI 0x881C +#define GL_INTENSITY_FLOAT16_ATI 0x881D +#define GL_LUMINANCE_FLOAT16_ATI 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_ATI 0x881F +#endif + +#ifndef GL_NV_float_buffer +#define GL_FLOAT_R_NV 0x8880 +#define GL_FLOAT_RG_NV 0x8881 +#define GL_FLOAT_RGB_NV 0x8882 +#define GL_FLOAT_RGBA_NV 0x8883 +#define GL_FLOAT_R16_NV 0x8884 +#define GL_FLOAT_R32_NV 0x8885 +#define GL_FLOAT_RG16_NV 0x8886 +#define GL_FLOAT_RG32_NV 0x8887 +#define GL_FLOAT_RGB16_NV 0x8888 +#define GL_FLOAT_RGB32_NV 0x8889 +#define GL_FLOAT_RGBA16_NV 0x888A +#define GL_FLOAT_RGBA32_NV 0x888B +#define GL_TEXTURE_FLOAT_COMPONENTS_NV 0x888C +#define GL_FLOAT_CLEAR_COLOR_VALUE_NV 0x888D +#define GL_FLOAT_RGBA_MODE_NV 0x888E +#endif + +#ifndef GL_NV_fragment_program +#define GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV 0x8868 +#define GL_FRAGMENT_PROGRAM_NV 0x8870 +#define GL_MAX_TEXTURE_COORDS_NV 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_NV 0x8872 +#define GL_FRAGMENT_PROGRAM_BINDING_NV 0x8873 +#define GL_PROGRAM_ERROR_STRING_NV 0x8874 +#endif + +#ifndef GL_NV_half_float +#define GL_HALF_FLOAT_NV 0x140B +#endif + +#ifndef GL_NV_pixel_data_range +#define GL_WRITE_PIXEL_DATA_RANGE_NV 0x8878 +#define GL_READ_PIXEL_DATA_RANGE_NV 0x8879 +#define GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV 0x887A +#define GL_READ_PIXEL_DATA_RANGE_LENGTH_NV 0x887B +#define GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV 0x887C +#define GL_READ_PIXEL_DATA_RANGE_POINTER_NV 0x887D +#endif + +#ifndef GL_NV_primitive_restart +#define GL_PRIMITIVE_RESTART_NV 0x8558 +#define GL_PRIMITIVE_RESTART_INDEX_NV 0x8559 +#endif + +#ifndef GL_NV_texture_expand_normal +#define GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F +#endif + +#ifndef GL_NV_vertex_program2 +#endif + +#ifndef GL_ATI_map_object_buffer +#endif + +#ifndef GL_ATI_separate_stencil +#define GL_STENCIL_BACK_FUNC_ATI 0x8800 +#define GL_STENCIL_BACK_FAIL_ATI 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI 0x8803 +#endif + +#ifndef GL_ATI_vertex_attrib_array_object +#endif + +#ifndef GL_OES_read_format +#define GL_IMPLEMENTATION_COLOR_READ_TYPE_OES 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES 0x8B9B +#endif + +#ifndef GL_EXT_depth_bounds_test +#define GL_DEPTH_BOUNDS_TEST_EXT 0x8890 +#define GL_DEPTH_BOUNDS_EXT 0x8891 +#endif + +#ifndef GL_EXT_texture_mirror_clamp +#define GL_MIRROR_CLAMP_EXT 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#define GL_MIRROR_CLAMP_TO_BORDER_EXT 0x8912 +#endif + +#ifndef GL_EXT_blend_equation_separate +#define GL_BLEND_EQUATION_RGB_EXT 0x8009 +#define GL_BLEND_EQUATION_ALPHA_EXT 0x883D +#endif + +#ifndef GL_MESA_pack_invert +#define GL_PACK_INVERT_MESA 0x8758 +#endif + +#ifndef GL_MESA_ycbcr_texture +#define GL_UNSIGNED_SHORT_8_8_MESA 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB +#define GL_YCBCR_MESA 0x8757 +#endif + +#ifndef GL_EXT_pixel_buffer_object +#define GL_PIXEL_PACK_BUFFER_EXT 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF +#endif + +#ifndef GL_NV_fragment_program_option +#endif + +#ifndef GL_NV_fragment_program2 +#define GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 +#define GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 +#define GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 +#define GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 +#define GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 +#endif + +#ifndef GL_NV_vertex_program2_option +/* reuse GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV */ +/* reuse GL_MAX_PROGRAM_CALL_DEPTH_NV */ +#endif + +#ifndef GL_NV_vertex_program3 +/* reuse GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB */ +#endif + +#ifndef GL_EXT_framebuffer_object +#define GL_INVALID_FRAMEBUFFER_OPERATION_EXT 0x0506 +#define GL_MAX_RENDERBUFFER_SIZE_EXT 0x84E8 +#define GL_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_RENDERBUFFER_BINDING_EXT 0x8CA7 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE_EXT 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT 0x8CD9 +#define GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT 0x8CDA +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED_EXT 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +#define GL_DEPTH_ATTACHMENT_EXT 0x8D00 +#define GL_STENCIL_ATTACHMENT_EXT 0x8D20 +#define GL_FRAMEBUFFER_EXT 0x8D40 +#define GL_RENDERBUFFER_EXT 0x8D41 +#define GL_RENDERBUFFER_WIDTH_EXT 0x8D42 +#define GL_RENDERBUFFER_HEIGHT_EXT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT_EXT 0x8D44 +#define GL_STENCIL_INDEX1_EXT 0x8D46 +#define GL_STENCIL_INDEX4_EXT 0x8D47 +#define GL_STENCIL_INDEX8_EXT 0x8D48 +#define GL_STENCIL_INDEX16_EXT 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE_EXT 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE_EXT 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE_EXT 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE_EXT 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE_EXT 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE_EXT 0x8D55 +#endif + +#ifndef GL_GREMEDY_string_marker +#endif + +#ifndef GL_EXT_packed_depth_stencil +#define GL_DEPTH_STENCIL_EXT 0x84F9 +#define GL_UNSIGNED_INT_24_8_EXT 0x84FA +#define GL_DEPTH24_STENCIL8_EXT 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE_EXT 0x88F1 +#endif + +#ifndef GL_EXT_stencil_clear_tag +#define GL_STENCIL_TAG_BITS_EXT 0x88F2 +#define GL_STENCIL_CLEAR_TAG_VALUE_EXT 0x88F3 +#endif + +#ifndef GL_EXT_texture_sRGB +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB8_EXT 0x8C41 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_SLUMINANCE_ALPHA_EXT 0x8C44 +#define GL_SLUMINANCE8_ALPHA8_EXT 0x8C45 +#define GL_SLUMINANCE_EXT 0x8C46 +#define GL_SLUMINANCE8_EXT 0x8C47 +#define GL_COMPRESSED_SRGB_EXT 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA_EXT 0x8C49 +#define GL_COMPRESSED_SLUMINANCE_EXT 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA_EXT 0x8C4B +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F +#endif + +#ifndef GL_EXT_framebuffer_blit +#define GL_READ_FRAMEBUFFER_EXT 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_EXT 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_EXT GL_FRAMEBUFFER_BINDING_EXT +#define GL_READ_FRAMEBUFFER_BINDING_EXT 0x8CAA +#endif + +#ifndef GL_EXT_framebuffer_multisample +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +#endif + +#ifndef GL_MESAX_texture_stack +#define GL_TEXTURE_1D_STACK_MESAX 0x8759 +#define GL_TEXTURE_2D_STACK_MESAX 0x875A +#define GL_PROXY_TEXTURE_1D_STACK_MESAX 0x875B +#define GL_PROXY_TEXTURE_2D_STACK_MESAX 0x875C +#define GL_TEXTURE_1D_STACK_BINDING_MESAX 0x875D +#define GL_TEXTURE_2D_STACK_BINDING_MESAX 0x875E +#endif + +#ifndef GL_EXT_timer_query +#define GL_TIME_ELAPSED_EXT 0x88BF +#endif + +#ifndef GL_EXT_gpu_program_parameters +#endif + +#ifndef GL_APPLE_flush_buffer_range +#define GL_BUFFER_SERIALIZED_MODIFY_APPLE 0x8A12 +#define GL_BUFFER_FLUSHING_UNMAP_APPLE 0x8A13 +#endif + +#ifndef GL_NV_gpu_program4 +#define GL_MIN_PROGRAM_TEXEL_OFFSET_NV 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET_NV 0x8905 +#define GL_PROGRAM_ATTRIB_COMPONENTS_NV 0x8906 +#define GL_PROGRAM_RESULT_COMPONENTS_NV 0x8907 +#define GL_MAX_PROGRAM_ATTRIB_COMPONENTS_NV 0x8908 +#define GL_MAX_PROGRAM_RESULT_COMPONENTS_NV 0x8909 +#define GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV 0x8DA5 +#define GL_MAX_PROGRAM_GENERIC_RESULTS_NV 0x8DA6 +#endif + +#ifndef GL_NV_geometry_program4 +#define GL_LINES_ADJACENCY_EXT 0x000A +#define GL_LINE_STRIP_ADJACENCY_EXT 0x000B +#define GL_TRIANGLES_ADJACENCY_EXT 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D +#define GL_GEOMETRY_PROGRAM_NV 0x8C26 +#define GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27 +#define GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 +#define GL_GEOMETRY_VERTICES_OUT_EXT 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_EXT 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_EXT 0x8DDC +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT 0x8DA9 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT 0x8CD4 +#define GL_PROGRAM_POINT_SIZE_EXT 0x8642 +#endif + +#ifndef GL_EXT_geometry_shader4 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +/* reuse GL_GEOMETRY_VERTICES_OUT_EXT */ +/* reuse GL_GEOMETRY_INPUT_TYPE_EXT */ +/* reuse GL_GEOMETRY_OUTPUT_TYPE_EXT */ +/* reuse GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT */ +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_EXT 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_EXT 0x8DDE +#define GL_MAX_VARYING_COMPONENTS_EXT 0x8B4B +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +/* reuse GL_LINES_ADJACENCY_EXT */ +/* reuse GL_LINE_STRIP_ADJACENCY_EXT */ +/* reuse GL_TRIANGLES_ADJACENCY_EXT */ +/* reuse GL_TRIANGLE_STRIP_ADJACENCY_EXT */ +/* reuse GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT */ +/* reuse GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT */ +/* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT */ +/* reuse GL_PROGRAM_POINT_SIZE_EXT */ +#endif + +#ifndef GL_NV_vertex_program4 +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD +#endif + +#ifndef GL_EXT_gpu_shader4 +#define GL_SAMPLER_1D_ARRAY_EXT 0x8DC0 +#define GL_SAMPLER_2D_ARRAY_EXT 0x8DC1 +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_SAMPLER_1D_ARRAY_SHADOW_EXT 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW_EXT 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW_EXT 0x8DC5 +#define GL_UNSIGNED_INT_VEC2_EXT 0x8DC6 +#define GL_UNSIGNED_INT_VEC3_EXT 0x8DC7 +#define GL_UNSIGNED_INT_VEC4_EXT 0x8DC8 +#define GL_INT_SAMPLER_1D_EXT 0x8DC9 +#define GL_INT_SAMPLER_2D_EXT 0x8DCA +#define GL_INT_SAMPLER_3D_EXT 0x8DCB +#define GL_INT_SAMPLER_CUBE_EXT 0x8DCC +#define GL_INT_SAMPLER_2D_RECT_EXT 0x8DCD +#define GL_INT_SAMPLER_1D_ARRAY_EXT 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY_EXT 0x8DCF +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_1D_EXT 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D_EXT 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D_EXT 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE_EXT 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT 0x8DD7 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 +#endif + +#ifndef GL_EXT_draw_instanced +#endif + +#ifndef GL_EXT_packed_float +#define GL_R11F_G11F_B10F_EXT 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B +#define GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C +#endif + +#ifndef GL_EXT_texture_array +#define GL_TEXTURE_1D_ARRAY_EXT 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY_EXT 0x8C19 +#define GL_TEXTURE_2D_ARRAY_EXT 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY_EXT 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY_EXT 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY_EXT 0x8C1D +#define GL_MAX_ARRAY_TEXTURE_LAYERS_EXT 0x88FF +#define GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT 0x884E +/* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT */ +#endif + +#ifndef GL_EXT_texture_buffer_object +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_EXT 0x8C2E +#endif + +#ifndef GL_EXT_texture_compression_latc +#define GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70 +#define GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71 +#define GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72 +#define GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73 +#endif + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE +#endif + +#ifndef GL_EXT_texture_shared_exponent +#define GL_RGB9_E5_EXT 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E +#define GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F +#endif + +#ifndef GL_NV_depth_buffer_float +#define GL_DEPTH_COMPONENT32F_NV 0x8DAB +#define GL_DEPTH32F_STENCIL8_NV 0x8DAC +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV 0x8DAD +#define GL_DEPTH_BUFFER_FLOAT_MODE_NV 0x8DAF +#endif + +#ifndef GL_NV_fragment_program4 +#endif + +#ifndef GL_NV_framebuffer_multisample_coverage +#define GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB +#define GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10 +#define GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E11 +#define GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12 +#endif + +#ifndef GL_EXT_framebuffer_sRGB +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#define GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA +#endif + +#ifndef GL_NV_geometry_shader4 +#endif + +#ifndef GL_NV_parameter_buffer_object +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV 0x8DA0 +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV 0x8DA1 +#define GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV 0x8DA2 +#define GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV 0x8DA3 +#define GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV 0x8DA4 +#endif + +#ifndef GL_EXT_draw_buffers2 +#endif + +#ifndef GL_NV_transform_feedback +#define GL_BACK_PRIMARY_COLOR_NV 0x8C77 +#define GL_BACK_SECONDARY_COLOR_NV 0x8C78 +#define GL_TEXTURE_COORD_NV 0x8C79 +#define GL_CLIP_DISTANCE_NV 0x8C7A +#define GL_VERTEX_ID_NV 0x8C7B +#define GL_PRIMITIVE_ID_NV 0x8C7C +#define GL_GENERIC_ATTRIB_NV 0x8C7D +#define GL_TRANSFORM_FEEDBACK_ATTRIBS_NV 0x8C7E +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_NV 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV 0x8C80 +#define GL_ACTIVE_VARYINGS_NV 0x8C81 +#define GL_ACTIVE_VARYING_MAX_LENGTH_NV 0x8C82 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_NV 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_NV 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_NV 0x8C85 +#define GL_TRANSFORM_FEEDBACK_RECORD_NV 0x8C86 +#define GL_PRIMITIVES_GENERATED_NV 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV 0x8C88 +#define GL_RASTERIZER_DISCARD_NV 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_ATTRIBS_NV 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV 0x8C8B +#define GL_INTERLEAVED_ATTRIBS_NV 0x8C8C +#define GL_SEPARATE_ATTRIBS_NV 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER_NV 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_NV 0x8C8F +#define GL_LAYER_NV 0x8DAA +#define GL_NEXT_BUFFER_NV -2 +#define GL_SKIP_COMPONENTS4_NV -3 +#define GL_SKIP_COMPONENTS3_NV -4 +#define GL_SKIP_COMPONENTS2_NV -5 +#define GL_SKIP_COMPONENTS1_NV -6 +#endif + +#ifndef GL_EXT_bindable_uniform +#define GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT 0x8DE2 +#define GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT 0x8DE3 +#define GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT 0x8DE4 +#define GL_MAX_BINDABLE_UNIFORM_SIZE_EXT 0x8DED +#define GL_UNIFORM_BUFFER_EXT 0x8DEE +#define GL_UNIFORM_BUFFER_BINDING_EXT 0x8DEF +#endif + +#ifndef GL_EXT_texture_integer +#define GL_RGBA32UI_EXT 0x8D70 +#define GL_RGB32UI_EXT 0x8D71 +#define GL_ALPHA32UI_EXT 0x8D72 +#define GL_INTENSITY32UI_EXT 0x8D73 +#define GL_LUMINANCE32UI_EXT 0x8D74 +#define GL_LUMINANCE_ALPHA32UI_EXT 0x8D75 +#define GL_RGBA16UI_EXT 0x8D76 +#define GL_RGB16UI_EXT 0x8D77 +#define GL_ALPHA16UI_EXT 0x8D78 +#define GL_INTENSITY16UI_EXT 0x8D79 +#define GL_LUMINANCE16UI_EXT 0x8D7A +#define GL_LUMINANCE_ALPHA16UI_EXT 0x8D7B +#define GL_RGBA8UI_EXT 0x8D7C +#define GL_RGB8UI_EXT 0x8D7D +#define GL_ALPHA8UI_EXT 0x8D7E +#define GL_INTENSITY8UI_EXT 0x8D7F +#define GL_LUMINANCE8UI_EXT 0x8D80 +#define GL_LUMINANCE_ALPHA8UI_EXT 0x8D81 +#define GL_RGBA32I_EXT 0x8D82 +#define GL_RGB32I_EXT 0x8D83 +#define GL_ALPHA32I_EXT 0x8D84 +#define GL_INTENSITY32I_EXT 0x8D85 +#define GL_LUMINANCE32I_EXT 0x8D86 +#define GL_LUMINANCE_ALPHA32I_EXT 0x8D87 +#define GL_RGBA16I_EXT 0x8D88 +#define GL_RGB16I_EXT 0x8D89 +#define GL_ALPHA16I_EXT 0x8D8A +#define GL_INTENSITY16I_EXT 0x8D8B +#define GL_LUMINANCE16I_EXT 0x8D8C +#define GL_LUMINANCE_ALPHA16I_EXT 0x8D8D +#define GL_RGBA8I_EXT 0x8D8E +#define GL_RGB8I_EXT 0x8D8F +#define GL_ALPHA8I_EXT 0x8D90 +#define GL_INTENSITY8I_EXT 0x8D91 +#define GL_LUMINANCE8I_EXT 0x8D92 +#define GL_LUMINANCE_ALPHA8I_EXT 0x8D93 +#define GL_RED_INTEGER_EXT 0x8D94 +#define GL_GREEN_INTEGER_EXT 0x8D95 +#define GL_BLUE_INTEGER_EXT 0x8D96 +#define GL_ALPHA_INTEGER_EXT 0x8D97 +#define GL_RGB_INTEGER_EXT 0x8D98 +#define GL_RGBA_INTEGER_EXT 0x8D99 +#define GL_BGR_INTEGER_EXT 0x8D9A +#define GL_BGRA_INTEGER_EXT 0x8D9B +#define GL_LUMINANCE_INTEGER_EXT 0x8D9C +#define GL_LUMINANCE_ALPHA_INTEGER_EXT 0x8D9D +#define GL_RGBA_INTEGER_MODE_EXT 0x8D9E +#endif + +#ifndef GL_GREMEDY_frame_terminator +#endif + +#ifndef GL_NV_conditional_render +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 +#endif + +#ifndef GL_NV_present_video +#define GL_FRAME_NV 0x8E26 +#define GL_FIELDS_NV 0x8E27 +#define GL_CURRENT_TIME_NV 0x8E28 +#define GL_NUM_FILL_STREAMS_NV 0x8E29 +#define GL_PRESENT_TIME_NV 0x8E2A +#define GL_PRESENT_DURATION_NV 0x8E2B +#endif + +#ifndef GL_EXT_transform_feedback +#define GL_TRANSFORM_FEEDBACK_BUFFER_EXT 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT 0x8C85 +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT 0x8C8F +#define GL_INTERLEAVED_ATTRIBS_EXT 0x8C8C +#define GL_SEPARATE_ATTRIBS_EXT 0x8C8D +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT 0x8C88 +#define GL_RASTERIZER_DISCARD_EXT 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT 0x8C8B +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_EXT 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT 0x8C7F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT 0x8C76 +#endif + +#ifndef GL_EXT_direct_state_access +#define GL_PROGRAM_MATRIX_EXT 0x8E2D +#define GL_TRANSPOSE_PROGRAM_MATRIX_EXT 0x8E2E +#define GL_PROGRAM_MATRIX_STACK_DEPTH_EXT 0x8E2F +#endif + +#ifndef GL_EXT_vertex_array_bgra +/* reuse GL_BGRA */ +#endif + +#ifndef GL_EXT_texture_swizzle +#define GL_TEXTURE_SWIZZLE_R_EXT 0x8E42 +#define GL_TEXTURE_SWIZZLE_G_EXT 0x8E43 +#define GL_TEXTURE_SWIZZLE_B_EXT 0x8E44 +#define GL_TEXTURE_SWIZZLE_A_EXT 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA_EXT 0x8E46 +#endif + +#ifndef GL_NV_explicit_multisample +#define GL_SAMPLE_POSITION_NV 0x8E50 +#define GL_SAMPLE_MASK_NV 0x8E51 +#define GL_SAMPLE_MASK_VALUE_NV 0x8E52 +#define GL_TEXTURE_BINDING_RENDERBUFFER_NV 0x8E53 +#define GL_TEXTURE_RENDERBUFFER_DATA_STORE_BINDING_NV 0x8E54 +#define GL_TEXTURE_RENDERBUFFER_NV 0x8E55 +#define GL_SAMPLER_RENDERBUFFER_NV 0x8E56 +#define GL_INT_SAMPLER_RENDERBUFFER_NV 0x8E57 +#define GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV 0x8E58 +#define GL_MAX_SAMPLE_MASK_WORDS_NV 0x8E59 +#endif + +#ifndef GL_NV_transform_feedback2 +#define GL_TRANSFORM_FEEDBACK_NV 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING_NV 0x8E25 +#endif + +#ifndef GL_ATI_meminfo +#define GL_VBO_FREE_MEMORY_ATI 0x87FB +#define GL_TEXTURE_FREE_MEMORY_ATI 0x87FC +#define GL_RENDERBUFFER_FREE_MEMORY_ATI 0x87FD +#endif + +#ifndef GL_AMD_performance_monitor +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +#endif + +#ifndef GL_AMD_texture_texture4 +#endif + +#ifndef GL_AMD_vertex_shader_tesselator +#define GL_SAMPLER_BUFFER_AMD 0x9001 +#define GL_INT_SAMPLER_BUFFER_AMD 0x9002 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD 0x9003 +#define GL_TESSELLATION_MODE_AMD 0x9004 +#define GL_TESSELLATION_FACTOR_AMD 0x9005 +#define GL_DISCRETE_AMD 0x9006 +#define GL_CONTINUOUS_AMD 0x9007 +#endif + +#ifndef GL_EXT_provoking_vertex +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_PROVOKING_VERTEX_EXT 0x8E4F +#endif + +#ifndef GL_EXT_texture_snorm +#define GL_ALPHA_SNORM 0x9010 +#define GL_LUMINANCE_SNORM 0x9011 +#define GL_LUMINANCE_ALPHA_SNORM 0x9012 +#define GL_INTENSITY_SNORM 0x9013 +#define GL_ALPHA8_SNORM 0x9014 +#define GL_LUMINANCE8_SNORM 0x9015 +#define GL_LUMINANCE8_ALPHA8_SNORM 0x9016 +#define GL_INTENSITY8_SNORM 0x9017 +#define GL_ALPHA16_SNORM 0x9018 +#define GL_LUMINANCE16_SNORM 0x9019 +#define GL_LUMINANCE16_ALPHA16_SNORM 0x901A +#define GL_INTENSITY16_SNORM 0x901B +/* reuse GL_RED_SNORM */ +/* reuse GL_RG_SNORM */ +/* reuse GL_RGB_SNORM */ +/* reuse GL_RGBA_SNORM */ +/* reuse GL_R8_SNORM */ +/* reuse GL_RG8_SNORM */ +/* reuse GL_RGB8_SNORM */ +/* reuse GL_RGBA8_SNORM */ +/* reuse GL_R16_SNORM */ +/* reuse GL_RG16_SNORM */ +/* reuse GL_RGB16_SNORM */ +/* reuse GL_RGBA16_SNORM */ +/* reuse GL_SIGNED_NORMALIZED */ +#endif + +#ifndef GL_AMD_draw_buffers_blend +#endif + +#ifndef GL_APPLE_texture_range +#define GL_TEXTURE_RANGE_LENGTH_APPLE 0x85B7 +#define GL_TEXTURE_RANGE_POINTER_APPLE 0x85B8 +#define GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC +#define GL_STORAGE_PRIVATE_APPLE 0x85BD +/* reuse GL_STORAGE_CACHED_APPLE */ +/* reuse GL_STORAGE_SHARED_APPLE */ +#endif + +#ifndef GL_APPLE_float_pixels +#define GL_HALF_APPLE 0x140B +#define GL_RGBA_FLOAT32_APPLE 0x8814 +#define GL_RGB_FLOAT32_APPLE 0x8815 +#define GL_ALPHA_FLOAT32_APPLE 0x8816 +#define GL_INTENSITY_FLOAT32_APPLE 0x8817 +#define GL_LUMINANCE_FLOAT32_APPLE 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_APPLE 0x8819 +#define GL_RGBA_FLOAT16_APPLE 0x881A +#define GL_RGB_FLOAT16_APPLE 0x881B +#define GL_ALPHA_FLOAT16_APPLE 0x881C +#define GL_INTENSITY_FLOAT16_APPLE 0x881D +#define GL_LUMINANCE_FLOAT16_APPLE 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_APPLE 0x881F +#define GL_COLOR_FLOAT_APPLE 0x8A0F +#endif + +#ifndef GL_APPLE_vertex_program_evaluators +#define GL_VERTEX_ATTRIB_MAP1_APPLE 0x8A00 +#define GL_VERTEX_ATTRIB_MAP2_APPLE 0x8A01 +#define GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE 0x8A02 +#define GL_VERTEX_ATTRIB_MAP1_COEFF_APPLE 0x8A03 +#define GL_VERTEX_ATTRIB_MAP1_ORDER_APPLE 0x8A04 +#define GL_VERTEX_ATTRIB_MAP1_DOMAIN_APPLE 0x8A05 +#define GL_VERTEX_ATTRIB_MAP2_SIZE_APPLE 0x8A06 +#define GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE 0x8A07 +#define GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE 0x8A08 +#define GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE 0x8A09 +#endif + +#ifndef GL_APPLE_aux_depth_stencil +#define GL_AUX_DEPTH_STENCIL_APPLE 0x8A14 +#endif + +#ifndef GL_APPLE_object_purgeable +#define GL_BUFFER_OBJECT_APPLE 0x85B3 +#define GL_RELEASED_APPLE 0x8A19 +#define GL_VOLATILE_APPLE 0x8A1A +#define GL_RETAINED_APPLE 0x8A1B +#define GL_UNDEFINED_APPLE 0x8A1C +#define GL_PURGEABLE_APPLE 0x8A1D +#endif + +#ifndef GL_APPLE_row_bytes +#define GL_PACK_ROW_BYTES_APPLE 0x8A15 +#define GL_UNPACK_ROW_BYTES_APPLE 0x8A16 +#endif + +#ifndef GL_APPLE_rgb_422 +#define GL_RGB_422_APPLE 0x8A1F +/* reuse GL_UNSIGNED_SHORT_8_8_APPLE */ +/* reuse GL_UNSIGNED_SHORT_8_8_REV_APPLE */ +#endif + +#ifndef GL_NV_video_capture +#define GL_VIDEO_BUFFER_NV 0x9020 +#define GL_VIDEO_BUFFER_BINDING_NV 0x9021 +#define GL_FIELD_UPPER_NV 0x9022 +#define GL_FIELD_LOWER_NV 0x9023 +#define GL_NUM_VIDEO_CAPTURE_STREAMS_NV 0x9024 +#define GL_NEXT_VIDEO_CAPTURE_BUFFER_STATUS_NV 0x9025 +#define GL_VIDEO_CAPTURE_TO_422_SUPPORTED_NV 0x9026 +#define GL_LAST_VIDEO_CAPTURE_STATUS_NV 0x9027 +#define GL_VIDEO_BUFFER_PITCH_NV 0x9028 +#define GL_VIDEO_COLOR_CONVERSION_MATRIX_NV 0x9029 +#define GL_VIDEO_COLOR_CONVERSION_MAX_NV 0x902A +#define GL_VIDEO_COLOR_CONVERSION_MIN_NV 0x902B +#define GL_VIDEO_COLOR_CONVERSION_OFFSET_NV 0x902C +#define GL_VIDEO_BUFFER_INTERNAL_FORMAT_NV 0x902D +#define GL_PARTIAL_SUCCESS_NV 0x902E +#define GL_SUCCESS_NV 0x902F +#define GL_FAILURE_NV 0x9030 +#define GL_YCBYCR8_422_NV 0x9031 +#define GL_YCBAYCR8A_4224_NV 0x9032 +#define GL_Z6Y10Z6CB10Z6Y10Z6CR10_422_NV 0x9033 +#define GL_Z6Y10Z6CB10Z6A10Z6Y10Z6CR10Z6A10_4224_NV 0x9034 +#define GL_Z4Y12Z4CB12Z4Y12Z4CR12_422_NV 0x9035 +#define GL_Z4Y12Z4CB12Z4A12Z4Y12Z4CR12Z4A12_4224_NV 0x9036 +#define GL_Z4Y12Z4CB12Z4CR12_444_NV 0x9037 +#define GL_VIDEO_CAPTURE_FRAME_WIDTH_NV 0x9038 +#define GL_VIDEO_CAPTURE_FRAME_HEIGHT_NV 0x9039 +#define GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV 0x903A +#define GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV 0x903B +#define GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV 0x903C +#endif + +#ifndef GL_NV_copy_image +#endif + +#ifndef GL_EXT_separate_shader_objects +#define GL_ACTIVE_PROGRAM_EXT 0x8B8D +#endif + +#ifndef GL_NV_parameter_buffer_object2 +#endif + +#ifndef GL_NV_shader_buffer_load +#define GL_BUFFER_GPU_ADDRESS_NV 0x8F1D +#define GL_GPU_ADDRESS_NV 0x8F34 +#define GL_MAX_SHADER_BUFFER_ADDRESS_NV 0x8F35 +#endif + +#ifndef GL_NV_vertex_buffer_unified_memory +#define GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV 0x8F1E +#define GL_ELEMENT_ARRAY_UNIFIED_NV 0x8F1F +#define GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV 0x8F20 +#define GL_VERTEX_ARRAY_ADDRESS_NV 0x8F21 +#define GL_NORMAL_ARRAY_ADDRESS_NV 0x8F22 +#define GL_COLOR_ARRAY_ADDRESS_NV 0x8F23 +#define GL_INDEX_ARRAY_ADDRESS_NV 0x8F24 +#define GL_TEXTURE_COORD_ARRAY_ADDRESS_NV 0x8F25 +#define GL_EDGE_FLAG_ARRAY_ADDRESS_NV 0x8F26 +#define GL_SECONDARY_COLOR_ARRAY_ADDRESS_NV 0x8F27 +#define GL_FOG_COORD_ARRAY_ADDRESS_NV 0x8F28 +#define GL_ELEMENT_ARRAY_ADDRESS_NV 0x8F29 +#define GL_VERTEX_ATTRIB_ARRAY_LENGTH_NV 0x8F2A +#define GL_VERTEX_ARRAY_LENGTH_NV 0x8F2B +#define GL_NORMAL_ARRAY_LENGTH_NV 0x8F2C +#define GL_COLOR_ARRAY_LENGTH_NV 0x8F2D +#define GL_INDEX_ARRAY_LENGTH_NV 0x8F2E +#define GL_TEXTURE_COORD_ARRAY_LENGTH_NV 0x8F2F +#define GL_EDGE_FLAG_ARRAY_LENGTH_NV 0x8F30 +#define GL_SECONDARY_COLOR_ARRAY_LENGTH_NV 0x8F31 +#define GL_FOG_COORD_ARRAY_LENGTH_NV 0x8F32 +#define GL_ELEMENT_ARRAY_LENGTH_NV 0x8F33 +#define GL_DRAW_INDIRECT_UNIFIED_NV 0x8F40 +#define GL_DRAW_INDIRECT_ADDRESS_NV 0x8F41 +#define GL_DRAW_INDIRECT_LENGTH_NV 0x8F42 +#endif + +#ifndef GL_NV_texture_barrier +#endif + +#ifndef GL_AMD_shader_stencil_export +#endif + +#ifndef GL_AMD_seamless_cubemap_per_texture +/* reuse GL_TEXTURE_CUBE_MAP_SEAMLESS_ARB */ +#endif + +#ifndef GL_AMD_conservative_depth +#endif + +#ifndef GL_EXT_shader_image_load_store +#define GL_MAX_IMAGE_UNITS_EXT 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT 0x8F39 +#define GL_IMAGE_BINDING_NAME_EXT 0x8F3A +#define GL_IMAGE_BINDING_LEVEL_EXT 0x8F3B +#define GL_IMAGE_BINDING_LAYERED_EXT 0x8F3C +#define GL_IMAGE_BINDING_LAYER_EXT 0x8F3D +#define GL_IMAGE_BINDING_ACCESS_EXT 0x8F3E +#define GL_IMAGE_1D_EXT 0x904C +#define GL_IMAGE_2D_EXT 0x904D +#define GL_IMAGE_3D_EXT 0x904E +#define GL_IMAGE_2D_RECT_EXT 0x904F +#define GL_IMAGE_CUBE_EXT 0x9050 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_IMAGE_1D_ARRAY_EXT 0x9052 +#define GL_IMAGE_2D_ARRAY_EXT 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE_EXT 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9056 +#define GL_INT_IMAGE_1D_EXT 0x9057 +#define GL_INT_IMAGE_2D_EXT 0x9058 +#define GL_INT_IMAGE_3D_EXT 0x9059 +#define GL_INT_IMAGE_2D_RECT_EXT 0x905A +#define GL_INT_IMAGE_CUBE_EXT 0x905B +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_INT_IMAGE_1D_ARRAY_EXT 0x905D +#define GL_INT_IMAGE_2D_ARRAY_EXT 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE_EXT 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D_EXT 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D_EXT 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D_EXT 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT_EXT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE_EXT 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY_EXT 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY_EXT 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_EXT 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x906C +#define GL_MAX_IMAGE_SAMPLES_EXT 0x906D +#define GL_IMAGE_BINDING_FORMAT_EXT 0x906E +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT_EXT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT_EXT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT_EXT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT_EXT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT_EXT 0x00000020 +#define GL_COMMAND_BARRIER_BIT_EXT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT_EXT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT_EXT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT_EXT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT_EXT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT_EXT 0x00001000 +#define GL_ALL_BARRIER_BITS_EXT 0xFFFFFFFF +#endif + +#ifndef GL_EXT_vertex_attrib_64bit +/* reuse GL_DOUBLE */ +#define GL_DOUBLE_VEC2_EXT 0x8FFC +#define GL_DOUBLE_VEC3_EXT 0x8FFD +#define GL_DOUBLE_VEC4_EXT 0x8FFE +#define GL_DOUBLE_MAT2_EXT 0x8F46 +#define GL_DOUBLE_MAT3_EXT 0x8F47 +#define GL_DOUBLE_MAT4_EXT 0x8F48 +#define GL_DOUBLE_MAT2x3_EXT 0x8F49 +#define GL_DOUBLE_MAT2x4_EXT 0x8F4A +#define GL_DOUBLE_MAT3x2_EXT 0x8F4B +#define GL_DOUBLE_MAT3x4_EXT 0x8F4C +#define GL_DOUBLE_MAT4x2_EXT 0x8F4D +#define GL_DOUBLE_MAT4x3_EXT 0x8F4E +#endif + +#ifndef GL_NV_gpu_program5 +#define GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C +#define GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D +#define GL_MAX_PROGRAM_SUBROUTINE_PARAMETERS_NV 0x8F44 +#define GL_MAX_PROGRAM_SUBROUTINE_NUM_NV 0x8F45 +#endif + +#ifndef GL_NV_gpu_shader5 +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +/* reuse GL_PATCHES */ +#endif + +#ifndef GL_NV_shader_buffer_store +#define GL_SHADER_GLOBAL_ACCESS_BARRIER_BIT_NV 0x00000010 +/* reuse GL_READ_WRITE */ +/* reuse GL_WRITE_ONLY */ +#endif + +#ifndef GL_NV_tessellation_program5 +#define GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 +#define GL_TESS_CONTROL_PROGRAM_NV 0x891E +#define GL_TESS_EVALUATION_PROGRAM_NV 0x891F +#define GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74 +#define GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75 +#endif + +#ifndef GL_NV_vertex_attrib_integer_64bit +/* reuse GL_INT64_NV */ +/* reuse GL_UNSIGNED_INT64_NV */ +#endif + +#ifndef GL_NV_multisample_coverage +#define GL_COVERAGE_SAMPLES_NV 0x80A9 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#endif + +#ifndef GL_AMD_name_gen_delete +#define GL_DATA_BUFFER_AMD 0x9151 +#define GL_PERFORMANCE_MONITOR_AMD 0x9152 +#define GL_QUERY_OBJECT_AMD 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_AMD 0x9154 +#define GL_SAMPLER_OBJECT_AMD 0x9155 +#endif + +#ifndef GL_AMD_debug_output +#define GL_MAX_DEBUG_LOGGED_MESSAGES_AMD 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_AMD 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_AMD 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_AMD 0x9147 +#define GL_DEBUG_SEVERITY_LOW_AMD 0x9148 +#define GL_DEBUG_CATEGORY_API_ERROR_AMD 0x9149 +#define GL_DEBUG_CATEGORY_WINDOW_SYSTEM_AMD 0x914A +#define GL_DEBUG_CATEGORY_DEPRECATION_AMD 0x914B +#define GL_DEBUG_CATEGORY_UNDEFINED_BEHAVIOR_AMD 0x914C +#define GL_DEBUG_CATEGORY_PERFORMANCE_AMD 0x914D +#define GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD 0x914E +#define GL_DEBUG_CATEGORY_APPLICATION_AMD 0x914F +#define GL_DEBUG_CATEGORY_OTHER_AMD 0x9150 +#endif + +#ifndef GL_NV_vdpau_interop +#define GL_SURFACE_STATE_NV 0x86EB +#define GL_SURFACE_REGISTERED_NV 0x86FD +#define GL_SURFACE_MAPPED_NV 0x8700 +#define GL_WRITE_DISCARD_NV 0x88BE +#endif + +#ifndef GL_AMD_transform_feedback3_lines_triangles +#endif + + +/*************************************************************/ + +#include +#ifndef GL_VERSION_2_0 +/* GL type for program/shader text */ +typedef char GLchar; +#endif + +#ifndef GL_VERSION_1_5 +/* GL types for handling large vertex buffer objects */ +#if defined(__APPLE__) +typedef long GLintptr; +typedef long GLsizeiptr; +#else +typedef ptrdiff_t GLintptr; +typedef ptrdiff_t GLsizeiptr; +#endif +#endif + +#ifndef GL_ARB_vertex_buffer_object +/* GL types for handling large vertex buffer objects */ +#if defined(__APPLE__) +typedef long GLintptrARB; +typedef long GLsizeiptrARB; +#else +typedef ptrdiff_t GLintptrARB; +typedef ptrdiff_t GLsizeiptrARB; +#endif +#endif + +#ifndef GL_ARB_shader_objects +/* GL types for program/shader text and shader object handles */ +typedef char GLcharARB; +#if defined(__APPLE__) +typedef void *GLhandleARB; +#else +typedef unsigned int GLhandleARB; +#endif +#endif + +/* GL type for "half" precision (s10e5) float data in host memory */ +#ifndef GL_ARB_half_float_pixel +typedef unsigned short GLhalfARB; +#endif + +#ifndef GL_NV_half_float +typedef unsigned short GLhalfNV; +#endif + +#ifndef GLEXT_64_TYPES_DEFINED +/* This code block is duplicated in glxext.h, so must be protected */ +#define GLEXT_64_TYPES_DEFINED +/* Define int32_t, int64_t, and uint64_t types for UST/MSC */ +/* (as used in the GL_EXT_timer_query extension). */ +#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +#include +#elif defined(__sun__) || defined(__digital__) +#include +#if defined(__STDC__) +#if defined(__arch64__) || defined(_LP64) +typedef long int int64_t; +typedef unsigned long int uint64_t; +#else +typedef long long int int64_t; +typedef unsigned long long int uint64_t; +#endif /* __arch64__ */ +#endif /* __STDC__ */ +#elif defined( __VMS ) || defined(__sgi) +#include +#elif defined(__SCO__) || defined(__USLC__) +#include +#elif defined(__UNIXOS2__) || defined(__SOL64__) +typedef long int int32_t; +typedef long long int int64_t; +typedef unsigned long long int uint64_t; +#elif defined(_WIN32) && defined(__GNUC__) +#include +#elif defined(_WIN32) +typedef __int32 int32_t; +typedef __int64 int64_t; +typedef unsigned __int64 uint64_t; +#else +/* Fallback if nothing above works */ +#include +#endif +#endif + +#ifndef GL_EXT_timer_query +typedef int64_t GLint64EXT; +typedef uint64_t GLuint64EXT; +#endif + +#ifndef GL_ARB_sync +typedef int64_t GLint64; +typedef uint64_t GLuint64; +typedef struct __GLsync *GLsync; +#endif + +#ifndef GL_ARB_cl_event +/* These incomplete types let us declare types compatible with OpenCL's cl_context and cl_event */ +struct _cl_context; +struct _cl_event; +#endif + +#ifndef GL_ARB_debug_output +typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,GLvoid *userParam); +#endif + +#ifndef GL_AMD_debug_output +typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLsizei length,const GLchar *message,GLvoid *userParam); +#endif + +#ifndef GL_NV_vdpau_interop +typedef GLintptr GLvdpauSurfaceNV; +#endif + +#ifndef GL_VERSION_1_2 +#define GL_VERSION_1_2 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); +GLAPI void APIENTRY glBlendEquation (GLenum mode); +GLAPI void APIENTRY glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices); +GLAPI void APIENTRY glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLENDCOLORPROC) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices); +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif + +#ifndef GL_VERSION_1_2_DEPRECATED +#define GL_VERSION_1_2_DEPRECATED 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTable (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table); +GLAPI void APIENTRY glColorTableParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glColorTableParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyColorTable (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glGetColorTable (GLenum target, GLenum format, GLenum type, GLvoid *table); +GLAPI void APIENTRY glGetColorTableParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetColorTableParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glColorSubTable (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data); +GLAPI void APIENTRY glCopyColorSubTable (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glConvolutionFilter1D (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image); +GLAPI void APIENTRY glConvolutionFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image); +GLAPI void APIENTRY glConvolutionParameterf (GLenum target, GLenum pname, GLfloat params); +GLAPI void APIENTRY glConvolutionParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glConvolutionParameteri (GLenum target, GLenum pname, GLint params); +GLAPI void APIENTRY glConvolutionParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyConvolutionFilter1D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyConvolutionFilter2D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetConvolutionFilter (GLenum target, GLenum format, GLenum type, GLvoid *image); +GLAPI void APIENTRY glGetConvolutionParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetConvolutionParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSeparableFilter (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span); +GLAPI void APIENTRY glSeparableFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column); +GLAPI void APIENTRY glGetHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); +GLAPI void APIENTRY glGetHistogramParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetHistogramParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); +GLAPI void APIENTRY glGetMinmaxParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMinmaxParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glHistogram (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glMinmax (GLenum target, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glResetHistogram (GLenum target); +GLAPI void APIENTRY glResetMinmax (GLenum target); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, GLvoid *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) (GLenum target, GLenum pname, GLint params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, GLvoid *image); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span); +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLHISTOGRAMPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLMINMAXPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) (GLenum target); +typedef void (APIENTRYP PFNGLRESETMINMAXPROC) (GLenum target); +#endif + +#ifndef GL_VERSION_1_3 +#define GL_VERSION_1_3 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveTexture (GLenum texture); +GLAPI void APIENTRY glSampleCoverage (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glCompressedTexImage1D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glCompressedTexSubImage1D (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glGetCompressedTexImage (GLenum target, GLint level, GLvoid *img); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, GLvoid *img); +#endif + +#ifndef GL_VERSION_1_3_DEPRECATED +#define GL_VERSION_1_3_DEPRECATED 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClientActiveTexture (GLenum texture); +GLAPI void APIENTRY glMultiTexCoord1d (GLenum target, GLdouble s); +GLAPI void APIENTRY glMultiTexCoord1dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord1f (GLenum target, GLfloat s); +GLAPI void APIENTRY glMultiTexCoord1fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord1i (GLenum target, GLint s); +GLAPI void APIENTRY glMultiTexCoord1iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord1s (GLenum target, GLshort s); +GLAPI void APIENTRY glMultiTexCoord1sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord2d (GLenum target, GLdouble s, GLdouble t); +GLAPI void APIENTRY glMultiTexCoord2dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord2f (GLenum target, GLfloat s, GLfloat t); +GLAPI void APIENTRY glMultiTexCoord2fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord2i (GLenum target, GLint s, GLint t); +GLAPI void APIENTRY glMultiTexCoord2iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord2s (GLenum target, GLshort s, GLshort t); +GLAPI void APIENTRY glMultiTexCoord2sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord3d (GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void APIENTRY glMultiTexCoord3dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord3f (GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void APIENTRY glMultiTexCoord3fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord3i (GLenum target, GLint s, GLint t, GLint r); +GLAPI void APIENTRY glMultiTexCoord3iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord3s (GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void APIENTRY glMultiTexCoord3sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord4d (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void APIENTRY glMultiTexCoord4dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord4f (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void APIENTRY glMultiTexCoord4fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord4i (GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void APIENTRY glMultiTexCoord4iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord4s (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void APIENTRY glMultiTexCoord4sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glLoadTransposeMatrixf (const GLfloat *m); +GLAPI void APIENTRY glLoadTransposeMatrixd (const GLdouble *m); +GLAPI void APIENTRY glMultTransposeMatrixf (const GLfloat *m); +GLAPI void APIENTRY glMultTransposeMatrixd (const GLdouble *m); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) (const GLdouble *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) (const GLdouble *m); +#endif + +#ifndef GL_VERSION_1_4 +#define GL_VERSION_1_4 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GLAPI void APIENTRY glMultiDrawArrays (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawElements (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount); +GLAPI void APIENTRY glPointParameterf (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfv (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glPointParameteri (GLenum pname, GLint param); +GLAPI void APIENTRY glPointParameteriv (GLenum pname, const GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC) (GLenum pname, const GLint *params); +#endif + +#ifndef GL_VERSION_1_4_DEPRECATED +#define GL_VERSION_1_4_DEPRECATED 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogCoordf (GLfloat coord); +GLAPI void APIENTRY glFogCoordfv (const GLfloat *coord); +GLAPI void APIENTRY glFogCoordd (GLdouble coord); +GLAPI void APIENTRY glFogCoorddv (const GLdouble *coord); +GLAPI void APIENTRY glFogCoordPointer (GLenum type, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glSecondaryColor3b (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void APIENTRY glSecondaryColor3bv (const GLbyte *v); +GLAPI void APIENTRY glSecondaryColor3d (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void APIENTRY glSecondaryColor3dv (const GLdouble *v); +GLAPI void APIENTRY glSecondaryColor3f (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void APIENTRY glSecondaryColor3fv (const GLfloat *v); +GLAPI void APIENTRY glSecondaryColor3i (GLint red, GLint green, GLint blue); +GLAPI void APIENTRY glSecondaryColor3iv (const GLint *v); +GLAPI void APIENTRY glSecondaryColor3s (GLshort red, GLshort green, GLshort blue); +GLAPI void APIENTRY glSecondaryColor3sv (const GLshort *v); +GLAPI void APIENTRY glSecondaryColor3ub (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void APIENTRY glSecondaryColor3ubv (const GLubyte *v); +GLAPI void APIENTRY glSecondaryColor3ui (GLuint red, GLuint green, GLuint blue); +GLAPI void APIENTRY glSecondaryColor3uiv (const GLuint *v); +GLAPI void APIENTRY glSecondaryColor3us (GLushort red, GLushort green, GLushort blue); +GLAPI void APIENTRY glSecondaryColor3usv (const GLushort *v); +GLAPI void APIENTRY glSecondaryColorPointer (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glWindowPos2d (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dv (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2f (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fv (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2i (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2iv (const GLint *v); +GLAPI void APIENTRY glWindowPos2s (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2sv (const GLshort *v); +GLAPI void APIENTRY glWindowPos3d (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dv (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3f (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fv (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3i (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3iv (const GLint *v); +GLAPI void APIENTRY glWindowPos3s (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3sv (const GLshort *v); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLFOGCOORDFPROC) (GLfloat coord); +typedef void (APIENTRYP PFNGLFOGCOORDFVPROC) (const GLfloat *coord); +typedef void (APIENTRYP PFNGLFOGCOORDDPROC) (GLdouble coord); +typedef void (APIENTRYP PFNGLFOGCOORDDVPROC) (const GLdouble *coord); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERPROC) (GLenum type, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IPROC) (GLint red, GLint green, GLint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVPROC) (const GLubyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVPROC) (const GLuint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVPROC) (const GLushort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLWINDOWPOS2DPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVPROC) (const GLshort *v); +#endif + +#ifndef GL_VERSION_1_5 +#define GL_VERSION_1_5 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueries (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteQueries (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsQuery (GLuint id); +GLAPI void APIENTRY glBeginQuery (GLenum target, GLuint id); +GLAPI void APIENTRY glEndQuery (GLenum target); +GLAPI void APIENTRY glGetQueryiv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectiv (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params); +GLAPI void APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GLAPI void APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers); +GLAPI void APIENTRY glGenBuffers (GLsizei n, GLuint *buffers); +GLAPI GLboolean APIENTRY glIsBuffer (GLuint buffer); +GLAPI void APIENTRY glBufferData (GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage); +GLAPI void APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data); +GLAPI void APIENTRY glGetBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, GLvoid *data); +GLAPI GLvoid* APIENTRY glMapBuffer (GLenum target, GLenum access); +GLAPI GLboolean APIENTRY glUnmapBuffer (GLenum target); +GLAPI void APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetBufferPointerv (GLenum target, GLenum pname, GLvoid* *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGENQUERIESPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEQUERIESPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISQUERYPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINQUERYPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC) (GLuint id, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); +typedef void (APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage); +typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data); +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLvoid *data); +typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERPROC) (GLenum target, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC) (GLenum target, GLenum pname, GLvoid* *params); +#endif + +#ifndef GL_VERSION_2_0 +#define GL_VERSION_2_0 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glDrawBuffers (GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI void APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GLAPI void APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GLAPI void APIENTRY glAttachShader (GLuint program, GLuint shader); +GLAPI void APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name); +GLAPI void APIENTRY glCompileShader (GLuint shader); +GLAPI GLuint APIENTRY glCreateProgram (void); +GLAPI GLuint APIENTRY glCreateShader (GLenum type); +GLAPI void APIENTRY glDeleteProgram (GLuint program); +GLAPI void APIENTRY glDeleteShader (GLuint shader); +GLAPI void APIENTRY glDetachShader (GLuint program, GLuint shader); +GLAPI void APIENTRY glDisableVertexAttribArray (GLuint index); +GLAPI void APIENTRY glEnableVertexAttribArray (GLuint index); +GLAPI void APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *obj); +GLAPI GLint APIENTRY glGetAttribLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GLAPI GLint APIENTRY glGetUniformLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params); +GLAPI void APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params); +GLAPI void APIENTRY glGetVertexAttribdv (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, GLvoid* *pointer); +GLAPI GLboolean APIENTRY glIsProgram (GLuint program); +GLAPI GLboolean APIENTRY glIsShader (GLuint shader); +GLAPI void APIENTRY glLinkProgram (GLuint program); +GLAPI void APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar* *string, const GLint *length); +GLAPI void APIENTRY glUseProgram (GLuint program); +GLAPI void APIENTRY glUniform1f (GLint location, GLfloat v0); +GLAPI void APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glUniform1i (GLint location, GLint v0); +GLAPI void APIENTRY glUniform2i (GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glValidateProgram (GLuint program); +GLAPI void APIENTRY glVertexAttrib1d (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1f (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1s (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2d (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2s (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3d (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3s (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4Nbv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4Niv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4Nsv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4Nub (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4Nubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4Nuiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4Nusv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttrib4bv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4s (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4usv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC) (GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); +typedef void (APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); +typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *obj); +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); +typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, GLvoid* *pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (APIENTRYP PFNGLISSHADERPROC) (GLuint shader); +typedef void (APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar* *string, const GLint *length); +typedef void (APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer); +#endif + +#ifndef GL_VERSION_2_1 +#define GL_VERSION_2_1 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif + +#ifndef GL_VERSION_3_0 +#define GL_VERSION_3_0 1 +/* OpenGL 3.0 also reuses entry points from these extensions: */ +/* ARB_framebuffer_object */ +/* ARB_map_buffer_range */ +/* ARB_vertex_array_object */ +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorMaski (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GLAPI void APIENTRY glGetBooleani_v (GLenum target, GLuint index, GLboolean *data); +GLAPI void APIENTRY glGetIntegeri_v (GLenum target, GLuint index, GLint *data); +GLAPI void APIENTRY glEnablei (GLenum target, GLuint index); +GLAPI void APIENTRY glDisablei (GLenum target, GLuint index); +GLAPI GLboolean APIENTRY glIsEnabledi (GLenum target, GLuint index); +GLAPI void APIENTRY glBeginTransformFeedback (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedback (void); +GLAPI void APIENTRY glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferBase (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryings (GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode); +GLAPI void APIENTRY glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glClampColor (GLenum target, GLenum clamp); +GLAPI void APIENTRY glBeginConditionalRender (GLuint id, GLenum mode); +GLAPI void APIENTRY glEndConditionalRender (void); +GLAPI void APIENTRY glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params); +GLAPI void APIENTRY glVertexAttribI1i (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2i (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3i (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1ui (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2ui (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3ui (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glGetUniformuiv (GLuint program, GLint location, GLuint *params); +GLAPI void APIENTRY glBindFragDataLocation (GLuint program, GLuint color, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glUniform1ui (GLint location, GLuint v0); +GLAPI void APIENTRY glUniform2ui (GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glUniform1uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform2uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform3uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform4uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glTexParameterIiv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTexParameterIuiv (GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTexParameterIiv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTexParameterIuiv (GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glClearBufferiv (GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI void APIENTRY glClearBufferuiv (GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI void APIENTRY glClearBufferfv (GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI void APIENTRY glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI const GLubyte * APIENTRY glGetStringi (GLenum name, GLuint index); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOLORMASKIPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC) (GLenum target, GLuint index, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC) (GLenum target, GLuint index, GLint *data); +typedef void (APIENTRYP PFNGLENABLEIPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEIPROC) (GLenum target, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC) (GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLCLAMPCOLORPROC) (GLenum target, GLenum clamp); +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC) (GLuint id, GLenum mode); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC) (void); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC) (GLuint index, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC) (GLuint program, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORM1UIPROC) (GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLUNIFORM2UIPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLUNIFORM3UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLUNIFORM4UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC) (GLenum buffer, GLint drawbuffer, const GLint *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC) (GLenum buffer, GLint drawbuffer, const GLuint *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC) (GLenum buffer, GLint drawbuffer, const GLfloat *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC) (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGIPROC) (GLenum name, GLuint index); +#endif + +#ifndef GL_VERSION_3_1 +#define GL_VERSION_3_1 1 +/* OpenGL 3.1 also reuses entry points from these extensions: */ +/* ARB_copy_buffer */ +/* ARB_uniform_buffer_object */ +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount); +GLAPI void APIENTRY glTexBuffer (GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glPrimitiveRestartIndex (GLuint index); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount); +typedef void (APIENTRYP PFNGLTEXBUFFERPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC) (GLuint index); +#endif + +#ifndef GL_VERSION_3_2 +#define GL_VERSION_3_2 1 +/* OpenGL 3.2 also reuses entry points from these extensions: */ +/* ARB_draw_elements_base_vertex */ +/* ARB_provoking_vertex */ +/* ARB_sync */ +/* ARB_texture_multisample */ +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data); +GLAPI void APIENTRY glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif + +#ifndef GL_VERSION_3_3 +#define GL_VERSION_3_3 1 +/* OpenGL 3.3 also reuses entry points from these extensions: */ +/* ARB_blend_func_extended */ +/* ARB_sampler_objects */ +/* ARB_explicit_attrib_location, but it has none */ +/* ARB_occlusion_query2 (no entry points) */ +/* ARB_shader_bit_encoding (no entry points) */ +/* ARB_texture_rgb10_a2ui (no entry points) */ +/* ARB_texture_swizzle (no entry points) */ +/* ARB_timer_query */ +/* ARB_vertex_type_2_10_10_10_rev */ +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribDivisor (GLuint index, GLuint divisor); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC) (GLuint index, GLuint divisor); +#endif + +#ifndef GL_VERSION_4_0 +#define GL_VERSION_4_0 1 +/* OpenGL 4.0 also reuses entry points from these extensions: */ +/* ARB_texture_query_lod (no entry points) */ +/* ARB_draw_indirect */ +/* ARB_gpu_shader5 (no entry points) */ +/* ARB_gpu_shader_fp64 */ +/* ARB_shader_subroutine */ +/* ARB_tessellation_shader */ +/* ARB_texture_buffer_object_rgb32 (no entry points) */ +/* ARB_texture_cube_map_array (no entry points) */ +/* ARB_texture_gather (no entry points) */ +/* ARB_transform_feedback2 */ +/* ARB_transform_feedback3 */ +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMinSampleShading (GLclampf value); +GLAPI void APIENTRY glBlendEquationi (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparatei (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glBlendFunci (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparatei (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLMINSAMPLESHADINGPROC) (GLclampf value); +typedef void (APIENTRYP PFNGLBLENDEQUATIONIPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLBLENDFUNCIPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#endif + +#ifndef GL_VERSION_4_1 +#define GL_VERSION_4_1 1 +/* OpenGL 4.1 also reuses entry points from these extensions: */ +/* ARB_ES2_compatibility */ +/* ARB_get_program_binary */ +/* ARB_separate_shader_objects */ +/* ARB_shader_precision (no entry points) */ +/* ARB_vertex_attrib_64bit */ +/* ARB_viewport_array */ +#endif + +#ifndef GL_ARB_multitexture +#define GL_ARB_multitexture 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveTextureARB (GLenum texture); +GLAPI void APIENTRY glClientActiveTextureARB (GLenum texture); +GLAPI void APIENTRY glMultiTexCoord1dARB (GLenum target, GLdouble s); +GLAPI void APIENTRY glMultiTexCoord1dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord1fARB (GLenum target, GLfloat s); +GLAPI void APIENTRY glMultiTexCoord1fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord1iARB (GLenum target, GLint s); +GLAPI void APIENTRY glMultiTexCoord1ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord1sARB (GLenum target, GLshort s); +GLAPI void APIENTRY glMultiTexCoord1svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord2dARB (GLenum target, GLdouble s, GLdouble t); +GLAPI void APIENTRY glMultiTexCoord2dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord2fARB (GLenum target, GLfloat s, GLfloat t); +GLAPI void APIENTRY glMultiTexCoord2fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord2iARB (GLenum target, GLint s, GLint t); +GLAPI void APIENTRY glMultiTexCoord2ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord2sARB (GLenum target, GLshort s, GLshort t); +GLAPI void APIENTRY glMultiTexCoord2svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord3dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void APIENTRY glMultiTexCoord3dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord3fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void APIENTRY glMultiTexCoord3fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord3iARB (GLenum target, GLint s, GLint t, GLint r); +GLAPI void APIENTRY glMultiTexCoord3ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord3sARB (GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void APIENTRY glMultiTexCoord3svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord4dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void APIENTRY glMultiTexCoord4dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord4fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void APIENTRY glMultiTexCoord4fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord4iARB (GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void APIENTRY glMultiTexCoord4ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord4sARB (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void APIENTRY glMultiTexCoord4svARB (GLenum target, const GLshort *v); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); +#endif + +#ifndef GL_ARB_transpose_matrix +#define GL_ARB_transpose_matrix 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLoadTransposeMatrixfARB (const GLfloat *m); +GLAPI void APIENTRY glLoadTransposeMatrixdARB (const GLdouble *m); +GLAPI void APIENTRY glMultTransposeMatrixfARB (const GLfloat *m); +GLAPI void APIENTRY glMultTransposeMatrixdARB (const GLdouble *m); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); +#endif + +#ifndef GL_ARB_multisample +#define GL_ARB_multisample 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleCoverageARB (GLclampf value, GLboolean invert); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEARBPROC) (GLclampf value, GLboolean invert); +#endif + +#ifndef GL_ARB_texture_env_add +#define GL_ARB_texture_env_add 1 +#endif + +#ifndef GL_ARB_texture_cube_map +#define GL_ARB_texture_cube_map 1 +#endif + +#ifndef GL_ARB_texture_compression +#define GL_ARB_texture_compression 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCompressedTexImage3DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glCompressedTexImage2DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glCompressedTexImage1DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glCompressedTexSubImage3DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glCompressedTexSubImage2DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glCompressedTexSubImage1DARB (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data); +GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum target, GLint level, GLvoid *img); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint level, GLvoid *img); +#endif + +#ifndef GL_ARB_texture_border_clamp +#define GL_ARB_texture_border_clamp 1 +#endif + +#ifndef GL_ARB_point_parameters +#define GL_ARB_point_parameters 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfARB (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvARB (GLenum pname, const GLfloat *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPOINTPARAMETERFARBPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVARBPROC) (GLenum pname, const GLfloat *params); +#endif + +#ifndef GL_ARB_vertex_blend +#define GL_ARB_vertex_blend 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWeightbvARB (GLint size, const GLbyte *weights); +GLAPI void APIENTRY glWeightsvARB (GLint size, const GLshort *weights); +GLAPI void APIENTRY glWeightivARB (GLint size, const GLint *weights); +GLAPI void APIENTRY glWeightfvARB (GLint size, const GLfloat *weights); +GLAPI void APIENTRY glWeightdvARB (GLint size, const GLdouble *weights); +GLAPI void APIENTRY glWeightubvARB (GLint size, const GLubyte *weights); +GLAPI void APIENTRY glWeightusvARB (GLint size, const GLushort *weights); +GLAPI void APIENTRY glWeightuivARB (GLint size, const GLuint *weights); +GLAPI void APIENTRY glWeightPointerARB (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glVertexBlendARB (GLint count); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLWEIGHTBVARBPROC) (GLint size, const GLbyte *weights); +typedef void (APIENTRYP PFNGLWEIGHTSVARBPROC) (GLint size, const GLshort *weights); +typedef void (APIENTRYP PFNGLWEIGHTIVARBPROC) (GLint size, const GLint *weights); +typedef void (APIENTRYP PFNGLWEIGHTFVARBPROC) (GLint size, const GLfloat *weights); +typedef void (APIENTRYP PFNGLWEIGHTDVARBPROC) (GLint size, const GLdouble *weights); +typedef void (APIENTRYP PFNGLWEIGHTUBVARBPROC) (GLint size, const GLubyte *weights); +typedef void (APIENTRYP PFNGLWEIGHTUSVARBPROC) (GLint size, const GLushort *weights); +typedef void (APIENTRYP PFNGLWEIGHTUIVARBPROC) (GLint size, const GLuint *weights); +typedef void (APIENTRYP PFNGLWEIGHTPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLVERTEXBLENDARBPROC) (GLint count); +#endif + +#ifndef GL_ARB_matrix_palette +#define GL_ARB_matrix_palette 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCurrentPaletteMatrixARB (GLint index); +GLAPI void APIENTRY glMatrixIndexubvARB (GLint size, const GLubyte *indices); +GLAPI void APIENTRY glMatrixIndexusvARB (GLint size, const GLushort *indices); +GLAPI void APIENTRY glMatrixIndexuivARB (GLint size, const GLuint *indices); +GLAPI void APIENTRY glMatrixIndexPointerARB (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCURRENTPALETTEMATRIXARBPROC) (GLint index); +typedef void (APIENTRYP PFNGLMATRIXINDEXUBVARBPROC) (GLint size, const GLubyte *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXUSVARBPROC) (GLint size, const GLushort *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXUIVARBPROC) (GLint size, const GLuint *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +#endif + +#ifndef GL_ARB_texture_env_combine +#define GL_ARB_texture_env_combine 1 +#endif + +#ifndef GL_ARB_texture_env_crossbar +#define GL_ARB_texture_env_crossbar 1 +#endif + +#ifndef GL_ARB_texture_env_dot3 +#define GL_ARB_texture_env_dot3 1 +#endif + +#ifndef GL_ARB_texture_mirrored_repeat +#define GL_ARB_texture_mirrored_repeat 1 +#endif + +#ifndef GL_ARB_depth_texture +#define GL_ARB_depth_texture 1 +#endif + +#ifndef GL_ARB_shadow +#define GL_ARB_shadow 1 +#endif + +#ifndef GL_ARB_shadow_ambient +#define GL_ARB_shadow_ambient 1 +#endif + +#ifndef GL_ARB_window_pos +#define GL_ARB_window_pos 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowPos2dARB (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dvARB (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2fARB (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fvARB (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2iARB (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2ivARB (const GLint *v); +GLAPI void APIENTRY glWindowPos2sARB (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2svARB (const GLshort *v); +GLAPI void APIENTRY glWindowPos3dARB (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dvARB (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3fARB (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fvARB (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3iARB (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3ivARB (const GLint *v); +GLAPI void APIENTRY glWindowPos3sARB (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3svARB (const GLshort *v); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLWINDOWPOS2DARBPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVARBPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FARBPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVARBPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IARBPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVARBPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SARBPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVARBPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DARBPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVARBPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FARBPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVARBPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IARBPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVARBPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SARBPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVARBPROC) (const GLshort *v); +#endif + +#ifndef GL_ARB_vertex_program +#define GL_ARB_vertex_program 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttrib1dARB (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1fARB (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1sARB (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2dARB (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2fARB (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2sARB (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3sARB (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4NbvARB (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4NivARB (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4NsvARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4NubARB (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4NubvARB (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4NuivARB (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4NusvARB (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttrib4bvARB (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4ivARB (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4sARB (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubvARB (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4uivARB (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4usvARB (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribPointerARB (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glEnableVertexAttribArrayARB (GLuint index); +GLAPI void APIENTRY glDisableVertexAttribArrayARB (GLuint index); +GLAPI void APIENTRY glProgramStringARB (GLenum target, GLenum format, GLsizei len, const GLvoid *string); +GLAPI void APIENTRY glBindProgramARB (GLenum target, GLuint program); +GLAPI void APIENTRY glDeleteProgramsARB (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glGenProgramsARB (GLsizei n, GLuint *programs); +GLAPI void APIENTRY glProgramEnvParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramEnvParameter4dvARB (GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glProgramEnvParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramEnvParameter4fvARB (GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glProgramLocalParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramLocalParameter4dvARB (GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glProgramLocalParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramLocalParameter4fvARB (GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glGetProgramEnvParameterdvARB (GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetProgramEnvParameterfvARB (GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetProgramLocalParameterdvARB (GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetProgramLocalParameterfvARB (GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetProgramivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramStringARB (GLenum target, GLenum pname, GLvoid *string); +GLAPI void APIENTRY glGetVertexAttribdvARB (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfvARB (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribivARB (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointervARB (GLuint index, GLenum pname, GLvoid* *pointer); +GLAPI GLboolean APIENTRY glIsProgramARB (GLuint program); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DARBPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FARBPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SARBPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DARBPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FARBPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SARBPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVARBPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVARBPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBARBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVARBPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVARBPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVARBPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVARBPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVARBPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVARBPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVARBPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVARBPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERARBPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (APIENTRYP PFNGLPROGRAMSTRINGARBPROC) (GLenum target, GLenum format, GLsizei len, const GLvoid *string); +typedef void (APIENTRYP PFNGLBINDPROGRAMARBPROC) (GLenum target, GLuint program); +typedef void (APIENTRYP PFNGLDELETEPROGRAMSARBPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLGENPROGRAMSARBPROC) (GLsizei n, GLuint *programs); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGARBPROC) (GLenum target, GLenum pname, GLvoid *string); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVARBPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVARBPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVARBPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVARBPROC) (GLuint index, GLenum pname, GLvoid* *pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMARBPROC) (GLuint program); +#endif + +#ifndef GL_ARB_fragment_program +#define GL_ARB_fragment_program 1 +/* All ARB_fragment_program entry points are shared with ARB_vertex_program. */ +#endif + +#ifndef GL_ARB_vertex_buffer_object +#define GL_ARB_vertex_buffer_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindBufferARB (GLenum target, GLuint buffer); +GLAPI void APIENTRY glDeleteBuffersARB (GLsizei n, const GLuint *buffers); +GLAPI void APIENTRY glGenBuffersARB (GLsizei n, GLuint *buffers); +GLAPI GLboolean APIENTRY glIsBufferARB (GLuint buffer); +GLAPI void APIENTRY glBufferDataARB (GLenum target, GLsizeiptrARB size, const GLvoid *data, GLenum usage); +GLAPI void APIENTRY glBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid *data); +GLAPI void APIENTRY glGetBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, GLvoid *data); +GLAPI GLvoid* APIENTRY glMapBufferARB (GLenum target, GLenum access); +GLAPI GLboolean APIENTRY glUnmapBufferARB (GLenum target); +GLAPI void APIENTRY glGetBufferParameterivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetBufferPointervARB (GLenum target, GLenum pname, GLvoid* *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBINDBUFFERARBPROC) (GLenum target, GLuint buffer); +typedef void (APIENTRYP PFNGLDELETEBUFFERSARBPROC) (GLsizei n, const GLuint *buffers); +typedef void (APIENTRYP PFNGLGENBUFFERSARBPROC) (GLsizei n, GLuint *buffers); +typedef GLboolean (APIENTRYP PFNGLISBUFFERARBPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLBUFFERDATAARBPROC) (GLenum target, GLsizeiptrARB size, const GLvoid *data, GLenum usage); +typedef void (APIENTRYP PFNGLBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid *data); +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, GLvoid *data); +typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERARBPROC) (GLenum target, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERARBPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVARBPROC) (GLenum target, GLenum pname, GLvoid* *params); +#endif + +#ifndef GL_ARB_occlusion_query +#define GL_ARB_occlusion_query 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueriesARB (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteQueriesARB (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsQueryARB (GLuint id); +GLAPI void APIENTRY glBeginQueryARB (GLenum target, GLuint id); +GLAPI void APIENTRY glEndQueryARB (GLenum target); +GLAPI void APIENTRY glGetQueryivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectivARB (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectuivARB (GLuint id, GLenum pname, GLuint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGENQUERIESARBPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEQUERIESARBPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISQUERYARBPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINQUERYARBPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYARBPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVARBPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVARBPROC) (GLuint id, GLenum pname, GLuint *params); +#endif + +#ifndef GL_ARB_shader_objects +#define GL_ARB_shader_objects 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeleteObjectARB (GLhandleARB obj); +GLAPI GLhandleARB APIENTRY glGetHandleARB (GLenum pname); +GLAPI void APIENTRY glDetachObjectARB (GLhandleARB containerObj, GLhandleARB attachedObj); +GLAPI GLhandleARB APIENTRY glCreateShaderObjectARB (GLenum shaderType); +GLAPI void APIENTRY glShaderSourceARB (GLhandleARB shaderObj, GLsizei count, const GLcharARB* *string, const GLint *length); +GLAPI void APIENTRY glCompileShaderARB (GLhandleARB shaderObj); +GLAPI GLhandleARB APIENTRY glCreateProgramObjectARB (void); +GLAPI void APIENTRY glAttachObjectARB (GLhandleARB containerObj, GLhandleARB obj); +GLAPI void APIENTRY glLinkProgramARB (GLhandleARB programObj); +GLAPI void APIENTRY glUseProgramObjectARB (GLhandleARB programObj); +GLAPI void APIENTRY glValidateProgramARB (GLhandleARB programObj); +GLAPI void APIENTRY glUniform1fARB (GLint location, GLfloat v0); +GLAPI void APIENTRY glUniform2fARB (GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glUniform3fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glUniform4fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glUniform1iARB (GLint location, GLint v0); +GLAPI void APIENTRY glUniform2iARB (GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glUniform3iARB (GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glUniform4iARB (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glUniform1fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform2fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform3fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform4fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform1ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform2ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform3ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform4ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniformMatrix2fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glGetObjectParameterfvARB (GLhandleARB obj, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetObjectParameterivARB (GLhandleARB obj, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetInfoLogARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); +GLAPI void APIENTRY glGetAttachedObjectsARB (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); +GLAPI GLint APIENTRY glGetUniformLocationARB (GLhandleARB programObj, const GLcharARB *name); +GLAPI void APIENTRY glGetActiveUniformARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +GLAPI void APIENTRY glGetUniformfvARB (GLhandleARB programObj, GLint location, GLfloat *params); +GLAPI void APIENTRY glGetUniformivARB (GLhandleARB programObj, GLint location, GLint *params); +GLAPI void APIENTRY glGetShaderSourceARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDELETEOBJECTARBPROC) (GLhandleARB obj); +typedef GLhandleARB (APIENTRYP PFNGLGETHANDLEARBPROC) (GLenum pname); +typedef void (APIENTRYP PFNGLDETACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB attachedObj); +typedef GLhandleARB (APIENTRYP PFNGLCREATESHADEROBJECTARBPROC) (GLenum shaderType); +typedef void (APIENTRYP PFNGLSHADERSOURCEARBPROC) (GLhandleARB shaderObj, GLsizei count, const GLcharARB* *string, const GLint *length); +typedef void (APIENTRYP PFNGLCOMPILESHADERARBPROC) (GLhandleARB shaderObj); +typedef GLhandleARB (APIENTRYP PFNGLCREATEPROGRAMOBJECTARBPROC) (void); +typedef void (APIENTRYP PFNGLATTACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB obj); +typedef void (APIENTRYP PFNGLLINKPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLUSEPROGRAMOBJECTARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLUNIFORM1FARBPROC) (GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLUNIFORM2FARBPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLUNIFORM3FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLUNIFORM4FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLUNIFORM1IARBPROC) (GLint location, GLint v0); +typedef void (APIENTRYP PFNGLUNIFORM2IARBPROC) (GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLUNIFORM3IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLUNIFORM4IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLUNIFORM1FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM2FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM3FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM4FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM1IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM2IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM3IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM4IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERFVARBPROC) (GLhandleARB obj, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVARBPROC) (GLhandleARB obj, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETINFOLOGARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); +typedef void (APIENTRYP PFNGLGETATTACHEDOBJECTSARBPROC) (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +typedef void (APIENTRYP PFNGLGETUNIFORMFVARBPROC) (GLhandleARB programObj, GLint location, GLfloat *params); +typedef void (APIENTRYP PFNGLGETUNIFORMIVARBPROC) (GLhandleARB programObj, GLint location, GLint *params); +typedef void (APIENTRYP PFNGLGETSHADERSOURCEARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); +#endif + +#ifndef GL_ARB_vertex_shader +#define GL_ARB_vertex_shader 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindAttribLocationARB (GLhandleARB programObj, GLuint index, const GLcharARB *name); +GLAPI void APIENTRY glGetActiveAttribARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +GLAPI GLint APIENTRY glGetAttribLocationARB (GLhandleARB programObj, const GLcharARB *name); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONARBPROC) (GLhandleARB programObj, GLuint index, const GLcharARB *name); +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); +#endif + +#ifndef GL_ARB_fragment_shader +#define GL_ARB_fragment_shader 1 +#endif + +#ifndef GL_ARB_shading_language_100 +#define GL_ARB_shading_language_100 1 +#endif + +#ifndef GL_ARB_texture_non_power_of_two +#define GL_ARB_texture_non_power_of_two 1 +#endif + +#ifndef GL_ARB_point_sprite +#define GL_ARB_point_sprite 1 +#endif + +#ifndef GL_ARB_fragment_program_shadow +#define GL_ARB_fragment_program_shadow 1 +#endif + +#ifndef GL_ARB_draw_buffers +#define GL_ARB_draw_buffers 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawBuffersARB (GLsizei n, const GLenum *bufs); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDRAWBUFFERSARBPROC) (GLsizei n, const GLenum *bufs); +#endif + +#ifndef GL_ARB_texture_rectangle +#define GL_ARB_texture_rectangle 1 +#endif + +#ifndef GL_ARB_color_buffer_float +#define GL_ARB_color_buffer_float 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClampColorARB (GLenum target, GLenum clamp); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCLAMPCOLORARBPROC) (GLenum target, GLenum clamp); +#endif + +#ifndef GL_ARB_half_float_pixel +#define GL_ARB_half_float_pixel 1 +#endif + +#ifndef GL_ARB_texture_float +#define GL_ARB_texture_float 1 +#endif + +#ifndef GL_ARB_pixel_buffer_object +#define GL_ARB_pixel_buffer_object 1 +#endif + +#ifndef GL_ARB_depth_buffer_float +#define GL_ARB_depth_buffer_float 1 +#endif + +#ifndef GL_ARB_draw_instanced +#define GL_ARB_draw_instanced 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedARB (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstancedARB (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDARBPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDARBPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount); +#endif + +#ifndef GL_ARB_framebuffer_object +#define GL_ARB_framebuffer_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GLAPI void APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers); +GLAPI void APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI GLboolean APIENTRY glIsFramebuffer (GLuint framebuffer); +GLAPI void APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GLAPI void APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); +GLAPI void APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers); +GLAPI GLenum APIENTRY glCheckFramebufferStatus (GLenum target); +GLAPI void APIENTRY glFramebufferTexture1D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture3D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateMipmap (GLenum target); +GLAPI void APIENTRY glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI void APIENTRY glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFERPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#endif + +#ifndef GL_ARB_framebuffer_sRGB +#define GL_ARB_framebuffer_sRGB 1 +#endif + +#ifndef GL_ARB_geometry_shader4 +#define GL_ARB_geometry_shader4 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramParameteriARB (GLuint program, GLenum pname, GLint value); +GLAPI void APIENTRY glFramebufferTextureARB (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTextureLayerARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glFramebufferTextureFaceARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIARBPROC) (GLuint program, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif + +#ifndef GL_ARB_half_float_vertex +#define GL_ARB_half_float_vertex 1 +#endif + +#ifndef GL_ARB_instanced_arrays +#define GL_ARB_instanced_arrays 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribDivisorARB (GLuint index, GLuint divisor); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORARBPROC) (GLuint index, GLuint divisor); +#endif + +#ifndef GL_ARB_map_buffer_range +#define GL_ARB_map_buffer_range 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLvoid* APIENTRY glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI void APIENTRY glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +#endif + +#ifndef GL_ARB_texture_buffer_object +#define GL_ARB_texture_buffer_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBufferARB (GLenum target, GLenum internalformat, GLuint buffer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXBUFFERARBPROC) (GLenum target, GLenum internalformat, GLuint buffer); +#endif + +#ifndef GL_ARB_texture_compression_rgtc +#define GL_ARB_texture_compression_rgtc 1 +#endif + +#ifndef GL_ARB_texture_rg +#define GL_ARB_texture_rg 1 +#endif + +#ifndef GL_ARB_vertex_array_object +#define GL_ARB_vertex_array_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindVertexArray (GLuint array); +GLAPI void APIENTRY glDeleteVertexArrays (GLsizei n, const GLuint *arrays); +GLAPI void APIENTRY glGenVertexArrays (GLsizei n, GLuint *arrays); +GLAPI GLboolean APIENTRY glIsVertexArray (GLuint array); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC) (GLuint array); +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC) (GLsizei n, const GLuint *arrays); +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC) (GLuint array); +#endif + +#ifndef GL_ARB_uniform_buffer_object +#define GL_ARB_uniform_buffer_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUniformIndices (GLuint program, GLsizei uniformCount, const GLchar* *uniformNames, GLuint *uniformIndices); +GLAPI void APIENTRY glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetActiveUniformName (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +GLAPI GLuint APIENTRY glGetUniformBlockIndex (GLuint program, const GLchar *uniformBlockName); +GLAPI void APIENTRY glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +GLAPI void APIENTRY glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC) (GLuint program, GLsizei uniformCount, const GLchar* *uniformNames, GLuint *uniformIndices); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC) (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC) (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC) (GLuint program, const GLchar *uniformBlockName); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC) (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC) (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC) (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +#endif + +#ifndef GL_ARB_compatibility +#define GL_ARB_compatibility 1 +#endif + +#ifndef GL_ARB_copy_buffer +#define GL_ARB_copy_buffer 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#endif + +#ifndef GL_ARB_shader_texture_lod +#define GL_ARB_shader_texture_lod 1 +#endif + +#ifndef GL_ARB_depth_clamp +#define GL_ARB_depth_clamp 1 +#endif + +#ifndef GL_ARB_draw_elements_base_vertex +#define GL_ARB_draw_elements_base_vertex 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawElementsBaseVertex (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex); +GLAPI void APIENTRY glDrawRangeElementsBaseVertex (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex); +GLAPI void APIENTRY glDrawElementsInstancedBaseVertex (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLint basevertex); +GLAPI void APIENTRY glMultiDrawElementsBaseVertex (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount, const GLint *basevertex); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLint basevertex); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount, const GLint *basevertex); +#endif + +#ifndef GL_ARB_fragment_coord_conventions +#define GL_ARB_fragment_coord_conventions 1 +#endif + +#ifndef GL_ARB_provoking_vertex +#define GL_ARB_provoking_vertex 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProvokingVertex (GLenum mode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC) (GLenum mode); +#endif + +#ifndef GL_ARB_seamless_cube_map +#define GL_ARB_seamless_cube_map 1 +#endif + +#ifndef GL_ARB_sync +#define GL_ARB_sync 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLsync APIENTRY glFenceSync (GLenum condition, GLbitfield flags); +GLAPI GLboolean APIENTRY glIsSync (GLsync sync); +GLAPI void APIENTRY glDeleteSync (GLsync sync); +GLAPI GLenum APIENTRY glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI void APIENTRY glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (APIENTRYP PFNGLISSYNCPROC) (GLsync sync); +typedef void (APIENTRYP PFNGLDELETESYNCPROC) (GLsync sync); +typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (APIENTRYP PFNGLWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); +#endif + +#ifndef GL_ARB_texture_multisample +#define GL_ARB_texture_multisample 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage2DMultisample (GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTexImage3DMultisample (GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glGetMultisamplefv (GLenum pname, GLuint index, GLfloat *val); +GLAPI void APIENTRY glSampleMaski (GLuint index, GLbitfield mask); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC) (GLenum pname, GLuint index, GLfloat *val); +typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC) (GLuint index, GLbitfield mask); +#endif + +#ifndef GL_ARB_vertex_array_bgra +#define GL_ARB_vertex_array_bgra 1 +#endif + +#ifndef GL_ARB_draw_buffers_blend +#define GL_ARB_draw_buffers_blend 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationiARB (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparateiARB (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glBlendFunciARB (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparateiARB (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLENDEQUATIONIARBPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIARBPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLBLENDFUNCIARBPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIARBPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#endif + +#ifndef GL_ARB_sample_shading +#define GL_ARB_sample_shading 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMinSampleShadingARB (GLclampf value); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLMINSAMPLESHADINGARBPROC) (GLclampf value); +#endif + +#ifndef GL_ARB_texture_cube_map_array +#define GL_ARB_texture_cube_map_array 1 +#endif + +#ifndef GL_ARB_texture_gather +#define GL_ARB_texture_gather 1 +#endif + +#ifndef GL_ARB_texture_query_lod +#define GL_ARB_texture_query_lod 1 +#endif + +#ifndef GL_ARB_shading_language_include +#define GL_ARB_shading_language_include 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glNamedStringARB (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string); +GLAPI void APIENTRY glDeleteNamedStringARB (GLint namelen, const GLchar *name); +GLAPI void APIENTRY glCompileShaderIncludeARB (GLuint shader, GLsizei count, const GLchar* *path, const GLint *length); +GLAPI GLboolean APIENTRY glIsNamedStringARB (GLint namelen, const GLchar *name); +GLAPI void APIENTRY glGetNamedStringARB (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string); +GLAPI void APIENTRY glGetNamedStringivARB (GLint namelen, const GLchar *name, GLenum pname, GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLNAMEDSTRINGARBPROC) (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string); +typedef void (APIENTRYP PFNGLDELETENAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name); +typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar* *path, const GLint *length); +typedef GLboolean (APIENTRYP PFNGLISNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name); +typedef void (APIENTRYP PFNGLGETNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string); +typedef void (APIENTRYP PFNGLGETNAMEDSTRINGIVARBPROC) (GLint namelen, const GLchar *name, GLenum pname, GLint *params); +#endif + +#ifndef GL_ARB_texture_compression_bptc +#define GL_ARB_texture_compression_bptc 1 +#endif + +#ifndef GL_ARB_blend_func_extended +#define GL_ARB_blend_func_extended 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindFragDataLocationIndexed (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataIndex (GLuint program, const GLchar *name); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC) (GLuint program, const GLchar *name); +#endif + +#ifndef GL_ARB_explicit_attrib_location +#define GL_ARB_explicit_attrib_location 1 +#endif + +#ifndef GL_ARB_occlusion_query2 +#define GL_ARB_occlusion_query2 1 +#endif + +#ifndef GL_ARB_sampler_objects +#define GL_ARB_sampler_objects 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenSamplers (GLsizei count, GLuint *samplers); +GLAPI void APIENTRY glDeleteSamplers (GLsizei count, const GLuint *samplers); +GLAPI GLboolean APIENTRY glIsSampler (GLuint sampler); +GLAPI void APIENTRY glBindSampler (GLuint unit, GLuint sampler); +GLAPI void APIENTRY glSamplerParameteri (GLuint sampler, GLenum pname, GLint param); +GLAPI void APIENTRY glSamplerParameteriv (GLuint sampler, GLenum pname, const GLint *param); +GLAPI void APIENTRY glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param); +GLAPI void APIENTRY glSamplerParameterfv (GLuint sampler, GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glSamplerParameterIiv (GLuint sampler, GLenum pname, const GLint *param); +GLAPI void APIENTRY glSamplerParameterIuiv (GLuint sampler, GLenum pname, const GLuint *param); +GLAPI void APIENTRY glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSamplerParameterIiv (GLuint sampler, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetSamplerParameterIuiv (GLuint sampler, GLenum pname, GLuint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGENSAMPLERSPROC) (GLsizei count, GLuint *samplers); +typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC) (GLsizei count, const GLuint *samplers); +typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC) (GLuint sampler); +typedef void (APIENTRYP PFNGLBINDSAMPLERPROC) (GLuint unit, GLuint sampler); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC) (GLuint sampler, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC) (GLuint sampler, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, GLuint *params); +#endif + +#ifndef GL_ARB_texture_rgb10_a2ui +#define GL_ARB_texture_rgb10_a2ui 1 +#endif + +#ifndef GL_ARB_texture_swizzle +#define GL_ARB_texture_swizzle 1 +#endif + +#ifndef GL_ARB_timer_query +#define GL_ARB_timer_query 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glQueryCounter (GLuint id, GLenum target); +GLAPI void APIENTRY glGetQueryObjecti64v (GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetQueryObjectui64v (GLuint id, GLenum pname, GLuint64 *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC) (GLuint id, GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC) (GLuint id, GLenum pname, GLuint64 *params); +#endif + +#ifndef GL_ARB_vertex_type_2_10_10_10_rev +#define GL_ARB_vertex_type_2_10_10_10_rev 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexP2ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP2uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glVertexP3ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP3uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glVertexP4ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP4uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glTexCoordP1ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP1uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP2ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP2uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP3ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP3uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP4ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP4uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP1ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP1uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP2ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP2uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP3ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP3uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP4ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP4uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glNormalP3ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glNormalP3uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glColorP3ui (GLenum type, GLuint color); +GLAPI void APIENTRY glColorP3uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glColorP4ui (GLenum type, GLuint color); +GLAPI void APIENTRY glColorP4uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glSecondaryColorP3ui (GLenum type, GLuint color); +GLAPI void APIENTRY glSecondaryColorP3uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glVertexAttribP1ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP1uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP2ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP2uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP3ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP3uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP4ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP4uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXP2UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP3UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP4UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLNORMALP3UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLNORMALP3UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLCOLORP3UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLCOLORP4UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLCOLORP4UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +#endif + +#ifndef GL_ARB_draw_indirect +#define GL_ARB_draw_indirect 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysIndirect (GLenum mode, const GLvoid *indirect); +GLAPI void APIENTRY glDrawElementsIndirect (GLenum mode, GLenum type, const GLvoid *indirect); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDRAWARRAYSINDIRECTPROC) (GLenum mode, const GLvoid *indirect); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const GLvoid *indirect); +#endif + +#ifndef GL_ARB_gpu_shader5 +#define GL_ARB_gpu_shader5 1 +#endif + +#ifndef GL_ARB_gpu_shader_fp64 +#define GL_ARB_gpu_shader_fp64 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1d (GLint location, GLdouble x); +GLAPI void APIENTRY glUniform2d (GLint location, GLdouble x, GLdouble y); +GLAPI void APIENTRY glUniform3d (GLint location, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glUniform4d (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glUniform1dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform2dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform3dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform4dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glGetUniformdv (GLuint program, GLint location, GLdouble *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLUNIFORM1DPROC) (GLint location, GLdouble x); +typedef void (APIENTRYP PFNGLUNIFORM2DPROC) (GLint location, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLUNIFORM3DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLUNIFORM4DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLUNIFORM1DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM2DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM3DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM4DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLGETUNIFORMDVPROC) (GLuint program, GLint location, GLdouble *params); +#endif + +#ifndef GL_ARB_shader_subroutine +#define GL_ARB_shader_subroutine 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glGetSubroutineUniformLocation (GLuint program, GLenum shadertype, const GLchar *name); +GLAPI GLuint APIENTRY glGetSubroutineIndex (GLuint program, GLenum shadertype, const GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); +GLAPI void APIENTRY glGetActiveSubroutineUniformName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glUniformSubroutinesuiv (GLenum shadertype, GLsizei count, const GLuint *indices); +GLAPI void APIENTRY glGetUniformSubroutineuiv (GLenum shadertype, GLint location, GLuint *params); +GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLint (APIENTRYP PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC) (GLuint program, GLenum shadertype, const GLchar *name); +typedef GLuint (APIENTRYP PFNGLGETSUBROUTINEINDEXPROC) (GLuint program, GLenum shadertype, const GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINENAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORMSUBROUTINESUIVPROC) (GLenum shadertype, GLsizei count, const GLuint *indices); +typedef void (APIENTRYP PFNGLGETUNIFORMSUBROUTINEUIVPROC) (GLenum shadertype, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values); +#endif + +#ifndef GL_ARB_tessellation_shader +#define GL_ARB_tessellation_shader 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPatchParameteri (GLenum pname, GLint value); +GLAPI void APIENTRY glPatchParameterfv (GLenum pname, const GLfloat *values); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPATCHPARAMETERIPROC) (GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values); +#endif + +#ifndef GL_ARB_texture_buffer_object_rgb32 +#define GL_ARB_texture_buffer_object_rgb32 1 +#endif + +#ifndef GL_ARB_transform_feedback2 +#define GL_ARB_transform_feedback2 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindTransformFeedback (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteTransformFeedbacks (GLsizei n, const GLuint *ids); +GLAPI void APIENTRY glGenTransformFeedbacks (GLsizei n, GLuint *ids); +GLAPI GLboolean APIENTRY glIsTransformFeedback (GLuint id); +GLAPI void APIENTRY glPauseTransformFeedback (void); +GLAPI void APIENTRY glResumeTransformFeedback (void); +GLAPI void APIENTRY glDrawTransformFeedback (GLenum mode, GLuint id); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSPROC) (GLsizei n, const GLuint *ids); +typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKPROC) (GLuint id); +typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKPROC) (GLenum mode, GLuint id); +#endif + +#ifndef GL_ARB_transform_feedback3 +#define GL_ARB_transform_feedback3 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawTransformFeedbackStream (GLenum mode, GLuint id, GLuint stream); +GLAPI void APIENTRY glBeginQueryIndexed (GLenum target, GLuint index, GLuint id); +GLAPI void APIENTRY glEndQueryIndexed (GLenum target, GLuint index); +GLAPI void APIENTRY glGetQueryIndexediv (GLenum target, GLuint index, GLenum pname, GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC) (GLenum mode, GLuint id, GLuint stream); +typedef void (APIENTRYP PFNGLBEGINQUERYINDEXEDPROC) (GLenum target, GLuint index, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYINDEXEDPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLGETQUERYINDEXEDIVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); +#endif + +#ifndef GL_ARB_ES2_compatibility +#define GL_ARB_ES2_compatibility 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReleaseShaderCompiler (void); +GLAPI void APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const GLvoid *binary, GLsizei length); +GLAPI void APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +GLAPI void APIENTRY glDepthRangef (GLclampf n, GLclampf f); +GLAPI void APIENTRY glClearDepthf (GLclampf d); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const GLvoid *binary, GLsizei length); +typedef void (APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +typedef void (APIENTRYP PFNGLDEPTHRANGEFPROC) (GLclampf n, GLclampf f); +typedef void (APIENTRYP PFNGLCLEARDEPTHFPROC) (GLclampf d); +#endif + +#ifndef GL_ARB_get_program_binary +#define GL_ARB_get_program_binary 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); +GLAPI void APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length); +GLAPI void APIENTRY glProgramParameteri (GLuint program, GLenum pname, GLint value); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); +typedef void (APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIPROC) (GLuint program, GLenum pname, GLint value); +#endif + +#ifndef GL_ARB_separate_shader_objects +#define GL_ARB_separate_shader_objects 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUseProgramStages (GLuint pipeline, GLbitfield stages, GLuint program); +GLAPI void APIENTRY glActiveShaderProgram (GLuint pipeline, GLuint program); +GLAPI GLuint APIENTRY glCreateShaderProgramv (GLenum type, GLsizei count, const GLchar* *strings); +GLAPI void APIENTRY glBindProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glDeleteProgramPipelines (GLsizei n, const GLuint *pipelines); +GLAPI void APIENTRY glGenProgramPipelines (GLsizei n, GLuint *pipelines); +GLAPI GLboolean APIENTRY glIsProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glGetProgramPipelineiv (GLuint pipeline, GLenum pname, GLint *params); +GLAPI void APIENTRY glProgramUniform1i (GLuint program, GLint location, GLint v0); +GLAPI void APIENTRY glProgramUniform1iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform1f (GLuint program, GLint location, GLfloat v0); +GLAPI void APIENTRY glProgramUniform1fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1d (GLuint program, GLint location, GLdouble v0); +GLAPI void APIENTRY glProgramUniform1dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform1ui (GLuint program, GLint location, GLuint v0); +GLAPI void APIENTRY glProgramUniform1uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform2i (GLuint program, GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glProgramUniform2iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform2f (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glProgramUniform2fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform2d (GLuint program, GLint location, GLdouble v0, GLdouble v1); +GLAPI void APIENTRY glProgramUniform2dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform2ui (GLuint program, GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glProgramUniform2uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform3i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glProgramUniform3iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform3f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glProgramUniform3fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform3d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); +GLAPI void APIENTRY glProgramUniform3dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform3ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glProgramUniform3uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform4i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glProgramUniform4iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform4f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glProgramUniform4fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform4d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); +GLAPI void APIENTRY glProgramUniform4dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform4ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glProgramUniform4uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniformMatrix2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glValidateProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glGetProgramPipelineInfoLog (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLUSEPROGRAMSTAGESPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (APIENTRYP PFNGLACTIVESHADERPROGRAMPROC) (GLuint pipeline, GLuint program); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMVPROC) (GLenum type, GLsizei count, const GLchar* *strings); +typedef void (APIENTRYP PFNGLBINDPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLDELETEPROGRAMPIPELINESPROC) (GLsizei n, const GLuint *pipelines); +typedef void (APIENTRYP PFNGLGENPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEIVPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IPROC) (GLuint program, GLint location, GLint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DPROC) (GLuint program, GLint location, GLdouble v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIPROC) (GLuint program, GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +#endif + +#ifndef GL_ARB_vertex_attrib_64bit +#define GL_ARB_vertex_attrib_64bit 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1d (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttribL2d (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttribL3d (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttribL4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttribL1dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL2dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL3dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL4dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribLPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glGetVertexAttribLdv (GLuint index, GLenum pname, GLdouble *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVPROC) (GLuint index, GLenum pname, GLdouble *params); +#endif + +#ifndef GL_ARB_viewport_array +#define GL_ARB_viewport_array 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportArrayv (GLuint first, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glViewportIndexedf (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GLAPI void APIENTRY glViewportIndexedfv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glScissorArrayv (GLuint first, GLsizei count, const GLint *v); +GLAPI void APIENTRY glScissorIndexed (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GLAPI void APIENTRY glScissorIndexedv (GLuint index, const GLint *v); +GLAPI void APIENTRY glDepthRangeArrayv (GLuint first, GLsizei count, const GLclampd *v); +GLAPI void APIENTRY glDepthRangeIndexed (GLuint index, GLclampd n, GLclampd f); +GLAPI void APIENTRY glGetFloati_v (GLenum target, GLuint index, GLfloat *data); +GLAPI void APIENTRY glGetDoublei_v (GLenum target, GLuint index, GLdouble *data); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVIEWPORTARRAYVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLSCISSORARRAYVPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (APIENTRYP PFNGLSCISSORINDEXEDPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLSCISSORINDEXEDVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYVPROC) (GLuint first, GLsizei count, const GLclampd *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDPROC) (GLuint index, GLclampd n, GLclampd f); +typedef void (APIENTRYP PFNGLGETFLOATI_VPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (APIENTRYP PFNGLGETDOUBLEI_VPROC) (GLenum target, GLuint index, GLdouble *data); +#endif + +#ifndef GL_ARB_cl_event +#define GL_ARB_cl_event 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLsync APIENTRY glCreateSyncFromCLeventARB (struct _cl_context * context, struct _cl_event * event, GLbitfield flags); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLsync (APIENTRYP PFNGLCREATESYNCFROMCLEVENTARBPROC) (struct _cl_context * context, struct _cl_event * event, GLbitfield flags); +#endif + +#ifndef GL_ARB_debug_output +#define GL_ARB_debug_output 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDebugMessageControlARB (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsertARB (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallbackARB (GLDEBUGPROCARB callback, const GLvoid *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLogARB (GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLARBPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTARBPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKARBPROC) (GLDEBUGPROCARB callback, const GLvoid *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGARBPROC) (GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +#endif + +#ifndef GL_ARB_robustness +#define GL_ARB_robustness 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLenum APIENTRY glGetGraphicsResetStatusARB (void); +GLAPI void APIENTRY glGetnMapdvARB (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +GLAPI void APIENTRY glGetnMapfvARB (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glGetnMapivARB (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +GLAPI void APIENTRY glGetnPixelMapfvARB (GLenum map, GLsizei bufSize, GLfloat *values); +GLAPI void APIENTRY glGetnPixelMapuivARB (GLenum map, GLsizei bufSize, GLuint *values); +GLAPI void APIENTRY glGetnPixelMapusvARB (GLenum map, GLsizei bufSize, GLushort *values); +GLAPI void APIENTRY glGetnPolygonStippleARB (GLsizei bufSize, GLubyte *pattern); +GLAPI void APIENTRY glGetnColorTableARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *table); +GLAPI void APIENTRY glGetnConvolutionFilterARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *image); +GLAPI void APIENTRY glGetnSeparableFilterARB (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid *row, GLsizei columnBufSize, GLvoid *column, GLvoid *span); +GLAPI void APIENTRY glGetnHistogramARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values); +GLAPI void APIENTRY glGetnMinmaxARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values); +GLAPI void APIENTRY glGetnTexImageARB (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid *img); +GLAPI void APIENTRY glReadnPixelsARB (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data); +GLAPI void APIENTRY glGetnCompressedTexImageARB (GLenum target, GLint lod, GLsizei bufSize, GLvoid *img); +GLAPI void APIENTRY glGetnUniformfvARB (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GLAPI void APIENTRY glGetnUniformivARB (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetnUniformuivARB (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +GLAPI void APIENTRY glGetnUniformdvARB (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSARBPROC) (void); +typedef void (APIENTRYP PFNGLGETNMAPDVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +typedef void (APIENTRYP PFNGLGETNMAPFVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLGETNMAPIVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +typedef void (APIENTRYP PFNGLGETNPIXELMAPFVARBPROC) (GLenum map, GLsizei bufSize, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVARBPROC) (GLenum map, GLsizei bufSize, GLuint *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVARBPROC) (GLenum map, GLsizei bufSize, GLushort *values); +typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEARBPROC) (GLsizei bufSize, GLubyte *pattern); +typedef void (APIENTRYP PFNGLGETNCOLORTABLEARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *table); +typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *image); +typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid *row, GLsizei columnBufSize, GLvoid *column, GLvoid *span); +typedef void (APIENTRYP PFNGLGETNHISTOGRAMARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values); +typedef void (APIENTRYP PFNGLGETNMINMAXARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values); +typedef void (APIENTRYP PFNGLGETNTEXIMAGEARBPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid *img); +typedef void (APIENTRYP PFNGLREADNPIXELSARBPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data); +typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint lod, GLsizei bufSize, GLvoid *img); +typedef void (APIENTRYP PFNGLGETNUNIFORMFVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMDVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +#endif + +#ifndef GL_ARB_shader_stencil_export +#define GL_ARB_shader_stencil_export 1 +#endif + +#ifndef GL_EXT_abgr +#define GL_EXT_abgr 1 +#endif + +#ifndef GL_EXT_blend_color +#define GL_EXT_blend_color 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendColorEXT (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLENDCOLOREXTPROC) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); +#endif + +#ifndef GL_EXT_polygon_offset +#define GL_EXT_polygon_offset 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPolygonOffsetEXT (GLfloat factor, GLfloat bias); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPOLYGONOFFSETEXTPROC) (GLfloat factor, GLfloat bias); +#endif + +#ifndef GL_EXT_texture +#define GL_EXT_texture 1 +#endif + +#ifndef GL_EXT_texture3D +#define GL_EXT_texture3D 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage3DEXT (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXIMAGE3DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +#endif + +#ifndef GL_SGIS_texture_filter4 +#define GL_SGIS_texture_filter4 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetTexFilterFuncSGIS (GLenum target, GLenum filter, GLfloat *weights); +GLAPI void APIENTRY glTexFilterFuncSGIS (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGETTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLfloat *weights); +typedef void (APIENTRYP PFNGLTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); +#endif + +#ifndef GL_EXT_subtexture +#define GL_EXT_subtexture 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels); +#endif + +#ifndef GL_EXT_copy_texture +#define GL_EXT_copy_texture 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyTexImage1DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyTexImage2DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glCopyTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif + +#ifndef GL_EXT_histogram +#define GL_EXT_histogram 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetHistogramEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); +GLAPI void APIENTRY glGetHistogramParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetHistogramParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMinmaxEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); +GLAPI void APIENTRY glGetMinmaxParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMinmaxParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glHistogramEXT (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glMinmaxEXT (GLenum target, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glResetHistogramEXT (GLenum target); +GLAPI void APIENTRY glResetMinmaxEXT (GLenum target); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGETHISTOGRAMEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMINMAXEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLHISTOGRAMEXTPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLMINMAXEXTPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLRESETHISTOGRAMEXTPROC) (GLenum target); +typedef void (APIENTRYP PFNGLRESETMINMAXEXTPROC) (GLenum target); +#endif + +#ifndef GL_EXT_convolution +#define GL_EXT_convolution 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image); +GLAPI void APIENTRY glConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image); +GLAPI void APIENTRY glConvolutionParameterfEXT (GLenum target, GLenum pname, GLfloat params); +GLAPI void APIENTRY glConvolutionParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glConvolutionParameteriEXT (GLenum target, GLenum pname, GLint params); +GLAPI void APIENTRY glConvolutionParameterivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetConvolutionFilterEXT (GLenum target, GLenum format, GLenum type, GLvoid *image); +GLAPI void APIENTRY glGetConvolutionParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetConvolutionParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSeparableFilterEXT (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span); +GLAPI void APIENTRY glSeparableFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *image); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span); +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column); +#endif + +#ifndef GL_SGI_color_matrix +#define GL_SGI_color_matrix 1 +#endif + +#ifndef GL_SGI_color_table +#define GL_SGI_color_table 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTableSGI (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table); +GLAPI void APIENTRY glColorTableParameterfvSGI (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glColorTableParameterivSGI (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyColorTableSGI (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glGetColorTableSGI (GLenum target, GLenum format, GLenum type, GLvoid *table); +GLAPI void APIENTRY glGetColorTableParameterfvSGI (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetColorTableParameterivSGI (GLenum target, GLenum pname, GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLGETCOLORTABLESGIPROC) (GLenum target, GLenum format, GLenum type, GLvoid *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, GLint *params); +#endif + +#ifndef GL_SGIX_pixel_texture +#define GL_SGIX_pixel_texture 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTexGenSGIX (GLenum mode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPIXELTEXGENSGIXPROC) (GLenum mode); +#endif + +#ifndef GL_SGIS_pixel_texture +#define GL_SGIS_pixel_texture 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTexGenParameteriSGIS (GLenum pname, GLint param); +GLAPI void APIENTRY glPixelTexGenParameterivSGIS (GLenum pname, const GLint *params); +GLAPI void APIENTRY glPixelTexGenParameterfSGIS (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPixelTexGenParameterfvSGIS (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetPixelTexGenParameterivSGIS (GLenum pname, GLint *params); +GLAPI void APIENTRY glGetPixelTexGenParameterfvSGIS (GLenum pname, GLfloat *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERISGISPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFSGISPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, GLfloat *params); +#endif + +#ifndef GL_SGIS_texture4D +#define GL_SGIS_texture4D 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage4DSGIS (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glTexSubImage4DSGIS (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const GLvoid *pixels); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXIMAGE4DSGISPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE4DSGISPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const GLvoid *pixels); +#endif + +#ifndef GL_SGI_texture_color_table +#define GL_SGI_texture_color_table 1 +#endif + +#ifndef GL_EXT_cmyka +#define GL_EXT_cmyka 1 +#endif + +#ifndef GL_EXT_texture_object +#define GL_EXT_texture_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAreTexturesResidentEXT (GLsizei n, const GLuint *textures, GLboolean *residences); +GLAPI void APIENTRY glBindTextureEXT (GLenum target, GLuint texture); +GLAPI void APIENTRY glDeleteTexturesEXT (GLsizei n, const GLuint *textures); +GLAPI void APIENTRY glGenTexturesEXT (GLsizei n, GLuint *textures); +GLAPI GLboolean APIENTRY glIsTextureEXT (GLuint texture); +GLAPI void APIENTRY glPrioritizeTexturesEXT (GLsizei n, const GLuint *textures, const GLclampf *priorities); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTEXTPROC) (GLsizei n, const GLuint *textures, GLboolean *residences); +typedef void (APIENTRYP PFNGLBINDTEXTUREEXTPROC) (GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLDELETETEXTURESEXTPROC) (GLsizei n, const GLuint *textures); +typedef void (APIENTRYP PFNGLGENTEXTURESEXTPROC) (GLsizei n, GLuint *textures); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREEXTPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESEXTPROC) (GLsizei n, const GLuint *textures, const GLclampf *priorities); +#endif + +#ifndef GL_SGIS_detail_texture +#define GL_SGIS_detail_texture 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDetailTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetDetailTexFuncSGIS (GLenum target, GLfloat *points); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDETAILTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETDETAILTEXFUNCSGISPROC) (GLenum target, GLfloat *points); +#endif + +#ifndef GL_SGIS_sharpen_texture +#define GL_SGIS_sharpen_texture 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSharpenTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetSharpenTexFuncSGIS (GLenum target, GLfloat *points); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLSHARPENTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETSHARPENTEXFUNCSGISPROC) (GLenum target, GLfloat *points); +#endif + +#ifndef GL_EXT_packed_pixels +#define GL_EXT_packed_pixels 1 +#endif + +#ifndef GL_SGIS_texture_lod +#define GL_SGIS_texture_lod 1 +#endif + +#ifndef GL_SGIS_multisample +#define GL_SGIS_multisample 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleMaskSGIS (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glSamplePatternSGIS (GLenum pattern); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLSAMPLEMASKSGISPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLSAMPLEPATTERNSGISPROC) (GLenum pattern); +#endif + +#ifndef GL_EXT_rescale_normal +#define GL_EXT_rescale_normal 1 +#endif + +#ifndef GL_EXT_vertex_array +#define GL_EXT_vertex_array 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glArrayElementEXT (GLint i); +GLAPI void APIENTRY glColorPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); +GLAPI void APIENTRY glDrawArraysEXT (GLenum mode, GLint first, GLsizei count); +GLAPI void APIENTRY glEdgeFlagPointerEXT (GLsizei stride, GLsizei count, const GLboolean *pointer); +GLAPI void APIENTRY glGetPointervEXT (GLenum pname, GLvoid* *params); +GLAPI void APIENTRY glIndexPointerEXT (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); +GLAPI void APIENTRY glNormalPointerEXT (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); +GLAPI void APIENTRY glTexCoordPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); +GLAPI void APIENTRY glVertexPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLARRAYELEMENTEXTPROC) (GLint i); +typedef void (APIENTRYP PFNGLCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLDRAWARRAYSEXTPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTEREXTPROC) (GLsizei stride, GLsizei count, const GLboolean *pointer); +typedef void (APIENTRYP PFNGLGETPOINTERVEXTPROC) (GLenum pname, GLvoid* *params); +typedef void (APIENTRYP PFNGLINDEXPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLNORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLVERTEXPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); +#endif + +#ifndef GL_EXT_misc_attribute +#define GL_EXT_misc_attribute 1 +#endif + +#ifndef GL_SGIS_generate_mipmap +#define GL_SGIS_generate_mipmap 1 +#endif + +#ifndef GL_SGIX_clipmap +#define GL_SGIX_clipmap 1 +#endif + +#ifndef GL_SGIX_shadow +#define GL_SGIX_shadow 1 +#endif + +#ifndef GL_SGIS_texture_edge_clamp +#define GL_SGIS_texture_edge_clamp 1 +#endif + +#ifndef GL_SGIS_texture_border_clamp +#define GL_SGIS_texture_border_clamp 1 +#endif + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationEXT (GLenum mode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLENDEQUATIONEXTPROC) (GLenum mode); +#endif + +#ifndef GL_EXT_blend_subtract +#define GL_EXT_blend_subtract 1 +#endif + +#ifndef GL_EXT_blend_logic_op +#define GL_EXT_blend_logic_op 1 +#endif + +#ifndef GL_SGIX_interlace +#define GL_SGIX_interlace 1 +#endif + +#ifndef GL_SGIX_pixel_tiles +#define GL_SGIX_pixel_tiles 1 +#endif + +#ifndef GL_SGIX_texture_select +#define GL_SGIX_texture_select 1 +#endif + +#ifndef GL_SGIX_sprite +#define GL_SGIX_sprite 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpriteParameterfSGIX (GLenum pname, GLfloat param); +GLAPI void APIENTRY glSpriteParameterfvSGIX (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glSpriteParameteriSGIX (GLenum pname, GLint param); +GLAPI void APIENTRY glSpriteParameterivSGIX (GLenum pname, const GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLSPRITEPARAMETERFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERFVSGIXPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERISGIXPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERIVSGIXPROC) (GLenum pname, const GLint *params); +#endif + +#ifndef GL_SGIX_texture_multi_buffer +#define GL_SGIX_texture_multi_buffer 1 +#endif + +#ifndef GL_EXT_point_parameters +#define GL_EXT_point_parameters 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfEXT (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvEXT (GLenum pname, const GLfloat *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPOINTPARAMETERFEXTPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVEXTPROC) (GLenum pname, const GLfloat *params); +#endif + +#ifndef GL_SGIS_point_parameters +#define GL_SGIS_point_parameters 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfSGIS (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvSGIS (GLenum pname, const GLfloat *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPOINTPARAMETERFSGISPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); +#endif + +#ifndef GL_SGIX_instruments +#define GL_SGIX_instruments 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glGetInstrumentsSGIX (void); +GLAPI void APIENTRY glInstrumentsBufferSGIX (GLsizei size, GLint *buffer); +GLAPI GLint APIENTRY glPollInstrumentsSGIX (GLint *marker_p); +GLAPI void APIENTRY glReadInstrumentsSGIX (GLint marker); +GLAPI void APIENTRY glStartInstrumentsSGIX (void); +GLAPI void APIENTRY glStopInstrumentsSGIX (GLint marker); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLint (APIENTRYP PFNGLGETINSTRUMENTSSGIXPROC) (void); +typedef void (APIENTRYP PFNGLINSTRUMENTSBUFFERSGIXPROC) (GLsizei size, GLint *buffer); +typedef GLint (APIENTRYP PFNGLPOLLINSTRUMENTSSGIXPROC) (GLint *marker_p); +typedef void (APIENTRYP PFNGLREADINSTRUMENTSSGIXPROC) (GLint marker); +typedef void (APIENTRYP PFNGLSTARTINSTRUMENTSSGIXPROC) (void); +typedef void (APIENTRYP PFNGLSTOPINSTRUMENTSSGIXPROC) (GLint marker); +#endif + +#ifndef GL_SGIX_texture_scale_bias +#define GL_SGIX_texture_scale_bias 1 +#endif + +#ifndef GL_SGIX_framezoom +#define GL_SGIX_framezoom 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFrameZoomSGIX (GLint factor); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLFRAMEZOOMSGIXPROC) (GLint factor); +#endif + +#ifndef GL_SGIX_tag_sample_buffer +#define GL_SGIX_tag_sample_buffer 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTagSampleBufferSGIX (void); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTAGSAMPLEBUFFERSGIXPROC) (void); +#endif + +#ifndef GL_SGIX_polynomial_ffd +#define GL_SGIX_polynomial_ffd 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeformationMap3dSGIX (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); +GLAPI void APIENTRY glDeformationMap3fSGIX (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); +GLAPI void APIENTRY glDeformSGIX (GLbitfield mask); +GLAPI void APIENTRY glLoadIdentityDeformationMapSGIX (GLbitfield mask); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDEFORMATIONMAP3DSGIXPROC) (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); +typedef void (APIENTRYP PFNGLDEFORMATIONMAP3FSGIXPROC) (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); +typedef void (APIENTRYP PFNGLDEFORMSGIXPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC) (GLbitfield mask); +#endif + +#ifndef GL_SGIX_reference_plane +#define GL_SGIX_reference_plane 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReferencePlaneSGIX (const GLdouble *equation); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLREFERENCEPLANESGIXPROC) (const GLdouble *equation); +#endif + +#ifndef GL_SGIX_flush_raster +#define GL_SGIX_flush_raster 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushRasterSGIX (void); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLFLUSHRASTERSGIXPROC) (void); +#endif + +#ifndef GL_SGIX_depth_texture +#define GL_SGIX_depth_texture 1 +#endif + +#ifndef GL_SGIS_fog_function +#define GL_SGIS_fog_function 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogFuncSGIS (GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetFogFuncSGIS (GLfloat *points); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLFOGFUNCSGISPROC) (GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETFOGFUNCSGISPROC) (GLfloat *points); +#endif + +#ifndef GL_SGIX_fog_offset +#define GL_SGIX_fog_offset 1 +#endif + +#ifndef GL_HP_image_transform +#define GL_HP_image_transform 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImageTransformParameteriHP (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glImageTransformParameterfHP (GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glImageTransformParameterivHP (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glImageTransformParameterfvHP (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetImageTransformParameterivHP (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetImageTransformParameterfvHP (GLenum target, GLenum pname, GLfloat *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIHPPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFHPPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, GLfloat *params); +#endif + +#ifndef GL_HP_convolution_border_modes +#define GL_HP_convolution_border_modes 1 +#endif + +#ifndef GL_SGIX_texture_add_env +#define GL_SGIX_texture_add_env 1 +#endif + +#ifndef GL_EXT_color_subtable +#define GL_EXT_color_subtable 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorSubTableEXT (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data); +GLAPI void APIENTRY glCopyColorSubTableEXT (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +#endif + +#ifndef GL_PGI_vertex_hints +#define GL_PGI_vertex_hints 1 +#endif + +#ifndef GL_PGI_misc_hints +#define GL_PGI_misc_hints 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glHintPGI (GLenum target, GLint mode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLHINTPGIPROC) (GLenum target, GLint mode); +#endif + +#ifndef GL_EXT_paletted_texture +#define GL_EXT_paletted_texture 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTableEXT (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const GLvoid *table); +GLAPI void APIENTRY glGetColorTableEXT (GLenum target, GLenum format, GLenum type, GLvoid *data); +GLAPI void APIENTRY glGetColorTableParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetColorTableParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOLORTABLEEXTPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const GLvoid *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEEXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *data); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +#endif + +#ifndef GL_EXT_clip_volume_hint +#define GL_EXT_clip_volume_hint 1 +#endif + +#ifndef GL_SGIX_list_priority +#define GL_SGIX_list_priority 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetListParameterfvSGIX (GLuint list, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetListParameterivSGIX (GLuint list, GLenum pname, GLint *params); +GLAPI void APIENTRY glListParameterfSGIX (GLuint list, GLenum pname, GLfloat param); +GLAPI void APIENTRY glListParameterfvSGIX (GLuint list, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glListParameteriSGIX (GLuint list, GLenum pname, GLint param); +GLAPI void APIENTRY glListParameterivSGIX (GLuint list, GLenum pname, const GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGETLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLLISTPARAMETERFSGIXPROC) (GLuint list, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLLISTPARAMETERISGIXPROC) (GLuint list, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, const GLint *params); +#endif + +#ifndef GL_SGIX_ir_instrument1 +#define GL_SGIX_ir_instrument1 1 +#endif + +#ifndef GL_SGIX_calligraphic_fragment +#define GL_SGIX_calligraphic_fragment 1 +#endif + +#ifndef GL_SGIX_texture_lod_bias +#define GL_SGIX_texture_lod_bias 1 +#endif + +#ifndef GL_SGIX_shadow_ambient +#define GL_SGIX_shadow_ambient 1 +#endif + +#ifndef GL_EXT_index_texture +#define GL_EXT_index_texture 1 +#endif + +#ifndef GL_EXT_index_material +#define GL_EXT_index_material 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIndexMaterialEXT (GLenum face, GLenum mode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLINDEXMATERIALEXTPROC) (GLenum face, GLenum mode); +#endif + +#ifndef GL_EXT_index_func +#define GL_EXT_index_func 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIndexFuncEXT (GLenum func, GLclampf ref); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLINDEXFUNCEXTPROC) (GLenum func, GLclampf ref); +#endif + +#ifndef GL_EXT_index_array_formats +#define GL_EXT_index_array_formats 1 +#endif + +#ifndef GL_EXT_compiled_vertex_array +#define GL_EXT_compiled_vertex_array 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLockArraysEXT (GLint first, GLsizei count); +GLAPI void APIENTRY glUnlockArraysEXT (void); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLLOCKARRAYSEXTPROC) (GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLUNLOCKARRAYSEXTPROC) (void); +#endif + +#ifndef GL_EXT_cull_vertex +#define GL_EXT_cull_vertex 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCullParameterdvEXT (GLenum pname, GLdouble *params); +GLAPI void APIENTRY glCullParameterfvEXT (GLenum pname, GLfloat *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCULLPARAMETERDVEXTPROC) (GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLCULLPARAMETERFVEXTPROC) (GLenum pname, GLfloat *params); +#endif + +#ifndef GL_SGIX_ycrcb +#define GL_SGIX_ycrcb 1 +#endif + +#ifndef GL_SGIX_fragment_lighting +#define GL_SGIX_fragment_lighting 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFragmentColorMaterialSGIX (GLenum face, GLenum mode); +GLAPI void APIENTRY glFragmentLightfSGIX (GLenum light, GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentLightfvSGIX (GLenum light, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentLightiSGIX (GLenum light, GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentLightivSGIX (GLenum light, GLenum pname, const GLint *params); +GLAPI void APIENTRY glFragmentLightModelfSGIX (GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentLightModelfvSGIX (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentLightModeliSGIX (GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentLightModelivSGIX (GLenum pname, const GLint *params); +GLAPI void APIENTRY glFragmentMaterialfSGIX (GLenum face, GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentMaterialfvSGIX (GLenum face, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentMaterialiSGIX (GLenum face, GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentMaterialivSGIX (GLenum face, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetFragmentLightfvSGIX (GLenum light, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFragmentLightivSGIX (GLenum light, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFragmentMaterialfvSGIX (GLenum face, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFragmentMaterialivSGIX (GLenum face, GLenum pname, GLint *params); +GLAPI void APIENTRY glLightEnviSGIX (GLenum pname, GLint param); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLFRAGMENTCOLORMATERIALSGIXPROC) (GLenum face, GLenum mode); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFSGIXPROC) (GLenum light, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTISGIXPROC) (GLenum light, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFVSGIXPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELISGIXPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELIVSGIXPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFSGIXPROC) (GLenum face, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALISGIXPROC) (GLenum face, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLLIGHTENVISGIXPROC) (GLenum pname, GLint param); +#endif + +#ifndef GL_IBM_rasterpos_clip +#define GL_IBM_rasterpos_clip 1 +#endif + +#ifndef GL_HP_texture_lighting +#define GL_HP_texture_lighting 1 +#endif + +#ifndef GL_EXT_draw_range_elements +#define GL_EXT_draw_range_elements 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices); +#endif + +#ifndef GL_WIN_phong_shading +#define GL_WIN_phong_shading 1 +#endif + +#ifndef GL_WIN_specular_fog +#define GL_WIN_specular_fog 1 +#endif + +#ifndef GL_EXT_light_texture +#define GL_EXT_light_texture 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glApplyTextureEXT (GLenum mode); +GLAPI void APIENTRY glTextureLightEXT (GLenum pname); +GLAPI void APIENTRY glTextureMaterialEXT (GLenum face, GLenum mode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLAPPLYTEXTUREEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLTEXTURELIGHTEXTPROC) (GLenum pname); +typedef void (APIENTRYP PFNGLTEXTUREMATERIALEXTPROC) (GLenum face, GLenum mode); +#endif + +#ifndef GL_SGIX_blend_alpha_minmax +#define GL_SGIX_blend_alpha_minmax 1 +#endif + +#ifndef GL_EXT_bgra +#define GL_EXT_bgra 1 +#endif + +#ifndef GL_SGIX_async +#define GL_SGIX_async 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAsyncMarkerSGIX (GLuint marker); +GLAPI GLint APIENTRY glFinishAsyncSGIX (GLuint *markerp); +GLAPI GLint APIENTRY glPollAsyncSGIX (GLuint *markerp); +GLAPI GLuint APIENTRY glGenAsyncMarkersSGIX (GLsizei range); +GLAPI void APIENTRY glDeleteAsyncMarkersSGIX (GLuint marker, GLsizei range); +GLAPI GLboolean APIENTRY glIsAsyncMarkerSGIX (GLuint marker); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLASYNCMARKERSGIXPROC) (GLuint marker); +typedef GLint (APIENTRYP PFNGLFINISHASYNCSGIXPROC) (GLuint *markerp); +typedef GLint (APIENTRYP PFNGLPOLLASYNCSGIXPROC) (GLuint *markerp); +typedef GLuint (APIENTRYP PFNGLGENASYNCMARKERSSGIXPROC) (GLsizei range); +typedef void (APIENTRYP PFNGLDELETEASYNCMARKERSSGIXPROC) (GLuint marker, GLsizei range); +typedef GLboolean (APIENTRYP PFNGLISASYNCMARKERSGIXPROC) (GLuint marker); +#endif + +#ifndef GL_SGIX_async_pixel +#define GL_SGIX_async_pixel 1 +#endif + +#ifndef GL_SGIX_async_histogram +#define GL_SGIX_async_histogram 1 +#endif + +#ifndef GL_INTEL_parallel_arrays +#define GL_INTEL_parallel_arrays 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexPointervINTEL (GLint size, GLenum type, const GLvoid* *pointer); +GLAPI void APIENTRY glNormalPointervINTEL (GLenum type, const GLvoid* *pointer); +GLAPI void APIENTRY glColorPointervINTEL (GLint size, GLenum type, const GLvoid* *pointer); +GLAPI void APIENTRY glTexCoordPointervINTEL (GLint size, GLenum type, const GLvoid* *pointer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer); +typedef void (APIENTRYP PFNGLNORMALPOINTERVINTELPROC) (GLenum type, const GLvoid* *pointer); +typedef void (APIENTRYP PFNGLCOLORPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer); +#endif + +#ifndef GL_HP_occlusion_test +#define GL_HP_occlusion_test 1 +#endif + +#ifndef GL_EXT_pixel_transform +#define GL_EXT_pixel_transform 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTransformParameteriEXT (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glPixelTransformParameterfEXT (GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glPixelTransformParameterivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glPixelTransformParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); +#endif + +#ifndef GL_EXT_pixel_transform_color_table +#define GL_EXT_pixel_transform_color_table 1 +#endif + +#ifndef GL_EXT_shared_texture_palette +#define GL_EXT_shared_texture_palette 1 +#endif + +#ifndef GL_EXT_separate_specular_color +#define GL_EXT_separate_specular_color 1 +#endif + +#ifndef GL_EXT_secondary_color +#define GL_EXT_secondary_color 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSecondaryColor3bEXT (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void APIENTRY glSecondaryColor3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glSecondaryColor3dEXT (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void APIENTRY glSecondaryColor3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glSecondaryColor3fEXT (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void APIENTRY glSecondaryColor3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glSecondaryColor3iEXT (GLint red, GLint green, GLint blue); +GLAPI void APIENTRY glSecondaryColor3ivEXT (const GLint *v); +GLAPI void APIENTRY glSecondaryColor3sEXT (GLshort red, GLshort green, GLshort blue); +GLAPI void APIENTRY glSecondaryColor3svEXT (const GLshort *v); +GLAPI void APIENTRY glSecondaryColor3ubEXT (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void APIENTRY glSecondaryColor3ubvEXT (const GLubyte *v); +GLAPI void APIENTRY glSecondaryColor3uiEXT (GLuint red, GLuint green, GLuint blue); +GLAPI void APIENTRY glSecondaryColor3uivEXT (const GLuint *v); +GLAPI void APIENTRY glSecondaryColor3usEXT (GLushort red, GLushort green, GLushort blue); +GLAPI void APIENTRY glSecondaryColor3usvEXT (const GLushort *v); +GLAPI void APIENTRY glSecondaryColorPointerEXT (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BEXTPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DEXTPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FEXTPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IEXTPROC) (GLint red, GLint green, GLint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SEXTPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBEXTPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVEXTPROC) (const GLubyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIEXTPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVEXTPROC) (const GLuint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USEXTPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVEXTPROC) (const GLushort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +#endif + +#ifndef GL_EXT_texture_perturb_normal +#define GL_EXT_texture_perturb_normal 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureNormalEXT (GLenum mode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXTURENORMALEXTPROC) (GLenum mode); +#endif + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount); +#endif + +#ifndef GL_EXT_fog_coord +#define GL_EXT_fog_coord 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogCoordfEXT (GLfloat coord); +GLAPI void APIENTRY glFogCoordfvEXT (const GLfloat *coord); +GLAPI void APIENTRY glFogCoorddEXT (GLdouble coord); +GLAPI void APIENTRY glFogCoorddvEXT (const GLdouble *coord); +GLAPI void APIENTRY glFogCoordPointerEXT (GLenum type, GLsizei stride, const GLvoid *pointer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLFOGCOORDFEXTPROC) (GLfloat coord); +typedef void (APIENTRYP PFNGLFOGCOORDFVEXTPROC) (const GLfloat *coord); +typedef void (APIENTRYP PFNGLFOGCOORDDEXTPROC) (GLdouble coord); +typedef void (APIENTRYP PFNGLFOGCOORDDVEXTPROC) (const GLdouble *coord); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer); +#endif + +#ifndef GL_REND_screen_coordinates +#define GL_REND_screen_coordinates 1 +#endif + +#ifndef GL_EXT_coordinate_frame +#define GL_EXT_coordinate_frame 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTangent3bEXT (GLbyte tx, GLbyte ty, GLbyte tz); +GLAPI void APIENTRY glTangent3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glTangent3dEXT (GLdouble tx, GLdouble ty, GLdouble tz); +GLAPI void APIENTRY glTangent3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glTangent3fEXT (GLfloat tx, GLfloat ty, GLfloat tz); +GLAPI void APIENTRY glTangent3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glTangent3iEXT (GLint tx, GLint ty, GLint tz); +GLAPI void APIENTRY glTangent3ivEXT (const GLint *v); +GLAPI void APIENTRY glTangent3sEXT (GLshort tx, GLshort ty, GLshort tz); +GLAPI void APIENTRY glTangent3svEXT (const GLshort *v); +GLAPI void APIENTRY glBinormal3bEXT (GLbyte bx, GLbyte by, GLbyte bz); +GLAPI void APIENTRY glBinormal3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glBinormal3dEXT (GLdouble bx, GLdouble by, GLdouble bz); +GLAPI void APIENTRY glBinormal3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glBinormal3fEXT (GLfloat bx, GLfloat by, GLfloat bz); +GLAPI void APIENTRY glBinormal3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glBinormal3iEXT (GLint bx, GLint by, GLint bz); +GLAPI void APIENTRY glBinormal3ivEXT (const GLint *v); +GLAPI void APIENTRY glBinormal3sEXT (GLshort bx, GLshort by, GLshort bz); +GLAPI void APIENTRY glBinormal3svEXT (const GLshort *v); +GLAPI void APIENTRY glTangentPointerEXT (GLenum type, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glBinormalPointerEXT (GLenum type, GLsizei stride, const GLvoid *pointer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTANGENT3BEXTPROC) (GLbyte tx, GLbyte ty, GLbyte tz); +typedef void (APIENTRYP PFNGLTANGENT3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLTANGENT3DEXTPROC) (GLdouble tx, GLdouble ty, GLdouble tz); +typedef void (APIENTRYP PFNGLTANGENT3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLTANGENT3FEXTPROC) (GLfloat tx, GLfloat ty, GLfloat tz); +typedef void (APIENTRYP PFNGLTANGENT3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLTANGENT3IEXTPROC) (GLint tx, GLint ty, GLint tz); +typedef void (APIENTRYP PFNGLTANGENT3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLTANGENT3SEXTPROC) (GLshort tx, GLshort ty, GLshort tz); +typedef void (APIENTRYP PFNGLTANGENT3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLBINORMAL3BEXTPROC) (GLbyte bx, GLbyte by, GLbyte bz); +typedef void (APIENTRYP PFNGLBINORMAL3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLBINORMAL3DEXTPROC) (GLdouble bx, GLdouble by, GLdouble bz); +typedef void (APIENTRYP PFNGLBINORMAL3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLBINORMAL3FEXTPROC) (GLfloat bx, GLfloat by, GLfloat bz); +typedef void (APIENTRYP PFNGLBINORMAL3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLBINORMAL3IEXTPROC) (GLint bx, GLint by, GLint bz); +typedef void (APIENTRYP PFNGLBINORMAL3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLBINORMAL3SEXTPROC) (GLshort bx, GLshort by, GLshort bz); +typedef void (APIENTRYP PFNGLBINORMAL3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLTANGENTPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLBINORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer); +#endif + +#ifndef GL_EXT_texture_env_combine +#define GL_EXT_texture_env_combine 1 +#endif + +#ifndef GL_APPLE_specular_vector +#define GL_APPLE_specular_vector 1 +#endif + +#ifndef GL_APPLE_transform_hint +#define GL_APPLE_transform_hint 1 +#endif + +#ifndef GL_SGIX_fog_scale +#define GL_SGIX_fog_scale 1 +#endif + +#ifndef GL_SUNX_constant_data +#define GL_SUNX_constant_data 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFinishTextureSUNX (void); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLFINISHTEXTURESUNXPROC) (void); +#endif + +#ifndef GL_SUN_global_alpha +#define GL_SUN_global_alpha 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGlobalAlphaFactorbSUN (GLbyte factor); +GLAPI void APIENTRY glGlobalAlphaFactorsSUN (GLshort factor); +GLAPI void APIENTRY glGlobalAlphaFactoriSUN (GLint factor); +GLAPI void APIENTRY glGlobalAlphaFactorfSUN (GLfloat factor); +GLAPI void APIENTRY glGlobalAlphaFactordSUN (GLdouble factor); +GLAPI void APIENTRY glGlobalAlphaFactorubSUN (GLubyte factor); +GLAPI void APIENTRY glGlobalAlphaFactorusSUN (GLushort factor); +GLAPI void APIENTRY glGlobalAlphaFactoruiSUN (GLuint factor); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORBSUNPROC) (GLbyte factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORSSUNPROC) (GLshort factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORISUNPROC) (GLint factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORFSUNPROC) (GLfloat factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORDSUNPROC) (GLdouble factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUBSUNPROC) (GLubyte factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUSSUNPROC) (GLushort factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUISUNPROC) (GLuint factor); +#endif + +#ifndef GL_SUN_triangle_list +#define GL_SUN_triangle_list 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReplacementCodeuiSUN (GLuint code); +GLAPI void APIENTRY glReplacementCodeusSUN (GLushort code); +GLAPI void APIENTRY glReplacementCodeubSUN (GLubyte code); +GLAPI void APIENTRY glReplacementCodeuivSUN (const GLuint *code); +GLAPI void APIENTRY glReplacementCodeusvSUN (const GLushort *code); +GLAPI void APIENTRY glReplacementCodeubvSUN (const GLubyte *code); +GLAPI void APIENTRY glReplacementCodePointerSUN (GLenum type, GLsizei stride, const GLvoid* *pointer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUISUNPROC) (GLuint code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSSUNPROC) (GLushort code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBSUNPROC) (GLubyte code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVSUNPROC) (const GLuint *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSVSUNPROC) (const GLushort *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBVSUNPROC) (const GLubyte *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEPOINTERSUNPROC) (GLenum type, GLsizei stride, const GLvoid* *pointer); +#endif + +#ifndef GL_SUN_vertex +#define GL_SUN_vertex 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColor4ubVertex2fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +GLAPI void APIENTRY glColor4ubVertex2fvSUN (const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glColor4ubVertex3fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor4ubVertex3fvSUN (const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glColor3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor3fVertex3fvSUN (const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glNormal3fVertex3fSUN (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glNormal3fVertex3fvSUN (const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glColor4fNormal3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor4fNormal3fVertex3fvSUN (const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fVertex3fSUN (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fVertex3fvSUN (const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glTexCoord4fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glTexCoord4fVertex4fvSUN (const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fSUN (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fvSUN (const GLfloat *tc, const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiVertex3fSUN (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiVertex3fvSUN (const GLuint *rc, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fSUN (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fvSUN (const GLuint *rc, const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fSUN (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FVSUNPROC) (const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FVSUNPROC) (const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FSUNPROC) (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC) (const GLfloat *tc, const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC) (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC) (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC) (const GLuint *rc, const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +#endif + +#ifndef GL_EXT_blend_func_separate +#define GL_EXT_blend_func_separate 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparateEXT (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEEXTPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif + +#ifndef GL_INGR_blend_func_separate +#define GL_INGR_blend_func_separate 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINGRPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif + +#ifndef GL_INGR_color_clamp +#define GL_INGR_color_clamp 1 +#endif + +#ifndef GL_INGR_interlace_read +#define GL_INGR_interlace_read 1 +#endif + +#ifndef GL_EXT_stencil_wrap +#define GL_EXT_stencil_wrap 1 +#endif + +#ifndef GL_EXT_422_pixels +#define GL_EXT_422_pixels 1 +#endif + +#ifndef GL_NV_texgen_reflection +#define GL_NV_texgen_reflection 1 +#endif + +#ifndef GL_SUN_convolution_border_modes +#define GL_SUN_convolution_border_modes 1 +#endif + +#ifndef GL_EXT_texture_env_add +#define GL_EXT_texture_env_add 1 +#endif + +#ifndef GL_EXT_texture_lod_bias +#define GL_EXT_texture_lod_bias 1 +#endif + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#endif + +#ifndef GL_EXT_vertex_weighting +#define GL_EXT_vertex_weighting 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexWeightfEXT (GLfloat weight); +GLAPI void APIENTRY glVertexWeightfvEXT (const GLfloat *weight); +GLAPI void APIENTRY glVertexWeightPointerEXT (GLsizei size, GLenum type, GLsizei stride, const GLvoid *pointer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXWEIGHTFEXTPROC) (GLfloat weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTFVEXTPROC) (const GLfloat *weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTPOINTEREXTPROC) (GLsizei size, GLenum type, GLsizei stride, const GLvoid *pointer); +#endif + +#ifndef GL_NV_light_max_exponent +#define GL_NV_light_max_exponent 1 +#endif + +#ifndef GL_NV_vertex_array_range +#define GL_NV_vertex_array_range 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushVertexArrayRangeNV (void); +GLAPI void APIENTRY glVertexArrayRangeNV (GLsizei length, const GLvoid *pointer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGENVPROC) (void); +typedef void (APIENTRYP PFNGLVERTEXARRAYRANGENVPROC) (GLsizei length, const GLvoid *pointer); +#endif + +#ifndef GL_NV_register_combiners +#define GL_NV_register_combiners 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCombinerParameterfvNV (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glCombinerParameterfNV (GLenum pname, GLfloat param); +GLAPI void APIENTRY glCombinerParameterivNV (GLenum pname, const GLint *params); +GLAPI void APIENTRY glCombinerParameteriNV (GLenum pname, GLint param); +GLAPI void APIENTRY glCombinerInputNV (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +GLAPI void APIENTRY glCombinerOutputNV (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +GLAPI void APIENTRY glFinalCombinerInputNV (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +GLAPI void APIENTRY glGetCombinerInputParameterfvNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetCombinerInputParameterivNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetCombinerOutputParameterfvNV (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetCombinerOutputParameterivNV (GLenum stage, GLenum portion, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFinalCombinerInputParameterfvNV (GLenum variable, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFinalCombinerInputParameterivNV (GLenum variable, GLenum pname, GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFVNVPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFNVPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERIVNVPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (APIENTRYP PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +typedef void (APIENTRYP PFNGLFINALCOMBINERINPUTNVPROC) (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC) (GLenum variable, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC) (GLenum variable, GLenum pname, GLint *params); +#endif + +#ifndef GL_NV_fog_distance +#define GL_NV_fog_distance 1 +#endif + +#ifndef GL_NV_texgen_emboss +#define GL_NV_texgen_emboss 1 +#endif + +#ifndef GL_NV_blend_square +#define GL_NV_blend_square 1 +#endif + +#ifndef GL_NV_texture_env_combine4 +#define GL_NV_texture_env_combine4 1 +#endif + +#ifndef GL_MESA_resize_buffers +#define GL_MESA_resize_buffers 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glResizeBuffersMESA (void); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLRESIZEBUFFERSMESAPROC) (void); +#endif + +#ifndef GL_MESA_window_pos +#define GL_MESA_window_pos 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowPos2dMESA (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2fMESA (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2iMESA (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos2sMESA (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2svMESA (const GLshort *v); +GLAPI void APIENTRY glWindowPos3dMESA (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3fMESA (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3iMESA (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos3sMESA (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3svMESA (const GLshort *v); +GLAPI void APIENTRY glWindowPos4dMESA (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glWindowPos4dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos4fMESA (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glWindowPos4fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos4iMESA (GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glWindowPos4ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos4sMESA (GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glWindowPos4svMESA (const GLshort *v); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLWINDOWPOS2DMESAPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FMESAPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IMESAPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SMESAPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVMESAPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DMESAPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FMESAPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IMESAPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SMESAPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVMESAPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4DMESAPROC) (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLWINDOWPOS4DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4FMESAPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLWINDOWPOS4FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4IMESAPROC) (GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLWINDOWPOS4IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4SMESAPROC) (GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLWINDOWPOS4SVMESAPROC) (const GLshort *v); +#endif + +#ifndef GL_IBM_cull_vertex +#define GL_IBM_cull_vertex 1 +#endif + +#ifndef GL_IBM_multimode_draw_arrays +#define GL_IBM_multimode_draw_arrays 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiModeDrawArraysIBM (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +GLAPI void APIENTRY glMultiModeDrawElementsIBM (const GLenum *mode, const GLsizei *count, GLenum type, const GLvoid* const *indices, GLsizei primcount, GLint modestride); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLMULTIMODEDRAWARRAYSIBMPROC) (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +typedef void (APIENTRYP PFNGLMULTIMODEDRAWELEMENTSIBMPROC) (const GLenum *mode, const GLsizei *count, GLenum type, const GLvoid* const *indices, GLsizei primcount, GLint modestride); +#endif + +#ifndef GL_IBM_vertex_array_lists +#define GL_IBM_vertex_array_lists 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorPointerListIBM (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +GLAPI void APIENTRY glSecondaryColorPointerListIBM (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +GLAPI void APIENTRY glEdgeFlagPointerListIBM (GLint stride, const GLboolean* *pointer, GLint ptrstride); +GLAPI void APIENTRY glFogCoordPointerListIBM (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +GLAPI void APIENTRY glIndexPointerListIBM (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +GLAPI void APIENTRY glNormalPointerListIBM (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +GLAPI void APIENTRY glTexCoordPointerListIBM (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +GLAPI void APIENTRY glVertexPointerListIBM (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERLISTIBMPROC) (GLint stride, const GLboolean* *pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLINDEXPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLNORMALPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLVERTEXPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); +#endif + +#ifndef GL_SGIX_subsample +#define GL_SGIX_subsample 1 +#endif + +#ifndef GL_SGIX_ycrcba +#define GL_SGIX_ycrcba 1 +#endif + +#ifndef GL_SGIX_ycrcb_subsample +#define GL_SGIX_ycrcb_subsample 1 +#endif + +#ifndef GL_SGIX_depth_pass_instrument +#define GL_SGIX_depth_pass_instrument 1 +#endif + +#ifndef GL_3DFX_texture_compression_FXT1 +#define GL_3DFX_texture_compression_FXT1 1 +#endif + +#ifndef GL_3DFX_multisample +#define GL_3DFX_multisample 1 +#endif + +#ifndef GL_3DFX_tbuffer +#define GL_3DFX_tbuffer 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTbufferMask3DFX (GLuint mask); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTBUFFERMASK3DFXPROC) (GLuint mask); +#endif + +#ifndef GL_EXT_multisample +#define GL_EXT_multisample 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleMaskEXT (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glSamplePatternEXT (GLenum pattern); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLSAMPLEMASKEXTPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLSAMPLEPATTERNEXTPROC) (GLenum pattern); +#endif + +#ifndef GL_SGIX_vertex_preclip +#define GL_SGIX_vertex_preclip 1 +#endif + +#ifndef GL_SGIX_convolution_accuracy +#define GL_SGIX_convolution_accuracy 1 +#endif + +#ifndef GL_SGIX_resample +#define GL_SGIX_resample 1 +#endif + +#ifndef GL_SGIS_point_line_texgen +#define GL_SGIS_point_line_texgen 1 +#endif + +#ifndef GL_SGIS_texture_color_mask +#define GL_SGIS_texture_color_mask 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureColorMaskSGIS (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXTURECOLORMASKSGISPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +#endif + +#ifndef GL_SGIX_igloo_interface +#define GL_SGIX_igloo_interface 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIglooInterfaceSGIX (GLenum pname, const GLvoid *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLIGLOOINTERFACESGIXPROC) (GLenum pname, const GLvoid *params); +#endif + +#ifndef GL_EXT_texture_env_dot3 +#define GL_EXT_texture_env_dot3 1 +#endif + +#ifndef GL_ATI_texture_mirror_once +#define GL_ATI_texture_mirror_once 1 +#endif + +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); +GLAPI void APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); +GLAPI GLboolean APIENTRY glIsFenceNV (GLuint fence); +GLAPI GLboolean APIENTRY glTestFenceNV (GLuint fence); +GLAPI void APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); +GLAPI void APIENTRY glFinishFenceNV (GLuint fence); +GLAPI void APIENTRY glSetFenceNV (GLuint fence, GLenum condition); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#endif + +#ifndef GL_NV_evaluators +#define GL_NV_evaluators 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const GLvoid *points); +GLAPI void APIENTRY glMapParameterivNV (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMapParameterfvNV (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, GLvoid *points); +GLAPI void APIENTRY glGetMapParameterivNV (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMapParameterfvNV (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMapAttribParameterivNV (GLenum target, GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMapAttribParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glEvalMapsNV (GLenum target, GLenum mode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const GLvoid *points); +typedef void (APIENTRYP PFNGLMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, GLvoid *points); +typedef void (APIENTRYP PFNGLGETMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERIVNVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLEVALMAPSNVPROC) (GLenum target, GLenum mode); +#endif + +#ifndef GL_NV_packed_depth_stencil +#define GL_NV_packed_depth_stencil 1 +#endif + +#ifndef GL_NV_register_combiners2 +#define GL_NV_register_combiners2 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCombinerStageParameterfvNV (GLenum stage, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetCombinerStageParameterfvNV (GLenum stage, GLenum pname, GLfloat *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat *params); +#endif + +#ifndef GL_NV_texture_compression_vtc +#define GL_NV_texture_compression_vtc 1 +#endif + +#ifndef GL_NV_texture_rectangle +#define GL_NV_texture_rectangle 1 +#endif + +#ifndef GL_NV_texture_shader +#define GL_NV_texture_shader 1 +#endif + +#ifndef GL_NV_texture_shader2 +#define GL_NV_texture_shader2 1 +#endif + +#ifndef GL_NV_vertex_array_range2 +#define GL_NV_vertex_array_range2 1 +#endif + +#ifndef GL_NV_vertex_program +#define GL_NV_vertex_program 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAreProgramsResidentNV (GLsizei n, const GLuint *programs, GLboolean *residences); +GLAPI void APIENTRY glBindProgramNV (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteProgramsNV (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glExecuteProgramNV (GLenum target, GLuint id, const GLfloat *params); +GLAPI void APIENTRY glGenProgramsNV (GLsizei n, GLuint *programs); +GLAPI void APIENTRY glGetProgramParameterdvNV (GLenum target, GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetProgramParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetProgramivNV (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramStringNV (GLuint id, GLenum pname, GLubyte *program); +GLAPI void APIENTRY glGetTrackMatrixivNV (GLenum target, GLuint address, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribdvNV (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfvNV (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribivNV (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointervNV (GLuint index, GLenum pname, GLvoid* *pointer); +GLAPI GLboolean APIENTRY glIsProgramNV (GLuint id); +GLAPI void APIENTRY glLoadProgramNV (GLenum target, GLuint id, GLsizei len, const GLubyte *program); +GLAPI void APIENTRY glProgramParameter4dNV (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramParameter4dvNV (GLenum target, GLuint index, const GLdouble *v); +GLAPI void APIENTRY glProgramParameter4fNV (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramParameter4fvNV (GLenum target, GLuint index, const GLfloat *v); +GLAPI void APIENTRY glProgramParameters4dvNV (GLenum target, GLuint index, GLuint count, const GLdouble *v); +GLAPI void APIENTRY glProgramParameters4fvNV (GLenum target, GLuint index, GLuint count, const GLfloat *v); +GLAPI void APIENTRY glRequestResidentProgramsNV (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glTrackMatrixNV (GLenum target, GLuint address, GLenum matrix, GLenum transform); +GLAPI void APIENTRY glVertexAttribPointerNV (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glVertexAttrib1dNV (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1fNV (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1sNV (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2dNV (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2fNV (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2sNV (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3sNV (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4sNV (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubNV (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4ubvNV (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribs1dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs1fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs1svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs2dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs2fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs2svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs3dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs3fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs3svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs4dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs4fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs4svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs4ubvNV (GLuint index, GLsizei count, const GLubyte *v); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLboolean (APIENTRYP PFNGLAREPROGRAMSRESIDENTNVPROC) (GLsizei n, const GLuint *programs, GLboolean *residences); +typedef void (APIENTRYP PFNGLBINDPROGRAMNVPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETEPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLEXECUTEPROGRAMNVPROC) (GLenum target, GLuint id, const GLfloat *params); +typedef void (APIENTRYP PFNGLGENPROGRAMSNVPROC) (GLsizei n, GLuint *programs); +typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERDVNVPROC) (GLenum target, GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMIVNVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGNVPROC) (GLuint id, GLenum pname, GLubyte *program); +typedef void (APIENTRYP PFNGLGETTRACKMATRIXIVNVPROC) (GLenum target, GLuint address, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVNVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVNVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVNVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVNVPROC) (GLuint index, GLenum pname, GLvoid* *pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLLOADPROGRAMNVPROC) (GLenum target, GLuint id, GLsizei len, const GLubyte *program); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DNVPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DVNVPROC) (GLenum target, GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FNVPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FVNVPROC) (GLenum target, GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4DVNVPROC) (GLenum target, GLuint index, GLuint count, const GLdouble *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4FVNVPROC) (GLenum target, GLuint index, GLuint count, const GLfloat *v); +typedef void (APIENTRYP PFNGLREQUESTRESIDENTPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLTRACKMATRIXNVPROC) (GLenum target, GLuint address, GLenum matrix, GLenum transform); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DNVPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FNVPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SNVPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DNVPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FNVPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SNVPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBNVPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVNVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4UBVNVPROC) (GLuint index, GLsizei count, const GLubyte *v); +#endif + +#ifndef GL_SGIX_texture_coordinate_clamp +#define GL_SGIX_texture_coordinate_clamp 1 +#endif + +#ifndef GL_SGIX_scalebias_hint +#define GL_SGIX_scalebias_hint 1 +#endif + +#ifndef GL_OML_interlace +#define GL_OML_interlace 1 +#endif + +#ifndef GL_OML_subsample +#define GL_OML_subsample 1 +#endif + +#ifndef GL_OML_resample +#define GL_OML_resample 1 +#endif + +#ifndef GL_NV_copy_depth_to_color +#define GL_NV_copy_depth_to_color 1 +#endif + +#ifndef GL_ATI_envmap_bumpmap +#define GL_ATI_envmap_bumpmap 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBumpParameterivATI (GLenum pname, const GLint *param); +GLAPI void APIENTRY glTexBumpParameterfvATI (GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glGetTexBumpParameterivATI (GLenum pname, GLint *param); +GLAPI void APIENTRY glGetTexBumpParameterfvATI (GLenum pname, GLfloat *param); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERIVATIPROC) (GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERFVATIPROC) (GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERIVATIPROC) (GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERFVATIPROC) (GLenum pname, GLfloat *param); +#endif + +#ifndef GL_ATI_fragment_shader +#define GL_ATI_fragment_shader 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glGenFragmentShadersATI (GLuint range); +GLAPI void APIENTRY glBindFragmentShaderATI (GLuint id); +GLAPI void APIENTRY glDeleteFragmentShaderATI (GLuint id); +GLAPI void APIENTRY glBeginFragmentShaderATI (void); +GLAPI void APIENTRY glEndFragmentShaderATI (void); +GLAPI void APIENTRY glPassTexCoordATI (GLuint dst, GLuint coord, GLenum swizzle); +GLAPI void APIENTRY glSampleMapATI (GLuint dst, GLuint interp, GLenum swizzle); +GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +GLAPI void APIENTRY glAlphaFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +GLAPI void APIENTRY glAlphaFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +GLAPI void APIENTRY glAlphaFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +GLAPI void APIENTRY glSetFragmentShaderConstantATI (GLuint dst, const GLfloat *value); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLuint (APIENTRYP PFNGLGENFRAGMENTSHADERSATIPROC) (GLuint range); +typedef void (APIENTRYP PFNGLBINDFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (APIENTRYP PFNGLDELETEFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINFRAGMENTSHADERATIPROC) (void); +typedef void (APIENTRYP PFNGLENDFRAGMENTSHADERATIPROC) (void); +typedef void (APIENTRYP PFNGLPASSTEXCOORDATIPROC) (GLuint dst, GLuint coord, GLenum swizzle); +typedef void (APIENTRYP PFNGLSAMPLEMAPATIPROC) (GLuint dst, GLuint interp, GLenum swizzle); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (APIENTRYP PFNGLSETFRAGMENTSHADERCONSTANTATIPROC) (GLuint dst, const GLfloat *value); +#endif + +#ifndef GL_ATI_pn_triangles +#define GL_ATI_pn_triangles 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPNTrianglesiATI (GLenum pname, GLint param); +GLAPI void APIENTRY glPNTrianglesfATI (GLenum pname, GLfloat param); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPNTRIANGLESIATIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPNTRIANGLESFATIPROC) (GLenum pname, GLfloat param); +#endif + +#ifndef GL_ATI_vertex_array_object +#define GL_ATI_vertex_array_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glNewObjectBufferATI (GLsizei size, const GLvoid *pointer, GLenum usage); +GLAPI GLboolean APIENTRY glIsObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glUpdateObjectBufferATI (GLuint buffer, GLuint offset, GLsizei size, const GLvoid *pointer, GLenum preserve); +GLAPI void APIENTRY glGetObjectBufferfvATI (GLuint buffer, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetObjectBufferivATI (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glFreeObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glArrayObjectATI (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetArrayObjectfvATI (GLenum array, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetArrayObjectivATI (GLenum array, GLenum pname, GLint *params); +GLAPI void APIENTRY glVariantArrayObjectATI (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetVariantArrayObjectfvATI (GLuint id, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVariantArrayObjectivATI (GLuint id, GLenum pname, GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLuint (APIENTRYP PFNGLNEWOBJECTBUFFERATIPROC) (GLsizei size, const GLvoid *pointer, GLenum usage); +typedef GLboolean (APIENTRYP PFNGLISOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLUPDATEOBJECTBUFFERATIPROC) (GLuint buffer, GLuint offset, GLsizei size, const GLvoid *pointer, GLenum preserve); +typedef void (APIENTRYP PFNGLGETOBJECTBUFFERFVATIPROC) (GLuint buffer, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETOBJECTBUFFERIVATIPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLFREEOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLARRAYOBJECTATIPROC) (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETARRAYOBJECTFVATIPROC) (GLenum array, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETARRAYOBJECTIVATIPROC) (GLenum array, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLVARIANTARRAYOBJECTATIPROC) (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTFVATIPROC) (GLuint id, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTIVATIPROC) (GLuint id, GLenum pname, GLint *params); +#endif + +#ifndef GL_EXT_vertex_shader +#define GL_EXT_vertex_shader 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginVertexShaderEXT (void); +GLAPI void APIENTRY glEndVertexShaderEXT (void); +GLAPI void APIENTRY glBindVertexShaderEXT (GLuint id); +GLAPI GLuint APIENTRY glGenVertexShadersEXT (GLuint range); +GLAPI void APIENTRY glDeleteVertexShaderEXT (GLuint id); +GLAPI void APIENTRY glShaderOp1EXT (GLenum op, GLuint res, GLuint arg1); +GLAPI void APIENTRY glShaderOp2EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +GLAPI void APIENTRY glShaderOp3EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +GLAPI void APIENTRY glSwizzleEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +GLAPI void APIENTRY glWriteMaskEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +GLAPI void APIENTRY glInsertComponentEXT (GLuint res, GLuint src, GLuint num); +GLAPI void APIENTRY glExtractComponentEXT (GLuint res, GLuint src, GLuint num); +GLAPI GLuint APIENTRY glGenSymbolsEXT (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); +GLAPI void APIENTRY glSetInvariantEXT (GLuint id, GLenum type, const GLvoid *addr); +GLAPI void APIENTRY glSetLocalConstantEXT (GLuint id, GLenum type, const GLvoid *addr); +GLAPI void APIENTRY glVariantbvEXT (GLuint id, const GLbyte *addr); +GLAPI void APIENTRY glVariantsvEXT (GLuint id, const GLshort *addr); +GLAPI void APIENTRY glVariantivEXT (GLuint id, const GLint *addr); +GLAPI void APIENTRY glVariantfvEXT (GLuint id, const GLfloat *addr); +GLAPI void APIENTRY glVariantdvEXT (GLuint id, const GLdouble *addr); +GLAPI void APIENTRY glVariantubvEXT (GLuint id, const GLubyte *addr); +GLAPI void APIENTRY glVariantusvEXT (GLuint id, const GLushort *addr); +GLAPI void APIENTRY glVariantuivEXT (GLuint id, const GLuint *addr); +GLAPI void APIENTRY glVariantPointerEXT (GLuint id, GLenum type, GLuint stride, const GLvoid *addr); +GLAPI void APIENTRY glEnableVariantClientStateEXT (GLuint id); +GLAPI void APIENTRY glDisableVariantClientStateEXT (GLuint id); +GLAPI GLuint APIENTRY glBindLightParameterEXT (GLenum light, GLenum value); +GLAPI GLuint APIENTRY glBindMaterialParameterEXT (GLenum face, GLenum value); +GLAPI GLuint APIENTRY glBindTexGenParameterEXT (GLenum unit, GLenum coord, GLenum value); +GLAPI GLuint APIENTRY glBindTextureUnitParameterEXT (GLenum unit, GLenum value); +GLAPI GLuint APIENTRY glBindParameterEXT (GLenum value); +GLAPI GLboolean APIENTRY glIsVariantEnabledEXT (GLuint id, GLenum cap); +GLAPI void APIENTRY glGetVariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetVariantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetVariantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +GLAPI void APIENTRY glGetVariantPointervEXT (GLuint id, GLenum value, GLvoid* *data); +GLAPI void APIENTRY glGetInvariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetInvariantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetInvariantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +GLAPI void APIENTRY glGetLocalConstantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetLocalConstantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetLocalConstantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBEGINVERTEXSHADEREXTPROC) (void); +typedef void (APIENTRYP PFNGLENDVERTEXSHADEREXTPROC) (void); +typedef void (APIENTRYP PFNGLBINDVERTEXSHADEREXTPROC) (GLuint id); +typedef GLuint (APIENTRYP PFNGLGENVERTEXSHADERSEXTPROC) (GLuint range); +typedef void (APIENTRYP PFNGLDELETEVERTEXSHADEREXTPROC) (GLuint id); +typedef void (APIENTRYP PFNGLSHADEROP1EXTPROC) (GLenum op, GLuint res, GLuint arg1); +typedef void (APIENTRYP PFNGLSHADEROP2EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +typedef void (APIENTRYP PFNGLSHADEROP3EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +typedef void (APIENTRYP PFNGLSWIZZLEEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (APIENTRYP PFNGLWRITEMASKEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (APIENTRYP PFNGLINSERTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef void (APIENTRYP PFNGLEXTRACTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef GLuint (APIENTRYP PFNGLGENSYMBOLSEXTPROC) (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); +typedef void (APIENTRYP PFNGLSETINVARIANTEXTPROC) (GLuint id, GLenum type, const GLvoid *addr); +typedef void (APIENTRYP PFNGLSETLOCALCONSTANTEXTPROC) (GLuint id, GLenum type, const GLvoid *addr); +typedef void (APIENTRYP PFNGLVARIANTBVEXTPROC) (GLuint id, const GLbyte *addr); +typedef void (APIENTRYP PFNGLVARIANTSVEXTPROC) (GLuint id, const GLshort *addr); +typedef void (APIENTRYP PFNGLVARIANTIVEXTPROC) (GLuint id, const GLint *addr); +typedef void (APIENTRYP PFNGLVARIANTFVEXTPROC) (GLuint id, const GLfloat *addr); +typedef void (APIENTRYP PFNGLVARIANTDVEXTPROC) (GLuint id, const GLdouble *addr); +typedef void (APIENTRYP PFNGLVARIANTUBVEXTPROC) (GLuint id, const GLubyte *addr); +typedef void (APIENTRYP PFNGLVARIANTUSVEXTPROC) (GLuint id, const GLushort *addr); +typedef void (APIENTRYP PFNGLVARIANTUIVEXTPROC) (GLuint id, const GLuint *addr); +typedef void (APIENTRYP PFNGLVARIANTPOINTEREXTPROC) (GLuint id, GLenum type, GLuint stride, const GLvoid *addr); +typedef void (APIENTRYP PFNGLENABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef void (APIENTRYP PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef GLuint (APIENTRYP PFNGLBINDLIGHTPARAMETEREXTPROC) (GLenum light, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDMATERIALPARAMETEREXTPROC) (GLenum face, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDTEXGENPARAMETEREXTPROC) (GLenum unit, GLenum coord, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDTEXTUREUNITPARAMETEREXTPROC) (GLenum unit, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDPARAMETEREXTPROC) (GLenum value); +typedef GLboolean (APIENTRYP PFNGLISVARIANTENABLEDEXTPROC) (GLuint id, GLenum cap); +typedef void (APIENTRYP PFNGLGETVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (APIENTRYP PFNGLGETVARIANTPOINTERVEXTPROC) (GLuint id, GLenum value, GLvoid* *data); +typedef void (APIENTRYP PFNGLGETINVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETINVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +#endif + +#ifndef GL_ATI_vertex_streams +#define GL_ATI_vertex_streams 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexStream1sATI (GLenum stream, GLshort x); +GLAPI void APIENTRY glVertexStream1svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream1iATI (GLenum stream, GLint x); +GLAPI void APIENTRY glVertexStream1ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream1fATI (GLenum stream, GLfloat x); +GLAPI void APIENTRY glVertexStream1fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream1dATI (GLenum stream, GLdouble x); +GLAPI void APIENTRY glVertexStream1dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream2sATI (GLenum stream, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexStream2svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream2iATI (GLenum stream, GLint x, GLint y); +GLAPI void APIENTRY glVertexStream2ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream2fATI (GLenum stream, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexStream2fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream2dATI (GLenum stream, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexStream2dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream3sATI (GLenum stream, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexStream3svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream3iATI (GLenum stream, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexStream3ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream3fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexStream3fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream3dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexStream3dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream4sATI (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexStream4svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream4iATI (GLenum stream, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexStream4ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream4fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexStream4fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream4dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexStream4dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glNormalStream3bATI (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); +GLAPI void APIENTRY glNormalStream3bvATI (GLenum stream, const GLbyte *coords); +GLAPI void APIENTRY glNormalStream3sATI (GLenum stream, GLshort nx, GLshort ny, GLshort nz); +GLAPI void APIENTRY glNormalStream3svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glNormalStream3iATI (GLenum stream, GLint nx, GLint ny, GLint nz); +GLAPI void APIENTRY glNormalStream3ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glNormalStream3fATI (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); +GLAPI void APIENTRY glNormalStream3fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glNormalStream3dATI (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); +GLAPI void APIENTRY glNormalStream3dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glClientActiveVertexStreamATI (GLenum stream); +GLAPI void APIENTRY glVertexBlendEnviATI (GLenum pname, GLint param); +GLAPI void APIENTRY glVertexBlendEnvfATI (GLenum pname, GLfloat param); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXSTREAM1SATIPROC) (GLenum stream, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1IATIPROC) (GLenum stream, GLint x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1FATIPROC) (GLenum stream, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1DATIPROC) (GLenum stream, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2SATIPROC) (GLenum stream, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2IATIPROC) (GLenum stream, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2FATIPROC) (GLenum stream, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2DATIPROC) (GLenum stream, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3IATIPROC) (GLenum stream, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4IATIPROC) (GLenum stream, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3BATIPROC) (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3BVATIPROC) (GLenum stream, const GLbyte *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3SATIPROC) (GLenum stream, GLshort nx, GLshort ny, GLshort nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3IATIPROC) (GLenum stream, GLint nx, GLint ny, GLint nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3FATIPROC) (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3DATIPROC) (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC) (GLenum stream); +typedef void (APIENTRYP PFNGLVERTEXBLENDENVIATIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLVERTEXBLENDENVFATIPROC) (GLenum pname, GLfloat param); +#endif + +#ifndef GL_ATI_element_array +#define GL_ATI_element_array 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glElementPointerATI (GLenum type, const GLvoid *pointer); +GLAPI void APIENTRY glDrawElementArrayATI (GLenum mode, GLsizei count); +GLAPI void APIENTRY glDrawRangeElementArrayATI (GLenum mode, GLuint start, GLuint end, GLsizei count); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLELEMENTPOINTERATIPROC) (GLenum type, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYATIPROC) (GLenum mode, GLsizei count); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYATIPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count); +#endif + +#ifndef GL_SUN_mesh_array +#define GL_SUN_mesh_array 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawMeshArraysSUN (GLenum mode, GLint first, GLsizei count, GLsizei width); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDRAWMESHARRAYSSUNPROC) (GLenum mode, GLint first, GLsizei count, GLsizei width); +#endif + +#ifndef GL_SUN_slice_accum +#define GL_SUN_slice_accum 1 +#endif + +#ifndef GL_NV_multisample_filter_hint +#define GL_NV_multisample_filter_hint 1 +#endif + +#ifndef GL_NV_depth_clamp +#define GL_NV_depth_clamp 1 +#endif + +#ifndef GL_NV_occlusion_query +#define GL_NV_occlusion_query 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenOcclusionQueriesNV (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteOcclusionQueriesNV (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsOcclusionQueryNV (GLuint id); +GLAPI void APIENTRY glBeginOcclusionQueryNV (GLuint id); +GLAPI void APIENTRY glEndOcclusionQueryNV (void); +GLAPI void APIENTRY glGetOcclusionQueryivNV (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetOcclusionQueryuivNV (GLuint id, GLenum pname, GLuint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGENOCCLUSIONQUERIESNVPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEOCCLUSIONQUERIESNVPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLENDOCCLUSIONQUERYNVPROC) (void); +typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYIVNVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYUIVNVPROC) (GLuint id, GLenum pname, GLuint *params); +#endif + +#ifndef GL_NV_point_sprite +#define GL_NV_point_sprite 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameteriNV (GLenum pname, GLint param); +GLAPI void APIENTRY glPointParameterivNV (GLenum pname, const GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPOINTPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVNVPROC) (GLenum pname, const GLint *params); +#endif + +#ifndef GL_NV_texture_shader3 +#define GL_NV_texture_shader3 1 +#endif + +#ifndef GL_NV_vertex_program1_1 +#define GL_NV_vertex_program1_1 1 +#endif + +#ifndef GL_EXT_shadow_funcs +#define GL_EXT_shadow_funcs 1 +#endif + +#ifndef GL_EXT_stencil_two_side +#define GL_EXT_stencil_two_side 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveStencilFaceEXT (GLenum face); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLACTIVESTENCILFACEEXTPROC) (GLenum face); +#endif + +#ifndef GL_ATI_text_fragment_shader +#define GL_ATI_text_fragment_shader 1 +#endif + +#ifndef GL_APPLE_client_storage +#define GL_APPLE_client_storage 1 +#endif + +#ifndef GL_APPLE_element_array +#define GL_APPLE_element_array 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glElementPointerAPPLE (GLenum type, const GLvoid *pointer); +GLAPI void APIENTRY glDrawElementArrayAPPLE (GLenum mode, GLint first, GLsizei count); +GLAPI void APIENTRY glDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +GLAPI void APIENTRY glMultiDrawElementArrayAPPLE (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLELEMENTPOINTERAPPLEPROC) (GLenum type, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); +#endif + +#ifndef GL_APPLE_fence +#define GL_APPLE_fence 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenFencesAPPLE (GLsizei n, GLuint *fences); +GLAPI void APIENTRY glDeleteFencesAPPLE (GLsizei n, const GLuint *fences); +GLAPI void APIENTRY glSetFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glIsFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glTestFenceAPPLE (GLuint fence); +GLAPI void APIENTRY glFinishFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glTestObjectAPPLE (GLenum object, GLuint name); +GLAPI void APIENTRY glFinishObjectAPPLE (GLenum object, GLint name); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGENFENCESAPPLEPROC) (GLsizei n, GLuint *fences); +typedef void (APIENTRYP PFNGLDELETEFENCESAPPLEPROC) (GLsizei n, const GLuint *fences); +typedef void (APIENTRYP PFNGLSETFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLISFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTFENCEAPPLEPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLFINISHFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTOBJECTAPPLEPROC) (GLenum object, GLuint name); +typedef void (APIENTRYP PFNGLFINISHOBJECTAPPLEPROC) (GLenum object, GLint name); +#endif + +#ifndef GL_APPLE_vertex_array_object +#define GL_APPLE_vertex_array_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindVertexArrayAPPLE (GLuint array); +GLAPI void APIENTRY glDeleteVertexArraysAPPLE (GLsizei n, const GLuint *arrays); +GLAPI void APIENTRY glGenVertexArraysAPPLE (GLsizei n, GLuint *arrays); +GLAPI GLboolean APIENTRY glIsVertexArrayAPPLE (GLuint array); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYAPPLEPROC) (GLuint array); +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays); +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYAPPLEPROC) (GLuint array); +#endif + +#ifndef GL_APPLE_vertex_array_range +#define GL_APPLE_vertex_array_range 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexArrayRangeAPPLE (GLsizei length, GLvoid *pointer); +GLAPI void APIENTRY glFlushVertexArrayRangeAPPLE (GLsizei length, GLvoid *pointer); +GLAPI void APIENTRY glVertexArrayParameteriAPPLE (GLenum pname, GLint param); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, GLvoid *pointer); +typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, GLvoid *pointer); +typedef void (APIENTRYP PFNGLVERTEXARRAYPARAMETERIAPPLEPROC) (GLenum pname, GLint param); +#endif + +#ifndef GL_APPLE_ycbcr_422 +#define GL_APPLE_ycbcr_422 1 +#endif + +#ifndef GL_S3_s3tc +#define GL_S3_s3tc 1 +#endif + +#ifndef GL_ATI_draw_buffers +#define GL_ATI_draw_buffers 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawBuffersATI (GLsizei n, const GLenum *bufs); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDRAWBUFFERSATIPROC) (GLsizei n, const GLenum *bufs); +#endif + +#ifndef GL_ATI_pixel_format_float +#define GL_ATI_pixel_format_float 1 +/* This is really a WGL extension, but defines some associated GL enums. + * ATI does not export "GL_ATI_pixel_format_float" in the GL_EXTENSIONS string. + */ +#endif + +#ifndef GL_ATI_texture_env_combine3 +#define GL_ATI_texture_env_combine3 1 +#endif + +#ifndef GL_ATI_texture_float +#define GL_ATI_texture_float 1 +#endif + +#ifndef GL_NV_float_buffer +#define GL_NV_float_buffer 1 +#endif + +#ifndef GL_NV_fragment_program +#define GL_NV_fragment_program 1 +/* Some NV_fragment_program entry points are shared with ARB_vertex_program. */ +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramNamedParameter4fNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramNamedParameter4dNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramNamedParameter4fvNV (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); +GLAPI void APIENTRY glProgramNamedParameter4dvNV (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); +GLAPI void APIENTRY glGetProgramNamedParameterfvNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); +GLAPI void APIENTRY glGetProgramNamedParameterdvNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); +typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); +#endif + +#ifndef GL_NV_half_float +#define GL_NV_half_float 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertex2hNV (GLhalfNV x, GLhalfNV y); +GLAPI void APIENTRY glVertex2hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertex3hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z); +GLAPI void APIENTRY glVertex3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertex4hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +GLAPI void APIENTRY glVertex4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glNormal3hNV (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); +GLAPI void APIENTRY glNormal3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +GLAPI void APIENTRY glColor3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glColor4hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); +GLAPI void APIENTRY glColor4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord1hNV (GLhalfNV s); +GLAPI void APIENTRY glTexCoord1hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord2hNV (GLhalfNV s, GLhalfNV t); +GLAPI void APIENTRY glTexCoord2hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord3hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r); +GLAPI void APIENTRY glTexCoord3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord4hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +GLAPI void APIENTRY glTexCoord4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord1hNV (GLenum target, GLhalfNV s); +GLAPI void APIENTRY glMultiTexCoord1hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord2hNV (GLenum target, GLhalfNV s, GLhalfNV t); +GLAPI void APIENTRY glMultiTexCoord2hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord3hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); +GLAPI void APIENTRY glMultiTexCoord3hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord4hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +GLAPI void APIENTRY glMultiTexCoord4hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glFogCoordhNV (GLhalfNV fog); +GLAPI void APIENTRY glFogCoordhvNV (const GLhalfNV *fog); +GLAPI void APIENTRY glSecondaryColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +GLAPI void APIENTRY glSecondaryColor3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertexWeighthNV (GLhalfNV weight); +GLAPI void APIENTRY glVertexWeighthvNV (const GLhalfNV *weight); +GLAPI void APIENTRY glVertexAttrib1hNV (GLuint index, GLhalfNV x); +GLAPI void APIENTRY glVertexAttrib1hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib2hNV (GLuint index, GLhalfNV x, GLhalfNV y); +GLAPI void APIENTRY glVertexAttrib2hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib3hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); +GLAPI void APIENTRY glVertexAttrib3hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib4hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +GLAPI void APIENTRY glVertexAttrib4hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs1hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs2hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs3hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs4hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEX2HNVPROC) (GLhalfNV x, GLhalfNV y); +typedef void (APIENTRYP PFNGLVERTEX2HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEX3HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z); +typedef void (APIENTRYP PFNGLVERTEX3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEX4HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +typedef void (APIENTRYP PFNGLVERTEX4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLNORMAL3HNVPROC) (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); +typedef void (APIENTRYP PFNGLNORMAL3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +typedef void (APIENTRYP PFNGLCOLOR3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLCOLOR4HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); +typedef void (APIENTRYP PFNGLCOLOR4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD1HNVPROC) (GLhalfNV s); +typedef void (APIENTRYP PFNGLTEXCOORD1HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD2HNVPROC) (GLhalfNV s, GLhalfNV t); +typedef void (APIENTRYP PFNGLTEXCOORD2HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD3HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r); +typedef void (APIENTRYP PFNGLTEXCOORD3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD4HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +typedef void (APIENTRYP PFNGLTEXCOORD4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1HNVPROC) (GLenum target, GLhalfNV s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLFOGCOORDHNVPROC) (GLhalfNV fog); +typedef void (APIENTRYP PFNGLFOGCOORDHVNVPROC) (const GLhalfNV *fog); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTHNVPROC) (GLhalfNV weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTHVNVPROC) (const GLhalfNV *weight); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1HNVPROC) (GLuint index, GLhalfNV x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +#endif + +#ifndef GL_NV_pixel_data_range +#define GL_NV_pixel_data_range 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelDataRangeNV (GLenum target, GLsizei length, GLvoid *pointer); +GLAPI void APIENTRY glFlushPixelDataRangeNV (GLenum target); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPIXELDATARANGENVPROC) (GLenum target, GLsizei length, GLvoid *pointer); +typedef void (APIENTRYP PFNGLFLUSHPIXELDATARANGENVPROC) (GLenum target); +#endif + +#ifndef GL_NV_primitive_restart +#define GL_NV_primitive_restart 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPrimitiveRestartNV (void); +GLAPI void APIENTRY glPrimitiveRestartIndexNV (GLuint index); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTNVPROC) (void); +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXNVPROC) (GLuint index); +#endif + +#ifndef GL_NV_texture_expand_normal +#define GL_NV_texture_expand_normal 1 +#endif + +#ifndef GL_NV_vertex_program2 +#define GL_NV_vertex_program2 1 +#endif + +#ifndef GL_ATI_map_object_buffer +#define GL_ATI_map_object_buffer 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLvoid* APIENTRY glMapObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glUnmapObjectBufferATI (GLuint buffer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLvoid* (APIENTRYP PFNGLMAPOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLUNMAPOBJECTBUFFERATIPROC) (GLuint buffer); +#endif + +#ifndef GL_ATI_separate_stencil +#define GL_ATI_separate_stencil 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilOpSeparateATI (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI void APIENTRY glStencilFuncSeparateATI (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEATIPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEATIPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +#endif + +#ifndef GL_ATI_vertex_attrib_array_object +#define GL_ATI_vertex_attrib_array_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribArrayObjectATI (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetVertexAttribArrayObjectfvATI (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribArrayObjectivATI (GLuint index, GLenum pname, GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXATTRIBARRAYOBJECTATIPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC) (GLuint index, GLenum pname, GLint *params); +#endif + +#ifndef GL_OES_read_format +#define GL_OES_read_format 1 +#endif + +#ifndef GL_EXT_depth_bounds_test +#define GL_EXT_depth_bounds_test 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthBoundsEXT (GLclampd zmin, GLclampd zmax); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDEPTHBOUNDSEXTPROC) (GLclampd zmin, GLclampd zmax); +#endif + +#ifndef GL_EXT_texture_mirror_clamp +#define GL_EXT_texture_mirror_clamp 1 +#endif + +#ifndef GL_EXT_blend_equation_separate +#define GL_EXT_blend_equation_separate 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationSeparateEXT (GLenum modeRGB, GLenum modeAlpha); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEEXTPROC) (GLenum modeRGB, GLenum modeAlpha); +#endif + +#ifndef GL_MESA_pack_invert +#define GL_MESA_pack_invert 1 +#endif + +#ifndef GL_MESA_ycbcr_texture +#define GL_MESA_ycbcr_texture 1 +#endif + +#ifndef GL_EXT_pixel_buffer_object +#define GL_EXT_pixel_buffer_object 1 +#endif + +#ifndef GL_NV_fragment_program_option +#define GL_NV_fragment_program_option 1 +#endif + +#ifndef GL_NV_fragment_program2 +#define GL_NV_fragment_program2 1 +#endif + +#ifndef GL_NV_vertex_program2_option +#define GL_NV_vertex_program2_option 1 +#endif + +#ifndef GL_NV_vertex_program3 +#define GL_NV_vertex_program3 1 +#endif + +#ifndef GL_EXT_framebuffer_object +#define GL_EXT_framebuffer_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glIsRenderbufferEXT (GLuint renderbuffer); +GLAPI void APIENTRY glBindRenderbufferEXT (GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glDeleteRenderbuffersEXT (GLsizei n, const GLuint *renderbuffers); +GLAPI void APIENTRY glGenRenderbuffersEXT (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glRenderbufferStorageEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetRenderbufferParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI GLboolean APIENTRY glIsFramebufferEXT (GLuint framebuffer); +GLAPI void APIENTRY glBindFramebufferEXT (GLenum target, GLuint framebuffer); +GLAPI void APIENTRY glDeleteFramebuffersEXT (GLsizei n, const GLuint *framebuffers); +GLAPI void APIENTRY glGenFramebuffersEXT (GLsizei n, GLuint *framebuffers); +GLAPI GLenum APIENTRY glCheckFramebufferStatusEXT (GLenum target); +GLAPI void APIENTRY glFramebufferTexture1DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture2DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture3DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glFramebufferRenderbufferEXT (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetFramebufferAttachmentParameterivEXT (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateMipmapEXT (GLenum target); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFEREXTPROC) (GLuint renderbuffer); +typedef void (APIENTRYP PFNGLBINDRENDERBUFFEREXTPROC) (GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSEXTPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSEXTPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFEREXTPROC) (GLuint framebuffer); +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFEREXTPROC) (GLenum target, GLuint framebuffer); +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSEXTPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSEXTPROC) (GLsizei n, GLuint *framebuffers); +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC) (GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATEMIPMAPEXTPROC) (GLenum target); +#endif + +#ifndef GL_GREMEDY_string_marker +#define GL_GREMEDY_string_marker 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStringMarkerGREMEDY (GLsizei len, const GLvoid *string); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLSTRINGMARKERGREMEDYPROC) (GLsizei len, const GLvoid *string); +#endif + +#ifndef GL_EXT_packed_depth_stencil +#define GL_EXT_packed_depth_stencil 1 +#endif + +#ifndef GL_EXT_stencil_clear_tag +#define GL_EXT_stencil_clear_tag 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilClearTagEXT (GLsizei stencilTagBits, GLuint stencilClearTag); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLSTENCILCLEARTAGEXTPROC) (GLsizei stencilTagBits, GLuint stencilClearTag); +#endif + +#ifndef GL_EXT_texture_sRGB +#define GL_EXT_texture_sRGB 1 +#endif + +#ifndef GL_EXT_framebuffer_blit +#define GL_EXT_framebuffer_blit 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlitFramebufferEXT (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFEREXTPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif + +#ifndef GL_EXT_framebuffer_multisample +#define GL_EXT_framebuffer_multisample 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif + +#ifndef GL_MESAX_texture_stack +#define GL_MESAX_texture_stack 1 +#endif + +#ifndef GL_EXT_timer_query +#define GL_EXT_timer_query 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64EXT *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64EXT *params); +#endif + +#ifndef GL_EXT_gpu_program_parameters +#define GL_EXT_gpu_program_parameters 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +#endif + +#ifndef GL_APPLE_flush_buffer_range +#define GL_APPLE_flush_buffer_range 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferParameteriAPPLE (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glFlushMappedBufferRangeAPPLE (GLenum target, GLintptr offset, GLsizeiptr size); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBUFFERPARAMETERIAPPLEPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEAPPLEPROC) (GLenum target, GLintptr offset, GLsizeiptr size); +#endif + +#ifndef GL_NV_gpu_program4 +#define GL_NV_gpu_program4 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramLocalParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glProgramLocalParameterI4ivNV (GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glProgramLocalParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramLocalParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glProgramLocalParameterI4uivNV (GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glProgramLocalParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glProgramEnvParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glProgramEnvParameterI4ivNV (GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glProgramEnvParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramEnvParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glProgramEnvParameterI4uivNV (GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glProgramEnvParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetProgramLocalParameterIivNV (GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetProgramLocalParameterIuivNV (GLenum target, GLuint index, GLuint *params); +GLAPI void APIENTRY glGetProgramEnvParameterIivNV (GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetProgramEnvParameterIuivNV (GLenum target, GLuint index, GLuint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params); +#endif + +#ifndef GL_NV_geometry_program4 +#define GL_NV_geometry_program4 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramVertexLimitNV (GLenum target, GLint limit); +GLAPI void APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTextureLayerEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glFramebufferTextureFaceEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPROGRAMVERTEXLIMITNVPROC) (GLenum target, GLint limit); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif + +#ifndef GL_EXT_geometry_shader4 +#define GL_EXT_geometry_shader4 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +#endif + +#ifndef GL_NV_vertex_program4 +#define GL_NV_vertex_program4 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribI1iEXT (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2iEXT (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3iEXT (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4iEXT (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1uiEXT (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2uiEXT (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3uiEXT (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4uiEXT (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bvEXT (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4svEXT (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubvEXT (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usvEXT (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribIPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glGetVertexAttribIivEXT (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuivEXT (GLuint index, GLenum pname, GLuint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IEXTPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IEXTPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IEXTPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IEXTPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIEXTPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIEXTPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVEXTPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVEXTPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVEXTPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVEXTPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVEXTPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVEXTPROC) (GLuint index, GLenum pname, GLuint *params); +#endif + +#ifndef GL_EXT_gpu_shader4 +#define GL_EXT_gpu_shader4 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUniformuivEXT (GLuint program, GLint location, GLuint *params); +GLAPI void APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataLocationEXT (GLuint program, const GLchar *name); +GLAPI void APIENTRY glUniform1uiEXT (GLint location, GLuint v0); +GLAPI void APIENTRY glUniform2uiEXT (GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glUniform3uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glUniform4uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glUniform1uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform2uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform3uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform4uivEXT (GLint location, GLsizei count, const GLuint *value); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGETUNIFORMUIVEXTPROC) (GLuint program, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONEXTPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORM1UIEXTPROC) (GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLUNIFORM2UIEXTPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLUNIFORM3UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLUNIFORM4UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLUNIFORM1UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM2UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM3UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM4UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +#endif + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount); +#endif + +#ifndef GL_EXT_packed_float +#define GL_EXT_packed_float 1 +#endif + +#ifndef GL_EXT_texture_array +#define GL_EXT_texture_array 1 +#endif + +#ifndef GL_EXT_texture_buffer_object +#define GL_EXT_texture_buffer_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); +#endif + +#ifndef GL_EXT_texture_compression_latc +#define GL_EXT_texture_compression_latc 1 +#endif + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 +#endif + +#ifndef GL_EXT_texture_shared_exponent +#define GL_EXT_texture_shared_exponent 1 +#endif + +#ifndef GL_NV_depth_buffer_float +#define GL_NV_depth_buffer_float 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthRangedNV (GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glClearDepthdNV (GLdouble depth); +GLAPI void APIENTRY glDepthBoundsdNV (GLdouble zmin, GLdouble zmax); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDEPTHRANGEDNVPROC) (GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLCLEARDEPTHDNVPROC) (GLdouble depth); +typedef void (APIENTRYP PFNGLDEPTHBOUNDSDNVPROC) (GLdouble zmin, GLdouble zmax); +#endif + +#ifndef GL_NV_fragment_program4 +#define GL_NV_fragment_program4 1 +#endif + +#ifndef GL_NV_framebuffer_multisample_coverage +#define GL_NV_framebuffer_multisample_coverage 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif + +#ifndef GL_EXT_framebuffer_sRGB +#define GL_EXT_framebuffer_sRGB 1 +#endif + +#ifndef GL_NV_geometry_shader4 +#define GL_NV_geometry_shader4 1 +#endif + +#ifndef GL_NV_parameter_buffer_object +#define GL_NV_parameter_buffer_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramBufferParametersfvNV (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glProgramBufferParametersIivNV (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramBufferParametersIuivNV (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLuint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSFVNVPROC) (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIIVNVPROC) (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIUIVNVPROC) (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLuint *params); +#endif + +#ifndef GL_EXT_draw_buffers2 +#define GL_EXT_draw_buffers2 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorMaskIndexedEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GLAPI void APIENTRY glGetBooleanIndexedvEXT (GLenum target, GLuint index, GLboolean *data); +GLAPI void APIENTRY glGetIntegerIndexedvEXT (GLenum target, GLuint index, GLint *data); +GLAPI void APIENTRY glEnableIndexedEXT (GLenum target, GLuint index); +GLAPI void APIENTRY glDisableIndexedEXT (GLenum target, GLuint index); +GLAPI GLboolean APIENTRY glIsEnabledIndexedEXT (GLenum target, GLuint index); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOLORMASKINDEXEDEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef void (APIENTRYP PFNGLGETBOOLEANINDEXEDVEXTPROC) (GLenum target, GLuint index, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINTEGERINDEXEDVEXTPROC) (GLenum target, GLuint index, GLint *data); +typedef void (APIENTRYP PFNGLENABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISENABLEDINDEXEDEXTPROC) (GLenum target, GLuint index); +#endif + +#ifndef GL_NV_transform_feedback +#define GL_NV_transform_feedback 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginTransformFeedbackNV (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedbackNV (void); +GLAPI void APIENTRY glTransformFeedbackAttribsNV (GLuint count, const GLint *attribs, GLenum bufferMode); +GLAPI void APIENTRY glBindBufferRangeNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferOffsetNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +GLAPI void APIENTRY glBindBufferBaseNV (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryingsNV (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); +GLAPI void APIENTRY glActiveVaryingNV (GLuint program, const GLchar *name); +GLAPI GLint APIENTRY glGetVaryingLocationNV (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetActiveVaryingNV (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetTransformFeedbackVaryingNV (GLuint program, GLuint index, GLint *location); +GLAPI void APIENTRY glTransformFeedbackStreamAttribsNV (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKNVPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKATTRIBSNVPROC) (GLuint count, const GLint *attribs, GLenum bufferMode); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGENVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETNVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (APIENTRYP PFNGLBINDBUFFERBASENVPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSNVPROC) (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); +typedef void (APIENTRYP PFNGLACTIVEVARYINGNVPROC) (GLuint program, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETVARYINGLOCATIONNVPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVEVARYINGNVPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGNVPROC) (GLuint program, GLuint index, GLint *location); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKSTREAMATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode); +#endif + +#ifndef GL_EXT_bindable_uniform +#define GL_EXT_bindable_uniform 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniformBufferEXT (GLuint program, GLint location, GLuint buffer); +GLAPI GLint APIENTRY glGetUniformBufferSizeEXT (GLuint program, GLint location); +GLAPI GLintptr APIENTRY glGetUniformOffsetEXT (GLuint program, GLint location); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLUNIFORMBUFFEREXTPROC) (GLuint program, GLint location, GLuint buffer); +typedef GLint (APIENTRYP PFNGLGETUNIFORMBUFFERSIZEEXTPROC) (GLuint program, GLint location); +typedef GLintptr (APIENTRYP PFNGLGETUNIFORMOFFSETEXTPROC) (GLuint program, GLint location); +#endif + +#ifndef GL_EXT_texture_integer +#define GL_EXT_texture_integer 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glClearColorIiEXT (GLint red, GLint green, GLint blue, GLint alpha); +GLAPI void APIENTRY glClearColorIuiEXT (GLuint red, GLuint green, GLuint blue, GLuint alpha); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLCLEARCOLORIIEXTPROC) (GLint red, GLint green, GLint blue, GLint alpha); +typedef void (APIENTRYP PFNGLCLEARCOLORIUIEXTPROC) (GLuint red, GLuint green, GLuint blue, GLuint alpha); +#endif + +#ifndef GL_GREMEDY_frame_terminator +#define GL_GREMEDY_frame_terminator 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFrameTerminatorGREMEDY (void); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLFRAMETERMINATORGREMEDYPROC) (void); +#endif + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode); +GLAPI void APIENTRY glEndConditionalRenderNV (void); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void); +#endif + +#ifndef GL_NV_present_video +#define GL_NV_present_video 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPresentFrameKeyedNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); +GLAPI void APIENTRY glPresentFrameDualFillNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +GLAPI void APIENTRY glGetVideoivNV (GLuint video_slot, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideouivNV (GLuint video_slot, GLenum pname, GLuint *params); +GLAPI void APIENTRY glGetVideoi64vNV (GLuint video_slot, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetVideoui64vNV (GLuint video_slot, GLenum pname, GLuint64EXT *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPRESENTFRAMEKEYEDNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); +typedef void (APIENTRYP PFNGLPRESENTFRAMEDUALFILLNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +typedef void (APIENTRYP PFNGLGETVIDEOIVNVPROC) (GLuint video_slot, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOUIVNVPROC) (GLuint video_slot, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLGETVIDEOI64VNVPROC) (GLuint video_slot, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETVIDEOUI64VNVPROC) (GLuint video_slot, GLenum pname, GLuint64EXT *params); +#endif + +#ifndef GL_EXT_transform_feedback +#define GL_EXT_transform_feedback 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginTransformFeedbackEXT (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedbackEXT (void); +GLAPI void APIENTRY glBindBufferRangeEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferOffsetEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +GLAPI void APIENTRY glBindBufferBaseEXT (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryingsEXT (GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode); +GLAPI void APIENTRY glGetTransformFeedbackVaryingEXT (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKEXTPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKEXTPROC) (void); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (APIENTRYP PFNGLBINDBUFFERBASEEXTPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSEXTPROC) (GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGEXTPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +#endif + +#ifndef GL_EXT_direct_state_access +#define GL_EXT_direct_state_access 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClientAttribDefaultEXT (GLbitfield mask); +GLAPI void APIENTRY glPushClientAttribDefaultEXT (GLbitfield mask); +GLAPI void APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixLoadIdentityEXT (GLenum mode); +GLAPI void APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glMatrixPopEXT (GLenum mode); +GLAPI void APIENTRY glMatrixPushEXT (GLenum mode); +GLAPI void APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glTextureParameterfEXT (GLuint texture, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glTextureParameteriEXT (GLuint texture, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glCopyTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetTextureImageEXT (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels); +GLAPI void APIENTRY glGetTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureLevelParameterfvEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureLevelParameterivEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glCopyTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glMultiTexParameterfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexParameteriEXT (GLenum texunit, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glCopyMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetMultiTexImageEXT (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels); +GLAPI void APIENTRY glGetMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexLevelParameterfvEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexLevelParameterivEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +GLAPI void APIENTRY glCopyMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glBindMultiTextureEXT (GLenum texunit, GLenum target, GLuint texture); +GLAPI void APIENTRY glEnableClientStateIndexedEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glDisableClientStateIndexedEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glMultiTexCoordPointerEXT (GLenum texunit, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glMultiTexEnvfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexEnviEXT (GLenum texunit, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexGendEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +GLAPI void APIENTRY glMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params); +GLAPI void APIENTRY glMultiTexGenfEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexGeniEXT (GLenum texunit, GLenum coord, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFloatIndexedvEXT (GLenum target, GLuint index, GLfloat *data); +GLAPI void APIENTRY glGetDoubleIndexedvEXT (GLenum target, GLuint index, GLdouble *data); +GLAPI void APIENTRY glGetPointerIndexedvEXT (GLenum target, GLuint index, GLvoid* *data); +GLAPI void APIENTRY glCompressedTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glCompressedTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glCompressedTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glCompressedTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glCompressedTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glCompressedTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glGetCompressedTextureImageEXT (GLuint texture, GLenum target, GLint lod, GLvoid *img); +GLAPI void APIENTRY glCompressedMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glCompressedMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glCompressedMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *bits); +GLAPI void APIENTRY glGetCompressedMultiTexImageEXT (GLenum texunit, GLenum target, GLint lod, GLvoid *img); +GLAPI void APIENTRY glNamedProgramStringEXT (GLuint program, GLenum target, GLenum format, GLsizei len, const GLvoid *string); +GLAPI void APIENTRY glNamedProgramLocalParameter4dEXT (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glNamedProgramLocalParameter4dvEXT (GLuint program, GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glNamedProgramLocalParameter4fEXT (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glNamedProgramLocalParameter4fvEXT (GLuint program, GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterdvEXT (GLuint program, GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterfvEXT (GLuint program, GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetNamedProgramivEXT (GLuint program, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedProgramStringEXT (GLuint program, GLenum target, GLenum pname, GLvoid *string); +GLAPI void APIENTRY glNamedProgramLocalParameters4fvEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glNamedProgramLocalParameterI4iEXT (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glNamedProgramLocalParameterI4ivEXT (GLuint program, GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glNamedProgramLocalParametersI4ivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glNamedProgramLocalParameterI4uiEXT (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glNamedProgramLocalParameterI4uivEXT (GLuint program, GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glNamedProgramLocalParametersI4uivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterIivEXT (GLuint program, GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterIuivEXT (GLuint program, GLenum target, GLuint index, GLuint *params); +GLAPI void APIENTRY glTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0); +GLAPI void APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0); +GLAPI void APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0); +GLAPI void APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glNamedBufferDataEXT (GLuint buffer, GLsizeiptr size, const GLvoid *data, GLenum usage); +GLAPI void APIENTRY glNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, const GLvoid *data); +GLAPI GLvoid* APIENTRY glMapNamedBufferEXT (GLuint buffer, GLenum access); +GLAPI GLboolean APIENTRY glUnmapNamedBufferEXT (GLuint buffer); +GLAPI GLvoid* APIENTRY glMapNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI void APIENTRY glFlushMappedNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glNamedCopyBufferSubDataEXT (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glGetNamedBufferParameterivEXT (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedBufferPointervEXT (GLuint buffer, GLenum pname, GLvoid* *params); +GLAPI void APIENTRY glGetNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLvoid *data); +GLAPI void APIENTRY glTextureBufferEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glMultiTexBufferEXT (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glNamedRenderbufferStorageEXT (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetNamedRenderbufferParameterivEXT (GLuint renderbuffer, GLenum pname, GLint *params); +GLAPI GLenum APIENTRY glCheckNamedFramebufferStatusEXT (GLuint framebuffer, GLenum target); +GLAPI void APIENTRY glNamedFramebufferTexture1DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTexture2DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTexture3DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glNamedFramebufferRenderbufferEXT (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameterivEXT (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateTextureMipmapEXT (GLuint texture, GLenum target); +GLAPI void APIENTRY glGenerateMultiTexMipmapEXT (GLenum texunit, GLenum target); +GLAPI void APIENTRY glFramebufferDrawBufferEXT (GLuint framebuffer, GLenum mode); +GLAPI void APIENTRY glFramebufferDrawBuffersEXT (GLuint framebuffer, GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glFramebufferReadBufferEXT (GLuint framebuffer, GLenum mode); +GLAPI void APIENTRY glGetFramebufferParameterivEXT (GLuint framebuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleEXT (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleCoverageEXT (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedFramebufferTextureEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTextureLayerEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glNamedFramebufferTextureFaceEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +GLAPI void APIENTRY glTextureRenderbufferEXT (GLuint texture, GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glMultiTexRenderbufferEXT (GLenum texunit, GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glProgramUniform1dEXT (GLuint program, GLint location, GLdouble x); +GLAPI void APIENTRY glProgramUniform2dEXT (GLuint program, GLint location, GLdouble x, GLdouble y); +GLAPI void APIENTRY glProgramUniform3dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glProgramUniform4dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramUniform1dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform2dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform3dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform4dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLBINDMULTITEXTUREEXTPROC) (GLenum texunit, GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLMULTITEXCOORDPOINTEREXTPROC) (GLenum texunit, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLMULTITEXENVFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXENVIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXGENDEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +typedef void (APIENTRYP PFNGLMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params); +typedef void (APIENTRYP PFNGLMULTITEXGENFEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXGENIEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFLOATINDEXEDVEXTPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (APIENTRYP PFNGLGETDOUBLEINDEXEDVEXTPROC) (GLenum target, GLuint index, GLdouble *data); +typedef void (APIENTRYP PFNGLGETPOINTERINDEXEDVEXTPROC) (GLenum target, GLuint index, GLvoid* *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint lod, GLvoid *img); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *bits); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint lod, GLvoid *img); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum format, GLsizei len, const GLvoid *string); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERDVEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERFVEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMIVEXTPROC) (GLuint program, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum pname, GLvoid *string); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IEXTPROC) (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIUIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLsizeiptr size, const GLvoid *data, GLenum usage); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const GLvoid *data); +typedef GLvoid* (APIENTRYP PFNGLMAPNAMEDBUFFEREXTPROC) (GLuint buffer, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFEREXTPROC) (GLuint buffer); +typedef GLvoid* (APIENTRYP PFNGLMAPNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLNAMEDCOPYBUFFERSUBDATAEXTPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVEXTPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVEXTPROC) (GLuint buffer, GLenum pname, GLvoid* *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLvoid *data); +typedef void (APIENTRYP PFNGLTEXTUREBUFFEREXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLMULTITEXBUFFEREXTPROC) (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEEXTPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVEXTPROC) (GLuint renderbuffer, GLenum pname, GLint *params); +typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSEXTPROC) (GLuint framebuffer, GLenum target); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE1DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE2DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE3DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFEREXTPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPEXTPROC) (GLuint texture, GLenum target); +typedef void (APIENTRYP PFNGLGENERATEMULTITEXMIPMAPEXTPROC) (GLenum texunit, GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFERSEXTPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLFRAMEBUFFERREADBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLECOVERAGEEXTPROC) (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYEREXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREFACEEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +typedef void (APIENTRYP PFNGLTEXTURERENDERBUFFEREXTPROC) (GLuint texture, GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLMULTITEXRENDERBUFFEREXTPROC) (GLenum texunit, GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DEXTPROC) (GLuint program, GLint location, GLdouble x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +#endif + +#ifndef GL_EXT_vertex_array_bgra +#define GL_EXT_vertex_array_bgra 1 +#endif + +#ifndef GL_EXT_texture_swizzle +#define GL_EXT_texture_swizzle 1 +#endif + +#ifndef GL_NV_explicit_multisample +#define GL_NV_explicit_multisample 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetMultisamplefvNV (GLenum pname, GLuint index, GLfloat *val); +GLAPI void APIENTRY glSampleMaskIndexedNV (GLuint index, GLbitfield mask); +GLAPI void APIENTRY glTexRenderbufferNV (GLenum target, GLuint renderbuffer); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVNVPROC) (GLenum pname, GLuint index, GLfloat *val); +typedef void (APIENTRYP PFNGLSAMPLEMASKINDEXEDNVPROC) (GLuint index, GLbitfield mask); +typedef void (APIENTRYP PFNGLTEXRENDERBUFFERNVPROC) (GLenum target, GLuint renderbuffer); +#endif + +#ifndef GL_NV_transform_feedback2 +#define GL_NV_transform_feedback2 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindTransformFeedbackNV (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteTransformFeedbacksNV (GLsizei n, const GLuint *ids); +GLAPI void APIENTRY glGenTransformFeedbacksNV (GLsizei n, GLuint *ids); +GLAPI GLboolean APIENTRY glIsTransformFeedbackNV (GLuint id); +GLAPI void APIENTRY glPauseTransformFeedbackNV (void); +GLAPI void APIENTRY glResumeTransformFeedbackNV (void); +GLAPI void APIENTRY glDrawTransformFeedbackNV (GLenum mode, GLuint id); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKNVPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSNVPROC) (GLsizei n, const GLuint *ids); +typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSNVPROC) (GLsizei n, GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKNVPROC) (GLenum mode, GLuint id); +#endif + +#ifndef GL_ATI_meminfo +#define GL_ATI_meminfo 1 +#endif + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GLAPI void APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GLAPI void APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GLAPI void APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GLAPI void APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, GLvoid *data); +GLAPI void APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GLAPI void APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GLAPI void APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +GLAPI void APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GLAPI void APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GLAPI void APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, GLvoid *data); +typedef void (APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +typedef void (APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif + +#ifndef GL_AMD_texture_texture4 +#define GL_AMD_texture_texture4 1 +#endif + +#ifndef GL_AMD_vertex_shader_tesselator +#define GL_AMD_vertex_shader_tesselator 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTessellationFactorAMD (GLfloat factor); +GLAPI void APIENTRY glTessellationModeAMD (GLenum mode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTESSELLATIONFACTORAMDPROC) (GLfloat factor); +typedef void (APIENTRYP PFNGLTESSELLATIONMODEAMDPROC) (GLenum mode); +#endif + +#ifndef GL_EXT_provoking_vertex +#define GL_EXT_provoking_vertex 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProvokingVertexEXT (GLenum mode); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXEXTPROC) (GLenum mode); +#endif + +#ifndef GL_EXT_texture_snorm +#define GL_EXT_texture_snorm 1 +#endif + +#ifndef GL_AMD_draw_buffers_blend +#define GL_AMD_draw_buffers_blend 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncIndexedAMD (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparateIndexedAMD (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GLAPI void APIENTRY glBlendEquationIndexedAMD (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparateIndexedAMD (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBLENDFUNCINDEXEDAMDPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (APIENTRYP PFNGLBLENDEQUATIONINDEXEDAMDPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +#endif + +#ifndef GL_APPLE_texture_range +#define GL_APPLE_texture_range 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureRangeAPPLE (GLenum target, GLsizei length, const GLvoid *pointer); +GLAPI void APIENTRY glGetTexParameterPointervAPPLE (GLenum target, GLenum pname, GLvoid* *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXTURERANGEAPPLEPROC) (GLenum target, GLsizei length, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERPOINTERVAPPLEPROC) (GLenum target, GLenum pname, GLvoid* *params); +#endif + +#ifndef GL_APPLE_float_pixels +#define GL_APPLE_float_pixels 1 +#endif + +#ifndef GL_APPLE_vertex_program_evaluators +#define GL_APPLE_vertex_program_evaluators 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glEnableVertexAttribAPPLE (GLuint index, GLenum pname); +GLAPI void APIENTRY glDisableVertexAttribAPPLE (GLuint index, GLenum pname); +GLAPI GLboolean APIENTRY glIsVertexAttribEnabledAPPLE (GLuint index, GLenum pname); +GLAPI void APIENTRY glMapVertexAttrib1dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +GLAPI void APIENTRY glMapVertexAttrib1fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +GLAPI void APIENTRY glMapVertexAttrib2dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +GLAPI void APIENTRY glMapVertexAttrib2fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef GLboolean (APIENTRYP PFNGLISVERTEXATTRIBENABLEDAPPLEPROC) (GLuint index, GLenum pname); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +#endif + +#ifndef GL_APPLE_aux_depth_stencil +#define GL_APPLE_aux_depth_stencil 1 +#endif + +#ifndef GL_APPLE_object_purgeable +#define GL_APPLE_object_purgeable 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLenum APIENTRY glObjectPurgeableAPPLE (GLenum objectType, GLuint name, GLenum option); +GLAPI GLenum APIENTRY glObjectUnpurgeableAPPLE (GLenum objectType, GLuint name, GLenum option); +GLAPI void APIENTRY glGetObjectParameterivAPPLE (GLenum objectType, GLuint name, GLenum pname, GLint *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef GLenum (APIENTRYP PFNGLOBJECTPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef GLenum (APIENTRYP PFNGLOBJECTUNPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVAPPLEPROC) (GLenum objectType, GLuint name, GLenum pname, GLint *params); +#endif + +#ifndef GL_APPLE_row_bytes +#define GL_APPLE_row_bytes 1 +#endif + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#endif + +#ifndef GL_NV_video_capture +#define GL_NV_video_capture 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginVideoCaptureNV (GLuint video_capture_slot); +GLAPI void APIENTRY glBindVideoCaptureStreamBufferNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +GLAPI void APIENTRY glBindVideoCaptureStreamTextureNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +GLAPI void APIENTRY glEndVideoCaptureNV (GLuint video_capture_slot); +GLAPI void APIENTRY glGetVideoCaptureivNV (GLuint video_capture_slot, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideoCaptureStreamivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideoCaptureStreamfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVideoCaptureStreamdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params); +GLAPI GLenum APIENTRY glVideoCaptureNV (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time); +GLAPI void APIENTRY glVideoCaptureStreamParameterivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params); +GLAPI void APIENTRY glVideoCaptureStreamParameterfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glVideoCaptureStreamParameterdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBEGINVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMBUFFERNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMTEXTURENVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLENDVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTUREIVNVPROC) (GLuint video_capture_slot, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params); +typedef GLenum (APIENTRYP PFNGLVIDEOCAPTURENVPROC) (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params); +#endif + +#ifndef GL_NV_copy_image +#define GL_NV_copy_image 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATANVPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +#endif + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUseShaderProgramEXT (GLenum type, GLuint program); +GLAPI void APIENTRY glActiveProgramEXT (GLuint program); +GLAPI GLuint APIENTRY glCreateShaderProgramEXT (GLenum type, const GLchar *string); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLUSESHADERPROGRAMEXTPROC) (GLenum type, GLuint program); +typedef void (APIENTRYP PFNGLACTIVEPROGRAMEXTPROC) (GLuint program); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMEXTPROC) (GLenum type, const GLchar *string); +#endif + +#ifndef GL_NV_parameter_buffer_object2 +#define GL_NV_parameter_buffer_object2 1 +#endif + +#ifndef GL_NV_shader_buffer_load +#define GL_NV_shader_buffer_load 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMakeBufferResidentNV (GLenum target, GLenum access); +GLAPI void APIENTRY glMakeBufferNonResidentNV (GLenum target); +GLAPI GLboolean APIENTRY glIsBufferResidentNV (GLenum target); +GLAPI void APIENTRY glMakeNamedBufferResidentNV (GLuint buffer, GLenum access); +GLAPI void APIENTRY glMakeNamedBufferNonResidentNV (GLuint buffer); +GLAPI GLboolean APIENTRY glIsNamedBufferResidentNV (GLuint buffer); +GLAPI void APIENTRY glGetBufferParameterui64vNV (GLenum target, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glGetNamedBufferParameterui64vNV (GLuint buffer, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glGetIntegerui64vNV (GLenum value, GLuint64EXT *result); +GLAPI void APIENTRY glUniformui64NV (GLint location, GLuint64EXT value); +GLAPI void APIENTRY glUniformui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glGetUniformui64vNV (GLuint program, GLint location, GLuint64EXT *params); +GLAPI void APIENTRY glProgramUniformui64NV (GLuint program, GLint location, GLuint64EXT value); +GLAPI void APIENTRY glProgramUniformui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLMAKEBUFFERRESIDENTNVPROC) (GLenum target, GLenum access); +typedef void (APIENTRYP PFNGLMAKEBUFFERNONRESIDENTNVPROC) (GLenum target); +typedef GLboolean (APIENTRYP PFNGLISBUFFERRESIDENTNVPROC) (GLenum target); +typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERRESIDENTNVPROC) (GLuint buffer, GLenum access); +typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERNONRESIDENTNVPROC) (GLuint buffer); +typedef GLboolean (APIENTRYP PFNGLISNAMEDBUFFERRESIDENTNVPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERUI64VNVPROC) (GLenum target, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERUI64VNVPROC) (GLuint buffer, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLGETINTEGERUI64VNVPROC) (GLenum value, GLuint64EXT *result); +typedef void (APIENTRYP PFNGLUNIFORMUI64NVPROC) (GLint location, GLuint64EXT value); +typedef void (APIENTRYP PFNGLUNIFORMUI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLGETUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64NVPROC) (GLuint program, GLint location, GLuint64EXT value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif + +#ifndef GL_NV_vertex_buffer_unified_memory +#define GL_NV_vertex_buffer_unified_memory 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferAddressRangeNV (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +GLAPI void APIENTRY glVertexFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glNormalFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glColorFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glIndexFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glTexCoordFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glEdgeFlagFormatNV (GLsizei stride); +GLAPI void APIENTRY glSecondaryColorFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glFogCoordFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glVertexAttribFormatNV (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +GLAPI void APIENTRY glVertexAttribIFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glGetIntegerui64i_vNV (GLenum value, GLuint index, GLuint64EXT *result); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBUFFERADDRESSRANGENVPROC) (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +typedef void (APIENTRYP PFNGLVERTEXFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLNORMALFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLINDEXFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLTEXCOORDFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLEDGEFLAGFORMATNVPROC) (GLsizei stride); +typedef void (APIENTRYP PFNGLSECONDARYCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLFOGCOORDFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLGETINTEGERUI64I_VNVPROC) (GLenum value, GLuint index, GLuint64EXT *result); +#endif + +#ifndef GL_NV_texture_barrier +#define GL_NV_texture_barrier 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureBarrierNV (void); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLTEXTUREBARRIERNVPROC) (void); +#endif + +#ifndef GL_AMD_shader_stencil_export +#define GL_AMD_shader_stencil_export 1 +#endif + +#ifndef GL_AMD_seamless_cubemap_per_texture +#define GL_AMD_seamless_cubemap_per_texture 1 +#endif + +#ifndef GL_AMD_conservative_depth +#define GL_AMD_conservative_depth 1 +#endif + +#ifndef GL_EXT_shader_image_load_store +#define GL_EXT_shader_image_load_store 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindImageTextureEXT (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +GLAPI void APIENTRY glMemoryBarrierEXT (GLbitfield barriers); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREEXTPROC) (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +typedef void (APIENTRYP PFNGLMEMORYBARRIEREXTPROC) (GLbitfield barriers); +#endif + +#ifndef GL_EXT_vertex_attrib_64bit +#define GL_EXT_vertex_attrib_64bit 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1dEXT (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttribL2dEXT (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttribL3dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttribL4dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttribL1dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL2dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL3dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL4dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribLPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +GLAPI void APIENTRY glGetVertexAttribLdvEXT (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glVertexArrayVertexAttribLOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DEXTPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DEXTPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVEXTPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +#endif + +#ifndef GL_NV_gpu_program5 +#define GL_NV_gpu_program5 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramSubroutineParametersuivNV (GLenum target, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetProgramSubroutineParameteruivNV (GLenum target, GLuint index, GLuint *param); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLPROGRAMSUBROUTINEPARAMETERSUIVNVPROC) (GLenum target, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSUBROUTINEPARAMETERUIVNVPROC) (GLenum target, GLuint index, GLuint *param); +#endif + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1i64NV (GLint location, GLint64EXT x); +GLAPI void APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x); +GLAPI void APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params); +GLAPI void APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x); +GLAPI void APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x); +GLAPI void APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif + +#ifndef GL_NV_shader_buffer_store +#define GL_NV_shader_buffer_store 1 +#endif + +#ifndef GL_NV_tessellation_program5 +#define GL_NV_tessellation_program5 1 +#endif + +#ifndef GL_NV_vertex_attrib_integer_64bit +#define GL_NV_vertex_attrib_integer_64bit 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1i64NV (GLuint index, GLint64EXT x); +GLAPI void APIENTRY glVertexAttribL2i64NV (GLuint index, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glVertexAttribL3i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glVertexAttribL4i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glVertexAttribL1i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL2i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL3i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL4i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL1ui64NV (GLuint index, GLuint64EXT x); +GLAPI void APIENTRY glVertexAttribL2ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glVertexAttribL3ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glVertexAttribL4ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glVertexAttribL1ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL2ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL3ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL4ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glGetVertexAttribLi64vNV (GLuint index, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetVertexAttribLui64vNV (GLuint index, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glVertexAttribLFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64NVPROC) (GLuint index, GLint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64NVPROC) (GLuint index, GLuint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLI64VNVPROC) (GLuint index, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLUI64VNVPROC) (GLuint index, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +#endif + +#ifndef GL_NV_multisample_coverage +#define GL_NV_multisample_coverage 1 +#endif + +#ifndef GL_AMD_name_gen_delete +#define GL_AMD_name_gen_delete 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenNamesAMD (GLenum identifier, GLuint num, GLuint *names); +GLAPI void APIENTRY glDeleteNamesAMD (GLenum identifier, GLuint num, const GLuint *names); +GLAPI GLboolean APIENTRY glIsNameAMD (GLenum identifier, GLuint name); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLGENNAMESAMDPROC) (GLenum identifier, GLuint num, GLuint *names); +typedef void (APIENTRYP PFNGLDELETENAMESAMDPROC) (GLenum identifier, GLuint num, const GLuint *names); +typedef GLboolean (APIENTRYP PFNGLISNAMEAMDPROC) (GLenum identifier, GLuint name); +#endif + +#ifndef GL_AMD_debug_output +#define GL_AMD_debug_output 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDebugMessageEnableAMD (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsertAMD (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallbackAMD (GLDEBUGPROCAMD callback, GLvoid *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLogAMD (GLuint count, GLsizei bufsize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLDEBUGMESSAGEENABLEAMDPROC) (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTAMDPROC) (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKAMDPROC) (GLDEBUGPROCAMD callback, GLvoid *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGAMDPROC) (GLuint count, GLsizei bufsize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +#endif + +#ifndef GL_NV_vdpau_interop +#define GL_NV_vdpau_interop 1 +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVDPAUInitNV (const GLvoid *vdpDevice, const GLvoid *getProcAddress); +GLAPI void APIENTRY glVDPAUFiniNV (void); +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceNV (GLvoid *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterOutputSurfaceNV (GLvoid *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +GLAPI void APIENTRY glVDPAUIsSurfaceNV (GLvdpauSurfaceNV surface); +GLAPI void APIENTRY glVDPAUUnregisterSurfaceNV (GLvdpauSurfaceNV surface); +GLAPI void APIENTRY glVDPAUGetSurfaceivNV (GLvdpauSurfaceNV surface, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); +GLAPI void APIENTRY glVDPAUSurfaceAccessNV (GLvdpauSurfaceNV surface, GLenum access); +GLAPI void APIENTRY glVDPAUMapSurfacesNV (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); +GLAPI void APIENTRY glVDPAUUnmapSurfacesNV (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (APIENTRYP PFNGLVDPAUINITNVPROC) (const GLvoid *vdpDevice, const GLvoid *getProcAddress); +typedef void (APIENTRYP PFNGLVDPAUFININVPROC) (void); +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACENVPROC) (GLvoid *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTEROUTPUTSURFACENVPROC) (GLvoid *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef void (APIENTRYP PFNGLVDPAUISSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (APIENTRYP PFNGLVDPAUUNREGISTERSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (APIENTRYP PFNGLVDPAUGETSURFACEIVNVPROC) (GLvdpauSurfaceNV surface, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLVDPAUSURFACEACCESSNVPROC) (GLvdpauSurfaceNV surface, GLenum access); +typedef void (APIENTRYP PFNGLVDPAUMAPSURFACESNVPROC) (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); +typedef void (APIENTRYP PFNGLVDPAUUNMAPSURFACESNVPROC) (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); +#endif + +#ifndef GL_AMD_transform_feedback3_lines_triangles +#define GL_AMD_transform_feedback3_lines_triangles 1 +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* NO_SDL_GLEXT */ + +#endif /* !__IPHONEOS__ */ + +#endif /* _SDL_opengl_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengles.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengles.h new file mode 100644 index 0000000..d88e157 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengles.h @@ -0,0 +1,38 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_opengles.h + * + * This is a simple file to encapsulate the OpenGL ES 1.X API headers. + */ + +#ifdef __IPHONEOS__ +#include +#include +#else +#include +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengles2.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengles2.h new file mode 100644 index 0000000..2c05479 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_opengles2.h @@ -0,0 +1,2790 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_opengles.h + * + * This is a simple file to encapsulate the OpenGL ES 2.0 API headers. + */ +#ifndef _MSC_VER +#ifdef __IPHONEOS__ +#include +#include +#else +#include +#include +#endif + +#else /* _MSC_VER */ + +/* OpenGL ES2 headers for Visual Studio */ + +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2009 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. +* +* $Revision: 23298 $ on $Date: 2013-09-30 17:07:13 -0700 (Mon, 30 Sep 2013) $ +* +* Adopters may modify this file to suit their platform. Adopters are +* encouraged to submit platform specific modifications to the Khronos +* group so that they can be included in future versions of this file. +* Please submit changes by sending them to the public Khronos Bugzilla +* (http://khronos.org/bugzilla) by filing a bug against product +* "Khronos (general)" component "Registry". +* +* A predefined template which fills in some of the bug fields can be +* reached using http://tinyurl.com/khrplatform-h-bugreport, but you +* must create a Bugzilla login first. +* +* +* See the Implementer's Guidelines for information about where this file +* should be located on your system and for more details of its use: +* http://www.khronos.org/registry/implementers_guide.pdf +* +* This file should be included as +* #include +* by Khronos client API header files that use its types and defines. +* +* The types in khrplatform.h should only be used to define API-specific types. +* +* Types defined in khrplatform.h: +* khronos_int8_t signed 8 bit +* khronos_uint8_t unsigned 8 bit +* khronos_int16_t signed 16 bit +* khronos_uint16_t unsigned 16 bit +* khronos_int32_t signed 32 bit +* khronos_uint32_t unsigned 32 bit +* khronos_int64_t signed 64 bit +* khronos_uint64_t unsigned 64 bit +* khronos_intptr_t signed same number of bits as a pointer +* khronos_uintptr_t unsigned same number of bits as a pointer +* khronos_ssize_t signed size +* khronos_usize_t unsigned size +* khronos_float_t signed 32 bit floating point +* khronos_time_ns_t unsigned 64 bit time in nanoseconds +* khronos_utime_nanoseconds_t unsigned time interval or absolute time in +* nanoseconds +* khronos_stime_nanoseconds_t signed time interval in nanoseconds +* khronos_boolean_enum_t enumerated boolean type. This should +* only be used as a base type when a client API's boolean type is +* an enum. Client APIs which use an integer or other type for +* booleans cannot use this as the base type for their boolean. +* +* Tokens defined in khrplatform.h: +* +* KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. +* +* KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. +* KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. +* +* Calling convention macros defined in this file: +* KHRONOS_APICALL +* KHRONOS_APIENTRY +* KHRONOS_APIATTRIBUTES +* +* These may be used in function prototypes as: +* +* KHRONOS_APICALL void KHRONOS_APIENTRY funcname( +* int arg1, +* int arg2) KHRONOS_APIATTRIBUTES; +*/ + +/*------------------------------------------------------------------------- +* Definition of KHRONOS_APICALL +*------------------------------------------------------------------------- +* This precedes the return type of the function in the function prototype. +*/ +#if defined(_WIN32) && !defined(__SCITECH_SNAP__) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- +* Definition of KHRONOS_APIENTRY +*------------------------------------------------------------------------- +* This follows the return type of the function and precedes the function +* name in the function prototype. +*/ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) +/* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- +* Definition of KHRONOS_APIATTRIBUTES +*------------------------------------------------------------------------- +* This follows the closing parenthesis of the function prototype arguments. +*/ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- +* basic type definitions +*-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* +* Using +*/ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__VMS ) || defined(__sgi) + +/* +* Using +*/ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* +* Win32 +*/ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* +* Sun or Digital +*/ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* +* Hypothetical platform with no float or int64 support +*/ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* +* Generic fallback +*/ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* +* Types that are (so far) the same on all platforms +*/ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* +* Types that differ between LLP64 and LP64 architectures - in LLP64, +* pointers are 64 bits, but 'long' is still 32 bits. Win64 appears +* to be the only LLP64 architecture in current use. +*/ +#ifdef _WIN64 +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* +* Float type +*/ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types +* +* These types can be used to represent a time interval in nanoseconds or +* an absolute Unadjusted System Time. Unadjusted System Time is the number +* of nanoseconds since some arbitrary system event (e.g. since the last +* time the system booted). The Unadjusted System Time is an unsigned +* 64 bit value that wraps back to 0 every 584 years. Time intervals +* may be either signed or unsigned. +*/ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* +* Dummy value used to pad enum types to 32 bits. +*/ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* +* Enumerated boolean type +* +* Values other than zero should be considered to be true. Therefore +* comparisons should not be made against KHRONOS_TRUE. +*/ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ + + +#ifndef __gl2platform_h_ +#define __gl2platform_h_ + +/* $Revision: 10602 $ on $Date:: 2010-03-04 22:35:34 -0800 #$ */ + +/* + * This document is licensed under the SGI Free Software B License Version + * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ . + */ + +/* Platform-specific types and definitions for OpenGL ES 2.X gl2.h + * + * Adopters may modify khrplatform.h and this file to suit their platform. + * You are encouraged to submit all modifications to the Khronos group so that + * they can be included in future versions of this file. Please submit changes + * by sending them to the public Khronos Bugzilla (http://khronos.org/bugzilla) + * by filing a bug against product "OpenGL-ES" component "Registry". + */ + +/*#include */ + +#ifndef GL_APICALL +#define GL_APICALL KHRONOS_APICALL +#endif + +#ifndef GL_APIENTRY +#define GL_APIENTRY KHRONOS_APIENTRY +#endif + +#endif /* __gl2platform_h_ */ + +#ifndef __gl2_h_ +#define __gl2_h_ + +/* $Revision: 16803 $ on $Date:: 2012-02-02 09:49:18 -0800 #$ */ + +/*#include */ + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * This document is licensed under the SGI Free Software B License Version + * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ . + */ + +/*------------------------------------------------------------------------- + * Data type definitions + *-----------------------------------------------------------------------*/ + +typedef void GLvoid; +typedef char GLchar; +typedef unsigned int GLenum; +typedef unsigned char GLboolean; +typedef unsigned int GLbitfield; +typedef khronos_int8_t GLbyte; +typedef short GLshort; +typedef int GLint; +typedef int GLsizei; +typedef khronos_uint8_t GLubyte; +typedef unsigned short GLushort; +typedef unsigned int GLuint; +typedef khronos_float_t GLfloat; +typedef khronos_float_t GLclampf; +typedef khronos_int32_t GLfixed; + +/* GL types for handling large vertex buffer objects */ +typedef khronos_intptr_t GLintptr; +typedef khronos_ssize_t GLsizeiptr; + +/* OpenGL ES core versions */ +#define GL_ES_VERSION_2_0 1 + +/* ClearBufferMask */ +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_COLOR_BUFFER_BIT 0x00004000 + +/* Boolean */ +#define GL_FALSE 0 +#define GL_TRUE 1 + +/* BeginMode */ +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 + +/* AlphaFunction (not supported in ES20) */ +/* GL_NEVER */ +/* GL_LESS */ +/* GL_EQUAL */ +/* GL_LEQUAL */ +/* GL_GREATER */ +/* GL_NOTEQUAL */ +/* GL_GEQUAL */ +/* GL_ALWAYS */ + +/* BlendingFactorDest */ +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 + +/* BlendingFactorSrc */ +/* GL_ZERO */ +/* GL_ONE */ +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 +/* GL_SRC_ALPHA */ +/* GL_ONE_MINUS_SRC_ALPHA */ +/* GL_DST_ALPHA */ +/* GL_ONE_MINUS_DST_ALPHA */ + +/* BlendEquationSeparate */ +#define GL_FUNC_ADD 0x8006 +#define GL_BLEND_EQUATION 0x8009 +#define GL_BLEND_EQUATION_RGB 0x8009 /* same as BLEND_EQUATION */ +#define GL_BLEND_EQUATION_ALPHA 0x883D + +/* BlendSubtract */ +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B + +/* Separate Blend Functions */ +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_BLEND_COLOR 0x8005 + +/* Buffer Objects */ +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 + +#define GL_STREAM_DRAW 0x88E0 +#define GL_STATIC_DRAW 0x88E4 +#define GL_DYNAMIC_DRAW 0x88E8 + +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 + +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 + +/* CullFaceMode */ +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_FRONT_AND_BACK 0x0408 + +/* DepthFunction */ +/* GL_NEVER */ +/* GL_LESS */ +/* GL_EQUAL */ +/* GL_LEQUAL */ +/* GL_GREATER */ +/* GL_NOTEQUAL */ +/* GL_GEQUAL */ +/* GL_ALWAYS */ + +/* EnableCap */ +#define GL_TEXTURE_2D 0x0DE1 +#define GL_CULL_FACE 0x0B44 +#define GL_BLEND 0x0BE2 +#define GL_DITHER 0x0BD0 +#define GL_STENCIL_TEST 0x0B90 +#define GL_DEPTH_TEST 0x0B71 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_POLYGON_OFFSET_FILL 0x8037 +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_COVERAGE 0x80A0 + +/* ErrorCode */ +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_OUT_OF_MEMORY 0x0505 + +/* FrontFaceDirection */ +#define GL_CW 0x0900 +#define GL_CCW 0x0901 + +/* GetPName */ +#define GL_LINE_WIDTH 0x0B21 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VIEWPORT 0x0BA2 +#define GL_SCISSOR_BOX 0x0C10 +/* GL_SCISSOR_TEST */ +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_ALPHA_BITS 0x0D55 +#define GL_DEPTH_BITS 0x0D56 +#define GL_STENCIL_BITS 0x0D57 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +/* GL_POLYGON_OFFSET_FILL */ +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB + +/* GetTextureParameter */ +/* GL_TEXTURE_MAG_FILTER */ +/* GL_TEXTURE_MIN_FILTER */ +/* GL_TEXTURE_WRAP_S */ +/* GL_TEXTURE_WRAP_T */ + +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 + +/* HintMode */ +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 + +/* HintTarget */ +#define GL_GENERATE_MIPMAP_HINT 0x8192 + +/* DataType */ +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_FIXED 0x140C + +/* PixelFormat */ +#define GL_DEPTH_COMPONENT 0x1902 +#define GL_ALPHA 0x1906 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A + +/* PixelType */ +/* GL_UNSIGNED_BYTE */ +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 + +/* Shaders */ +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#define GL_SHADER_TYPE 0x8B4F +#define GL_DELETE_STATUS 0x8B80 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D + +/* StencilFunction */ +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 + +/* StencilOp */ +/* GL_ZERO */ +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 +#define GL_INVERT 0x150A +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 + +/* StringName */ +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 + +/* TextureMagFilter */ +#define GL_NEAREST 0x2600 +#define GL_LINEAR 0x2601 + +/* TextureMinFilter */ +/* GL_NEAREST */ +/* GL_LINEAR */ +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 + +/* TextureParameterName */ +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 + +/* TextureTarget */ +/* GL_TEXTURE_2D */ +#define GL_TEXTURE 0x1702 + +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C + +/* TextureUnit */ +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 + +/* TextureWrapMode */ +#define GL_REPEAT 0x2901 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_MIRRORED_REPEAT 0x8370 + +/* Uniform Types */ +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_CUBE 0x8B60 + +/* Vertex Arrays */ +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F + +/* Read Format */ +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B + +/* Shader Source */ +#define GL_COMPILE_STATUS 0x8B81 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_SHADER_COMPILER 0x8DFA + +/* Shader Binary */ +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 + +/* Shader Precision-Specified Types */ +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 + +/* Framebuffer Object. */ +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 + +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGB565 0x8D62 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_STENCIL_INDEX8 0x8D48 + +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 + +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 + +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 + +#define GL_NONE 0 + +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9 +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD + +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 + +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 + +/*------------------------------------------------------------------------- + * GL core functions. + *-----------------------------------------------------------------------*/ + +GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture); +GL_APICALL void GL_APIENTRY glAttachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar* name); +GL_APICALL void GL_APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GL_APICALL void GL_APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GL_APICALL void GL_APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture); +GL_APICALL void GL_APIENTRY glBlendColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); +GL_APICALL void GL_APIENTRY glBlendEquation ( GLenum mode ); +GL_APICALL void GL_APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunc (GLenum sfactor, GLenum dfactor); +GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage); +GL_APICALL void GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data); +GL_APICALL GLenum GL_APIENTRY glCheckFramebufferStatus (GLenum target); +GL_APICALL void GL_APIENTRY glClear (GLbitfield mask); +GL_APICALL void GL_APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); +GL_APICALL void GL_APIENTRY glClearDepthf (GLclampf depth); +GL_APICALL void GL_APIENTRY glClearStencil (GLint s); +GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +GL_APICALL void GL_APIENTRY glCompileShader (GLuint shader); +GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid* data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data); +GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL GLuint GL_APIENTRY glCreateProgram (void); +GL_APICALL GLuint GL_APIENTRY glCreateShader (GLenum type); +GL_APICALL void GL_APIENTRY glCullFace (GLenum mode); +GL_APICALL void GL_APIENTRY glDeleteBuffers (GLsizei n, const GLuint* buffers); +GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint* framebuffers); +GL_APICALL void GL_APIENTRY glDeleteProgram (GLuint program); +GL_APICALL void GL_APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint* renderbuffers); +GL_APICALL void GL_APIENTRY glDeleteShader (GLuint shader); +GL_APICALL void GL_APIENTRY glDeleteTextures (GLsizei n, const GLuint* textures); +GL_APICALL void GL_APIENTRY glDepthFunc (GLenum func); +GL_APICALL void GL_APIENTRY glDepthMask (GLboolean flag); +GL_APICALL void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar); +GL_APICALL void GL_APIENTRY glDetachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glDisable (GLenum cap); +GL_APICALL void GL_APIENTRY glDisableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count); +GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const GLvoid* indices); +GL_APICALL void GL_APIENTRY glEnable (GLenum cap); +GL_APICALL void GL_APIENTRY glEnableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glFinish (void); +GL_APICALL void GL_APIENTRY glFlush (void); +GL_APICALL void GL_APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GL_APICALL void GL_APIENTRY glFrontFace (GLenum mode); +GL_APICALL void GL_APIENTRY glGenBuffers (GLsizei n, GLuint* buffers); +GL_APICALL void GL_APIENTRY glGenerateMipmap (GLenum target); +GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint* framebuffers); +GL_APICALL void GL_APIENTRY glGenRenderbuffers (GLsizei n, GLuint* renderbuffers); +GL_APICALL void GL_APIENTRY glGenTextures (GLsizei n, GLuint* textures); +GL_APICALL void GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name); +GL_APICALL void GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name); +GL_APICALL void GL_APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders); +GL_APICALL int GL_APIENTRY glGetAttribLocation (GLuint program, const GLchar* name); +GL_APICALL void GL_APIENTRY glGetBooleanv (GLenum pname, GLboolean* params); +GL_APICALL void GL_APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint* params); +GL_APICALL GLenum GL_APIENTRY glGetError (void); +GL_APICALL void GL_APIENTRY glGetFloatv (GLenum pname, GLfloat* params); +GL_APICALL void GL_APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint* params); +GL_APICALL void GL_APIENTRY glGetIntegerv (GLenum pname, GLint* params); +GL_APICALL void GL_APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint* params); +GL_APICALL void GL_APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufsize, GLsizei* length, GLchar* infolog); +GL_APICALL void GL_APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint* params); +GL_APICALL void GL_APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint* params); +GL_APICALL void GL_APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* infolog); +GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint* range, GLint* precision); +GL_APICALL void GL_APIENTRY glGetShaderSource (GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* source); +GL_APICALL const GLubyte* GL_APIENTRY glGetString (GLenum name); +GL_APICALL void GL_APIENTRY glGetTexParameterfv (GLenum target, GLenum pname, GLfloat* params); +GL_APICALL void GL_APIENTRY glGetTexParameteriv (GLenum target, GLenum pname, GLint* params); +GL_APICALL void GL_APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat* params); +GL_APICALL void GL_APIENTRY glGetUniformiv (GLuint program, GLint location, GLint* params); +GL_APICALL int GL_APIENTRY glGetUniformLocation (GLuint program, const GLchar* name); +GL_APICALL void GL_APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat* params); +GL_APICALL void GL_APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint* params); +GL_APICALL void GL_APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, GLvoid** pointer); +GL_APICALL void GL_APIENTRY glHint (GLenum target, GLenum mode); +GL_APICALL GLboolean GL_APIENTRY glIsBuffer (GLuint buffer); +GL_APICALL GLboolean GL_APIENTRY glIsEnabled (GLenum cap); +GL_APICALL GLboolean GL_APIENTRY glIsFramebuffer (GLuint framebuffer); +GL_APICALL GLboolean GL_APIENTRY glIsProgram (GLuint program); +GL_APICALL GLboolean GL_APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GL_APICALL GLboolean GL_APIENTRY glIsShader (GLuint shader); +GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture); +GL_APICALL void GL_APIENTRY glLineWidth (GLfloat width); +GL_APICALL void GL_APIENTRY glLinkProgram (GLuint program); +GL_APICALL void GL_APIENTRY glPixelStorei (GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glPolygonOffset (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels); +GL_APICALL void GL_APIENTRY glReleaseShaderCompiler (void); +GL_APICALL void GL_APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glSampleCoverage (GLclampf value, GLboolean invert); +GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei n, const GLuint* shaders, GLenum binaryformat, const GLvoid* binary, GLsizei length); +GL_APICALL void GL_APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar* const* string, const GLint* length); +GL_APICALL void GL_APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMask (GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilOp (GLenum fail, GLenum zfail, GLenum zpass); +GL_APICALL void GL_APIENTRY glStencilOpSeparate (GLenum face, GLenum fail, GLenum zfail, GLenum zpass); +GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels); +GL_APICALL void GL_APIENTRY glTexParameterf (GLenum target, GLenum pname, GLfloat param); +GL_APICALL void GL_APIENTRY glTexParameterfv (GLenum target, GLenum pname, const GLfloat* params); +GL_APICALL void GL_APIENTRY glTexParameteri (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glTexParameteriv (GLenum target, GLenum pname, const GLint* params); +GL_APICALL void GL_APIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels); +GL_APICALL void GL_APIENTRY glUniform1f (GLint location, GLfloat x); +GL_APICALL void GL_APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat* v); +GL_APICALL void GL_APIENTRY glUniform1i (GLint location, GLint x); +GL_APICALL void GL_APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint* v); +GL_APICALL void GL_APIENTRY glUniform2f (GLint location, GLfloat x, GLfloat y); +GL_APICALL void GL_APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat* v); +GL_APICALL void GL_APIENTRY glUniform2i (GLint location, GLint x, GLint y); +GL_APICALL void GL_APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint* v); +GL_APICALL void GL_APIENTRY glUniform3f (GLint location, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat* v); +GL_APICALL void GL_APIENTRY glUniform3i (GLint location, GLint x, GLint y, GLint z); +GL_APICALL void GL_APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint* v); +GL_APICALL void GL_APIENTRY glUniform4f (GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GL_APICALL void GL_APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat* v); +GL_APICALL void GL_APIENTRY glUniform4i (GLint location, GLint x, GLint y, GLint z, GLint w); +GL_APICALL void GL_APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint* v); +GL_APICALL void GL_APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +GL_APICALL void GL_APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +GL_APICALL void GL_APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +GL_APICALL void GL_APIENTRY glUseProgram (GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgram (GLuint program); +GL_APICALL void GL_APIENTRY glVertexAttrib1f (GLuint indx, GLfloat x); +GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint indx, const GLfloat* values); +GL_APICALL void GL_APIENTRY glVertexAttrib2f (GLuint indx, GLfloat x, GLfloat y); +GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint indx, const GLfloat* values); +GL_APICALL void GL_APIENTRY glVertexAttrib3f (GLuint indx, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint indx, const GLfloat* values); +GL_APICALL void GL_APIENTRY glVertexAttrib4f (GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint indx, const GLfloat* values); +GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr); +GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height); + +#ifdef __cplusplus +} +#endif + +#endif /* __gl2_h_ */ + + +#ifndef __gl2ext_h_ +#define __gl2ext_h_ + +/* $Revision: 19436 $ on $Date:: 2012-10-10 10:37:04 -0700 #$ */ + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * This document is licensed under the SGI Free Software B License Version + * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ . + */ + +#ifndef GL_APIENTRYP +# define GL_APIENTRYP GL_APIENTRY* +#endif + +/*------------------------------------------------------------------------* + * OES extension tokens + *------------------------------------------------------------------------*/ + +/* GL_OES_compressed_ETC1_RGB8_texture */ +#ifndef GL_OES_compressed_ETC1_RGB8_texture +#define GL_ETC1_RGB8_OES 0x8D64 +#endif + +/* GL_OES_compressed_paletted_texture */ +#ifndef GL_OES_compressed_paletted_texture +#define GL_PALETTE4_RGB8_OES 0x8B90 +#define GL_PALETTE4_RGBA8_OES 0x8B91 +#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 +#define GL_PALETTE4_RGBA4_OES 0x8B93 +#define GL_PALETTE4_RGB5_A1_OES 0x8B94 +#define GL_PALETTE8_RGB8_OES 0x8B95 +#define GL_PALETTE8_RGBA8_OES 0x8B96 +#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 +#define GL_PALETTE8_RGBA4_OES 0x8B98 +#define GL_PALETTE8_RGB5_A1_OES 0x8B99 +#endif + +/* GL_OES_depth24 */ +#ifndef GL_OES_depth24 +#define GL_DEPTH_COMPONENT24_OES 0x81A6 +#endif + +/* GL_OES_depth32 */ +#ifndef GL_OES_depth32 +#define GL_DEPTH_COMPONENT32_OES 0x81A7 +#endif + +/* GL_OES_depth_texture */ +/* No new tokens introduced by this extension. */ + +/* GL_OES_EGL_image */ +#ifndef GL_OES_EGL_image +typedef void* GLeglImageOES; +#endif + +/* GL_OES_EGL_image_external */ +#ifndef GL_OES_EGL_image_external +/* GLeglImageOES defined in GL_OES_EGL_image already. */ +#define GL_TEXTURE_EXTERNAL_OES 0x8D65 +#define GL_SAMPLER_EXTERNAL_OES 0x8D66 +#define GL_TEXTURE_BINDING_EXTERNAL_OES 0x8D67 +#define GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES 0x8D68 +#endif + +/* GL_OES_element_index_uint */ +#ifndef GL_OES_element_index_uint +#define GL_UNSIGNED_INT 0x1405 +#endif + +/* GL_OES_get_program_binary */ +#ifndef GL_OES_get_program_binary +#define GL_PROGRAM_BINARY_LENGTH_OES 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS_OES 0x87FE +#define GL_PROGRAM_BINARY_FORMATS_OES 0x87FF +#endif + +/* GL_OES_mapbuffer */ +#ifndef GL_OES_mapbuffer +#define GL_WRITE_ONLY_OES 0x88B9 +#define GL_BUFFER_ACCESS_OES 0x88BB +#define GL_BUFFER_MAPPED_OES 0x88BC +#define GL_BUFFER_MAP_POINTER_OES 0x88BD +#endif + +/* GL_OES_packed_depth_stencil */ +#ifndef GL_OES_packed_depth_stencil +#define GL_DEPTH_STENCIL_OES 0x84F9 +#define GL_UNSIGNED_INT_24_8_OES 0x84FA +#define GL_DEPTH24_STENCIL8_OES 0x88F0 +#endif + +/* GL_OES_required_internalformat */ +#ifndef GL_OES_required_internalformat +#define GL_ALPHA8_OES 0x803C +#define GL_DEPTH_COMPONENT16_OES 0x81A5 +/* reuse GL_DEPTH_COMPONENT24_OES */ +/* reuse GL_DEPTH24_STENCIL8_OES */ +/* reuse GL_DEPTH_COMPONENT32_OES */ +#define GL_LUMINANCE4_ALPHA4_OES 0x8043 +#define GL_LUMINANCE8_ALPHA8_OES 0x8045 +#define GL_LUMINANCE8_OES 0x8040 +#define GL_RGBA4_OES 0x8056 +#define GL_RGB5_A1_OES 0x8057 +#define GL_RGB565_OES 0x8D62 +/* reuse GL_RGB8_OES */ +/* reuse GL_RGBA8_OES */ +/* reuse GL_RGB10_EXT */ +/* reuse GL_RGB10_A2_EXT */ +#endif + +/* GL_OES_rgb8_rgba8 */ +#ifndef GL_OES_rgb8_rgba8 +#define GL_RGB8_OES 0x8051 +#define GL_RGBA8_OES 0x8058 +#endif + +/* GL_OES_standard_derivatives */ +#ifndef GL_OES_standard_derivatives +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES 0x8B8B +#endif + +/* GL_OES_stencil1 */ +#ifndef GL_OES_stencil1 +#define GL_STENCIL_INDEX1_OES 0x8D46 +#endif + +/* GL_OES_stencil4 */ +#ifndef GL_OES_stencil4 +#define GL_STENCIL_INDEX4_OES 0x8D47 +#endif + +#ifndef GL_OES_surfaceless_context +#define GL_FRAMEBUFFER_UNDEFINED_OES 0x8219 +#endif + +/* GL_OES_texture_3D */ +#ifndef GL_OES_texture_3D +#define GL_TEXTURE_WRAP_R_OES 0x8072 +#define GL_TEXTURE_3D_OES 0x806F +#define GL_TEXTURE_BINDING_3D_OES 0x806A +#define GL_MAX_3D_TEXTURE_SIZE_OES 0x8073 +#define GL_SAMPLER_3D_OES 0x8B5F +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES 0x8CD4 +#endif + +/* GL_OES_texture_float */ +/* No new tokens introduced by this extension. */ + +/* GL_OES_texture_float_linear */ +/* No new tokens introduced by this extension. */ + +/* GL_OES_texture_half_float */ +#ifndef GL_OES_texture_half_float +#define GL_HALF_FLOAT_OES 0x8D61 +#endif + +/* GL_OES_texture_half_float_linear */ +/* No new tokens introduced by this extension. */ + +/* GL_OES_texture_npot */ +/* No new tokens introduced by this extension. */ + +/* GL_OES_vertex_array_object */ +#ifndef GL_OES_vertex_array_object +#define GL_VERTEX_ARRAY_BINDING_OES 0x85B5 +#endif + +/* GL_OES_vertex_half_float */ +/* GL_HALF_FLOAT_OES defined in GL_OES_texture_half_float already. */ + +/* GL_OES_vertex_type_10_10_10_2 */ +#ifndef GL_OES_vertex_type_10_10_10_2 +#define GL_UNSIGNED_INT_10_10_10_2_OES 0x8DF6 +#define GL_INT_10_10_10_2_OES 0x8DF7 +#endif + +/*------------------------------------------------------------------------* + * KHR extension tokens + *------------------------------------------------------------------------*/ + +#ifndef GL_KHR_debug +typedef void (GL_APIENTRYP GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,GLvoid *userParam); +#define GL_DEBUG_OUTPUT_SYNCHRONOUS 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM 0x8245 +#define GL_DEBUG_SOURCE_API 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION 0x824A +#define GL_DEBUG_SOURCE_OTHER 0x824B +#define GL_DEBUG_TYPE_ERROR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE 0x8250 +#define GL_DEBUG_TYPE_OTHER 0x8251 +#define GL_DEBUG_TYPE_MARKER 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH 0x826D +#define GL_BUFFER 0x82E0 +#define GL_SHADER 0x82E1 +#define GL_PROGRAM 0x82E2 +#define GL_QUERY 0x82E3 +/* PROGRAM_PIPELINE only in GL */ +#define GL_SAMPLER 0x82E6 +/* DISPLAY_LIST only in GL */ +#define GL_MAX_LABEL_LENGTH 0x82E8 +#define GL_MAX_DEBUG_MESSAGE_LENGTH 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES 0x9145 +#define GL_DEBUG_SEVERITY_HIGH 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM 0x9147 +#define GL_DEBUG_SEVERITY_LOW 0x9148 +#define GL_DEBUG_OUTPUT 0x92E0 +#define GL_CONTEXT_FLAG_DEBUG_BIT 0x00000002 +#define GL_STACK_OVERFLOW 0x0503 +#define GL_STACK_UNDERFLOW 0x0504 +#endif + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD +#endif + +/*------------------------------------------------------------------------* + * AMD extension tokens + *------------------------------------------------------------------------*/ + +/* GL_AMD_compressed_3DC_texture */ +#ifndef GL_AMD_compressed_3DC_texture +#define GL_3DC_X_AMD 0x87F9 +#define GL_3DC_XY_AMD 0x87FA +#endif + +/* GL_AMD_compressed_ATC_texture */ +#ifndef GL_AMD_compressed_ATC_texture +#define GL_ATC_RGB_AMD 0x8C92 +#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93 +#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE +#endif + +/* GL_AMD_performance_monitor */ +#ifndef GL_AMD_performance_monitor +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +#endif + +/* GL_AMD_program_binary_Z400 */ +#ifndef GL_AMD_program_binary_Z400 +#define GL_Z400_BINARY_AMD 0x8740 +#endif + +/*------------------------------------------------------------------------* + * ANGLE extension tokens + *------------------------------------------------------------------------*/ + +/* GL_ANGLE_framebuffer_blit */ +#ifndef GL_ANGLE_framebuffer_blit +#define GL_READ_FRAMEBUFFER_ANGLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_ANGLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_ANGLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_ANGLE 0x8CAA +#endif + +/* GL_ANGLE_framebuffer_multisample */ +#ifndef GL_ANGLE_framebuffer_multisample +#define GL_RENDERBUFFER_SAMPLES_ANGLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE 0x8D56 +#define GL_MAX_SAMPLES_ANGLE 0x8D57 +#endif + +/* GL_ANGLE_instanced_arrays */ +#ifndef GL_ANGLE_instanced_arrays +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE 0x88FE +#endif + +/* GL_ANGLE_pack_reverse_row_order */ +#ifndef GL_ANGLE_pack_reverse_row_order +#define GL_PACK_REVERSE_ROW_ORDER_ANGLE 0x93A4 +#endif + +/* GL_ANGLE_texture_compression_dxt3 */ +#ifndef GL_ANGLE_texture_compression_dxt3 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 +#endif + +/* GL_ANGLE_texture_compression_dxt5 */ +#ifndef GL_ANGLE_texture_compression_dxt5 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 +#endif + +/* GL_ANGLE_texture_usage */ +#ifndef GL_ANGLE_texture_usage +#define GL_TEXTURE_USAGE_ANGLE 0x93A2 +#define GL_FRAMEBUFFER_ATTACHMENT_ANGLE 0x93A3 +#endif + +/* GL_ANGLE_translated_shader_source */ +#ifndef GL_ANGLE_translated_shader_source +#define GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE 0x93A0 +#endif + +/*------------------------------------------------------------------------* + * APPLE extension tokens + *------------------------------------------------------------------------*/ + +/* GL_APPLE_copy_texture_levels */ +/* No new tokens introduced by this extension. */ + +/* GL_APPLE_framebuffer_multisample */ +#ifndef GL_APPLE_framebuffer_multisample +#define GL_RENDERBUFFER_SAMPLES_APPLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE 0x8D56 +#define GL_MAX_SAMPLES_APPLE 0x8D57 +#define GL_READ_FRAMEBUFFER_APPLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_APPLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_APPLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_APPLE 0x8CAA +#endif + +/* GL_APPLE_rgb_422 */ +#ifndef GL_APPLE_rgb_422 +#define GL_RGB_422_APPLE 0x8A1F +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#endif + +/* GL_APPLE_sync */ +#ifndef GL_APPLE_sync + +#ifndef __gl3_h_ +/* These types are defined with reference to + * in the Apple extension spec, but here we use the Khronos + * portable types in khrplatform.h, and assume those types + * are always defined. + * If any other extensions using these types are defined, + * the typedefs must move out of this block and be shared. + */ +typedef khronos_int64_t GLint64; +typedef khronos_uint64_t GLuint64; +typedef struct __GLsync *GLsync; +#endif + +#define GL_SYNC_OBJECT_APPLE 0x8A53 +#define GL_MAX_SERVER_WAIT_TIMEOUT_APPLE 0x9111 +#define GL_OBJECT_TYPE_APPLE 0x9112 +#define GL_SYNC_CONDITION_APPLE 0x9113 +#define GL_SYNC_STATUS_APPLE 0x9114 +#define GL_SYNC_FLAGS_APPLE 0x9115 +#define GL_SYNC_FENCE_APPLE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE 0x9117 +#define GL_UNSIGNALED_APPLE 0x9118 +#define GL_SIGNALED_APPLE 0x9119 +#define GL_ALREADY_SIGNALED_APPLE 0x911A +#define GL_TIMEOUT_EXPIRED_APPLE 0x911B +#define GL_CONDITION_SATISFIED_APPLE 0x911C +#define GL_WAIT_FAILED_APPLE 0x911D +#define GL_SYNC_FLUSH_COMMANDS_BIT_APPLE 0x00000001 +#define GL_TIMEOUT_IGNORED_APPLE 0xFFFFFFFFFFFFFFFFull +#endif + +/* GL_APPLE_texture_format_BGRA8888 */ +#ifndef GL_APPLE_texture_format_BGRA8888 +#define GL_BGRA_EXT 0x80E1 +#endif + +/* GL_APPLE_texture_max_level */ +#ifndef GL_APPLE_texture_max_level +#define GL_TEXTURE_MAX_LEVEL_APPLE 0x813D +#endif + +/*------------------------------------------------------------------------* + * ARM extension tokens + *------------------------------------------------------------------------*/ + +/* GL_ARM_mali_program_binary */ +#ifndef GL_ARM_mali_program_binary +#define GL_MALI_PROGRAM_BINARY_ARM 0x8F61 +#endif + +/* GL_ARM_mali_shader_binary */ +#ifndef GL_ARM_mali_shader_binary +#define GL_MALI_SHADER_BINARY_ARM 0x8F60 +#endif + +/* GL_ARM_rgba8 */ +/* No new tokens introduced by this extension. */ + +/*------------------------------------------------------------------------* + * EXT extension tokens + *------------------------------------------------------------------------*/ + +/* GL_EXT_blend_minmax */ +#ifndef GL_EXT_blend_minmax +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#endif + +/* GL_EXT_color_buffer_half_float */ +#ifndef GL_EXT_color_buffer_half_float +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_RG16F_EXT 0x822F +#define GL_R16F_EXT 0x822D +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT 0x8211 +#define GL_UNSIGNED_NORMALIZED_EXT 0x8C17 +#endif + +/* GL_EXT_debug_label */ +#ifndef GL_EXT_debug_label +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 +#endif + +/* GL_EXT_debug_marker */ +/* No new tokens introduced by this extension. */ + +/* GL_EXT_discard_framebuffer */ +#ifndef GL_EXT_discard_framebuffer +#define GL_COLOR_EXT 0x1800 +#define GL_DEPTH_EXT 0x1801 +#define GL_STENCIL_EXT 0x1802 +#endif + +/* GL_EXT_map_buffer_range */ +#ifndef GL_EXT_map_buffer_range +#define GL_MAP_READ_BIT_EXT 0x0001 +#define GL_MAP_WRITE_BIT_EXT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT_EXT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT_EXT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT_EXT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT_EXT 0x0020 +#endif + +/* GL_EXT_multisampled_render_to_texture */ +#ifndef GL_EXT_multisampled_render_to_texture +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT 0x8D6C +/* reuse values from GL_EXT_framebuffer_multisample (desktop extension) */ +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +#endif + +/* GL_EXT_multiview_draw_buffers */ +#ifndef GL_EXT_multiview_draw_buffers +#define GL_COLOR_ATTACHMENT_EXT 0x90F0 +#define GL_MULTIVIEW_EXT 0x90F1 +#define GL_DRAW_BUFFER_EXT 0x0C01 +#define GL_READ_BUFFER_EXT 0x0C02 +#define GL_MAX_MULTIVIEW_BUFFERS_EXT 0x90F2 +#endif + +/* GL_EXT_multi_draw_arrays */ +/* No new tokens introduced by this extension. */ + +/* GL_EXT_occlusion_query_boolean */ +#ifndef GL_EXT_occlusion_query_boolean +#define GL_ANY_SAMPLES_PASSED_EXT 0x8C2F +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT 0x8D6A +#define GL_CURRENT_QUERY_EXT 0x8865 +#define GL_QUERY_RESULT_EXT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_EXT 0x8867 +#endif + +/* GL_EXT_read_format_bgra */ +#ifndef GL_EXT_read_format_bgra +#define GL_BGRA_EXT 0x80E1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT 0x8366 +#endif + +/* GL_EXT_robustness */ +#ifndef GL_EXT_robustness +/* reuse GL_NO_ERROR */ +#define GL_GUILTY_CONTEXT_RESET_EXT 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_EXT 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_EXT 0x8255 +#define GL_CONTEXT_ROBUST_ACCESS_EXT 0x90F3 +#define GL_RESET_NOTIFICATION_STRATEGY_EXT 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET_EXT 0x8252 +#define GL_NO_RESET_NOTIFICATION_EXT 0x8261 +#endif + +/* GL_EXT_separate_shader_objects */ +#ifndef GL_EXT_separate_shader_objects +#define GL_VERTEX_SHADER_BIT_EXT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT_EXT 0x00000002 +#define GL_ALL_SHADER_BITS_EXT 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE_EXT 0x8258 +#define GL_ACTIVE_PROGRAM_EXT 0x8259 +#define GL_PROGRAM_PIPELINE_BINDING_EXT 0x825A +#endif + +/* GL_EXT_shader_framebuffer_fetch */ +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif + +/* GL_EXT_shader_texture_lod */ +/* No new tokens introduced by this extension. */ + +/* GL_EXT_shadow_samplers */ +#ifndef GL_EXT_shadow_samplers +#define GL_TEXTURE_COMPARE_MODE_EXT 0x884C +#define GL_TEXTURE_COMPARE_FUNC_EXT 0x884D +#define GL_COMPARE_REF_TO_TEXTURE_EXT 0x884E +#define GL_SAMPLER_2D_SHADOW_EXT 0x8B62 +#endif + +/* GL_EXT_sRGB */ +#ifndef GL_EXT_sRGB +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT 0x8210 +#endif + +/* GL_EXT_texture_compression_dxt1 */ +#ifndef GL_EXT_texture_compression_dxt1 +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#endif + +/* GL_EXT_texture_filter_anisotropic */ +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif + +/* GL_EXT_texture_format_BGRA8888 */ +#ifndef GL_EXT_texture_format_BGRA8888 +#define GL_BGRA_EXT 0x80E1 +#endif + +/* GL_EXT_texture_rg */ +#ifndef GL_EXT_texture_rg +#define GL_RED_EXT 0x1903 +#define GL_RG_EXT 0x8227 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#endif + +/* GL_EXT_texture_storage */ +#ifndef GL_EXT_texture_storage +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_ALPHA8_EXT 0x803C +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +/* reuse GL_RGBA16F_EXT */ +/* reuse GL_RGB16F_EXT */ +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_RGB10_A2_EXT 0x8059 +#define GL_RGB10_EXT 0x8052 +#define GL_BGRA8_EXT 0x93A1 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +#define GL_R16F_EXT 0x822D +#define GL_RG16F_EXT 0x822F +#endif + +/* GL_EXT_texture_type_2_10_10_10_REV */ +#ifndef GL_EXT_texture_type_2_10_10_10_REV +#define GL_UNSIGNED_INT_2_10_10_10_REV_EXT 0x8368 +#endif + +/* GL_EXT_unpack_subimage */ +#ifndef GL_EXT_unpack_subimage +#define GL_UNPACK_ROW_LENGTH 0x0CF2 +#define GL_UNPACK_SKIP_ROWS 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS 0x0CF4 +#endif + +/*------------------------------------------------------------------------* + * DMP extension tokens + *------------------------------------------------------------------------*/ + +/* GL_DMP_shader_binary */ +#ifndef GL_DMP_shader_binary +#define GL_SHADER_BINARY_DMP 0x9250 +#endif + +/*------------------------------------------------------------------------* + * FJ extension tokens + *------------------------------------------------------------------------*/ + +/* GL_FJ_shader_binary_GCCSO */ +#ifndef GL_FJ_shader_binary_GCCSO +#define GCCSO_SHADER_BINARY_FJ 0x9260 +#endif + +/*------------------------------------------------------------------------* + * IMG extension tokens + *------------------------------------------------------------------------*/ + +/* GL_IMG_program_binary */ +#ifndef GL_IMG_program_binary +#define GL_SGX_PROGRAM_BINARY_IMG 0x9130 +#endif + +/* GL_IMG_read_format */ +#ifndef GL_IMG_read_format +#define GL_BGRA_IMG 0x80E1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG 0x8365 +#endif + +/* GL_IMG_shader_binary */ +#ifndef GL_IMG_shader_binary +#define GL_SGX_BINARY_IMG 0x8C0A +#endif + +/* GL_IMG_texture_compression_pvrtc */ +#ifndef GL_IMG_texture_compression_pvrtc +#define GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG 0x8C00 +#define GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG 0x8C01 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG 0x8C02 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG 0x8C03 +#endif + +/* GL_IMG_multisampled_render_to_texture */ +#ifndef GL_IMG_multisampled_render_to_texture +#define GL_RENDERBUFFER_SAMPLES_IMG 0x9133 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG 0x9134 +#define GL_MAX_SAMPLES_IMG 0x9135 +#define GL_TEXTURE_SAMPLES_IMG 0x9136 +#endif + +/*------------------------------------------------------------------------* + * NV extension tokens + *------------------------------------------------------------------------*/ + +/* GL_NV_coverage_sample */ +#ifndef GL_NV_coverage_sample +#define GL_COVERAGE_COMPONENT_NV 0x8ED0 +#define GL_COVERAGE_COMPONENT4_NV 0x8ED1 +#define GL_COVERAGE_ATTACHMENT_NV 0x8ED2 +#define GL_COVERAGE_BUFFERS_NV 0x8ED3 +#define GL_COVERAGE_SAMPLES_NV 0x8ED4 +#define GL_COVERAGE_ALL_FRAGMENTS_NV 0x8ED5 +#define GL_COVERAGE_EDGE_FRAGMENTS_NV 0x8ED6 +#define GL_COVERAGE_AUTOMATIC_NV 0x8ED7 +#define GL_COVERAGE_BUFFER_BIT_NV 0x8000 +#endif + +/* GL_NV_depth_nonlinear */ +#ifndef GL_NV_depth_nonlinear +#define GL_DEPTH_COMPONENT16_NONLINEAR_NV 0x8E2C +#endif + +/* GL_NV_draw_buffers */ +#ifndef GL_NV_draw_buffers +#define GL_MAX_DRAW_BUFFERS_NV 0x8824 +#define GL_DRAW_BUFFER0_NV 0x8825 +#define GL_DRAW_BUFFER1_NV 0x8826 +#define GL_DRAW_BUFFER2_NV 0x8827 +#define GL_DRAW_BUFFER3_NV 0x8828 +#define GL_DRAW_BUFFER4_NV 0x8829 +#define GL_DRAW_BUFFER5_NV 0x882A +#define GL_DRAW_BUFFER6_NV 0x882B +#define GL_DRAW_BUFFER7_NV 0x882C +#define GL_DRAW_BUFFER8_NV 0x882D +#define GL_DRAW_BUFFER9_NV 0x882E +#define GL_DRAW_BUFFER10_NV 0x882F +#define GL_DRAW_BUFFER11_NV 0x8830 +#define GL_DRAW_BUFFER12_NV 0x8831 +#define GL_DRAW_BUFFER13_NV 0x8832 +#define GL_DRAW_BUFFER14_NV 0x8833 +#define GL_DRAW_BUFFER15_NV 0x8834 +#define GL_COLOR_ATTACHMENT0_NV 0x8CE0 +#define GL_COLOR_ATTACHMENT1_NV 0x8CE1 +#define GL_COLOR_ATTACHMENT2_NV 0x8CE2 +#define GL_COLOR_ATTACHMENT3_NV 0x8CE3 +#define GL_COLOR_ATTACHMENT4_NV 0x8CE4 +#define GL_COLOR_ATTACHMENT5_NV 0x8CE5 +#define GL_COLOR_ATTACHMENT6_NV 0x8CE6 +#define GL_COLOR_ATTACHMENT7_NV 0x8CE7 +#define GL_COLOR_ATTACHMENT8_NV 0x8CE8 +#define GL_COLOR_ATTACHMENT9_NV 0x8CE9 +#define GL_COLOR_ATTACHMENT10_NV 0x8CEA +#define GL_COLOR_ATTACHMENT11_NV 0x8CEB +#define GL_COLOR_ATTACHMENT12_NV 0x8CEC +#define GL_COLOR_ATTACHMENT13_NV 0x8CED +#define GL_COLOR_ATTACHMENT14_NV 0x8CEE +#define GL_COLOR_ATTACHMENT15_NV 0x8CEF +#endif + +/* GL_NV_fbo_color_attachments */ +#ifndef GL_NV_fbo_color_attachments +#define GL_MAX_COLOR_ATTACHMENTS_NV 0x8CDF +/* GL_COLOR_ATTACHMENT{0-15}_NV defined in GL_NV_draw_buffers already. */ +#endif + +/* GL_NV_fence */ +#ifndef GL_NV_fence +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +#endif + +/* GL_NV_read_buffer */ +#ifndef GL_NV_read_buffer +#define GL_READ_BUFFER_NV 0x0C02 +#endif + +/* GL_NV_read_buffer_front */ +/* No new tokens introduced by this extension. */ + +/* GL_NV_read_depth */ +/* No new tokens introduced by this extension. */ + +/* GL_NV_read_depth_stencil */ +/* No new tokens introduced by this extension. */ + +/* GL_NV_read_stencil */ +/* No new tokens introduced by this extension. */ + +/* GL_NV_texture_compression_s3tc_update */ +/* No new tokens introduced by this extension. */ + +/* GL_NV_texture_npot_2D_mipmap */ +/* No new tokens introduced by this extension. */ + +/*------------------------------------------------------------------------* + * QCOM extension tokens + *------------------------------------------------------------------------*/ + +/* GL_QCOM_alpha_test */ +#ifndef GL_QCOM_alpha_test +#define GL_ALPHA_TEST_QCOM 0x0BC0 +#define GL_ALPHA_TEST_FUNC_QCOM 0x0BC1 +#define GL_ALPHA_TEST_REF_QCOM 0x0BC2 +#endif + +/* GL_QCOM_binning_control */ +#ifndef GL_QCOM_binning_control +#define GL_BINNING_CONTROL_HINT_QCOM 0x8FB0 +#define GL_CPU_OPTIMIZED_QCOM 0x8FB1 +#define GL_GPU_OPTIMIZED_QCOM 0x8FB2 +#define GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM 0x8FB3 +#endif + +/* GL_QCOM_driver_control */ +/* No new tokens introduced by this extension. */ + +/* GL_QCOM_extended_get */ +#ifndef GL_QCOM_extended_get +#define GL_TEXTURE_WIDTH_QCOM 0x8BD2 +#define GL_TEXTURE_HEIGHT_QCOM 0x8BD3 +#define GL_TEXTURE_DEPTH_QCOM 0x8BD4 +#define GL_TEXTURE_INTERNAL_FORMAT_QCOM 0x8BD5 +#define GL_TEXTURE_FORMAT_QCOM 0x8BD6 +#define GL_TEXTURE_TYPE_QCOM 0x8BD7 +#define GL_TEXTURE_IMAGE_VALID_QCOM 0x8BD8 +#define GL_TEXTURE_NUM_LEVELS_QCOM 0x8BD9 +#define GL_TEXTURE_TARGET_QCOM 0x8BDA +#define GL_TEXTURE_OBJECT_VALID_QCOM 0x8BDB +#define GL_STATE_RESTORE 0x8BDC +#endif + +/* GL_QCOM_extended_get2 */ +/* No new tokens introduced by this extension. */ + +/* GL_QCOM_perfmon_global_mode */ +#ifndef GL_QCOM_perfmon_global_mode +#define GL_PERFMON_GLOBAL_MODE_QCOM 0x8FA0 +#endif + +/* GL_QCOM_writeonly_rendering */ +#ifndef GL_QCOM_writeonly_rendering +#define GL_WRITEONLY_RENDERING_QCOM 0x8823 +#endif + +/* GL_QCOM_tiled_rendering */ +#ifndef GL_QCOM_tiled_rendering +#define GL_COLOR_BUFFER_BIT0_QCOM 0x00000001 +#define GL_COLOR_BUFFER_BIT1_QCOM 0x00000002 +#define GL_COLOR_BUFFER_BIT2_QCOM 0x00000004 +#define GL_COLOR_BUFFER_BIT3_QCOM 0x00000008 +#define GL_COLOR_BUFFER_BIT4_QCOM 0x00000010 +#define GL_COLOR_BUFFER_BIT5_QCOM 0x00000020 +#define GL_COLOR_BUFFER_BIT6_QCOM 0x00000040 +#define GL_COLOR_BUFFER_BIT7_QCOM 0x00000080 +#define GL_DEPTH_BUFFER_BIT0_QCOM 0x00000100 +#define GL_DEPTH_BUFFER_BIT1_QCOM 0x00000200 +#define GL_DEPTH_BUFFER_BIT2_QCOM 0x00000400 +#define GL_DEPTH_BUFFER_BIT3_QCOM 0x00000800 +#define GL_DEPTH_BUFFER_BIT4_QCOM 0x00001000 +#define GL_DEPTH_BUFFER_BIT5_QCOM 0x00002000 +#define GL_DEPTH_BUFFER_BIT6_QCOM 0x00004000 +#define GL_DEPTH_BUFFER_BIT7_QCOM 0x00008000 +#define GL_STENCIL_BUFFER_BIT0_QCOM 0x00010000 +#define GL_STENCIL_BUFFER_BIT1_QCOM 0x00020000 +#define GL_STENCIL_BUFFER_BIT2_QCOM 0x00040000 +#define GL_STENCIL_BUFFER_BIT3_QCOM 0x00080000 +#define GL_STENCIL_BUFFER_BIT4_QCOM 0x00100000 +#define GL_STENCIL_BUFFER_BIT5_QCOM 0x00200000 +#define GL_STENCIL_BUFFER_BIT6_QCOM 0x00400000 +#define GL_STENCIL_BUFFER_BIT7_QCOM 0x00800000 +#define GL_MULTISAMPLE_BUFFER_BIT0_QCOM 0x01000000 +#define GL_MULTISAMPLE_BUFFER_BIT1_QCOM 0x02000000 +#define GL_MULTISAMPLE_BUFFER_BIT2_QCOM 0x04000000 +#define GL_MULTISAMPLE_BUFFER_BIT3_QCOM 0x08000000 +#define GL_MULTISAMPLE_BUFFER_BIT4_QCOM 0x10000000 +#define GL_MULTISAMPLE_BUFFER_BIT5_QCOM 0x20000000 +#define GL_MULTISAMPLE_BUFFER_BIT6_QCOM 0x40000000 +#define GL_MULTISAMPLE_BUFFER_BIT7_QCOM 0x80000000 +#endif + +/*------------------------------------------------------------------------* + * VIV extension tokens + *------------------------------------------------------------------------*/ + +/* GL_VIV_shader_binary */ +#ifndef GL_VIV_shader_binary +#define GL_SHADER_BINARY_VIV 0x8FC4 +#endif + +/*------------------------------------------------------------------------* + * End of extension tokens, start of corresponding extension functions + *------------------------------------------------------------------------*/ + +/*------------------------------------------------------------------------* + * OES extension functions + *------------------------------------------------------------------------*/ + +/* GL_OES_compressed_ETC1_RGB8_texture */ +#ifndef GL_OES_compressed_ETC1_RGB8_texture +#define GL_OES_compressed_ETC1_RGB8_texture 1 +#endif + +/* GL_OES_compressed_paletted_texture */ +#ifndef GL_OES_compressed_paletted_texture +#define GL_OES_compressed_paletted_texture 1 +#endif + +/* GL_OES_depth24 */ +#ifndef GL_OES_depth24 +#define GL_OES_depth24 1 +#endif + +/* GL_OES_depth32 */ +#ifndef GL_OES_depth32 +#define GL_OES_depth32 1 +#endif + +/* GL_OES_depth_texture */ +#ifndef GL_OES_depth_texture +#define GL_OES_depth_texture 1 +#endif + +/* GL_OES_EGL_image */ +#ifndef GL_OES_EGL_image +#define GL_OES_EGL_image 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); +GL_APICALL void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); +#endif +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image); +#endif + +/* GL_OES_EGL_image_external */ +#ifndef GL_OES_EGL_image_external +#define GL_OES_EGL_image_external 1 +/* glEGLImageTargetTexture2DOES defined in GL_OES_EGL_image already. */ +#endif + +/* GL_OES_element_index_uint */ +#ifndef GL_OES_element_index_uint +#define GL_OES_element_index_uint 1 +#endif + +/* GL_OES_fbo_render_mipmap */ +#ifndef GL_OES_fbo_render_mipmap +#define GL_OES_fbo_render_mipmap 1 +#endif + +/* GL_OES_fragment_precision_high */ +#ifndef GL_OES_fragment_precision_high +#define GL_OES_fragment_precision_high 1 +#endif + +/* GL_OES_get_program_binary */ +#ifndef GL_OES_get_program_binary +#define GL_OES_get_program_binary 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); +GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length); +#endif +typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); +typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length); +#endif + +/* GL_OES_mapbuffer */ +#ifndef GL_OES_mapbuffer +#define GL_OES_mapbuffer 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void* GL_APIENTRY glMapBufferOES (GLenum target, GLenum access); +GL_APICALL GLboolean GL_APIENTRY glUnmapBufferOES (GLenum target); +GL_APICALL void GL_APIENTRY glGetBufferPointervOES (GLenum target, GLenum pname, GLvoid** params); +#endif +typedef void* (GL_APIENTRYP PFNGLMAPBUFFEROESPROC) (GLenum target, GLenum access); +typedef GLboolean (GL_APIENTRYP PFNGLUNMAPBUFFEROESPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPOINTERVOESPROC) (GLenum target, GLenum pname, GLvoid** params); +#endif + +/* GL_OES_packed_depth_stencil */ +#ifndef GL_OES_packed_depth_stencil +#define GL_OES_packed_depth_stencil 1 +#endif + +/* GL_OES_required_internalformat */ +#ifndef GL_OES_required_internalformat +#define GL_OES_required_internalformat 1 +#endif + +/* GL_OES_rgb8_rgba8 */ +#ifndef GL_OES_rgb8_rgba8 +#define GL_OES_rgb8_rgba8 1 +#endif + +/* GL_OES_standard_derivatives */ +#ifndef GL_OES_standard_derivatives +#define GL_OES_standard_derivatives 1 +#endif + +/* GL_OES_stencil1 */ +#ifndef GL_OES_stencil1 +#define GL_OES_stencil1 1 +#endif + +/* GL_OES_stencil4 */ +#ifndef GL_OES_stencil4 +#define GL_OES_stencil4 1 +#endif + +#ifndef GL_OES_surfaceless_context +#define GL_OES_surfaceless_context 1 +#endif + +/* GL_OES_texture_3D */ +#ifndef GL_OES_texture_3D +#define GL_OES_texture_3D 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels); +GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels); +GL_APICALL void GL_APIENTRY glCopyTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data); +GL_APICALL void GL_APIENTRY glFramebufferTexture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#endif +typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DOES) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#endif + +/* GL_OES_texture_float */ +#ifndef GL_OES_texture_float +#define GL_OES_texture_float 1 +#endif + +/* GL_OES_texture_float_linear */ +#ifndef GL_OES_texture_float_linear +#define GL_OES_texture_float_linear 1 +#endif + +/* GL_OES_texture_half_float */ +#ifndef GL_OES_texture_half_float +#define GL_OES_texture_half_float 1 +#endif + +/* GL_OES_texture_half_float_linear */ +#ifndef GL_OES_texture_half_float_linear +#define GL_OES_texture_half_float_linear 1 +#endif + +/* GL_OES_texture_npot */ +#ifndef GL_OES_texture_npot +#define GL_OES_texture_npot 1 +#endif + +/* GL_OES_vertex_array_object */ +#ifndef GL_OES_vertex_array_object +#define GL_OES_vertex_array_object 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindVertexArrayOES (GLuint array); +GL_APICALL void GL_APIENTRY glDeleteVertexArraysOES (GLsizei n, const GLuint *arrays); +GL_APICALL void GL_APIENTRY glGenVertexArraysOES (GLsizei n, GLuint *arrays); +GL_APICALL GLboolean GL_APIENTRY glIsVertexArrayOES (GLuint array); +#endif +typedef void (GL_APIENTRYP PFNGLBINDVERTEXARRAYOESPROC) (GLuint array); +typedef void (GL_APIENTRYP PFNGLDELETEVERTEXARRAYSOESPROC) (GLsizei n, const GLuint *arrays); +typedef void (GL_APIENTRYP PFNGLGENVERTEXARRAYSOESPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (GL_APIENTRYP PFNGLISVERTEXARRAYOESPROC) (GLuint array); +#endif + +/* GL_OES_vertex_half_float */ +#ifndef GL_OES_vertex_half_float +#define GL_OES_vertex_half_float 1 +#endif + +/* GL_OES_vertex_type_10_10_10_2 */ +#ifndef GL_OES_vertex_type_10_10_10_2 +#define GL_OES_vertex_type_10_10_10_2 1 +#endif + +/*------------------------------------------------------------------------* + * KHR extension functions + *------------------------------------------------------------------------*/ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDebugMessageControl (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GL_APICALL void GL_APIENTRY glDebugMessageInsert (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GL_APICALL void GL_APIENTRY glDebugMessageCallback (GLDEBUGPROC callback, const void *userParam); +GL_APICALL GLuint GL_APIENTRY glGetDebugMessageLog (GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +GL_APICALL void GL_APIENTRY glPushDebugGroup (GLenum source, GLuint id, GLsizei length, const GLchar *message); +GL_APICALL void GL_APIENTRY glPopDebugGroup (void); +GL_APICALL void GL_APIENTRY glObjectLabel (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabel (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glObjectPtrLabel (const void *ptr, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectPtrLabel (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glGetPointerv (GLenum pname, void **params); +#endif +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECONTROLPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGEINSERTPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECALLBACKPROC) (GLDEBUGPROC callback, const void *userParam); +typedef GLuint (GL_APIENTRYP PFNGLGETDEBUGMESSAGELOGPROC) (GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +typedef void (GL_APIENTRYP PFNGLPUSHDEBUGGROUPPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); +typedef void (GL_APIENTRYP PFNGLPOPDEBUGGROUPPROC) (void); +typedef void (GL_APIENTRYP PFNGLOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLOBJECTPTRLABELPROC) (const void *ptr, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTPTRLABELPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETPOINTERVPROC) (GLenum pname, void **params); +#endif + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 +#endif + + +/*------------------------------------------------------------------------* + * AMD extension functions + *------------------------------------------------------------------------*/ + +/* GL_AMD_compressed_3DC_texture */ +#ifndef GL_AMD_compressed_3DC_texture +#define GL_AMD_compressed_3DC_texture 1 +#endif + +/* GL_AMD_compressed_ATC_texture */ +#ifndef GL_AMD_compressed_ATC_texture +#define GL_AMD_compressed_ATC_texture 1 +#endif + +/* AMD_performance_monitor */ +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, GLvoid *data); +GL_APICALL void GL_APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *countersList); +GL_APICALL void GL_APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, GLvoid *data); +typedef void (GL_APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *countersList); +typedef void (GL_APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif + +/* GL_AMD_program_binary_Z400 */ +#ifndef GL_AMD_program_binary_Z400 +#define GL_AMD_program_binary_Z400 1 +#endif + +/*------------------------------------------------------------------------* + * ANGLE extension functions + *------------------------------------------------------------------------*/ + +/* GL_ANGLE_framebuffer_blit */ +#ifndef GL_ANGLE_framebuffer_blit +#define GL_ANGLE_framebuffer_blit 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif + +/* GL_ANGLE_framebuffer_multisample */ +#ifndef GL_ANGLE_framebuffer_multisample +#define GL_ANGLE_framebuffer_multisample 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleANGLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEANGLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif + +#ifndef GL_ANGLE_instanced_arrays +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GLuint divisor); +#endif +typedef void (GL_APIENTRYP PFLGLDRAWARRAYSINSTANCEDANGLEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFLGLDRAWELEMENTSINSTANCEDANGLEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +typedef void (GL_APIENTRYP PFLGLVERTEXATTRIBDIVISORANGLEPROC) (GLuint index, GLuint divisor); +#endif + +/* GL_ANGLE_pack_reverse_row_order */ +#ifndef GL_ANGLE_pack_reverse_row_order +#define GL_ANGLE_pack_reverse_row_order 1 +#endif + +/* GL_ANGLE_texture_compression_dxt3 */ +#ifndef GL_ANGLE_texture_compression_dxt3 +#define GL_ANGLE_texture_compression_dxt3 1 +#endif + +/* GL_ANGLE_texture_compression_dxt5 */ +#ifndef GL_ANGLE_texture_compression_dxt5 +#define GL_ANGLE_texture_compression_dxt5 1 +#endif + +/* GL_ANGLE_texture_usage */ +#ifndef GL_ANGLE_texture_usage +#define GL_ANGLE_texture_usage 1 +#endif + +#ifndef GL_ANGLE_translated_shader_source +#define GL_ANGLE_translated_shader_source 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetTranslatedShaderSourceANGLE (GLuint shader, GLsizei bufsize, GLsizei *length, GLchar *source); +#endif +typedef void (GL_APIENTRYP PFLGLGETTRANSLATEDSHADERSOURCEANGLEPROC) (GLuint shader, GLsizei bufsize, GLsizei *length, GLchar *source); +#endif + +/*------------------------------------------------------------------------* + * APPLE extension functions + *------------------------------------------------------------------------*/ + +/* GL_APPLE_copy_texture_levels */ +#ifndef GL_APPLE_copy_texture_levels +#define GL_APPLE_copy_texture_levels 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyTextureLevelsAPPLE (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#endif +typedef void (GL_APIENTRYP PFNGLCOPYTEXTURELEVELSAPPLEPROC) (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#endif + +/* GL_APPLE_framebuffer_multisample */ +#ifndef GL_APPLE_framebuffer_multisample +#define GL_APPLE_framebuffer_multisample 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAPPLE (GLenum, GLsizei, GLenum, GLsizei, GLsizei); +GL_APICALL void GL_APIENTRY glResolveMultisampleFramebufferAPPLE (void); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEAPPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLRESOLVEMULTISAMPLEFRAMEBUFFERAPPLEPROC) (void); +#endif + +/* GL_APPLE_rgb_422 */ +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#endif + +/* GL_APPLE_sync */ +#ifndef GL_APPLE_sync +#define GL_APPLE_sync 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLsync GL_APIENTRY glFenceSyncAPPLE (GLenum condition, GLbitfield flags); +GL_APICALL GLboolean GL_APIENTRY glIsSyncAPPLE (GLsync sync); +GL_APICALL void GL_APIENTRY glDeleteSyncAPPLE (GLsync sync); +GL_APICALL GLenum GL_APIENTRY glClientWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glGetInteger64vAPPLE (GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetSyncivAPPLE (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); +#endif +typedef GLsync (GL_APIENTRYP PFNGLFENCESYNCAPPLEPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (GL_APIENTRYP PFNGLISSYNCAPPLEPROC) (GLsync sync); +typedef void (GL_APIENTRYP PFNGLDELETESYNCAPPLEPROC) (GLsync sync); +typedef GLenum (GL_APIENTRYP PFNGLCLIENTWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VAPPLEPROC) (GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSYNCIVAPPLEPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); +#endif + +/* GL_APPLE_texture_format_BGRA8888 */ +#ifndef GL_APPLE_texture_format_BGRA8888 +#define GL_APPLE_texture_format_BGRA8888 1 +#endif + +/* GL_APPLE_texture_max_level */ +#ifndef GL_APPLE_texture_max_level +#define GL_APPLE_texture_max_level 1 +#endif + +/*------------------------------------------------------------------------* + * ARM extension functions + *------------------------------------------------------------------------*/ + +/* GL_ARM_mali_program_binary */ +#ifndef GL_ARM_mali_program_binary +#define GL_ARM_mali_program_binary 1 +#endif + +/* GL_ARM_mali_shader_binary */ +#ifndef GL_ARM_mali_shader_binary +#define GL_ARM_mali_shader_binary 1 +#endif + +/* GL_ARM_rgba8 */ +#ifndef GL_ARM_rgba8 +#define GL_ARM_rgba8 1 +#endif + +/*------------------------------------------------------------------------* + * EXT extension functions + *------------------------------------------------------------------------*/ + +/* GL_EXT_blend_minmax */ +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#endif + +/* GL_EXT_color_buffer_half_float */ +#ifndef GL_EXT_color_buffer_half_float +#define GL_EXT_color_buffer_half_float 1 +#endif + +/* GL_EXT_debug_label */ +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +typedef void (GL_APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif + +/* GL_EXT_debug_marker */ +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPopGroupMarkerEXT (void); +#endif +typedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); +#endif + +/* GL_EXT_discard_framebuffer */ +#ifndef GL_EXT_discard_framebuffer +#define GL_EXT_discard_framebuffer 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#endif +typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#endif + +/* GL_EXT_map_buffer_range */ +#ifndef GL_EXT_map_buffer_range +#define GL_EXT_map_buffer_range 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void* GL_APIENTRY glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GL_APICALL void GL_APIENTRY glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length); +#endif +typedef void* (GL_APIENTRYP PFNGLMAPBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (GL_APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +#endif + +/* GL_EXT_multisampled_render_to_texture */ +#ifndef GL_EXT_multisampled_render_to_texture +#define GL_EXT_multisampled_render_to_texture 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleEXT (GLenum, GLsizei, GLenum, GLsizei, GLsizei); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleEXT (GLenum, GLenum, GLenum, GLuint, GLint, GLsizei); +#endif +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif + +/* GL_EXT_multiview_draw_buffers */ +#ifndef GL_EXT_multiview_draw_buffers +#define GL_EXT_multiview_draw_buffers 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferIndexedEXT (GLenum src, GLint index); +GL_APICALL void GL_APIENTRY glDrawBuffersIndexedEXT (GLint n, const GLenum *location, const GLint *indices); +GL_APICALL void GL_APIENTRY glGetIntegeri_vEXT (GLenum target, GLuint index, GLint *data); +#endif +typedef void (GL_APIENTRYP PFNGLREADBUFFERINDEXEDEXTPROC) (GLenum src, GLint index); +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSINDEXEDEXTPROC) (GLint n, const GLenum *location, const GLint *indices); +typedef void (GL_APIENTRYP PFNGLGETINTEGERI_VEXTPROC) (GLenum target, GLuint index, GLint *data); +#endif + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysEXT (GLenum, GLint *, GLsizei *, GLsizei); +GL_APICALL void GL_APIENTRY glMultiDrawElementsEXT (GLenum, const GLsizei *, GLenum, const GLvoid* *, GLsizei); +#endif /* GL_GLEXT_PROTOTYPES */ +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, GLint *first, GLsizei *count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount); +#endif + +/* GL_EXT_occlusion_query_boolean */ +#ifndef GL_EXT_occlusion_query_boolean +#define GL_EXT_occlusion_query_boolean 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenQueriesEXT (GLsizei n, GLuint *ids); +GL_APICALL void GL_APIENTRY glDeleteQueriesEXT (GLsizei n, const GLuint *ids); +GL_APICALL GLboolean GL_APIENTRY glIsQueryEXT (GLuint id); +GL_APICALL void GL_APIENTRY glBeginQueryEXT (GLenum target, GLuint id); +GL_APICALL void GL_APIENTRY glEndQueryEXT (GLenum target); +GL_APICALL void GL_APIENTRY glGetQueryivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectuivEXT (GLuint id, GLenum pname, GLuint *params); +#endif +typedef void (GL_APIENTRYP PFNGLGENQUERIESEXTPROC) (GLsizei n, GLuint *ids); +typedef void (GL_APIENTRYP PFNGLDELETEQUERIESEXTPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (GL_APIENTRYP PFNGLISQUERYEXTPROC) (GLuint id); +typedef void (GL_APIENTRYP PFNGLBEGINQUERYEXTPROC) (GLenum target, GLuint id); +typedef void (GL_APIENTRYP PFNGLENDQUERYEXTPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGETQUERYIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUIVEXTPROC) (GLuint id, GLenum pname, GLuint *params); +#endif + +/* GL_EXT_read_format_bgra */ +#ifndef GL_EXT_read_format_bgra +#define GL_EXT_read_format_bgra 1 +#endif + +/* GL_EXT_robustness */ +#ifndef GL_EXT_robustness +#define GL_EXT_robustness 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusEXT (void); +GL_APICALL void GL_APIENTRY glReadnPixelsEXT (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvEXT (GLuint program, GLint location, GLsizei bufSize, float *params); +GL_APICALL void GL_APIENTRY glGetnUniformivEXT (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#endif +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSEXTPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSEXTPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, float *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#endif + +/* GL_EXT_separate_shader_objects */ +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUseProgramStagesEXT (GLuint pipeline, GLbitfield stages, GLuint program); +GL_APICALL void GL_APIENTRY glActiveShaderProgramEXT (GLuint pipeline, GLuint program); +GL_APICALL GLuint GL_APIENTRY glCreateShaderProgramvEXT (GLenum type, GLsizei count, const GLchar **strings); +GL_APICALL void GL_APIENTRY glBindProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glDeleteProgramPipelinesEXT (GLsizei n, const GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGenProgramPipelinesEXT (GLsizei n, GLuint *pipelines); +GL_APICALL GLboolean GL_APIENTRY glIsProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glGetProgramPipelineivEXT (GLuint pipeline, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint x); +GL_APICALL void GL_APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint x, GLint y); +GL_APICALL void GL_APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint x, GLint y, GLint z); +GL_APICALL void GL_APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint x, GLint y, GLint z, GLint w); +GL_APICALL void GL_APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat x); +GL_APICALL void GL_APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat x, GLfloat y); +GL_APICALL void GL_APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GL_APICALL void GL_APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glValidateProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glGetProgramPipelineInfoLogEXT (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +#endif +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMSTAGESEXTPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROGRAMVEXTPROC) (GLenum type, GLsizei count, const GLchar **strings); +typedef void (GL_APIENTRYP PFNGLBINDPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPIPELINESEXTPROC) (GLsizei n, const GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGENPROGRAMPIPELINESEXTPROC) (GLsizei n, GLuint *pipelines); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEIVEXTPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint x, GLint y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint x, GLint y, GLint z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint x, GLint y, GLint z, GLint w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat x, GLfloat y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGEXTPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +#endif + +/* GL_EXT_shader_framebuffer_fetch */ +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#endif + +/* GL_EXT_shader_texture_lod */ +#ifndef GL_EXT_shader_texture_lod +#define GL_EXT_shader_texture_lod 1 +#endif + +/* GL_EXT_shadow_samplers */ +#ifndef GL_EXT_shadow_samplers +#define GL_EXT_shadow_samplers 1 +#endif + +/* GL_EXT_sRGB */ +#ifndef GL_EXT_sRGB +#define GL_EXT_sRGB 1 +#endif + +/* GL_EXT_texture_compression_dxt1 */ +#ifndef GL_EXT_texture_compression_dxt1 +#define GL_EXT_texture_compression_dxt1 1 +#endif + +/* GL_EXT_texture_filter_anisotropic */ +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#endif + +/* GL_EXT_texture_format_BGRA8888 */ +#ifndef GL_EXT_texture_format_BGRA8888 +#define GL_EXT_texture_format_BGRA8888 1 +#endif + +/* GL_EXT_texture_rg */ +#ifndef GL_EXT_texture_rg +#define GL_EXT_texture_rg 1 +#endif + +/* GL_EXT_texture_storage */ +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GL_APICALL void GL_APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif + +/* GL_EXT_texture_type_2_10_10_10_REV */ +#ifndef GL_EXT_texture_type_2_10_10_10_REV +#define GL_EXT_texture_type_2_10_10_10_REV 1 +#endif + +/* GL_EXT_unpack_subimage */ +#ifndef GL_EXT_unpack_subimage +#define GL_EXT_unpack_subimage 1 +#endif + +/*------------------------------------------------------------------------* + * DMP extension functions + *------------------------------------------------------------------------*/ + +/* GL_DMP_shader_binary */ +#ifndef GL_DMP_shader_binary +#define GL_DMP_shader_binary 1 +#endif + +/*------------------------------------------------------------------------* + * FJ extension functions + *------------------------------------------------------------------------*/ + +/* GL_FJ_shader_binary_GCCSO */ +#ifndef GL_FJ_shader_binary_GCCSO +#define GL_FJ_shader_binary_GCCSO 1 +#endif + +/*------------------------------------------------------------------------* + * IMG extension functions + *------------------------------------------------------------------------*/ + +/* GL_IMG_program_binary */ +#ifndef GL_IMG_program_binary +#define GL_IMG_program_binary 1 +#endif + +/* GL_IMG_read_format */ +#ifndef GL_IMG_read_format +#define GL_IMG_read_format 1 +#endif + +/* GL_IMG_shader_binary */ +#ifndef GL_IMG_shader_binary +#define GL_IMG_shader_binary 1 +#endif + +/* GL_IMG_texture_compression_pvrtc */ +#ifndef GL_IMG_texture_compression_pvrtc +#define GL_IMG_texture_compression_pvrtc 1 +#endif + +/* GL_IMG_multisampled_render_to_texture */ +#ifndef GL_IMG_multisampled_render_to_texture +#define GL_IMG_multisampled_render_to_texture 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleIMG (GLenum, GLsizei, GLenum, GLsizei, GLsizei); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleIMG (GLenum, GLenum, GLenum, GLuint, GLint, GLsizei); +#endif +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEIMGPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif + +/*------------------------------------------------------------------------* + * NV extension functions + *------------------------------------------------------------------------*/ + +/* GL_NV_coverage_sample */ +#ifndef GL_NV_coverage_sample +#define GL_NV_coverage_sample 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageMaskNV (GLboolean mask); +GL_APICALL void GL_APIENTRY glCoverageOperationNV (GLenum operation); +#endif +typedef void (GL_APIENTRYP PFNGLCOVERAGEMASKNVPROC) (GLboolean mask); +typedef void (GL_APIENTRYP PFNGLCOVERAGEOPERATIONNVPROC) (GLenum operation); +#endif + +/* GL_NV_depth_nonlinear */ +#ifndef GL_NV_depth_nonlinear +#define GL_NV_depth_nonlinear 1 +#endif + +/* GL_NV_draw_buffers */ +#ifndef GL_NV_draw_buffers +#define GL_NV_draw_buffers 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersNV (GLsizei n, const GLenum *bufs); +#endif +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSNVPROC) (GLsizei n, const GLenum *bufs); +#endif + +/* GL_NV_fbo_color_attachments */ +#ifndef GL_NV_fbo_color_attachments +#define GL_NV_fbo_color_attachments 1 +#endif + +/* GL_NV_fence */ +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDeleteFencesNV (GLsizei, const GLuint *); +GL_APICALL void GL_APIENTRY glGenFencesNV (GLsizei, GLuint *); +GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint); +GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint); +GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint, GLenum, GLint *); +GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint); +GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint, GLenum); +#endif +typedef void (GL_APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (GL_APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#endif + +/* GL_NV_read_buffer */ +#ifndef GL_NV_read_buffer +#define GL_NV_read_buffer 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferNV (GLenum mode); +#endif +typedef void (GL_APIENTRYP PFNGLREADBUFFERNVPROC) (GLenum mode); +#endif + +/* GL_NV_read_buffer_front */ +#ifndef GL_NV_read_buffer_front +#define GL_NV_read_buffer_front 1 +#endif + +/* GL_NV_read_depth */ +#ifndef GL_NV_read_depth +#define GL_NV_read_depth 1 +#endif + +/* GL_NV_read_depth_stencil */ +#ifndef GL_NV_read_depth_stencil +#define GL_NV_read_depth_stencil 1 +#endif + +/* GL_NV_read_stencil */ +#ifndef GL_NV_read_stencil +#define GL_NV_read_stencil 1 +#endif + +/* GL_NV_texture_compression_s3tc_update */ +#ifndef GL_NV_texture_compression_s3tc_update +#define GL_NV_texture_compression_s3tc_update 1 +#endif + +/* GL_NV_texture_npot_2D_mipmap */ +#ifndef GL_NV_texture_npot_2D_mipmap +#define GL_NV_texture_npot_2D_mipmap 1 +#endif + +/*------------------------------------------------------------------------* + * QCOM extension functions + *------------------------------------------------------------------------*/ + +/* GL_QCOM_alpha_test */ +#ifndef GL_QCOM_alpha_test +#define GL_QCOM_alpha_test 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glAlphaFuncQCOM (GLenum func, GLclampf ref); +#endif +typedef void (GL_APIENTRYP PFNGLALPHAFUNCQCOMPROC) (GLenum func, GLclampf ref); +#endif + +/* GL_QCOM_binning_control */ +#ifndef GL_QCOM_binning_control +#define GL_QCOM_binning_control 1 +#endif + +/* GL_QCOM_driver_control */ +#ifndef GL_QCOM_driver_control +#define GL_QCOM_driver_control 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetDriverControlsQCOM (GLint *num, GLsizei size, GLuint *driverControls); +GL_APICALL void GL_APIENTRY glGetDriverControlStringQCOM (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +GL_APICALL void GL_APIENTRY glEnableDriverControlQCOM (GLuint driverControl); +GL_APICALL void GL_APIENTRY glDisableDriverControlQCOM (GLuint driverControl); +#endif +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSQCOMPROC) (GLint *num, GLsizei size, GLuint *driverControls); +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSTRINGQCOMPROC) (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +typedef void (GL_APIENTRYP PFNGLENABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +typedef void (GL_APIENTRYP PFNGLDISABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +#endif + +/* GL_QCOM_extended_get */ +#ifndef GL_QCOM_extended_get +#define GL_QCOM_extended_get 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetTexturesQCOM (GLuint *textures, GLint maxTextures, GLint *numTextures); +GL_APICALL void GL_APIENTRY glExtGetBuffersQCOM (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +GL_APICALL void GL_APIENTRY glExtGetRenderbuffersQCOM (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +GL_APICALL void GL_APIENTRY glExtGetFramebuffersQCOM (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +GL_APICALL void GL_APIENTRY glExtGetTexLevelParameterivQCOM (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glExtTexObjectStateOverrideiQCOM (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glExtGetTexSubImageQCOM (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLvoid *texels); +GL_APICALL void GL_APIENTRY glExtGetBufferPointervQCOM (GLenum target, GLvoid **params); +#endif +typedef void (GL_APIENTRYP PFNGLEXTGETTEXTURESQCOMPROC) (GLuint *textures, GLint maxTextures, GLint *numTextures); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERSQCOMPROC) (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETRENDERBUFFERSQCOMPROC) (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLEXTTEXOBJECTSTATEOVERRIDEIQCOMPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXSUBIMAGEQCOMPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLvoid *texels); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERPOINTERVQCOMPROC) (GLenum target, GLvoid **params); +#endif + +/* GL_QCOM_extended_get2 */ +#ifndef GL_QCOM_extended_get2 +#define GL_QCOM_extended_get2 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetShadersQCOM (GLuint *shaders, GLint maxShaders, GLint *numShaders); +GL_APICALL void GL_APIENTRY glExtGetProgramsQCOM (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +GL_APICALL GLboolean GL_APIENTRY glExtIsProgramBinaryQCOM (GLuint program); +GL_APICALL void GL_APIENTRY glExtGetProgramBinarySourceQCOM (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#endif +typedef void (GL_APIENTRYP PFNGLEXTGETSHADERSQCOMPROC) (GLuint *shaders, GLint maxShaders, GLint *numShaders); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMSQCOMPROC) (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +typedef GLboolean (GL_APIENTRYP PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC) (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#endif + +/* GL_QCOM_perfmon_global_mode */ +#ifndef GL_QCOM_perfmon_global_mode +#define GL_QCOM_perfmon_global_mode 1 +#endif + +/* GL_QCOM_writeonly_rendering */ +#ifndef GL_QCOM_writeonly_rendering +#define GL_QCOM_writeonly_rendering 1 +#endif + +/* GL_QCOM_tiled_rendering */ +#ifndef GL_QCOM_tiled_rendering +#define GL_QCOM_tiled_rendering 1 +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glStartTilingQCOM (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +GL_APICALL void GL_APIENTRY glEndTilingQCOM (GLbitfield preserveMask); +#endif +typedef void (GL_APIENTRYP PFNGLSTARTTILINGQCOMPROC) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +typedef void (GL_APIENTRYP PFNGLENDTILINGQCOMPROC) (GLbitfield preserveMask); +#endif + +/*------------------------------------------------------------------------* + * VIV extension tokens + *------------------------------------------------------------------------*/ + +/* GL_VIV_shader_binary */ +#ifndef GL_VIV_shader_binary +#define GL_VIV_shader_binary 1 +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* __gl2ext_h_ */ + +#endif /* _MSC_VER */ + +#ifndef APIENTRY +#define APIENTRY GL_APIENTRY +#endif diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_pixels.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_pixels.h new file mode 100644 index 0000000..3131af7 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_pixels.h @@ -0,0 +1,429 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_pixels.h + * + * Header for the enumerated pixel format definitions. + */ + +#ifndef _SDL_pixels_h +#define _SDL_pixels_h + +#include "SDL_stdinc.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \name Transparency definitions + * + * These define alpha as the opacity of a surface. + */ +/* @{ */ +#define SDL_ALPHA_OPAQUE 255 +#define SDL_ALPHA_TRANSPARENT 0 +/* @} */ + +/** Pixel type. */ +enum +{ + SDL_PIXELTYPE_UNKNOWN, + SDL_PIXELTYPE_INDEX1, + SDL_PIXELTYPE_INDEX4, + SDL_PIXELTYPE_INDEX8, + SDL_PIXELTYPE_PACKED8, + SDL_PIXELTYPE_PACKED16, + SDL_PIXELTYPE_PACKED32, + SDL_PIXELTYPE_ARRAYU8, + SDL_PIXELTYPE_ARRAYU16, + SDL_PIXELTYPE_ARRAYU32, + SDL_PIXELTYPE_ARRAYF16, + SDL_PIXELTYPE_ARRAYF32 +}; + +/** Bitmap pixel order, high bit -> low bit. */ +enum +{ + SDL_BITMAPORDER_NONE, + SDL_BITMAPORDER_4321, + SDL_BITMAPORDER_1234 +}; + +/** Packed component order, high bit -> low bit. */ +enum +{ + SDL_PACKEDORDER_NONE, + SDL_PACKEDORDER_XRGB, + SDL_PACKEDORDER_RGBX, + SDL_PACKEDORDER_ARGB, + SDL_PACKEDORDER_RGBA, + SDL_PACKEDORDER_XBGR, + SDL_PACKEDORDER_BGRX, + SDL_PACKEDORDER_ABGR, + SDL_PACKEDORDER_BGRA +}; + +/** Array component order, low byte -> high byte. */ +enum +{ + SDL_ARRAYORDER_NONE, + SDL_ARRAYORDER_RGB, + SDL_ARRAYORDER_RGBA, + SDL_ARRAYORDER_ARGB, + SDL_ARRAYORDER_BGR, + SDL_ARRAYORDER_BGRA, + SDL_ARRAYORDER_ABGR +}; + +/** Packed component layout. */ +enum +{ + SDL_PACKEDLAYOUT_NONE, + SDL_PACKEDLAYOUT_332, + SDL_PACKEDLAYOUT_4444, + SDL_PACKEDLAYOUT_1555, + SDL_PACKEDLAYOUT_5551, + SDL_PACKEDLAYOUT_565, + SDL_PACKEDLAYOUT_8888, + SDL_PACKEDLAYOUT_2101010, + SDL_PACKEDLAYOUT_1010102 +}; + +#define SDL_DEFINE_PIXELFOURCC(A, B, C, D) SDL_FOURCC(A, B, C, D) + +#define SDL_DEFINE_PIXELFORMAT(type, order, layout, bits, bytes) \ + ((1 << 28) | ((type) << 24) | ((order) << 20) | ((layout) << 16) | \ + ((bits) << 8) | ((bytes) << 0)) + +#define SDL_PIXELFLAG(X) (((X) >> 28) & 0x0F) +#define SDL_PIXELTYPE(X) (((X) >> 24) & 0x0F) +#define SDL_PIXELORDER(X) (((X) >> 20) & 0x0F) +#define SDL_PIXELLAYOUT(X) (((X) >> 16) & 0x0F) +#define SDL_BITSPERPIXEL(X) (((X) >> 8) & 0xFF) +#define SDL_BYTESPERPIXEL(X) \ + (SDL_ISPIXELFORMAT_FOURCC(X) ? \ + ((((X) == SDL_PIXELFORMAT_YUY2) || \ + ((X) == SDL_PIXELFORMAT_UYVY) || \ + ((X) == SDL_PIXELFORMAT_YVYU)) ? 2 : 1) : (((X) >> 0) & 0xFF)) + +#define SDL_ISPIXELFORMAT_INDEXED(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX1) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX4) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX8))) + +#define SDL_ISPIXELFORMAT_ALPHA(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELORDER(format) == SDL_PACKEDORDER_ARGB) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_RGBA) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_ABGR) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_BGRA))) + +/* The flag is set to 1 because 0x1? is not in the printable ASCII range */ +#define SDL_ISPIXELFORMAT_FOURCC(format) \ + ((format) && (SDL_PIXELFLAG(format) != 1)) + +/* Note: If you modify this list, update SDL_GetPixelFormatName() */ +enum +{ + SDL_PIXELFORMAT_UNKNOWN, + SDL_PIXELFORMAT_INDEX1LSB = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_4321, 0, + 1, 0), + SDL_PIXELFORMAT_INDEX1MSB = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_1234, 0, + 1, 0), + SDL_PIXELFORMAT_INDEX4LSB = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_4321, 0, + 4, 0), + SDL_PIXELFORMAT_INDEX4MSB = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_1234, 0, + 4, 0), + SDL_PIXELFORMAT_INDEX8 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX8, 0, 0, 8, 1), + SDL_PIXELFORMAT_RGB332 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED8, SDL_PACKEDORDER_XRGB, + SDL_PACKEDLAYOUT_332, 8, 1), + SDL_PIXELFORMAT_RGB444 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, + SDL_PACKEDLAYOUT_4444, 12, 2), + SDL_PIXELFORMAT_RGB555 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, + SDL_PACKEDLAYOUT_1555, 15, 2), + SDL_PIXELFORMAT_BGR555 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, + SDL_PACKEDLAYOUT_1555, 15, 2), + SDL_PIXELFORMAT_ARGB4444 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB, + SDL_PACKEDLAYOUT_4444, 16, 2), + SDL_PIXELFORMAT_RGBA4444 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA, + SDL_PACKEDLAYOUT_4444, 16, 2), + SDL_PIXELFORMAT_ABGR4444 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR, + SDL_PACKEDLAYOUT_4444, 16, 2), + SDL_PIXELFORMAT_BGRA4444 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA, + SDL_PACKEDLAYOUT_4444, 16, 2), + SDL_PIXELFORMAT_ARGB1555 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB, + SDL_PACKEDLAYOUT_1555, 16, 2), + SDL_PIXELFORMAT_RGBA5551 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA, + SDL_PACKEDLAYOUT_5551, 16, 2), + SDL_PIXELFORMAT_ABGR1555 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR, + SDL_PACKEDLAYOUT_1555, 16, 2), + SDL_PIXELFORMAT_BGRA5551 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA, + SDL_PACKEDLAYOUT_5551, 16, 2), + SDL_PIXELFORMAT_RGB565 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, + SDL_PACKEDLAYOUT_565, 16, 2), + SDL_PIXELFORMAT_BGR565 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, + SDL_PACKEDLAYOUT_565, 16, 2), + SDL_PIXELFORMAT_RGB24 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_RGB, 0, + 24, 3), + SDL_PIXELFORMAT_BGR24 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_BGR, 0, + 24, 3), + SDL_PIXELFORMAT_RGB888 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XRGB, + SDL_PACKEDLAYOUT_8888, 24, 4), + SDL_PIXELFORMAT_RGBX8888 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBX, + SDL_PACKEDLAYOUT_8888, 24, 4), + SDL_PIXELFORMAT_BGR888 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XBGR, + SDL_PACKEDLAYOUT_8888, 24, 4), + SDL_PIXELFORMAT_BGRX8888 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRX, + SDL_PACKEDLAYOUT_8888, 24, 4), + SDL_PIXELFORMAT_ARGB8888 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB, + SDL_PACKEDLAYOUT_8888, 32, 4), + SDL_PIXELFORMAT_RGBA8888 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBA, + SDL_PACKEDLAYOUT_8888, 32, 4), + SDL_PIXELFORMAT_ABGR8888 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ABGR, + SDL_PACKEDLAYOUT_8888, 32, 4), + SDL_PIXELFORMAT_BGRA8888 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRA, + SDL_PACKEDLAYOUT_8888, 32, 4), + SDL_PIXELFORMAT_ARGB2101010 = + SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB, + SDL_PACKEDLAYOUT_2101010, 32, 4), + + SDL_PIXELFORMAT_YV12 = /**< Planar mode: Y + V + U (3 planes) */ + SDL_DEFINE_PIXELFOURCC('Y', 'V', '1', '2'), + SDL_PIXELFORMAT_IYUV = /**< Planar mode: Y + U + V (3 planes) */ + SDL_DEFINE_PIXELFOURCC('I', 'Y', 'U', 'V'), + SDL_PIXELFORMAT_YUY2 = /**< Packed mode: Y0+U0+Y1+V0 (1 plane) */ + SDL_DEFINE_PIXELFOURCC('Y', 'U', 'Y', '2'), + SDL_PIXELFORMAT_UYVY = /**< Packed mode: U0+Y0+V0+Y1 (1 plane) */ + SDL_DEFINE_PIXELFOURCC('U', 'Y', 'V', 'Y'), + SDL_PIXELFORMAT_YVYU = /**< Packed mode: Y0+V0+Y1+U0 (1 plane) */ + SDL_DEFINE_PIXELFOURCC('Y', 'V', 'Y', 'U') +}; + +typedef struct SDL_Color +{ + Uint8 r; + Uint8 g; + Uint8 b; + Uint8 a; +} SDL_Color; +#define SDL_Colour SDL_Color + +typedef struct SDL_Palette +{ + int ncolors; + SDL_Color *colors; + Uint32 version; + int refcount; +} SDL_Palette; + +/** + * \note Everything in the pixel format structure is read-only. + */ +typedef struct SDL_PixelFormat +{ + Uint32 format; + SDL_Palette *palette; + Uint8 BitsPerPixel; + Uint8 BytesPerPixel; + Uint8 padding[2]; + Uint32 Rmask; + Uint32 Gmask; + Uint32 Bmask; + Uint32 Amask; + Uint8 Rloss; + Uint8 Gloss; + Uint8 Bloss; + Uint8 Aloss; + Uint8 Rshift; + Uint8 Gshift; + Uint8 Bshift; + Uint8 Ashift; + int refcount; + struct SDL_PixelFormat *next; +} SDL_PixelFormat; + +/** + * \brief Get the human readable name of a pixel format + */ +extern DECLSPEC const char* SDLCALL SDL_GetPixelFormatName(Uint32 format); + +/** + * \brief Convert one of the enumerated pixel formats to a bpp and RGBA masks. + * + * \return SDL_TRUE, or SDL_FALSE if the conversion wasn't possible. + * + * \sa SDL_MasksToPixelFormatEnum() + */ +extern DECLSPEC SDL_bool SDLCALL SDL_PixelFormatEnumToMasks(Uint32 format, + int *bpp, + Uint32 * Rmask, + Uint32 * Gmask, + Uint32 * Bmask, + Uint32 * Amask); + +/** + * \brief Convert a bpp and RGBA masks to an enumerated pixel format. + * + * \return The pixel format, or ::SDL_PIXELFORMAT_UNKNOWN if the conversion + * wasn't possible. + * + * \sa SDL_PixelFormatEnumToMasks() + */ +extern DECLSPEC Uint32 SDLCALL SDL_MasksToPixelFormatEnum(int bpp, + Uint32 Rmask, + Uint32 Gmask, + Uint32 Bmask, + Uint32 Amask); + +/** + * \brief Create an SDL_PixelFormat structure from a pixel format enum. + */ +extern DECLSPEC SDL_PixelFormat * SDLCALL SDL_AllocFormat(Uint32 pixel_format); + +/** + * \brief Free an SDL_PixelFormat structure. + */ +extern DECLSPEC void SDLCALL SDL_FreeFormat(SDL_PixelFormat *format); + +/** + * \brief Create a palette structure with the specified number of color + * entries. + * + * \return A new palette, or NULL if there wasn't enough memory. + * + * \note The palette entries are initialized to white. + * + * \sa SDL_FreePalette() + */ +extern DECLSPEC SDL_Palette *SDLCALL SDL_AllocPalette(int ncolors); + +/** + * \brief Set the palette for a pixel format structure. + */ +extern DECLSPEC int SDLCALL SDL_SetPixelFormatPalette(SDL_PixelFormat * format, + SDL_Palette *palette); + +/** + * \brief Set a range of colors in a palette. + * + * \param palette The palette to modify. + * \param colors An array of colors to copy into the palette. + * \param firstcolor The index of the first palette entry to modify. + * \param ncolors The number of entries to modify. + * + * \return 0 on success, or -1 if not all of the colors could be set. + */ +extern DECLSPEC int SDLCALL SDL_SetPaletteColors(SDL_Palette * palette, + const SDL_Color * colors, + int firstcolor, int ncolors); + +/** + * \brief Free a palette created with SDL_AllocPalette(). + * + * \sa SDL_AllocPalette() + */ +extern DECLSPEC void SDLCALL SDL_FreePalette(SDL_Palette * palette); + +/** + * \brief Maps an RGB triple to an opaque pixel value for a given pixel format. + * + * \sa SDL_MapRGBA + */ +extern DECLSPEC Uint32 SDLCALL SDL_MapRGB(const SDL_PixelFormat * format, + Uint8 r, Uint8 g, Uint8 b); + +/** + * \brief Maps an RGBA quadruple to a pixel value for a given pixel format. + * + * \sa SDL_MapRGB + */ +extern DECLSPEC Uint32 SDLCALL SDL_MapRGBA(const SDL_PixelFormat * format, + Uint8 r, Uint8 g, Uint8 b, + Uint8 a); + +/** + * \brief Get the RGB components from a pixel of the specified format. + * + * \sa SDL_GetRGBA + */ +extern DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel, + const SDL_PixelFormat * format, + Uint8 * r, Uint8 * g, Uint8 * b); + +/** + * \brief Get the RGBA components from a pixel of the specified format. + * + * \sa SDL_GetRGB + */ +extern DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel, + const SDL_PixelFormat * format, + Uint8 * r, Uint8 * g, Uint8 * b, + Uint8 * a); + +/** + * \brief Calculate a 256 entry gamma ramp for a gamma value. + */ +extern DECLSPEC void SDLCALL SDL_CalculateGammaRamp(float gamma, Uint16 * ramp); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_pixels_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_platform.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_platform.h new file mode 100644 index 0000000..c43f4b5 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_platform.h @@ -0,0 +1,164 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_platform.h + * + * Try to get a standard set of platform defines. + */ + +#ifndef _SDL_platform_h +#define _SDL_platform_h + +#if defined(_AIX) +#undef __AIX__ +#define __AIX__ 1 +#endif +#if defined(__HAIKU__) +#undef __HAIKU__ +#define __HAIKU__ 1 +#endif +#if defined(bsdi) || defined(__bsdi) || defined(__bsdi__) +#undef __BSDI__ +#define __BSDI__ 1 +#endif +#if defined(_arch_dreamcast) +#undef __DREAMCAST__ +#define __DREAMCAST__ 1 +#endif +#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) +#undef __FREEBSD__ +#define __FREEBSD__ 1 +#endif +#if defined(hpux) || defined(__hpux) || defined(__hpux__) +#undef __HPUX__ +#define __HPUX__ 1 +#endif +#if defined(sgi) || defined(__sgi) || defined(__sgi__) || defined(_SGI_SOURCE) +#undef __IRIX__ +#define __IRIX__ 1 +#endif +#if defined(linux) || defined(__linux) || defined(__linux__) +#undef __LINUX__ +#define __LINUX__ 1 +#endif +#if defined(ANDROID) || defined(__ANDROID__) +#undef __ANDROID__ +#undef __LINUX__ /* do we need to do this? */ +#define __ANDROID__ 1 +#endif + +#if defined(__APPLE__) +/* lets us know what version of Mac OS X we're compiling on */ +#include "AvailabilityMacros.h" +#include "TargetConditionals.h" +#if TARGET_OS_IPHONE +/* if compiling for iPhone */ +#undef __IPHONEOS__ +#define __IPHONEOS__ 1 +#undef __MACOSX__ +#else +/* if not compiling for iPhone */ +#undef __MACOSX__ +#define __MACOSX__ 1 +#if MAC_OS_X_VERSION_MIN_REQUIRED < 1050 +# error SDL for Mac OS X only supports deploying on 10.5 and above. +#endif /* MAC_OS_X_VERSION_MIN_REQUIRED < 1050 */ +#endif /* TARGET_OS_IPHONE */ +#endif /* defined(__APPLE__) */ + +#if defined(__NetBSD__) +#undef __NETBSD__ +#define __NETBSD__ 1 +#endif +#if defined(__OpenBSD__) +#undef __OPENBSD__ +#define __OPENBSD__ 1 +#endif +#if defined(__OS2__) +#undef __OS2__ +#define __OS2__ 1 +#endif +#if defined(osf) || defined(__osf) || defined(__osf__) || defined(_OSF_SOURCE) +#undef __OSF__ +#define __OSF__ 1 +#endif +#if defined(__QNXNTO__) +#undef __QNXNTO__ +#define __QNXNTO__ 1 +#endif +#if defined(riscos) || defined(__riscos) || defined(__riscos__) +#undef __RISCOS__ +#define __RISCOS__ 1 +#endif +#if defined(__SVR4) +#undef __SOLARIS__ +#define __SOLARIS__ 1 +#endif + +#if defined(WIN32) || defined(_WIN32) || defined(__CYGWIN__) +/* Try to find out if we're compiling for WinRT or non-WinRT */ +/* If _USING_V110_SDK71_ is defined it means we are using the v110_xp or v120_xp toolset. */ +#if defined(__MINGW32__) || (defined(_MSC_VER) && (_MSC_VER >= 1700) && !_USING_V110_SDK71_) /* _MSC_VER==1700 for MSVC 2012 */ +#include +#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) +#undef __WINDOWS__ +#define __WINDOWS__ 1 +/* See if we're compiling for WinRT: */ +#elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) +#undef __WINRT__ +#define __WINRT__ 1 +#endif +#else +#undef __WINDOWS__ +#define __WINDOWS__ 1 +#endif /* _MSC_VER < 1700 */ +#endif /* defined(WIN32) || defined(_WIN32) || defined(__CYGWIN__) */ + +#if defined(__WINDOWS__) +#undef __WIN32__ +#define __WIN32__ 1 +#endif +#if defined(__PSP__) +#undef __PSP__ +#define __PSP__ 1 +#endif + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief Gets the name of the platform. + */ +extern DECLSPEC const char * SDLCALL SDL_GetPlatform (void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_platform_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_power.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_power.h new file mode 100644 index 0000000..cf71c98 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_power.h @@ -0,0 +1,75 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef _SDL_power_h +#define _SDL_power_h + +/** + * \file SDL_power.h + * + * Header for the SDL power management routines. + */ + +#include "SDL_stdinc.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief The basic state for the system's power supply. + */ +typedef enum +{ + SDL_POWERSTATE_UNKNOWN, /**< cannot determine power status */ + SDL_POWERSTATE_ON_BATTERY, /**< Not plugged in, running on the battery */ + SDL_POWERSTATE_NO_BATTERY, /**< Plugged in, no battery available */ + SDL_POWERSTATE_CHARGING, /**< Plugged in, charging battery */ + SDL_POWERSTATE_CHARGED /**< Plugged in, battery charged */ +} SDL_PowerState; + + +/** + * \brief Get the current power supply details. + * + * \param secs Seconds of battery life left. You can pass a NULL here if + * you don't care. Will return -1 if we can't determine a + * value, or we're not running on a battery. + * + * \param pct Percentage of battery life left, between 0 and 100. You can + * pass a NULL here if you don't care. Will return -1 if we + * can't determine a value, or we're not running on a battery. + * + * \return The state of the battery (if any). + */ +extern DECLSPEC SDL_PowerState SDLCALL SDL_GetPowerInfo(int *secs, int *pct); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_power_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_quit.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_quit.h new file mode 100644 index 0000000..8a78644 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_quit.h @@ -0,0 +1,58 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_quit.h + * + * Include file for SDL quit event handling. + */ + +#ifndef _SDL_quit_h +#define _SDL_quit_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" + +/** + * \file SDL_quit.h + * + * An ::SDL_QUIT event is generated when the user tries to close the application + * window. If it is ignored or filtered out, the window will remain open. + * If it is not ignored or filtered, it is queued normally and the window + * is allowed to close. When the window is closed, screen updates will + * complete, but have no effect. + * + * SDL_Init() installs signal handlers for SIGINT (keyboard interrupt) + * and SIGTERM (system termination request), if handlers do not already + * exist, that generate ::SDL_QUIT events as well. There is no way + * to determine the cause of an ::SDL_QUIT event, but setting a signal + * handler in your application will override the default generation of + * quit events for that signal. + * + * \sa SDL_Quit() + */ + +/* There are no functions directly affecting the quit event */ + +#define SDL_QuitRequested() \ + (SDL_PumpEvents(), (SDL_PeepEvents(NULL,0,SDL_PEEKEVENT,SDL_QUIT,SDL_QUIT) > 0)) + +#endif /* _SDL_quit_h */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_rect.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_rect.h new file mode 100644 index 0000000..0a95a33 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_rect.h @@ -0,0 +1,138 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_rect.h + * + * Header file for SDL_rect definition and management functions. + */ + +#ifndef _SDL_rect_h +#define _SDL_rect_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" +#include "SDL_pixels.h" +#include "SDL_rwops.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief The structure that defines a point + * + * \sa SDL_EnclosePoints + */ +typedef struct SDL_Point +{ + int x; + int y; +} SDL_Point; + +/** + * \brief A rectangle, with the origin at the upper left. + * + * \sa SDL_RectEmpty + * \sa SDL_RectEquals + * \sa SDL_HasIntersection + * \sa SDL_IntersectRect + * \sa SDL_UnionRect + * \sa SDL_EnclosePoints + */ +typedef struct SDL_Rect +{ + int x, y; + int w, h; +} SDL_Rect; + +/** + * \brief Returns true if the rectangle has no area. + */ +SDL_FORCE_INLINE SDL_bool SDL_RectEmpty(const SDL_Rect *r) +{ + return ((!r) || (r->w <= 0) || (r->h <= 0)) ? SDL_TRUE : SDL_FALSE; +} + +/** + * \brief Returns true if the two rectangles are equal. + */ +SDL_FORCE_INLINE SDL_bool SDL_RectEquals(const SDL_Rect *a, const SDL_Rect *b) +{ + return (a && b && (a->x == b->x) && (a->y == b->y) && + (a->w == b->w) && (a->h == b->h)) ? SDL_TRUE : SDL_FALSE; +} + +/** + * \brief Determine whether two rectangles intersect. + * + * \return SDL_TRUE if there is an intersection, SDL_FALSE otherwise. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasIntersection(const SDL_Rect * A, + const SDL_Rect * B); + +/** + * \brief Calculate the intersection of two rectangles. + * + * \return SDL_TRUE if there is an intersection, SDL_FALSE otherwise. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_IntersectRect(const SDL_Rect * A, + const SDL_Rect * B, + SDL_Rect * result); + +/** + * \brief Calculate the union of two rectangles. + */ +extern DECLSPEC void SDLCALL SDL_UnionRect(const SDL_Rect * A, + const SDL_Rect * B, + SDL_Rect * result); + +/** + * \brief Calculate a minimal rectangle enclosing a set of points + * + * \return SDL_TRUE if any points were within the clipping rect + */ +extern DECLSPEC SDL_bool SDLCALL SDL_EnclosePoints(const SDL_Point * points, + int count, + const SDL_Rect * clip, + SDL_Rect * result); + +/** + * \brief Calculate the intersection of a rectangle and line segment. + * + * \return SDL_TRUE if there is an intersection, SDL_FALSE otherwise. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_IntersectRectAndLine(const SDL_Rect * + rect, int *X1, + int *Y1, int *X2, + int *Y2); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_rect_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_render.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_render.h new file mode 100644 index 0000000..77f706a --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_render.h @@ -0,0 +1,870 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_render.h + * + * Header file for SDL 2D rendering functions. + * + * This API supports the following features: + * * single pixel points + * * single pixel lines + * * filled rectangles + * * texture images + * + * The primitives may be drawn in opaque, blended, or additive modes. + * + * The texture images may be drawn in opaque, blended, or additive modes. + * They can have an additional color tint or alpha modulation applied to + * them, and may also be stretched with linear interpolation. + * + * This API is designed to accelerate simple 2D operations. You may + * want more functionality such as polygons and particle effects and + * in that case you should use SDL's OpenGL/Direct3D support or one + * of the many good 3D engines. + * + * These functions must be called from the main thread. + * See this bug for details: http://bugzilla.libsdl.org/show_bug.cgi?id=1995 + */ + +#ifndef _SDL_render_h +#define _SDL_render_h + +#include "SDL_stdinc.h" +#include "SDL_rect.h" +#include "SDL_video.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief Flags used when creating a rendering context + */ +typedef enum +{ + SDL_RENDERER_SOFTWARE = 0x00000001, /**< The renderer is a software fallback */ + SDL_RENDERER_ACCELERATED = 0x00000002, /**< The renderer uses hardware + acceleration */ + SDL_RENDERER_PRESENTVSYNC = 0x00000004, /**< Present is synchronized + with the refresh rate */ + SDL_RENDERER_TARGETTEXTURE = 0x00000008 /**< The renderer supports + rendering to texture */ +} SDL_RendererFlags; + +/** + * \brief Information on the capabilities of a render driver or context. + */ +typedef struct SDL_RendererInfo +{ + const char *name; /**< The name of the renderer */ + Uint32 flags; /**< Supported ::SDL_RendererFlags */ + Uint32 num_texture_formats; /**< The number of available texture formats */ + Uint32 texture_formats[16]; /**< The available texture formats */ + int max_texture_width; /**< The maximimum texture width */ + int max_texture_height; /**< The maximimum texture height */ +} SDL_RendererInfo; + +/** + * \brief The access pattern allowed for a texture. + */ +typedef enum +{ + SDL_TEXTUREACCESS_STATIC, /**< Changes rarely, not lockable */ + SDL_TEXTUREACCESS_STREAMING, /**< Changes frequently, lockable */ + SDL_TEXTUREACCESS_TARGET /**< Texture can be used as a render target */ +} SDL_TextureAccess; + +/** + * \brief The texture channel modulation used in SDL_RenderCopy(). + */ +typedef enum +{ + SDL_TEXTUREMODULATE_NONE = 0x00000000, /**< No modulation */ + SDL_TEXTUREMODULATE_COLOR = 0x00000001, /**< srcC = srcC * color */ + SDL_TEXTUREMODULATE_ALPHA = 0x00000002 /**< srcA = srcA * alpha */ +} SDL_TextureModulate; + +/** + * \brief Flip constants for SDL_RenderCopyEx + */ +typedef enum +{ + SDL_FLIP_NONE = 0x00000000, /**< Do not flip */ + SDL_FLIP_HORIZONTAL = 0x00000001, /**< flip horizontally */ + SDL_FLIP_VERTICAL = 0x00000002 /**< flip vertically */ +} SDL_RendererFlip; + +/** + * \brief A structure representing rendering state + */ +struct SDL_Renderer; +typedef struct SDL_Renderer SDL_Renderer; + +/** + * \brief An efficient driver-specific representation of pixel data + */ +struct SDL_Texture; +typedef struct SDL_Texture SDL_Texture; + + +/* Function prototypes */ + +/** + * \brief Get the number of 2D rendering drivers available for the current + * display. + * + * A render driver is a set of code that handles rendering and texture + * management on a particular display. Normally there is only one, but + * some drivers may have several available with different capabilities. + * + * \sa SDL_GetRenderDriverInfo() + * \sa SDL_CreateRenderer() + */ +extern DECLSPEC int SDLCALL SDL_GetNumRenderDrivers(void); + +/** + * \brief Get information about a specific 2D rendering driver for the current + * display. + * + * \param index The index of the driver to query information about. + * \param info A pointer to an SDL_RendererInfo struct to be filled with + * information on the rendering driver. + * + * \return 0 on success, -1 if the index was out of range. + * + * \sa SDL_CreateRenderer() + */ +extern DECLSPEC int SDLCALL SDL_GetRenderDriverInfo(int index, + SDL_RendererInfo * info); + +/** + * \brief Create a window and default renderer + * + * \param width The width of the window + * \param height The height of the window + * \param window_flags The flags used to create the window + * \param window A pointer filled with the window, or NULL on error + * \param renderer A pointer filled with the renderer, or NULL on error + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_CreateWindowAndRenderer( + int width, int height, Uint32 window_flags, + SDL_Window **window, SDL_Renderer **renderer); + + +/** + * \brief Create a 2D rendering context for a window. + * + * \param window The window where rendering is displayed. + * \param index The index of the rendering driver to initialize, or -1 to + * initialize the first one supporting the requested flags. + * \param flags ::SDL_RendererFlags. + * + * \return A valid rendering context or NULL if there was an error. + * + * \sa SDL_CreateSoftwareRenderer() + * \sa SDL_GetRendererInfo() + * \sa SDL_DestroyRenderer() + */ +extern DECLSPEC SDL_Renderer * SDLCALL SDL_CreateRenderer(SDL_Window * window, + int index, Uint32 flags); + +/** + * \brief Create a 2D software rendering context for a surface. + * + * \param surface The surface where rendering is done. + * + * \return A valid rendering context or NULL if there was an error. + * + * \sa SDL_CreateRenderer() + * \sa SDL_DestroyRenderer() + */ +extern DECLSPEC SDL_Renderer * SDLCALL SDL_CreateSoftwareRenderer(SDL_Surface * surface); + +/** + * \brief Get the renderer associated with a window. + */ +extern DECLSPEC SDL_Renderer * SDLCALL SDL_GetRenderer(SDL_Window * window); + +/** + * \brief Get information about a rendering context. + */ +extern DECLSPEC int SDLCALL SDL_GetRendererInfo(SDL_Renderer * renderer, + SDL_RendererInfo * info); + +/** + * \brief Get the output size of a rendering context. + */ +extern DECLSPEC int SDLCALL SDL_GetRendererOutputSize(SDL_Renderer * renderer, + int *w, int *h); + +/** + * \brief Create a texture for a rendering context. + * + * \param renderer The renderer. + * \param format The format of the texture. + * \param access One of the enumerated values in ::SDL_TextureAccess. + * \param w The width of the texture in pixels. + * \param h The height of the texture in pixels. + * + * \return The created texture is returned, or 0 if no rendering context was + * active, the format was unsupported, or the width or height were out + * of range. + * + * \sa SDL_QueryTexture() + * \sa SDL_UpdateTexture() + * \sa SDL_DestroyTexture() + */ +extern DECLSPEC SDL_Texture * SDLCALL SDL_CreateTexture(SDL_Renderer * renderer, + Uint32 format, + int access, int w, + int h); + +/** + * \brief Create a texture from an existing surface. + * + * \param renderer The renderer. + * \param surface The surface containing pixel data used to fill the texture. + * + * \return The created texture is returned, or 0 on error. + * + * \note The surface is not modified or freed by this function. + * + * \sa SDL_QueryTexture() + * \sa SDL_DestroyTexture() + */ +extern DECLSPEC SDL_Texture * SDLCALL SDL_CreateTextureFromSurface(SDL_Renderer * renderer, SDL_Surface * surface); + +/** + * \brief Query the attributes of a texture + * + * \param texture A texture to be queried. + * \param format A pointer filled in with the raw format of the texture. The + * actual format may differ, but pixel transfers will use this + * format. + * \param access A pointer filled in with the actual access to the texture. + * \param w A pointer filled in with the width of the texture in pixels. + * \param h A pointer filled in with the height of the texture in pixels. + * + * \return 0 on success, or -1 if the texture is not valid. + */ +extern DECLSPEC int SDLCALL SDL_QueryTexture(SDL_Texture * texture, + Uint32 * format, int *access, + int *w, int *h); + +/** + * \brief Set an additional color value used in render copy operations. + * + * \param texture The texture to update. + * \param r The red color value multiplied into copy operations. + * \param g The green color value multiplied into copy operations. + * \param b The blue color value multiplied into copy operations. + * + * \return 0 on success, or -1 if the texture is not valid or color modulation + * is not supported. + * + * \sa SDL_GetTextureColorMod() + */ +extern DECLSPEC int SDLCALL SDL_SetTextureColorMod(SDL_Texture * texture, + Uint8 r, Uint8 g, Uint8 b); + + +/** + * \brief Get the additional color value used in render copy operations. + * + * \param texture The texture to query. + * \param r A pointer filled in with the current red color value. + * \param g A pointer filled in with the current green color value. + * \param b A pointer filled in with the current blue color value. + * + * \return 0 on success, or -1 if the texture is not valid. + * + * \sa SDL_SetTextureColorMod() + */ +extern DECLSPEC int SDLCALL SDL_GetTextureColorMod(SDL_Texture * texture, + Uint8 * r, Uint8 * g, + Uint8 * b); + +/** + * \brief Set an additional alpha value used in render copy operations. + * + * \param texture The texture to update. + * \param alpha The alpha value multiplied into copy operations. + * + * \return 0 on success, or -1 if the texture is not valid or alpha modulation + * is not supported. + * + * \sa SDL_GetTextureAlphaMod() + */ +extern DECLSPEC int SDLCALL SDL_SetTextureAlphaMod(SDL_Texture * texture, + Uint8 alpha); + +/** + * \brief Get the additional alpha value used in render copy operations. + * + * \param texture The texture to query. + * \param alpha A pointer filled in with the current alpha value. + * + * \return 0 on success, or -1 if the texture is not valid. + * + * \sa SDL_SetTextureAlphaMod() + */ +extern DECLSPEC int SDLCALL SDL_GetTextureAlphaMod(SDL_Texture * texture, + Uint8 * alpha); + +/** + * \brief Set the blend mode used for texture copy operations. + * + * \param texture The texture to update. + * \param blendMode ::SDL_BlendMode to use for texture blending. + * + * \return 0 on success, or -1 if the texture is not valid or the blend mode is + * not supported. + * + * \note If the blend mode is not supported, the closest supported mode is + * chosen. + * + * \sa SDL_GetTextureBlendMode() + */ +extern DECLSPEC int SDLCALL SDL_SetTextureBlendMode(SDL_Texture * texture, + SDL_BlendMode blendMode); + +/** + * \brief Get the blend mode used for texture copy operations. + * + * \param texture The texture to query. + * \param blendMode A pointer filled in with the current blend mode. + * + * \return 0 on success, or -1 if the texture is not valid. + * + * \sa SDL_SetTextureBlendMode() + */ +extern DECLSPEC int SDLCALL SDL_GetTextureBlendMode(SDL_Texture * texture, + SDL_BlendMode *blendMode); + +/** + * \brief Update the given texture rectangle with new pixel data. + * + * \param texture The texture to update + * \param rect A pointer to the rectangle of pixels to update, or NULL to + * update the entire texture. + * \param pixels The raw pixel data. + * \param pitch The number of bytes between rows of pixel data. + * + * \return 0 on success, or -1 if the texture is not valid. + * + * \note This is a fairly slow function. + */ +extern DECLSPEC int SDLCALL SDL_UpdateTexture(SDL_Texture * texture, + const SDL_Rect * rect, + const void *pixels, int pitch); + +/** + * \brief Update a rectangle within a planar YV12 or IYUV texture with new pixel data. + * + * \param texture The texture to update + * \param rect A pointer to the rectangle of pixels to update, or NULL to + * update the entire texture. + * \param Yplane The raw pixel data for the Y plane. + * \param Ypitch The number of bytes between rows of pixel data for the Y plane. + * \param Uplane The raw pixel data for the U plane. + * \param Upitch The number of bytes between rows of pixel data for the U plane. + * \param Vplane The raw pixel data for the V plane. + * \param Vpitch The number of bytes between rows of pixel data for the V plane. + * + * \return 0 on success, or -1 if the texture is not valid. + * + * \note You can use SDL_UpdateTexture() as long as your pixel data is + * a contiguous block of Y and U/V planes in the proper order, but + * this function is available if your pixel data is not contiguous. + */ +extern DECLSPEC int SDLCALL SDL_UpdateYUVTexture(SDL_Texture * texture, + const SDL_Rect * rect, + const Uint8 *Yplane, int Ypitch, + const Uint8 *Uplane, int Upitch, + const Uint8 *Vplane, int Vpitch); + +/** + * \brief Lock a portion of the texture for write-only pixel access. + * + * \param texture The texture to lock for access, which was created with + * ::SDL_TEXTUREACCESS_STREAMING. + * \param rect A pointer to the rectangle to lock for access. If the rect + * is NULL, the entire texture will be locked. + * \param pixels This is filled in with a pointer to the locked pixels, + * appropriately offset by the locked area. + * \param pitch This is filled in with the pitch of the locked pixels. + * + * \return 0 on success, or -1 if the texture is not valid or was not created with ::SDL_TEXTUREACCESS_STREAMING. + * + * \sa SDL_UnlockTexture() + */ +extern DECLSPEC int SDLCALL SDL_LockTexture(SDL_Texture * texture, + const SDL_Rect * rect, + void **pixels, int *pitch); + +/** + * \brief Unlock a texture, uploading the changes to video memory, if needed. + * + * \sa SDL_LockTexture() + */ +extern DECLSPEC void SDLCALL SDL_UnlockTexture(SDL_Texture * texture); + +/** + * \brief Determines whether a window supports the use of render targets + * + * \param renderer The renderer that will be checked + * + * \return SDL_TRUE if supported, SDL_FALSE if not. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_RenderTargetSupported(SDL_Renderer *renderer); + +/** + * \brief Set a texture as the current rendering target. + * + * \param renderer The renderer. + * \param texture The targeted texture, which must be created with the SDL_TEXTUREACCESS_TARGET flag, or NULL for the default render target + * + * \return 0 on success, or -1 on error + * + * \sa SDL_GetRenderTarget() + */ +extern DECLSPEC int SDLCALL SDL_SetRenderTarget(SDL_Renderer *renderer, + SDL_Texture *texture); + +/** + * \brief Get the current render target or NULL for the default render target. + * + * \return The current render target + * + * \sa SDL_SetRenderTarget() + */ +extern DECLSPEC SDL_Texture * SDLCALL SDL_GetRenderTarget(SDL_Renderer *renderer); + +/** + * \brief Set device independent resolution for rendering + * + * \param renderer The renderer for which resolution should be set. + * \param w The width of the logical resolution + * \param h The height of the logical resolution + * + * This function uses the viewport and scaling functionality to allow a fixed logical + * resolution for rendering, regardless of the actual output resolution. If the actual + * output resolution doesn't have the same aspect ratio the output rendering will be + * centered within the output display. + * + * If the output display is a window, mouse events in the window will be filtered + * and scaled so they seem to arrive within the logical resolution. + * + * \note If this function results in scaling or subpixel drawing by the + * rendering backend, it will be handled using the appropriate + * quality hints. + * + * \sa SDL_RenderGetLogicalSize() + * \sa SDL_RenderSetScale() + * \sa SDL_RenderSetViewport() + */ +extern DECLSPEC int SDLCALL SDL_RenderSetLogicalSize(SDL_Renderer * renderer, int w, int h); + +/** + * \brief Get device independent resolution for rendering + * + * \param renderer The renderer from which resolution should be queried. + * \param w A pointer filled with the width of the logical resolution + * \param h A pointer filled with the height of the logical resolution + * + * \sa SDL_RenderSetLogicalSize() + */ +extern DECLSPEC void SDLCALL SDL_RenderGetLogicalSize(SDL_Renderer * renderer, int *w, int *h); + +/** + * \brief Set the drawing area for rendering on the current target. + * + * \param renderer The renderer for which the drawing area should be set. + * \param rect The rectangle representing the drawing area, or NULL to set the viewport to the entire target. + * + * The x,y of the viewport rect represents the origin for rendering. + * + * \return 0 on success, or -1 on error + * + * \note If the window associated with the renderer is resized, the viewport is automatically reset. + * + * \sa SDL_RenderGetViewport() + * \sa SDL_RenderSetLogicalSize() + */ +extern DECLSPEC int SDLCALL SDL_RenderSetViewport(SDL_Renderer * renderer, + const SDL_Rect * rect); + +/** + * \brief Get the drawing area for the current target. + * + * \sa SDL_RenderSetViewport() + */ +extern DECLSPEC void SDLCALL SDL_RenderGetViewport(SDL_Renderer * renderer, + SDL_Rect * rect); + +/** + * \brief Set the clip rectangle for the current target. + * + * \param renderer The renderer for which clip rectangle should be set. + * \param rect A pointer to the rectangle to set as the clip rectangle, or + * NULL to disable clipping. + * + * \return 0 on success, or -1 on error + * + * \sa SDL_RenderGetClipRect() + */ +extern DECLSPEC int SDLCALL SDL_RenderSetClipRect(SDL_Renderer * renderer, + const SDL_Rect * rect); + +/** + * \brief Get the clip rectangle for the current target. + * + * \param renderer The renderer from which clip rectangle should be queried. + * \param rect A pointer filled in with the current clip rectangle, or + * an empty rectangle if clipping is disabled. + * + * \sa SDL_RenderSetClipRect() + */ +extern DECLSPEC void SDLCALL SDL_RenderGetClipRect(SDL_Renderer * renderer, + SDL_Rect * rect); + +/** + * \brief Set the drawing scale for rendering on the current target. + * + * \param renderer The renderer for which the drawing scale should be set. + * \param scaleX The horizontal scaling factor + * \param scaleY The vertical scaling factor + * + * The drawing coordinates are scaled by the x/y scaling factors + * before they are used by the renderer. This allows resolution + * independent drawing with a single coordinate system. + * + * \note If this results in scaling or subpixel drawing by the + * rendering backend, it will be handled using the appropriate + * quality hints. For best results use integer scaling factors. + * + * \sa SDL_RenderGetScale() + * \sa SDL_RenderSetLogicalSize() + */ +extern DECLSPEC int SDLCALL SDL_RenderSetScale(SDL_Renderer * renderer, + float scaleX, float scaleY); + +/** + * \brief Get the drawing scale for the current target. + * + * \param renderer The renderer from which drawing scale should be queried. + * \param scaleX A pointer filled in with the horizontal scaling factor + * \param scaleY A pointer filled in with the vertical scaling factor + * + * \sa SDL_RenderSetScale() + */ +extern DECLSPEC void SDLCALL SDL_RenderGetScale(SDL_Renderer * renderer, + float *scaleX, float *scaleY); + +/** + * \brief Set the color used for drawing operations (Rect, Line and Clear). + * + * \param renderer The renderer for which drawing color should be set. + * \param r The red value used to draw on the rendering target. + * \param g The green value used to draw on the rendering target. + * \param b The blue value used to draw on the rendering target. + * \param a The alpha value used to draw on the rendering target, usually + * ::SDL_ALPHA_OPAQUE (255). + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_SetRenderDrawColor(SDL_Renderer * renderer, + Uint8 r, Uint8 g, Uint8 b, + Uint8 a); + +/** + * \brief Get the color used for drawing operations (Rect, Line and Clear). + * + * \param renderer The renderer from which drawing color should be queried. + * \param r A pointer to the red value used to draw on the rendering target. + * \param g A pointer to the green value used to draw on the rendering target. + * \param b A pointer to the blue value used to draw on the rendering target. + * \param a A pointer to the alpha value used to draw on the rendering target, + * usually ::SDL_ALPHA_OPAQUE (255). + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_GetRenderDrawColor(SDL_Renderer * renderer, + Uint8 * r, Uint8 * g, Uint8 * b, + Uint8 * a); + +/** + * \brief Set the blend mode used for drawing operations (Fill and Line). + * + * \param renderer The renderer for which blend mode should be set. + * \param blendMode ::SDL_BlendMode to use for blending. + * + * \return 0 on success, or -1 on error + * + * \note If the blend mode is not supported, the closest supported mode is + * chosen. + * + * \sa SDL_GetRenderDrawBlendMode() + */ +extern DECLSPEC int SDLCALL SDL_SetRenderDrawBlendMode(SDL_Renderer * renderer, + SDL_BlendMode blendMode); + +/** + * \brief Get the blend mode used for drawing operations. + * + * \param renderer The renderer from which blend mode should be queried. + * \param blendMode A pointer filled in with the current blend mode. + * + * \return 0 on success, or -1 on error + * + * \sa SDL_SetRenderDrawBlendMode() + */ +extern DECLSPEC int SDLCALL SDL_GetRenderDrawBlendMode(SDL_Renderer * renderer, + SDL_BlendMode *blendMode); + +/** + * \brief Clear the current rendering target with the drawing color + * + * This function clears the entire rendering target, ignoring the viewport. + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderClear(SDL_Renderer * renderer); + +/** + * \brief Draw a point on the current rendering target. + * + * \param renderer The renderer which should draw a point. + * \param x The x coordinate of the point. + * \param y The y coordinate of the point. + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderDrawPoint(SDL_Renderer * renderer, + int x, int y); + +/** + * \brief Draw multiple points on the current rendering target. + * + * \param renderer The renderer which should draw multiple points. + * \param points The points to draw + * \param count The number of points to draw + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderDrawPoints(SDL_Renderer * renderer, + const SDL_Point * points, + int count); + +/** + * \brief Draw a line on the current rendering target. + * + * \param renderer The renderer which should draw a line. + * \param x1 The x coordinate of the start point. + * \param y1 The y coordinate of the start point. + * \param x2 The x coordinate of the end point. + * \param y2 The y coordinate of the end point. + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderDrawLine(SDL_Renderer * renderer, + int x1, int y1, int x2, int y2); + +/** + * \brief Draw a series of connected lines on the current rendering target. + * + * \param renderer The renderer which should draw multiple lines. + * \param points The points along the lines + * \param count The number of points, drawing count-1 lines + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderDrawLines(SDL_Renderer * renderer, + const SDL_Point * points, + int count); + +/** + * \brief Draw a rectangle on the current rendering target. + * + * \param renderer The renderer which should draw a rectangle. + * \param rect A pointer to the destination rectangle, or NULL to outline the entire rendering target. + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderDrawRect(SDL_Renderer * renderer, + const SDL_Rect * rect); + +/** + * \brief Draw some number of rectangles on the current rendering target. + * + * \param renderer The renderer which should draw multiple rectangles. + * \param rects A pointer to an array of destination rectangles. + * \param count The number of rectangles. + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderDrawRects(SDL_Renderer * renderer, + const SDL_Rect * rects, + int count); + +/** + * \brief Fill a rectangle on the current rendering target with the drawing color. + * + * \param renderer The renderer which should fill a rectangle. + * \param rect A pointer to the destination rectangle, or NULL for the entire + * rendering target. + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderFillRect(SDL_Renderer * renderer, + const SDL_Rect * rect); + +/** + * \brief Fill some number of rectangles on the current rendering target with the drawing color. + * + * \param renderer The renderer which should fill multiple rectangles. + * \param rects A pointer to an array of destination rectangles. + * \param count The number of rectangles. + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderFillRects(SDL_Renderer * renderer, + const SDL_Rect * rects, + int count); + +/** + * \brief Copy a portion of the texture to the current rendering target. + * + * \param renderer The renderer which should copy parts of a texture. + * \param texture The source texture. + * \param srcrect A pointer to the source rectangle, or NULL for the entire + * texture. + * \param dstrect A pointer to the destination rectangle, or NULL for the + * entire rendering target. + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderCopy(SDL_Renderer * renderer, + SDL_Texture * texture, + const SDL_Rect * srcrect, + const SDL_Rect * dstrect); + +/** + * \brief Copy a portion of the source texture to the current rendering target, rotating it by angle around the given center + * + * \param renderer The renderer which should copy parts of a texture. + * \param texture The source texture. + * \param srcrect A pointer to the source rectangle, or NULL for the entire + * texture. + * \param dstrect A pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \param angle An angle in degrees that indicates the rotation that will be applied to dstrect + * \param center A pointer to a point indicating the point around which dstrect will be rotated (if NULL, rotation will be done aroud dstrect.w/2, dstrect.h/2) + * \param flip An SDL_RendererFlip value stating which flipping actions should be performed on the texture + * + * \return 0 on success, or -1 on error + */ +extern DECLSPEC int SDLCALL SDL_RenderCopyEx(SDL_Renderer * renderer, + SDL_Texture * texture, + const SDL_Rect * srcrect, + const SDL_Rect * dstrect, + const double angle, + const SDL_Point *center, + const SDL_RendererFlip flip); + +/** + * \brief Read pixels from the current rendering target. + * + * \param renderer The renderer from which pixels should be read. + * \param rect A pointer to the rectangle to read, or NULL for the entire + * render target. + * \param format The desired format of the pixel data, or 0 to use the format + * of the rendering target + * \param pixels A pointer to be filled in with the pixel data + * \param pitch The pitch of the pixels parameter. + * + * \return 0 on success, or -1 if pixel reading is not supported. + * + * \warning This is a very slow operation, and should not be used frequently. + */ +extern DECLSPEC int SDLCALL SDL_RenderReadPixels(SDL_Renderer * renderer, + const SDL_Rect * rect, + Uint32 format, + void *pixels, int pitch); + +/** + * \brief Update the screen with rendering performed. + */ +extern DECLSPEC void SDLCALL SDL_RenderPresent(SDL_Renderer * renderer); + +/** + * \brief Destroy the specified texture. + * + * \sa SDL_CreateTexture() + * \sa SDL_CreateTextureFromSurface() + */ +extern DECLSPEC void SDLCALL SDL_DestroyTexture(SDL_Texture * texture); + +/** + * \brief Destroy the rendering context for a window and free associated + * textures. + * + * \sa SDL_CreateRenderer() + */ +extern DECLSPEC void SDLCALL SDL_DestroyRenderer(SDL_Renderer * renderer); + + +/** + * \brief Bind the texture to the current OpenGL/ES/ES2 context for use with + * OpenGL instructions. + * + * \param texture The SDL texture to bind + * \param texw A pointer to a float that will be filled with the texture width + * \param texh A pointer to a float that will be filled with the texture height + * + * \return 0 on success, or -1 if the operation is not supported + */ +extern DECLSPEC int SDLCALL SDL_GL_BindTexture(SDL_Texture *texture, float *texw, float *texh); + +/** + * \brief Unbind a texture from the current OpenGL/ES/ES2 context. + * + * \param texture The SDL texture to unbind + * + * \return 0 on success, or -1 if the operation is not supported + */ +extern DECLSPEC int SDLCALL SDL_GL_UnbindTexture(SDL_Texture *texture); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_render_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_revision.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_revision.h new file mode 100644 index 0000000..a75dc33 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_revision.h @@ -0,0 +1,2 @@ +#define SDL_REVISION "hg-8628:b558f99d48f0" +#define SDL_REVISION_NUMBER 8628 diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_rwops.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_rwops.h new file mode 100644 index 0000000..4bdd787 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_rwops.h @@ -0,0 +1,232 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_rwops.h + * + * This file provides a general interface for SDL to read and write + * data streams. It can easily be extended to files, memory, etc. + */ + +#ifndef _SDL_rwops_h +#define _SDL_rwops_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* RWops Types */ +#define SDL_RWOPS_UNKNOWN 0 /* Unknown stream type */ +#define SDL_RWOPS_WINFILE 1 /* Win32 file */ +#define SDL_RWOPS_STDFILE 2 /* Stdio file */ +#define SDL_RWOPS_JNIFILE 3 /* Android asset */ +#define SDL_RWOPS_MEMORY 4 /* Memory stream */ +#define SDL_RWOPS_MEMORY_RO 5 /* Read-Only memory stream */ + +/** + * This is the read/write operation structure -- very basic. + */ +typedef struct SDL_RWops +{ + /** + * Return the size of the file in this rwops, or -1 if unknown + */ + Sint64 (SDLCALL * size) (struct SDL_RWops * context); + + /** + * Seek to \c offset relative to \c whence, one of stdio's whence values: + * RW_SEEK_SET, RW_SEEK_CUR, RW_SEEK_END + * + * \return the final offset in the data stream, or -1 on error. + */ + Sint64 (SDLCALL * seek) (struct SDL_RWops * context, Sint64 offset, + int whence); + + /** + * Read up to \c maxnum objects each of size \c size from the data + * stream to the area pointed at by \c ptr. + * + * \return the number of objects read, or 0 at error or end of file. + */ + size_t (SDLCALL * read) (struct SDL_RWops * context, void *ptr, + size_t size, size_t maxnum); + + /** + * Write exactly \c num objects each of size \c size from the area + * pointed at by \c ptr to data stream. + * + * \return the number of objects written, or 0 at error or end of file. + */ + size_t (SDLCALL * write) (struct SDL_RWops * context, const void *ptr, + size_t size, size_t num); + + /** + * Close and free an allocated SDL_RWops structure. + * + * \return 0 if successful or -1 on write error when flushing data. + */ + int (SDLCALL * close) (struct SDL_RWops * context); + + Uint32 type; + union + { +#if defined(ANDROID) + struct + { + void *fileNameRef; + void *inputStreamRef; + void *readableByteChannelRef; + void *readMethod; + void *assetFileDescriptorRef; + long position; + long size; + long offset; + int fd; + } androidio; +#elif defined(__WIN32__) + struct + { + SDL_bool append; + void *h; + struct + { + void *data; + size_t size; + size_t left; + } buffer; + } windowsio; +#endif + +#ifdef HAVE_STDIO_H + struct + { + SDL_bool autoclose; + FILE *fp; + } stdio; +#endif + struct + { + Uint8 *base; + Uint8 *here; + Uint8 *stop; + } mem; + struct + { + void *data1; + void *data2; + } unknown; + } hidden; + +} SDL_RWops; + + +/** + * \name RWFrom functions + * + * Functions to create SDL_RWops structures from various data streams. + */ +/* @{ */ + +extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFile(const char *file, + const char *mode); + +#ifdef HAVE_STDIO_H +extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFP(FILE * fp, + SDL_bool autoclose); +#else +extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFP(void * fp, + SDL_bool autoclose); +#endif + +extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromMem(void *mem, int size); +extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromConstMem(const void *mem, + int size); + +/* @} *//* RWFrom functions */ + + +extern DECLSPEC SDL_RWops *SDLCALL SDL_AllocRW(void); +extern DECLSPEC void SDLCALL SDL_FreeRW(SDL_RWops * area); + +#define RW_SEEK_SET 0 /**< Seek from the beginning of data */ +#define RW_SEEK_CUR 1 /**< Seek relative to current read point */ +#define RW_SEEK_END 2 /**< Seek relative to the end of data */ + +/** + * \name Read/write macros + * + * Macros to easily read and write from an SDL_RWops structure. + */ +/* @{ */ +#define SDL_RWsize(ctx) (ctx)->size(ctx) +#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence) +#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR) +#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n) +#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n) +#define SDL_RWclose(ctx) (ctx)->close(ctx) +/* @} *//* Read/write macros */ + + +/** + * \name Read endian functions + * + * Read an item of the specified endianness and return in native format. + */ +/* @{ */ +extern DECLSPEC Uint8 SDLCALL SDL_ReadU8(SDL_RWops * src); +extern DECLSPEC Uint16 SDLCALL SDL_ReadLE16(SDL_RWops * src); +extern DECLSPEC Uint16 SDLCALL SDL_ReadBE16(SDL_RWops * src); +extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops * src); +extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops * src); +extern DECLSPEC Uint64 SDLCALL SDL_ReadLE64(SDL_RWops * src); +extern DECLSPEC Uint64 SDLCALL SDL_ReadBE64(SDL_RWops * src); +/* @} *//* Read endian functions */ + +/** + * \name Write endian functions + * + * Write an item of native format to the specified endianness. + */ +/* @{ */ +extern DECLSPEC size_t SDLCALL SDL_WriteU8(SDL_RWops * dst, Uint8 value); +extern DECLSPEC size_t SDLCALL SDL_WriteLE16(SDL_RWops * dst, Uint16 value); +extern DECLSPEC size_t SDLCALL SDL_WriteBE16(SDL_RWops * dst, Uint16 value); +extern DECLSPEC size_t SDLCALL SDL_WriteLE32(SDL_RWops * dst, Uint32 value); +extern DECLSPEC size_t SDLCALL SDL_WriteBE32(SDL_RWops * dst, Uint32 value); +extern DECLSPEC size_t SDLCALL SDL_WriteLE64(SDL_RWops * dst, Uint64 value); +extern DECLSPEC size_t SDLCALL SDL_WriteBE64(SDL_RWops * dst, Uint64 value); +/* @} *//* Write endian functions */ + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_rwops_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_scancode.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_scancode.h new file mode 100644 index 0000000..4b3be28 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_scancode.h @@ -0,0 +1,401 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_scancode.h + * + * Defines keyboard scancodes. + */ + +#ifndef _SDL_scancode_h +#define _SDL_scancode_h + +#include "SDL_stdinc.h" + +/** + * \brief The SDL keyboard scancode representation. + * + * Values of this type are used to represent keyboard keys, among other places + * in the \link SDL_Keysym::scancode key.keysym.scancode \endlink field of the + * SDL_Event structure. + * + * The values in this enumeration are based on the USB usage page standard: + * http://www.usb.org/developers/devclass_docs/Hut1_12v2.pdf + */ +typedef enum +{ + SDL_SCANCODE_UNKNOWN = 0, + + /** + * \name Usage page 0x07 + * + * These values are from usage page 0x07 (USB keyboard page). + */ + /* @{ */ + + SDL_SCANCODE_A = 4, + SDL_SCANCODE_B = 5, + SDL_SCANCODE_C = 6, + SDL_SCANCODE_D = 7, + SDL_SCANCODE_E = 8, + SDL_SCANCODE_F = 9, + SDL_SCANCODE_G = 10, + SDL_SCANCODE_H = 11, + SDL_SCANCODE_I = 12, + SDL_SCANCODE_J = 13, + SDL_SCANCODE_K = 14, + SDL_SCANCODE_L = 15, + SDL_SCANCODE_M = 16, + SDL_SCANCODE_N = 17, + SDL_SCANCODE_O = 18, + SDL_SCANCODE_P = 19, + SDL_SCANCODE_Q = 20, + SDL_SCANCODE_R = 21, + SDL_SCANCODE_S = 22, + SDL_SCANCODE_T = 23, + SDL_SCANCODE_U = 24, + SDL_SCANCODE_V = 25, + SDL_SCANCODE_W = 26, + SDL_SCANCODE_X = 27, + SDL_SCANCODE_Y = 28, + SDL_SCANCODE_Z = 29, + + SDL_SCANCODE_1 = 30, + SDL_SCANCODE_2 = 31, + SDL_SCANCODE_3 = 32, + SDL_SCANCODE_4 = 33, + SDL_SCANCODE_5 = 34, + SDL_SCANCODE_6 = 35, + SDL_SCANCODE_7 = 36, + SDL_SCANCODE_8 = 37, + SDL_SCANCODE_9 = 38, + SDL_SCANCODE_0 = 39, + + SDL_SCANCODE_RETURN = 40, + SDL_SCANCODE_ESCAPE = 41, + SDL_SCANCODE_BACKSPACE = 42, + SDL_SCANCODE_TAB = 43, + SDL_SCANCODE_SPACE = 44, + + SDL_SCANCODE_MINUS = 45, + SDL_SCANCODE_EQUALS = 46, + SDL_SCANCODE_LEFTBRACKET = 47, + SDL_SCANCODE_RIGHTBRACKET = 48, + SDL_SCANCODE_BACKSLASH = 49, /**< Located at the lower left of the return + * key on ISO keyboards and at the right end + * of the QWERTY row on ANSI keyboards. + * Produces REVERSE SOLIDUS (backslash) and + * VERTICAL LINE in a US layout, REVERSE + * SOLIDUS and VERTICAL LINE in a UK Mac + * layout, NUMBER SIGN and TILDE in a UK + * Windows layout, DOLLAR SIGN and POUND SIGN + * in a Swiss German layout, NUMBER SIGN and + * APOSTROPHE in a German layout, GRAVE + * ACCENT and POUND SIGN in a French Mac + * layout, and ASTERISK and MICRO SIGN in a + * French Windows layout. + */ + SDL_SCANCODE_NONUSHASH = 50, /**< ISO USB keyboards actually use this code + * instead of 49 for the same key, but all + * OSes I've seen treat the two codes + * identically. So, as an implementor, unless + * your keyboard generates both of those + * codes and your OS treats them differently, + * you should generate SDL_SCANCODE_BACKSLASH + * instead of this code. As a user, you + * should not rely on this code because SDL + * will never generate it with most (all?) + * keyboards. + */ + SDL_SCANCODE_SEMICOLON = 51, + SDL_SCANCODE_APOSTROPHE = 52, + SDL_SCANCODE_GRAVE = 53, /**< Located in the top left corner (on both ANSI + * and ISO keyboards). Produces GRAVE ACCENT and + * TILDE in a US Windows layout and in US and UK + * Mac layouts on ANSI keyboards, GRAVE ACCENT + * and NOT SIGN in a UK Windows layout, SECTION + * SIGN and PLUS-MINUS SIGN in US and UK Mac + * layouts on ISO keyboards, SECTION SIGN and + * DEGREE SIGN in a Swiss German layout (Mac: + * only on ISO keyboards), CIRCUMFLEX ACCENT and + * DEGREE SIGN in a German layout (Mac: only on + * ISO keyboards), SUPERSCRIPT TWO and TILDE in a + * French Windows layout, COMMERCIAL AT and + * NUMBER SIGN in a French Mac layout on ISO + * keyboards, and LESS-THAN SIGN and GREATER-THAN + * SIGN in a Swiss German, German, or French Mac + * layout on ANSI keyboards. + */ + SDL_SCANCODE_COMMA = 54, + SDL_SCANCODE_PERIOD = 55, + SDL_SCANCODE_SLASH = 56, + + SDL_SCANCODE_CAPSLOCK = 57, + + SDL_SCANCODE_F1 = 58, + SDL_SCANCODE_F2 = 59, + SDL_SCANCODE_F3 = 60, + SDL_SCANCODE_F4 = 61, + SDL_SCANCODE_F5 = 62, + SDL_SCANCODE_F6 = 63, + SDL_SCANCODE_F7 = 64, + SDL_SCANCODE_F8 = 65, + SDL_SCANCODE_F9 = 66, + SDL_SCANCODE_F10 = 67, + SDL_SCANCODE_F11 = 68, + SDL_SCANCODE_F12 = 69, + + SDL_SCANCODE_PRINTSCREEN = 70, + SDL_SCANCODE_SCROLLLOCK = 71, + SDL_SCANCODE_PAUSE = 72, + SDL_SCANCODE_INSERT = 73, /**< insert on PC, help on some Mac keyboards (but + does send code 73, not 117) */ + SDL_SCANCODE_HOME = 74, + SDL_SCANCODE_PAGEUP = 75, + SDL_SCANCODE_DELETE = 76, + SDL_SCANCODE_END = 77, + SDL_SCANCODE_PAGEDOWN = 78, + SDL_SCANCODE_RIGHT = 79, + SDL_SCANCODE_LEFT = 80, + SDL_SCANCODE_DOWN = 81, + SDL_SCANCODE_UP = 82, + + SDL_SCANCODE_NUMLOCKCLEAR = 83, /**< num lock on PC, clear on Mac keyboards + */ + SDL_SCANCODE_KP_DIVIDE = 84, + SDL_SCANCODE_KP_MULTIPLY = 85, + SDL_SCANCODE_KP_MINUS = 86, + SDL_SCANCODE_KP_PLUS = 87, + SDL_SCANCODE_KP_ENTER = 88, + SDL_SCANCODE_KP_1 = 89, + SDL_SCANCODE_KP_2 = 90, + SDL_SCANCODE_KP_3 = 91, + SDL_SCANCODE_KP_4 = 92, + SDL_SCANCODE_KP_5 = 93, + SDL_SCANCODE_KP_6 = 94, + SDL_SCANCODE_KP_7 = 95, + SDL_SCANCODE_KP_8 = 96, + SDL_SCANCODE_KP_9 = 97, + SDL_SCANCODE_KP_0 = 98, + SDL_SCANCODE_KP_PERIOD = 99, + + SDL_SCANCODE_NONUSBACKSLASH = 100, /**< This is the additional key that ISO + * keyboards have over ANSI ones, + * located between left shift and Y. + * Produces GRAVE ACCENT and TILDE in a + * US or UK Mac layout, REVERSE SOLIDUS + * (backslash) and VERTICAL LINE in a + * US or UK Windows layout, and + * LESS-THAN SIGN and GREATER-THAN SIGN + * in a Swiss German, German, or French + * layout. */ + SDL_SCANCODE_APPLICATION = 101, /**< windows contextual menu, compose */ + SDL_SCANCODE_POWER = 102, /**< The USB document says this is a status flag, + * not a physical key - but some Mac keyboards + * do have a power key. */ + SDL_SCANCODE_KP_EQUALS = 103, + SDL_SCANCODE_F13 = 104, + SDL_SCANCODE_F14 = 105, + SDL_SCANCODE_F15 = 106, + SDL_SCANCODE_F16 = 107, + SDL_SCANCODE_F17 = 108, + SDL_SCANCODE_F18 = 109, + SDL_SCANCODE_F19 = 110, + SDL_SCANCODE_F20 = 111, + SDL_SCANCODE_F21 = 112, + SDL_SCANCODE_F22 = 113, + SDL_SCANCODE_F23 = 114, + SDL_SCANCODE_F24 = 115, + SDL_SCANCODE_EXECUTE = 116, + SDL_SCANCODE_HELP = 117, + SDL_SCANCODE_MENU = 118, + SDL_SCANCODE_SELECT = 119, + SDL_SCANCODE_STOP = 120, + SDL_SCANCODE_AGAIN = 121, /**< redo */ + SDL_SCANCODE_UNDO = 122, + SDL_SCANCODE_CUT = 123, + SDL_SCANCODE_COPY = 124, + SDL_SCANCODE_PASTE = 125, + SDL_SCANCODE_FIND = 126, + SDL_SCANCODE_MUTE = 127, + SDL_SCANCODE_VOLUMEUP = 128, + SDL_SCANCODE_VOLUMEDOWN = 129, +/* not sure whether there's a reason to enable these */ +/* SDL_SCANCODE_LOCKINGCAPSLOCK = 130, */ +/* SDL_SCANCODE_LOCKINGNUMLOCK = 131, */ +/* SDL_SCANCODE_LOCKINGSCROLLLOCK = 132, */ + SDL_SCANCODE_KP_COMMA = 133, + SDL_SCANCODE_KP_EQUALSAS400 = 134, + + SDL_SCANCODE_INTERNATIONAL1 = 135, /**< used on Asian keyboards, see + footnotes in USB doc */ + SDL_SCANCODE_INTERNATIONAL2 = 136, + SDL_SCANCODE_INTERNATIONAL3 = 137, /**< Yen */ + SDL_SCANCODE_INTERNATIONAL4 = 138, + SDL_SCANCODE_INTERNATIONAL5 = 139, + SDL_SCANCODE_INTERNATIONAL6 = 140, + SDL_SCANCODE_INTERNATIONAL7 = 141, + SDL_SCANCODE_INTERNATIONAL8 = 142, + SDL_SCANCODE_INTERNATIONAL9 = 143, + SDL_SCANCODE_LANG1 = 144, /**< Hangul/English toggle */ + SDL_SCANCODE_LANG2 = 145, /**< Hanja conversion */ + SDL_SCANCODE_LANG3 = 146, /**< Katakana */ + SDL_SCANCODE_LANG4 = 147, /**< Hiragana */ + SDL_SCANCODE_LANG5 = 148, /**< Zenkaku/Hankaku */ + SDL_SCANCODE_LANG6 = 149, /**< reserved */ + SDL_SCANCODE_LANG7 = 150, /**< reserved */ + SDL_SCANCODE_LANG8 = 151, /**< reserved */ + SDL_SCANCODE_LANG9 = 152, /**< reserved */ + + SDL_SCANCODE_ALTERASE = 153, /**< Erase-Eaze */ + SDL_SCANCODE_SYSREQ = 154, + SDL_SCANCODE_CANCEL = 155, + SDL_SCANCODE_CLEAR = 156, + SDL_SCANCODE_PRIOR = 157, + SDL_SCANCODE_RETURN2 = 158, + SDL_SCANCODE_SEPARATOR = 159, + SDL_SCANCODE_OUT = 160, + SDL_SCANCODE_OPER = 161, + SDL_SCANCODE_CLEARAGAIN = 162, + SDL_SCANCODE_CRSEL = 163, + SDL_SCANCODE_EXSEL = 164, + + SDL_SCANCODE_KP_00 = 176, + SDL_SCANCODE_KP_000 = 177, + SDL_SCANCODE_THOUSANDSSEPARATOR = 178, + SDL_SCANCODE_DECIMALSEPARATOR = 179, + SDL_SCANCODE_CURRENCYUNIT = 180, + SDL_SCANCODE_CURRENCYSUBUNIT = 181, + SDL_SCANCODE_KP_LEFTPAREN = 182, + SDL_SCANCODE_KP_RIGHTPAREN = 183, + SDL_SCANCODE_KP_LEFTBRACE = 184, + SDL_SCANCODE_KP_RIGHTBRACE = 185, + SDL_SCANCODE_KP_TAB = 186, + SDL_SCANCODE_KP_BACKSPACE = 187, + SDL_SCANCODE_KP_A = 188, + SDL_SCANCODE_KP_B = 189, + SDL_SCANCODE_KP_C = 190, + SDL_SCANCODE_KP_D = 191, + SDL_SCANCODE_KP_E = 192, + SDL_SCANCODE_KP_F = 193, + SDL_SCANCODE_KP_XOR = 194, + SDL_SCANCODE_KP_POWER = 195, + SDL_SCANCODE_KP_PERCENT = 196, + SDL_SCANCODE_KP_LESS = 197, + SDL_SCANCODE_KP_GREATER = 198, + SDL_SCANCODE_KP_AMPERSAND = 199, + SDL_SCANCODE_KP_DBLAMPERSAND = 200, + SDL_SCANCODE_KP_VERTICALBAR = 201, + SDL_SCANCODE_KP_DBLVERTICALBAR = 202, + SDL_SCANCODE_KP_COLON = 203, + SDL_SCANCODE_KP_HASH = 204, + SDL_SCANCODE_KP_SPACE = 205, + SDL_SCANCODE_KP_AT = 206, + SDL_SCANCODE_KP_EXCLAM = 207, + SDL_SCANCODE_KP_MEMSTORE = 208, + SDL_SCANCODE_KP_MEMRECALL = 209, + SDL_SCANCODE_KP_MEMCLEAR = 210, + SDL_SCANCODE_KP_MEMADD = 211, + SDL_SCANCODE_KP_MEMSUBTRACT = 212, + SDL_SCANCODE_KP_MEMMULTIPLY = 213, + SDL_SCANCODE_KP_MEMDIVIDE = 214, + SDL_SCANCODE_KP_PLUSMINUS = 215, + SDL_SCANCODE_KP_CLEAR = 216, + SDL_SCANCODE_KP_CLEARENTRY = 217, + SDL_SCANCODE_KP_BINARY = 218, + SDL_SCANCODE_KP_OCTAL = 219, + SDL_SCANCODE_KP_DECIMAL = 220, + SDL_SCANCODE_KP_HEXADECIMAL = 221, + + SDL_SCANCODE_LCTRL = 224, + SDL_SCANCODE_LSHIFT = 225, + SDL_SCANCODE_LALT = 226, /**< alt, option */ + SDL_SCANCODE_LGUI = 227, /**< windows, command (apple), meta */ + SDL_SCANCODE_RCTRL = 228, + SDL_SCANCODE_RSHIFT = 229, + SDL_SCANCODE_RALT = 230, /**< alt gr, option */ + SDL_SCANCODE_RGUI = 231, /**< windows, command (apple), meta */ + + SDL_SCANCODE_MODE = 257, /**< I'm not sure if this is really not covered + * by any of the above, but since there's a + * special KMOD_MODE for it I'm adding it here + */ + + /* @} *//* Usage page 0x07 */ + + /** + * \name Usage page 0x0C + * + * These values are mapped from usage page 0x0C (USB consumer page). + */ + /* @{ */ + + SDL_SCANCODE_AUDIONEXT = 258, + SDL_SCANCODE_AUDIOPREV = 259, + SDL_SCANCODE_AUDIOSTOP = 260, + SDL_SCANCODE_AUDIOPLAY = 261, + SDL_SCANCODE_AUDIOMUTE = 262, + SDL_SCANCODE_MEDIASELECT = 263, + SDL_SCANCODE_WWW = 264, + SDL_SCANCODE_MAIL = 265, + SDL_SCANCODE_CALCULATOR = 266, + SDL_SCANCODE_COMPUTER = 267, + SDL_SCANCODE_AC_SEARCH = 268, + SDL_SCANCODE_AC_HOME = 269, + SDL_SCANCODE_AC_BACK = 270, + SDL_SCANCODE_AC_FORWARD = 271, + SDL_SCANCODE_AC_STOP = 272, + SDL_SCANCODE_AC_REFRESH = 273, + SDL_SCANCODE_AC_BOOKMARKS = 274, + + /* @} *//* Usage page 0x0C */ + + /** + * \name Walther keys + * + * These are values that Christian Walther added (for mac keyboard?). + */ + /* @{ */ + + SDL_SCANCODE_BRIGHTNESSDOWN = 275, + SDL_SCANCODE_BRIGHTNESSUP = 276, + SDL_SCANCODE_DISPLAYSWITCH = 277, /**< display mirroring/dual display + switch, video mode switch */ + SDL_SCANCODE_KBDILLUMTOGGLE = 278, + SDL_SCANCODE_KBDILLUMDOWN = 279, + SDL_SCANCODE_KBDILLUMUP = 280, + SDL_SCANCODE_EJECT = 281, + SDL_SCANCODE_SLEEP = 282, + + SDL_SCANCODE_APP1 = 283, + SDL_SCANCODE_APP2 = 284, + + /* @} *//* Walther keys */ + + /* Add any other keys here. */ + + SDL_NUM_SCANCODES = 512 /**< not a key, just marks the number of scancodes + for array bounds */ +} SDL_Scancode; + +#endif /* _SDL_scancode_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_shape.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_shape.h new file mode 100644 index 0000000..5302930 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_shape.h @@ -0,0 +1,143 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef _SDL_shape_h +#define _SDL_shape_h + +#include "SDL_stdinc.h" +#include "SDL_pixels.h" +#include "SDL_rect.h" +#include "SDL_surface.h" +#include "SDL_video.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** \file SDL_shape.h + * + * Header file for the shaped window API. + */ + +#define SDL_NONSHAPEABLE_WINDOW -1 +#define SDL_INVALID_SHAPE_ARGUMENT -2 +#define SDL_WINDOW_LACKS_SHAPE -3 + +/** + * \brief Create a window that can be shaped with the specified position, dimensions, and flags. + * + * \param title The title of the window, in UTF-8 encoding. + * \param x The x position of the window, ::SDL_WINDOWPOS_CENTERED, or + * ::SDL_WINDOWPOS_UNDEFINED. + * \param y The y position of the window, ::SDL_WINDOWPOS_CENTERED, or + * ::SDL_WINDOWPOS_UNDEFINED. + * \param w The width of the window. + * \param h The height of the window. + * \param flags The flags for the window, a mask of SDL_WINDOW_BORDERLESS with any of the following: + * ::SDL_WINDOW_OPENGL, ::SDL_WINDOW_INPUT_GRABBED, + * ::SDL_WINDOW_HIDDEN, ::SDL_WINDOW_RESIZABLE, + * ::SDL_WINDOW_MAXIMIZED, ::SDL_WINDOW_MINIMIZED, + * ::SDL_WINDOW_BORDERLESS is always set, and ::SDL_WINDOW_FULLSCREEN is always unset. + * + * \return The window created, or NULL if window creation failed. + * + * \sa SDL_DestroyWindow() + */ +extern DECLSPEC SDL_Window * SDLCALL SDL_CreateShapedWindow(const char *title,unsigned int x,unsigned int y,unsigned int w,unsigned int h,Uint32 flags); + +/** + * \brief Return whether the given window is a shaped window. + * + * \param window The window to query for being shaped. + * + * \return SDL_TRUE if the window is a window that can be shaped, SDL_FALSE if the window is unshaped or NULL. + * \sa SDL_CreateShapedWindow + */ +extern DECLSPEC SDL_bool SDLCALL SDL_IsShapedWindow(const SDL_Window *window); + +/** \brief An enum denoting the specific type of contents present in an SDL_WindowShapeParams union. */ +typedef enum { + /** \brief The default mode, a binarized alpha cutoff of 1. */ + ShapeModeDefault, + /** \brief A binarized alpha cutoff with a given integer value. */ + ShapeModeBinarizeAlpha, + /** \brief A binarized alpha cutoff with a given integer value, but with the opposite comparison. */ + ShapeModeReverseBinarizeAlpha, + /** \brief A color key is applied. */ + ShapeModeColorKey +} WindowShapeMode; + +#define SDL_SHAPEMODEALPHA(mode) (mode == ShapeModeDefault || mode == ShapeModeBinarizeAlpha || mode == ShapeModeReverseBinarizeAlpha) + +/** \brief A union containing parameters for shaped windows. */ +typedef union { + /** \brief a cutoff alpha value for binarization of the window shape's alpha channel. */ + Uint8 binarizationCutoff; + SDL_Color colorKey; +} SDL_WindowShapeParams; + +/** \brief A struct that tags the SDL_WindowShapeParams union with an enum describing the type of its contents. */ +typedef struct SDL_WindowShapeMode { + /** \brief The mode of these window-shape parameters. */ + WindowShapeMode mode; + /** \brief Window-shape parameters. */ + SDL_WindowShapeParams parameters; +} SDL_WindowShapeMode; + +/** + * \brief Set the shape and parameters of a shaped window. + * + * \param window The shaped window whose parameters should be set. + * \param shape A surface encoding the desired shape for the window. + * \param shape_mode The parameters to set for the shaped window. + * + * \return 0 on success, SDL_INVALID_SHAPE_ARGUMENT on invalid an invalid shape argument, or SDL_NONSHAPEABLE_WINDOW + * if the SDL_Window* given does not reference a valid shaped window. + * + * \sa SDL_WindowShapeMode + * \sa SDL_GetShapedWindowMode. + */ +extern DECLSPEC int SDLCALL SDL_SetWindowShape(SDL_Window *window,SDL_Surface *shape,SDL_WindowShapeMode *shape_mode); + +/** + * \brief Get the shape parameters of a shaped window. + * + * \param window The shaped window whose parameters should be retrieved. + * \param shape_mode An empty shape-mode structure to fill, or NULL to check whether the window has a shape. + * + * \return 0 if the window has a shape and, provided shape_mode was not NULL, shape_mode has been filled with the mode + * data, SDL_NONSHAPEABLE_WINDOW if the SDL_Window given is not a shaped window, or SDL_WINDOW_LACKS_SHAPE if + * the SDL_Window* given is a shapeable window currently lacking a shape. + * + * \sa SDL_WindowShapeMode + * \sa SDL_SetWindowShape + */ +extern DECLSPEC int SDLCALL SDL_GetShapedWindowMode(SDL_Window *window,SDL_WindowShapeMode *shape_mode); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_shape_h */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_stdinc.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_stdinc.h new file mode 100644 index 0000000..31b343d --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_stdinc.h @@ -0,0 +1,405 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_stdinc.h + * + * This is a general header that includes C language support. + */ + +#ifndef _SDL_stdinc_h +#define _SDL_stdinc_h + +#include "SDL_config.h" + +#ifdef HAVE_SYS_TYPES_H +#include +#endif +#ifdef HAVE_STDIO_H +#include +#endif +#if defined(STDC_HEADERS) +# include +# include +# include +#else +# if defined(HAVE_STDLIB_H) +# include +# elif defined(HAVE_MALLOC_H) +# include +# endif +# if defined(HAVE_STDDEF_H) +# include +# endif +# if defined(HAVE_STDARG_H) +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H) +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#if defined(HAVE_INTTYPES_H) +# include +#elif defined(HAVE_STDINT_H) +# include +#endif +#ifdef HAVE_CTYPE_H +# include +#endif +#ifdef HAVE_MATH_H +# if defined(__WINRT__) +/* Defining _USE_MATH_DEFINES is required to get M_PI to be defined on + WinRT. See http://msdn.microsoft.com/en-us/library/4hwaceh6.aspx + for more information. +*/ +# define _USE_MATH_DEFINES +# endif +# include +#endif +#ifdef HAVE_FLOAT_H +# include +#endif +#if defined(HAVE_ICONV) && defined(HAVE_ICONV_H) +# include +#endif + +/** + * The number of elements in an array. + */ +#define SDL_arraysize(array) (sizeof(array)/sizeof(array[0])) +#define SDL_TABLESIZE(table) SDL_arraysize(table) + +/** + * \name Cast operators + * + * Use proper C++ casts when compiled as C++ to be compatible with the option + * -Wold-style-cast of GCC (and -Werror=old-style-cast in GCC 4.2 and above). + */ +/* @{ */ +#ifdef __cplusplus +#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression) +#define SDL_static_cast(type, expression) static_cast(expression) +#define SDL_const_cast(type, expression) const_cast(expression) +#else +#define SDL_reinterpret_cast(type, expression) ((type)(expression)) +#define SDL_static_cast(type, expression) ((type)(expression)) +#define SDL_const_cast(type, expression) ((type)(expression)) +#endif +/* @} *//* Cast operators */ + +/* Define a four character code as a Uint32 */ +#define SDL_FOURCC(A, B, C, D) \ + ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24)) + +/** + * \name Basic data types + */ +/* @{ */ + +typedef enum +{ + SDL_FALSE = 0, + SDL_TRUE = 1 +} SDL_bool; + +/** + * \brief A signed 8-bit integer type. + */ +typedef int8_t Sint8; +/** + * \brief An unsigned 8-bit integer type. + */ +typedef uint8_t Uint8; +/** + * \brief A signed 16-bit integer type. + */ +typedef int16_t Sint16; +/** + * \brief An unsigned 16-bit integer type. + */ +typedef uint16_t Uint16; +/** + * \brief A signed 32-bit integer type. + */ +typedef int32_t Sint32; +/** + * \brief An unsigned 32-bit integer type. + */ +typedef uint32_t Uint32; + +/** + * \brief A signed 64-bit integer type. + */ +typedef int64_t Sint64; +/** + * \brief An unsigned 64-bit integer type. + */ +typedef uint64_t Uint64; + +/* @} *//* Basic data types */ + + +#define SDL_COMPILE_TIME_ASSERT(name, x) \ + typedef int SDL_dummy_ ## name[(x) * 2 - 1] +/** \cond */ +#ifndef DOXYGEN_SHOULD_IGNORE_THIS +SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1); +SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1); +SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2); +SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2); +SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); +SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4); +SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8); +SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); +#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ +/** \endcond */ + +/* Check to make sure enums are the size of ints, for structure packing. + For both Watcom C/C++ and Borland C/C++ the compiler option that makes + enums having the size of an int must be enabled. + This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). +*/ + +/** \cond */ +#ifndef DOXYGEN_SHOULD_IGNORE_THIS +#if !defined(__ANDROID__) + /* TODO: include/SDL_stdinc.h:174: error: size of array 'SDL_dummy_enum' is negative */ +typedef enum +{ + DUMMY_ENUM_VALUE +} SDL_DUMMY_ENUM; + +SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int)); +#endif +#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ +/** \endcond */ + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#if defined(HAVE_ALLOCA) && !defined(alloca) +# if defined(HAVE_ALLOCA_H) +# include +# elif defined(__GNUC__) +# define alloca __builtin_alloca +# elif defined(_MSC_VER) +# include +# define alloca _alloca +# elif defined(__WATCOMC__) +# include +# elif defined(__BORLANDC__) +# include +# elif defined(__DMC__) +# include +# elif defined(__AIX__) +#pragma alloca +# elif defined(__MRC__) +void *alloca(unsigned); +# else +char *alloca(); +# endif +#endif +#ifdef HAVE_ALLOCA +#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) +#define SDL_stack_free(data) +#else +#define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count)) +#define SDL_stack_free(data) SDL_free(data) +#endif + +extern DECLSPEC void *SDLCALL SDL_malloc(size_t size); +extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size); +extern DECLSPEC void *SDLCALL SDL_realloc(void *mem, size_t size); +extern DECLSPEC void SDLCALL SDL_free(void *mem); + +extern DECLSPEC char *SDLCALL SDL_getenv(const char *name); +extern DECLSPEC int SDLCALL SDL_setenv(const char *name, const char *value, int overwrite); + +extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, int (*compare) (const void *, const void *)); + +extern DECLSPEC int SDLCALL SDL_abs(int x); + +/* !!! FIXME: these have side effects. You probably shouldn't use them. */ +/* !!! FIXME: Maybe we do forceinline functions of SDL_mini, SDL_minf, etc? */ +#define SDL_min(x, y) (((x) < (y)) ? (x) : (y)) +#define SDL_max(x, y) (((x) > (y)) ? (x) : (y)) + +extern DECLSPEC int SDLCALL SDL_isdigit(int x); +extern DECLSPEC int SDLCALL SDL_isspace(int x); +extern DECLSPEC int SDLCALL SDL_toupper(int x); +extern DECLSPEC int SDLCALL SDL_tolower(int x); + +extern DECLSPEC void *SDLCALL SDL_memset(void *dst, int c, size_t len); + +#define SDL_zero(x) SDL_memset(&(x), 0, sizeof((x))) +#define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x))) + +/* Note that memset() is a byte assignment and this is a 32-bit assignment, so they're not directly equivalent. */ +SDL_FORCE_INLINE void SDL_memset4(void *dst, Uint32 val, size_t dwords) +{ +#if defined(__GNUC__) && defined(i386) + int u0, u1, u2; + __asm__ __volatile__ ( + "cld \n\t" + "rep ; stosl \n\t" + : "=&D" (u0), "=&a" (u1), "=&c" (u2) + : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, dwords)) + : "memory" + ); +#else + size_t _n = (dwords + 3) / 4; + Uint32 *_p = SDL_static_cast(Uint32 *, dst); + Uint32 _val = (val); + if (dwords == 0) + return; + switch (dwords % 4) + { + case 0: do { *_p++ = _val; + case 3: *_p++ = _val; + case 2: *_p++ = _val; + case 1: *_p++ = _val; + } while ( --_n ); + } +#endif +} + + +extern DECLSPEC void *SDLCALL SDL_memcpy(void *dst, const void *src, size_t len); + +SDL_FORCE_INLINE void *SDL_memcpy4(void *dst, const void *src, size_t dwords) +{ + return SDL_memcpy(dst, src, dwords * 4); +} + +extern DECLSPEC void *SDLCALL SDL_memmove(void *dst, const void *src, size_t len); +extern DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2, size_t len); + +extern DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t *wstr); +extern DECLSPEC size_t SDLCALL SDL_wcslcpy(wchar_t *dst, const wchar_t *src, size_t maxlen); +extern DECLSPEC size_t SDLCALL SDL_wcslcat(wchar_t *dst, const wchar_t *src, size_t maxlen); + +extern DECLSPEC size_t SDLCALL SDL_strlen(const char *str); +extern DECLSPEC size_t SDLCALL SDL_strlcpy(char *dst, const char *src, size_t maxlen); +extern DECLSPEC size_t SDLCALL SDL_utf8strlcpy(char *dst, const char *src, size_t dst_bytes); +extern DECLSPEC size_t SDLCALL SDL_strlcat(char *dst, const char *src, size_t maxlen); +extern DECLSPEC char *SDLCALL SDL_strdup(const char *str); +extern DECLSPEC char *SDLCALL SDL_strrev(char *str); +extern DECLSPEC char *SDLCALL SDL_strupr(char *str); +extern DECLSPEC char *SDLCALL SDL_strlwr(char *str); +extern DECLSPEC char *SDLCALL SDL_strchr(const char *str, int c); +extern DECLSPEC char *SDLCALL SDL_strrchr(const char *str, int c); +extern DECLSPEC char *SDLCALL SDL_strstr(const char *haystack, const char *needle); + +extern DECLSPEC char *SDLCALL SDL_itoa(int value, char *str, int radix); +extern DECLSPEC char *SDLCALL SDL_uitoa(unsigned int value, char *str, int radix); +extern DECLSPEC char *SDLCALL SDL_ltoa(long value, char *str, int radix); +extern DECLSPEC char *SDLCALL SDL_ultoa(unsigned long value, char *str, int radix); +extern DECLSPEC char *SDLCALL SDL_lltoa(Sint64 value, char *str, int radix); +extern DECLSPEC char *SDLCALL SDL_ulltoa(Uint64 value, char *str, int radix); + +extern DECLSPEC int SDLCALL SDL_atoi(const char *str); +extern DECLSPEC double SDLCALL SDL_atof(const char *str); +extern DECLSPEC long SDLCALL SDL_strtol(const char *str, char **endp, int base); +extern DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *str, char **endp, int base); +extern DECLSPEC Sint64 SDLCALL SDL_strtoll(const char *str, char **endp, int base); +extern DECLSPEC Uint64 SDLCALL SDL_strtoull(const char *str, char **endp, int base); +extern DECLSPEC double SDLCALL SDL_strtod(const char *str, char **endp); + +extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); +extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); +extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); +extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t len); + +extern DECLSPEC int SDLCALL SDL_sscanf(const char *text, const char *fmt, ...); +extern DECLSPEC int SDLCALL SDL_vsscanf(const char *text, const char *fmt, va_list ap); +extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen, const char *fmt, ...); +extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap); + +#ifndef HAVE_M_PI +#ifndef M_PI +#define M_PI 3.14159265358979323846264338327950288 /* pi */ +#endif +#endif + +extern DECLSPEC double SDLCALL SDL_acos(double x); +extern DECLSPEC double SDLCALL SDL_asin(double x); +extern DECLSPEC double SDLCALL SDL_atan(double x); +extern DECLSPEC double SDLCALL SDL_atan2(double x, double y); +extern DECLSPEC double SDLCALL SDL_ceil(double x); +extern DECLSPEC double SDLCALL SDL_copysign(double x, double y); +extern DECLSPEC double SDLCALL SDL_cos(double x); +extern DECLSPEC float SDLCALL SDL_cosf(float x); +extern DECLSPEC double SDLCALL SDL_fabs(double x); +extern DECLSPEC double SDLCALL SDL_floor(double x); +extern DECLSPEC double SDLCALL SDL_log(double x); +extern DECLSPEC double SDLCALL SDL_pow(double x, double y); +extern DECLSPEC double SDLCALL SDL_scalbn(double x, int n); +extern DECLSPEC double SDLCALL SDL_sin(double x); +extern DECLSPEC float SDLCALL SDL_sinf(float x); +extern DECLSPEC double SDLCALL SDL_sqrt(double x); + +/* The SDL implementation of iconv() returns these error codes */ +#define SDL_ICONV_ERROR (size_t)-1 +#define SDL_ICONV_E2BIG (size_t)-2 +#define SDL_ICONV_EILSEQ (size_t)-3 +#define SDL_ICONV_EINVAL (size_t)-4 + +/* SDL_iconv_* are now always real symbols/types, not macros or inlined. */ +typedef struct _SDL_iconv_t *SDL_iconv_t; +extern DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode, + const char *fromcode); +extern DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd); +extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf, + size_t * inbytesleft, char **outbuf, + size_t * outbytesleft); +/** + * This function converts a string between encodings in one pass, returning a + * string that must be freed with SDL_free() or NULL on error. + */ +extern DECLSPEC char *SDLCALL SDL_iconv_string(const char *tocode, + const char *fromcode, + const char *inbuf, + size_t inbytesleft); +#define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1) +#define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2-INTERNAL", "UTF-8", S, SDL_strlen(S)+1) +#define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4-INTERNAL", "UTF-8", S, SDL_strlen(S)+1) + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_stdinc_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_surface.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_surface.h new file mode 100644 index 0000000..aa8d821 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_surface.h @@ -0,0 +1,503 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_surface.h + * + * Header file for ::SDL_Surface definition and management functions. + */ + +#ifndef _SDL_surface_h +#define _SDL_surface_h + +#include "SDL_stdinc.h" +#include "SDL_pixels.h" +#include "SDL_rect.h" +#include "SDL_blendmode.h" +#include "SDL_rwops.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \name Surface flags + * + * These are the currently supported flags for the ::SDL_Surface. + * + * \internal + * Used internally (read-only). + */ +/* @{ */ +#define SDL_SWSURFACE 0 /**< Just here for compatibility */ +#define SDL_PREALLOC 0x00000001 /**< Surface uses preallocated memory */ +#define SDL_RLEACCEL 0x00000002 /**< Surface is RLE encoded */ +#define SDL_DONTFREE 0x00000004 /**< Surface is referenced internally */ +/* @} *//* Surface flags */ + +/** + * Evaluates to true if the surface needs to be locked before access. + */ +#define SDL_MUSTLOCK(S) (((S)->flags & SDL_RLEACCEL) != 0) + +/** + * \brief A collection of pixels used in software blitting. + * + * \note This structure should be treated as read-only, except for \c pixels, + * which, if not NULL, contains the raw pixel data for the surface. + */ +typedef struct SDL_Surface +{ + Uint32 flags; /**< Read-only */ + SDL_PixelFormat *format; /**< Read-only */ + int w, h; /**< Read-only */ + int pitch; /**< Read-only */ + void *pixels; /**< Read-write */ + + /** Application data associated with the surface */ + void *userdata; /**< Read-write */ + + /** information needed for surfaces requiring locks */ + int locked; /**< Read-only */ + void *lock_data; /**< Read-only */ + + /** clipping information */ + SDL_Rect clip_rect; /**< Read-only */ + + /** info for fast blit mapping to other surfaces */ + struct SDL_BlitMap *map; /**< Private */ + + /** Reference count -- used when freeing surface */ + int refcount; /**< Read-mostly */ +} SDL_Surface; + +/** + * \brief The type of function used for surface blitting functions. + */ +typedef int (*SDL_blit) (struct SDL_Surface * src, SDL_Rect * srcrect, + struct SDL_Surface * dst, SDL_Rect * dstrect); + +/** + * Allocate and free an RGB surface. + * + * If the depth is 4 or 8 bits, an empty palette is allocated for the surface. + * If the depth is greater than 8 bits, the pixel format is set using the + * flags '[RGB]mask'. + * + * If the function runs out of memory, it will return NULL. + * + * \param flags The \c flags are obsolete and should be set to 0. + * \param width The width in pixels of the surface to create. + * \param height The height in pixels of the surface to create. + * \param depth The depth in bits of the surface to create. + * \param Rmask The red mask of the surface to create. + * \param Gmask The green mask of the surface to create. + * \param Bmask The blue mask of the surface to create. + * \param Amask The alpha mask of the surface to create. + */ +extern DECLSPEC SDL_Surface *SDLCALL SDL_CreateRGBSurface + (Uint32 flags, int width, int height, int depth, + Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask); +extern DECLSPEC SDL_Surface *SDLCALL SDL_CreateRGBSurfaceFrom(void *pixels, + int width, + int height, + int depth, + int pitch, + Uint32 Rmask, + Uint32 Gmask, + Uint32 Bmask, + Uint32 Amask); +extern DECLSPEC void SDLCALL SDL_FreeSurface(SDL_Surface * surface); + +/** + * \brief Set the palette used by a surface. + * + * \return 0, or -1 if the surface format doesn't use a palette. + * + * \note A single palette can be shared with many surfaces. + */ +extern DECLSPEC int SDLCALL SDL_SetSurfacePalette(SDL_Surface * surface, + SDL_Palette * palette); + +/** + * \brief Sets up a surface for directly accessing the pixels. + * + * Between calls to SDL_LockSurface() / SDL_UnlockSurface(), you can write + * to and read from \c surface->pixels, using the pixel format stored in + * \c surface->format. Once you are done accessing the surface, you should + * use SDL_UnlockSurface() to release it. + * + * Not all surfaces require locking. If SDL_MUSTLOCK(surface) evaluates + * to 0, then you can read and write to the surface at any time, and the + * pixel format of the surface will not change. + * + * No operating system or library calls should be made between lock/unlock + * pairs, as critical system locks may be held during this time. + * + * SDL_LockSurface() returns 0, or -1 if the surface couldn't be locked. + * + * \sa SDL_UnlockSurface() + */ +extern DECLSPEC int SDLCALL SDL_LockSurface(SDL_Surface * surface); +/** \sa SDL_LockSurface() */ +extern DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface * surface); + +/** + * Load a surface from a seekable SDL data stream (memory or file). + * + * If \c freesrc is non-zero, the stream will be closed after being read. + * + * The new surface should be freed with SDL_FreeSurface(). + * + * \return the new surface, or NULL if there was an error. + */ +extern DECLSPEC SDL_Surface *SDLCALL SDL_LoadBMP_RW(SDL_RWops * src, + int freesrc); + +/** + * Load a surface from a file. + * + * Convenience macro. + */ +#define SDL_LoadBMP(file) SDL_LoadBMP_RW(SDL_RWFromFile(file, "rb"), 1) + +/** + * Save a surface to a seekable SDL data stream (memory or file). + * + * If \c freedst is non-zero, the stream will be closed after being written. + * + * \return 0 if successful or -1 if there was an error. + */ +extern DECLSPEC int SDLCALL SDL_SaveBMP_RW + (SDL_Surface * surface, SDL_RWops * dst, int freedst); + +/** + * Save a surface to a file. + * + * Convenience macro. + */ +#define SDL_SaveBMP(surface, file) \ + SDL_SaveBMP_RW(surface, SDL_RWFromFile(file, "wb"), 1) + +/** + * \brief Sets the RLE acceleration hint for a surface. + * + * \return 0 on success, or -1 if the surface is not valid + * + * \note If RLE is enabled, colorkey and alpha blending blits are much faster, + * but the surface must be locked before directly accessing the pixels. + */ +extern DECLSPEC int SDLCALL SDL_SetSurfaceRLE(SDL_Surface * surface, + int flag); + +/** + * \brief Sets the color key (transparent pixel) in a blittable surface. + * + * \param surface The surface to update + * \param flag Non-zero to enable colorkey and 0 to disable colorkey + * \param key The transparent pixel in the native surface format + * + * \return 0 on success, or -1 if the surface is not valid + * + * You can pass SDL_RLEACCEL to enable RLE accelerated blits. + */ +extern DECLSPEC int SDLCALL SDL_SetColorKey(SDL_Surface * surface, + int flag, Uint32 key); + +/** + * \brief Gets the color key (transparent pixel) in a blittable surface. + * + * \param surface The surface to update + * \param key A pointer filled in with the transparent pixel in the native + * surface format + * + * \return 0 on success, or -1 if the surface is not valid or colorkey is not + * enabled. + */ +extern DECLSPEC int SDLCALL SDL_GetColorKey(SDL_Surface * surface, + Uint32 * key); + +/** + * \brief Set an additional color value used in blit operations. + * + * \param surface The surface to update. + * \param r The red color value multiplied into blit operations. + * \param g The green color value multiplied into blit operations. + * \param b The blue color value multiplied into blit operations. + * + * \return 0 on success, or -1 if the surface is not valid. + * + * \sa SDL_GetSurfaceColorMod() + */ +extern DECLSPEC int SDLCALL SDL_SetSurfaceColorMod(SDL_Surface * surface, + Uint8 r, Uint8 g, Uint8 b); + + +/** + * \brief Get the additional color value used in blit operations. + * + * \param surface The surface to query. + * \param r A pointer filled in with the current red color value. + * \param g A pointer filled in with the current green color value. + * \param b A pointer filled in with the current blue color value. + * + * \return 0 on success, or -1 if the surface is not valid. + * + * \sa SDL_SetSurfaceColorMod() + */ +extern DECLSPEC int SDLCALL SDL_GetSurfaceColorMod(SDL_Surface * surface, + Uint8 * r, Uint8 * g, + Uint8 * b); + +/** + * \brief Set an additional alpha value used in blit operations. + * + * \param surface The surface to update. + * \param alpha The alpha value multiplied into blit operations. + * + * \return 0 on success, or -1 if the surface is not valid. + * + * \sa SDL_GetSurfaceAlphaMod() + */ +extern DECLSPEC int SDLCALL SDL_SetSurfaceAlphaMod(SDL_Surface * surface, + Uint8 alpha); + +/** + * \brief Get the additional alpha value used in blit operations. + * + * \param surface The surface to query. + * \param alpha A pointer filled in with the current alpha value. + * + * \return 0 on success, or -1 if the surface is not valid. + * + * \sa SDL_SetSurfaceAlphaMod() + */ +extern DECLSPEC int SDLCALL SDL_GetSurfaceAlphaMod(SDL_Surface * surface, + Uint8 * alpha); + +/** + * \brief Set the blend mode used for blit operations. + * + * \param surface The surface to update. + * \param blendMode ::SDL_BlendMode to use for blit blending. + * + * \return 0 on success, or -1 if the parameters are not valid. + * + * \sa SDL_GetSurfaceBlendMode() + */ +extern DECLSPEC int SDLCALL SDL_SetSurfaceBlendMode(SDL_Surface * surface, + SDL_BlendMode blendMode); + +/** + * \brief Get the blend mode used for blit operations. + * + * \param surface The surface to query. + * \param blendMode A pointer filled in with the current blend mode. + * + * \return 0 on success, or -1 if the surface is not valid. + * + * \sa SDL_SetSurfaceBlendMode() + */ +extern DECLSPEC int SDLCALL SDL_GetSurfaceBlendMode(SDL_Surface * surface, + SDL_BlendMode *blendMode); + +/** + * Sets the clipping rectangle for the destination surface in a blit. + * + * If the clip rectangle is NULL, clipping will be disabled. + * + * If the clip rectangle doesn't intersect the surface, the function will + * return SDL_FALSE and blits will be completely clipped. Otherwise the + * function returns SDL_TRUE and blits to the surface will be clipped to + * the intersection of the surface area and the clipping rectangle. + * + * Note that blits are automatically clipped to the edges of the source + * and destination surfaces. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_SetClipRect(SDL_Surface * surface, + const SDL_Rect * rect); + +/** + * Gets the clipping rectangle for the destination surface in a blit. + * + * \c rect must be a pointer to a valid rectangle which will be filled + * with the correct values. + */ +extern DECLSPEC void SDLCALL SDL_GetClipRect(SDL_Surface * surface, + SDL_Rect * rect); + +/** + * Creates a new surface of the specified format, and then copies and maps + * the given surface to it so the blit of the converted surface will be as + * fast as possible. If this function fails, it returns NULL. + * + * The \c flags parameter is passed to SDL_CreateRGBSurface() and has those + * semantics. You can also pass ::SDL_RLEACCEL in the flags parameter and + * SDL will try to RLE accelerate colorkey and alpha blits in the resulting + * surface. + */ +extern DECLSPEC SDL_Surface *SDLCALL SDL_ConvertSurface + (SDL_Surface * src, const SDL_PixelFormat * fmt, Uint32 flags); +extern DECLSPEC SDL_Surface *SDLCALL SDL_ConvertSurfaceFormat + (SDL_Surface * src, Uint32 pixel_format, Uint32 flags); + +/** + * \brief Copy a block of pixels of one format to another format + * + * \return 0 on success, or -1 if there was an error + */ +extern DECLSPEC int SDLCALL SDL_ConvertPixels(int width, int height, + Uint32 src_format, + const void * src, int src_pitch, + Uint32 dst_format, + void * dst, int dst_pitch); + +/** + * Performs a fast fill of the given rectangle with \c color. + * + * If \c rect is NULL, the whole surface will be filled with \c color. + * + * The color should be a pixel of the format used by the surface, and + * can be generated by the SDL_MapRGB() function. + * + * \return 0 on success, or -1 on error. + */ +extern DECLSPEC int SDLCALL SDL_FillRect + (SDL_Surface * dst, const SDL_Rect * rect, Uint32 color); +extern DECLSPEC int SDLCALL SDL_FillRects + (SDL_Surface * dst, const SDL_Rect * rects, int count, Uint32 color); + +/** + * Performs a fast blit from the source surface to the destination surface. + * + * This assumes that the source and destination rectangles are + * the same size. If either \c srcrect or \c dstrect are NULL, the entire + * surface (\c src or \c dst) is copied. The final blit rectangles are saved + * in \c srcrect and \c dstrect after all clipping is performed. + * + * \return If the blit is successful, it returns 0, otherwise it returns -1. + * + * The blit function should not be called on a locked surface. + * + * The blit semantics for surfaces with and without blending and colorkey + * are defined as follows: + * \verbatim + RGBA->RGB: + Source surface blend mode set to SDL_BLENDMODE_BLEND: + alpha-blend (using the source alpha-channel and per-surface alpha) + SDL_SRCCOLORKEY ignored. + Source surface blend mode set to SDL_BLENDMODE_NONE: + copy RGB. + if SDL_SRCCOLORKEY set, only copy the pixels matching the + RGB values of the source color key, ignoring alpha in the + comparison. + + RGB->RGBA: + Source surface blend mode set to SDL_BLENDMODE_BLEND: + alpha-blend (using the source per-surface alpha) + Source surface blend mode set to SDL_BLENDMODE_NONE: + copy RGB, set destination alpha to source per-surface alpha value. + both: + if SDL_SRCCOLORKEY set, only copy the pixels matching the + source color key. + + RGBA->RGBA: + Source surface blend mode set to SDL_BLENDMODE_BLEND: + alpha-blend (using the source alpha-channel and per-surface alpha) + SDL_SRCCOLORKEY ignored. + Source surface blend mode set to SDL_BLENDMODE_NONE: + copy all of RGBA to the destination. + if SDL_SRCCOLORKEY set, only copy the pixels matching the + RGB values of the source color key, ignoring alpha in the + comparison. + + RGB->RGB: + Source surface blend mode set to SDL_BLENDMODE_BLEND: + alpha-blend (using the source per-surface alpha) + Source surface blend mode set to SDL_BLENDMODE_NONE: + copy RGB. + both: + if SDL_SRCCOLORKEY set, only copy the pixels matching the + source color key. + \endverbatim + * + * You should call SDL_BlitSurface() unless you know exactly how SDL + * blitting works internally and how to use the other blit functions. + */ +#define SDL_BlitSurface SDL_UpperBlit + +/** + * This is the public blit function, SDL_BlitSurface(), and it performs + * rectangle validation and clipping before passing it to SDL_LowerBlit() + */ +extern DECLSPEC int SDLCALL SDL_UpperBlit + (SDL_Surface * src, const SDL_Rect * srcrect, + SDL_Surface * dst, SDL_Rect * dstrect); + +/** + * This is a semi-private blit function and it performs low-level surface + * blitting only. + */ +extern DECLSPEC int SDLCALL SDL_LowerBlit + (SDL_Surface * src, SDL_Rect * srcrect, + SDL_Surface * dst, SDL_Rect * dstrect); + +/** + * \brief Perform a fast, low quality, stretch blit between two surfaces of the + * same pixel format. + * + * \note This function uses a static buffer, and is not thread-safe. + */ +extern DECLSPEC int SDLCALL SDL_SoftStretch(SDL_Surface * src, + const SDL_Rect * srcrect, + SDL_Surface * dst, + const SDL_Rect * dstrect); + +#define SDL_BlitScaled SDL_UpperBlitScaled + +/** + * This is the public scaled blit function, SDL_BlitScaled(), and it performs + * rectangle validation and clipping before passing it to SDL_LowerBlitScaled() + */ +extern DECLSPEC int SDLCALL SDL_UpperBlitScaled + (SDL_Surface * src, const SDL_Rect * srcrect, + SDL_Surface * dst, SDL_Rect * dstrect); + +/** + * This is a semi-private blit function and it performs low-level surface + * scaled blitting only. + */ +extern DECLSPEC int SDLCALL SDL_LowerBlitScaled + (SDL_Surface * src, SDL_Rect * srcrect, + SDL_Surface * dst, SDL_Rect * dstrect); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_surface_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_system.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_system.h new file mode 100644 index 0000000..fd929f7 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_system.h @@ -0,0 +1,191 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_system.h + * + * Include file for platform specific SDL API functions + */ + +#ifndef _SDL_system_h +#define _SDL_system_h + +#include "SDL_stdinc.h" +#include "SDL_keyboard.h" +#include "SDL_render.h" +#include "SDL_video.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + + +/* Platform specific functions for Windows */ +#ifdef __WIN32__ + +/* Returns the D3D9 adapter index that matches the specified display index. + This adapter index can be passed to IDirect3D9::CreateDevice and controls + on which monitor a full screen application will appear. +*/ +extern DECLSPEC int SDLCALL SDL_Direct3D9GetAdapterIndex( int displayIndex ); + +/* Returns the D3D device associated with a renderer, or NULL if it's not a D3D renderer. + Once you are done using the device, you should release it to avoid a resource leak. + */ +typedef struct IDirect3DDevice9 IDirect3DDevice9; +extern DECLSPEC IDirect3DDevice9* SDLCALL SDL_RenderGetD3D9Device(SDL_Renderer * renderer); + +/* Returns the DXGI Adapter and Output indices for the specified display index. + These can be passed to EnumAdapters and EnumOutputs respectively to get the objects + required to create a DX10 or DX11 device and swap chain. + */ +extern DECLSPEC void SDLCALL SDL_DXGIGetOutputInfo( int displayIndex, int *adapterIndex, int *outputIndex ); + +#endif /* __WIN32__ */ + + +/* Platform specific functions for iOS */ +#if defined(__IPHONEOS__) && __IPHONEOS__ + +extern DECLSPEC int SDLCALL SDL_iPhoneSetAnimationCallback(SDL_Window * window, int interval, void (*callback)(void*), void *callbackParam); +extern DECLSPEC void SDLCALL SDL_iPhoneSetEventPump(SDL_bool enabled); + +#endif /* __IPHONEOS__ */ + + +/* Platform specific functions for Android */ +#if defined(__ANDROID__) && __ANDROID__ + +/* Get the JNI environment for the current thread + This returns JNIEnv*, but the prototype is void* so we don't need jni.h + */ +extern DECLSPEC void * SDLCALL SDL_AndroidGetJNIEnv(); + +/* Get the SDL Activity object for the application + This returns jobject, but the prototype is void* so we don't need jni.h + The jobject returned by SDL_AndroidGetActivity is a local reference. + It is the caller's responsibility to properly release it + (using env->Push/PopLocalFrame or manually with env->DeleteLocalRef) + */ +extern DECLSPEC void * SDLCALL SDL_AndroidGetActivity(); + +/* See the official Android developer guide for more information: + http://developer.android.com/guide/topics/data/data-storage.html +*/ +#define SDL_ANDROID_EXTERNAL_STORAGE_READ 0x01 +#define SDL_ANDROID_EXTERNAL_STORAGE_WRITE 0x02 + +/* Get the path used for internal storage for this application. + This path is unique to your application and cannot be written to + by other applications. + */ +extern DECLSPEC const char * SDLCALL SDL_AndroidGetInternalStoragePath(); + +/* Get the current state of external storage, a bitmask of these values: + SDL_ANDROID_EXTERNAL_STORAGE_READ + SDL_ANDROID_EXTERNAL_STORAGE_WRITE + If external storage is currently unavailable, this will return 0. +*/ +extern DECLSPEC int SDLCALL SDL_AndroidGetExternalStorageState(); + +/* Get the path used for external storage for this application. + This path is unique to your application, but is public and can be + written to by other applications. + */ +extern DECLSPEC const char * SDLCALL SDL_AndroidGetExternalStoragePath(); + +#endif /* __ANDROID__ */ + +/* Platform specific functions for WinRT */ +#if defined(__WINRT__) && __WINRT__ + +/** + * \brief WinRT / Windows Phone path types + */ +typedef enum +{ + /** \brief The installed app's root directory. + Files here are likely to be read-only. */ + SDL_WINRT_PATH_INSTALLED_LOCATION, + + /** \brief The app's local data store. Files may be written here */ + SDL_WINRT_PATH_LOCAL_FOLDER, + + /** \brief The app's roaming data store. Unsupported on Windows Phone. + Files written here may be copied to other machines via a network + connection. + */ + SDL_WINRT_PATH_ROAMING_FOLDER, + + /** \brief The app's temporary data store. Unsupported on Windows Phone. + Files written here may be deleted at any time. */ + SDL_WINRT_PATH_TEMP_FOLDER +} SDL_WinRT_Path; + + +/** + * \brief Retrieves a WinRT defined path on the local file system + * + * \note Documentation on most app-specific path types on WinRT + * can be found on MSDN, at the URL: + * http://msdn.microsoft.com/en-us/library/windows/apps/hh464917.aspx + * + * \param pathType The type of path to retrieve. + * \ret A UCS-2 string (16-bit, wide-char) containing the path, or NULL + * if the path is not available for any reason. Not all paths are + * available on all versions of Windows. This is especially true on + * Windows Phone. Check the documentation for the given + * SDL_WinRT_Path for more information on which path types are + * supported where. + */ +extern DECLSPEC const wchar_t * SDLCALL SDL_WinRTGetFSPathUNICODE(SDL_WinRT_Path pathType); + +/** + * \brief Retrieves a WinRT defined path on the local file system + * + * \note Documentation on most app-specific path types on WinRT + * can be found on MSDN, at the URL: + * http://msdn.microsoft.com/en-us/library/windows/apps/hh464917.aspx + * + * \param pathType The type of path to retrieve. + * \ret A UTF-8 string (8-bit, multi-byte) containing the path, or NULL + * if the path is not available for any reason. Not all paths are + * available on all versions of Windows. This is especially true on + * Windows Phone. Check the documentation for the given + * SDL_WinRT_Path for more information on which path types are + * supported where. + */ +extern DECLSPEC const char * SDLCALL SDL_WinRTGetFSPathUTF8(SDL_WinRT_Path pathType); + +#endif /* __WINRT__ */ + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_system_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_syswm.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_syswm.h new file mode 100644 index 0000000..a3fe738 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_syswm.h @@ -0,0 +1,272 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_syswm.h + * + * Include file for SDL custom system window manager hooks. + */ + +#ifndef _SDL_syswm_h +#define _SDL_syswm_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" +#include "SDL_video.h" +#include "SDL_version.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \file SDL_syswm.h + * + * Your application has access to a special type of event ::SDL_SYSWMEVENT, + * which contains window-manager specific information and arrives whenever + * an unhandled window event occurs. This event is ignored by default, but + * you can enable it with SDL_EventState(). + */ +#ifdef SDL_PROTOTYPES_ONLY +struct SDL_SysWMinfo; +#else + +#if defined(SDL_VIDEO_DRIVER_WINDOWS) +#define WIN32_LEAN_AND_MEAN +#include +#endif + +#if defined(SDL_VIDEO_DRIVER_WINRT) +#include +#endif + +/* This is the structure for custom window manager events */ +#if defined(SDL_VIDEO_DRIVER_X11) +#if defined(__APPLE__) && defined(__MACH__) +/* conflicts with Quickdraw.h */ +#define Cursor X11Cursor +#endif + +#include +#include + +#if defined(__APPLE__) && defined(__MACH__) +/* matches the re-define above */ +#undef Cursor +#endif + +#endif /* defined(SDL_VIDEO_DRIVER_X11) */ + +#if defined(SDL_VIDEO_DRIVER_DIRECTFB) +#include +#endif + +#if defined(SDL_VIDEO_DRIVER_COCOA) +#ifdef __OBJC__ +#include +#else +typedef struct _NSWindow NSWindow; +#endif +#endif + +#if defined(SDL_VIDEO_DRIVER_UIKIT) +#ifdef __OBJC__ +#include +#else +typedef struct _UIWindow UIWindow; +typedef struct _UIViewController UIViewController; +#endif +#endif + +#if defined(SDL_VIDEO_DRIVER_MIR) +#include +#endif + + +/** + * These are the various supported windowing subsystems + */ +typedef enum +{ + SDL_SYSWM_UNKNOWN, + SDL_SYSWM_WINDOWS, + SDL_SYSWM_X11, + SDL_SYSWM_DIRECTFB, + SDL_SYSWM_COCOA, + SDL_SYSWM_UIKIT, + SDL_SYSWM_WAYLAND, + SDL_SYSWM_MIR, + SDL_SYSWM_WINRT, +} SDL_SYSWM_TYPE; + +/** + * The custom event structure. + */ +struct SDL_SysWMmsg +{ + SDL_version version; + SDL_SYSWM_TYPE subsystem; + union + { +#if defined(SDL_VIDEO_DRIVER_WINDOWS) + struct { + HWND hwnd; /**< The window for the message */ + UINT msg; /**< The type of message */ + WPARAM wParam; /**< WORD message parameter */ + LPARAM lParam; /**< LONG message parameter */ + } win; +#endif +#if defined(SDL_VIDEO_DRIVER_X11) + struct { + XEvent event; + } x11; +#endif +#if defined(SDL_VIDEO_DRIVER_DIRECTFB) + struct { + DFBEvent event; + } dfb; +#endif +#if defined(SDL_VIDEO_DRIVER_COCOA) + struct + { + /* No Cocoa window events yet */ + } cocoa; +#endif +#if defined(SDL_VIDEO_DRIVER_UIKIT) + struct + { + /* No UIKit window events yet */ + } uikit; +#endif + /* Can't have an empty union */ + int dummy; + } msg; +}; + +/** + * The custom window manager information structure. + * + * When this structure is returned, it holds information about which + * low level system it is using, and will be one of SDL_SYSWM_TYPE. + */ +struct SDL_SysWMinfo +{ + SDL_version version; + SDL_SYSWM_TYPE subsystem; + union + { +#if defined(SDL_VIDEO_DRIVER_WINDOWS) + struct + { + HWND window; /**< The window handle */ + } win; +#endif +#if defined(SDL_VIDEO_DRIVER_WINRT) + struct + { + IInspectable * window; /**< The WinRT CoreWindow */ + } winrt; +#endif +#if defined(SDL_VIDEO_DRIVER_X11) + struct + { + Display *display; /**< The X11 display */ + Window window; /**< The X11 window */ + } x11; +#endif +#if defined(SDL_VIDEO_DRIVER_DIRECTFB) + struct + { + IDirectFB *dfb; /**< The directfb main interface */ + IDirectFBWindow *window; /**< The directfb window handle */ + IDirectFBSurface *surface; /**< The directfb client surface */ + } dfb; +#endif +#if defined(SDL_VIDEO_DRIVER_COCOA) + struct + { + NSWindow *window; /* The Cocoa window */ + } cocoa; +#endif +#if defined(SDL_VIDEO_DRIVER_UIKIT) + struct + { + UIWindow *window; /* The UIKit window */ + } uikit; +#endif +#if defined(SDL_VIDEO_DRIVER_WAYLAND) + struct + { + struct wl_display *display; /**< Wayland display */ + struct wl_surface *surface; /**< Wayland surface */ + struct wl_shell_surface *shell_surface; /**< Wayland shell_surface (window manager handle) */ + } wl; +#endif +#if defined(SDL_VIDEO_DRIVER_MIR) + struct + { + MirConnection *connection; /**< Mir display server connection */ + MirSurface *surface; /**< Mir surface */ + } mir; +#endif + + /* Can't have an empty union */ + int dummy; + } info; +}; + +#endif /* SDL_PROTOTYPES_ONLY */ + +typedef struct SDL_SysWMinfo SDL_SysWMinfo; + +/* Function prototypes */ +/** + * \brief This function allows access to driver-dependent window information. + * + * \param window The window about which information is being requested + * \param info This structure must be initialized with the SDL version, and is + * then filled in with information about the given window. + * + * \return SDL_TRUE if the function is implemented and the version member of + * the \c info struct is valid, SDL_FALSE otherwise. + * + * You typically use this function like this: + * \code + * SDL_SysWMinfo info; + * SDL_VERSION(&info.version); + * if ( SDL_GetWindowWMInfo(window, &info) ) { ... } + * \endcode + */ +extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowWMInfo(SDL_Window * window, + SDL_SysWMinfo * info); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_syswm_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test.h new file mode 100644 index 0000000..ae649a4 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test.h @@ -0,0 +1,68 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +#ifndef _SDL_test_h +#define _SDL_test_h + +#include "SDL.h" +#include "SDL_test_common.h" +#include "SDL_test_font.h" +#include "SDL_test_random.h" +#include "SDL_test_fuzzer.h" +#include "SDL_test_crc32.h" +#include "SDL_test_md5.h" +#include "SDL_test_log.h" +#include "SDL_test_assert.h" +#include "SDL_test_harness.h" +#include "SDL_test_images.h" +#include "SDL_test_compare.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Global definitions */ + +/* + * Note: Maximum size of SDLTest log message is less than SDLs limit + * to ensure we can fit additional information such as the timestamp. + */ +#define SDLTEST_MAX_LOGMESSAGE_LENGTH 3584 + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_assert.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_assert.h new file mode 100644 index 0000000..79c84d6 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_assert.h @@ -0,0 +1,105 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_assert.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +/* + * + * Assert API for test code and test cases + * + */ + +#ifndef _SDL_test_assert_h +#define _SDL_test_assert_h + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief Fails the assert. + */ +#define ASSERT_FAIL 0 + +/** + * \brief Passes the assert. + */ +#define ASSERT_PASS 1 + +/** + * \brief Assert that logs and break execution flow on failures. + * + * \param assertCondition Evaluated condition or variable to assert; fail (==0) or pass (!=0). + * \param assertDescription Message to log with the assert describing it. + */ +void SDLTest_Assert(int assertCondition, const char *assertDescription, ...); + +/** + * \brief Assert for test cases that logs but does not break execution flow on failures. Updates assertion counters. + * + * \param assertCondition Evaluated condition or variable to assert; fail (==0) or pass (!=0). + * \param assertDescription Message to log with the assert describing it. + * + * \returns Returns the assertCondition so it can be used to externally to break execution flow if desired. + */ +int SDLTest_AssertCheck(int assertCondition, const char *assertDescription, ...); + +/** + * \brief Explicitely pass without checking an assertion condition. Updates assertion counter. + * + * \param assertDescription Message to log with the assert describing it. + */ +void SDLTest_AssertPass(const char *assertDescription, ...); + +/** + * \brief Resets the assert summary counters to zero. + */ +void SDLTest_ResetAssertSummary(); + +/** + * \brief Logs summary of all assertions (total, pass, fail) since last reset as INFO or ERROR. + */ +void SDLTest_LogAssertSummary(); + + +/** + * \brief Converts the current assert summary state to a test result. + * + * \returns TEST_RESULT_PASSED, TEST_RESULT_FAILED, or TEST_RESULT_NO_ASSERT + */ +int SDLTest_AssertSummaryToTestResult(); + +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_assert_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_common.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_common.h new file mode 100644 index 0000000..45c9eda --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_common.h @@ -0,0 +1,188 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_common.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +/* Ported from original test\common.h file. */ + +#ifndef _SDL_test_common_h +#define _SDL_test_common_h + +#include "SDL.h" + +#if defined(__PSP__) +#define DEFAULT_WINDOW_WIDTH 480 +#define DEFAULT_WINDOW_HEIGHT 272 +#else +#define DEFAULT_WINDOW_WIDTH 640 +#define DEFAULT_WINDOW_HEIGHT 480 +#endif + +#define VERBOSE_VIDEO 0x00000001 +#define VERBOSE_MODES 0x00000002 +#define VERBOSE_RENDER 0x00000004 +#define VERBOSE_EVENT 0x00000008 +#define VERBOSE_AUDIO 0x00000010 + +typedef struct +{ + /* SDL init flags */ + char **argv; + Uint32 flags; + Uint32 verbose; + + /* Video info */ + const char *videodriver; + int display; + const char *window_title; + const char *window_icon; + Uint32 window_flags; + int window_x; + int window_y; + int window_w; + int window_h; + int window_minW; + int window_minH; + int window_maxW; + int window_maxH; + int logical_w; + int logical_h; + float scale; + int depth; + int refresh_rate; + int num_windows; + SDL_Window **windows; + + /* Renderer info */ + const char *renderdriver; + Uint32 render_flags; + SDL_bool skip_renderer; + SDL_Renderer **renderers; + SDL_Texture **targets; + + /* Audio info */ + const char *audiodriver; + SDL_AudioSpec audiospec; + + /* GL settings */ + int gl_red_size; + int gl_green_size; + int gl_blue_size; + int gl_alpha_size; + int gl_buffer_size; + int gl_depth_size; + int gl_stencil_size; + int gl_double_buffer; + int gl_accum_red_size; + int gl_accum_green_size; + int gl_accum_blue_size; + int gl_accum_alpha_size; + int gl_stereo; + int gl_multisamplebuffers; + int gl_multisamplesamples; + int gl_retained_backing; + int gl_accelerated; + int gl_major_version; + int gl_minor_version; + int gl_debug; + int gl_profile_mask; +} SDLTest_CommonState; + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Function prototypes */ + +/** + * \brief Parse command line parameters and create common state. + * + * \param argv Array of command line parameters + * \param flags Flags indicating which subsystem to initialize (i.e. SDL_INIT_VIDEO | SDL_INIT_AUDIO) + * + * \returns Returns a newly allocated common state object. + */ +SDLTest_CommonState *SDLTest_CommonCreateState(char **argv, Uint32 flags); + +/** + * \brief Process one common argument. + * + * \param state The common state describing the test window to create. + * \param index The index of the argument to process in argv[]. + * + * \returns The number of arguments processed (i.e. 1 for --fullscreen, 2 for --video [videodriver], or -1 on error. + */ +int SDLTest_CommonArg(SDLTest_CommonState * state, int index); + +/** + * \brief Returns common usage information + * + * \param state The common state describing the test window to create. + * + * \returns String with usage information + */ +const char *SDLTest_CommonUsage(SDLTest_CommonState * state); + +/** + * \brief Open test window. + * + * \param state The common state describing the test window to create. + * + * \returns True if initialization succeeded, false otherwise + */ +SDL_bool SDLTest_CommonInit(SDLTest_CommonState * state); + +/** + * \brief Common event handler for test windows. + * + * \param state The common state used to create test window. + * \param event The event to handle. + * \param done Flag indicating we are done. + * + */ +void SDLTest_CommonEvent(SDLTest_CommonState * state, SDL_Event * event, int *done); + +/** + * \brief Close test window. + * + * \param state The common state used to create test window. + * + */ +void SDLTest_CommonQuit(SDLTest_CommonState * state); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_common_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_compare.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_compare.h new file mode 100644 index 0000000..f1353a8 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_compare.h @@ -0,0 +1,69 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_compare.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +/* + + Defines comparison functions (i.e. for surfaces). + +*/ + +#ifndef _SDL_test_compare_h +#define _SDL_test_compare_h + +#include "SDL.h" + +#include "SDL_test_images.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief Compares a surface and with reference image data for equality + * + * \param surface Surface used in comparison + * \param referenceSurface Test Surface used in comparison + * \param allowable_error Allowable difference (squared) in blending accuracy. + * + * \returns 0 if comparison succeeded, >0 (=number of pixels where comparison failed) if comparison failed, -1 if any of the surfaces were NULL, -2 if the surface sizes differ. + */ +int SDLTest_CompareSurfaces(SDL_Surface *surface, SDL_Surface *referenceSurface, int allowable_error); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_compare_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_crc32.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_crc32.h new file mode 100644 index 0000000..a180fe3 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_crc32.h @@ -0,0 +1,124 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_crc32.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +/* + + Implements CRC32 calculations (default output is Perl String::CRC32 compatible). + +*/ + +#ifndef _SDL_test_crc32_h +#define _SDL_test_crc32_h + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + + +/* ------------ Definitions --------- */ + +/* Definition shared by all CRC routines */ + +#ifndef CrcUint32 + #define CrcUint32 unsigned int +#endif +#ifndef CrcUint8 + #define CrcUint8 unsigned char +#endif + +#ifdef ORIGINAL_METHOD + #define CRC32_POLY 0x04c11db7 /* AUTODIN II, Ethernet, & FDDI */ +#else + #define CRC32_POLY 0xEDB88320 /* Perl String::CRC32 compatible */ +#endif + +/** + * Data structure for CRC32 (checksum) computation + */ + typedef struct { + CrcUint32 crc32_table[256]; /* CRC table */ + } SDLTest_Crc32Context; + +/* ---------- Function Prototypes ------------- */ + +/** + * /brief Initialize the CRC context + * + * Note: The function initializes the crc table required for all crc calculations. + * + * /param crcContext pointer to context variable + * + * /returns 0 for OK, -1 on error + * + */ + int SDLTest_Crc32Init(SDLTest_Crc32Context * crcContext); + + +/** + * /brief calculate a crc32 from a data block + * + * /param crcContext pointer to context variable + * /param inBuf input buffer to checksum + * /param inLen length of input buffer + * /param crc32 pointer to Uint32 to store the final CRC into + * + * /returns 0 for OK, -1 on error + * + */ +int SDLTest_crc32Calc(SDLTest_Crc32Context * crcContext, CrcUint8 *inBuf, CrcUint32 inLen, CrcUint32 *crc32); + +/* Same routine broken down into three steps */ +int SDLTest_Crc32CalcStart(SDLTest_Crc32Context * crcContext, CrcUint32 *crc32); +int SDLTest_Crc32CalcEnd(SDLTest_Crc32Context * crcContext, CrcUint32 *crc32); +int SDLTest_Crc32CalcBuffer(SDLTest_Crc32Context * crcContext, CrcUint8 *inBuf, CrcUint32 inLen, CrcUint32 *crc32); + + +/** + * /brief clean up CRC context + * + * /param crcContext pointer to context variable + * + * /returns 0 for OK, -1 on error + * +*/ + +int SDLTest_Crc32Done(SDLTest_Crc32Context * crcContext); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_crc32_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_font.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_font.h new file mode 100644 index 0000000..8d51d4a --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_font.h @@ -0,0 +1,76 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_font.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +#ifndef _SDL_test_font_h +#define _SDL_test_font_h + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Function prototypes */ + +#define FONT_CHARACTER_SIZE 8 + +/** + * \brief Draw a string in the currently set font. + * + * \param renderer The renderer to draw on. + * \param x The X coordinate of the upper left corner of the character. + * \param y The Y coordinate of the upper left corner of the character. + * \param c The character to draw. + * + * \returns Returns 0 on success, -1 on failure. + */ +int SDLTest_DrawCharacter( SDL_Renderer *renderer, int x, int y, char c ); + +/** + * \brief Draw a string in the currently set font. + * + * \param renderer The renderer to draw on. + * \param x The X coordinate of the upper left corner of the string. + * \param y The Y coordinate of the upper left corner of the string. + * \param s The string to draw. + * + * \returns Returns 0 on success, -1 on failure. + */ +int SDLTest_DrawString( SDL_Renderer * renderer, int x, int y, const char *s ); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_font_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_fuzzer.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_fuzzer.h new file mode 100644 index 0000000..6401803 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_fuzzer.h @@ -0,0 +1,384 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_fuzzer.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +/* + + Data generators for fuzzing test data in a reproducible way. + +*/ + +#ifndef _SDL_test_fuzzer_h +#define _SDL_test_fuzzer_h + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + + +/* + Based on GSOC code by Markus Kauppila +*/ + + +/** + * \file + * Note: The fuzzer implementation uses a static instance of random context + * internally which makes it thread-UNsafe. + */ + +/** + * Initializes the fuzzer for a test + * + * /param execKey Execution "Key" that initializes the random number generator uniquely for the test. + * + */ +void SDLTest_FuzzerInit(Uint64 execKey); + + +/** + * Returns a random Uint8 + * + * \returns Generated integer + */ +Uint8 SDLTest_RandomUint8(); + +/** + * Returns a random Sint8 + * + * \returns Generated signed integer + */ +Sint8 SDLTest_RandomSint8(); + + +/** + * Returns a random Uint16 + * + * \returns Generated integer + */ +Uint16 SDLTest_RandomUint16(); + +/** + * Returns a random Sint16 + * + * \returns Generated signed integer + */ +Sint16 SDLTest_RandomSint16(); + + +/** + * Returns a random integer + * + * \returns Generated integer + */ +Sint32 SDLTest_RandomSint32(); + + +/** + * Returns a random positive integer + * + * \returns Generated integer + */ +Uint32 SDLTest_RandomUint32(); + +/** + * Returns random Uint64. + * + * \returns Generated integer + */ +Uint64 SDLTest_RandomUint64(); + + +/** + * Returns random Sint64. + * + * \returns Generated signed integer + */ +Sint64 SDLTest_RandomSint64(); + +/** + * \returns random float in range [0.0 - 1.0[ + */ +float SDLTest_RandomUnitFloat(); + +/** + * \returns random double in range [0.0 - 1.0[ + */ +double SDLTest_RandomUnitDouble(); + +/** + * \returns random float. + * + */ +float SDLTest_RandomFloat(); + +/** + * \returns random double. + * + */ +double SDLTest_RandomDouble(); + +/** + * Returns a random boundary value for Uint8 within the given boundaries. + * Boundaries are inclusive, see the usage examples below. If validDomain + * is true, the function will only return valid boundaries, otherwise non-valid + * boundaries are also possible. + * If boundary1 > boundary2, the values are swapped + * + * Usage examples: + * RandomUint8BoundaryValue(10, 20, SDL_TRUE) returns 10, 11, 19 or 20 + * RandomUint8BoundaryValue(1, 20, SDL_FALSE) returns 0 or 21 + * RandomUint8BoundaryValue(0, 99, SDL_FALSE) returns 100 + * RandomUint8BoundaryValue(0, 255, SDL_FALSE) returns 0 (error set) + * + * \param boundary1 Lower boundary limit + * \param boundary2 Upper boundary limit + * \param validDomain Should the generated boundary be valid (=within the bounds) or not? + * + * \returns Random boundary value for the given range and domain or 0 with error set + */ +Uint8 SDLTest_RandomUint8BoundaryValue(Uint8 boundary1, Uint8 boundary2, SDL_bool validDomain); + +/** + * Returns a random boundary value for Uint16 within the given boundaries. + * Boundaries are inclusive, see the usage examples below. If validDomain + * is true, the function will only return valid boundaries, otherwise non-valid + * boundaries are also possible. + * If boundary1 > boundary2, the values are swapped + * + * Usage examples: + * RandomUint16BoundaryValue(10, 20, SDL_TRUE) returns 10, 11, 19 or 20 + * RandomUint16BoundaryValue(1, 20, SDL_FALSE) returns 0 or 21 + * RandomUint16BoundaryValue(0, 99, SDL_FALSE) returns 100 + * RandomUint16BoundaryValue(0, 0xFFFF, SDL_FALSE) returns 0 (error set) + * + * \param boundary1 Lower boundary limit + * \param boundary2 Upper boundary limit + * \param validDomain Should the generated boundary be valid (=within the bounds) or not? + * + * \returns Random boundary value for the given range and domain or 0 with error set + */ +Uint16 SDLTest_RandomUint16BoundaryValue(Uint16 boundary1, Uint16 boundary2, SDL_bool validDomain); + +/** + * Returns a random boundary value for Uint32 within the given boundaries. + * Boundaries are inclusive, see the usage examples below. If validDomain + * is true, the function will only return valid boundaries, otherwise non-valid + * boundaries are also possible. + * If boundary1 > boundary2, the values are swapped + * + * Usage examples: + * RandomUint32BoundaryValue(10, 20, SDL_TRUE) returns 10, 11, 19 or 20 + * RandomUint32BoundaryValue(1, 20, SDL_FALSE) returns 0 or 21 + * RandomUint32BoundaryValue(0, 99, SDL_FALSE) returns 100 + * RandomUint32BoundaryValue(0, 0xFFFFFFFF, SDL_FALSE) returns 0 (with error set) + * + * \param boundary1 Lower boundary limit + * \param boundary2 Upper boundary limit + * \param validDomain Should the generated boundary be valid (=within the bounds) or not? + * + * \returns Random boundary value for the given range and domain or 0 with error set + */ +Uint32 SDLTest_RandomUint32BoundaryValue(Uint32 boundary1, Uint32 boundary2, SDL_bool validDomain); + +/** + * Returns a random boundary value for Uint64 within the given boundaries. + * Boundaries are inclusive, see the usage examples below. If validDomain + * is true, the function will only return valid boundaries, otherwise non-valid + * boundaries are also possible. + * If boundary1 > boundary2, the values are swapped + * + * Usage examples: + * RandomUint64BoundaryValue(10, 20, SDL_TRUE) returns 10, 11, 19 or 20 + * RandomUint64BoundaryValue(1, 20, SDL_FALSE) returns 0 or 21 + * RandomUint64BoundaryValue(0, 99, SDL_FALSE) returns 100 + * RandomUint64BoundaryValue(0, 0xFFFFFFFFFFFFFFFF, SDL_FALSE) returns 0 (with error set) + * + * \param boundary1 Lower boundary limit + * \param boundary2 Upper boundary limit + * \param validDomain Should the generated boundary be valid (=within the bounds) or not? + * + * \returns Random boundary value for the given range and domain or 0 with error set + */ +Uint64 SDLTest_RandomUint64BoundaryValue(Uint64 boundary1, Uint64 boundary2, SDL_bool validDomain); + +/** + * Returns a random boundary value for Sint8 within the given boundaries. + * Boundaries are inclusive, see the usage examples below. If validDomain + * is true, the function will only return valid boundaries, otherwise non-valid + * boundaries are also possible. + * If boundary1 > boundary2, the values are swapped + * + * Usage examples: + * RandomSint8BoundaryValue(-10, 20, SDL_TRUE) returns -11, -10, 19 or 20 + * RandomSint8BoundaryValue(-100, -10, SDL_FALSE) returns -101 or -9 + * RandomSint8BoundaryValue(SINT8_MIN, 99, SDL_FALSE) returns 100 + * RandomSint8BoundaryValue(SINT8_MIN, SINT8_MAX, SDL_FALSE) returns SINT8_MIN (== error value) with error set + * + * \param boundary1 Lower boundary limit + * \param boundary2 Upper boundary limit + * \param validDomain Should the generated boundary be valid (=within the bounds) or not? + * + * \returns Random boundary value for the given range and domain or SINT8_MIN with error set + */ +Sint8 SDLTest_RandomSint8BoundaryValue(Sint8 boundary1, Sint8 boundary2, SDL_bool validDomain); + + +/** + * Returns a random boundary value for Sint16 within the given boundaries. + * Boundaries are inclusive, see the usage examples below. If validDomain + * is true, the function will only return valid boundaries, otherwise non-valid + * boundaries are also possible. + * If boundary1 > boundary2, the values are swapped + * + * Usage examples: + * RandomSint16BoundaryValue(-10, 20, SDL_TRUE) returns -11, -10, 19 or 20 + * RandomSint16BoundaryValue(-100, -10, SDL_FALSE) returns -101 or -9 + * RandomSint16BoundaryValue(SINT16_MIN, 99, SDL_FALSE) returns 100 + * RandomSint16BoundaryValue(SINT16_MIN, SINT16_MAX, SDL_FALSE) returns SINT16_MIN (== error value) with error set + * + * \param boundary1 Lower boundary limit + * \param boundary2 Upper boundary limit + * \param validDomain Should the generated boundary be valid (=within the bounds) or not? + * + * \returns Random boundary value for the given range and domain or SINT16_MIN with error set + */ +Sint16 SDLTest_RandomSint16BoundaryValue(Sint16 boundary1, Sint16 boundary2, SDL_bool validDomain); + +/** + * Returns a random boundary value for Sint32 within the given boundaries. + * Boundaries are inclusive, see the usage examples below. If validDomain + * is true, the function will only return valid boundaries, otherwise non-valid + * boundaries are also possible. + * If boundary1 > boundary2, the values are swapped + * + * Usage examples: + * RandomSint32BoundaryValue(-10, 20, SDL_TRUE) returns -11, -10, 19 or 20 + * RandomSint32BoundaryValue(-100, -10, SDL_FALSE) returns -101 or -9 + * RandomSint32BoundaryValue(SINT32_MIN, 99, SDL_FALSE) returns 100 + * RandomSint32BoundaryValue(SINT32_MIN, SINT32_MAX, SDL_FALSE) returns SINT32_MIN (== error value) + * + * \param boundary1 Lower boundary limit + * \param boundary2 Upper boundary limit + * \param validDomain Should the generated boundary be valid (=within the bounds) or not? + * + * \returns Random boundary value for the given range and domain or SINT32_MIN with error set + */ +Sint32 SDLTest_RandomSint32BoundaryValue(Sint32 boundary1, Sint32 boundary2, SDL_bool validDomain); + +/** + * Returns a random boundary value for Sint64 within the given boundaries. + * Boundaries are inclusive, see the usage examples below. If validDomain + * is true, the function will only return valid boundaries, otherwise non-valid + * boundaries are also possible. + * If boundary1 > boundary2, the values are swapped + * + * Usage examples: + * RandomSint64BoundaryValue(-10, 20, SDL_TRUE) returns -11, -10, 19 or 20 + * RandomSint64BoundaryValue(-100, -10, SDL_FALSE) returns -101 or -9 + * RandomSint64BoundaryValue(SINT64_MIN, 99, SDL_FALSE) returns 100 + * RandomSint64BoundaryValue(SINT64_MIN, SINT64_MAX, SDL_FALSE) returns SINT64_MIN (== error value) and error set + * + * \param boundary1 Lower boundary limit + * \param boundary2 Upper boundary limit + * \param validDomain Should the generated boundary be valid (=within the bounds) or not? + * + * \returns Random boundary value for the given range and domain or SINT64_MIN with error set + */ +Sint64 SDLTest_RandomSint64BoundaryValue(Sint64 boundary1, Sint64 boundary2, SDL_bool validDomain); + + +/** + * Returns integer in range [min, max] (inclusive). + * Min and max values can be negative values. + * If Max in smaller tham min, then the values are swapped. + * Min and max are the same value, that value will be returned. + * + * \param min Minimum inclusive value of returned random number + * \param max Maximum inclusive value of returned random number + * + * \returns Generated random integer in range + */ +Sint32 SDLTest_RandomIntegerInRange(Sint32 min, Sint32 max); + + +/** + * Generates random null-terminated string. The minimum length for + * the string is 1 character, maximum length for the string is 255 + * characters and it can contain ASCII characters from 32 to 126. + * + * Note: Returned string needs to be deallocated. + * + * \returns Newly allocated random string; or NULL if length was invalid or string could not be allocated. + */ +char * SDLTest_RandomAsciiString(); + + +/** + * Generates random null-terminated string. The maximum length for + * the string is defined by the maxLength parameter. + * String can contain ASCII characters from 32 to 126. + * + * Note: Returned string needs to be deallocated. + * + * \param maxLength The maximum length of the generated string. + * + * \returns Newly allocated random string; or NULL if maxLength was invalid or string could not be allocated. + */ +char * SDLTest_RandomAsciiStringWithMaximumLength(int maxLength); + + +/** + * Generates random null-terminated string. The length for + * the string is defined by the size parameter. + * String can contain ASCII characters from 32 to 126. + * + * Note: Returned string needs to be deallocated. + * + * \param size The length of the generated string + * + * \returns Newly allocated random string; or NULL if size was invalid or string could not be allocated. + */ +char * SDLTest_RandomAsciiStringOfSize(int size); + +/** + * Returns the invocation count for the fuzzer since last ...FuzzerInit. + */ +int SDLTest_GetFuzzerInvocationCount(); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_fuzzer_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_harness.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_harness.h new file mode 100644 index 0000000..2c1e2ad --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_harness.h @@ -0,0 +1,123 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_harness.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +/* + Defines types for test case definitions and the test execution harness API. + + Based on original GSOC code by Markus Kauppila +*/ + +#ifndef _SDL_test_harness_h +#define _SDL_test_harness_h + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + + +/* ! Definitions for test case structures */ +#define TEST_ENABLED 1 +#define TEST_DISABLED 0 + +/* ! Definition of all the possible test return values of the test case method */ +#define TEST_ABORTED -1 +#define TEST_STARTED 0 +#define TEST_COMPLETED 1 +#define TEST_SKIPPED 2 + +/* ! Definition of all the possible test results for the harness */ +#define TEST_RESULT_PASSED 0 +#define TEST_RESULT_FAILED 1 +#define TEST_RESULT_NO_ASSERT 2 +#define TEST_RESULT_SKIPPED 3 +#define TEST_RESULT_SETUP_FAILURE 4 + +/* !< Function pointer to a test case setup function (run before every test) */ +typedef void (*SDLTest_TestCaseSetUpFp)(void *arg); + +/* !< Function pointer to a test case function */ +typedef int (*SDLTest_TestCaseFp)(void *arg); + +/* !< Function pointer to a test case teardown function (run after every test) */ +typedef void (*SDLTest_TestCaseTearDownFp)(void *arg); + +/** + * Holds information about a single test case. + */ +typedef struct SDLTest_TestCaseReference { + /* !< Func2Stress */ + SDLTest_TestCaseFp testCase; + /* !< Short name (or function name) "Func2Stress" */ + char *name; + /* !< Long name or full description "This test pushes func2() to the limit." */ + char *description; + /* !< Set to TEST_ENABLED or TEST_DISABLED (test won't be run) */ + int enabled; +} SDLTest_TestCaseReference; + +/** + * Holds information about a test suite (multiple test cases). + */ +typedef struct SDLTest_TestSuiteReference { + /* !< "PlatformSuite" */ + char *name; + /* !< The function that is run before each test. NULL skips. */ + SDLTest_TestCaseSetUpFp testSetUp; + /* !< The test cases that are run as part of the suite. Last item should be NULL. */ + const SDLTest_TestCaseReference **testCases; + /* !< The function that is run after each test. NULL skips. */ + SDLTest_TestCaseTearDownFp testTearDown; +} SDLTest_TestSuiteReference; + + +/** + * \brief Execute a test suite using the given run seed and execution key. + * + * \param testSuites Suites containing the test case. + * \param userRunSeed Custom run seed provided by user, or NULL to autogenerate one. + * \param userExecKey Custom execution key provided by user, or 0 to autogenerate one. + * \param filter Filter specification. NULL disables. Case sensitive. + * \param testIterations Number of iterations to run each test case. + * + * \returns Test run result; 0 when all tests passed, 1 if any tests failed. + */ +int SDLTest_RunSuites(SDLTest_TestSuiteReference *testSuites[], const char *userRunSeed, Uint64 userExecKey, const char *filter, int testIterations); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_harness_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_images.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_images.h new file mode 100644 index 0000000..0562799 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_images.h @@ -0,0 +1,78 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_images.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +/* + + Defines some images for tests. + +*/ + +#ifndef _SDL_test_images_h +#define _SDL_test_images_h + +#include "SDL.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + *Type for test images. + */ +typedef struct SDLTest_SurfaceImage_s { + int width; + int height; + unsigned int bytes_per_pixel; /* 3:RGB, 4:RGBA */ + const char *pixel_data; +} SDLTest_SurfaceImage_t; + +/* Test images */ +SDL_Surface *SDLTest_ImageBlit(); +SDL_Surface *SDLTest_ImageBlitColor(); +SDL_Surface *SDLTest_ImageBlitAlpha(); +SDL_Surface *SDLTest_ImageBlitBlendAdd(); +SDL_Surface *SDLTest_ImageBlitBlend(); +SDL_Surface *SDLTest_ImageBlitBlendMod(); +SDL_Surface *SDLTest_ImageBlitBlendNone(); +SDL_Surface *SDLTest_ImageBlitBlendAll(); +SDL_Surface *SDLTest_ImageFace(); +SDL_Surface *SDLTest_ImagePrimitives(); +SDL_Surface *SDLTest_ImagePrimitivesBlend(); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_images_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_log.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_log.h new file mode 100644 index 0000000..76ce105 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_log.h @@ -0,0 +1,67 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_log.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +/* + * + * Wrapper to log in the TEST category + * + */ + +#ifndef _SDL_test_log_h +#define _SDL_test_log_h + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief Prints given message with a timestamp in the TEST category and INFO priority. + * + * \param fmt Message to be logged + */ +void SDLTest_Log(const char *fmt, ...); + +/** + * \brief Prints given message with a timestamp in the TEST category and the ERROR priority. + * + * \param fmt Message to be logged + */ +void SDLTest_LogError(const char *fmt, ...); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_log_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_md5.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_md5.h new file mode 100644 index 0000000..029e164 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_md5.h @@ -0,0 +1,129 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_md5.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +/* + *********************************************************************** + ** Header file for implementation of MD5 ** + ** RSA Data Security, Inc. MD5 Message-Digest Algorithm ** + ** Created: 2/17/90 RLR ** + ** Revised: 12/27/90 SRD,AJ,BSK,JT Reference C version ** + ** Revised (for MD5): RLR 4/27/91 ** + ** -- G modified to have y&~z instead of y&z ** + ** -- FF, GG, HH modified to add in last register done ** + ** -- Access pattern: round 2 works mod 5, round 3 works mod 3 ** + ** -- distinct additive constant for each step ** + ** -- round 4 added, working mod 7 ** + *********************************************************************** +*/ + +/* + *********************************************************************** + ** Message-digest routines: ** + ** To form the message digest for a message M ** + ** (1) Initialize a context buffer mdContext using MD5Init ** + ** (2) Call MD5Update on mdContext and M ** + ** (3) Call MD5Final on mdContext ** + ** The message digest is now in mdContext->digest[0...15] ** + *********************************************************************** +*/ + +#ifndef _SDL_test_md5_h +#define _SDL_test_md5_h + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* ------------ Definitions --------- */ + +/* typedef a 32-bit type */ + typedef unsigned long int MD5UINT4; + +/* Data structure for MD5 (Message-Digest) computation */ + typedef struct { + MD5UINT4 i[2]; /* number of _bits_ handled mod 2^64 */ + MD5UINT4 buf[4]; /* scratch buffer */ + unsigned char in[64]; /* input buffer */ + unsigned char digest[16]; /* actual digest after Md5Final call */ + } SDLTest_Md5Context; + +/* ---------- Function Prototypes ------------- */ + +/** + * /brief initialize the context + * + * /param mdContext pointer to context variable + * + * Note: The function initializes the message-digest context + * mdContext. Call before each new use of the context - + * all fields are set to zero. + */ + void SDLTest_Md5Init(SDLTest_Md5Context * mdContext); + + +/** + * /brief update digest from variable length data + * + * /param mdContext pointer to context variable + * /param inBuf pointer to data array/string + * /param inLen length of data array/string + * + * Note: The function updates the message-digest context to account + * for the presence of each of the characters inBuf[0..inLen-1] + * in the message whose digest is being computed. +*/ + + void SDLTest_Md5Update(SDLTest_Md5Context * mdContext, unsigned char *inBuf, + unsigned int inLen); + + +/* + * /brief complete digest computation + * + * /param mdContext pointer to context variable + * + * Note: The function terminates the message-digest computation and + * ends with the desired message digest in mdContext.digest[0..15]. + * Always call before using the digest[] variable. +*/ + + void SDLTest_Md5Final(SDLTest_Md5Context * mdContext); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_md5_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_random.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_random.h new file mode 100644 index 0000000..6c5660d --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_test_random.h @@ -0,0 +1,115 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_test_random.h + * + * Include file for SDL test framework. + * + * This code is a part of the SDL2_test library, not the main SDL library. + */ + +/* + + A "32-bit Multiply with carry random number generator. Very fast. + Includes a list of recommended multipliers. + + multiply-with-carry generator: x(n) = a*x(n-1) + carry mod 2^32. + period: (a*2^31)-1 + +*/ + +#ifndef _SDL_test_random_h +#define _SDL_test_random_h + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* --- Definitions */ + +/* + * Macros that return a random number in a specific format. + */ +#define SDLTest_RandomInt(c) ((int)SDLTest_Random(c)) + +/* + * Context structure for the random number generator state. + */ + typedef struct { + unsigned int a; + unsigned int x; + unsigned int c; + unsigned int ah; + unsigned int al; + } SDLTest_RandomContext; + + +/* --- Function prototypes */ + +/** + * \brief Initialize random number generator with two integers. + * + * Note: The random sequence of numbers returned by ...Random() is the + * same for the same two integers and has a period of 2^31. + * + * \param rndContext pointer to context structure + * \param xi integer that defines the random sequence + * \param ci integer that defines the random sequence + * + */ + void SDLTest_RandomInit(SDLTest_RandomContext * rndContext, unsigned int xi, + unsigned int ci); + +/** + * \brief Initialize random number generator based on current system time. + * + * \param rndContext pointer to context structure + * + */ + void SDLTest_RandomInitTime(SDLTest_RandomContext *rndContext); + + +/** + * \brief Initialize random number generator based on current system time. + * + * Note: ...RandomInit() or ...RandomInitTime() must have been called + * before using this function. + * + * \param rndContext pointer to context structure + * + * \returns A random number (32bit unsigned integer) + * + */ + unsigned int SDLTest_Random(SDLTest_RandomContext *rndContext); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_test_random_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_thread.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_thread.h new file mode 100644 index 0000000..4e48cc3 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_thread.h @@ -0,0 +1,287 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef _SDL_thread_h +#define _SDL_thread_h + +/** + * \file SDL_thread.h + * + * Header for the SDL thread management routines. + */ + +#include "SDL_stdinc.h" +#include "SDL_error.h" + +/* Thread synchronization primitives */ +#include "SDL_atomic.h" +#include "SDL_mutex.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* The SDL thread structure, defined in SDL_thread.c */ +struct SDL_Thread; +typedef struct SDL_Thread SDL_Thread; + +/* The SDL thread ID */ +typedef unsigned long SDL_threadID; + +/* Thread local storage ID, 0 is the invalid ID */ +typedef unsigned int SDL_TLSID; + +/** + * The SDL thread priority. + * + * \note On many systems you require special privileges to set high priority. + */ +typedef enum { + SDL_THREAD_PRIORITY_LOW, + SDL_THREAD_PRIORITY_NORMAL, + SDL_THREAD_PRIORITY_HIGH +} SDL_ThreadPriority; + +/** + * The function passed to SDL_CreateThread(). + * It is passed a void* user context parameter and returns an int. + */ +typedef int (SDLCALL * SDL_ThreadFunction) (void *data); + +#if defined(__WIN32__) && !defined(HAVE_LIBC) +/** + * \file SDL_thread.h + * + * We compile SDL into a DLL. This means, that it's the DLL which + * creates a new thread for the calling process with the SDL_CreateThread() + * API. There is a problem with this, that only the RTL of the SDL.DLL will + * be initialized for those threads, and not the RTL of the calling + * application! + * + * To solve this, we make a little hack here. + * + * We'll always use the caller's _beginthread() and _endthread() APIs to + * start a new thread. This way, if it's the SDL.DLL which uses this API, + * then the RTL of SDL.DLL will be used to create the new thread, and if it's + * the application, then the RTL of the application will be used. + * + * So, in short: + * Always use the _beginthread() and _endthread() of the calling runtime + * library! + */ +#define SDL_PASSED_BEGINTHREAD_ENDTHREAD +#include /* This has _beginthread() and _endthread() defined! */ + +typedef uintptr_t(__cdecl * pfnSDL_CurrentBeginThread) (void *, unsigned, + unsigned (__stdcall * + func) (void + *), + void *arg, unsigned, + unsigned *threadID); +typedef void (__cdecl * pfnSDL_CurrentEndThread) (unsigned code); + +/** + * Create a thread. + */ +extern DECLSPEC SDL_Thread *SDLCALL +SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data, + pfnSDL_CurrentBeginThread pfnBeginThread, + pfnSDL_CurrentEndThread pfnEndThread); + +/** + * Create a thread. + */ +#if defined(SDL_CreateThread) && SDL_DYNAMIC_API +#undef SDL_CreateThread +#define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) +#else +#define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) +#endif + +#else + +/** + * Create a thread. + * + * Thread naming is a little complicated: Most systems have very small + * limits for the string length (Haiku has 32 bytes, Linux currently has 16, + * Visual C++ 6.0 has nine!), and possibly other arbitrary rules. You'll + * have to see what happens with your system's debugger. The name should be + * UTF-8 (but using the naming limits of C identifiers is a better bet). + * There are no requirements for thread naming conventions, so long as the + * string is null-terminated UTF-8, but these guidelines are helpful in + * choosing a name: + * + * http://stackoverflow.com/questions/149932/naming-conventions-for-threads + * + * If a system imposes requirements, SDL will try to munge the string for + * it (truncate, etc), but the original string contents will be available + * from SDL_GetThreadName(). + */ +extern DECLSPEC SDL_Thread *SDLCALL +SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data); + +#endif + +/** + * Get the thread name, as it was specified in SDL_CreateThread(). + * This function returns a pointer to a UTF-8 string that names the + * specified thread, or NULL if it doesn't have a name. This is internal + * memory, not to be free()'d by the caller, and remains valid until the + * specified thread is cleaned up by SDL_WaitThread(). + */ +extern DECLSPEC const char *SDLCALL SDL_GetThreadName(SDL_Thread *thread); + +/** + * Get the thread identifier for the current thread. + */ +extern DECLSPEC SDL_threadID SDLCALL SDL_ThreadID(void); + +/** + * Get the thread identifier for the specified thread. + * + * Equivalent to SDL_ThreadID() if the specified thread is NULL. + */ +extern DECLSPEC SDL_threadID SDLCALL SDL_GetThreadID(SDL_Thread * thread); + +/** + * Set the priority for the current thread + */ +extern DECLSPEC int SDLCALL SDL_SetThreadPriority(SDL_ThreadPriority priority); + +/** + * Wait for a thread to finish. Threads that haven't been detached will + * remain (as a "zombie") until this function cleans them up. Not doing so + * is a resource leak. + * + * Once a thread has been cleaned up through this function, the SDL_Thread + * that references it becomes invalid and should not be referenced again. + * As such, only one thread may call SDL_WaitThread() on another. + * + * The return code for the thread function is placed in the area + * pointed to by \c status, if \c status is not NULL. + * + * You may not wait on a thread that has been used in a call to + * SDL_DetachThread(). Use either that function or this one, but not + * both, or behavior is undefined. + * + * It is safe to pass NULL to this function; it is a no-op. + */ +extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread * thread, int *status); + +/** + * A thread may be "detached" to signify that it should not remain until + * another thread has called SDL_WaitThread() on it. Detaching a thread + * is useful for long-running threads that nothing needs to synchronize + * with or further manage. When a detached thread is done, it simply + * goes away. + * + * There is no way to recover the return code of a detached thread. If you + * need this, don't detach the thread and instead use SDL_WaitThread(). + * + * Once a thread is detached, you should usually assume the SDL_Thread isn't + * safe to reference again, as it will become invalid immediately upon + * the detached thread's exit, instead of remaining until someone has called + * SDL_WaitThread() to finally clean it up. As such, don't detach the same + * thread more than once. + * + * If a thread has already exited when passed to SDL_DetachThread(), it will + * stop waiting for a call to SDL_WaitThread() and clean up immediately. + * It is not safe to detach a thread that might be used with SDL_WaitThread(). + * + * You may not call SDL_WaitThread() on a thread that has been detached. + * Use either that function or this one, but not both, or behavior is + * undefined. + * + * It is safe to pass NULL to this function; it is a no-op. + */ +extern DECLSPEC void SDLCALL SDL_DetachThread(SDL_Thread * thread); + +/** + * \brief Create an identifier that is globally visible to all threads but refers to data that is thread-specific. + * + * \return The newly created thread local storage identifier, or 0 on error + * + * \code + * static SDL_SpinLock tls_lock; + * static SDL_TLSID thread_local_storage; + * + * void SetMyThreadData(void *value) + * { + * if (!thread_local_storage) { + * SDL_AtomicLock(&tls_lock); + * if (!thread_local_storage) { + * thread_local_storage = SDL_TLSCreate(); + * } + * SDL_AtomicUnLock(&tls_lock); + * } + * SDL_TLSSet(thread_local_storage, value); + * } + * + * void *GetMyThreadData(void) + * { + * return SDL_TLSGet(thread_local_storage); + * } + * \endcode + * + * \sa SDL_TLSGet() + * \sa SDL_TLSSet() + */ +extern DECLSPEC SDL_TLSID SDLCALL SDL_TLSCreate(void); + +/** + * \brief Get the value associated with a thread local storage ID for the current thread. + * + * \param id The thread local storage ID + * + * \return The value associated with the ID for the current thread, or NULL if no value has been set. + * + * \sa SDL_TLSCreate() + * \sa SDL_TLSSet() + */ +extern DECLSPEC void * SDLCALL SDL_TLSGet(SDL_TLSID id); + +/** + * \brief Set the value associated with a thread local storage ID for the current thread. + * + * \param id The thread local storage ID + * \param value The value to associate with the ID for the current thread + * \param destructor A function called when the thread exits, to free the value. + * + * \return 0 on success, -1 on error + * + * \sa SDL_TLSCreate() + * \sa SDL_TLSGet() + */ +extern DECLSPEC int SDLCALL SDL_TLSSet(SDL_TLSID id, const void *value, void (*destructor)(void*)); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_thread_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_timer.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_timer.h new file mode 100644 index 0000000..a48e046 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_timer.h @@ -0,0 +1,115 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef _SDL_timer_h +#define _SDL_timer_h + +/** + * \file SDL_timer.h + * + * Header for the SDL time management routines. + */ + +#include "SDL_stdinc.h" +#include "SDL_error.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief Get the number of milliseconds since the SDL library initialization. + * + * \note This value wraps if the program runs for more than ~49 days. + */ +extern DECLSPEC Uint32 SDLCALL SDL_GetTicks(void); + +/** + * \brief Compare SDL ticks values, and return true if A has passed B + * + * e.g. if you want to wait 100 ms, you could do this: + * Uint32 timeout = SDL_GetTicks() + 100; + * while (!SDL_TICKS_PASSED(SDL_GetTicks(), timeout)) { + * ... do work until timeout has elapsed + * } + */ +#define SDL_TICKS_PASSED(A, B) ((Sint32)((B) - (A)) <= 0) + +/** + * \brief Get the current value of the high resolution counter + */ +extern DECLSPEC Uint64 SDLCALL SDL_GetPerformanceCounter(void); + +/** + * \brief Get the count per second of the high resolution counter + */ +extern DECLSPEC Uint64 SDLCALL SDL_GetPerformanceFrequency(void); + +/** + * \brief Wait a specified number of milliseconds before returning. + */ +extern DECLSPEC void SDLCALL SDL_Delay(Uint32 ms); + +/** + * Function prototype for the timer callback function. + * + * The callback function is passed the current timer interval and returns + * the next timer interval. If the returned value is the same as the one + * passed in, the periodic alarm continues, otherwise a new alarm is + * scheduled. If the callback returns 0, the periodic alarm is cancelled. + */ +typedef Uint32 (SDLCALL * SDL_TimerCallback) (Uint32 interval, void *param); + +/** + * Definition of the timer ID type. + */ +typedef int SDL_TimerID; + +/** + * \brief Add a new timer to the pool of timers already running. + * + * \return A timer ID, or NULL when an error occurs. + */ +extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, + SDL_TimerCallback callback, + void *param); + +/** + * \brief Remove a timer knowing its ID. + * + * \return A boolean value indicating success or failure. + * + * \warning It is not safe to remove a timer multiple times. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_RemoveTimer(SDL_TimerID id); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_timer_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_touch.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_touch.h new file mode 100644 index 0000000..017deb2 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_touch.h @@ -0,0 +1,86 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_touch.h + * + * Include file for SDL touch event handling. + */ + +#ifndef _SDL_touch_h +#define _SDL_touch_h + +#include "SDL_stdinc.h" +#include "SDL_error.h" +#include "SDL_video.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +typedef Sint64 SDL_TouchID; +typedef Sint64 SDL_FingerID; + +typedef struct SDL_Finger +{ + SDL_FingerID id; + float x; + float y; + float pressure; +} SDL_Finger; + +/* Used as the device ID for mouse events simulated with touch input */ +#define SDL_TOUCH_MOUSEID ((Uint32)-1) + + +/* Function prototypes */ + +/** + * \brief Get the number of registered touch devices. + */ +extern DECLSPEC int SDLCALL SDL_GetNumTouchDevices(void); + +/** + * \brief Get the touch ID with the given index, or 0 if the index is invalid. + */ +extern DECLSPEC SDL_TouchID SDLCALL SDL_GetTouchDevice(int index); + +/** + * \brief Get the number of active fingers for a given touch device. + */ +extern DECLSPEC int SDLCALL SDL_GetNumTouchFingers(SDL_TouchID touchID); + +/** + * \brief Get the finger object of the given touch, with the given index. + */ +extern DECLSPEC SDL_Finger * SDLCALL SDL_GetTouchFinger(SDL_TouchID touchID, int index); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_touch_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_types.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_types.h new file mode 100644 index 0000000..cd3ba33 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_types.h @@ -0,0 +1,29 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_types.h + * + * \deprecated + */ + +/* DEPRECATED */ +#include "SDL_stdinc.h" diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_version.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_version.h new file mode 100644 index 0000000..d02898b --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_version.h @@ -0,0 +1,162 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_version.h + * + * This header defines the current SDL version. + */ + +#ifndef _SDL_version_h +#define _SDL_version_h + +#include "SDL_stdinc.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief Information the version of SDL in use. + * + * Represents the library's version as three levels: major revision + * (increments with massive changes, additions, and enhancements), + * minor revision (increments with backwards-compatible changes to the + * major revision), and patchlevel (increments with fixes to the minor + * revision). + * + * \sa SDL_VERSION + * \sa SDL_GetVersion + */ +typedef struct SDL_version +{ + Uint8 major; /**< major version */ + Uint8 minor; /**< minor version */ + Uint8 patch; /**< update version */ +} SDL_version; + +/* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL +*/ +#define SDL_MAJOR_VERSION 2 +#define SDL_MINOR_VERSION 0 +#define SDL_PATCHLEVEL 3 + +/** + * \brief Macro to determine SDL version program was compiled against. + * + * This macro fills in a SDL_version structure with the version of the + * library you compiled against. This is determined by what header the + * compiler uses. Note that if you dynamically linked the library, you might + * have a slightly newer or older version at runtime. That version can be + * determined with SDL_GetVersion(), which, unlike SDL_VERSION(), + * is not a macro. + * + * \param x A pointer to a SDL_version struct to initialize. + * + * \sa SDL_version + * \sa SDL_GetVersion + */ +#define SDL_VERSION(x) \ +{ \ + (x)->major = SDL_MAJOR_VERSION; \ + (x)->minor = SDL_MINOR_VERSION; \ + (x)->patch = SDL_PATCHLEVEL; \ +} + +/** + * This macro turns the version numbers into a numeric value: + * \verbatim + (1,2,3) -> (1203) + \endverbatim + * + * This assumes that there will never be more than 100 patchlevels. + */ +#define SDL_VERSIONNUM(X, Y, Z) \ + ((X)*1000 + (Y)*100 + (Z)) + +/** + * This is the version number macro for the current SDL version. + */ +#define SDL_COMPILEDVERSION \ + SDL_VERSIONNUM(SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_PATCHLEVEL) + +/** + * This macro will evaluate to true if compiled with SDL at least X.Y.Z. + */ +#define SDL_VERSION_ATLEAST(X, Y, Z) \ + (SDL_COMPILEDVERSION >= SDL_VERSIONNUM(X, Y, Z)) + +/** + * \brief Get the version of SDL that is linked against your program. + * + * If you are linking to SDL dynamically, then it is possible that the + * current version will be different than the version you compiled against. + * This function returns the current version, while SDL_VERSION() is a + * macro that tells you what version you compiled with. + * + * \code + * SDL_version compiled; + * SDL_version linked; + * + * SDL_VERSION(&compiled); + * SDL_GetVersion(&linked); + * printf("We compiled against SDL version %d.%d.%d ...\n", + * compiled.major, compiled.minor, compiled.patch); + * printf("But we linked against SDL version %d.%d.%d.\n", + * linked.major, linked.minor, linked.patch); + * \endcode + * + * This function may be called safely at any time, even before SDL_Init(). + * + * \sa SDL_VERSION + */ +extern DECLSPEC void SDLCALL SDL_GetVersion(SDL_version * ver); + +/** + * \brief Get the code revision of SDL that is linked against your program. + * + * Returns an arbitrary string (a hash value) uniquely identifying the + * exact revision of the SDL library in use, and is only useful in comparing + * against other revisions. It is NOT an incrementing number. + */ +extern DECLSPEC const char *SDLCALL SDL_GetRevision(void); + +/** + * \brief Get the revision number of SDL that is linked against your program. + * + * Returns a number uniquely identifying the exact revision of the SDL + * library in use. It is an incrementing number based on commits to + * hg.libsdl.org. + */ +extern DECLSPEC int SDLCALL SDL_GetRevisionNumber(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_version_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_video.h b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_video.h new file mode 100644 index 0000000..49ea37a --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/SDL_video.h @@ -0,0 +1,979 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file SDL_video.h + * + * Header file for SDL video functions. + */ + +#ifndef _SDL_video_h +#define _SDL_video_h + +#include "SDL_stdinc.h" +#include "SDL_pixels.h" +#include "SDL_rect.h" +#include "SDL_surface.h" + +#include "begin_code.h" +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief The structure that defines a display mode + * + * \sa SDL_GetNumDisplayModes() + * \sa SDL_GetDisplayMode() + * \sa SDL_GetDesktopDisplayMode() + * \sa SDL_GetCurrentDisplayMode() + * \sa SDL_GetClosestDisplayMode() + * \sa SDL_SetWindowDisplayMode() + * \sa SDL_GetWindowDisplayMode() + */ +typedef struct +{ + Uint32 format; /**< pixel format */ + int w; /**< width */ + int h; /**< height */ + int refresh_rate; /**< refresh rate (or zero for unspecified) */ + void *driverdata; /**< driver-specific data, initialize to 0 */ +} SDL_DisplayMode; + +/** + * \brief The type used to identify a window + * + * \sa SDL_CreateWindow() + * \sa SDL_CreateWindowFrom() + * \sa SDL_DestroyWindow() + * \sa SDL_GetWindowData() + * \sa SDL_GetWindowFlags() + * \sa SDL_GetWindowGrab() + * \sa SDL_GetWindowPosition() + * \sa SDL_GetWindowSize() + * \sa SDL_GetWindowTitle() + * \sa SDL_HideWindow() + * \sa SDL_MaximizeWindow() + * \sa SDL_MinimizeWindow() + * \sa SDL_RaiseWindow() + * \sa SDL_RestoreWindow() + * \sa SDL_SetWindowData() + * \sa SDL_SetWindowFullscreen() + * \sa SDL_SetWindowGrab() + * \sa SDL_SetWindowIcon() + * \sa SDL_SetWindowPosition() + * \sa SDL_SetWindowSize() + * \sa SDL_SetWindowBordered() + * \sa SDL_SetWindowTitle() + * \sa SDL_ShowWindow() + */ +typedef struct SDL_Window SDL_Window; + +/** + * \brief The flags on a window + * + * \sa SDL_GetWindowFlags() + */ +typedef enum +{ + SDL_WINDOW_FULLSCREEN = 0x00000001, /**< fullscreen window */ + SDL_WINDOW_OPENGL = 0x00000002, /**< window usable with OpenGL context */ + SDL_WINDOW_SHOWN = 0x00000004, /**< window is visible */ + SDL_WINDOW_HIDDEN = 0x00000008, /**< window is not visible */ + SDL_WINDOW_BORDERLESS = 0x00000010, /**< no window decoration */ + SDL_WINDOW_RESIZABLE = 0x00000020, /**< window can be resized */ + SDL_WINDOW_MINIMIZED = 0x00000040, /**< window is minimized */ + SDL_WINDOW_MAXIMIZED = 0x00000080, /**< window is maximized */ + SDL_WINDOW_INPUT_GRABBED = 0x00000100, /**< window has grabbed input focus */ + SDL_WINDOW_INPUT_FOCUS = 0x00000200, /**< window has input focus */ + SDL_WINDOW_MOUSE_FOCUS = 0x00000400, /**< window has mouse focus */ + SDL_WINDOW_FULLSCREEN_DESKTOP = ( SDL_WINDOW_FULLSCREEN | 0x00001000 ), + SDL_WINDOW_FOREIGN = 0x00000800, /**< window not created by SDL */ + SDL_WINDOW_ALLOW_HIGHDPI = 0x00002000 /**< window should be created in high-DPI mode if supported */ +} SDL_WindowFlags; + +/** + * \brief Used to indicate that you don't care what the window position is. + */ +#define SDL_WINDOWPOS_UNDEFINED_MASK 0x1FFF0000 +#define SDL_WINDOWPOS_UNDEFINED_DISPLAY(X) (SDL_WINDOWPOS_UNDEFINED_MASK|(X)) +#define SDL_WINDOWPOS_UNDEFINED SDL_WINDOWPOS_UNDEFINED_DISPLAY(0) +#define SDL_WINDOWPOS_ISUNDEFINED(X) \ + (((X)&0xFFFF0000) == SDL_WINDOWPOS_UNDEFINED_MASK) + +/** + * \brief Used to indicate that the window position should be centered. + */ +#define SDL_WINDOWPOS_CENTERED_MASK 0x2FFF0000 +#define SDL_WINDOWPOS_CENTERED_DISPLAY(X) (SDL_WINDOWPOS_CENTERED_MASK|(X)) +#define SDL_WINDOWPOS_CENTERED SDL_WINDOWPOS_CENTERED_DISPLAY(0) +#define SDL_WINDOWPOS_ISCENTERED(X) \ + (((X)&0xFFFF0000) == SDL_WINDOWPOS_CENTERED_MASK) + +/** + * \brief Event subtype for window events + */ +typedef enum +{ + SDL_WINDOWEVENT_NONE, /**< Never used */ + SDL_WINDOWEVENT_SHOWN, /**< Window has been shown */ + SDL_WINDOWEVENT_HIDDEN, /**< Window has been hidden */ + SDL_WINDOWEVENT_EXPOSED, /**< Window has been exposed and should be + redrawn */ + SDL_WINDOWEVENT_MOVED, /**< Window has been moved to data1, data2 + */ + SDL_WINDOWEVENT_RESIZED, /**< Window has been resized to data1xdata2 */ + SDL_WINDOWEVENT_SIZE_CHANGED, /**< The window size has changed, either as a result of an API call or through the system or user changing the window size. */ + SDL_WINDOWEVENT_MINIMIZED, /**< Window has been minimized */ + SDL_WINDOWEVENT_MAXIMIZED, /**< Window has been maximized */ + SDL_WINDOWEVENT_RESTORED, /**< Window has been restored to normal size + and position */ + SDL_WINDOWEVENT_ENTER, /**< Window has gained mouse focus */ + SDL_WINDOWEVENT_LEAVE, /**< Window has lost mouse focus */ + SDL_WINDOWEVENT_FOCUS_GAINED, /**< Window has gained keyboard focus */ + SDL_WINDOWEVENT_FOCUS_LOST, /**< Window has lost keyboard focus */ + SDL_WINDOWEVENT_CLOSE /**< The window manager requests that the + window be closed */ +} SDL_WindowEventID; + +/** + * \brief An opaque handle to an OpenGL context. + */ +typedef void *SDL_GLContext; + +/** + * \brief OpenGL configuration attributes + */ +typedef enum +{ + SDL_GL_RED_SIZE, + SDL_GL_GREEN_SIZE, + SDL_GL_BLUE_SIZE, + SDL_GL_ALPHA_SIZE, + SDL_GL_BUFFER_SIZE, + SDL_GL_DOUBLEBUFFER, + SDL_GL_DEPTH_SIZE, + SDL_GL_STENCIL_SIZE, + SDL_GL_ACCUM_RED_SIZE, + SDL_GL_ACCUM_GREEN_SIZE, + SDL_GL_ACCUM_BLUE_SIZE, + SDL_GL_ACCUM_ALPHA_SIZE, + SDL_GL_STEREO, + SDL_GL_MULTISAMPLEBUFFERS, + SDL_GL_MULTISAMPLESAMPLES, + SDL_GL_ACCELERATED_VISUAL, + SDL_GL_RETAINED_BACKING, + SDL_GL_CONTEXT_MAJOR_VERSION, + SDL_GL_CONTEXT_MINOR_VERSION, + SDL_GL_CONTEXT_EGL, + SDL_GL_CONTEXT_FLAGS, + SDL_GL_CONTEXT_PROFILE_MASK, + SDL_GL_SHARE_WITH_CURRENT_CONTEXT, + SDL_GL_FRAMEBUFFER_SRGB_CAPABLE +} SDL_GLattr; + +typedef enum +{ + SDL_GL_CONTEXT_PROFILE_CORE = 0x0001, + SDL_GL_CONTEXT_PROFILE_COMPATIBILITY = 0x0002, + SDL_GL_CONTEXT_PROFILE_ES = 0x0004 /* GLX_CONTEXT_ES2_PROFILE_BIT_EXT */ +} SDL_GLprofile; + +typedef enum +{ + SDL_GL_CONTEXT_DEBUG_FLAG = 0x0001, + SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG = 0x0002, + SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG = 0x0004, + SDL_GL_CONTEXT_RESET_ISOLATION_FLAG = 0x0008 +} SDL_GLcontextFlag; + + +/* Function prototypes */ + +/** + * \brief Get the number of video drivers compiled into SDL + * + * \sa SDL_GetVideoDriver() + */ +extern DECLSPEC int SDLCALL SDL_GetNumVideoDrivers(void); + +/** + * \brief Get the name of a built in video driver. + * + * \note The video drivers are presented in the order in which they are + * normally checked during initialization. + * + * \sa SDL_GetNumVideoDrivers() + */ +extern DECLSPEC const char *SDLCALL SDL_GetVideoDriver(int index); + +/** + * \brief Initialize the video subsystem, optionally specifying a video driver. + * + * \param driver_name Initialize a specific driver by name, or NULL for the + * default video driver. + * + * \return 0 on success, -1 on error + * + * This function initializes the video subsystem; setting up a connection + * to the window manager, etc, and determines the available display modes + * and pixel formats, but does not initialize a window or graphics mode. + * + * \sa SDL_VideoQuit() + */ +extern DECLSPEC int SDLCALL SDL_VideoInit(const char *driver_name); + +/** + * \brief Shuts down the video subsystem. + * + * This function closes all windows, and restores the original video mode. + * + * \sa SDL_VideoInit() + */ +extern DECLSPEC void SDLCALL SDL_VideoQuit(void); + +/** + * \brief Returns the name of the currently initialized video driver. + * + * \return The name of the current video driver or NULL if no driver + * has been initialized + * + * \sa SDL_GetNumVideoDrivers() + * \sa SDL_GetVideoDriver() + */ +extern DECLSPEC const char *SDLCALL SDL_GetCurrentVideoDriver(void); + +/** + * \brief Returns the number of available video displays. + * + * \sa SDL_GetDisplayBounds() + */ +extern DECLSPEC int SDLCALL SDL_GetNumVideoDisplays(void); + +/** + * \brief Get the name of a display in UTF-8 encoding + * + * \return The name of a display, or NULL for an invalid display index. + * + * \sa SDL_GetNumVideoDisplays() + */ +extern DECLSPEC const char * SDLCALL SDL_GetDisplayName(int displayIndex); + +/** + * \brief Get the desktop area represented by a display, with the primary + * display located at 0,0 + * + * \return 0 on success, or -1 if the index is out of range. + * + * \sa SDL_GetNumVideoDisplays() + */ +extern DECLSPEC int SDLCALL SDL_GetDisplayBounds(int displayIndex, SDL_Rect * rect); + +/** + * \brief Returns the number of available display modes. + * + * \sa SDL_GetDisplayMode() + */ +extern DECLSPEC int SDLCALL SDL_GetNumDisplayModes(int displayIndex); + +/** + * \brief Fill in information about a specific display mode. + * + * \note The display modes are sorted in this priority: + * \li bits per pixel -> more colors to fewer colors + * \li width -> largest to smallest + * \li height -> largest to smallest + * \li refresh rate -> highest to lowest + * + * \sa SDL_GetNumDisplayModes() + */ +extern DECLSPEC int SDLCALL SDL_GetDisplayMode(int displayIndex, int modeIndex, + SDL_DisplayMode * mode); + +/** + * \brief Fill in information about the desktop display mode. + */ +extern DECLSPEC int SDLCALL SDL_GetDesktopDisplayMode(int displayIndex, SDL_DisplayMode * mode); + +/** + * \brief Fill in information about the current display mode. + */ +extern DECLSPEC int SDLCALL SDL_GetCurrentDisplayMode(int displayIndex, SDL_DisplayMode * mode); + + +/** + * \brief Get the closest match to the requested display mode. + * + * \param displayIndex The index of display from which mode should be queried. + * \param mode The desired display mode + * \param closest A pointer to a display mode to be filled in with the closest + * match of the available display modes. + * + * \return The passed in value \c closest, or NULL if no matching video mode + * was available. + * + * The available display modes are scanned, and \c closest is filled in with the + * closest mode matching the requested mode and returned. The mode format and + * refresh_rate default to the desktop mode if they are 0. The modes are + * scanned with size being first priority, format being second priority, and + * finally checking the refresh_rate. If all the available modes are too + * small, then NULL is returned. + * + * \sa SDL_GetNumDisplayModes() + * \sa SDL_GetDisplayMode() + */ +extern DECLSPEC SDL_DisplayMode * SDLCALL SDL_GetClosestDisplayMode(int displayIndex, const SDL_DisplayMode * mode, SDL_DisplayMode * closest); + +/** + * \brief Get the display index associated with a window. + * + * \return the display index of the display containing the center of the + * window, or -1 on error. + */ +extern DECLSPEC int SDLCALL SDL_GetWindowDisplayIndex(SDL_Window * window); + +/** + * \brief Set the display mode used when a fullscreen window is visible. + * + * By default the window's dimensions and the desktop format and refresh rate + * are used. + * + * \param window The window for which the display mode should be set. + * \param mode The mode to use, or NULL for the default mode. + * + * \return 0 on success, or -1 if setting the display mode failed. + * + * \sa SDL_GetWindowDisplayMode() + * \sa SDL_SetWindowFullscreen() + */ +extern DECLSPEC int SDLCALL SDL_SetWindowDisplayMode(SDL_Window * window, + const SDL_DisplayMode + * mode); + +/** + * \brief Fill in information about the display mode used when a fullscreen + * window is visible. + * + * \sa SDL_SetWindowDisplayMode() + * \sa SDL_SetWindowFullscreen() + */ +extern DECLSPEC int SDLCALL SDL_GetWindowDisplayMode(SDL_Window * window, + SDL_DisplayMode * mode); + +/** + * \brief Get the pixel format associated with the window. + */ +extern DECLSPEC Uint32 SDLCALL SDL_GetWindowPixelFormat(SDL_Window * window); + +/** + * \brief Create a window with the specified position, dimensions, and flags. + * + * \param title The title of the window, in UTF-8 encoding. + * \param x The x position of the window, ::SDL_WINDOWPOS_CENTERED, or + * ::SDL_WINDOWPOS_UNDEFINED. + * \param y The y position of the window, ::SDL_WINDOWPOS_CENTERED, or + * ::SDL_WINDOWPOS_UNDEFINED. + * \param w The width of the window. + * \param h The height of the window. + * \param flags The flags for the window, a mask of any of the following: + * ::SDL_WINDOW_FULLSCREEN, ::SDL_WINDOW_OPENGL, + * ::SDL_WINDOW_HIDDEN, ::SDL_WINDOW_BORDERLESS, + * ::SDL_WINDOW_RESIZABLE, ::SDL_WINDOW_MAXIMIZED, + * ::SDL_WINDOW_MINIMIZED, ::SDL_WINDOW_INPUT_GRABBED, + * ::SDL_WINDOW_ALLOW_HIGHDPI. + * + * \return The id of the window created, or zero if window creation failed. + * + * \sa SDL_DestroyWindow() + */ +extern DECLSPEC SDL_Window * SDLCALL SDL_CreateWindow(const char *title, + int x, int y, int w, + int h, Uint32 flags); + +/** + * \brief Create an SDL window from an existing native window. + * + * \param data A pointer to driver-dependent window creation data + * + * \return The id of the window created, or zero if window creation failed. + * + * \sa SDL_DestroyWindow() + */ +extern DECLSPEC SDL_Window * SDLCALL SDL_CreateWindowFrom(const void *data); + +/** + * \brief Get the numeric ID of a window, for logging purposes. + */ +extern DECLSPEC Uint32 SDLCALL SDL_GetWindowID(SDL_Window * window); + +/** + * \brief Get a window from a stored ID, or NULL if it doesn't exist. + */ +extern DECLSPEC SDL_Window * SDLCALL SDL_GetWindowFromID(Uint32 id); + +/** + * \brief Get the window flags. + */ +extern DECLSPEC Uint32 SDLCALL SDL_GetWindowFlags(SDL_Window * window); + +/** + * \brief Set the title of a window, in UTF-8 format. + * + * \sa SDL_GetWindowTitle() + */ +extern DECLSPEC void SDLCALL SDL_SetWindowTitle(SDL_Window * window, + const char *title); + +/** + * \brief Get the title of a window, in UTF-8 format. + * + * \sa SDL_SetWindowTitle() + */ +extern DECLSPEC const char *SDLCALL SDL_GetWindowTitle(SDL_Window * window); + +/** + * \brief Set the icon for a window. + * + * \param window The window for which the icon should be set. + * \param icon The icon for the window. + */ +extern DECLSPEC void SDLCALL SDL_SetWindowIcon(SDL_Window * window, + SDL_Surface * icon); + +/** + * \brief Associate an arbitrary named pointer with a window. + * + * \param window The window to associate with the pointer. + * \param name The name of the pointer. + * \param userdata The associated pointer. + * + * \return The previous value associated with 'name' + * + * \note The name is case-sensitive. + * + * \sa SDL_GetWindowData() + */ +extern DECLSPEC void* SDLCALL SDL_SetWindowData(SDL_Window * window, + const char *name, + void *userdata); + +/** + * \brief Retrieve the data pointer associated with a window. + * + * \param window The window to query. + * \param name The name of the pointer. + * + * \return The value associated with 'name' + * + * \sa SDL_SetWindowData() + */ +extern DECLSPEC void *SDLCALL SDL_GetWindowData(SDL_Window * window, + const char *name); + +/** + * \brief Set the position of a window. + * + * \param window The window to reposition. + * \param x The x coordinate of the window, ::SDL_WINDOWPOS_CENTERED, or + ::SDL_WINDOWPOS_UNDEFINED. + * \param y The y coordinate of the window, ::SDL_WINDOWPOS_CENTERED, or + ::SDL_WINDOWPOS_UNDEFINED. + * + * \note The window coordinate origin is the upper left of the display. + * + * \sa SDL_GetWindowPosition() + */ +extern DECLSPEC void SDLCALL SDL_SetWindowPosition(SDL_Window * window, + int x, int y); + +/** + * \brief Get the position of a window. + * + * \param window The window to query. + * \param x Pointer to variable for storing the x position, may be NULL + * \param y Pointer to variable for storing the y position, may be NULL + * + * \sa SDL_SetWindowPosition() + */ +extern DECLSPEC void SDLCALL SDL_GetWindowPosition(SDL_Window * window, + int *x, int *y); + +/** + * \brief Set the size of a window's client area. + * + * \param window The window to resize. + * \param w The width of the window, must be >0 + * \param h The height of the window, must be >0 + * + * \note You can't change the size of a fullscreen window, it automatically + * matches the size of the display mode. + * + * \sa SDL_GetWindowSize() + */ +extern DECLSPEC void SDLCALL SDL_SetWindowSize(SDL_Window * window, int w, + int h); + +/** + * \brief Get the size of a window's client area. + * + * \param window The window to query. + * \param w Pointer to variable for storing the width, may be NULL + * \param h Pointer to variable for storing the height, may be NULL + * + * \sa SDL_SetWindowSize() + */ +extern DECLSPEC void SDLCALL SDL_GetWindowSize(SDL_Window * window, int *w, + int *h); + +/** + * \brief Set the minimum size of a window's client area. + * + * \param window The window to set a new minimum size. + * \param min_w The minimum width of the window, must be >0 + * \param min_h The minimum height of the window, must be >0 + * + * \note You can't change the minimum size of a fullscreen window, it + * automatically matches the size of the display mode. + * + * \sa SDL_GetWindowMinimumSize() + * \sa SDL_SetWindowMaximumSize() + */ +extern DECLSPEC void SDLCALL SDL_SetWindowMinimumSize(SDL_Window * window, + int min_w, int min_h); + +/** + * \brief Get the minimum size of a window's client area. + * + * \param window The window to query. + * \param w Pointer to variable for storing the minimum width, may be NULL + * \param h Pointer to variable for storing the minimum height, may be NULL + * + * \sa SDL_GetWindowMaximumSize() + * \sa SDL_SetWindowMinimumSize() + */ +extern DECLSPEC void SDLCALL SDL_GetWindowMinimumSize(SDL_Window * window, + int *w, int *h); + +/** + * \brief Set the maximum size of a window's client area. + * + * \param window The window to set a new maximum size. + * \param max_w The maximum width of the window, must be >0 + * \param max_h The maximum height of the window, must be >0 + * + * \note You can't change the maximum size of a fullscreen window, it + * automatically matches the size of the display mode. + * + * \sa SDL_GetWindowMaximumSize() + * \sa SDL_SetWindowMinimumSize() + */ +extern DECLSPEC void SDLCALL SDL_SetWindowMaximumSize(SDL_Window * window, + int max_w, int max_h); + +/** + * \brief Get the maximum size of a window's client area. + * + * \param window The window to query. + * \param w Pointer to variable for storing the maximum width, may be NULL + * \param h Pointer to variable for storing the maximum height, may be NULL + * + * \sa SDL_GetWindowMinimumSize() + * \sa SDL_SetWindowMaximumSize() + */ +extern DECLSPEC void SDLCALL SDL_GetWindowMaximumSize(SDL_Window * window, + int *w, int *h); + +/** + * \brief Set the border state of a window. + * + * This will add or remove the window's SDL_WINDOW_BORDERLESS flag and + * add or remove the border from the actual window. This is a no-op if the + * window's border already matches the requested state. + * + * \param window The window of which to change the border state. + * \param bordered SDL_FALSE to remove border, SDL_TRUE to add border. + * + * \note You can't change the border state of a fullscreen window. + * + * \sa SDL_GetWindowFlags() + */ +extern DECLSPEC void SDLCALL SDL_SetWindowBordered(SDL_Window * window, + SDL_bool bordered); + +/** + * \brief Show a window. + * + * \sa SDL_HideWindow() + */ +extern DECLSPEC void SDLCALL SDL_ShowWindow(SDL_Window * window); + +/** + * \brief Hide a window. + * + * \sa SDL_ShowWindow() + */ +extern DECLSPEC void SDLCALL SDL_HideWindow(SDL_Window * window); + +/** + * \brief Raise a window above other windows and set the input focus. + */ +extern DECLSPEC void SDLCALL SDL_RaiseWindow(SDL_Window * window); + +/** + * \brief Make a window as large as possible. + * + * \sa SDL_RestoreWindow() + */ +extern DECLSPEC void SDLCALL SDL_MaximizeWindow(SDL_Window * window); + +/** + * \brief Minimize a window to an iconic representation. + * + * \sa SDL_RestoreWindow() + */ +extern DECLSPEC void SDLCALL SDL_MinimizeWindow(SDL_Window * window); + +/** + * \brief Restore the size and position of a minimized or maximized window. + * + * \sa SDL_MaximizeWindow() + * \sa SDL_MinimizeWindow() + */ +extern DECLSPEC void SDLCALL SDL_RestoreWindow(SDL_Window * window); + +/** + * \brief Set a window's fullscreen state. + * + * \return 0 on success, or -1 if setting the display mode failed. + * + * \sa SDL_SetWindowDisplayMode() + * \sa SDL_GetWindowDisplayMode() + */ +extern DECLSPEC int SDLCALL SDL_SetWindowFullscreen(SDL_Window * window, + Uint32 flags); + +/** + * \brief Get the SDL surface associated with the window. + * + * \return The window's framebuffer surface, or NULL on error. + * + * A new surface will be created with the optimal format for the window, + * if necessary. This surface will be freed when the window is destroyed. + * + * \note You may not combine this with 3D or the rendering API on this window. + * + * \sa SDL_UpdateWindowSurface() + * \sa SDL_UpdateWindowSurfaceRects() + */ +extern DECLSPEC SDL_Surface * SDLCALL SDL_GetWindowSurface(SDL_Window * window); + +/** + * \brief Copy the window surface to the screen. + * + * \return 0 on success, or -1 on error. + * + * \sa SDL_GetWindowSurface() + * \sa SDL_UpdateWindowSurfaceRects() + */ +extern DECLSPEC int SDLCALL SDL_UpdateWindowSurface(SDL_Window * window); + +/** + * \brief Copy a number of rectangles on the window surface to the screen. + * + * \return 0 on success, or -1 on error. + * + * \sa SDL_GetWindowSurface() + * \sa SDL_UpdateWindowSurfaceRect() + */ +extern DECLSPEC int SDLCALL SDL_UpdateWindowSurfaceRects(SDL_Window * window, + const SDL_Rect * rects, + int numrects); + +/** + * \brief Set a window's input grab mode. + * + * \param window The window for which the input grab mode should be set. + * \param grabbed This is SDL_TRUE to grab input, and SDL_FALSE to release input. + * + * \sa SDL_GetWindowGrab() + */ +extern DECLSPEC void SDLCALL SDL_SetWindowGrab(SDL_Window * window, + SDL_bool grabbed); + +/** + * \brief Get a window's input grab mode. + * + * \return This returns SDL_TRUE if input is grabbed, and SDL_FALSE otherwise. + * + * \sa SDL_SetWindowGrab() + */ +extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowGrab(SDL_Window * window); + +/** + * \brief Set the brightness (gamma correction) for a window. + * + * \return 0 on success, or -1 if setting the brightness isn't supported. + * + * \sa SDL_GetWindowBrightness() + * \sa SDL_SetWindowGammaRamp() + */ +extern DECLSPEC int SDLCALL SDL_SetWindowBrightness(SDL_Window * window, float brightness); + +/** + * \brief Get the brightness (gamma correction) for a window. + * + * \return The last brightness value passed to SDL_SetWindowBrightness() + * + * \sa SDL_SetWindowBrightness() + */ +extern DECLSPEC float SDLCALL SDL_GetWindowBrightness(SDL_Window * window); + +/** + * \brief Set the gamma ramp for a window. + * + * \param window The window for which the gamma ramp should be set. + * \param red The translation table for the red channel, or NULL. + * \param green The translation table for the green channel, or NULL. + * \param blue The translation table for the blue channel, or NULL. + * + * \return 0 on success, or -1 if gamma ramps are unsupported. + * + * Set the gamma translation table for the red, green, and blue channels + * of the video hardware. Each table is an array of 256 16-bit quantities, + * representing a mapping between the input and output for that channel. + * The input is the index into the array, and the output is the 16-bit + * gamma value at that index, scaled to the output color precision. + * + * \sa SDL_GetWindowGammaRamp() + */ +extern DECLSPEC int SDLCALL SDL_SetWindowGammaRamp(SDL_Window * window, + const Uint16 * red, + const Uint16 * green, + const Uint16 * blue); + +/** + * \brief Get the gamma ramp for a window. + * + * \param window The window from which the gamma ramp should be queried. + * \param red A pointer to a 256 element array of 16-bit quantities to hold + * the translation table for the red channel, or NULL. + * \param green A pointer to a 256 element array of 16-bit quantities to hold + * the translation table for the green channel, or NULL. + * \param blue A pointer to a 256 element array of 16-bit quantities to hold + * the translation table for the blue channel, or NULL. + * + * \return 0 on success, or -1 if gamma ramps are unsupported. + * + * \sa SDL_SetWindowGammaRamp() + */ +extern DECLSPEC int SDLCALL SDL_GetWindowGammaRamp(SDL_Window * window, + Uint16 * red, + Uint16 * green, + Uint16 * blue); + +/** + * \brief Destroy a window. + */ +extern DECLSPEC void SDLCALL SDL_DestroyWindow(SDL_Window * window); + + +/** + * \brief Returns whether the screensaver is currently enabled (default on). + * + * \sa SDL_EnableScreenSaver() + * \sa SDL_DisableScreenSaver() + */ +extern DECLSPEC SDL_bool SDLCALL SDL_IsScreenSaverEnabled(void); + +/** + * \brief Allow the screen to be blanked by a screensaver + * + * \sa SDL_IsScreenSaverEnabled() + * \sa SDL_DisableScreenSaver() + */ +extern DECLSPEC void SDLCALL SDL_EnableScreenSaver(void); + +/** + * \brief Prevent the screen from being blanked by a screensaver + * + * \sa SDL_IsScreenSaverEnabled() + * \sa SDL_EnableScreenSaver() + */ +extern DECLSPEC void SDLCALL SDL_DisableScreenSaver(void); + + +/** + * \name OpenGL support functions + */ +/* @{ */ + +/** + * \brief Dynamically load an OpenGL library. + * + * \param path The platform dependent OpenGL library name, or NULL to open the + * default OpenGL library. + * + * \return 0 on success, or -1 if the library couldn't be loaded. + * + * This should be done after initializing the video driver, but before + * creating any OpenGL windows. If no OpenGL library is loaded, the default + * library will be loaded upon creation of the first OpenGL window. + * + * \note If you do this, you need to retrieve all of the GL functions used in + * your program from the dynamic library using SDL_GL_GetProcAddress(). + * + * \sa SDL_GL_GetProcAddress() + * \sa SDL_GL_UnloadLibrary() + */ +extern DECLSPEC int SDLCALL SDL_GL_LoadLibrary(const char *path); + +/** + * \brief Get the address of an OpenGL function. + */ +extern DECLSPEC void *SDLCALL SDL_GL_GetProcAddress(const char *proc); + +/** + * \brief Unload the OpenGL library previously loaded by SDL_GL_LoadLibrary(). + * + * \sa SDL_GL_LoadLibrary() + */ +extern DECLSPEC void SDLCALL SDL_GL_UnloadLibrary(void); + +/** + * \brief Return true if an OpenGL extension is supported for the current + * context. + */ +extern DECLSPEC SDL_bool SDLCALL SDL_GL_ExtensionSupported(const char + *extension); + +/** + * \brief Reset all previously set OpenGL context attributes to their default values + */ +extern DECLSPEC void SDLCALL SDL_GL_ResetAttributes(void); + +/** + * \brief Set an OpenGL window attribute before window creation. + */ +extern DECLSPEC int SDLCALL SDL_GL_SetAttribute(SDL_GLattr attr, int value); + +/** + * \brief Get the actual value for an attribute from the current context. + */ +extern DECLSPEC int SDLCALL SDL_GL_GetAttribute(SDL_GLattr attr, int *value); + +/** + * \brief Create an OpenGL context for use with an OpenGL window, and make it + * current. + * + * \sa SDL_GL_DeleteContext() + */ +extern DECLSPEC SDL_GLContext SDLCALL SDL_GL_CreateContext(SDL_Window * + window); + +/** + * \brief Set up an OpenGL context for rendering into an OpenGL window. + * + * \note The context must have been created with a compatible window. + */ +extern DECLSPEC int SDLCALL SDL_GL_MakeCurrent(SDL_Window * window, + SDL_GLContext context); + +/** + * \brief Get the currently active OpenGL window. + */ +extern DECLSPEC SDL_Window* SDLCALL SDL_GL_GetCurrentWindow(void); + +/** + * \brief Get the currently active OpenGL context. + */ +extern DECLSPEC SDL_GLContext SDLCALL SDL_GL_GetCurrentContext(void); + +/** + * \brief Get the size of a window's underlying drawable (for use with glViewport). + * + * \param window Window from which the drawable size should be queried + * \param w Pointer to variable for storing the width, may be NULL + * \param h Pointer to variable for storing the height, may be NULL + * + * This may differ from SDL_GetWindowSize if we're rendering to a high-DPI + * drawable, i.e. the window was created with SDL_WINDOW_ALLOW_HIGHDPI on a + * platform with high-DPI support (Apple calls this "Retina"), and not disabled + * by the SDL_HINT_VIDEO_HIGHDPI_DISABLED hint. + * + * \sa SDL_GetWindowSize() + * \sa SDL_CreateWindow() + */ +extern DECLSPEC void SDLCALL SDL_GL_GetDrawableSize(SDL_Window * window, int *w, + int *h); + +/** + * \brief Set the swap interval for the current OpenGL context. + * + * \param interval 0 for immediate updates, 1 for updates synchronized with the + * vertical retrace. If the system supports it, you may + * specify -1 to allow late swaps to happen immediately + * instead of waiting for the next retrace. + * + * \return 0 on success, or -1 if setting the swap interval is not supported. + * + * \sa SDL_GL_GetSwapInterval() + */ +extern DECLSPEC int SDLCALL SDL_GL_SetSwapInterval(int interval); + +/** + * \brief Get the swap interval for the current OpenGL context. + * + * \return 0 if there is no vertical retrace synchronization, 1 if the buffer + * swap is synchronized with the vertical retrace, and -1 if late + * swaps happen immediately instead of waiting for the next retrace. + * If the system can't determine the swap interval, or there isn't a + * valid current context, this will return 0 as a safe default. + * + * \sa SDL_GL_SetSwapInterval() + */ +extern DECLSPEC int SDLCALL SDL_GL_GetSwapInterval(void); + +/** + * \brief Swap the OpenGL buffers for a window, if double-buffering is + * supported. + */ +extern DECLSPEC void SDLCALL SDL_GL_SwapWindow(SDL_Window * window); + +/** + * \brief Delete an OpenGL context. + * + * \sa SDL_GL_CreateContext() + */ +extern DECLSPEC void SDLCALL SDL_GL_DeleteContext(SDL_GLContext context); + +/* @} *//* OpenGL support functions */ + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include "close_code.h" + +#endif /* _SDL_video_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/begin_code.h b/ThirdParty/SDL2-2.0.3/include/SDL2/begin_code.h new file mode 100644 index 0000000..f37ee36 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/begin_code.h @@ -0,0 +1,140 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file begin_code.h + * + * This file sets things up for C dynamic library function definitions, + * static inlined functions, and structures aligned at 4-byte alignment. + * If you don't like ugly C preprocessor code, don't look at this file. :) + */ + +/* This shouldn't be nested -- included it around code only. */ +#ifdef _begin_code_h +#error Nested inclusion of begin_code.h +#endif +#define _begin_code_h + +#ifndef SDL_DEPRECATED +# if (__GNUC__ >= 4) /* technically, this arrived in gcc 3.1, but oh well. */ +# define SDL_DEPRECATED __attribute__((deprecated)) +# else +# define SDL_DEPRECATED +# endif +#endif + +/* Some compilers use a special export keyword */ +#ifndef DECLSPEC +# if defined(__WIN32__) || defined(__WINRT__) +# ifdef __BORLANDC__ +# ifdef BUILD_SDL +# define DECLSPEC +# else +# define DECLSPEC __declspec(dllimport) +# endif +# else +# define DECLSPEC __declspec(dllexport) +# endif +# else +# if defined(__GNUC__) && __GNUC__ >= 4 +# define DECLSPEC __attribute__ ((visibility("default"))) +# elif defined(__GNUC__) && __GNUC__ >= 2 +# define DECLSPEC __declspec(dllexport) +# else +# define DECLSPEC +# endif +# endif +#endif + +/* By default SDL uses the C calling convention */ +#ifndef SDLCALL +#if (defined(__WIN32__) || defined(__WINRT__)) && !defined(__GNUC__) +#define SDLCALL __cdecl +#else +#define SDLCALL +#endif +#endif /* SDLCALL */ + +/* Removed DECLSPEC on Symbian OS because SDL cannot be a DLL in EPOC */ +#ifdef __SYMBIAN32__ +#undef DECLSPEC +#define DECLSPEC +#endif /* __SYMBIAN32__ */ + +/* Force structure packing at 4 byte alignment. + This is necessary if the header is included in code which has structure + packing set to an alternate value, say for loading structures from disk. + The packing is reset to the previous value in close_code.h + */ +#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__) +#ifdef _MSC_VER +#pragma warning(disable: 4103) +#endif +#ifdef __BORLANDC__ +#pragma nopackwarning +#endif +#ifdef _M_X64 +/* Use 8-byte alignment on 64-bit architectures, so pointers are aligned */ +#pragma pack(push,8) +#else +#pragma pack(push,4) +#endif +#endif /* Compiler needs structure packing set */ + +#ifndef SDL_INLINE +#if defined(__GNUC__) +#define SDL_INLINE __inline__ +#elif defined(_MSC_VER) || defined(__BORLANDC__) || \ + defined(__DMC__) || defined(__SC__) || \ + defined(__WATCOMC__) || defined(__LCC__) || \ + defined(__DECC) +#define SDL_INLINE __inline +#ifndef __inline__ +#define __inline__ __inline +#endif +#else +#define SDL_INLINE inline +#ifndef __inline__ +#define __inline__ inline +#endif +#endif +#endif /* SDL_INLINE not defined */ + +#ifndef SDL_FORCE_INLINE +#if defined(_MSC_VER) +#define SDL_FORCE_INLINE __forceinline +#elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) ) +#define SDL_FORCE_INLINE __attribute__((always_inline)) static __inline__ +#else +#define SDL_FORCE_INLINE static SDL_INLINE +#endif +#endif /* SDL_FORCE_INLINE not defined */ + +/* Apparently this is needed by several Windows compilers */ +#if !defined(__MACH__) +#ifndef NULL +#ifdef __cplusplus +#define NULL 0 +#else +#define NULL ((void *)0) +#endif +#endif /* NULL */ +#endif /* ! Mac OS X - breaks precompiled headers */ diff --git a/ThirdParty/SDL2-2.0.3/include/SDL2/close_code.h b/ThirdParty/SDL2-2.0.3/include/SDL2/close_code.h new file mode 100644 index 0000000..9826f14 --- /dev/null +++ b/ThirdParty/SDL2-2.0.3/include/SDL2/close_code.h @@ -0,0 +1,37 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2014 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * \file close_code.h + * + * This file reverses the effects of begin_code.h and should be included + * after you finish any function and structure declarations in your headers + */ + +#undef _begin_code_h + +/* Reset structure packing at previous byte alignment */ +#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__WATCOMC__) || defined(__BORLANDC__) +#ifdef __BORLANDC__ +#pragma nopackwarning +#endif +#pragma pack(pop) +#endif /* Compiler needs structure packing set */ diff --git a/ThirdParty/SDL2-2.0.3/lib/x64/SDL2.dll b/ThirdParty/SDL2-2.0.3/lib/x64/SDL2.dll new file mode 100644 index 0000000000000000000000000000000000000000..a65b22ce9d2857e1369997d3772b3a496d4795a8 GIT binary patch literal 1190400 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%0ApQH5f3xlVTCME6A)&P5E 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 +** +** The first two constants cause sqlite3_mutex_alloc() to create +** a new mutex. The new mutex is recursive when SQLITE_MUTEX_RECURSIVE +** is used but not necessarily so when SQLITE_MUTEX_FAST is used. +** The mutex implementation does not need to make a distinction +** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does +** not want to. But SQLite will only request a recursive mutex in +** cases where it really needs one. If a faster non-recursive mutex +** implementation is available on the host platform, the mutex subsystem +** might return such a mutex in response to SQLITE_MUTEX_FAST. +** +** The other allowed parameters to sqlite3_mutex_alloc() each return +** a pointer to a static preexisting mutex. Six static mutexes are +** used by the current version of SQLite. Future versions of SQLite +** may add additional static mutexes. Static mutexes are for internal +** use by SQLite only. Applications that use SQLite mutexes should +** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or +** SQLITE_MUTEX_RECURSIVE. +** +** Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST +** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc() +** returns a different mutex on every call. But for the static +** mutex types, the same mutex is returned on every call that has +** the same type number. +*/ +static sqlite3_mutex *winMutexAlloc(int iType){ + sqlite3_mutex *p; + + switch( iType ){ + case SQLITE_MUTEX_FAST: + case SQLITE_MUTEX_RECURSIVE: { + p = sqlite3MallocZero( sizeof(*p) ); + if( p ){ +#ifdef SQLITE_DEBUG + p->id = iType; +#endif +#if SQLITE_OS_WINRT + InitializeCriticalSectionEx(&p->mutex, 0, 0); +#else + InitializeCriticalSection(&p->mutex); +#endif + } + break; + } + default: { + assert( winMutex_isInit==1 ); + assert( iType-2 >= 0 ); + assert( iType-2 < ArraySize(winMutex_staticMutexes) ); + p = &winMutex_staticMutexes[iType-2]; +#ifdef SQLITE_DEBUG + p->id = iType; +#endif + break; + } + } + return p; +} + + +/* +** This routine deallocates a previously +** allocated mutex. SQLite is careful to deallocate every +** mutex that it allocates. +*/ +static void winMutexFree(sqlite3_mutex *p){ + assert( p ); + assert( p->nRef==0 && p->owner==0 ); + assert( p->id==SQLITE_MUTEX_FAST || p->id==SQLITE_MUTEX_RECURSIVE ); + DeleteCriticalSection(&p->mutex); + sqlite3_free(p); +} + +/* +** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt +** to enter a mutex. If another thread is already within the mutex, +** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return +** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK +** upon successful entry. Mutexes created using SQLITE_MUTEX_RECURSIVE can +** be entered multiple times by the same thread. In such cases the, +** mutex must be exited an equal number of times before another thread +** can enter. If the same thread tries to enter any other kind of mutex +** more than once, the behavior is undefined. +*/ +static void winMutexEnter(sqlite3_mutex *p){ +#ifdef SQLITE_DEBUG + DWORD tid = GetCurrentThreadId(); + assert( p->id==SQLITE_MUTEX_RECURSIVE || winMutexNotheld2(p, tid) ); +#endif + EnterCriticalSection(&p->mutex); +#ifdef SQLITE_DEBUG + assert( p->nRef>0 || p->owner==0 ); + p->owner = tid; + p->nRef++; + if( p->trace ){ + printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); + } +#endif +} +static int winMutexTry(sqlite3_mutex *p){ +#ifndef NDEBUG + DWORD tid = GetCurrentThreadId(); +#endif + int rc = SQLITE_BUSY; + assert( p->id==SQLITE_MUTEX_RECURSIVE || winMutexNotheld2(p, tid) ); + /* + ** The sqlite3_mutex_try() routine is very rarely used, and when it + ** is used it is merely an optimization. So it is OK for it to always + ** fail. + ** + ** The TryEnterCriticalSection() interface is only available on WinNT. + ** And some windows compilers complain if you try to use it without + ** first doing some #defines that prevent SQLite from building on Win98. + ** For that reason, we will omit this optimization for now. See + ** ticket #2685. + */ +#if 0 + if( mutexIsNT() && TryEnterCriticalSection(&p->mutex) ){ + p->owner = tid; + p->nRef++; + rc = SQLITE_OK; + } +#else + UNUSED_PARAMETER(p); +#endif +#ifdef SQLITE_DEBUG + if( rc==SQLITE_OK && p->trace ){ + printf("try mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); + } +#endif + return rc; +} + +/* +** The sqlite3_mutex_leave() routine exits a mutex that was +** previously entered by the same thread. The behavior +** is undefined if the mutex is not currently entered or +** is not currently allocated. SQLite will never do either. +*/ +static void winMutexLeave(sqlite3_mutex *p){ +#ifndef NDEBUG + DWORD tid = GetCurrentThreadId(); + assert( p->nRef>0 ); + assert( p->owner==tid ); + p->nRef--; + if( p->nRef==0 ) p->owner = 0; + assert( p->nRef==0 || p->id==SQLITE_MUTEX_RECURSIVE ); +#endif + LeaveCriticalSection(&p->mutex); +#ifdef SQLITE_DEBUG + if( p->trace ){ + printf("leave mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); + } +#endif +} + +SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){ + static const sqlite3_mutex_methods sMutex = { + winMutexInit, + winMutexEnd, + winMutexAlloc, + winMutexFree, + winMutexEnter, + winMutexTry, + winMutexLeave, +#ifdef SQLITE_DEBUG + winMutexHeld, + winMutexNotheld +#else + 0, + 0 +#endif + }; + + return &sMutex; +} +#endif /* SQLITE_MUTEX_W32 */ + +/************** End of mutex_w32.c *******************************************/ +/************** Begin file malloc.c ******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** Memory allocation functions used throughout sqlite. +*/ +/* #include */ + +/* +** Attempt to release up to n bytes of non-essential memory currently +** held by SQLite. An example of non-essential memory is memory used to +** cache database pages that are not currently in use. +*/ +SQLITE_API int sqlite3_release_memory(int n){ +#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT + return sqlite3PcacheReleaseMemory(n); +#else + /* IMPLEMENTATION-OF: R-34391-24921 The sqlite3_release_memory() routine + ** is a no-op returning zero if SQLite is not compiled with + ** SQLITE_ENABLE_MEMORY_MANAGEMENT. */ + UNUSED_PARAMETER(n); + return 0; +#endif +} + +/* +** An instance of the following object records the location of +** each unused scratch buffer. +*/ +typedef struct ScratchFreeslot { + struct ScratchFreeslot *pNext; /* Next unused scratch buffer */ +} ScratchFreeslot; + +/* +** State information local to the memory allocation subsystem. +*/ +static SQLITE_WSD struct Mem0Global { + sqlite3_mutex *mutex; /* Mutex to serialize access */ + + /* + ** The alarm callback and its arguments. The mem0.mutex lock will + ** be held while the callback is running. Recursive calls into + ** the memory subsystem are allowed, but no new callbacks will be + ** issued. + */ + sqlite3_int64 alarmThreshold; + void (*alarmCallback)(void*, sqlite3_int64,int); + void *alarmArg; + + /* + ** Pointers to the end of sqlite3GlobalConfig.pScratch memory + ** (so that a range test can be used to determine if an allocation + ** being freed came from pScratch) and a pointer to the list of + ** unused scratch allocations. + */ + void *pScratchEnd; + ScratchFreeslot *pScratchFree; + u32 nScratchFree; + + /* + ** True if heap is nearly "full" where "full" is defined by the + ** sqlite3_soft_heap_limit() setting. + */ + int nearlyFull; +} mem0 = { 0, 0, 0, 0, 0, 0, 0, 0 }; + +#define mem0 GLOBAL(struct Mem0Global, mem0) + +/* +** This routine runs when the memory allocator sees that the +** total memory allocation is about to exceed the soft heap +** limit. +*/ +static void softHeapLimitEnforcer( + void *NotUsed, + sqlite3_int64 NotUsed2, + int allocSize +){ + UNUSED_PARAMETER2(NotUsed, NotUsed2); + sqlite3_release_memory(allocSize); +} + +/* +** Change the alarm callback +*/ +static int sqlite3MemoryAlarm( + void(*xCallback)(void *pArg, sqlite3_int64 used,int N), + void *pArg, + sqlite3_int64 iThreshold +){ + int nUsed; + sqlite3_mutex_enter(mem0.mutex); + mem0.alarmCallback = xCallback; + mem0.alarmArg = pArg; + mem0.alarmThreshold = iThreshold; + nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); + mem0.nearlyFull = (iThreshold>0 && iThreshold<=nUsed); + sqlite3_mutex_leave(mem0.mutex); + return SQLITE_OK; +} + +#ifndef SQLITE_OMIT_DEPRECATED +/* +** Deprecated external interface. Internal/core SQLite code +** should call sqlite3MemoryAlarm. +*/ +SQLITE_API int sqlite3_memory_alarm( + void(*xCallback)(void *pArg, sqlite3_int64 used,int N), + void *pArg, + sqlite3_int64 iThreshold +){ + return sqlite3MemoryAlarm(xCallback, pArg, iThreshold); +} +#endif + +/* +** Set the soft heap-size limit for the library. Passing a zero or +** negative value indicates no limit. +*/ +SQLITE_API sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 n){ + sqlite3_int64 priorLimit; + sqlite3_int64 excess; +#ifndef SQLITE_OMIT_AUTOINIT + int rc = sqlite3_initialize(); + if( rc ) return -1; +#endif + sqlite3_mutex_enter(mem0.mutex); + priorLimit = mem0.alarmThreshold; + sqlite3_mutex_leave(mem0.mutex); + if( n<0 ) return priorLimit; + if( n>0 ){ + sqlite3MemoryAlarm(softHeapLimitEnforcer, 0, n); + }else{ + sqlite3MemoryAlarm(0, 0, 0); + } + excess = sqlite3_memory_used() - n; + if( excess>0 ) sqlite3_release_memory((int)(excess & 0x7fffffff)); + return priorLimit; +} +SQLITE_API void sqlite3_soft_heap_limit(int n){ + if( n<0 ) n = 0; + sqlite3_soft_heap_limit64(n); +} + +/* +** Initialize the memory allocation subsystem. +*/ +SQLITE_PRIVATE int sqlite3MallocInit(void){ + if( sqlite3GlobalConfig.m.xMalloc==0 ){ + sqlite3MemSetDefault(); + } + memset(&mem0, 0, sizeof(mem0)); + if( sqlite3GlobalConfig.bCoreMutex ){ + mem0.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM); + } + if( sqlite3GlobalConfig.pScratch && sqlite3GlobalConfig.szScratch>=100 + && sqlite3GlobalConfig.nScratch>0 ){ + int i, n, sz; + ScratchFreeslot *pSlot; + sz = ROUNDDOWN8(sqlite3GlobalConfig.szScratch); + sqlite3GlobalConfig.szScratch = sz; + pSlot = (ScratchFreeslot*)sqlite3GlobalConfig.pScratch; + n = sqlite3GlobalConfig.nScratch; + mem0.pScratchFree = pSlot; + mem0.nScratchFree = n; + for(i=0; ipNext = (ScratchFreeslot*)(sz+(char*)pSlot); + pSlot = pSlot->pNext; + } + pSlot->pNext = 0; + mem0.pScratchEnd = (void*)&pSlot[1]; + }else{ + mem0.pScratchEnd = 0; + sqlite3GlobalConfig.pScratch = 0; + sqlite3GlobalConfig.szScratch = 0; + sqlite3GlobalConfig.nScratch = 0; + } + if( sqlite3GlobalConfig.pPage==0 || sqlite3GlobalConfig.szPage<512 + || sqlite3GlobalConfig.nPage<1 ){ + sqlite3GlobalConfig.pPage = 0; + sqlite3GlobalConfig.szPage = 0; + sqlite3GlobalConfig.nPage = 0; + } + return sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData); +} + +/* +** Return true if the heap is currently under memory pressure - in other +** words if the amount of heap used is close to the limit set by +** sqlite3_soft_heap_limit(). +*/ +SQLITE_PRIVATE int sqlite3HeapNearlyFull(void){ + return mem0.nearlyFull; +} + +/* +** Deinitialize the memory allocation subsystem. +*/ +SQLITE_PRIVATE void sqlite3MallocEnd(void){ + if( sqlite3GlobalConfig.m.xShutdown ){ + sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData); + } + memset(&mem0, 0, sizeof(mem0)); +} + +/* +** Return the amount of memory currently checked out. +*/ +SQLITE_API sqlite3_int64 sqlite3_memory_used(void){ + int n, mx; + sqlite3_int64 res; + sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, 0); + res = (sqlite3_int64)n; /* Work around bug in Borland C. Ticket #3216 */ + return res; +} + +/* +** Return the maximum amount of memory that has ever been +** checked out since either the beginning of this process +** or since the most recent reset. +*/ +SQLITE_API sqlite3_int64 sqlite3_memory_highwater(int resetFlag){ + int n, mx; + sqlite3_int64 res; + sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, resetFlag); + res = (sqlite3_int64)mx; /* Work around bug in Borland C. Ticket #3216 */ + return res; +} + +/* +** Trigger the alarm +*/ +static void sqlite3MallocAlarm(int nByte){ + void (*xCallback)(void*,sqlite3_int64,int); + sqlite3_int64 nowUsed; + void *pArg; + if( mem0.alarmCallback==0 ) return; + xCallback = mem0.alarmCallback; + nowUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); + pArg = mem0.alarmArg; + mem0.alarmCallback = 0; + sqlite3_mutex_leave(mem0.mutex); + xCallback(pArg, nowUsed, nByte); + sqlite3_mutex_enter(mem0.mutex); + mem0.alarmCallback = xCallback; + mem0.alarmArg = pArg; +} + +/* +** Do a memory allocation with statistics and alarms. Assume the +** lock is already held. +*/ +static int mallocWithAlarm(int n, void **pp){ + int nFull; + void *p; + assert( sqlite3_mutex_held(mem0.mutex) ); + nFull = sqlite3GlobalConfig.m.xRoundup(n); + sqlite3StatusSet(SQLITE_STATUS_MALLOC_SIZE, n); + if( mem0.alarmCallback!=0 ){ + int nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); + if( nUsed >= mem0.alarmThreshold - nFull ){ + mem0.nearlyFull = 1; + sqlite3MallocAlarm(nFull); + }else{ + mem0.nearlyFull = 0; + } + } + p = sqlite3GlobalConfig.m.xMalloc(nFull); +#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT + if( p==0 && mem0.alarmCallback ){ + sqlite3MallocAlarm(nFull); + p = sqlite3GlobalConfig.m.xMalloc(nFull); + } +#endif + if( p ){ + nFull = sqlite3MallocSize(p); + sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, nFull); + sqlite3StatusAdd(SQLITE_STATUS_MALLOC_COUNT, 1); + } + *pp = p; + return nFull; +} + +/* +** Allocate memory. This routine is like sqlite3_malloc() except that it +** assumes the memory subsystem has already been initialized. +*/ +SQLITE_PRIVATE void *sqlite3Malloc(int n){ + void *p; + if( n<=0 /* IMP: R-65312-04917 */ + || n>=0x7fffff00 + ){ + /* A memory allocation of a number of bytes which is near the maximum + ** signed integer value might cause an integer overflow inside of the + ** xMalloc(). Hence we limit the maximum size to 0x7fffff00, giving + ** 255 bytes of overhead. SQLite itself will never use anything near + ** this amount. The only way to reach the limit is with sqlite3_malloc() */ + p = 0; + }else if( sqlite3GlobalConfig.bMemstat ){ + sqlite3_mutex_enter(mem0.mutex); + mallocWithAlarm(n, &p); + sqlite3_mutex_leave(mem0.mutex); + }else{ + p = sqlite3GlobalConfig.m.xMalloc(n); + } + assert( EIGHT_BYTE_ALIGNMENT(p) ); /* IMP: R-04675-44850 */ + return p; +} + +/* +** This version of the memory allocation is for use by the application. +** First make sure the memory subsystem is initialized, then do the +** allocation. +*/ +SQLITE_API void *sqlite3_malloc(int n){ +#ifndef SQLITE_OMIT_AUTOINIT + if( sqlite3_initialize() ) return 0; +#endif + return sqlite3Malloc(n); +} + +/* +** Each thread may only have a single outstanding allocation from +** xScratchMalloc(). We verify this constraint in the single-threaded +** case by setting scratchAllocOut to 1 when an allocation +** is outstanding clearing it when the allocation is freed. +*/ +#if SQLITE_THREADSAFE==0 && !defined(NDEBUG) +static int scratchAllocOut = 0; +#endif + + +/* +** Allocate memory that is to be used and released right away. +** This routine is similar to alloca() in that it is not intended +** for situations where the memory might be held long-term. This +** routine is intended to get memory to old large transient data +** structures that would not normally fit on the stack of an +** embedded processor. +*/ +SQLITE_PRIVATE void *sqlite3ScratchMalloc(int n){ + void *p; + assert( n>0 ); + + sqlite3_mutex_enter(mem0.mutex); + if( mem0.nScratchFree && sqlite3GlobalConfig.szScratch>=n ){ + p = mem0.pScratchFree; + mem0.pScratchFree = mem0.pScratchFree->pNext; + mem0.nScratchFree--; + sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_USED, 1); + sqlite3StatusSet(SQLITE_STATUS_SCRATCH_SIZE, n); + sqlite3_mutex_leave(mem0.mutex); + }else{ + if( sqlite3GlobalConfig.bMemstat ){ + sqlite3StatusSet(SQLITE_STATUS_SCRATCH_SIZE, n); + n = mallocWithAlarm(n, &p); + if( p ) sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_OVERFLOW, n); + sqlite3_mutex_leave(mem0.mutex); + }else{ + sqlite3_mutex_leave(mem0.mutex); + p = sqlite3GlobalConfig.m.xMalloc(n); + } + sqlite3MemdebugSetType(p, MEMTYPE_SCRATCH); + } + assert( sqlite3_mutex_notheld(mem0.mutex) ); + + +#if SQLITE_THREADSAFE==0 && !defined(NDEBUG) + /* Verify that no more than two scratch allocations per thread + ** are outstanding at one time. (This is only checked in the + ** single-threaded case since checking in the multi-threaded case + ** would be much more complicated.) */ + assert( scratchAllocOut<=1 ); + if( p ) scratchAllocOut++; +#endif + + return p; +} +SQLITE_PRIVATE void sqlite3ScratchFree(void *p){ + if( p ){ + +#if SQLITE_THREADSAFE==0 && !defined(NDEBUG) + /* Verify that no more than two scratch allocation per thread + ** is outstanding at one time. (This is only checked in the + ** single-threaded case since checking in the multi-threaded case + ** would be much more complicated.) */ + assert( scratchAllocOut>=1 && scratchAllocOut<=2 ); + scratchAllocOut--; +#endif + + if( p>=sqlite3GlobalConfig.pScratch && ppNext = mem0.pScratchFree; + mem0.pScratchFree = pSlot; + mem0.nScratchFree++; + assert( mem0.nScratchFree <= (u32)sqlite3GlobalConfig.nScratch ); + sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_USED, -1); + sqlite3_mutex_leave(mem0.mutex); + }else{ + /* Release memory back to the heap */ + assert( sqlite3MemdebugHasType(p, MEMTYPE_SCRATCH) ); + assert( sqlite3MemdebugNoType(p, ~MEMTYPE_SCRATCH) ); + sqlite3MemdebugSetType(p, MEMTYPE_HEAP); + if( sqlite3GlobalConfig.bMemstat ){ + int iSize = sqlite3MallocSize(p); + sqlite3_mutex_enter(mem0.mutex); + sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_OVERFLOW, -iSize); + sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -iSize); + sqlite3StatusAdd(SQLITE_STATUS_MALLOC_COUNT, -1); + sqlite3GlobalConfig.m.xFree(p); + sqlite3_mutex_leave(mem0.mutex); + }else{ + sqlite3GlobalConfig.m.xFree(p); + } + } + } +} + +/* +** TRUE if p is a lookaside memory allocation from db +*/ +#ifndef SQLITE_OMIT_LOOKASIDE +static int isLookaside(sqlite3 *db, void *p){ + return p>=db->lookaside.pStart && plookaside.pEnd; +} +#else +#define isLookaside(A,B) 0 +#endif + +/* +** Return the size of a memory allocation previously obtained from +** sqlite3Malloc() or sqlite3_malloc(). +*/ +SQLITE_PRIVATE int sqlite3MallocSize(void *p){ + assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); + assert( sqlite3MemdebugNoType(p, MEMTYPE_DB) ); + return sqlite3GlobalConfig.m.xSize(p); +} +SQLITE_PRIVATE int sqlite3DbMallocSize(sqlite3 *db, void *p){ + assert( db!=0 ); + assert( sqlite3_mutex_held(db->mutex) ); + if( isLookaside(db, p) ){ + return db->lookaside.sz; + }else{ + assert( sqlite3MemdebugHasType(p, MEMTYPE_DB) ); + assert( sqlite3MemdebugHasType(p, MEMTYPE_LOOKASIDE|MEMTYPE_HEAP) ); + assert( db!=0 || sqlite3MemdebugNoType(p, MEMTYPE_LOOKASIDE) ); + return sqlite3GlobalConfig.m.xSize(p); + } +} + +/* +** Free memory previously obtained from sqlite3Malloc(). +*/ +SQLITE_API void sqlite3_free(void *p){ + if( p==0 ) return; /* IMP: R-49053-54554 */ + assert( sqlite3MemdebugNoType(p, MEMTYPE_DB) ); + assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); + if( sqlite3GlobalConfig.bMemstat ){ + sqlite3_mutex_enter(mem0.mutex); + sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -sqlite3MallocSize(p)); + sqlite3StatusAdd(SQLITE_STATUS_MALLOC_COUNT, -1); + sqlite3GlobalConfig.m.xFree(p); + sqlite3_mutex_leave(mem0.mutex); + }else{ + sqlite3GlobalConfig.m.xFree(p); + } +} + +/* +** Free memory that might be associated with a particular database +** connection. +*/ +SQLITE_PRIVATE void sqlite3DbFree(sqlite3 *db, void *p){ + assert( db==0 || sqlite3_mutex_held(db->mutex) ); + if( p==0 ) return; + if( db ){ + if( db->pnBytesFreed ){ + *db->pnBytesFreed += sqlite3DbMallocSize(db, p); + return; + } + if( isLookaside(db, p) ){ + LookasideSlot *pBuf = (LookasideSlot*)p; +#if SQLITE_DEBUG + /* Trash all content in the buffer being freed */ + memset(p, 0xaa, db->lookaside.sz); +#endif + pBuf->pNext = db->lookaside.pFree; + db->lookaside.pFree = pBuf; + db->lookaside.nOut--; + return; + } + } + assert( sqlite3MemdebugHasType(p, MEMTYPE_DB) ); + assert( sqlite3MemdebugHasType(p, MEMTYPE_LOOKASIDE|MEMTYPE_HEAP) ); + assert( db!=0 || sqlite3MemdebugNoType(p, MEMTYPE_LOOKASIDE) ); + sqlite3MemdebugSetType(p, MEMTYPE_HEAP); + sqlite3_free(p); +} + +/* +** Change the size of an existing memory allocation +*/ +SQLITE_PRIVATE void *sqlite3Realloc(void *pOld, int nBytes){ + int nOld, nNew, nDiff; + void *pNew; + if( pOld==0 ){ + return sqlite3Malloc(nBytes); /* IMP: R-28354-25769 */ + } + if( nBytes<=0 ){ + sqlite3_free(pOld); /* IMP: R-31593-10574 */ + return 0; + } + if( nBytes>=0x7fffff00 ){ + /* The 0x7ffff00 limit term is explained in comments on sqlite3Malloc() */ + return 0; + } + nOld = sqlite3MallocSize(pOld); + /* IMPLEMENTATION-OF: R-46199-30249 SQLite guarantees that the second + ** argument to xRealloc is always a value returned by a prior call to + ** xRoundup. */ + nNew = sqlite3GlobalConfig.m.xRoundup(nBytes); + if( nOld==nNew ){ + pNew = pOld; + }else if( sqlite3GlobalConfig.bMemstat ){ + sqlite3_mutex_enter(mem0.mutex); + sqlite3StatusSet(SQLITE_STATUS_MALLOC_SIZE, nBytes); + nDiff = nNew - nOld; + if( sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED) >= + mem0.alarmThreshold-nDiff ){ + sqlite3MallocAlarm(nDiff); + } + assert( sqlite3MemdebugHasType(pOld, MEMTYPE_HEAP) ); + assert( sqlite3MemdebugNoType(pOld, ~MEMTYPE_HEAP) ); + pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); + if( pNew==0 && mem0.alarmCallback ){ + sqlite3MallocAlarm(nBytes); + pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); + } + if( pNew ){ + nNew = sqlite3MallocSize(pNew); + sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, nNew-nOld); + } + sqlite3_mutex_leave(mem0.mutex); + }else{ + pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); + } + assert( EIGHT_BYTE_ALIGNMENT(pNew) ); /* IMP: R-04675-44850 */ + return pNew; +} + +/* +** The public interface to sqlite3Realloc. Make sure that the memory +** subsystem is initialized prior to invoking sqliteRealloc. +*/ +SQLITE_API void *sqlite3_realloc(void *pOld, int n){ +#ifndef SQLITE_OMIT_AUTOINIT + if( sqlite3_initialize() ) return 0; +#endif + return sqlite3Realloc(pOld, n); +} + + +/* +** Allocate and zero memory. +*/ +SQLITE_PRIVATE void *sqlite3MallocZero(int n){ + void *p = sqlite3Malloc(n); + if( p ){ + memset(p, 0, n); + } + return p; +} + +/* +** Allocate and zero memory. If the allocation fails, make +** the mallocFailed flag in the connection pointer. +*/ +SQLITE_PRIVATE void *sqlite3DbMallocZero(sqlite3 *db, int n){ + void *p = sqlite3DbMallocRaw(db, n); + if( p ){ + memset(p, 0, n); + } + return p; +} + +/* +** Allocate and zero memory. If the allocation fails, make +** the mallocFailed flag in the connection pointer. +** +** If db!=0 and db->mallocFailed is true (indicating a prior malloc +** failure on the same database connection) then always return 0. +** Hence for a particular database connection, once malloc starts +** failing, it fails consistently until mallocFailed is reset. +** This is an important assumption. There are many places in the +** code that do things like this: +** +** int *a = (int*)sqlite3DbMallocRaw(db, 100); +** int *b = (int*)sqlite3DbMallocRaw(db, 200); +** if( b ) a[10] = 9; +** +** In other words, if a subsequent malloc (ex: "b") worked, it is assumed +** that all prior mallocs (ex: "a") worked too. +*/ +SQLITE_PRIVATE void *sqlite3DbMallocRaw(sqlite3 *db, int n){ + void *p; + assert( db==0 || sqlite3_mutex_held(db->mutex) ); + assert( db==0 || db->pnBytesFreed==0 ); +#ifndef SQLITE_OMIT_LOOKASIDE + if( db ){ + LookasideSlot *pBuf; + if( db->mallocFailed ){ + return 0; + } + if( db->lookaside.bEnabled ){ + if( n>db->lookaside.sz ){ + db->lookaside.anStat[1]++; + }else if( (pBuf = db->lookaside.pFree)==0 ){ + db->lookaside.anStat[2]++; + }else{ + db->lookaside.pFree = pBuf->pNext; + db->lookaside.nOut++; + db->lookaside.anStat[0]++; + if( db->lookaside.nOut>db->lookaside.mxOut ){ + db->lookaside.mxOut = db->lookaside.nOut; + } + return (void*)pBuf; + } + } + } +#else + if( db && db->mallocFailed ){ + return 0; + } +#endif + p = sqlite3Malloc(n); + if( !p && db ){ + db->mallocFailed = 1; + } + sqlite3MemdebugSetType(p, MEMTYPE_DB | + ((db && db->lookaside.bEnabled) ? MEMTYPE_LOOKASIDE : MEMTYPE_HEAP)); + return p; +} + +/* +** Resize the block of memory pointed to by p to n bytes. If the +** resize fails, set the mallocFailed flag in the connection object. +*/ +SQLITE_PRIVATE void *sqlite3DbRealloc(sqlite3 *db, void *p, int n){ + void *pNew = 0; + assert( db!=0 ); + assert( sqlite3_mutex_held(db->mutex) ); + if( db->mallocFailed==0 ){ + if( p==0 ){ + return sqlite3DbMallocRaw(db, n); + } + if( isLookaside(db, p) ){ + if( n<=db->lookaside.sz ){ + return p; + } + pNew = sqlite3DbMallocRaw(db, n); + if( pNew ){ + memcpy(pNew, p, db->lookaside.sz); + sqlite3DbFree(db, p); + } + }else{ + assert( sqlite3MemdebugHasType(p, MEMTYPE_DB) ); + assert( sqlite3MemdebugHasType(p, MEMTYPE_LOOKASIDE|MEMTYPE_HEAP) ); + sqlite3MemdebugSetType(p, MEMTYPE_HEAP); + pNew = sqlite3_realloc(p, n); + if( !pNew ){ + sqlite3MemdebugSetType(p, MEMTYPE_DB|MEMTYPE_HEAP); + db->mallocFailed = 1; + } + sqlite3MemdebugSetType(pNew, MEMTYPE_DB | + (db->lookaside.bEnabled ? MEMTYPE_LOOKASIDE : MEMTYPE_HEAP)); + } + } + return pNew; +} + +/* +** Attempt to reallocate p. If the reallocation fails, then free p +** and set the mallocFailed flag in the database connection. +*/ +SQLITE_PRIVATE void *sqlite3DbReallocOrFree(sqlite3 *db, void *p, int n){ + void *pNew; + pNew = sqlite3DbRealloc(db, p, n); + if( !pNew ){ + sqlite3DbFree(db, p); + } + return pNew; +} + +/* +** Make a copy of a string in memory obtained from sqliteMalloc(). These +** functions call sqlite3MallocRaw() directly instead of sqliteMalloc(). This +** is because when memory debugging is turned on, these two functions are +** called via macros that record the current file and line number in the +** ThreadData structure. +*/ +SQLITE_PRIVATE char *sqlite3DbStrDup(sqlite3 *db, const char *z){ + char *zNew; + size_t n; + if( z==0 ){ + return 0; + } + n = sqlite3Strlen30(z) + 1; + assert( (n&0x7fffffff)==n ); + zNew = sqlite3DbMallocRaw(db, (int)n); + if( zNew ){ + memcpy(zNew, z, n); + } + return zNew; +} +SQLITE_PRIVATE char *sqlite3DbStrNDup(sqlite3 *db, const char *z, int n){ + char *zNew; + if( z==0 ){ + return 0; + } + assert( (n&0x7fffffff)==n ); + zNew = sqlite3DbMallocRaw(db, n+1); + if( zNew ){ + memcpy(zNew, z, n); + zNew[n] = 0; + } + return zNew; +} + +/* +** Create a string from the zFromat argument and the va_list that follows. +** Store the string in memory obtained from sqliteMalloc() and make *pz +** point to that string. +*/ +SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){ + va_list ap; + char *z; + + va_start(ap, zFormat); + z = sqlite3VMPrintf(db, zFormat, ap); + va_end(ap); + sqlite3DbFree(db, *pz); + *pz = z; +} + + +/* +** This function must be called before exiting any API function (i.e. +** returning control to the user) that has called sqlite3_malloc or +** sqlite3_realloc. +** +** The returned value is normally a copy of the second argument to this +** function. However, if a malloc() failure has occurred since the previous +** invocation SQLITE_NOMEM is returned instead. +** +** If the first argument, db, is not NULL and a malloc() error has occurred, +** then the connection error-code (the value returned by sqlite3_errcode()) +** is set to SQLITE_NOMEM. +*/ +SQLITE_PRIVATE int sqlite3ApiExit(sqlite3* db, int rc){ + /* If the db handle is not NULL, then we must hold the connection handle + ** mutex here. Otherwise the read (and possible write) of db->mallocFailed + ** is unsafe, as is the call to sqlite3Error(). + */ + assert( !db || sqlite3_mutex_held(db->mutex) ); + if( db && (db->mallocFailed || rc==SQLITE_IOERR_NOMEM) ){ + sqlite3Error(db, SQLITE_NOMEM, 0); + db->mallocFailed = 0; + rc = SQLITE_NOMEM; + } + return rc & (db ? db->errMask : 0xff); +} + +/************** End of malloc.c **********************************************/ +/************** Begin file printf.c ******************************************/ +/* +** The "printf" code that follows dates from the 1980's. It is in +** the public domain. The original comments are included here for +** completeness. They are very out-of-date but might be useful as +** an historical reference. Most of the "enhancements" have been backed +** out so that the functionality is now the same as standard printf(). +** +************************************************************************** +** +** This file contains code for a set of "printf"-like routines. These +** routines format strings much like the printf() from the standard C +** library, though the implementation here has enhancements to support +** SQLlite. +*/ + +/* +** Conversion types fall into various categories as defined by the +** following enumeration. +*/ +#define etRADIX 1 /* Integer types. %d, %x, %o, and so forth */ +#define etFLOAT 2 /* Floating point. %f */ +#define etEXP 3 /* Exponentional notation. %e and %E */ +#define etGENERIC 4 /* Floating or exponential, depending on exponent. %g */ +#define etSIZE 5 /* Return number of characters processed so far. %n */ +#define etSTRING 6 /* Strings. %s */ +#define etDYNSTRING 7 /* Dynamically allocated strings. %z */ +#define etPERCENT 8 /* Percent symbol. %% */ +#define etCHARX 9 /* Characters. %c */ +/* The rest are extensions, not normally found in printf() */ +#define etSQLESCAPE 10 /* Strings with '\'' doubled. %q */ +#define etSQLESCAPE2 11 /* Strings with '\'' doubled and enclosed in '', + NULL pointers replaced by SQL NULL. %Q */ +#define etTOKEN 12 /* a pointer to a Token structure */ +#define etSRCLIST 13 /* a pointer to a SrcList */ +#define etPOINTER 14 /* The %p conversion */ +#define etSQLESCAPE3 15 /* %w -> Strings with '\"' doubled */ +#define etORDINAL 16 /* %r -> 1st, 2nd, 3rd, 4th, etc. English only */ + +#define etINVALID 0 /* Any unrecognized conversion type */ + + +/* +** An "etByte" is an 8-bit unsigned value. +*/ +typedef unsigned char etByte; + +/* +** Each builtin conversion character (ex: the 'd' in "%d") is described +** by an instance of the following structure +*/ +typedef struct et_info { /* Information about each format field */ + char fmttype; /* The format field code letter */ + etByte base; /* The base for radix conversion */ + etByte flags; /* One or more of FLAG_ constants below */ + etByte type; /* Conversion paradigm */ + etByte charset; /* Offset into aDigits[] of the digits string */ + etByte prefix; /* Offset into aPrefix[] of the prefix string */ +} et_info; + +/* +** Allowed values for et_info.flags +*/ +#define FLAG_SIGNED 1 /* True if the value to convert is signed */ +#define FLAG_INTERN 2 /* True if for internal use only */ +#define FLAG_STRING 4 /* Allow infinity precision */ + + +/* +** The following table is searched linearly, so it is good to put the +** most frequently used conversion types first. +*/ +static const char aDigits[] = "0123456789ABCDEF0123456789abcdef"; +static const char aPrefix[] = "-x0\000X0"; +static const et_info fmtinfo[] = { + { 'd', 10, 1, etRADIX, 0, 0 }, + { 's', 0, 4, etSTRING, 0, 0 }, + { 'g', 0, 1, etGENERIC, 30, 0 }, + { 'z', 0, 4, etDYNSTRING, 0, 0 }, + { 'q', 0, 4, etSQLESCAPE, 0, 0 }, + { 'Q', 0, 4, etSQLESCAPE2, 0, 0 }, + { 'w', 0, 4, etSQLESCAPE3, 0, 0 }, + { 'c', 0, 0, etCHARX, 0, 0 }, + { 'o', 8, 0, etRADIX, 0, 2 }, + { 'u', 10, 0, etRADIX, 0, 0 }, + { 'x', 16, 0, etRADIX, 16, 1 }, + { 'X', 16, 0, etRADIX, 0, 4 }, +#ifndef SQLITE_OMIT_FLOATING_POINT + { 'f', 0, 1, etFLOAT, 0, 0 }, + { 'e', 0, 1, etEXP, 30, 0 }, + { 'E', 0, 1, etEXP, 14, 0 }, + { 'G', 0, 1, etGENERIC, 14, 0 }, +#endif + { 'i', 10, 1, etRADIX, 0, 0 }, + { 'n', 0, 0, etSIZE, 0, 0 }, + { '%', 0, 0, etPERCENT, 0, 0 }, + { 'p', 16, 0, etPOINTER, 0, 1 }, + +/* All the rest have the FLAG_INTERN bit set and are thus for internal +** use only */ + { 'T', 0, 2, etTOKEN, 0, 0 }, + { 'S', 0, 2, etSRCLIST, 0, 0 }, + { 'r', 10, 3, etORDINAL, 0, 0 }, +}; + +/* +** If SQLITE_OMIT_FLOATING_POINT is defined, then none of the floating point +** conversions will work. +*/ +#ifndef SQLITE_OMIT_FLOATING_POINT +/* +** "*val" is a double such that 0.1 <= *val < 10.0 +** Return the ascii code for the leading digit of *val, then +** multiply "*val" by 10.0 to renormalize. +** +** Example: +** input: *val = 3.14159 +** output: *val = 1.4159 function return = '3' +** +** The counter *cnt is incremented each time. After counter exceeds +** 16 (the number of significant digits in a 64-bit float) '0' is +** always returned. +*/ +static char et_getdigit(LONGDOUBLE_TYPE *val, int *cnt){ + int digit; + LONGDOUBLE_TYPE d; + if( (*cnt)<=0 ) return '0'; + (*cnt)--; + digit = (int)*val; + d = digit; + digit += '0'; + *val = (*val - d)*10.0; + return (char)digit; +} +#endif /* SQLITE_OMIT_FLOATING_POINT */ + +/* +** Set the StrAccum object to an error mode. +*/ +static void setStrAccumError(StrAccum *p, u8 eError){ + p->accError = eError; + p->nAlloc = 0; +} + +/* +** Extra argument values from a PrintfArguments object +*/ +static sqlite3_int64 getIntArg(PrintfArguments *p){ + if( p->nArg<=p->nUsed ) return 0; + return sqlite3_value_int64(p->apArg[p->nUsed++]); +} +static double getDoubleArg(PrintfArguments *p){ + if( p->nArg<=p->nUsed ) return 0.0; + return sqlite3_value_double(p->apArg[p->nUsed++]); +} +static char *getTextArg(PrintfArguments *p){ + if( p->nArg<=p->nUsed ) return 0; + return (char*)sqlite3_value_text(p->apArg[p->nUsed++]); +} + + +/* +** On machines with a small stack size, you can redefine the +** SQLITE_PRINT_BUF_SIZE to be something smaller, if desired. +*/ +#ifndef SQLITE_PRINT_BUF_SIZE +# define SQLITE_PRINT_BUF_SIZE 70 +#endif +#define etBUFSIZE SQLITE_PRINT_BUF_SIZE /* Size of the output buffer */ + +/* +** Render a string given by "fmt" into the StrAccum object. +*/ +SQLITE_PRIVATE void sqlite3VXPrintf( + StrAccum *pAccum, /* Accumulate results here */ + u32 bFlags, /* SQLITE_PRINTF_* flags */ + const char *fmt, /* Format string */ + va_list ap /* arguments */ +){ + int c; /* Next character in the format string */ + char *bufpt; /* Pointer to the conversion buffer */ + int precision; /* Precision of the current field */ + int length; /* Length of the field */ + int idx; /* A general purpose loop counter */ + int width; /* Width of the current field */ + etByte flag_leftjustify; /* True if "-" flag is present */ + etByte flag_plussign; /* True if "+" flag is present */ + etByte flag_blanksign; /* True if " " flag is present */ + etByte flag_alternateform; /* True if "#" flag is present */ + etByte flag_altform2; /* True if "!" flag is present */ + etByte flag_zeropad; /* True if field width constant starts with zero */ + etByte flag_long; /* True if "l" flag is present */ + etByte flag_longlong; /* True if the "ll" flag is present */ + etByte done; /* Loop termination flag */ + etByte xtype = 0; /* Conversion paradigm */ + u8 bArgList; /* True for SQLITE_PRINTF_SQLFUNC */ + u8 useIntern; /* Ok to use internal conversions (ex: %T) */ + char prefix; /* Prefix character. "+" or "-" or " " or '\0'. */ + sqlite_uint64 longvalue; /* Value for integer types */ + LONGDOUBLE_TYPE realvalue; /* Value for real types */ + const et_info *infop; /* Pointer to the appropriate info structure */ + char *zOut; /* Rendering buffer */ + int nOut; /* Size of the rendering buffer */ + char *zExtra; /* Malloced memory used by some conversion */ +#ifndef SQLITE_OMIT_FLOATING_POINT + int exp, e2; /* exponent of real numbers */ + int nsd; /* Number of significant digits returned */ + double rounder; /* Used for rounding floating point values */ + etByte flag_dp; /* True if decimal point should be shown */ + etByte flag_rtz; /* True if trailing zeros should be removed */ +#endif + PrintfArguments *pArgList = 0; /* Arguments for SQLITE_PRINTF_SQLFUNC */ + char buf[etBUFSIZE]; /* Conversion buffer */ + + bufpt = 0; + if( bFlags ){ + if( (bArgList = (bFlags & SQLITE_PRINTF_SQLFUNC))!=0 ){ + pArgList = va_arg(ap, PrintfArguments*); + } + useIntern = bFlags & SQLITE_PRINTF_INTERNAL; + }else{ + bArgList = useIntern = 0; + } + for(; (c=(*fmt))!=0; ++fmt){ + if( c!='%' ){ + bufpt = (char *)fmt; + while( (c=(*++fmt))!='%' && c!=0 ){}; + sqlite3StrAccumAppend(pAccum, bufpt, (int)(fmt - bufpt)); + if( c==0 ) break; + } + if( (c=(*++fmt))==0 ){ + sqlite3StrAccumAppend(pAccum, "%", 1); + break; + } + /* Find out what flags are present */ + flag_leftjustify = flag_plussign = flag_blanksign = + flag_alternateform = flag_altform2 = flag_zeropad = 0; + done = 0; + do{ + switch( c ){ + case '-': flag_leftjustify = 1; break; + case '+': flag_plussign = 1; break; + case ' ': flag_blanksign = 1; break; + case '#': flag_alternateform = 1; break; + case '!': flag_altform2 = 1; break; + case '0': flag_zeropad = 1; break; + default: done = 1; break; + } + }while( !done && (c=(*++fmt))!=0 ); + /* Get the field width */ + width = 0; + if( c=='*' ){ + if( bArgList ){ + width = (int)getIntArg(pArgList); + }else{ + width = va_arg(ap,int); + } + if( width<0 ){ + flag_leftjustify = 1; + width = -width; + } + c = *++fmt; + }else{ + while( c>='0' && c<='9' ){ + width = width*10 + c - '0'; + c = *++fmt; + } + } + /* Get the precision */ + if( c=='.' ){ + precision = 0; + c = *++fmt; + if( c=='*' ){ + if( bArgList ){ + precision = (int)getIntArg(pArgList); + }else{ + precision = va_arg(ap,int); + } + if( precision<0 ) precision = -precision; + c = *++fmt; + }else{ + while( c>='0' && c<='9' ){ + precision = precision*10 + c - '0'; + c = *++fmt; + } + } + }else{ + precision = -1; + } + /* Get the conversion type modifier */ + if( c=='l' ){ + flag_long = 1; + c = *++fmt; + if( c=='l' ){ + flag_longlong = 1; + c = *++fmt; + }else{ + flag_longlong = 0; + } + }else{ + flag_long = flag_longlong = 0; + } + /* Fetch the info entry for the field */ + infop = &fmtinfo[0]; + xtype = etINVALID; + for(idx=0; idxflags & FLAG_INTERN)==0 ){ + xtype = infop->type; + }else{ + return; + } + break; + } + } + zExtra = 0; + + /* + ** At this point, variables are initialized as follows: + ** + ** flag_alternateform TRUE if a '#' is present. + ** flag_altform2 TRUE if a '!' is present. + ** flag_plussign TRUE if a '+' is present. + ** flag_leftjustify TRUE if a '-' is present or if the + ** field width was negative. + ** flag_zeropad TRUE if the width began with 0. + ** flag_long TRUE if the letter 'l' (ell) prefixed + ** the conversion character. + ** flag_longlong TRUE if the letter 'll' (ell ell) prefixed + ** the conversion character. + ** flag_blanksign TRUE if a ' ' is present. + ** width The specified field width. This is + ** always non-negative. Zero is the default. + ** precision The specified precision. The default + ** is -1. + ** xtype The class of the conversion. + ** infop Pointer to the appropriate info struct. + */ + switch( xtype ){ + case etPOINTER: + flag_longlong = sizeof(char*)==sizeof(i64); + flag_long = sizeof(char*)==sizeof(long int); + /* Fall through into the next case */ + case etORDINAL: + case etRADIX: + if( infop->flags & FLAG_SIGNED ){ + i64 v; + if( bArgList ){ + v = getIntArg(pArgList); + }else if( flag_longlong ){ + v = va_arg(ap,i64); + }else if( flag_long ){ + v = va_arg(ap,long int); + }else{ + v = va_arg(ap,int); + } + if( v<0 ){ + if( v==SMALLEST_INT64 ){ + longvalue = ((u64)1)<<63; + }else{ + longvalue = -v; + } + prefix = '-'; + }else{ + longvalue = v; + if( flag_plussign ) prefix = '+'; + else if( flag_blanksign ) prefix = ' '; + else prefix = 0; + } + }else{ + if( bArgList ){ + longvalue = (u64)getIntArg(pArgList); + }else if( flag_longlong ){ + longvalue = va_arg(ap,u64); + }else if( flag_long ){ + longvalue = va_arg(ap,unsigned long int); + }else{ + longvalue = va_arg(ap,unsigned int); + } + prefix = 0; + } + if( longvalue==0 ) flag_alternateform = 0; + if( flag_zeropad && precision=4 || (longvalue/10)%10==1 ){ + x = 0; + } + *(--bufpt) = zOrd[x*2+1]; + *(--bufpt) = zOrd[x*2]; + } + { + const char *cset = &aDigits[infop->charset]; + u8 base = infop->base; + do{ /* Convert to ascii */ + *(--bufpt) = cset[longvalue%base]; + longvalue = longvalue/base; + }while( longvalue>0 ); + } + length = (int)(&zOut[nOut-1]-bufpt); + for(idx=precision-length; idx>0; idx--){ + *(--bufpt) = '0'; /* Zero pad */ + } + if( prefix ) *(--bufpt) = prefix; /* Add sign */ + if( flag_alternateform && infop->prefix ){ /* Add "0" or "0x" */ + const char *pre; + char x; + pre = &aPrefix[infop->prefix]; + for(; (x=(*pre))!=0; pre++) *(--bufpt) = x; + } + length = (int)(&zOut[nOut-1]-bufpt); + break; + case etFLOAT: + case etEXP: + case etGENERIC: + if( bArgList ){ + realvalue = getDoubleArg(pArgList); + }else{ + realvalue = va_arg(ap,double); + } +#ifdef SQLITE_OMIT_FLOATING_POINT + length = 0; +#else + if( precision<0 ) precision = 6; /* Set default precision */ + if( realvalue<0.0 ){ + realvalue = -realvalue; + prefix = '-'; + }else{ + if( flag_plussign ) prefix = '+'; + else if( flag_blanksign ) prefix = ' '; + else prefix = 0; + } + if( xtype==etGENERIC && precision>0 ) precision--; + for(idx=precision, rounder=0.5; idx>0; idx--, rounder*=0.1){} + if( xtype==etFLOAT ) realvalue += rounder; + /* Normalize realvalue to within 10.0 > realvalue >= 1.0 */ + exp = 0; + if( sqlite3IsNaN((double)realvalue) ){ + bufpt = "NaN"; + length = 3; + break; + } + if( realvalue>0.0 ){ + LONGDOUBLE_TYPE scale = 1.0; + while( realvalue>=1e100*scale && exp<=350 ){ scale *= 1e100;exp+=100;} + while( realvalue>=1e64*scale && exp<=350 ){ scale *= 1e64; exp+=64; } + while( realvalue>=1e8*scale && exp<=350 ){ scale *= 1e8; exp+=8; } + while( realvalue>=10.0*scale && exp<=350 ){ scale *= 10.0; exp++; } + realvalue /= scale; + while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; } + while( realvalue<1.0 ){ realvalue *= 10.0; exp--; } + if( exp>350 ){ + if( prefix=='-' ){ + bufpt = "-Inf"; + }else if( prefix=='+' ){ + bufpt = "+Inf"; + }else{ + bufpt = "Inf"; + } + length = sqlite3Strlen30(bufpt); + break; + } + } + bufpt = buf; + /* + ** If the field type is etGENERIC, then convert to either etEXP + ** or etFLOAT, as appropriate. + */ + if( xtype!=etFLOAT ){ + realvalue += rounder; + if( realvalue>=10.0 ){ realvalue *= 0.1; exp++; } + } + if( xtype==etGENERIC ){ + flag_rtz = !flag_alternateform; + if( exp<-4 || exp>precision ){ + xtype = etEXP; + }else{ + precision = precision - exp; + xtype = etFLOAT; + } + }else{ + flag_rtz = flag_altform2; + } + if( xtype==etEXP ){ + e2 = 0; + }else{ + e2 = exp; + } + if( MAX(e2,0)+precision+width > etBUFSIZE - 15 ){ + bufpt = zExtra = sqlite3Malloc( MAX(e2,0)+precision+width+15 ); + if( bufpt==0 ){ + setStrAccumError(pAccum, STRACCUM_NOMEM); + return; + } + } + zOut = bufpt; + nsd = 16 + flag_altform2*10; + flag_dp = (precision>0 ?1:0) | flag_alternateform | flag_altform2; + /* The sign in front of the number */ + if( prefix ){ + *(bufpt++) = prefix; + } + /* Digits prior to the decimal point */ + if( e2<0 ){ + *(bufpt++) = '0'; + }else{ + for(; e2>=0; e2--){ + *(bufpt++) = et_getdigit(&realvalue,&nsd); + } + } + /* The decimal point */ + if( flag_dp ){ + *(bufpt++) = '.'; + } + /* "0" digits after the decimal point but before the first + ** significant digit of the number */ + for(e2++; e2<0; precision--, e2++){ + assert( precision>0 ); + *(bufpt++) = '0'; + } + /* Significant digits after the decimal point */ + while( (precision--)>0 ){ + *(bufpt++) = et_getdigit(&realvalue,&nsd); + } + /* Remove trailing zeros and the "." if no digits follow the "." */ + if( flag_rtz && flag_dp ){ + while( bufpt[-1]=='0' ) *(--bufpt) = 0; + assert( bufpt>zOut ); + if( bufpt[-1]=='.' ){ + if( flag_altform2 ){ + *(bufpt++) = '0'; + }else{ + *(--bufpt) = 0; + } + } + } + /* Add the "eNNN" suffix */ + if( xtype==etEXP ){ + *(bufpt++) = aDigits[infop->charset]; + if( exp<0 ){ + *(bufpt++) = '-'; exp = -exp; + }else{ + *(bufpt++) = '+'; + } + if( exp>=100 ){ + *(bufpt++) = (char)((exp/100)+'0'); /* 100's digit */ + exp %= 100; + } + *(bufpt++) = (char)(exp/10+'0'); /* 10's digit */ + *(bufpt++) = (char)(exp%10+'0'); /* 1's digit */ + } + *bufpt = 0; + + /* The converted number is in buf[] and zero terminated. Output it. + ** Note that the number is in the usual order, not reversed as with + ** integer conversions. */ + length = (int)(bufpt-zOut); + bufpt = zOut; + + /* Special case: Add leading zeros if the flag_zeropad flag is + ** set and we are not left justified */ + if( flag_zeropad && !flag_leftjustify && length < width){ + int i; + int nPad = width - length; + for(i=width; i>=nPad; i--){ + bufpt[i] = bufpt[i-nPad]; + } + i = prefix!=0; + while( nPad-- ) bufpt[i++] = '0'; + length = width; + } +#endif /* !defined(SQLITE_OMIT_FLOATING_POINT) */ + break; + case etSIZE: + if( !bArgList ){ + *(va_arg(ap,int*)) = pAccum->nChar; + } + length = width = 0; + break; + case etPERCENT: + buf[0] = '%'; + bufpt = buf; + length = 1; + break; + case etCHARX: + if( bArgList ){ + bufpt = getTextArg(pArgList); + c = bufpt ? bufpt[0] : 0; + }else{ + c = va_arg(ap,int); + } + buf[0] = (char)c; + if( precision>=0 ){ + for(idx=1; idx=0 ){ + for(length=0; lengthetBUFSIZE ){ + bufpt = zExtra = sqlite3Malloc( n ); + if( bufpt==0 ){ + setStrAccumError(pAccum, STRACCUM_NOMEM); + return; + } + }else{ + bufpt = buf; + } + j = 0; + if( needQuote ) bufpt[j++] = q; + k = i; + for(i=0; i=0 && precisionn ){ + sqlite3StrAccumAppend(pAccum, (const char*)pToken->z, pToken->n); + } + length = width = 0; + break; + } + case etSRCLIST: { + SrcList *pSrc = va_arg(ap, SrcList*); + int k = va_arg(ap, int); + struct SrcList_item *pItem = &pSrc->a[k]; + assert( bArgList==0 ); + assert( k>=0 && knSrc ); + if( pItem->zDatabase ){ + sqlite3StrAccumAppendAll(pAccum, pItem->zDatabase); + sqlite3StrAccumAppend(pAccum, ".", 1); + } + sqlite3StrAccumAppendAll(pAccum, pItem->zName); + length = width = 0; + break; + } + default: { + assert( xtype==etINVALID ); + return; + } + }/* End switch over the format type */ + /* + ** The text of the conversion is pointed to by "bufpt" and is + ** "length" characters long. The field width is "width". Do + ** the output. + */ + width -= length; + if( width>0 && !flag_leftjustify ) sqlite3AppendSpace(pAccum, width); + sqlite3StrAccumAppend(pAccum, bufpt, length); + if( width>0 && flag_leftjustify ) sqlite3AppendSpace(pAccum, width); + + if( zExtra ) sqlite3_free(zExtra); + }/* End for loop over the format string */ +} /* End of function */ + +/* +** Enlarge the memory allocation on a StrAccum object so that it is +** able to accept at least N more bytes of text. +** +** Return the number of bytes of text that StrAccum is able to accept +** after the attempted enlargement. The value returned might be zero. +*/ +static int sqlite3StrAccumEnlarge(StrAccum *p, int N){ + char *zNew; + assert( p->nChar+N >= p->nAlloc ); /* Only called if really needed */ + if( p->accError ){ + testcase(p->accError==STRACCUM_TOOBIG); + testcase(p->accError==STRACCUM_NOMEM); + return 0; + } + if( !p->useMalloc ){ + N = p->nAlloc - p->nChar - 1; + setStrAccumError(p, STRACCUM_TOOBIG); + return N; + }else{ + char *zOld = (p->zText==p->zBase ? 0 : p->zText); + i64 szNew = p->nChar; + szNew += N + 1; + if( szNew > p->mxAlloc ){ + sqlite3StrAccumReset(p); + setStrAccumError(p, STRACCUM_TOOBIG); + return 0; + }else{ + p->nAlloc = (int)szNew; + } + if( p->useMalloc==1 ){ + zNew = sqlite3DbRealloc(p->db, zOld, p->nAlloc); + }else{ + zNew = sqlite3_realloc(zOld, p->nAlloc); + } + if( zNew ){ + assert( p->zText!=0 || p->nChar==0 ); + if( zOld==0 && p->nChar>0 ) memcpy(zNew, p->zText, p->nChar); + p->zText = zNew; + }else{ + sqlite3StrAccumReset(p); + setStrAccumError(p, STRACCUM_NOMEM); + return 0; + } + } + return N; +} + +/* +** Append N space characters to the given string buffer. +*/ +SQLITE_PRIVATE void sqlite3AppendSpace(StrAccum *p, int N){ + if( p->nChar+N >= p->nAlloc && (N = sqlite3StrAccumEnlarge(p, N))<=0 ) return; + while( (N--)>0 ) p->zText[p->nChar++] = ' '; +} + +/* +** The StrAccum "p" is not large enough to accept N new bytes of z[]. +** So enlarge if first, then do the append. +** +** This is a helper routine to sqlite3StrAccumAppend() that does special-case +** work (enlarging the buffer) using tail recursion, so that the +** sqlite3StrAccumAppend() routine can use fast calling semantics. +*/ +static void enlargeAndAppend(StrAccum *p, const char *z, int N){ + N = sqlite3StrAccumEnlarge(p, N); + if( N>0 ){ + memcpy(&p->zText[p->nChar], z, N); + p->nChar += N; + } +} + +/* +** Append N bytes of text from z to the StrAccum object. Increase the +** size of the memory allocation for StrAccum if necessary. +*/ +SQLITE_PRIVATE void sqlite3StrAccumAppend(StrAccum *p, const char *z, int N){ + assert( z!=0 ); + assert( p->zText!=0 || p->nChar==0 || p->accError ); + assert( N>=0 ); + assert( p->accError==0 || p->nAlloc==0 ); + if( p->nChar+N >= p->nAlloc ){ + enlargeAndAppend(p,z,N); + return; + } + assert( p->zText ); + memcpy(&p->zText[p->nChar], z, N); + p->nChar += N; +} + +/* +** Append the complete text of zero-terminated string z[] to the p string. +*/ +SQLITE_PRIVATE void sqlite3StrAccumAppendAll(StrAccum *p, const char *z){ + sqlite3StrAccumAppend(p, z, sqlite3Strlen30(z)); +} + + +/* +** Finish off a string by making sure it is zero-terminated. +** Return a pointer to the resulting string. Return a NULL +** pointer if any kind of error was encountered. +*/ +SQLITE_PRIVATE char *sqlite3StrAccumFinish(StrAccum *p){ + if( p->zText ){ + p->zText[p->nChar] = 0; + if( p->useMalloc && p->zText==p->zBase ){ + if( p->useMalloc==1 ){ + p->zText = sqlite3DbMallocRaw(p->db, p->nChar+1 ); + }else{ + p->zText = sqlite3_malloc(p->nChar+1); + } + if( p->zText ){ + memcpy(p->zText, p->zBase, p->nChar+1); + }else{ + setStrAccumError(p, STRACCUM_NOMEM); + } + } + } + return p->zText; +} + +/* +** Reset an StrAccum string. Reclaim all malloced memory. +*/ +SQLITE_PRIVATE void sqlite3StrAccumReset(StrAccum *p){ + if( p->zText!=p->zBase ){ + if( p->useMalloc==1 ){ + sqlite3DbFree(p->db, p->zText); + }else{ + sqlite3_free(p->zText); + } + } + p->zText = 0; +} + +/* +** Initialize a string accumulator +*/ +SQLITE_PRIVATE void sqlite3StrAccumInit(StrAccum *p, char *zBase, int n, int mx){ + p->zText = p->zBase = zBase; + p->db = 0; + p->nChar = 0; + p->nAlloc = n; + p->mxAlloc = mx; + p->useMalloc = 1; + p->accError = 0; +} + +/* +** Print into memory obtained from sqliteMalloc(). Use the internal +** %-conversion extensions. +*/ +SQLITE_PRIVATE char *sqlite3VMPrintf(sqlite3 *db, const char *zFormat, va_list ap){ + char *z; + char zBase[SQLITE_PRINT_BUF_SIZE]; + StrAccum acc; + assert( db!=0 ); + sqlite3StrAccumInit(&acc, zBase, sizeof(zBase), + db->aLimit[SQLITE_LIMIT_LENGTH]); + acc.db = db; + sqlite3VXPrintf(&acc, SQLITE_PRINTF_INTERNAL, zFormat, ap); + z = sqlite3StrAccumFinish(&acc); + if( acc.accError==STRACCUM_NOMEM ){ + db->mallocFailed = 1; + } + return z; +} + +/* +** Print into memory obtained from sqliteMalloc(). Use the internal +** %-conversion extensions. +*/ +SQLITE_PRIVATE char *sqlite3MPrintf(sqlite3 *db, const char *zFormat, ...){ + va_list ap; + char *z; + va_start(ap, zFormat); + z = sqlite3VMPrintf(db, zFormat, ap); + va_end(ap); + return z; +} + +/* +** Like sqlite3MPrintf(), but call sqlite3DbFree() on zStr after formatting +** the string and before returnning. This routine is intended to be used +** to modify an existing string. For example: +** +** x = sqlite3MPrintf(db, x, "prefix %s suffix", x); +** +*/ +SQLITE_PRIVATE char *sqlite3MAppendf(sqlite3 *db, char *zStr, const char *zFormat, ...){ + va_list ap; + char *z; + va_start(ap, zFormat); + z = sqlite3VMPrintf(db, zFormat, ap); + va_end(ap); + sqlite3DbFree(db, zStr); + return z; +} + +/* +** Print into memory obtained from sqlite3_malloc(). Omit the internal +** %-conversion extensions. +*/ +SQLITE_API char *sqlite3_vmprintf(const char *zFormat, va_list ap){ + char *z; + char zBase[SQLITE_PRINT_BUF_SIZE]; + StrAccum acc; +#ifndef SQLITE_OMIT_AUTOINIT + if( sqlite3_initialize() ) return 0; +#endif + sqlite3StrAccumInit(&acc, zBase, sizeof(zBase), SQLITE_MAX_LENGTH); + acc.useMalloc = 2; + sqlite3VXPrintf(&acc, 0, zFormat, ap); + z = sqlite3StrAccumFinish(&acc); + return z; +} + +/* +** Print into memory obtained from sqlite3_malloc()(). Omit the internal +** %-conversion extensions. +*/ +SQLITE_API char *sqlite3_mprintf(const char *zFormat, ...){ + va_list ap; + char *z; +#ifndef SQLITE_OMIT_AUTOINIT + if( sqlite3_initialize() ) return 0; +#endif + va_start(ap, zFormat); + z = sqlite3_vmprintf(zFormat, ap); + va_end(ap); + return z; +} + +/* +** sqlite3_snprintf() works like snprintf() except that it ignores the +** current locale settings. This is important for SQLite because we +** are not able to use a "," as the decimal point in place of "." as +** specified by some locales. +** +** Oops: The first two arguments of sqlite3_snprintf() are backwards +** from the snprintf() standard. Unfortunately, it is too late to change +** this without breaking compatibility, so we just have to live with the +** mistake. +** +** sqlite3_vsnprintf() is the varargs version. +*/ +SQLITE_API char *sqlite3_vsnprintf(int n, char *zBuf, const char *zFormat, va_list ap){ + StrAccum acc; + if( n<=0 ) return zBuf; + sqlite3StrAccumInit(&acc, zBuf, n, 0); + acc.useMalloc = 0; + sqlite3VXPrintf(&acc, 0, zFormat, ap); + return sqlite3StrAccumFinish(&acc); +} +SQLITE_API char *sqlite3_snprintf(int n, char *zBuf, const char *zFormat, ...){ + char *z; + va_list ap; + va_start(ap,zFormat); + z = sqlite3_vsnprintf(n, zBuf, zFormat, ap); + va_end(ap); + return z; +} + +/* +** This is the routine that actually formats the sqlite3_log() message. +** We house it in a separate routine from sqlite3_log() to avoid using +** stack space on small-stack systems when logging is disabled. +** +** sqlite3_log() must render into a static buffer. It cannot dynamically +** allocate memory because it might be called while the memory allocator +** mutex is held. +*/ +static void renderLogMsg(int iErrCode, const char *zFormat, va_list ap){ + StrAccum acc; /* String accumulator */ + char zMsg[SQLITE_PRINT_BUF_SIZE*3]; /* Complete log message */ + + sqlite3StrAccumInit(&acc, zMsg, sizeof(zMsg), 0); + acc.useMalloc = 0; + sqlite3VXPrintf(&acc, 0, zFormat, ap); + sqlite3GlobalConfig.xLog(sqlite3GlobalConfig.pLogArg, iErrCode, + sqlite3StrAccumFinish(&acc)); +} + +/* +** Format and write a message to the log if logging is enabled. +*/ +SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...){ + va_list ap; /* Vararg list */ + if( sqlite3GlobalConfig.xLog ){ + va_start(ap, zFormat); + renderLogMsg(iErrCode, zFormat, ap); + va_end(ap); + } +} + +#if defined(SQLITE_DEBUG) +/* +** A version of printf() that understands %lld. Used for debugging. +** The printf() built into some versions of windows does not understand %lld +** and segfaults if you give it a long long int. +*/ +SQLITE_PRIVATE void sqlite3DebugPrintf(const char *zFormat, ...){ + va_list ap; + StrAccum acc; + char zBuf[500]; + sqlite3StrAccumInit(&acc, zBuf, sizeof(zBuf), 0); + acc.useMalloc = 0; + va_start(ap,zFormat); + sqlite3VXPrintf(&acc, 0, zFormat, ap); + va_end(ap); + sqlite3StrAccumFinish(&acc); + fprintf(stdout,"%s", zBuf); + fflush(stdout); +} +#endif + +/* +** variable-argument wrapper around sqlite3VXPrintf(). +*/ +SQLITE_PRIVATE void sqlite3XPrintf(StrAccum *p, u32 bFlags, const char *zFormat, ...){ + va_list ap; + va_start(ap,zFormat); + sqlite3VXPrintf(p, bFlags, zFormat, ap); + va_end(ap); +} + +/************** End of printf.c **********************************************/ +/************** Begin file random.c ******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code to implement a pseudo-random number +** generator (PRNG) for SQLite. +** +** Random numbers are used by some of the database backends in order +** to generate random integer keys for tables or random filenames. +*/ + + +/* All threads share a single random number generator. +** This structure is the current state of the generator. +*/ +static SQLITE_WSD struct sqlite3PrngType { + unsigned char isInit; /* True if initialized */ + unsigned char i, j; /* State variables */ + unsigned char s[256]; /* State variables */ +} sqlite3Prng; + +/* +** Return N random bytes. +*/ +SQLITE_API void sqlite3_randomness(int N, void *pBuf){ + unsigned char t; + unsigned char *zBuf = pBuf; + + /* The "wsdPrng" macro will resolve to the pseudo-random number generator + ** state vector. If writable static data is unsupported on the target, + ** we have to locate the state vector at run-time. In the more common + ** case where writable static data is supported, wsdPrng can refer directly + ** to the "sqlite3Prng" state vector declared above. + */ +#ifdef SQLITE_OMIT_WSD + struct sqlite3PrngType *p = &GLOBAL(struct sqlite3PrngType, sqlite3Prng); +# define wsdPrng p[0] +#else +# define wsdPrng sqlite3Prng +#endif + +#if SQLITE_THREADSAFE + sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_PRNG); + sqlite3_mutex_enter(mutex); +#endif + + if( N<=0 ){ + wsdPrng.isInit = 0; + sqlite3_mutex_leave(mutex); + return; + } + + /* Initialize the state of the random number generator once, + ** the first time this routine is called. The seed value does + ** not need to contain a lot of randomness since we are not + ** trying to do secure encryption or anything like that... + ** + ** Nothing in this file or anywhere else in SQLite does any kind of + ** encryption. The RC4 algorithm is being used as a PRNG (pseudo-random + ** number generator) not as an encryption device. + */ + if( !wsdPrng.isInit ){ + int i; + char k[256]; + wsdPrng.j = 0; + wsdPrng.i = 0; + sqlite3OsRandomness(sqlite3_vfs_find(0), 256, k); + for(i=0; i<256; i++){ + wsdPrng.s[i] = (u8)i; + } + for(i=0; i<256; i++){ + wsdPrng.j += wsdPrng.s[i] + k[i]; + t = wsdPrng.s[wsdPrng.j]; + wsdPrng.s[wsdPrng.j] = wsdPrng.s[i]; + wsdPrng.s[i] = t; + } + wsdPrng.isInit = 1; + } + + assert( N>0 ); + do{ + wsdPrng.i++; + t = wsdPrng.s[wsdPrng.i]; + wsdPrng.j += t; + wsdPrng.s[wsdPrng.i] = wsdPrng.s[wsdPrng.j]; + wsdPrng.s[wsdPrng.j] = t; + t += wsdPrng.s[wsdPrng.i]; + *(zBuf++) = wsdPrng.s[t]; + }while( --N ); + sqlite3_mutex_leave(mutex); +} + +#ifndef SQLITE_OMIT_BUILTIN_TEST +/* +** For testing purposes, we sometimes want to preserve the state of +** PRNG and restore the PRNG to its saved state at a later time, or +** to reset the PRNG to its initial state. These routines accomplish +** those tasks. +** +** The sqlite3_test_control() interface calls these routines to +** control the PRNG. +*/ +static SQLITE_WSD struct sqlite3PrngType sqlite3SavedPrng; +SQLITE_PRIVATE void sqlite3PrngSaveState(void){ + memcpy( + &GLOBAL(struct sqlite3PrngType, sqlite3SavedPrng), + &GLOBAL(struct sqlite3PrngType, sqlite3Prng), + sizeof(sqlite3Prng) + ); +} +SQLITE_PRIVATE void sqlite3PrngRestoreState(void){ + memcpy( + &GLOBAL(struct sqlite3PrngType, sqlite3Prng), + &GLOBAL(struct sqlite3PrngType, sqlite3SavedPrng), + sizeof(sqlite3Prng) + ); +} +#endif /* SQLITE_OMIT_BUILTIN_TEST */ + +/************** End of random.c **********************************************/ +/************** Begin file utf.c *********************************************/ +/* +** 2004 April 13 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains routines used to translate between UTF-8, +** UTF-16, UTF-16BE, and UTF-16LE. +** +** Notes on UTF-8: +** +** Byte-0 Byte-1 Byte-2 Byte-3 Value +** 0xxxxxxx 00000000 00000000 0xxxxxxx +** 110yyyyy 10xxxxxx 00000000 00000yyy yyxxxxxx +** 1110zzzz 10yyyyyy 10xxxxxx 00000000 zzzzyyyy yyxxxxxx +** 11110uuu 10uuzzzz 10yyyyyy 10xxxxxx 000uuuuu zzzzyyyy yyxxxxxx +** +** +** Notes on UTF-16: (with wwww+1==uuuuu) +** +** Word-0 Word-1 Value +** 110110ww wwzzzzyy 110111yy yyxxxxxx 000uuuuu zzzzyyyy yyxxxxxx +** zzzzyyyy yyxxxxxx 00000000 zzzzyyyy yyxxxxxx +** +** +** BOM or Byte Order Mark: +** 0xff 0xfe little-endian utf-16 follows +** 0xfe 0xff big-endian utf-16 follows +** +*/ +/* #include */ + +#ifndef SQLITE_AMALGAMATION +/* +** The following constant value is used by the SQLITE_BIGENDIAN and +** SQLITE_LITTLEENDIAN macros. +*/ +SQLITE_PRIVATE const int sqlite3one = 1; +#endif /* SQLITE_AMALGAMATION */ + +/* +** This lookup table is used to help decode the first byte of +** a multi-byte UTF8 character. +*/ +static const unsigned char sqlite3Utf8Trans1[] = { + 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, + 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, + 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, + 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, + 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, +}; + + +#define WRITE_UTF8(zOut, c) { \ + if( c<0x00080 ){ \ + *zOut++ = (u8)(c&0xFF); \ + } \ + else if( c<0x00800 ){ \ + *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \ + *zOut++ = 0x80 + (u8)(c & 0x3F); \ + } \ + else if( c<0x10000 ){ \ + *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \ + *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ + *zOut++ = 0x80 + (u8)(c & 0x3F); \ + }else{ \ + *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \ + *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \ + *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ + *zOut++ = 0x80 + (u8)(c & 0x3F); \ + } \ +} + +#define WRITE_UTF16LE(zOut, c) { \ + if( c<=0xFFFF ){ \ + *zOut++ = (u8)(c&0x00FF); \ + *zOut++ = (u8)((c>>8)&0x00FF); \ + }else{ \ + *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \ + *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \ + *zOut++ = (u8)(c&0x00FF); \ + *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \ + } \ +} + +#define WRITE_UTF16BE(zOut, c) { \ + if( c<=0xFFFF ){ \ + *zOut++ = (u8)((c>>8)&0x00FF); \ + *zOut++ = (u8)(c&0x00FF); \ + }else{ \ + *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \ + *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \ + *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \ + *zOut++ = (u8)(c&0x00FF); \ + } \ +} + +#define READ_UTF16LE(zIn, TERM, c){ \ + c = (*zIn++); \ + c += ((*zIn++)<<8); \ + if( c>=0xD800 && c<0xE000 && TERM ){ \ + int c2 = (*zIn++); \ + c2 += ((*zIn++)<<8); \ + c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \ + } \ +} + +#define READ_UTF16BE(zIn, TERM, c){ \ + c = ((*zIn++)<<8); \ + c += (*zIn++); \ + if( c>=0xD800 && c<0xE000 && TERM ){ \ + int c2 = ((*zIn++)<<8); \ + c2 += (*zIn++); \ + c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \ + } \ +} + +/* +** Translate a single UTF-8 character. Return the unicode value. +** +** During translation, assume that the byte that zTerm points +** is a 0x00. +** +** Write a pointer to the next unread byte back into *pzNext. +** +** Notes On Invalid UTF-8: +** +** * This routine never allows a 7-bit character (0x00 through 0x7f) to +** be encoded as a multi-byte character. Any multi-byte character that +** attempts to encode a value between 0x00 and 0x7f is rendered as 0xfffd. +** +** * This routine never allows a UTF16 surrogate value to be encoded. +** If a multi-byte character attempts to encode a value between +** 0xd800 and 0xe000 then it is rendered as 0xfffd. +** +** * Bytes in the range of 0x80 through 0xbf which occur as the first +** byte of a character are interpreted as single-byte characters +** and rendered as themselves even though they are technically +** invalid characters. +** +** * This routine accepts an infinite number of different UTF8 encodings +** for unicode values 0x80 and greater. It do not change over-length +** encodings to 0xfffd as some systems recommend. +*/ +#define READ_UTF8(zIn, zTerm, c) \ + c = *(zIn++); \ + if( c>=0xc0 ){ \ + c = sqlite3Utf8Trans1[c-0xc0]; \ + while( zIn!=zTerm && (*zIn & 0xc0)==0x80 ){ \ + c = (c<<6) + (0x3f & *(zIn++)); \ + } \ + if( c<0x80 \ + || (c&0xFFFFF800)==0xD800 \ + || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \ + } +SQLITE_PRIVATE u32 sqlite3Utf8Read( + const unsigned char **pz /* Pointer to string from which to read char */ +){ + unsigned int c; + + /* Same as READ_UTF8() above but without the zTerm parameter. + ** For this routine, we assume the UTF8 string is always zero-terminated. + */ + c = *((*pz)++); + if( c>=0xc0 ){ + c = sqlite3Utf8Trans1[c-0xc0]; + while( (*(*pz) & 0xc0)==0x80 ){ + c = (c<<6) + (0x3f & *((*pz)++)); + } + if( c<0x80 + || (c&0xFFFFF800)==0xD800 + || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } + } + return c; +} + + + + +/* +** If the TRANSLATE_TRACE macro is defined, the value of each Mem is +** printed on stderr on the way into and out of sqlite3VdbeMemTranslate(). +*/ +/* #define TRANSLATE_TRACE 1 */ + +#ifndef SQLITE_OMIT_UTF16 +/* +** This routine transforms the internal text encoding used by pMem to +** desiredEnc. It is an error if the string is already of the desired +** encoding, or if *pMem does not contain a string value. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){ + int len; /* Maximum length of output string in bytes */ + unsigned char *zOut; /* Output buffer */ + unsigned char *zIn; /* Input iterator */ + unsigned char *zTerm; /* End of input */ + unsigned char *z; /* Output iterator */ + unsigned int c; + + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + assert( pMem->flags&MEM_Str ); + assert( pMem->enc!=desiredEnc ); + assert( pMem->enc!=0 ); + assert( pMem->n>=0 ); + +#if defined(TRANSLATE_TRACE) && defined(SQLITE_DEBUG) + { + char zBuf[100]; + sqlite3VdbeMemPrettyPrint(pMem, zBuf); + fprintf(stderr, "INPUT: %s\n", zBuf); + } +#endif + + /* If the translation is between UTF-16 little and big endian, then + ** all that is required is to swap the byte order. This case is handled + ** differently from the others. + */ + if( pMem->enc!=SQLITE_UTF8 && desiredEnc!=SQLITE_UTF8 ){ + u8 temp; + int rc; + rc = sqlite3VdbeMemMakeWriteable(pMem); + if( rc!=SQLITE_OK ){ + assert( rc==SQLITE_NOMEM ); + return SQLITE_NOMEM; + } + zIn = (u8*)pMem->z; + zTerm = &zIn[pMem->n&~1]; + while( zInenc = desiredEnc; + goto translate_out; + } + + /* Set len to the maximum number of bytes required in the output buffer. */ + if( desiredEnc==SQLITE_UTF8 ){ + /* When converting from UTF-16, the maximum growth results from + ** translating a 2-byte character to a 4-byte UTF-8 character. + ** A single byte is required for the output string + ** nul-terminator. + */ + pMem->n &= ~1; + len = pMem->n * 2 + 1; + }else{ + /* When converting from UTF-8 to UTF-16 the maximum growth is caused + ** when a 1-byte UTF-8 character is translated into a 2-byte UTF-16 + ** character. Two bytes are required in the output buffer for the + ** nul-terminator. + */ + len = pMem->n * 2 + 2; + } + + /* Set zIn to point at the start of the input buffer and zTerm to point 1 + ** byte past the end. + ** + ** Variable zOut is set to point at the output buffer, space obtained + ** from sqlite3_malloc(). + */ + zIn = (u8*)pMem->z; + zTerm = &zIn[pMem->n]; + zOut = sqlite3DbMallocRaw(pMem->db, len); + if( !zOut ){ + return SQLITE_NOMEM; + } + z = zOut; + + if( pMem->enc==SQLITE_UTF8 ){ + if( desiredEnc==SQLITE_UTF16LE ){ + /* UTF-8 -> UTF-16 Little-endian */ + while( zIn UTF-16 Big-endian */ + while( zInn = (int)(z - zOut); + *z++ = 0; + }else{ + assert( desiredEnc==SQLITE_UTF8 ); + if( pMem->enc==SQLITE_UTF16LE ){ + /* UTF-16 Little-endian -> UTF-8 */ + while( zIn UTF-8 */ + while( zInn = (int)(z - zOut); + } + *z = 0; + assert( (pMem->n+(desiredEnc==SQLITE_UTF8?1:2))<=len ); + + sqlite3VdbeMemRelease(pMem); + pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem); + pMem->enc = desiredEnc; + pMem->flags |= (MEM_Term); + pMem->z = (char*)zOut; + pMem->zMalloc = pMem->z; + +translate_out: +#if defined(TRANSLATE_TRACE) && defined(SQLITE_DEBUG) + { + char zBuf[100]; + sqlite3VdbeMemPrettyPrint(pMem, zBuf); + fprintf(stderr, "OUTPUT: %s\n", zBuf); + } +#endif + return SQLITE_OK; +} + +/* +** This routine checks for a byte-order mark at the beginning of the +** UTF-16 string stored in *pMem. If one is present, it is removed and +** the encoding of the Mem adjusted. This routine does not do any +** byte-swapping, it just sets Mem.enc appropriately. +** +** The allocation (static, dynamic etc.) and encoding of the Mem may be +** changed by this function. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemHandleBom(Mem *pMem){ + int rc = SQLITE_OK; + u8 bom = 0; + + assert( pMem->n>=0 ); + if( pMem->n>1 ){ + u8 b1 = *(u8 *)pMem->z; + u8 b2 = *(((u8 *)pMem->z) + 1); + if( b1==0xFE && b2==0xFF ){ + bom = SQLITE_UTF16BE; + } + if( b1==0xFF && b2==0xFE ){ + bom = SQLITE_UTF16LE; + } + } + + if( bom ){ + rc = sqlite3VdbeMemMakeWriteable(pMem); + if( rc==SQLITE_OK ){ + pMem->n -= 2; + memmove(pMem->z, &pMem->z[2], pMem->n); + pMem->z[pMem->n] = '\0'; + pMem->z[pMem->n+1] = '\0'; + pMem->flags |= MEM_Term; + pMem->enc = bom; + } + } + return rc; +} +#endif /* SQLITE_OMIT_UTF16 */ + +/* +** pZ is a UTF-8 encoded unicode string. If nByte is less than zero, +** return the number of unicode characters in pZ up to (but not including) +** the first 0x00 byte. If nByte is not less than zero, return the +** number of unicode characters in the first nByte of pZ (or up to +** the first 0x00, whichever comes first). +*/ +SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *zIn, int nByte){ + int r = 0; + const u8 *z = (const u8*)zIn; + const u8 *zTerm; + if( nByte>=0 ){ + zTerm = &z[nByte]; + }else{ + zTerm = (const u8*)(-1); + } + assert( z<=zTerm ); + while( *z!=0 && zmallocFailed ){ + sqlite3VdbeMemRelease(&m); + m.z = 0; + } + assert( (m.flags & MEM_Term)!=0 || db->mallocFailed ); + assert( (m.flags & MEM_Str)!=0 || db->mallocFailed ); + assert( m.z || db->mallocFailed ); + return m.z; +} + +/* +** zIn is a UTF-16 encoded unicode string at least nChar characters long. +** Return the number of bytes in the first nChar unicode characters +** in pZ. nChar must be non-negative. +*/ +SQLITE_PRIVATE int sqlite3Utf16ByteLen(const void *zIn, int nChar){ + int c; + unsigned char const *z = zIn; + int n = 0; + + if( SQLITE_UTF16NATIVE==SQLITE_UTF16BE ){ + while( n0 && n<=4 ); + z[0] = 0; + z = zBuf; + c = sqlite3Utf8Read((const u8**)&z); + t = i; + if( i>=0xD800 && i<=0xDFFF ) t = 0xFFFD; + if( (i&0xFFFFFFFE)==0xFFFE ) t = 0xFFFD; + assert( c==t ); + assert( (z-zBuf)==n ); + } + for(i=0; i<0x00110000; i++){ + if( i>=0xD800 && i<0xE000 ) continue; + z = zBuf; + WRITE_UTF16LE(z, i); + n = (int)(z-zBuf); + assert( n>0 && n<=4 ); + z[0] = 0; + z = zBuf; + READ_UTF16LE(z, 1, c); + assert( c==i ); + assert( (z-zBuf)==n ); + } + for(i=0; i<0x00110000; i++){ + if( i>=0xD800 && i<0xE000 ) continue; + z = zBuf; + WRITE_UTF16BE(z, i); + n = (int)(z-zBuf); + assert( n>0 && n<=4 ); + z[0] = 0; + z = zBuf; + READ_UTF16BE(z, 1, c); + assert( c==i ); + assert( (z-zBuf)==n ); + } +} +#endif /* SQLITE_TEST */ +#endif /* SQLITE_OMIT_UTF16 */ + +/************** End of utf.c *************************************************/ +/************** Begin file util.c ********************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** Utility functions used throughout sqlite. +** +** This file contains functions for allocating memory, comparing +** strings, and stuff like that. +** +*/ +/* #include */ +#ifdef SQLITE_HAVE_ISNAN +# include +#endif + +/* +** Routine needed to support the testcase() macro. +*/ +#ifdef SQLITE_COVERAGE_TEST +SQLITE_PRIVATE void sqlite3Coverage(int x){ + static unsigned dummy = 0; + dummy += (unsigned)x; +} +#endif + +/* +** Give a callback to the test harness that can be used to simulate faults +** in places where it is difficult or expensive to do so purely by means +** of inputs. +** +** The intent of the integer argument is to let the fault simulator know +** which of multiple sqlite3FaultSim() calls has been hit. +** +** Return whatever integer value the test callback returns, or return +** SQLITE_OK if no test callback is installed. +*/ +#ifndef SQLITE_OMIT_BUILTIN_TEST +SQLITE_PRIVATE int sqlite3FaultSim(int iTest){ + int (*xCallback)(int) = sqlite3GlobalConfig.xTestCallback; + return xCallback ? xCallback(iTest) : SQLITE_OK; +} +#endif + +#ifndef SQLITE_OMIT_FLOATING_POINT +/* +** Return true if the floating point value is Not a Number (NaN). +** +** Use the math library isnan() function if compiled with SQLITE_HAVE_ISNAN. +** Otherwise, we have our own implementation that works on most systems. +*/ +SQLITE_PRIVATE int sqlite3IsNaN(double x){ + int rc; /* The value return */ +#if !defined(SQLITE_HAVE_ISNAN) + /* + ** Systems that support the isnan() library function should probably + ** make use of it by compiling with -DSQLITE_HAVE_ISNAN. But we have + ** found that many systems do not have a working isnan() function so + ** this implementation is provided as an alternative. + ** + ** This NaN test sometimes fails if compiled on GCC with -ffast-math. + ** On the other hand, the use of -ffast-math comes with the following + ** warning: + ** + ** This option [-ffast-math] should never be turned on by any + ** -O option since it can result in incorrect output for programs + ** which depend on an exact implementation of IEEE or ISO + ** rules/specifications for math functions. + ** + ** Under MSVC, this NaN test may fail if compiled with a floating- + ** point precision mode other than /fp:precise. From the MSDN + ** documentation: + ** + ** The compiler [with /fp:precise] will properly handle comparisons + ** involving NaN. For example, x != x evaluates to true if x is NaN + ** ... + */ +#ifdef __FAST_MATH__ +# error SQLite will not work correctly with the -ffast-math option of GCC. +#endif + volatile double y = x; + volatile double z = y; + rc = (y!=z); +#else /* if defined(SQLITE_HAVE_ISNAN) */ + rc = isnan(x); +#endif /* SQLITE_HAVE_ISNAN */ + testcase( rc ); + return rc; +} +#endif /* SQLITE_OMIT_FLOATING_POINT */ + +/* +** Compute a string length that is limited to what can be stored in +** lower 30 bits of a 32-bit signed integer. +** +** The value returned will never be negative. Nor will it ever be greater +** than the actual length of the string. For very long strings (greater +** than 1GiB) the value returned might be less than the true string length. +*/ +SQLITE_PRIVATE int sqlite3Strlen30(const char *z){ + const char *z2 = z; + if( z==0 ) return 0; + while( *z2 ){ z2++; } + return 0x3fffffff & (int)(z2 - z); +} + +/* +** Set the most recent error code and error string for the sqlite +** handle "db". The error code is set to "err_code". +** +** If it is not NULL, string zFormat specifies the format of the +** error string in the style of the printf functions: The following +** format characters are allowed: +** +** %s Insert a string +** %z A string that should be freed after use +** %d Insert an integer +** %T Insert a token +** %S Insert the first element of a SrcList +** +** zFormat and any string tokens that follow it are assumed to be +** encoded in UTF-8. +** +** To clear the most recent error for sqlite handle "db", sqlite3Error +** should be called with err_code set to SQLITE_OK and zFormat set +** to NULL. +*/ +SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code, const char *zFormat, ...){ + assert( db!=0 ); + db->errCode = err_code; + if( zFormat && (db->pErr || (db->pErr = sqlite3ValueNew(db))!=0) ){ + char *z; + va_list ap; + va_start(ap, zFormat); + z = sqlite3VMPrintf(db, zFormat, ap); + va_end(ap); + sqlite3ValueSetStr(db->pErr, -1, z, SQLITE_UTF8, SQLITE_DYNAMIC); + }else if( db->pErr ){ + sqlite3ValueSetNull(db->pErr); + } +} + +/* +** Add an error message to pParse->zErrMsg and increment pParse->nErr. +** The following formatting characters are allowed: +** +** %s Insert a string +** %z A string that should be freed after use +** %d Insert an integer +** %T Insert a token +** %S Insert the first element of a SrcList +** +** This function should be used to report any error that occurs whilst +** compiling an SQL statement (i.e. within sqlite3_prepare()). The +** last thing the sqlite3_prepare() function does is copy the error +** stored by this function into the database handle using sqlite3Error(). +** Function sqlite3Error() should be used during statement execution +** (sqlite3_step() etc.). +*/ +SQLITE_PRIVATE void sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...){ + char *zMsg; + va_list ap; + sqlite3 *db = pParse->db; + va_start(ap, zFormat); + zMsg = sqlite3VMPrintf(db, zFormat, ap); + va_end(ap); + if( db->suppressErr ){ + sqlite3DbFree(db, zMsg); + }else{ + pParse->nErr++; + sqlite3DbFree(db, pParse->zErrMsg); + pParse->zErrMsg = zMsg; + pParse->rc = SQLITE_ERROR; + } +} + +/* +** Convert an SQL-style quoted string into a normal string by removing +** the quote characters. The conversion is done in-place. If the +** input does not begin with a quote character, then this routine +** is a no-op. +** +** The input string must be zero-terminated. A new zero-terminator +** is added to the dequoted string. +** +** The return value is -1 if no dequoting occurs or the length of the +** dequoted string, exclusive of the zero terminator, if dequoting does +** occur. +** +** 2002-Feb-14: This routine is extended to remove MS-Access style +** brackets from around identifers. For example: "[a-b-c]" becomes +** "a-b-c". +*/ +SQLITE_PRIVATE int sqlite3Dequote(char *z){ + char quote; + int i, j; + if( z==0 ) return -1; + quote = z[0]; + switch( quote ){ + case '\'': break; + case '"': break; + case '`': break; /* For MySQL compatibility */ + case '[': quote = ']'; break; /* For MS SqlServer compatibility */ + default: return -1; + } + for(i=1, j=0;; i++){ + assert( z[i] ); + if( z[i]==quote ){ + if( z[i+1]==quote ){ + z[j++] = quote; + i++; + }else{ + break; + } + }else{ + z[j++] = z[i]; + } + } + z[j] = 0; + return j; +} + +/* Convenient short-hand */ +#define UpperToLower sqlite3UpperToLower + +/* +** Some systems have stricmp(). Others have strcasecmp(). Because +** there is no consistency, we will define our own. +** +** IMPLEMENTATION-OF: R-30243-02494 The sqlite3_stricmp() and +** sqlite3_strnicmp() APIs allow applications and extensions to compare +** the contents of two buffers containing UTF-8 strings in a +** case-independent fashion, using the same definition of "case +** independence" that SQLite uses internally when comparing identifiers. +*/ +SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){ + register unsigned char *a, *b; + a = (unsigned char *)zLeft; + b = (unsigned char *)zRight; + while( *a!=0 && UpperToLower[*a]==UpperToLower[*b]){ a++; b++; } + return UpperToLower[*a] - UpperToLower[*b]; +} +SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ + register unsigned char *a, *b; + a = (unsigned char *)zLeft; + b = (unsigned char *)zRight; + while( N-- > 0 && *a!=0 && UpperToLower[*a]==UpperToLower[*b]){ a++; b++; } + return N<0 ? 0 : UpperToLower[*a] - UpperToLower[*b]; +} + +/* +** The string z[] is an text representation of a real number. +** Convert this string to a double and write it into *pResult. +** +** The string z[] is length bytes in length (bytes, not characters) and +** uses the encoding enc. The string is not necessarily zero-terminated. +** +** Return TRUE if the result is a valid real number (or integer) and FALSE +** if the string is empty or contains extraneous text. Valid numbers +** are in one of these formats: +** +** [+-]digits[E[+-]digits] +** [+-]digits.[digits][E[+-]digits] +** [+-].digits[E[+-]digits] +** +** Leading and trailing whitespace is ignored for the purpose of determining +** validity. +** +** If some prefix of the input string is a valid number, this routine +** returns FALSE but it still converts the prefix and writes the result +** into *pResult. +*/ +SQLITE_PRIVATE int sqlite3AtoF(const char *z, double *pResult, int length, u8 enc){ +#ifndef SQLITE_OMIT_FLOATING_POINT + int incr; + const char *zEnd = z + length; + /* sign * significand * (10 ^ (esign * exponent)) */ + int sign = 1; /* sign of significand */ + i64 s = 0; /* significand */ + int d = 0; /* adjust exponent for shifting decimal point */ + int esign = 1; /* sign of exponent */ + int e = 0; /* exponent */ + int eValid = 1; /* True exponent is either not used or is well-formed */ + double result; + int nDigits = 0; + int nonNum = 0; + + assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE ); + *pResult = 0.0; /* Default return value, in case of an error */ + + if( enc==SQLITE_UTF8 ){ + incr = 1; + }else{ + int i; + incr = 2; + assert( SQLITE_UTF16LE==2 && SQLITE_UTF16BE==3 ); + for(i=3-enc; i=zEnd ) return 0; + + /* get sign of significand */ + if( *z=='-' ){ + sign = -1; + z+=incr; + }else if( *z=='+' ){ + z+=incr; + } + + /* skip leading zeroes */ + while( z=zEnd ) goto do_atof_calc; + + /* if decimal point is present */ + if( *z=='.' ){ + z+=incr; + /* copy digits from after decimal to significand + ** (decrease exponent by d to shift decimal right) */ + while( z=zEnd ) goto do_atof_calc; + + /* if exponent is present */ + if( *z=='e' || *z=='E' ){ + z+=incr; + eValid = 0; + if( z>=zEnd ) goto do_atof_calc; + /* get sign of exponent */ + if( *z=='-' ){ + esign = -1; + z+=incr; + }else if( *z=='+' ){ + z+=incr; + } + /* copy digits to exponent */ + while( z0 ){ + while( s<(LARGEST_INT64/10) && e>0 ) e--,s*=10; + }else{ + while( !(s%10) && e>0 ) e--,s/=10; + } + + /* adjust the sign of significand */ + s = sign<0 ? -s : s; + + /* if exponent, scale significand as appropriate + ** and store in result. */ + if( e ){ + LONGDOUBLE_TYPE scale = 1.0; + /* attempt to handle extremely small/large numbers better */ + if( e>307 && e<342 ){ + while( e%308 ) { scale *= 1.0e+1; e -= 1; } + if( esign<0 ){ + result = s / scale; + result /= 1.0e+308; + }else{ + result = s * scale; + result *= 1.0e+308; + } + }else if( e>=342 ){ + if( esign<0 ){ + result = 0.0*s; + }else{ + result = 1e308*1e308*s; /* Infinity */ + } + }else{ + /* 1.0e+22 is the largest power of 10 than can be + ** represented exactly. */ + while( e%22 ) { scale *= 1.0e+1; e -= 1; } + while( e>0 ) { scale *= 1.0e+22; e -= 22; } + if( esign<0 ){ + result = s / scale; + }else{ + result = s * scale; + } + } + } else { + result = (double)s; + } + } + + /* store the result */ + *pResult = result; + + /* return true if number and no extra non-whitespace chracters after */ + return z>=zEnd && nDigits>0 && eValid && nonNum==0; +#else + return !sqlite3Atoi64(z, pResult, length, enc); +#endif /* SQLITE_OMIT_FLOATING_POINT */ +} + +/* +** Compare the 19-character string zNum against the text representation +** value 2^63: 9223372036854775808. Return negative, zero, or positive +** if zNum is less than, equal to, or greater than the string. +** Note that zNum must contain exactly 19 characters. +** +** Unlike memcmp() this routine is guaranteed to return the difference +** in the values of the last digit if the only difference is in the +** last digit. So, for example, +** +** compare2pow63("9223372036854775800", 1) +** +** will return -8. +*/ +static int compare2pow63(const char *zNum, int incr){ + int c = 0; + int i; + /* 012345678901234567 */ + const char *pow63 = "922337203685477580"; + for(i=0; c==0 && i<18; i++){ + c = (zNum[i*incr]-pow63[i])*10; + } + if( c==0 ){ + c = zNum[18*incr] - '8'; + testcase( c==(-1) ); + testcase( c==0 ); + testcase( c==(+1) ); + } + return c; +} + + +/* +** Convert zNum to a 64-bit signed integer. +** +** If the zNum value is representable as a 64-bit twos-complement +** integer, then write that value into *pNum and return 0. +** +** If zNum is exactly 9223372036854775808, return 2. This special +** case is broken out because while 9223372036854775808 cannot be a +** signed 64-bit integer, its negative -9223372036854775808 can be. +** +** If zNum is too big for a 64-bit integer and is not +** 9223372036854775808 or if zNum contains any non-numeric text, +** then return 1. +** +** length is the number of bytes in the string (bytes, not characters). +** The string is not necessarily zero-terminated. The encoding is +** given by enc. +*/ +SQLITE_PRIVATE int sqlite3Atoi64(const char *zNum, i64 *pNum, int length, u8 enc){ + int incr; + u64 u = 0; + int neg = 0; /* assume positive */ + int i; + int c = 0; + int nonNum = 0; + const char *zStart; + const char *zEnd = zNum + length; + assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE ); + if( enc==SQLITE_UTF8 ){ + incr = 1; + }else{ + incr = 2; + assert( SQLITE_UTF16LE==2 && SQLITE_UTF16BE==3 ); + for(i=3-enc; i='0' && c<='9'; i+=incr){ + u = u*10 + c - '0'; + } + if( u>LARGEST_INT64 ){ + *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; + }else if( neg ){ + *pNum = -(i64)u; + }else{ + *pNum = (i64)u; + } + testcase( i==18 ); + testcase( i==19 ); + testcase( i==20 ); + if( (c!=0 && &zNum[i]19*incr || nonNum ){ + /* zNum is empty or contains non-numeric text or is longer + ** than 19 digits (thus guaranteeing that it is too large) */ + return 1; + }else if( i<19*incr ){ + /* Less than 19 digits, so we know that it fits in 64 bits */ + assert( u<=LARGEST_INT64 ); + return 0; + }else{ + /* zNum is a 19-digit numbers. Compare it against 9223372036854775808. */ + c = compare2pow63(zNum, incr); + if( c<0 ){ + /* zNum is less than 9223372036854775808 so it fits */ + assert( u<=LARGEST_INT64 ); + return 0; + }else if( c>0 ){ + /* zNum is greater than 9223372036854775808 so it overflows */ + return 1; + }else{ + /* zNum is exactly 9223372036854775808. Fits if negative. The + ** special case 2 overflow if positive */ + assert( u-1==LARGEST_INT64 ); + return neg ? 0 : 2; + } + } +} + +/* +** If zNum represents an integer that will fit in 32-bits, then set +** *pValue to that integer and return true. Otherwise return false. +** +** Any non-numeric characters that following zNum are ignored. +** This is different from sqlite3Atoi64() which requires the +** input number to be zero-terminated. +*/ +SQLITE_PRIVATE int sqlite3GetInt32(const char *zNum, int *pValue){ + sqlite_int64 v = 0; + int i, c; + int neg = 0; + if( zNum[0]=='-' ){ + neg = 1; + zNum++; + }else if( zNum[0]=='+' ){ + zNum++; + } + while( zNum[0]=='0' ) zNum++; + for(i=0; i<11 && (c = zNum[i] - '0')>=0 && c<=9; i++){ + v = v*10 + c; + } + + /* The longest decimal representation of a 32 bit integer is 10 digits: + ** + ** 1234567890 + ** 2^31 -> 2147483648 + */ + testcase( i==10 ); + if( i>10 ){ + return 0; + } + testcase( v-neg==2147483647 ); + if( v-neg>2147483647 ){ + return 0; + } + if( neg ){ + v = -v; + } + *pValue = (int)v; + return 1; +} + +/* +** Return a 32-bit integer value extracted from a string. If the +** string is not an integer, just return 0. +*/ +SQLITE_PRIVATE int sqlite3Atoi(const char *z){ + int x = 0; + if( z ) sqlite3GetInt32(z, &x); + return x; +} + +/* +** The variable-length integer encoding is as follows: +** +** KEY: +** A = 0xxxxxxx 7 bits of data and one flag bit +** B = 1xxxxxxx 7 bits of data and one flag bit +** C = xxxxxxxx 8 bits of data +** +** 7 bits - A +** 14 bits - BA +** 21 bits - BBA +** 28 bits - BBBA +** 35 bits - BBBBA +** 42 bits - BBBBBA +** 49 bits - BBBBBBA +** 56 bits - BBBBBBBA +** 64 bits - BBBBBBBBC +*/ + +/* +** Write a 64-bit variable-length integer to memory starting at p[0]. +** The length of data write will be between 1 and 9 bytes. The number +** of bytes written is returned. +** +** A variable-length integer consists of the lower 7 bits of each byte +** for all bytes that have the 8th bit set and one byte with the 8th +** bit clear. Except, if we get to the 9th byte, it stores the full +** 8 bits and is the last byte. +*/ +SQLITE_PRIVATE int sqlite3PutVarint(unsigned char *p, u64 v){ + int i, j, n; + u8 buf[10]; + if( v & (((u64)0xff000000)<<32) ){ + p[8] = (u8)v; + v >>= 8; + for(i=7; i>=0; i--){ + p[i] = (u8)((v & 0x7f) | 0x80); + v >>= 7; + } + return 9; + } + n = 0; + do{ + buf[n++] = (u8)((v & 0x7f) | 0x80); + v >>= 7; + }while( v!=0 ); + buf[0] &= 0x7f; + assert( n<=9 ); + for(i=0, j=n-1; j>=0; j--, i++){ + p[i] = buf[j]; + } + return n; +} + +/* +** This routine is a faster version of sqlite3PutVarint() that only +** works for 32-bit positive integers and which is optimized for +** the common case of small integers. A MACRO version, putVarint32, +** is provided which inlines the single-byte case. All code should use +** the MACRO version as this function assumes the single-byte case has +** already been handled. +*/ +SQLITE_PRIVATE int sqlite3PutVarint32(unsigned char *p, u32 v){ +#ifndef putVarint32 + if( (v & ~0x7f)==0 ){ + p[0] = v; + return 1; + } +#endif + if( (v & ~0x3fff)==0 ){ + p[0] = (u8)((v>>7) | 0x80); + p[1] = (u8)(v & 0x7f); + return 2; + } + return sqlite3PutVarint(p, v); +} + +/* +** Bitmasks used by sqlite3GetVarint(). These precomputed constants +** are defined here rather than simply putting the constant expressions +** inline in order to work around bugs in the RVT compiler. +** +** SLOT_2_0 A mask for (0x7f<<14) | 0x7f +** +** SLOT_4_2_0 A mask for (0x7f<<28) | SLOT_2_0 +*/ +#define SLOT_2_0 0x001fc07f +#define SLOT_4_2_0 0xf01fc07f + + +/* +** Read a 64-bit variable-length integer from memory starting at p[0]. +** Return the number of bytes read. The value is stored in *v. +*/ +SQLITE_PRIVATE u8 sqlite3GetVarint(const unsigned char *p, u64 *v){ + u32 a,b,s; + + a = *p; + /* a: p0 (unmasked) */ + if (!(a&0x80)) + { + *v = a; + return 1; + } + + p++; + b = *p; + /* b: p1 (unmasked) */ + if (!(b&0x80)) + { + a &= 0x7f; + a = a<<7; + a |= b; + *v = a; + return 2; + } + + /* Verify that constants are precomputed correctly */ + assert( SLOT_2_0 == ((0x7f<<14) | (0x7f)) ); + assert( SLOT_4_2_0 == ((0xfU<<28) | (0x7f<<14) | (0x7f)) ); + + p++; + a = a<<14; + a |= *p; + /* a: p0<<14 | p2 (unmasked) */ + if (!(a&0x80)) + { + a &= SLOT_2_0; + b &= 0x7f; + b = b<<7; + a |= b; + *v = a; + return 3; + } + + /* CSE1 from below */ + a &= SLOT_2_0; + p++; + b = b<<14; + b |= *p; + /* b: p1<<14 | p3 (unmasked) */ + if (!(b&0x80)) + { + b &= SLOT_2_0; + /* moved CSE1 up */ + /* a &= (0x7f<<14)|(0x7f); */ + a = a<<7; + a |= b; + *v = a; + return 4; + } + + /* a: p0<<14 | p2 (masked) */ + /* b: p1<<14 | p3 (unmasked) */ + /* 1:save off p0<<21 | p1<<14 | p2<<7 | p3 (masked) */ + /* moved CSE1 up */ + /* a &= (0x7f<<14)|(0x7f); */ + b &= SLOT_2_0; + s = a; + /* s: p0<<14 | p2 (masked) */ + + p++; + a = a<<14; + a |= *p; + /* a: p0<<28 | p2<<14 | p4 (unmasked) */ + if (!(a&0x80)) + { + /* we can skip these cause they were (effectively) done above in calc'ing s */ + /* a &= (0x7f<<28)|(0x7f<<14)|(0x7f); */ + /* b &= (0x7f<<14)|(0x7f); */ + b = b<<7; + a |= b; + s = s>>18; + *v = ((u64)s)<<32 | a; + return 5; + } + + /* 2:save off p0<<21 | p1<<14 | p2<<7 | p3 (masked) */ + s = s<<7; + s |= b; + /* s: p0<<21 | p1<<14 | p2<<7 | p3 (masked) */ + + p++; + b = b<<14; + b |= *p; + /* b: p1<<28 | p3<<14 | p5 (unmasked) */ + if (!(b&0x80)) + { + /* we can skip this cause it was (effectively) done above in calc'ing s */ + /* b &= (0x7f<<28)|(0x7f<<14)|(0x7f); */ + a &= SLOT_2_0; + a = a<<7; + a |= b; + s = s>>18; + *v = ((u64)s)<<32 | a; + return 6; + } + + p++; + a = a<<14; + a |= *p; + /* a: p2<<28 | p4<<14 | p6 (unmasked) */ + if (!(a&0x80)) + { + a &= SLOT_4_2_0; + b &= SLOT_2_0; + b = b<<7; + a |= b; + s = s>>11; + *v = ((u64)s)<<32 | a; + return 7; + } + + /* CSE2 from below */ + a &= SLOT_2_0; + p++; + b = b<<14; + b |= *p; + /* b: p3<<28 | p5<<14 | p7 (unmasked) */ + if (!(b&0x80)) + { + b &= SLOT_4_2_0; + /* moved CSE2 up */ + /* a &= (0x7f<<14)|(0x7f); */ + a = a<<7; + a |= b; + s = s>>4; + *v = ((u64)s)<<32 | a; + return 8; + } + + p++; + a = a<<15; + a |= *p; + /* a: p4<<29 | p6<<15 | p8 (unmasked) */ + + /* moved CSE2 up */ + /* a &= (0x7f<<29)|(0x7f<<15)|(0xff); */ + b &= SLOT_2_0; + b = b<<8; + a |= b; + + s = s<<4; + b = p[-4]; + b &= 0x7f; + b = b>>3; + s |= b; + + *v = ((u64)s)<<32 | a; + + return 9; +} + +/* +** Read a 32-bit variable-length integer from memory starting at p[0]. +** Return the number of bytes read. The value is stored in *v. +** +** If the varint stored in p[0] is larger than can fit in a 32-bit unsigned +** integer, then set *v to 0xffffffff. +** +** A MACRO version, getVarint32, is provided which inlines the +** single-byte case. All code should use the MACRO version as +** this function assumes the single-byte case has already been handled. +*/ +SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *p, u32 *v){ + u32 a,b; + + /* The 1-byte case. Overwhelmingly the most common. Handled inline + ** by the getVarin32() macro */ + a = *p; + /* a: p0 (unmasked) */ +#ifndef getVarint32 + if (!(a&0x80)) + { + /* Values between 0 and 127 */ + *v = a; + return 1; + } +#endif + + /* The 2-byte case */ + p++; + b = *p; + /* b: p1 (unmasked) */ + if (!(b&0x80)) + { + /* Values between 128 and 16383 */ + a &= 0x7f; + a = a<<7; + *v = a | b; + return 2; + } + + /* The 3-byte case */ + p++; + a = a<<14; + a |= *p; + /* a: p0<<14 | p2 (unmasked) */ + if (!(a&0x80)) + { + /* Values between 16384 and 2097151 */ + a &= (0x7f<<14)|(0x7f); + b &= 0x7f; + b = b<<7; + *v = a | b; + return 3; + } + + /* A 32-bit varint is used to store size information in btrees. + ** Objects are rarely larger than 2MiB limit of a 3-byte varint. + ** A 3-byte varint is sufficient, for example, to record the size + ** of a 1048569-byte BLOB or string. + ** + ** We only unroll the first 1-, 2-, and 3- byte cases. The very + ** rare larger cases can be handled by the slower 64-bit varint + ** routine. + */ +#if 1 + { + u64 v64; + u8 n; + + p -= 2; + n = sqlite3GetVarint(p, &v64); + assert( n>3 && n<=9 ); + if( (v64 & SQLITE_MAX_U32)!=v64 ){ + *v = 0xffffffff; + }else{ + *v = (u32)v64; + } + return n; + } + +#else + /* For following code (kept for historical record only) shows an + ** unrolling for the 3- and 4-byte varint cases. This code is + ** slightly faster, but it is also larger and much harder to test. + */ + p++; + b = b<<14; + b |= *p; + /* b: p1<<14 | p3 (unmasked) */ + if (!(b&0x80)) + { + /* Values between 2097152 and 268435455 */ + b &= (0x7f<<14)|(0x7f); + a &= (0x7f<<14)|(0x7f); + a = a<<7; + *v = a | b; + return 4; + } + + p++; + a = a<<14; + a |= *p; + /* a: p0<<28 | p2<<14 | p4 (unmasked) */ + if (!(a&0x80)) + { + /* Values between 268435456 and 34359738367 */ + a &= SLOT_4_2_0; + b &= SLOT_4_2_0; + b = b<<7; + *v = a | b; + return 5; + } + + /* We can only reach this point when reading a corrupt database + ** file. In that case we are not in any hurry. Use the (relatively + ** slow) general-purpose sqlite3GetVarint() routine to extract the + ** value. */ + { + u64 v64; + u8 n; + + p -= 4; + n = sqlite3GetVarint(p, &v64); + assert( n>5 && n<=9 ); + *v = (u32)v64; + return n; + } +#endif +} + +/* +** Return the number of bytes that will be needed to store the given +** 64-bit integer. +*/ +SQLITE_PRIVATE int sqlite3VarintLen(u64 v){ + int i = 0; + do{ + i++; + v >>= 7; + }while( v!=0 && ALWAYS(i<9) ); + return i; +} + + +/* +** Read or write a four-byte big-endian integer value. +*/ +SQLITE_PRIVATE u32 sqlite3Get4byte(const u8 *p){ + testcase( p[0]&0x80 ); + return ((unsigned)p[0]<<24) | (p[1]<<16) | (p[2]<<8) | p[3]; +} +SQLITE_PRIVATE void sqlite3Put4byte(unsigned char *p, u32 v){ + p[0] = (u8)(v>>24); + p[1] = (u8)(v>>16); + p[2] = (u8)(v>>8); + p[3] = (u8)v; +} + + + +/* +** Translate a single byte of Hex into an integer. +** This routine only works if h really is a valid hexadecimal +** character: 0..9a..fA..F +*/ +SQLITE_PRIVATE u8 sqlite3HexToInt(int h){ + assert( (h>='0' && h<='9') || (h>='a' && h<='f') || (h>='A' && h<='F') ); +#ifdef SQLITE_ASCII + h += 9*(1&(h>>6)); +#endif +#ifdef SQLITE_EBCDIC + h += 9*(1&~(h>>4)); +#endif + return (u8)(h & 0xf); +} + +#if !defined(SQLITE_OMIT_BLOB_LITERAL) || defined(SQLITE_HAS_CODEC) +/* +** Convert a BLOB literal of the form "x'hhhhhh'" into its binary +** value. Return a pointer to its binary value. Space to hold the +** binary value has been obtained from malloc and must be freed by +** the calling routine. +*/ +SQLITE_PRIVATE void *sqlite3HexToBlob(sqlite3 *db, const char *z, int n){ + char *zBlob; + int i; + + zBlob = (char *)sqlite3DbMallocRaw(db, n/2 + 1); + n--; + if( zBlob ){ + for(i=0; imagic; + if( magic!=SQLITE_MAGIC_OPEN ){ + if( sqlite3SafetyCheckSickOrOk(db) ){ + testcase( sqlite3GlobalConfig.xLog!=0 ); + logBadConnection("unopened"); + } + return 0; + }else{ + return 1; + } +} +SQLITE_PRIVATE int sqlite3SafetyCheckSickOrOk(sqlite3 *db){ + u32 magic; + magic = db->magic; + if( magic!=SQLITE_MAGIC_SICK && + magic!=SQLITE_MAGIC_OPEN && + magic!=SQLITE_MAGIC_BUSY ){ + testcase( sqlite3GlobalConfig.xLog!=0 ); + logBadConnection("invalid"); + return 0; + }else{ + return 1; + } +} + +/* +** Attempt to add, substract, or multiply the 64-bit signed value iB against +** the other 64-bit signed integer at *pA and store the result in *pA. +** Return 0 on success. Or if the operation would have resulted in an +** overflow, leave *pA unchanged and return 1. +*/ +SQLITE_PRIVATE int sqlite3AddInt64(i64 *pA, i64 iB){ + i64 iA = *pA; + testcase( iA==0 ); testcase( iA==1 ); + testcase( iB==-1 ); testcase( iB==0 ); + if( iB>=0 ){ + testcase( iA>0 && LARGEST_INT64 - iA == iB ); + testcase( iA>0 && LARGEST_INT64 - iA == iB - 1 ); + if( iA>0 && LARGEST_INT64 - iA < iB ) return 1; + }else{ + testcase( iA<0 && -(iA + LARGEST_INT64) == iB + 1 ); + testcase( iA<0 && -(iA + LARGEST_INT64) == iB + 2 ); + if( iA<0 && -(iA + LARGEST_INT64) > iB + 1 ) return 1; + } + *pA += iB; + return 0; +} +SQLITE_PRIVATE int sqlite3SubInt64(i64 *pA, i64 iB){ + testcase( iB==SMALLEST_INT64+1 ); + if( iB==SMALLEST_INT64 ){ + testcase( (*pA)==(-1) ); testcase( (*pA)==0 ); + if( (*pA)>=0 ) return 1; + *pA -= iB; + return 0; + }else{ + return sqlite3AddInt64(pA, -iB); + } +} +#define TWOPOWER32 (((i64)1)<<32) +#define TWOPOWER31 (((i64)1)<<31) +SQLITE_PRIVATE int sqlite3MulInt64(i64 *pA, i64 iB){ + i64 iA = *pA; + i64 iA1, iA0, iB1, iB0, r; + + iA1 = iA/TWOPOWER32; + iA0 = iA % TWOPOWER32; + iB1 = iB/TWOPOWER32; + iB0 = iB % TWOPOWER32; + if( iA1==0 ){ + if( iB1==0 ){ + *pA *= iB; + return 0; + } + r = iA0*iB1; + }else if( iB1==0 ){ + r = iA1*iB0; + }else{ + /* If both iA1 and iB1 are non-zero, overflow will result */ + return 1; + } + testcase( r==(-TWOPOWER31)-1 ); + testcase( r==(-TWOPOWER31) ); + testcase( r==TWOPOWER31 ); + testcase( r==TWOPOWER31-1 ); + if( r<(-TWOPOWER31) || r>=TWOPOWER31 ) return 1; + r *= TWOPOWER32; + if( sqlite3AddInt64(&r, iA0*iB0) ) return 1; + *pA = r; + return 0; +} + +/* +** Compute the absolute value of a 32-bit signed integer, of possible. Or +** if the integer has a value of -2147483648, return +2147483647 +*/ +SQLITE_PRIVATE int sqlite3AbsInt32(int x){ + if( x>=0 ) return x; + if( x==(int)0x80000000 ) return 0x7fffffff; + return -x; +} + +#ifdef SQLITE_ENABLE_8_3_NAMES +/* +** If SQLITE_ENABLE_8_3_NAMES is set at compile-time and if the database +** filename in zBaseFilename is a URI with the "8_3_names=1" parameter and +** if filename in z[] has a suffix (a.k.a. "extension") that is longer than +** three characters, then shorten the suffix on z[] to be the last three +** characters of the original suffix. +** +** If SQLITE_ENABLE_8_3_NAMES is set to 2 at compile-time, then always +** do the suffix shortening regardless of URI parameter. +** +** Examples: +** +** test.db-journal => test.nal +** test.db-wal => test.wal +** test.db-shm => test.shm +** test.db-mj7f3319fa => test.9fa +*/ +SQLITE_PRIVATE void sqlite3FileSuffix3(const char *zBaseFilename, char *z){ +#if SQLITE_ENABLE_8_3_NAMES<2 + if( sqlite3_uri_boolean(zBaseFilename, "8_3_names", 0) ) +#endif + { + int i, sz; + sz = sqlite3Strlen30(z); + for(i=sz-1; i>0 && z[i]!='/' && z[i]!='.'; i--){} + if( z[i]=='.' && ALWAYS(sz>i+4) ) memmove(&z[i+1], &z[sz-3], 4); + } +} +#endif + +/* +** Find (an approximate) sum of two LogEst values. This computation is +** not a simple "+" operator because LogEst is stored as a logarithmic +** value. +** +*/ +SQLITE_PRIVATE LogEst sqlite3LogEstAdd(LogEst a, LogEst b){ + static const unsigned char x[] = { + 10, 10, /* 0,1 */ + 9, 9, /* 2,3 */ + 8, 8, /* 4,5 */ + 7, 7, 7, /* 6,7,8 */ + 6, 6, 6, /* 9,10,11 */ + 5, 5, 5, /* 12-14 */ + 4, 4, 4, 4, /* 15-18 */ + 3, 3, 3, 3, 3, 3, /* 19-24 */ + 2, 2, 2, 2, 2, 2, 2, /* 25-31 */ + }; + if( a>=b ){ + if( a>b+49 ) return a; + if( a>b+31 ) return a+1; + return a+x[a-b]; + }else{ + if( b>a+49 ) return b; + if( b>a+31 ) return b+1; + return b+x[b-a]; + } +} + +/* +** Convert an integer into a LogEst. In other words, compute an +** approximation for 10*log2(x). +*/ +SQLITE_PRIVATE LogEst sqlite3LogEst(u64 x){ + static LogEst a[] = { 0, 2, 3, 5, 6, 7, 8, 9 }; + LogEst y = 40; + if( x<8 ){ + if( x<2 ) return 0; + while( x<8 ){ y -= 10; x <<= 1; } + }else{ + while( x>255 ){ y += 40; x >>= 4; } + while( x>15 ){ y += 10; x >>= 1; } + } + return a[x&7] + y - 10; +} + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* +** Convert a double into a LogEst +** In other words, compute an approximation for 10*log2(x). +*/ +SQLITE_PRIVATE LogEst sqlite3LogEstFromDouble(double x){ + u64 a; + LogEst e; + assert( sizeof(x)==8 && sizeof(a)==8 ); + if( x<=1 ) return 0; + if( x<=2000000000 ) return sqlite3LogEst((u64)x); + memcpy(&a, &x, 8); + e = (a>>52) - 1022; + return e*10; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +/* +** Convert a LogEst into an integer. +*/ +SQLITE_PRIVATE u64 sqlite3LogEstToInt(LogEst x){ + u64 n; + if( x<10 ) return 1; + n = x%10; + x /= 10; + if( n>=5 ) n -= 2; + else if( n>=1 ) n -= 1; + if( x>=3 ){ + return x>60 ? (u64)LARGEST_INT64 : (n+8)<<(x-3); + } + return (n+8)>>(3-x); +} + +/************** End of util.c ************************************************/ +/************** Begin file hash.c ********************************************/ +/* +** 2001 September 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This is the implementation of generic hash-tables +** used in SQLite. +*/ +/* #include */ + +/* Turn bulk memory into a hash table object by initializing the +** fields of the Hash structure. +** +** "pNew" is a pointer to the hash table that is to be initialized. +*/ +SQLITE_PRIVATE void sqlite3HashInit(Hash *pNew){ + assert( pNew!=0 ); + pNew->first = 0; + pNew->count = 0; + pNew->htsize = 0; + pNew->ht = 0; +} + +/* Remove all entries from a hash table. Reclaim all memory. +** Call this routine to delete a hash table or to reset a hash table +** to the empty state. +*/ +SQLITE_PRIVATE void sqlite3HashClear(Hash *pH){ + HashElem *elem; /* For looping over all elements of the table */ + + assert( pH!=0 ); + elem = pH->first; + pH->first = 0; + sqlite3_free(pH->ht); + pH->ht = 0; + pH->htsize = 0; + while( elem ){ + HashElem *next_elem = elem->next; + sqlite3_free(elem); + elem = next_elem; + } + pH->count = 0; +} + +/* +** The hashing function. +*/ +static unsigned int strHash(const char *z, int nKey){ + unsigned int h = 0; + assert( nKey>=0 ); + while( nKey > 0 ){ + h = (h<<3) ^ h ^ sqlite3UpperToLower[(unsigned char)*z++]; + nKey--; + } + return h; +} + + +/* Link pNew element into the hash table pH. If pEntry!=0 then also +** insert pNew into the pEntry hash bucket. +*/ +static void insertElement( + Hash *pH, /* The complete hash table */ + struct _ht *pEntry, /* The entry into which pNew is inserted */ + HashElem *pNew /* The element to be inserted */ +){ + HashElem *pHead; /* First element already in pEntry */ + if( pEntry ){ + pHead = pEntry->count ? pEntry->chain : 0; + pEntry->count++; + pEntry->chain = pNew; + }else{ + pHead = 0; + } + if( pHead ){ + pNew->next = pHead; + pNew->prev = pHead->prev; + if( pHead->prev ){ pHead->prev->next = pNew; } + else { pH->first = pNew; } + pHead->prev = pNew; + }else{ + pNew->next = pH->first; + if( pH->first ){ pH->first->prev = pNew; } + pNew->prev = 0; + pH->first = pNew; + } +} + + +/* Resize the hash table so that it cantains "new_size" buckets. +** +** The hash table might fail to resize if sqlite3_malloc() fails or +** if the new size is the same as the prior size. +** Return TRUE if the resize occurs and false if not. +*/ +static int rehash(Hash *pH, unsigned int new_size){ + struct _ht *new_ht; /* The new hash table */ + HashElem *elem, *next_elem; /* For looping over existing elements */ + +#if SQLITE_MALLOC_SOFT_LIMIT>0 + if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){ + new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht); + } + if( new_size==pH->htsize ) return 0; +#endif + + /* The inability to allocates space for a larger hash table is + ** a performance hit but it is not a fatal error. So mark the + ** allocation as a benign. Use sqlite3Malloc()/memset(0) instead of + ** sqlite3MallocZero() to make the allocation, as sqlite3MallocZero() + ** only zeroes the requested number of bytes whereas this module will + ** use the actual amount of space allocated for the hash table (which + ** may be larger than the requested amount). + */ + sqlite3BeginBenignMalloc(); + new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) ); + sqlite3EndBenignMalloc(); + + if( new_ht==0 ) return 0; + sqlite3_free(pH->ht); + pH->ht = new_ht; + pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht); + memset(new_ht, 0, new_size*sizeof(struct _ht)); + for(elem=pH->first, pH->first=0; elem; elem = next_elem){ + unsigned int h = strHash(elem->pKey, elem->nKey) % new_size; + next_elem = elem->next; + insertElement(pH, &new_ht[h], elem); + } + return 1; +} + +/* This function (for internal use only) locates an element in an +** hash table that matches the given key. The hash for this key has +** already been computed and is passed as the 4th parameter. +*/ +static HashElem *findElementGivenHash( + const Hash *pH, /* The pH to be searched */ + const char *pKey, /* The key we are searching for */ + int nKey, /* Bytes in key (not counting zero terminator) */ + unsigned int h /* The hash for this key. */ +){ + HashElem *elem; /* Used to loop thru the element list */ + int count; /* Number of elements left to test */ + + if( pH->ht ){ + struct _ht *pEntry = &pH->ht[h]; + elem = pEntry->chain; + count = pEntry->count; + }else{ + elem = pH->first; + count = pH->count; + } + while( count-- && ALWAYS(elem) ){ + if( elem->nKey==nKey && sqlite3StrNICmp(elem->pKey,pKey,nKey)==0 ){ + return elem; + } + elem = elem->next; + } + return 0; +} + +/* Remove a single entry from the hash table given a pointer to that +** element and a hash on the element's key. +*/ +static void removeElementGivenHash( + Hash *pH, /* The pH containing "elem" */ + HashElem* elem, /* The element to be removed from the pH */ + unsigned int h /* Hash value for the element */ +){ + struct _ht *pEntry; + if( elem->prev ){ + elem->prev->next = elem->next; + }else{ + pH->first = elem->next; + } + if( elem->next ){ + elem->next->prev = elem->prev; + } + if( pH->ht ){ + pEntry = &pH->ht[h]; + if( pEntry->chain==elem ){ + pEntry->chain = elem->next; + } + pEntry->count--; + assert( pEntry->count>=0 ); + } + sqlite3_free( elem ); + pH->count--; + if( pH->count==0 ){ + assert( pH->first==0 ); + assert( pH->count==0 ); + sqlite3HashClear(pH); + } +} + +/* Attempt to locate an element of the hash table pH with a key +** that matches pKey,nKey. Return the data for this element if it is +** found, or NULL if there is no match. +*/ +SQLITE_PRIVATE void *sqlite3HashFind(const Hash *pH, const char *pKey, int nKey){ + HashElem *elem; /* The element that matches key */ + unsigned int h; /* A hash on key */ + + assert( pH!=0 ); + assert( pKey!=0 ); + assert( nKey>=0 ); + if( pH->ht ){ + h = strHash(pKey, nKey) % pH->htsize; + }else{ + h = 0; + } + elem = findElementGivenHash(pH, pKey, nKey, h); + return elem ? elem->data : 0; +} + +/* Insert an element into the hash table pH. The key is pKey,nKey +** and the data is "data". +** +** If no element exists with a matching key, then a new +** element is created and NULL is returned. +** +** If another element already exists with the same key, then the +** new data replaces the old data and the old data is returned. +** The key is not copied in this instance. If a malloc fails, then +** the new data is returned and the hash table is unchanged. +** +** If the "data" parameter to this function is NULL, then the +** element corresponding to "key" is removed from the hash table. +*/ +SQLITE_PRIVATE void *sqlite3HashInsert(Hash *pH, const char *pKey, int nKey, void *data){ + unsigned int h; /* the hash of the key modulo hash table size */ + HashElem *elem; /* Used to loop thru the element list */ + HashElem *new_elem; /* New element added to the pH */ + + assert( pH!=0 ); + assert( pKey!=0 ); + assert( nKey>=0 ); + if( pH->htsize ){ + h = strHash(pKey, nKey) % pH->htsize; + }else{ + h = 0; + } + elem = findElementGivenHash(pH,pKey,nKey,h); + if( elem ){ + void *old_data = elem->data; + if( data==0 ){ + removeElementGivenHash(pH,elem,h); + }else{ + elem->data = data; + elem->pKey = pKey; + assert(nKey==elem->nKey); + } + return old_data; + } + if( data==0 ) return 0; + new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) ); + if( new_elem==0 ) return data; + new_elem->pKey = pKey; + new_elem->nKey = nKey; + new_elem->data = data; + pH->count++; + if( pH->count>=10 && pH->count > 2*pH->htsize ){ + if( rehash(pH, pH->count*2) ){ + assert( pH->htsize>0 ); + h = strHash(pKey, nKey) % pH->htsize; + } + } + if( pH->ht ){ + insertElement(pH, &pH->ht[h], new_elem); + }else{ + insertElement(pH, 0, new_elem); + } + return 0; +} + +/************** End of hash.c ************************************************/ +/************** Begin file opcodes.c *****************************************/ +/* Automatically generated. Do not edit */ +/* See the mkopcodec.awk script for details. */ +#if !defined(SQLITE_OMIT_EXPLAIN) || defined(VDBE_PROFILE) || defined(SQLITE_DEBUG) +#if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) || defined(SQLITE_DEBUG) +# define OpHelp(X) "\0" X +#else +# define OpHelp(X) +#endif +SQLITE_PRIVATE const char *sqlite3OpcodeName(int i){ + static const char *const azName[] = { "?", + /* 1 */ "Function" OpHelp("r[P3]=func(r[P2@P5])"), + /* 2 */ "Savepoint" OpHelp(""), + /* 3 */ "AutoCommit" OpHelp(""), + /* 4 */ "Transaction" OpHelp(""), + /* 5 */ "SorterNext" OpHelp(""), + /* 6 */ "PrevIfOpen" OpHelp(""), + /* 7 */ "NextIfOpen" OpHelp(""), + /* 8 */ "Prev" OpHelp(""), + /* 9 */ "Next" OpHelp(""), + /* 10 */ "AggStep" OpHelp("accum=r[P3] step(r[P2@P5])"), + /* 11 */ "Checkpoint" OpHelp(""), + /* 12 */ "JournalMode" OpHelp(""), + /* 13 */ "Vacuum" OpHelp(""), + /* 14 */ "VFilter" OpHelp("iplan=r[P3] zplan='P4'"), + /* 15 */ "VUpdate" OpHelp("data=r[P3@P2]"), + /* 16 */ "Goto" OpHelp(""), + /* 17 */ "Gosub" OpHelp(""), + /* 18 */ "Return" OpHelp(""), + /* 19 */ "Not" OpHelp("r[P2]= !r[P1]"), + /* 20 */ "InitCoroutine" OpHelp(""), + /* 21 */ "EndCoroutine" OpHelp(""), + /* 22 */ "Yield" OpHelp(""), + /* 23 */ "HaltIfNull" OpHelp("if r[P3]=null halt"), + /* 24 */ "Halt" OpHelp(""), + /* 25 */ "Integer" OpHelp("r[P2]=P1"), + /* 26 */ "Int64" OpHelp("r[P2]=P4"), + /* 27 */ "String" OpHelp("r[P2]='P4' (len=P1)"), + /* 28 */ "Null" OpHelp("r[P2..P3]=NULL"), + /* 29 */ "SoftNull" OpHelp("r[P1]=NULL"), + /* 30 */ "Blob" OpHelp("r[P2]=P4 (len=P1)"), + /* 31 */ "Variable" OpHelp("r[P2]=parameter(P1,P4)"), + /* 32 */ "Move" OpHelp("r[P2@P3]=r[P1@P3]"), + /* 33 */ "Copy" OpHelp("r[P2@P3+1]=r[P1@P3+1]"), + /* 34 */ "SCopy" OpHelp("r[P2]=r[P1]"), + /* 35 */ "ResultRow" OpHelp("output=r[P1@P2]"), + /* 36 */ "CollSeq" OpHelp(""), + /* 37 */ "AddImm" OpHelp("r[P1]=r[P1]+P2"), + /* 38 */ "MustBeInt" OpHelp(""), + /* 39 */ "RealAffinity" OpHelp(""), + /* 40 */ "Permutation" OpHelp(""), + /* 41 */ "Compare" OpHelp("r[P1@P3] <-> r[P2@P3]"), + /* 42 */ "Jump" OpHelp(""), + /* 43 */ "Once" OpHelp(""), + /* 44 */ "If" OpHelp(""), + /* 45 */ "IfNot" OpHelp(""), + /* 46 */ "Column" OpHelp("r[P3]=PX"), + /* 47 */ "Affinity" OpHelp("affinity(r[P1@P2])"), + /* 48 */ "MakeRecord" OpHelp("r[P3]=mkrec(r[P1@P2])"), + /* 49 */ "Count" OpHelp("r[P2]=count()"), + /* 50 */ "ReadCookie" OpHelp(""), + /* 51 */ "SetCookie" OpHelp(""), + /* 52 */ "OpenRead" OpHelp("root=P2 iDb=P3"), + /* 53 */ "OpenWrite" OpHelp("root=P2 iDb=P3"), + /* 54 */ "OpenAutoindex" OpHelp("nColumn=P2"), + /* 55 */ "OpenEphemeral" OpHelp("nColumn=P2"), + /* 56 */ "SorterOpen" OpHelp(""), + /* 57 */ "OpenPseudo" OpHelp("P3 columns in r[P2]"), + /* 58 */ "Close" OpHelp(""), + /* 59 */ "SeekLT" OpHelp(""), + /* 60 */ "SeekLE" OpHelp(""), + /* 61 */ "SeekGE" OpHelp(""), + /* 62 */ "SeekGT" OpHelp(""), + /* 63 */ "Seek" OpHelp("intkey=r[P2]"), + /* 64 */ "NoConflict" OpHelp("key=r[P3@P4]"), + /* 65 */ "NotFound" OpHelp("key=r[P3@P4]"), + /* 66 */ "Found" OpHelp("key=r[P3@P4]"), + /* 67 */ "NotExists" OpHelp("intkey=r[P3]"), + /* 68 */ "Sequence" OpHelp("r[P2]=cursor[P1].ctr++"), + /* 69 */ "NewRowid" OpHelp("r[P2]=rowid"), + /* 70 */ "Insert" OpHelp("intkey=r[P3] data=r[P2]"), + /* 71 */ "Or" OpHelp("r[P3]=(r[P1] || r[P2])"), + /* 72 */ "And" OpHelp("r[P3]=(r[P1] && r[P2])"), + /* 73 */ "InsertInt" OpHelp("intkey=P3 data=r[P2]"), + /* 74 */ "Delete" OpHelp(""), + /* 75 */ "ResetCount" OpHelp(""), + /* 76 */ "IsNull" OpHelp("if r[P1]==NULL goto P2"), + /* 77 */ "NotNull" OpHelp("if r[P1]!=NULL goto P2"), + /* 78 */ "Ne" OpHelp("if r[P1]!=r[P3] goto P2"), + /* 79 */ "Eq" OpHelp("if r[P1]==r[P3] goto P2"), + /* 80 */ "Gt" OpHelp("if r[P1]>r[P3] goto P2"), + /* 81 */ "Le" OpHelp("if r[P1]<=r[P3] goto P2"), + /* 82 */ "Lt" OpHelp("if r[P1]=r[P3] goto P2"), + /* 84 */ "SorterCompare" OpHelp("if key(P1)!=rtrim(r[P3],P4) goto P2"), + /* 85 */ "BitAnd" OpHelp("r[P3]=r[P1]&r[P2]"), + /* 86 */ "BitOr" OpHelp("r[P3]=r[P1]|r[P2]"), + /* 87 */ "ShiftLeft" OpHelp("r[P3]=r[P2]<>r[P1]"), + /* 89 */ "Add" OpHelp("r[P3]=r[P1]+r[P2]"), + /* 90 */ "Subtract" OpHelp("r[P3]=r[P2]-r[P1]"), + /* 91 */ "Multiply" OpHelp("r[P3]=r[P1]*r[P2]"), + /* 92 */ "Divide" OpHelp("r[P3]=r[P2]/r[P1]"), + /* 93 */ "Remainder" OpHelp("r[P3]=r[P2]%r[P1]"), + /* 94 */ "Concat" OpHelp("r[P3]=r[P2]+r[P1]"), + /* 95 */ "SorterData" OpHelp("r[P2]=data"), + /* 96 */ "BitNot" OpHelp("r[P1]= ~r[P1]"), + /* 97 */ "String8" OpHelp("r[P2]='P4'"), + /* 98 */ "RowKey" OpHelp("r[P2]=key"), + /* 99 */ "RowData" OpHelp("r[P2]=data"), + /* 100 */ "Rowid" OpHelp("r[P2]=rowid"), + /* 101 */ "NullRow" OpHelp(""), + /* 102 */ "Last" OpHelp(""), + /* 103 */ "SorterSort" OpHelp(""), + /* 104 */ "Sort" OpHelp(""), + /* 105 */ "Rewind" OpHelp(""), + /* 106 */ "SorterInsert" OpHelp(""), + /* 107 */ "IdxInsert" OpHelp("key=r[P2]"), + /* 108 */ "IdxDelete" OpHelp("key=r[P2@P3]"), + /* 109 */ "IdxRowid" OpHelp("r[P2]=rowid"), + /* 110 */ "IdxLE" OpHelp("key=r[P3@P4]"), + /* 111 */ "IdxGT" OpHelp("key=r[P3@P4]"), + /* 112 */ "IdxLT" OpHelp("key=r[P3@P4]"), + /* 113 */ "IdxGE" OpHelp("key=r[P3@P4]"), + /* 114 */ "Destroy" OpHelp(""), + /* 115 */ "Clear" OpHelp(""), + /* 116 */ "ResetSorter" OpHelp(""), + /* 117 */ "CreateIndex" OpHelp("r[P2]=root iDb=P1"), + /* 118 */ "CreateTable" OpHelp("r[P2]=root iDb=P1"), + /* 119 */ "ParseSchema" OpHelp(""), + /* 120 */ "LoadAnalysis" OpHelp(""), + /* 121 */ "DropTable" OpHelp(""), + /* 122 */ "DropIndex" OpHelp(""), + /* 123 */ "DropTrigger" OpHelp(""), + /* 124 */ "IntegrityCk" OpHelp(""), + /* 125 */ "RowSetAdd" OpHelp("rowset(P1)=r[P2]"), + /* 126 */ "RowSetRead" OpHelp("r[P3]=rowset(P1)"), + /* 127 */ "RowSetTest" OpHelp("if r[P3] in rowset(P1) goto P2"), + /* 128 */ "Program" OpHelp(""), + /* 129 */ "Param" OpHelp(""), + /* 130 */ "FkCounter" OpHelp("fkctr[P1]+=P2"), + /* 131 */ "FkIfZero" OpHelp("if fkctr[P1]==0 goto P2"), + /* 132 */ "MemMax" OpHelp("r[P1]=max(r[P1],r[P2])"), + /* 133 */ "Real" OpHelp("r[P2]=P4"), + /* 134 */ "IfPos" OpHelp("if r[P1]>0 goto P2"), + /* 135 */ "IfNeg" OpHelp("if r[P1]<0 goto P2"), + /* 136 */ "IfZero" OpHelp("r[P1]+=P3, if r[P1]==0 goto P2"), + /* 137 */ "AggFinal" OpHelp("accum=r[P1] N=P2"), + /* 138 */ "IncrVacuum" OpHelp(""), + /* 139 */ "Expire" OpHelp(""), + /* 140 */ "TableLock" OpHelp("iDb=P1 root=P2 write=P3"), + /* 141 */ "VBegin" OpHelp(""), + /* 142 */ "VCreate" OpHelp(""), + /* 143 */ "ToText" OpHelp(""), + /* 144 */ "ToBlob" OpHelp(""), + /* 145 */ "ToNumeric" OpHelp(""), + /* 146 */ "ToInt" OpHelp(""), + /* 147 */ "ToReal" OpHelp(""), + /* 148 */ "VDestroy" OpHelp(""), + /* 149 */ "VOpen" OpHelp(""), + /* 150 */ "VColumn" OpHelp("r[P3]=vcolumn(P2)"), + /* 151 */ "VNext" OpHelp(""), + /* 152 */ "VRename" OpHelp(""), + /* 153 */ "Pagecount" OpHelp(""), + /* 154 */ "MaxPgcnt" OpHelp(""), + /* 155 */ "Init" OpHelp("Start at P2"), + /* 156 */ "Noop" OpHelp(""), + /* 157 */ "Explain" OpHelp(""), + }; + return azName[i]; +} +#endif + +/************** End of opcodes.c *********************************************/ +/************** Begin file os_unix.c *****************************************/ +/* +** 2004 May 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This file contains the VFS implementation for unix-like operating systems +** include Linux, MacOSX, *BSD, QNX, VxWorks, AIX, HPUX, and others. +** +** There are actually several different VFS implementations in this file. +** The differences are in the way that file locking is done. The default +** implementation uses Posix Advisory Locks. Alternative implementations +** use flock(), dot-files, various proprietary locking schemas, or simply +** skip locking all together. +** +** This source file is organized into divisions where the logic for various +** subfunctions is contained within the appropriate division. PLEASE +** KEEP THE STRUCTURE OF THIS FILE INTACT. New code should be placed +** in the correct division and should be clearly labeled. +** +** The layout of divisions is as follows: +** +** * General-purpose declarations and utility functions. +** * Unique file ID logic used by VxWorks. +** * Various locking primitive implementations (all except proxy locking): +** + for Posix Advisory Locks +** + for no-op locks +** + for dot-file locks +** + for flock() locking +** + for named semaphore locks (VxWorks only) +** + for AFP filesystem locks (MacOSX only) +** * sqlite3_file methods not associated with locking. +** * Definitions of sqlite3_io_methods objects for all locking +** methods plus "finder" functions for each locking method. +** * sqlite3_vfs method implementations. +** * Locking primitives for the proxy uber-locking-method. (MacOSX only) +** * Definitions of sqlite3_vfs objects for all locking methods +** plus implementations of sqlite3_os_init() and sqlite3_os_end(). +*/ +#if SQLITE_OS_UNIX /* This file is used on unix only */ + +/* +** There are various methods for file locking used for concurrency +** control: +** +** 1. POSIX locking (the default), +** 2. No locking, +** 3. Dot-file locking, +** 4. flock() locking, +** 5. AFP locking (OSX only), +** 6. Named POSIX semaphores (VXWorks only), +** 7. proxy locking. (OSX only) +** +** Styles 4, 5, and 7 are only available of SQLITE_ENABLE_LOCKING_STYLE +** is defined to 1. The SQLITE_ENABLE_LOCKING_STYLE also enables automatic +** selection of the appropriate locking style based on the filesystem +** where the database is located. +*/ +#if !defined(SQLITE_ENABLE_LOCKING_STYLE) +# if defined(__APPLE__) +# define SQLITE_ENABLE_LOCKING_STYLE 1 +# else +# define SQLITE_ENABLE_LOCKING_STYLE 0 +# endif +#endif + +/* +** Define the OS_VXWORKS pre-processor macro to 1 if building on +** vxworks, or 0 otherwise. +*/ +#ifndef OS_VXWORKS +# if defined(__RTP__) || defined(_WRS_KERNEL) +# define OS_VXWORKS 1 +# else +# define OS_VXWORKS 0 +# endif +#endif + +/* +** standard include files. +*/ +#include +#include +#include +#include +/* #include */ +#include +#include +#if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 +#include +#endif + + +#if SQLITE_ENABLE_LOCKING_STYLE +# include +# if OS_VXWORKS +# include +# include +# else +# include +# include +# endif +#endif /* SQLITE_ENABLE_LOCKING_STYLE */ + +#if defined(__APPLE__) || (SQLITE_ENABLE_LOCKING_STYLE && !OS_VXWORKS) +# include +#endif + +#ifdef HAVE_UTIME +# include +#endif + +/* +** Allowed values of unixFile.fsFlags +*/ +#define SQLITE_FSFLAGS_IS_MSDOS 0x1 + +/* +** If we are to be thread-safe, include the pthreads header and define +** the SQLITE_UNIX_THREADS macro. +*/ +#if SQLITE_THREADSAFE +/* # include */ +# define SQLITE_UNIX_THREADS 1 +#endif + +/* +** Default permissions when creating a new file +*/ +#ifndef SQLITE_DEFAULT_FILE_PERMISSIONS +# define SQLITE_DEFAULT_FILE_PERMISSIONS 0644 +#endif + +/* +** Default permissions when creating auto proxy dir +*/ +#ifndef SQLITE_DEFAULT_PROXYDIR_PERMISSIONS +# define SQLITE_DEFAULT_PROXYDIR_PERMISSIONS 0755 +#endif + +/* +** Maximum supported path-length. +*/ +#define MAX_PATHNAME 512 + +/* +** Only set the lastErrno if the error code is a real error and not +** a normal expected return code of SQLITE_BUSY or SQLITE_OK +*/ +#define IS_LOCK_ERROR(x) ((x != SQLITE_OK) && (x != SQLITE_BUSY)) + +/* Forward references */ +typedef struct unixShm unixShm; /* Connection shared memory */ +typedef struct unixShmNode unixShmNode; /* Shared memory instance */ +typedef struct unixInodeInfo unixInodeInfo; /* An i-node */ +typedef struct UnixUnusedFd UnixUnusedFd; /* An unused file descriptor */ + +/* +** Sometimes, after a file handle is closed by SQLite, the file descriptor +** cannot be closed immediately. In these cases, instances of the following +** structure are used to store the file descriptor while waiting for an +** opportunity to either close or reuse it. +*/ +struct UnixUnusedFd { + int fd; /* File descriptor to close */ + int flags; /* Flags this file descriptor was opened with */ + UnixUnusedFd *pNext; /* Next unused file descriptor on same file */ +}; + +/* +** The unixFile structure is subclass of sqlite3_file specific to the unix +** VFS implementations. +*/ +typedef struct unixFile unixFile; +struct unixFile { + sqlite3_io_methods const *pMethod; /* Always the first entry */ + sqlite3_vfs *pVfs; /* The VFS that created this unixFile */ + unixInodeInfo *pInode; /* Info about locks on this inode */ + int h; /* The file descriptor */ + unsigned char eFileLock; /* The type of lock held on this fd */ + unsigned short int ctrlFlags; /* Behavioral bits. UNIXFILE_* flags */ + int lastErrno; /* The unix errno from last I/O error */ + void *lockingContext; /* Locking style specific state */ + UnixUnusedFd *pUnused; /* Pre-allocated UnixUnusedFd */ + const char *zPath; /* Name of the file */ + unixShm *pShm; /* Shared memory segment information */ + int szChunk; /* Configured by FCNTL_CHUNK_SIZE */ +#if SQLITE_MAX_MMAP_SIZE>0 + int nFetchOut; /* Number of outstanding xFetch refs */ + sqlite3_int64 mmapSize; /* Usable size of mapping at pMapRegion */ + sqlite3_int64 mmapSizeActual; /* Actual size of mapping at pMapRegion */ + sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */ + void *pMapRegion; /* Memory mapped region */ +#endif +#ifdef __QNXNTO__ + int sectorSize; /* Device sector size */ + int deviceCharacteristics; /* Precomputed device characteristics */ +#endif +#if SQLITE_ENABLE_LOCKING_STYLE + int openFlags; /* The flags specified at open() */ +#endif +#if SQLITE_ENABLE_LOCKING_STYLE || defined(__APPLE__) + unsigned fsFlags; /* cached details from statfs() */ +#endif +#if OS_VXWORKS + struct vxworksFileId *pId; /* Unique file ID */ +#endif +#ifdef SQLITE_DEBUG + /* The next group of variables are used to track whether or not the + ** transaction counter in bytes 24-27 of database files are updated + ** whenever any part of the database changes. An assertion fault will + ** occur if a file is updated without also updating the transaction + ** counter. This test is made to avoid new problems similar to the + ** one described by ticket #3584. + */ + unsigned char transCntrChng; /* True if the transaction counter changed */ + unsigned char dbUpdate; /* True if any part of database file changed */ + unsigned char inNormalWrite; /* True if in a normal write operation */ + +#endif + +#ifdef SQLITE_TEST + /* In test mode, increase the size of this structure a bit so that + ** it is larger than the struct CrashFile defined in test6.c. + */ + char aPadding[32]; +#endif +}; + +/* This variable holds the process id (pid) from when the xRandomness() +** method was called. If xOpen() is called from a different process id, +** indicating that a fork() has occurred, the PRNG will be reset. +*/ +static int randomnessPid = 0; + +/* +** Allowed values for the unixFile.ctrlFlags bitmask: +*/ +#define UNIXFILE_EXCL 0x01 /* Connections from one process only */ +#define UNIXFILE_RDONLY 0x02 /* Connection is read only */ +#define UNIXFILE_PERSIST_WAL 0x04 /* Persistent WAL mode */ +#ifndef SQLITE_DISABLE_DIRSYNC +# define UNIXFILE_DIRSYNC 0x08 /* Directory sync needed */ +#else +# define UNIXFILE_DIRSYNC 0x00 +#endif +#define UNIXFILE_PSOW 0x10 /* SQLITE_IOCAP_POWERSAFE_OVERWRITE */ +#define UNIXFILE_DELETE 0x20 /* Delete on close */ +#define UNIXFILE_URI 0x40 /* Filename might have query parameters */ +#define UNIXFILE_NOLOCK 0x80 /* Do no file locking */ +#define UNIXFILE_WARNED 0x0100 /* verifyDbFile() warnings have been issued */ + +/* +** Include code that is common to all os_*.c files +*/ +/************** Include os_common.h in the middle of os_unix.c ***************/ +/************** Begin file os_common.h ***************************************/ +/* +** 2004 May 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This file contains macros and a little bit of code that is common to +** all of the platform-specific files (os_*.c) and is #included into those +** files. +** +** This file should be #included by the os_*.c files only. It is not a +** general purpose header file. +*/ +#ifndef _OS_COMMON_H_ +#define _OS_COMMON_H_ + +/* +** At least two bugs have slipped in because we changed the MEMORY_DEBUG +** macro to SQLITE_DEBUG and some older makefiles have not yet made the +** switch. The following code should catch this problem at compile-time. +*/ +#ifdef MEMORY_DEBUG +# error "The MEMORY_DEBUG macro is obsolete. Use SQLITE_DEBUG instead." +#endif + +#if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) +# ifndef SQLITE_DEBUG_OS_TRACE +# define SQLITE_DEBUG_OS_TRACE 0 +# endif + int sqlite3OSTrace = SQLITE_DEBUG_OS_TRACE; +# define OSTRACE(X) if( sqlite3OSTrace ) sqlite3DebugPrintf X +#else +# define OSTRACE(X) +#endif + +/* +** Macros for performance tracing. Normally turned off. Only works +** on i486 hardware. +*/ +#ifdef SQLITE_PERFORMANCE_TRACE + +/* +** hwtime.h contains inline assembler code for implementing +** high-performance timing routines. +*/ +/************** Include hwtime.h in the middle of os_common.h ****************/ +/************** Begin file hwtime.h ******************************************/ +/* +** 2008 May 27 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This file contains inline asm code for retrieving "high-performance" +** counters for x86 class CPUs. +*/ +#ifndef _HWTIME_H_ +#define _HWTIME_H_ + +/* +** The following routine only works on pentium-class (or newer) processors. +** It uses the RDTSC opcode to read the cycle count value out of the +** processor and returns that value. This can be used for high-res +** profiling. +*/ +#if (defined(__GNUC__) || defined(_MSC_VER)) && \ + (defined(i386) || defined(__i386__) || defined(_M_IX86)) + + #if defined(__GNUC__) + + __inline__ sqlite_uint64 sqlite3Hwtime(void){ + unsigned int lo, hi; + __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi)); + return (sqlite_uint64)hi << 32 | lo; + } + + #elif defined(_MSC_VER) + + __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ + __asm { + rdtsc + ret ; return value at EDX:EAX + } + } + + #endif + +#elif (defined(__GNUC__) && defined(__x86_64__)) + + __inline__ sqlite_uint64 sqlite3Hwtime(void){ + unsigned long val; + __asm__ __volatile__ ("rdtsc" : "=A" (val)); + return val; + } + +#elif (defined(__GNUC__) && defined(__ppc__)) + + __inline__ sqlite_uint64 sqlite3Hwtime(void){ + unsigned long long retval; + unsigned long junk; + __asm__ __volatile__ ("\n\ + 1: mftbu %1\n\ + mftb %L0\n\ + mftbu %0\n\ + cmpw %0,%1\n\ + bne 1b" + : "=r" (retval), "=r" (junk)); + return retval; + } + +#else + + #error Need implementation of sqlite3Hwtime() for your platform. + + /* + ** To compile without implementing sqlite3Hwtime() for your platform, + ** you can remove the above #error and use the following + ** stub function. You will lose timing support for many + ** of the debugging and testing utilities, but it should at + ** least compile and run. + */ +SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); } + +#endif + +#endif /* !defined(_HWTIME_H_) */ + +/************** End of hwtime.h **********************************************/ +/************** Continuing where we left off in os_common.h ******************/ + +static sqlite_uint64 g_start; +static sqlite_uint64 g_elapsed; +#define TIMER_START g_start=sqlite3Hwtime() +#define TIMER_END g_elapsed=sqlite3Hwtime()-g_start +#define TIMER_ELAPSED g_elapsed +#else +#define TIMER_START +#define TIMER_END +#define TIMER_ELAPSED ((sqlite_uint64)0) +#endif + +/* +** If we compile with the SQLITE_TEST macro set, then the following block +** of code will give us the ability to simulate a disk I/O error. This +** is used for testing the I/O recovery logic. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_io_error_hit = 0; /* Total number of I/O Errors */ +SQLITE_API int sqlite3_io_error_hardhit = 0; /* Number of non-benign errors */ +SQLITE_API int sqlite3_io_error_pending = 0; /* Count down to first I/O error */ +SQLITE_API int sqlite3_io_error_persist = 0; /* True if I/O errors persist */ +SQLITE_API int sqlite3_io_error_benign = 0; /* True if errors are benign */ +SQLITE_API int sqlite3_diskfull_pending = 0; +SQLITE_API int sqlite3_diskfull = 0; +#define SimulateIOErrorBenign(X) sqlite3_io_error_benign=(X) +#define SimulateIOError(CODE) \ + if( (sqlite3_io_error_persist && sqlite3_io_error_hit) \ + || sqlite3_io_error_pending-- == 1 ) \ + { local_ioerr(); CODE; } +static void local_ioerr(){ + IOTRACE(("IOERR\n")); + sqlite3_io_error_hit++; + if( !sqlite3_io_error_benign ) sqlite3_io_error_hardhit++; +} +#define SimulateDiskfullError(CODE) \ + if( sqlite3_diskfull_pending ){ \ + if( sqlite3_diskfull_pending == 1 ){ \ + local_ioerr(); \ + sqlite3_diskfull = 1; \ + sqlite3_io_error_hit = 1; \ + CODE; \ + }else{ \ + sqlite3_diskfull_pending--; \ + } \ + } +#else +#define SimulateIOErrorBenign(X) +#define SimulateIOError(A) +#define SimulateDiskfullError(A) +#endif + +/* +** When testing, keep a count of the number of open files. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_open_file_count = 0; +#define OpenCounter(X) sqlite3_open_file_count+=(X) +#else +#define OpenCounter(X) +#endif + +#endif /* !defined(_OS_COMMON_H_) */ + +/************** End of os_common.h *******************************************/ +/************** Continuing where we left off in os_unix.c ********************/ + +/* +** Define various macros that are missing from some systems. +*/ +#ifndef O_LARGEFILE +# define O_LARGEFILE 0 +#endif +#ifdef SQLITE_DISABLE_LFS +# undef O_LARGEFILE +# define O_LARGEFILE 0 +#endif +#ifndef O_NOFOLLOW +# define O_NOFOLLOW 0 +#endif +#ifndef O_BINARY +# define O_BINARY 0 +#endif + +/* +** The threadid macro resolves to the thread-id or to 0. Used for +** testing and debugging only. +*/ +#if SQLITE_THREADSAFE +#define threadid pthread_self() +#else +#define threadid 0 +#endif + +/* +** HAVE_MREMAP defaults to true on Linux and false everywhere else. +*/ +#if !defined(HAVE_MREMAP) +# if defined(__linux__) && defined(_GNU_SOURCE) +# define HAVE_MREMAP 1 +# else +# define HAVE_MREMAP 0 +# endif +#endif + +/* +** Different Unix systems declare open() in different ways. Same use +** open(const char*,int,mode_t). Others use open(const char*,int,...). +** The difference is important when using a pointer to the function. +** +** The safest way to deal with the problem is to always use this wrapper +** which always has the same well-defined interface. +*/ +static int posixOpen(const char *zFile, int flags, int mode){ + return open(zFile, flags, mode); +} + +/* +** On some systems, calls to fchown() will trigger a message in a security +** log if they come from non-root processes. So avoid calling fchown() if +** we are not running as root. +*/ +static int posixFchown(int fd, uid_t uid, gid_t gid){ + return geteuid() ? 0 : fchown(fd,uid,gid); +} + +/* Forward reference */ +static int openDirectory(const char*, int*); +static int unixGetpagesize(void); + +/* +** Many system calls are accessed through pointer-to-functions so that +** they may be overridden at runtime to facilitate fault injection during +** testing and sandboxing. The following array holds the names and pointers +** to all overrideable system calls. +*/ +static struct unix_syscall { + const char *zName; /* Name of the system call */ + sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ + sqlite3_syscall_ptr pDefault; /* Default value */ +} aSyscall[] = { + { "open", (sqlite3_syscall_ptr)posixOpen, 0 }, +#define osOpen ((int(*)(const char*,int,int))aSyscall[0].pCurrent) + + { "close", (sqlite3_syscall_ptr)close, 0 }, +#define osClose ((int(*)(int))aSyscall[1].pCurrent) + + { "access", (sqlite3_syscall_ptr)access, 0 }, +#define osAccess ((int(*)(const char*,int))aSyscall[2].pCurrent) + + { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 }, +#define osGetcwd ((char*(*)(char*,size_t))aSyscall[3].pCurrent) + + { "stat", (sqlite3_syscall_ptr)stat, 0 }, +#define osStat ((int(*)(const char*,struct stat*))aSyscall[4].pCurrent) + +/* +** The DJGPP compiler environment looks mostly like Unix, but it +** lacks the fcntl() system call. So redefine fcntl() to be something +** that always succeeds. This means that locking does not occur under +** DJGPP. But it is DOS - what did you expect? +*/ +#ifdef __DJGPP__ + { "fstat", 0, 0 }, +#define osFstat(a,b,c) 0 +#else + { "fstat", (sqlite3_syscall_ptr)fstat, 0 }, +#define osFstat ((int(*)(int,struct stat*))aSyscall[5].pCurrent) +#endif + + { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 }, +#define osFtruncate ((int(*)(int,off_t))aSyscall[6].pCurrent) + + { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 }, +#define osFcntl ((int(*)(int,int,...))aSyscall[7].pCurrent) + + { "read", (sqlite3_syscall_ptr)read, 0 }, +#define osRead ((ssize_t(*)(int,void*,size_t))aSyscall[8].pCurrent) + +#if defined(USE_PREAD) || SQLITE_ENABLE_LOCKING_STYLE + { "pread", (sqlite3_syscall_ptr)pread, 0 }, +#else + { "pread", (sqlite3_syscall_ptr)0, 0 }, +#endif +#define osPread ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[9].pCurrent) + +#if defined(USE_PREAD64) + { "pread64", (sqlite3_syscall_ptr)pread64, 0 }, +#else + { "pread64", (sqlite3_syscall_ptr)0, 0 }, +#endif +#define osPread64 ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[10].pCurrent) + + { "write", (sqlite3_syscall_ptr)write, 0 }, +#define osWrite ((ssize_t(*)(int,const void*,size_t))aSyscall[11].pCurrent) + +#if defined(USE_PREAD) || SQLITE_ENABLE_LOCKING_STYLE + { "pwrite", (sqlite3_syscall_ptr)pwrite, 0 }, +#else + { "pwrite", (sqlite3_syscall_ptr)0, 0 }, +#endif +#define osPwrite ((ssize_t(*)(int,const void*,size_t,off_t))\ + aSyscall[12].pCurrent) + +#if defined(USE_PREAD64) + { "pwrite64", (sqlite3_syscall_ptr)pwrite64, 0 }, +#else + { "pwrite64", (sqlite3_syscall_ptr)0, 0 }, +#endif +#define osPwrite64 ((ssize_t(*)(int,const void*,size_t,off_t))\ + aSyscall[13].pCurrent) + + { "fchmod", (sqlite3_syscall_ptr)fchmod, 0 }, +#define osFchmod ((int(*)(int,mode_t))aSyscall[14].pCurrent) + +#if defined(HAVE_POSIX_FALLOCATE) && HAVE_POSIX_FALLOCATE + { "fallocate", (sqlite3_syscall_ptr)posix_fallocate, 0 }, +#else + { "fallocate", (sqlite3_syscall_ptr)0, 0 }, +#endif +#define osFallocate ((int(*)(int,off_t,off_t))aSyscall[15].pCurrent) + + { "unlink", (sqlite3_syscall_ptr)unlink, 0 }, +#define osUnlink ((int(*)(const char*))aSyscall[16].pCurrent) + + { "openDirectory", (sqlite3_syscall_ptr)openDirectory, 0 }, +#define osOpenDirectory ((int(*)(const char*,int*))aSyscall[17].pCurrent) + + { "mkdir", (sqlite3_syscall_ptr)mkdir, 0 }, +#define osMkdir ((int(*)(const char*,mode_t))aSyscall[18].pCurrent) + + { "rmdir", (sqlite3_syscall_ptr)rmdir, 0 }, +#define osRmdir ((int(*)(const char*))aSyscall[19].pCurrent) + + { "fchown", (sqlite3_syscall_ptr)posixFchown, 0 }, +#define osFchown ((int(*)(int,uid_t,gid_t))aSyscall[20].pCurrent) + +#if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 + { "mmap", (sqlite3_syscall_ptr)mmap, 0 }, +#define osMmap ((void*(*)(void*,size_t,int,int,int,off_t))aSyscall[21].pCurrent) + + { "munmap", (sqlite3_syscall_ptr)munmap, 0 }, +#define osMunmap ((void*(*)(void*,size_t))aSyscall[22].pCurrent) + +#if HAVE_MREMAP + { "mremap", (sqlite3_syscall_ptr)mremap, 0 }, +#else + { "mremap", (sqlite3_syscall_ptr)0, 0 }, +#endif +#define osMremap ((void*(*)(void*,size_t,size_t,int,...))aSyscall[23].pCurrent) +#endif + + { "getpagesize", (sqlite3_syscall_ptr)unixGetpagesize, 0 }, +#define osGetpagesize ((int(*)(void))aSyscall[24].pCurrent) + +}; /* End of the overrideable system calls */ + +/* +** This is the xSetSystemCall() method of sqlite3_vfs for all of the +** "unix" VFSes. Return SQLITE_OK opon successfully updating the +** system call pointer, or SQLITE_NOTFOUND if there is no configurable +** system call named zName. +*/ +static int unixSetSystemCall( + sqlite3_vfs *pNotUsed, /* The VFS pointer. Not used */ + const char *zName, /* Name of system call to override */ + sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */ +){ + unsigned int i; + int rc = SQLITE_NOTFOUND; + + UNUSED_PARAMETER(pNotUsed); + if( zName==0 ){ + /* If no zName is given, restore all system calls to their default + ** settings and return NULL + */ + rc = SQLITE_OK; + for(i=0; i=SQLITE_MINIMUM_FILE_DESCRIPTOR ) break; + osClose(fd); + sqlite3_log(SQLITE_WARNING, + "attempt to open \"%s\" as file descriptor %d", z, fd); + fd = -1; + if( osOpen("/dev/null", f, m)<0 ) break; + } + if( fd>=0 ){ + if( m!=0 ){ + struct stat statbuf; + if( osFstat(fd, &statbuf)==0 + && statbuf.st_size==0 + && (statbuf.st_mode&0777)!=m + ){ + osFchmod(fd, m); + } + } +#if defined(FD_CLOEXEC) && (!defined(O_CLOEXEC) || O_CLOEXEC==0) + osFcntl(fd, F_SETFD, osFcntl(fd, F_GETFD, 0) | FD_CLOEXEC); +#endif + } + return fd; +} + +/* +** Helper functions to obtain and relinquish the global mutex. The +** global mutex is used to protect the unixInodeInfo and +** vxworksFileId objects used by this file, all of which may be +** shared by multiple threads. +** +** Function unixMutexHeld() is used to assert() that the global mutex +** is held when required. This function is only used as part of assert() +** statements. e.g. +** +** unixEnterMutex() +** assert( unixMutexHeld() ); +** unixEnterLeave() +*/ +static void unixEnterMutex(void){ + sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); +} +static void unixLeaveMutex(void){ + sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); +} +#ifdef SQLITE_DEBUG +static int unixMutexHeld(void) { + return sqlite3_mutex_held(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); +} +#endif + + +#if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) +/* +** Helper function for printing out trace information from debugging +** binaries. This returns the string represetation of the supplied +** integer lock-type. +*/ +static const char *azFileLock(int eFileLock){ + switch( eFileLock ){ + case NO_LOCK: return "NONE"; + case SHARED_LOCK: return "SHARED"; + case RESERVED_LOCK: return "RESERVED"; + case PENDING_LOCK: return "PENDING"; + case EXCLUSIVE_LOCK: return "EXCLUSIVE"; + } + return "ERROR"; +} +#endif + +#ifdef SQLITE_LOCK_TRACE +/* +** Print out information about all locking operations. +** +** This routine is used for troubleshooting locks on multithreaded +** platforms. Enable by compiling with the -DSQLITE_LOCK_TRACE +** command-line option on the compiler. This code is normally +** turned off. +*/ +static int lockTrace(int fd, int op, struct flock *p){ + char *zOpName, *zType; + int s; + int savedErrno; + if( op==F_GETLK ){ + zOpName = "GETLK"; + }else if( op==F_SETLK ){ + zOpName = "SETLK"; + }else{ + s = osFcntl(fd, op, p); + sqlite3DebugPrintf("fcntl unknown %d %d %d\n", fd, op, s); + return s; + } + if( p->l_type==F_RDLCK ){ + zType = "RDLCK"; + }else if( p->l_type==F_WRLCK ){ + zType = "WRLCK"; + }else if( p->l_type==F_UNLCK ){ + zType = "UNLCK"; + }else{ + assert( 0 ); + } + assert( p->l_whence==SEEK_SET ); + s = osFcntl(fd, op, p); + savedErrno = errno; + sqlite3DebugPrintf("fcntl %d %d %s %s %d %d %d %d\n", + threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len, + (int)p->l_pid, s); + if( s==(-1) && op==F_SETLK && (p->l_type==F_RDLCK || p->l_type==F_WRLCK) ){ + struct flock l2; + l2 = *p; + osFcntl(fd, F_GETLK, &l2); + if( l2.l_type==F_RDLCK ){ + zType = "RDLCK"; + }else if( l2.l_type==F_WRLCK ){ + zType = "WRLCK"; + }else if( l2.l_type==F_UNLCK ){ + zType = "UNLCK"; + }else{ + assert( 0 ); + } + sqlite3DebugPrintf("fcntl-failure-reason: %s %d %d %d\n", + zType, (int)l2.l_start, (int)l2.l_len, (int)l2.l_pid); + } + errno = savedErrno; + return s; +} +#undef osFcntl +#define osFcntl lockTrace +#endif /* SQLITE_LOCK_TRACE */ + +/* +** Retry ftruncate() calls that fail due to EINTR +*/ +static int robust_ftruncate(int h, sqlite3_int64 sz){ + int rc; + do{ rc = osFtruncate(h,sz); }while( rc<0 && errno==EINTR ); + return rc; +} + +/* +** This routine translates a standard POSIX errno code into something +** useful to the clients of the sqlite3 functions. Specifically, it is +** intended to translate a variety of "try again" errors into SQLITE_BUSY +** and a variety of "please close the file descriptor NOW" errors into +** SQLITE_IOERR +** +** Errors during initialization of locks, or file system support for locks, +** should handle ENOLCK, ENOTSUP, EOPNOTSUPP separately. +*/ +static int sqliteErrorFromPosixError(int posixError, int sqliteIOErr) { + switch (posixError) { +#if 0 + /* At one point this code was not commented out. In theory, this branch + ** should never be hit, as this function should only be called after + ** a locking-related function (i.e. fcntl()) has returned non-zero with + ** the value of errno as the first argument. Since a system call has failed, + ** errno should be non-zero. + ** + ** Despite this, if errno really is zero, we still don't want to return + ** SQLITE_OK. The system call failed, and *some* SQLite error should be + ** propagated back to the caller. Commenting this branch out means errno==0 + ** will be handled by the "default:" case below. + */ + case 0: + return SQLITE_OK; +#endif + + case EAGAIN: + case ETIMEDOUT: + case EBUSY: + case EINTR: + case ENOLCK: + /* random NFS retry error, unless during file system support + * introspection, in which it actually means what it says */ + return SQLITE_BUSY; + + case EACCES: + /* EACCES is like EAGAIN during locking operations, but not any other time*/ + if( (sqliteIOErr == SQLITE_IOERR_LOCK) || + (sqliteIOErr == SQLITE_IOERR_UNLOCK) || + (sqliteIOErr == SQLITE_IOERR_RDLOCK) || + (sqliteIOErr == SQLITE_IOERR_CHECKRESERVEDLOCK) ){ + return SQLITE_BUSY; + } + /* else fall through */ + case EPERM: + return SQLITE_PERM; + + /* EDEADLK is only possible if a call to fcntl(F_SETLKW) is made. And + ** this module never makes such a call. And the code in SQLite itself + ** asserts that SQLITE_IOERR_BLOCKED is never returned. For these reasons + ** this case is also commented out. If the system does set errno to EDEADLK, + ** the default SQLITE_IOERR_XXX code will be returned. */ +#if 0 + case EDEADLK: + return SQLITE_IOERR_BLOCKED; +#endif + +#if EOPNOTSUPP!=ENOTSUP + case EOPNOTSUPP: + /* something went terribly awry, unless during file system support + * introspection, in which it actually means what it says */ +#endif +#ifdef ENOTSUP + case ENOTSUP: + /* invalid fd, unless during file system support introspection, in which + * it actually means what it says */ +#endif + case EIO: + case EBADF: + case EINVAL: + case ENOTCONN: + case ENODEV: + case ENXIO: + case ENOENT: +#ifdef ESTALE /* ESTALE is not defined on Interix systems */ + case ESTALE: +#endif + case ENOSYS: + /* these should force the client to close the file and reconnect */ + + default: + return sqliteIOErr; + } +} + + +/****************************************************************************** +****************** Begin Unique File ID Utility Used By VxWorks *************** +** +** On most versions of unix, we can get a unique ID for a file by concatenating +** the device number and the inode number. But this does not work on VxWorks. +** On VxWorks, a unique file id must be based on the canonical filename. +** +** A pointer to an instance of the following structure can be used as a +** unique file ID in VxWorks. Each instance of this structure contains +** a copy of the canonical filename. There is also a reference count. +** The structure is reclaimed when the number of pointers to it drops to +** zero. +** +** There are never very many files open at one time and lookups are not +** a performance-critical path, so it is sufficient to put these +** structures on a linked list. +*/ +struct vxworksFileId { + struct vxworksFileId *pNext; /* Next in a list of them all */ + int nRef; /* Number of references to this one */ + int nName; /* Length of the zCanonicalName[] string */ + char *zCanonicalName; /* Canonical filename */ +}; + +#if OS_VXWORKS +/* +** All unique filenames are held on a linked list headed by this +** variable: +*/ +static struct vxworksFileId *vxworksFileList = 0; + +/* +** Simplify a filename into its canonical form +** by making the following changes: +** +** * removing any trailing and duplicate / +** * convert /./ into just / +** * convert /A/../ where A is any simple name into just / +** +** Changes are made in-place. Return the new name length. +** +** The original filename is in z[0..n-1]. Return the number of +** characters in the simplified name. +*/ +static int vxworksSimplifyName(char *z, int n){ + int i, j; + while( n>1 && z[n-1]=='/' ){ n--; } + for(i=j=0; i0 && z[j-1]!='/' ){ j--; } + if( j>0 ){ j--; } + i += 2; + continue; + } + } + z[j++] = z[i]; + } + z[j] = 0; + return j; +} + +/* +** Find a unique file ID for the given absolute pathname. Return +** a pointer to the vxworksFileId object. This pointer is the unique +** file ID. +** +** The nRef field of the vxworksFileId object is incremented before +** the object is returned. A new vxworksFileId object is created +** and added to the global list if necessary. +** +** If a memory allocation error occurs, return NULL. +*/ +static struct vxworksFileId *vxworksFindFileId(const char *zAbsoluteName){ + struct vxworksFileId *pNew; /* search key and new file ID */ + struct vxworksFileId *pCandidate; /* For looping over existing file IDs */ + int n; /* Length of zAbsoluteName string */ + + assert( zAbsoluteName[0]=='/' ); + n = (int)strlen(zAbsoluteName); + pNew = sqlite3_malloc( sizeof(*pNew) + (n+1) ); + if( pNew==0 ) return 0; + pNew->zCanonicalName = (char*)&pNew[1]; + memcpy(pNew->zCanonicalName, zAbsoluteName, n+1); + n = vxworksSimplifyName(pNew->zCanonicalName, n); + + /* Search for an existing entry that matching the canonical name. + ** If found, increment the reference count and return a pointer to + ** the existing file ID. + */ + unixEnterMutex(); + for(pCandidate=vxworksFileList; pCandidate; pCandidate=pCandidate->pNext){ + if( pCandidate->nName==n + && memcmp(pCandidate->zCanonicalName, pNew->zCanonicalName, n)==0 + ){ + sqlite3_free(pNew); + pCandidate->nRef++; + unixLeaveMutex(); + return pCandidate; + } + } + + /* No match was found. We will make a new file ID */ + pNew->nRef = 1; + pNew->nName = n; + pNew->pNext = vxworksFileList; + vxworksFileList = pNew; + unixLeaveMutex(); + return pNew; +} + +/* +** Decrement the reference count on a vxworksFileId object. Free +** the object when the reference count reaches zero. +*/ +static void vxworksReleaseFileId(struct vxworksFileId *pId){ + unixEnterMutex(); + assert( pId->nRef>0 ); + pId->nRef--; + if( pId->nRef==0 ){ + struct vxworksFileId **pp; + for(pp=&vxworksFileList; *pp && *pp!=pId; pp = &((*pp)->pNext)){} + assert( *pp==pId ); + *pp = pId->pNext; + sqlite3_free(pId); + } + unixLeaveMutex(); +} +#endif /* OS_VXWORKS */ +/*************** End of Unique File ID Utility Used By VxWorks **************** +******************************************************************************/ + + +/****************************************************************************** +*************************** Posix Advisory Locking **************************** +** +** POSIX advisory locks are broken by design. ANSI STD 1003.1 (1996) +** section 6.5.2.2 lines 483 through 490 specify that when a process +** sets or clears a lock, that operation overrides any prior locks set +** by the same process. It does not explicitly say so, but this implies +** that it overrides locks set by the same process using a different +** file descriptor. Consider this test case: +** +** int fd1 = open("./file1", O_RDWR|O_CREAT, 0644); +** int fd2 = open("./file2", O_RDWR|O_CREAT, 0644); +** +** Suppose ./file1 and ./file2 are really the same file (because +** one is a hard or symbolic link to the other) then if you set +** an exclusive lock on fd1, then try to get an exclusive lock +** on fd2, it works. I would have expected the second lock to +** fail since there was already a lock on the file due to fd1. +** But not so. Since both locks came from the same process, the +** second overrides the first, even though they were on different +** file descriptors opened on different file names. +** +** This means that we cannot use POSIX locks to synchronize file access +** among competing threads of the same process. POSIX locks will work fine +** to synchronize access for threads in separate processes, but not +** threads within the same process. +** +** To work around the problem, SQLite has to manage file locks internally +** on its own. Whenever a new database is opened, we have to find the +** specific inode of the database file (the inode is determined by the +** st_dev and st_ino fields of the stat structure that fstat() fills in) +** and check for locks already existing on that inode. When locks are +** created or removed, we have to look at our own internal record of the +** locks to see if another thread has previously set a lock on that same +** inode. +** +** (Aside: The use of inode numbers as unique IDs does not work on VxWorks. +** For VxWorks, we have to use the alternative unique ID system based on +** canonical filename and implemented in the previous division.) +** +** The sqlite3_file structure for POSIX is no longer just an integer file +** descriptor. It is now a structure that holds the integer file +** descriptor and a pointer to a structure that describes the internal +** locks on the corresponding inode. There is one locking structure +** per inode, so if the same inode is opened twice, both unixFile structures +** point to the same locking structure. The locking structure keeps +** a reference count (so we will know when to delete it) and a "cnt" +** field that tells us its internal lock status. cnt==0 means the +** file is unlocked. cnt==-1 means the file has an exclusive lock. +** cnt>0 means there are cnt shared locks on the file. +** +** Any attempt to lock or unlock a file first checks the locking +** structure. The fcntl() system call is only invoked to set a +** POSIX lock if the internal lock structure transitions between +** a locked and an unlocked state. +** +** But wait: there are yet more problems with POSIX advisory locks. +** +** If you close a file descriptor that points to a file that has locks, +** all locks on that file that are owned by the current process are +** released. To work around this problem, each unixInodeInfo object +** maintains a count of the number of pending locks on tha inode. +** When an attempt is made to close an unixFile, if there are +** other unixFile open on the same inode that are holding locks, the call +** to close() the file descriptor is deferred until all of the locks clear. +** The unixInodeInfo structure keeps a list of file descriptors that need to +** be closed and that list is walked (and cleared) when the last lock +** clears. +** +** Yet another problem: LinuxThreads do not play well with posix locks. +** +** Many older versions of linux use the LinuxThreads library which is +** not posix compliant. Under LinuxThreads, a lock created by thread +** A cannot be modified or overridden by a different thread B. +** Only thread A can modify the lock. Locking behavior is correct +** if the appliation uses the newer Native Posix Thread Library (NPTL) +** on linux - with NPTL a lock created by thread A can override locks +** in thread B. But there is no way to know at compile-time which +** threading library is being used. So there is no way to know at +** compile-time whether or not thread A can override locks on thread B. +** One has to do a run-time check to discover the behavior of the +** current process. +** +** SQLite used to support LinuxThreads. But support for LinuxThreads +** was dropped beginning with version 3.7.0. SQLite will still work with +** LinuxThreads provided that (1) there is no more than one connection +** per database file in the same process and (2) database connections +** do not move across threads. +*/ + +/* +** An instance of the following structure serves as the key used +** to locate a particular unixInodeInfo object. +*/ +struct unixFileId { + dev_t dev; /* Device number */ +#if OS_VXWORKS + struct vxworksFileId *pId; /* Unique file ID for vxworks. */ +#else + ino_t ino; /* Inode number */ +#endif +}; + +/* +** An instance of the following structure is allocated for each open +** inode. Or, on LinuxThreads, there is one of these structures for +** each inode opened by each thread. +** +** A single inode can have multiple file descriptors, so each unixFile +** structure contains a pointer to an instance of this object and this +** object keeps a count of the number of unixFile pointing to it. +*/ +struct unixInodeInfo { + struct unixFileId fileId; /* The lookup key */ + int nShared; /* Number of SHARED locks held */ + unsigned char eFileLock; /* One of SHARED_LOCK, RESERVED_LOCK etc. */ + unsigned char bProcessLock; /* An exclusive process lock is held */ + int nRef; /* Number of pointers to this structure */ + unixShmNode *pShmNode; /* Shared memory associated with this inode */ + int nLock; /* Number of outstanding file locks */ + UnixUnusedFd *pUnused; /* Unused file descriptors to close */ + unixInodeInfo *pNext; /* List of all unixInodeInfo objects */ + unixInodeInfo *pPrev; /* .... doubly linked */ +#if SQLITE_ENABLE_LOCKING_STYLE + unsigned long long sharedByte; /* for AFP simulated shared lock */ +#endif +#if OS_VXWORKS + sem_t *pSem; /* Named POSIX semaphore */ + char aSemName[MAX_PATHNAME+2]; /* Name of that semaphore */ +#endif +}; + +/* +** A lists of all unixInodeInfo objects. +*/ +static unixInodeInfo *inodeList = 0; + +/* +** +** This function - unixLogError_x(), is only ever called via the macro +** unixLogError(). +** +** It is invoked after an error occurs in an OS function and errno has been +** set. It logs a message using sqlite3_log() containing the current value of +** errno and, if possible, the human-readable equivalent from strerror() or +** strerror_r(). +** +** The first argument passed to the macro should be the error code that +** will be returned to SQLite (e.g. SQLITE_IOERR_DELETE, SQLITE_CANTOPEN). +** The two subsequent arguments should be the name of the OS function that +** failed (e.g. "unlink", "open") and the associated file-system path, +** if any. +*/ +#define unixLogError(a,b,c) unixLogErrorAtLine(a,b,c,__LINE__) +static int unixLogErrorAtLine( + int errcode, /* SQLite error code */ + const char *zFunc, /* Name of OS function that failed */ + const char *zPath, /* File path associated with error */ + int iLine /* Source line number where error occurred */ +){ + char *zErr; /* Message from strerror() or equivalent */ + int iErrno = errno; /* Saved syscall error number */ + + /* If this is not a threadsafe build (SQLITE_THREADSAFE==0), then use + ** the strerror() function to obtain the human-readable error message + ** equivalent to errno. Otherwise, use strerror_r(). + */ +#if SQLITE_THREADSAFE && defined(HAVE_STRERROR_R) + char aErr[80]; + memset(aErr, 0, sizeof(aErr)); + zErr = aErr; + + /* If STRERROR_R_CHAR_P (set by autoconf scripts) or __USE_GNU is defined, + ** assume that the system provides the GNU version of strerror_r() that + ** returns a pointer to a buffer containing the error message. That pointer + ** may point to aErr[], or it may point to some static storage somewhere. + ** Otherwise, assume that the system provides the POSIX version of + ** strerror_r(), which always writes an error message into aErr[]. + ** + ** If the code incorrectly assumes that it is the POSIX version that is + ** available, the error message will often be an empty string. Not a + ** huge problem. Incorrectly concluding that the GNU version is available + ** could lead to a segfault though. + */ +#if defined(STRERROR_R_CHAR_P) || defined(__USE_GNU) + zErr = +# endif + strerror_r(iErrno, aErr, sizeof(aErr)-1); + +#elif SQLITE_THREADSAFE + /* This is a threadsafe build, but strerror_r() is not available. */ + zErr = ""; +#else + /* Non-threadsafe build, use strerror(). */ + zErr = strerror(iErrno); +#endif + + if( zPath==0 ) zPath = ""; + sqlite3_log(errcode, + "os_unix.c:%d: (%d) %s(%s) - %s", + iLine, iErrno, zFunc, zPath, zErr + ); + + return errcode; +} + +/* +** Close a file descriptor. +** +** We assume that close() almost always works, since it is only in a +** very sick application or on a very sick platform that it might fail. +** If it does fail, simply leak the file descriptor, but do log the +** error. +** +** Note that it is not safe to retry close() after EINTR since the +** file descriptor might have already been reused by another thread. +** So we don't even try to recover from an EINTR. Just log the error +** and move on. +*/ +static void robust_close(unixFile *pFile, int h, int lineno){ + if( osClose(h) ){ + unixLogErrorAtLine(SQLITE_IOERR_CLOSE, "close", + pFile ? pFile->zPath : 0, lineno); + } +} + +/* +** Close all file descriptors accumuated in the unixInodeInfo->pUnused list. +*/ +static void closePendingFds(unixFile *pFile){ + unixInodeInfo *pInode = pFile->pInode; + UnixUnusedFd *p; + UnixUnusedFd *pNext; + for(p=pInode->pUnused; p; p=pNext){ + pNext = p->pNext; + robust_close(pFile, p->fd, __LINE__); + sqlite3_free(p); + } + pInode->pUnused = 0; +} + +/* +** Release a unixInodeInfo structure previously allocated by findInodeInfo(). +** +** The mutex entered using the unixEnterMutex() function must be held +** when this function is called. +*/ +static void releaseInodeInfo(unixFile *pFile){ + unixInodeInfo *pInode = pFile->pInode; + assert( unixMutexHeld() ); + if( ALWAYS(pInode) ){ + pInode->nRef--; + if( pInode->nRef==0 ){ + assert( pInode->pShmNode==0 ); + closePendingFds(pFile); + if( pInode->pPrev ){ + assert( pInode->pPrev->pNext==pInode ); + pInode->pPrev->pNext = pInode->pNext; + }else{ + assert( inodeList==pInode ); + inodeList = pInode->pNext; + } + if( pInode->pNext ){ + assert( pInode->pNext->pPrev==pInode ); + pInode->pNext->pPrev = pInode->pPrev; + } + sqlite3_free(pInode); + } + } +} + +/* +** Given a file descriptor, locate the unixInodeInfo object that +** describes that file descriptor. Create a new one if necessary. The +** return value might be uninitialized if an error occurs. +** +** The mutex entered using the unixEnterMutex() function must be held +** when this function is called. +** +** Return an appropriate error code. +*/ +static int findInodeInfo( + unixFile *pFile, /* Unix file with file desc used in the key */ + unixInodeInfo **ppInode /* Return the unixInodeInfo object here */ +){ + int rc; /* System call return code */ + int fd; /* The file descriptor for pFile */ + struct unixFileId fileId; /* Lookup key for the unixInodeInfo */ + struct stat statbuf; /* Low-level file information */ + unixInodeInfo *pInode = 0; /* Candidate unixInodeInfo object */ + + assert( unixMutexHeld() ); + + /* Get low-level information about the file that we can used to + ** create a unique name for the file. + */ + fd = pFile->h; + rc = osFstat(fd, &statbuf); + if( rc!=0 ){ + pFile->lastErrno = errno; +#ifdef EOVERFLOW + if( pFile->lastErrno==EOVERFLOW ) return SQLITE_NOLFS; +#endif + return SQLITE_IOERR; + } + +#ifdef __APPLE__ + /* On OS X on an msdos filesystem, the inode number is reported + ** incorrectly for zero-size files. See ticket #3260. To work + ** around this problem (we consider it a bug in OS X, not SQLite) + ** we always increase the file size to 1 by writing a single byte + ** prior to accessing the inode number. The one byte written is + ** an ASCII 'S' character which also happens to be the first byte + ** in the header of every SQLite database. In this way, if there + ** is a race condition such that another thread has already populated + ** the first page of the database, no damage is done. + */ + if( statbuf.st_size==0 && (pFile->fsFlags & SQLITE_FSFLAGS_IS_MSDOS)!=0 ){ + do{ rc = osWrite(fd, "S", 1); }while( rc<0 && errno==EINTR ); + if( rc!=1 ){ + pFile->lastErrno = errno; + return SQLITE_IOERR; + } + rc = osFstat(fd, &statbuf); + if( rc!=0 ){ + pFile->lastErrno = errno; + return SQLITE_IOERR; + } + } +#endif + + memset(&fileId, 0, sizeof(fileId)); + fileId.dev = statbuf.st_dev; +#if OS_VXWORKS + fileId.pId = pFile->pId; +#else + fileId.ino = statbuf.st_ino; +#endif + pInode = inodeList; + while( pInode && memcmp(&fileId, &pInode->fileId, sizeof(fileId)) ){ + pInode = pInode->pNext; + } + if( pInode==0 ){ + pInode = sqlite3_malloc( sizeof(*pInode) ); + if( pInode==0 ){ + return SQLITE_NOMEM; + } + memset(pInode, 0, sizeof(*pInode)); + memcpy(&pInode->fileId, &fileId, sizeof(fileId)); + pInode->nRef = 1; + pInode->pNext = inodeList; + pInode->pPrev = 0; + if( inodeList ) inodeList->pPrev = pInode; + inodeList = pInode; + }else{ + pInode->nRef++; + } + *ppInode = pInode; + return SQLITE_OK; +} + +/* +** Return TRUE if pFile has been renamed or unlinked since it was first opened. +*/ +static int fileHasMoved(unixFile *pFile){ + struct stat buf; + return pFile->pInode!=0 && + (osStat(pFile->zPath, &buf)!=0 || buf.st_ino!=pFile->pInode->fileId.ino); +} + + +/* +** Check a unixFile that is a database. Verify the following: +** +** (1) There is exactly one hard link on the file +** (2) The file is not a symbolic link +** (3) The file has not been renamed or unlinked +** +** Issue sqlite3_log(SQLITE_WARNING,...) messages if anything is not right. +*/ +static void verifyDbFile(unixFile *pFile){ + struct stat buf; + int rc; + if( pFile->ctrlFlags & UNIXFILE_WARNED ){ + /* One or more of the following warnings have already been issued. Do not + ** repeat them so as not to clutter the error log */ + return; + } + rc = osFstat(pFile->h, &buf); + if( rc!=0 ){ + sqlite3_log(SQLITE_WARNING, "cannot fstat db file %s", pFile->zPath); + pFile->ctrlFlags |= UNIXFILE_WARNED; + return; + } + if( buf.st_nlink==0 && (pFile->ctrlFlags & UNIXFILE_DELETE)==0 ){ + sqlite3_log(SQLITE_WARNING, "file unlinked while open: %s", pFile->zPath); + pFile->ctrlFlags |= UNIXFILE_WARNED; + return; + } + if( buf.st_nlink>1 ){ + sqlite3_log(SQLITE_WARNING, "multiple links to file: %s", pFile->zPath); + pFile->ctrlFlags |= UNIXFILE_WARNED; + return; + } + if( fileHasMoved(pFile) ){ + sqlite3_log(SQLITE_WARNING, "file renamed while open: %s", pFile->zPath); + pFile->ctrlFlags |= UNIXFILE_WARNED; + return; + } +} + + +/* +** This routine checks if there is a RESERVED lock held on the specified +** file by this or any other process. If such a lock is held, set *pResOut +** to a non-zero value otherwise *pResOut is set to zero. The return value +** is set to SQLITE_OK unless an I/O error occurs during lock checking. +*/ +static int unixCheckReservedLock(sqlite3_file *id, int *pResOut){ + int rc = SQLITE_OK; + int reserved = 0; + unixFile *pFile = (unixFile*)id; + + SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); + + assert( pFile ); + unixEnterMutex(); /* Because pFile->pInode is shared across threads */ + + /* Check if a thread in this process holds such a lock */ + if( pFile->pInode->eFileLock>SHARED_LOCK ){ + reserved = 1; + } + + /* Otherwise see if some other process holds it. + */ +#ifndef __DJGPP__ + if( !reserved && !pFile->pInode->bProcessLock ){ + struct flock lock; + lock.l_whence = SEEK_SET; + lock.l_start = RESERVED_BYTE; + lock.l_len = 1; + lock.l_type = F_WRLCK; + if( osFcntl(pFile->h, F_GETLK, &lock) ){ + rc = SQLITE_IOERR_CHECKRESERVEDLOCK; + pFile->lastErrno = errno; + } else if( lock.l_type!=F_UNLCK ){ + reserved = 1; + } + } +#endif + + unixLeaveMutex(); + OSTRACE(("TEST WR-LOCK %d %d %d (unix)\n", pFile->h, rc, reserved)); + + *pResOut = reserved; + return rc; +} + +/* +** Attempt to set a system-lock on the file pFile. The lock is +** described by pLock. +** +** If the pFile was opened read/write from unix-excl, then the only lock +** ever obtained is an exclusive lock, and it is obtained exactly once +** the first time any lock is attempted. All subsequent system locking +** operations become no-ops. Locking operations still happen internally, +** in order to coordinate access between separate database connections +** within this process, but all of that is handled in memory and the +** operating system does not participate. +** +** This function is a pass-through to fcntl(F_SETLK) if pFile is using +** any VFS other than "unix-excl" or if pFile is opened on "unix-excl" +** and is read-only. +** +** Zero is returned if the call completes successfully, or -1 if a call +** to fcntl() fails. In this case, errno is set appropriately (by fcntl()). +*/ +static int unixFileLock(unixFile *pFile, struct flock *pLock){ + int rc; + unixInodeInfo *pInode = pFile->pInode; + assert( unixMutexHeld() ); + assert( pInode!=0 ); + if( ((pFile->ctrlFlags & UNIXFILE_EXCL)!=0 || pInode->bProcessLock) + && ((pFile->ctrlFlags & UNIXFILE_RDONLY)==0) + ){ + if( pInode->bProcessLock==0 ){ + struct flock lock; + assert( pInode->nLock==0 ); + lock.l_whence = SEEK_SET; + lock.l_start = SHARED_FIRST; + lock.l_len = SHARED_SIZE; + lock.l_type = F_WRLCK; + rc = osFcntl(pFile->h, F_SETLK, &lock); + if( rc<0 ) return rc; + pInode->bProcessLock = 1; + pInode->nLock++; + }else{ + rc = 0; + } + }else{ + rc = osFcntl(pFile->h, F_SETLK, pLock); + } + return rc; +} + +/* +** Lock the file with the lock specified by parameter eFileLock - one +** of the following: +** +** (1) SHARED_LOCK +** (2) RESERVED_LOCK +** (3) PENDING_LOCK +** (4) EXCLUSIVE_LOCK +** +** Sometimes when requesting one lock state, additional lock states +** are inserted in between. The locking might fail on one of the later +** transitions leaving the lock state different from what it started but +** still short of its goal. The following chart shows the allowed +** transitions and the inserted intermediate states: +** +** UNLOCKED -> SHARED +** SHARED -> RESERVED +** SHARED -> (PENDING) -> EXCLUSIVE +** RESERVED -> (PENDING) -> EXCLUSIVE +** PENDING -> EXCLUSIVE +** +** This routine will only increase a lock. Use the sqlite3OsUnlock() +** routine to lower a locking level. +*/ +static int unixLock(sqlite3_file *id, int eFileLock){ + /* The following describes the implementation of the various locks and + ** lock transitions in terms of the POSIX advisory shared and exclusive + ** lock primitives (called read-locks and write-locks below, to avoid + ** confusion with SQLite lock names). The algorithms are complicated + ** slightly in order to be compatible with windows systems simultaneously + ** accessing the same database file, in case that is ever required. + ** + ** Symbols defined in os.h indentify the 'pending byte' and the 'reserved + ** byte', each single bytes at well known offsets, and the 'shared byte + ** range', a range of 510 bytes at a well known offset. + ** + ** To obtain a SHARED lock, a read-lock is obtained on the 'pending + ** byte'. If this is successful, a random byte from the 'shared byte + ** range' is read-locked and the lock on the 'pending byte' released. + ** + ** A process may only obtain a RESERVED lock after it has a SHARED lock. + ** A RESERVED lock is implemented by grabbing a write-lock on the + ** 'reserved byte'. + ** + ** A process may only obtain a PENDING lock after it has obtained a + ** SHARED lock. A PENDING lock is implemented by obtaining a write-lock + ** on the 'pending byte'. This ensures that no new SHARED locks can be + ** obtained, but existing SHARED locks are allowed to persist. A process + ** does not have to obtain a RESERVED lock on the way to a PENDING lock. + ** This property is used by the algorithm for rolling back a journal file + ** after a crash. + ** + ** An EXCLUSIVE lock, obtained after a PENDING lock is held, is + ** implemented by obtaining a write-lock on the entire 'shared byte + ** range'. Since all other locks require a read-lock on one of the bytes + ** within this range, this ensures that no other locks are held on the + ** database. + ** + ** The reason a single byte cannot be used instead of the 'shared byte + ** range' is that some versions of windows do not support read-locks. By + ** locking a random byte from a range, concurrent SHARED locks may exist + ** even if the locking primitive used is always a write-lock. + */ + int rc = SQLITE_OK; + unixFile *pFile = (unixFile*)id; + unixInodeInfo *pInode; + struct flock lock; + int tErrno = 0; + + assert( pFile ); + OSTRACE(("LOCK %d %s was %s(%s,%d) pid=%d (unix)\n", pFile->h, + azFileLock(eFileLock), azFileLock(pFile->eFileLock), + azFileLock(pFile->pInode->eFileLock), pFile->pInode->nShared , getpid())); + + /* If there is already a lock of this type or more restrictive on the + ** unixFile, do nothing. Don't use the end_lock: exit path, as + ** unixEnterMutex() hasn't been called yet. + */ + if( pFile->eFileLock>=eFileLock ){ + OSTRACE(("LOCK %d %s ok (already held) (unix)\n", pFile->h, + azFileLock(eFileLock))); + return SQLITE_OK; + } + + /* Make sure the locking sequence is correct. + ** (1) We never move from unlocked to anything higher than shared lock. + ** (2) SQLite never explicitly requests a pendig lock. + ** (3) A shared lock is always held when a reserve lock is requested. + */ + assert( pFile->eFileLock!=NO_LOCK || eFileLock==SHARED_LOCK ); + assert( eFileLock!=PENDING_LOCK ); + assert( eFileLock!=RESERVED_LOCK || pFile->eFileLock==SHARED_LOCK ); + + /* This mutex is needed because pFile->pInode is shared across threads + */ + unixEnterMutex(); + pInode = pFile->pInode; + + /* If some thread using this PID has a lock via a different unixFile* + ** handle that precludes the requested lock, return BUSY. + */ + if( (pFile->eFileLock!=pInode->eFileLock && + (pInode->eFileLock>=PENDING_LOCK || eFileLock>SHARED_LOCK)) + ){ + rc = SQLITE_BUSY; + goto end_lock; + } + + /* If a SHARED lock is requested, and some thread using this PID already + ** has a SHARED or RESERVED lock, then increment reference counts and + ** return SQLITE_OK. + */ + if( eFileLock==SHARED_LOCK && + (pInode->eFileLock==SHARED_LOCK || pInode->eFileLock==RESERVED_LOCK) ){ + assert( eFileLock==SHARED_LOCK ); + assert( pFile->eFileLock==0 ); + assert( pInode->nShared>0 ); + pFile->eFileLock = SHARED_LOCK; + pInode->nShared++; + pInode->nLock++; + goto end_lock; + } + + + /* A PENDING lock is needed before acquiring a SHARED lock and before + ** acquiring an EXCLUSIVE lock. For the SHARED lock, the PENDING will + ** be released. + */ + lock.l_len = 1L; + lock.l_whence = SEEK_SET; + if( eFileLock==SHARED_LOCK + || (eFileLock==EXCLUSIVE_LOCK && pFile->eFileLocklastErrno = tErrno; + } + goto end_lock; + } + } + + + /* If control gets to this point, then actually go ahead and make + ** operating system calls for the specified lock. + */ + if( eFileLock==SHARED_LOCK ){ + assert( pInode->nShared==0 ); + assert( pInode->eFileLock==0 ); + assert( rc==SQLITE_OK ); + + /* Now get the read-lock */ + lock.l_start = SHARED_FIRST; + lock.l_len = SHARED_SIZE; + if( unixFileLock(pFile, &lock) ){ + tErrno = errno; + rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); + } + + /* Drop the temporary PENDING lock */ + lock.l_start = PENDING_BYTE; + lock.l_len = 1L; + lock.l_type = F_UNLCK; + if( unixFileLock(pFile, &lock) && rc==SQLITE_OK ){ + /* This could happen with a network mount */ + tErrno = errno; + rc = SQLITE_IOERR_UNLOCK; + } + + if( rc ){ + if( rc!=SQLITE_BUSY ){ + pFile->lastErrno = tErrno; + } + goto end_lock; + }else{ + pFile->eFileLock = SHARED_LOCK; + pInode->nLock++; + pInode->nShared = 1; + } + }else if( eFileLock==EXCLUSIVE_LOCK && pInode->nShared>1 ){ + /* We are trying for an exclusive lock but another thread in this + ** same process is still holding a shared lock. */ + rc = SQLITE_BUSY; + }else{ + /* The request was for a RESERVED or EXCLUSIVE lock. It is + ** assumed that there is a SHARED or greater lock on the file + ** already. + */ + assert( 0!=pFile->eFileLock ); + lock.l_type = F_WRLCK; + + assert( eFileLock==RESERVED_LOCK || eFileLock==EXCLUSIVE_LOCK ); + if( eFileLock==RESERVED_LOCK ){ + lock.l_start = RESERVED_BYTE; + lock.l_len = 1L; + }else{ + lock.l_start = SHARED_FIRST; + lock.l_len = SHARED_SIZE; + } + + if( unixFileLock(pFile, &lock) ){ + tErrno = errno; + rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); + if( rc!=SQLITE_BUSY ){ + pFile->lastErrno = tErrno; + } + } + } + + +#ifdef SQLITE_DEBUG + /* Set up the transaction-counter change checking flags when + ** transitioning from a SHARED to a RESERVED lock. The change + ** from SHARED to RESERVED marks the beginning of a normal + ** write operation (not a hot journal rollback). + */ + if( rc==SQLITE_OK + && pFile->eFileLock<=SHARED_LOCK + && eFileLock==RESERVED_LOCK + ){ + pFile->transCntrChng = 0; + pFile->dbUpdate = 0; + pFile->inNormalWrite = 1; + } +#endif + + + if( rc==SQLITE_OK ){ + pFile->eFileLock = eFileLock; + pInode->eFileLock = eFileLock; + }else if( eFileLock==EXCLUSIVE_LOCK ){ + pFile->eFileLock = PENDING_LOCK; + pInode->eFileLock = PENDING_LOCK; + } + +end_lock: + unixLeaveMutex(); + OSTRACE(("LOCK %d %s %s (unix)\n", pFile->h, azFileLock(eFileLock), + rc==SQLITE_OK ? "ok" : "failed")); + return rc; +} + +/* +** Add the file descriptor used by file handle pFile to the corresponding +** pUnused list. +*/ +static void setPendingFd(unixFile *pFile){ + unixInodeInfo *pInode = pFile->pInode; + UnixUnusedFd *p = pFile->pUnused; + p->pNext = pInode->pUnused; + pInode->pUnused = p; + pFile->h = -1; + pFile->pUnused = 0; +} + +/* +** Lower the locking level on file descriptor pFile to eFileLock. eFileLock +** must be either NO_LOCK or SHARED_LOCK. +** +** If the locking level of the file descriptor is already at or below +** the requested locking level, this routine is a no-op. +** +** If handleNFSUnlock is true, then on downgrading an EXCLUSIVE_LOCK to SHARED +** the byte range is divided into 2 parts and the first part is unlocked then +** set to a read lock, then the other part is simply unlocked. This works +** around a bug in BSD NFS lockd (also seen on MacOSX 10.3+) that fails to +** remove the write lock on a region when a read lock is set. +*/ +static int posixUnlock(sqlite3_file *id, int eFileLock, int handleNFSUnlock){ + unixFile *pFile = (unixFile*)id; + unixInodeInfo *pInode; + struct flock lock; + int rc = SQLITE_OK; + + assert( pFile ); + OSTRACE(("UNLOCK %d %d was %d(%d,%d) pid=%d (unix)\n", pFile->h, eFileLock, + pFile->eFileLock, pFile->pInode->eFileLock, pFile->pInode->nShared, + getpid())); + + assert( eFileLock<=SHARED_LOCK ); + if( pFile->eFileLock<=eFileLock ){ + return SQLITE_OK; + } + unixEnterMutex(); + pInode = pFile->pInode; + assert( pInode->nShared!=0 ); + if( pFile->eFileLock>SHARED_LOCK ){ + assert( pInode->eFileLock==pFile->eFileLock ); + +#ifdef SQLITE_DEBUG + /* When reducing a lock such that other processes can start + ** reading the database file again, make sure that the + ** transaction counter was updated if any part of the database + ** file changed. If the transaction counter is not updated, + ** other connections to the same file might not realize that + ** the file has changed and hence might not know to flush their + ** cache. The use of a stale cache can lead to database corruption. + */ + pFile->inNormalWrite = 0; +#endif + + /* downgrading to a shared lock on NFS involves clearing the write lock + ** before establishing the readlock - to avoid a race condition we downgrade + ** the lock in 2 blocks, so that part of the range will be covered by a + ** write lock until the rest is covered by a read lock: + ** 1: [WWWWW] + ** 2: [....W] + ** 3: [RRRRW] + ** 4: [RRRR.] + */ + if( eFileLock==SHARED_LOCK ){ + +#if !defined(__APPLE__) || !SQLITE_ENABLE_LOCKING_STYLE + (void)handleNFSUnlock; + assert( handleNFSUnlock==0 ); +#endif +#if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE + if( handleNFSUnlock ){ + int tErrno; /* Error code from system call errors */ + off_t divSize = SHARED_SIZE - 1; + + lock.l_type = F_UNLCK; + lock.l_whence = SEEK_SET; + lock.l_start = SHARED_FIRST; + lock.l_len = divSize; + if( unixFileLock(pFile, &lock)==(-1) ){ + tErrno = errno; + rc = SQLITE_IOERR_UNLOCK; + if( IS_LOCK_ERROR(rc) ){ + pFile->lastErrno = tErrno; + } + goto end_unlock; + } + lock.l_type = F_RDLCK; + lock.l_whence = SEEK_SET; + lock.l_start = SHARED_FIRST; + lock.l_len = divSize; + if( unixFileLock(pFile, &lock)==(-1) ){ + tErrno = errno; + rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_RDLOCK); + if( IS_LOCK_ERROR(rc) ){ + pFile->lastErrno = tErrno; + } + goto end_unlock; + } + lock.l_type = F_UNLCK; + lock.l_whence = SEEK_SET; + lock.l_start = SHARED_FIRST+divSize; + lock.l_len = SHARED_SIZE-divSize; + if( unixFileLock(pFile, &lock)==(-1) ){ + tErrno = errno; + rc = SQLITE_IOERR_UNLOCK; + if( IS_LOCK_ERROR(rc) ){ + pFile->lastErrno = tErrno; + } + goto end_unlock; + } + }else +#endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ + { + lock.l_type = F_RDLCK; + lock.l_whence = SEEK_SET; + lock.l_start = SHARED_FIRST; + lock.l_len = SHARED_SIZE; + if( unixFileLock(pFile, &lock) ){ + /* In theory, the call to unixFileLock() cannot fail because another + ** process is holding an incompatible lock. If it does, this + ** indicates that the other process is not following the locking + ** protocol. If this happens, return SQLITE_IOERR_RDLOCK. Returning + ** SQLITE_BUSY would confuse the upper layer (in practice it causes + ** an assert to fail). */ + rc = SQLITE_IOERR_RDLOCK; + pFile->lastErrno = errno; + goto end_unlock; + } + } + } + lock.l_type = F_UNLCK; + lock.l_whence = SEEK_SET; + lock.l_start = PENDING_BYTE; + lock.l_len = 2L; assert( PENDING_BYTE+1==RESERVED_BYTE ); + if( unixFileLock(pFile, &lock)==0 ){ + pInode->eFileLock = SHARED_LOCK; + }else{ + rc = SQLITE_IOERR_UNLOCK; + pFile->lastErrno = errno; + goto end_unlock; + } + } + if( eFileLock==NO_LOCK ){ + /* Decrement the shared lock counter. Release the lock using an + ** OS call only when all threads in this same process have released + ** the lock. + */ + pInode->nShared--; + if( pInode->nShared==0 ){ + lock.l_type = F_UNLCK; + lock.l_whence = SEEK_SET; + lock.l_start = lock.l_len = 0L; + if( unixFileLock(pFile, &lock)==0 ){ + pInode->eFileLock = NO_LOCK; + }else{ + rc = SQLITE_IOERR_UNLOCK; + pFile->lastErrno = errno; + pInode->eFileLock = NO_LOCK; + pFile->eFileLock = NO_LOCK; + } + } + + /* Decrement the count of locks against this same file. When the + ** count reaches zero, close any other file descriptors whose close + ** was deferred because of outstanding locks. + */ + pInode->nLock--; + assert( pInode->nLock>=0 ); + if( pInode->nLock==0 ){ + closePendingFds(pFile); + } + } + +end_unlock: + unixLeaveMutex(); + if( rc==SQLITE_OK ) pFile->eFileLock = eFileLock; + return rc; +} + +/* +** Lower the locking level on file descriptor pFile to eFileLock. eFileLock +** must be either NO_LOCK or SHARED_LOCK. +** +** If the locking level of the file descriptor is already at or below +** the requested locking level, this routine is a no-op. +*/ +static int unixUnlock(sqlite3_file *id, int eFileLock){ +#if SQLITE_MAX_MMAP_SIZE>0 + assert( eFileLock==SHARED_LOCK || ((unixFile *)id)->nFetchOut==0 ); +#endif + return posixUnlock(id, eFileLock, 0); +} + +#if SQLITE_MAX_MMAP_SIZE>0 +static int unixMapfile(unixFile *pFd, i64 nByte); +static void unixUnmapfile(unixFile *pFd); +#endif + +/* +** This function performs the parts of the "close file" operation +** common to all locking schemes. It closes the directory and file +** handles, if they are valid, and sets all fields of the unixFile +** structure to 0. +** +** It is *not* necessary to hold the mutex when this routine is called, +** even on VxWorks. A mutex will be acquired on VxWorks by the +** vxworksReleaseFileId() routine. +*/ +static int closeUnixFile(sqlite3_file *id){ + unixFile *pFile = (unixFile*)id; +#if SQLITE_MAX_MMAP_SIZE>0 + unixUnmapfile(pFile); +#endif + if( pFile->h>=0 ){ + robust_close(pFile, pFile->h, __LINE__); + pFile->h = -1; + } +#if OS_VXWORKS + if( pFile->pId ){ + if( pFile->ctrlFlags & UNIXFILE_DELETE ){ + osUnlink(pFile->pId->zCanonicalName); + } + vxworksReleaseFileId(pFile->pId); + pFile->pId = 0; + } +#endif + OSTRACE(("CLOSE %-3d\n", pFile->h)); + OpenCounter(-1); + sqlite3_free(pFile->pUnused); + memset(pFile, 0, sizeof(unixFile)); + return SQLITE_OK; +} + +/* +** Close a file. +*/ +static int unixClose(sqlite3_file *id){ + int rc = SQLITE_OK; + unixFile *pFile = (unixFile *)id; + verifyDbFile(pFile); + unixUnlock(id, NO_LOCK); + unixEnterMutex(); + + /* unixFile.pInode is always valid here. Otherwise, a different close + ** routine (e.g. nolockClose()) would be called instead. + */ + assert( pFile->pInode->nLock>0 || pFile->pInode->bProcessLock==0 ); + if( ALWAYS(pFile->pInode) && pFile->pInode->nLock ){ + /* If there are outstanding locks, do not actually close the file just + ** yet because that would clear those locks. Instead, add the file + ** descriptor to pInode->pUnused list. It will be automatically closed + ** when the last lock is cleared. + */ + setPendingFd(pFile); + } + releaseInodeInfo(pFile); + rc = closeUnixFile(id); + unixLeaveMutex(); + return rc; +} + +/************** End of the posix advisory lock implementation ***************** +******************************************************************************/ + +/****************************************************************************** +****************************** No-op Locking ********************************** +** +** Of the various locking implementations available, this is by far the +** simplest: locking is ignored. No attempt is made to lock the database +** file for reading or writing. +** +** This locking mode is appropriate for use on read-only databases +** (ex: databases that are burned into CD-ROM, for example.) It can +** also be used if the application employs some external mechanism to +** prevent simultaneous access of the same database by two or more +** database connections. But there is a serious risk of database +** corruption if this locking mode is used in situations where multiple +** database connections are accessing the same database file at the same +** time and one or more of those connections are writing. +*/ + +static int nolockCheckReservedLock(sqlite3_file *NotUsed, int *pResOut){ + UNUSED_PARAMETER(NotUsed); + *pResOut = 0; + return SQLITE_OK; +} +static int nolockLock(sqlite3_file *NotUsed, int NotUsed2){ + UNUSED_PARAMETER2(NotUsed, NotUsed2); + return SQLITE_OK; +} +static int nolockUnlock(sqlite3_file *NotUsed, int NotUsed2){ + UNUSED_PARAMETER2(NotUsed, NotUsed2); + return SQLITE_OK; +} + +/* +** Close the file. +*/ +static int nolockClose(sqlite3_file *id) { + return closeUnixFile(id); +} + +/******************* End of the no-op lock implementation ********************* +******************************************************************************/ + +/****************************************************************************** +************************* Begin dot-file Locking ****************************** +** +** The dotfile locking implementation uses the existence of separate lock +** files (really a directory) to control access to the database. This works +** on just about every filesystem imaginable. But there are serious downsides: +** +** (1) There is zero concurrency. A single reader blocks all other +** connections from reading or writing the database. +** +** (2) An application crash or power loss can leave stale lock files +** sitting around that need to be cleared manually. +** +** Nevertheless, a dotlock is an appropriate locking mode for use if no +** other locking strategy is available. +** +** Dotfile locking works by creating a subdirectory in the same directory as +** the database and with the same name but with a ".lock" extension added. +** The existence of a lock directory implies an EXCLUSIVE lock. All other +** lock types (SHARED, RESERVED, PENDING) are mapped into EXCLUSIVE. +*/ + +/* +** The file suffix added to the data base filename in order to create the +** lock directory. +*/ +#define DOTLOCK_SUFFIX ".lock" + +/* +** This routine checks if there is a RESERVED lock held on the specified +** file by this or any other process. If such a lock is held, set *pResOut +** to a non-zero value otherwise *pResOut is set to zero. The return value +** is set to SQLITE_OK unless an I/O error occurs during lock checking. +** +** In dotfile locking, either a lock exists or it does not. So in this +** variation of CheckReservedLock(), *pResOut is set to true if any lock +** is held on the file and false if the file is unlocked. +*/ +static int dotlockCheckReservedLock(sqlite3_file *id, int *pResOut) { + int rc = SQLITE_OK; + int reserved = 0; + unixFile *pFile = (unixFile*)id; + + SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); + + assert( pFile ); + + /* Check if a thread in this process holds such a lock */ + if( pFile->eFileLock>SHARED_LOCK ){ + /* Either this connection or some other connection in the same process + ** holds a lock on the file. No need to check further. */ + reserved = 1; + }else{ + /* The lock is held if and only if the lockfile exists */ + const char *zLockFile = (const char*)pFile->lockingContext; + reserved = osAccess(zLockFile, 0)==0; + } + OSTRACE(("TEST WR-LOCK %d %d %d (dotlock)\n", pFile->h, rc, reserved)); + *pResOut = reserved; + return rc; +} + +/* +** Lock the file with the lock specified by parameter eFileLock - one +** of the following: +** +** (1) SHARED_LOCK +** (2) RESERVED_LOCK +** (3) PENDING_LOCK +** (4) EXCLUSIVE_LOCK +** +** Sometimes when requesting one lock state, additional lock states +** are inserted in between. The locking might fail on one of the later +** transitions leaving the lock state different from what it started but +** still short of its goal. The following chart shows the allowed +** transitions and the inserted intermediate states: +** +** UNLOCKED -> SHARED +** SHARED -> RESERVED +** SHARED -> (PENDING) -> EXCLUSIVE +** RESERVED -> (PENDING) -> EXCLUSIVE +** PENDING -> EXCLUSIVE +** +** This routine will only increase a lock. Use the sqlite3OsUnlock() +** routine to lower a locking level. +** +** With dotfile locking, we really only support state (4): EXCLUSIVE. +** But we track the other locking levels internally. +*/ +static int dotlockLock(sqlite3_file *id, int eFileLock) { + unixFile *pFile = (unixFile*)id; + char *zLockFile = (char *)pFile->lockingContext; + int rc = SQLITE_OK; + + + /* If we have any lock, then the lock file already exists. All we have + ** to do is adjust our internal record of the lock level. + */ + if( pFile->eFileLock > NO_LOCK ){ + pFile->eFileLock = eFileLock; + /* Always update the timestamp on the old file */ +#ifdef HAVE_UTIME + utime(zLockFile, NULL); +#else + utimes(zLockFile, NULL); +#endif + return SQLITE_OK; + } + + /* grab an exclusive lock */ + rc = osMkdir(zLockFile, 0777); + if( rc<0 ){ + /* failed to open/create the lock directory */ + int tErrno = errno; + if( EEXIST == tErrno ){ + rc = SQLITE_BUSY; + } else { + rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); + if( IS_LOCK_ERROR(rc) ){ + pFile->lastErrno = tErrno; + } + } + return rc; + } + + /* got it, set the type and return ok */ + pFile->eFileLock = eFileLock; + return rc; +} + +/* +** Lower the locking level on file descriptor pFile to eFileLock. eFileLock +** must be either NO_LOCK or SHARED_LOCK. +** +** If the locking level of the file descriptor is already at or below +** the requested locking level, this routine is a no-op. +** +** When the locking level reaches NO_LOCK, delete the lock file. +*/ +static int dotlockUnlock(sqlite3_file *id, int eFileLock) { + unixFile *pFile = (unixFile*)id; + char *zLockFile = (char *)pFile->lockingContext; + int rc; + + assert( pFile ); + OSTRACE(("UNLOCK %d %d was %d pid=%d (dotlock)\n", pFile->h, eFileLock, + pFile->eFileLock, getpid())); + assert( eFileLock<=SHARED_LOCK ); + + /* no-op if possible */ + if( pFile->eFileLock==eFileLock ){ + return SQLITE_OK; + } + + /* To downgrade to shared, simply update our internal notion of the + ** lock state. No need to mess with the file on disk. + */ + if( eFileLock==SHARED_LOCK ){ + pFile->eFileLock = SHARED_LOCK; + return SQLITE_OK; + } + + /* To fully unlock the database, delete the lock file */ + assert( eFileLock==NO_LOCK ); + rc = osRmdir(zLockFile); + if( rc<0 && errno==ENOTDIR ) rc = osUnlink(zLockFile); + if( rc<0 ){ + int tErrno = errno; + rc = 0; + if( ENOENT != tErrno ){ + rc = SQLITE_IOERR_UNLOCK; + } + if( IS_LOCK_ERROR(rc) ){ + pFile->lastErrno = tErrno; + } + return rc; + } + pFile->eFileLock = NO_LOCK; + return SQLITE_OK; +} + +/* +** Close a file. Make sure the lock has been released before closing. +*/ +static int dotlockClose(sqlite3_file *id) { + int rc = SQLITE_OK; + if( id ){ + unixFile *pFile = (unixFile*)id; + dotlockUnlock(id, NO_LOCK); + sqlite3_free(pFile->lockingContext); + rc = closeUnixFile(id); + } + return rc; +} +/****************** End of the dot-file lock implementation ******************* +******************************************************************************/ + +/****************************************************************************** +************************** Begin flock Locking ******************************** +** +** Use the flock() system call to do file locking. +** +** flock() locking is like dot-file locking in that the various +** fine-grain locking levels supported by SQLite are collapsed into +** a single exclusive lock. In other words, SHARED, RESERVED, and +** PENDING locks are the same thing as an EXCLUSIVE lock. SQLite +** still works when you do this, but concurrency is reduced since +** only a single process can be reading the database at a time. +** +** Omit this section if SQLITE_ENABLE_LOCKING_STYLE is turned off or if +** compiling for VXWORKS. +*/ +#if SQLITE_ENABLE_LOCKING_STYLE && !OS_VXWORKS + +/* +** Retry flock() calls that fail with EINTR +*/ +#ifdef EINTR +static int robust_flock(int fd, int op){ + int rc; + do{ rc = flock(fd,op); }while( rc<0 && errno==EINTR ); + return rc; +} +#else +# define robust_flock(a,b) flock(a,b) +#endif + + +/* +** This routine checks if there is a RESERVED lock held on the specified +** file by this or any other process. If such a lock is held, set *pResOut +** to a non-zero value otherwise *pResOut is set to zero. The return value +** is set to SQLITE_OK unless an I/O error occurs during lock checking. +*/ +static int flockCheckReservedLock(sqlite3_file *id, int *pResOut){ + int rc = SQLITE_OK; + int reserved = 0; + unixFile *pFile = (unixFile*)id; + + SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); + + assert( pFile ); + + /* Check if a thread in this process holds such a lock */ + if( pFile->eFileLock>SHARED_LOCK ){ + reserved = 1; + } + + /* Otherwise see if some other process holds it. */ + if( !reserved ){ + /* attempt to get the lock */ + int lrc = robust_flock(pFile->h, LOCK_EX | LOCK_NB); + if( !lrc ){ + /* got the lock, unlock it */ + lrc = robust_flock(pFile->h, LOCK_UN); + if ( lrc ) { + int tErrno = errno; + /* unlock failed with an error */ + lrc = SQLITE_IOERR_UNLOCK; + if( IS_LOCK_ERROR(lrc) ){ + pFile->lastErrno = tErrno; + rc = lrc; + } + } + } else { + int tErrno = errno; + reserved = 1; + /* someone else might have it reserved */ + lrc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); + if( IS_LOCK_ERROR(lrc) ){ + pFile->lastErrno = tErrno; + rc = lrc; + } + } + } + OSTRACE(("TEST WR-LOCK %d %d %d (flock)\n", pFile->h, rc, reserved)); + +#ifdef SQLITE_IGNORE_FLOCK_LOCK_ERRORS + if( (rc & SQLITE_IOERR) == SQLITE_IOERR ){ + rc = SQLITE_OK; + reserved=1; + } +#endif /* SQLITE_IGNORE_FLOCK_LOCK_ERRORS */ + *pResOut = reserved; + return rc; +} + +/* +** Lock the file with the lock specified by parameter eFileLock - one +** of the following: +** +** (1) SHARED_LOCK +** (2) RESERVED_LOCK +** (3) PENDING_LOCK +** (4) EXCLUSIVE_LOCK +** +** Sometimes when requesting one lock state, additional lock states +** are inserted in between. The locking might fail on one of the later +** transitions leaving the lock state different from what it started but +** still short of its goal. The following chart shows the allowed +** transitions and the inserted intermediate states: +** +** UNLOCKED -> SHARED +** SHARED -> RESERVED +** SHARED -> (PENDING) -> EXCLUSIVE +** RESERVED -> (PENDING) -> EXCLUSIVE +** PENDING -> EXCLUSIVE +** +** flock() only really support EXCLUSIVE locks. We track intermediate +** lock states in the sqlite3_file structure, but all locks SHARED or +** above are really EXCLUSIVE locks and exclude all other processes from +** access the file. +** +** This routine will only increase a lock. Use the sqlite3OsUnlock() +** routine to lower a locking level. +*/ +static int flockLock(sqlite3_file *id, int eFileLock) { + int rc = SQLITE_OK; + unixFile *pFile = (unixFile*)id; + + assert( pFile ); + + /* if we already have a lock, it is exclusive. + ** Just adjust level and punt on outta here. */ + if (pFile->eFileLock > NO_LOCK) { + pFile->eFileLock = eFileLock; + return SQLITE_OK; + } + + /* grab an exclusive lock */ + + if (robust_flock(pFile->h, LOCK_EX | LOCK_NB)) { + int tErrno = errno; + /* didn't get, must be busy */ + rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); + if( IS_LOCK_ERROR(rc) ){ + pFile->lastErrno = tErrno; + } + } else { + /* got it, set the type and return ok */ + pFile->eFileLock = eFileLock; + } + OSTRACE(("LOCK %d %s %s (flock)\n", pFile->h, azFileLock(eFileLock), + rc==SQLITE_OK ? "ok" : "failed")); +#ifdef SQLITE_IGNORE_FLOCK_LOCK_ERRORS + if( (rc & SQLITE_IOERR) == SQLITE_IOERR ){ + rc = SQLITE_BUSY; + } +#endif /* SQLITE_IGNORE_FLOCK_LOCK_ERRORS */ + return rc; +} + + +/* +** Lower the locking level on file descriptor pFile to eFileLock. eFileLock +** must be either NO_LOCK or SHARED_LOCK. +** +** If the locking level of the file descriptor is already at or below +** the requested locking level, this routine is a no-op. +*/ +static int flockUnlock(sqlite3_file *id, int eFileLock) { + unixFile *pFile = (unixFile*)id; + + assert( pFile ); + OSTRACE(("UNLOCK %d %d was %d pid=%d (flock)\n", pFile->h, eFileLock, + pFile->eFileLock, getpid())); + assert( eFileLock<=SHARED_LOCK ); + + /* no-op if possible */ + if( pFile->eFileLock==eFileLock ){ + return SQLITE_OK; + } + + /* shared can just be set because we always have an exclusive */ + if (eFileLock==SHARED_LOCK) { + pFile->eFileLock = eFileLock; + return SQLITE_OK; + } + + /* no, really, unlock. */ + if( robust_flock(pFile->h, LOCK_UN) ){ +#ifdef SQLITE_IGNORE_FLOCK_LOCK_ERRORS + return SQLITE_OK; +#endif /* SQLITE_IGNORE_FLOCK_LOCK_ERRORS */ + return SQLITE_IOERR_UNLOCK; + }else{ + pFile->eFileLock = NO_LOCK; + return SQLITE_OK; + } +} + +/* +** Close a file. +*/ +static int flockClose(sqlite3_file *id) { + int rc = SQLITE_OK; + if( id ){ + flockUnlock(id, NO_LOCK); + rc = closeUnixFile(id); + } + return rc; +} + +#endif /* SQLITE_ENABLE_LOCKING_STYLE && !OS_VXWORK */ + +/******************* End of the flock lock implementation ********************* +******************************************************************************/ + +/****************************************************************************** +************************ Begin Named Semaphore Locking ************************ +** +** Named semaphore locking is only supported on VxWorks. +** +** Semaphore locking is like dot-lock and flock in that it really only +** supports EXCLUSIVE locking. Only a single process can read or write +** the database file at a time. This reduces potential concurrency, but +** makes the lock implementation much easier. +*/ +#if OS_VXWORKS + +/* +** This routine checks if there is a RESERVED lock held on the specified +** file by this or any other process. If such a lock is held, set *pResOut +** to a non-zero value otherwise *pResOut is set to zero. The return value +** is set to SQLITE_OK unless an I/O error occurs during lock checking. +*/ +static int semCheckReservedLock(sqlite3_file *id, int *pResOut) { + int rc = SQLITE_OK; + int reserved = 0; + unixFile *pFile = (unixFile*)id; + + SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); + + assert( pFile ); + + /* Check if a thread in this process holds such a lock */ + if( pFile->eFileLock>SHARED_LOCK ){ + reserved = 1; + } + + /* Otherwise see if some other process holds it. */ + if( !reserved ){ + sem_t *pSem = pFile->pInode->pSem; + struct stat statBuf; + + if( sem_trywait(pSem)==-1 ){ + int tErrno = errno; + if( EAGAIN != tErrno ){ + rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_CHECKRESERVEDLOCK); + pFile->lastErrno = tErrno; + } else { + /* someone else has the lock when we are in NO_LOCK */ + reserved = (pFile->eFileLock < SHARED_LOCK); + } + }else{ + /* we could have it if we want it */ + sem_post(pSem); + } + } + OSTRACE(("TEST WR-LOCK %d %d %d (sem)\n", pFile->h, rc, reserved)); + + *pResOut = reserved; + return rc; +} + +/* +** Lock the file with the lock specified by parameter eFileLock - one +** of the following: +** +** (1) SHARED_LOCK +** (2) RESERVED_LOCK +** (3) PENDING_LOCK +** (4) EXCLUSIVE_LOCK +** +** Sometimes when requesting one lock state, additional lock states +** are inserted in between. The locking might fail on one of the later +** transitions leaving the lock state different from what it started but +** still short of its goal. The following chart shows the allowed +** transitions and the inserted intermediate states: +** +** UNLOCKED -> SHARED +** SHARED -> RESERVED +** SHARED -> (PENDING) -> EXCLUSIVE +** RESERVED -> (PENDING) -> EXCLUSIVE +** PENDING -> EXCLUSIVE +** +** Semaphore locks only really support EXCLUSIVE locks. We track intermediate +** lock states in the sqlite3_file structure, but all locks SHARED or +** above are really EXCLUSIVE locks and exclude all other processes from +** access the file. +** +** This routine will only increase a lock. Use the sqlite3OsUnlock() +** routine to lower a locking level. +*/ +static int semLock(sqlite3_file *id, int eFileLock) { + unixFile *pFile = (unixFile*)id; + int fd; + sem_t *pSem = pFile->pInode->pSem; + int rc = SQLITE_OK; + + /* if we already have a lock, it is exclusive. + ** Just adjust level and punt on outta here. */ + if (pFile->eFileLock > NO_LOCK) { + pFile->eFileLock = eFileLock; + rc = SQLITE_OK; + goto sem_end_lock; + } + + /* lock semaphore now but bail out when already locked. */ + if( sem_trywait(pSem)==-1 ){ + rc = SQLITE_BUSY; + goto sem_end_lock; + } + + /* got it, set the type and return ok */ + pFile->eFileLock = eFileLock; + + sem_end_lock: + return rc; +} + +/* +** Lower the locking level on file descriptor pFile to eFileLock. eFileLock +** must be either NO_LOCK or SHARED_LOCK. +** +** If the locking level of the file descriptor is already at or below +** the requested locking level, this routine is a no-op. +*/ +static int semUnlock(sqlite3_file *id, int eFileLock) { + unixFile *pFile = (unixFile*)id; + sem_t *pSem = pFile->pInode->pSem; + + assert( pFile ); + assert( pSem ); + OSTRACE(("UNLOCK %d %d was %d pid=%d (sem)\n", pFile->h, eFileLock, + pFile->eFileLock, getpid())); + assert( eFileLock<=SHARED_LOCK ); + + /* no-op if possible */ + if( pFile->eFileLock==eFileLock ){ + return SQLITE_OK; + } + + /* shared can just be set because we always have an exclusive */ + if (eFileLock==SHARED_LOCK) { + pFile->eFileLock = eFileLock; + return SQLITE_OK; + } + + /* no, really unlock. */ + if ( sem_post(pSem)==-1 ) { + int rc, tErrno = errno; + rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_UNLOCK); + if( IS_LOCK_ERROR(rc) ){ + pFile->lastErrno = tErrno; + } + return rc; + } + pFile->eFileLock = NO_LOCK; + return SQLITE_OK; +} + +/* + ** Close a file. + */ +static int semClose(sqlite3_file *id) { + if( id ){ + unixFile *pFile = (unixFile*)id; + semUnlock(id, NO_LOCK); + assert( pFile ); + unixEnterMutex(); + releaseInodeInfo(pFile); + unixLeaveMutex(); + closeUnixFile(id); + } + return SQLITE_OK; +} + +#endif /* OS_VXWORKS */ +/* +** Named semaphore locking is only available on VxWorks. +** +*************** End of the named semaphore lock implementation **************** +******************************************************************************/ + + +/****************************************************************************** +*************************** Begin AFP Locking ********************************* +** +** AFP is the Apple Filing Protocol. AFP is a network filesystem found +** on Apple Macintosh computers - both OS9 and OSX. +** +** Third-party implementations of AFP are available. But this code here +** only works on OSX. +*/ + +#if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE +/* +** The afpLockingContext structure contains all afp lock specific state +*/ +typedef struct afpLockingContext afpLockingContext; +struct afpLockingContext { + int reserved; + const char *dbPath; /* Name of the open file */ +}; + +struct ByteRangeLockPB2 +{ + unsigned long long offset; /* offset to first byte to lock */ + unsigned long long length; /* nbr of bytes to lock */ + unsigned long long retRangeStart; /* nbr of 1st byte locked if successful */ + unsigned char unLockFlag; /* 1 = unlock, 0 = lock */ + unsigned char startEndFlag; /* 1=rel to end of fork, 0=rel to start */ + int fd; /* file desc to assoc this lock with */ +}; + +#define afpfsByteRangeLock2FSCTL _IOWR('z', 23, struct ByteRangeLockPB2) + +/* +** This is a utility for setting or clearing a bit-range lock on an +** AFP filesystem. +** +** Return SQLITE_OK on success, SQLITE_BUSY on failure. +*/ +static int afpSetLock( + const char *path, /* Name of the file to be locked or unlocked */ + unixFile *pFile, /* Open file descriptor on path */ + unsigned long long offset, /* First byte to be locked */ + unsigned long long length, /* Number of bytes to lock */ + int setLockFlag /* True to set lock. False to clear lock */ +){ + struct ByteRangeLockPB2 pb; + int err; + + pb.unLockFlag = setLockFlag ? 0 : 1; + pb.startEndFlag = 0; + pb.offset = offset; + pb.length = length; + pb.fd = pFile->h; + + OSTRACE(("AFPSETLOCK [%s] for %d%s in range %llx:%llx\n", + (setLockFlag?"ON":"OFF"), pFile->h, (pb.fd==-1?"[testval-1]":""), + offset, length)); + err = fsctl(path, afpfsByteRangeLock2FSCTL, &pb, 0); + if ( err==-1 ) { + int rc; + int tErrno = errno; + OSTRACE(("AFPSETLOCK failed to fsctl() '%s' %d %s\n", + path, tErrno, strerror(tErrno))); +#ifdef SQLITE_IGNORE_AFP_LOCK_ERRORS + rc = SQLITE_BUSY; +#else + rc = sqliteErrorFromPosixError(tErrno, + setLockFlag ? SQLITE_IOERR_LOCK : SQLITE_IOERR_UNLOCK); +#endif /* SQLITE_IGNORE_AFP_LOCK_ERRORS */ + if( IS_LOCK_ERROR(rc) ){ + pFile->lastErrno = tErrno; + } + return rc; + } else { + return SQLITE_OK; + } +} + +/* +** This routine checks if there is a RESERVED lock held on the specified +** file by this or any other process. If such a lock is held, set *pResOut +** to a non-zero value otherwise *pResOut is set to zero. The return value +** is set to SQLITE_OK unless an I/O error occurs during lock checking. +*/ +static int afpCheckReservedLock(sqlite3_file *id, int *pResOut){ + int rc = SQLITE_OK; + int reserved = 0; + unixFile *pFile = (unixFile*)id; + afpLockingContext *context; + + SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); + + assert( pFile ); + context = (afpLockingContext *) pFile->lockingContext; + if( context->reserved ){ + *pResOut = 1; + return SQLITE_OK; + } + unixEnterMutex(); /* Because pFile->pInode is shared across threads */ + + /* Check if a thread in this process holds such a lock */ + if( pFile->pInode->eFileLock>SHARED_LOCK ){ + reserved = 1; + } + + /* Otherwise see if some other process holds it. + */ + if( !reserved ){ + /* lock the RESERVED byte */ + int lrc = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1,1); + if( SQLITE_OK==lrc ){ + /* if we succeeded in taking the reserved lock, unlock it to restore + ** the original state */ + lrc = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1, 0); + } else { + /* if we failed to get the lock then someone else must have it */ + reserved = 1; + } + if( IS_LOCK_ERROR(lrc) ){ + rc=lrc; + } + } + + unixLeaveMutex(); + OSTRACE(("TEST WR-LOCK %d %d %d (afp)\n", pFile->h, rc, reserved)); + + *pResOut = reserved; + return rc; +} + +/* +** Lock the file with the lock specified by parameter eFileLock - one +** of the following: +** +** (1) SHARED_LOCK +** (2) RESERVED_LOCK +** (3) PENDING_LOCK +** (4) EXCLUSIVE_LOCK +** +** Sometimes when requesting one lock state, additional lock states +** are inserted in between. The locking might fail on one of the later +** transitions leaving the lock state different from what it started but +** still short of its goal. The following chart shows the allowed +** transitions and the inserted intermediate states: +** +** UNLOCKED -> SHARED +** SHARED -> RESERVED +** SHARED -> (PENDING) -> EXCLUSIVE +** RESERVED -> (PENDING) -> EXCLUSIVE +** PENDING -> EXCLUSIVE +** +** This routine will only increase a lock. Use the sqlite3OsUnlock() +** routine to lower a locking level. +*/ +static int afpLock(sqlite3_file *id, int eFileLock){ + int rc = SQLITE_OK; + unixFile *pFile = (unixFile*)id; + unixInodeInfo *pInode = pFile->pInode; + afpLockingContext *context = (afpLockingContext *) pFile->lockingContext; + + assert( pFile ); + OSTRACE(("LOCK %d %s was %s(%s,%d) pid=%d (afp)\n", pFile->h, + azFileLock(eFileLock), azFileLock(pFile->eFileLock), + azFileLock(pInode->eFileLock), pInode->nShared , getpid())); + + /* If there is already a lock of this type or more restrictive on the + ** unixFile, do nothing. Don't use the afp_end_lock: exit path, as + ** unixEnterMutex() hasn't been called yet. + */ + if( pFile->eFileLock>=eFileLock ){ + OSTRACE(("LOCK %d %s ok (already held) (afp)\n", pFile->h, + azFileLock(eFileLock))); + return SQLITE_OK; + } + + /* Make sure the locking sequence is correct + ** (1) We never move from unlocked to anything higher than shared lock. + ** (2) SQLite never explicitly requests a pendig lock. + ** (3) A shared lock is always held when a reserve lock is requested. + */ + assert( pFile->eFileLock!=NO_LOCK || eFileLock==SHARED_LOCK ); + assert( eFileLock!=PENDING_LOCK ); + assert( eFileLock!=RESERVED_LOCK || pFile->eFileLock==SHARED_LOCK ); + + /* This mutex is needed because pFile->pInode is shared across threads + */ + unixEnterMutex(); + pInode = pFile->pInode; + + /* If some thread using this PID has a lock via a different unixFile* + ** handle that precludes the requested lock, return BUSY. + */ + if( (pFile->eFileLock!=pInode->eFileLock && + (pInode->eFileLock>=PENDING_LOCK || eFileLock>SHARED_LOCK)) + ){ + rc = SQLITE_BUSY; + goto afp_end_lock; + } + + /* If a SHARED lock is requested, and some thread using this PID already + ** has a SHARED or RESERVED lock, then increment reference counts and + ** return SQLITE_OK. + */ + if( eFileLock==SHARED_LOCK && + (pInode->eFileLock==SHARED_LOCK || pInode->eFileLock==RESERVED_LOCK) ){ + assert( eFileLock==SHARED_LOCK ); + assert( pFile->eFileLock==0 ); + assert( pInode->nShared>0 ); + pFile->eFileLock = SHARED_LOCK; + pInode->nShared++; + pInode->nLock++; + goto afp_end_lock; + } + + /* A PENDING lock is needed before acquiring a SHARED lock and before + ** acquiring an EXCLUSIVE lock. For the SHARED lock, the PENDING will + ** be released. + */ + if( eFileLock==SHARED_LOCK + || (eFileLock==EXCLUSIVE_LOCK && pFile->eFileLockdbPath, pFile, PENDING_BYTE, 1, 1); + if (failed) { + rc = failed; + goto afp_end_lock; + } + } + + /* If control gets to this point, then actually go ahead and make + ** operating system calls for the specified lock. + */ + if( eFileLock==SHARED_LOCK ){ + int lrc1, lrc2, lrc1Errno = 0; + long lk, mask; + + assert( pInode->nShared==0 ); + assert( pInode->eFileLock==0 ); + + mask = (sizeof(long)==8) ? LARGEST_INT64 : 0x7fffffff; + /* Now get the read-lock SHARED_LOCK */ + /* note that the quality of the randomness doesn't matter that much */ + lk = random(); + pInode->sharedByte = (lk & mask)%(SHARED_SIZE - 1); + lrc1 = afpSetLock(context->dbPath, pFile, + SHARED_FIRST+pInode->sharedByte, 1, 1); + if( IS_LOCK_ERROR(lrc1) ){ + lrc1Errno = pFile->lastErrno; + } + /* Drop the temporary PENDING lock */ + lrc2 = afpSetLock(context->dbPath, pFile, PENDING_BYTE, 1, 0); + + if( IS_LOCK_ERROR(lrc1) ) { + pFile->lastErrno = lrc1Errno; + rc = lrc1; + goto afp_end_lock; + } else if( IS_LOCK_ERROR(lrc2) ){ + rc = lrc2; + goto afp_end_lock; + } else if( lrc1 != SQLITE_OK ) { + rc = lrc1; + } else { + pFile->eFileLock = SHARED_LOCK; + pInode->nLock++; + pInode->nShared = 1; + } + }else if( eFileLock==EXCLUSIVE_LOCK && pInode->nShared>1 ){ + /* We are trying for an exclusive lock but another thread in this + ** same process is still holding a shared lock. */ + rc = SQLITE_BUSY; + }else{ + /* The request was for a RESERVED or EXCLUSIVE lock. It is + ** assumed that there is a SHARED or greater lock on the file + ** already. + */ + int failed = 0; + assert( 0!=pFile->eFileLock ); + if (eFileLock >= RESERVED_LOCK && pFile->eFileLock < RESERVED_LOCK) { + /* Acquire a RESERVED lock */ + failed = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1,1); + if( !failed ){ + context->reserved = 1; + } + } + if (!failed && eFileLock == EXCLUSIVE_LOCK) { + /* Acquire an EXCLUSIVE lock */ + + /* Remove the shared lock before trying the range. we'll need to + ** reestablish the shared lock if we can't get the afpUnlock + */ + if( !(failed = afpSetLock(context->dbPath, pFile, SHARED_FIRST + + pInode->sharedByte, 1, 0)) ){ + int failed2 = SQLITE_OK; + /* now attemmpt to get the exclusive lock range */ + failed = afpSetLock(context->dbPath, pFile, SHARED_FIRST, + SHARED_SIZE, 1); + if( failed && (failed2 = afpSetLock(context->dbPath, pFile, + SHARED_FIRST + pInode->sharedByte, 1, 1)) ){ + /* Can't reestablish the shared lock. Sqlite can't deal, this is + ** a critical I/O error + */ + rc = ((failed & SQLITE_IOERR) == SQLITE_IOERR) ? failed2 : + SQLITE_IOERR_LOCK; + goto afp_end_lock; + } + }else{ + rc = failed; + } + } + if( failed ){ + rc = failed; + } + } + + if( rc==SQLITE_OK ){ + pFile->eFileLock = eFileLock; + pInode->eFileLock = eFileLock; + }else if( eFileLock==EXCLUSIVE_LOCK ){ + pFile->eFileLock = PENDING_LOCK; + pInode->eFileLock = PENDING_LOCK; + } + +afp_end_lock: + unixLeaveMutex(); + OSTRACE(("LOCK %d %s %s (afp)\n", pFile->h, azFileLock(eFileLock), + rc==SQLITE_OK ? "ok" : "failed")); + return rc; +} + +/* +** Lower the locking level on file descriptor pFile to eFileLock. eFileLock +** must be either NO_LOCK or SHARED_LOCK. +** +** If the locking level of the file descriptor is already at or below +** the requested locking level, this routine is a no-op. +*/ +static int afpUnlock(sqlite3_file *id, int eFileLock) { + int rc = SQLITE_OK; + unixFile *pFile = (unixFile*)id; + unixInodeInfo *pInode; + afpLockingContext *context = (afpLockingContext *) pFile->lockingContext; + int skipShared = 0; +#ifdef SQLITE_TEST + int h = pFile->h; +#endif + + assert( pFile ); + OSTRACE(("UNLOCK %d %d was %d(%d,%d) pid=%d (afp)\n", pFile->h, eFileLock, + pFile->eFileLock, pFile->pInode->eFileLock, pFile->pInode->nShared, + getpid())); + + assert( eFileLock<=SHARED_LOCK ); + if( pFile->eFileLock<=eFileLock ){ + return SQLITE_OK; + } + unixEnterMutex(); + pInode = pFile->pInode; + assert( pInode->nShared!=0 ); + if( pFile->eFileLock>SHARED_LOCK ){ + assert( pInode->eFileLock==pFile->eFileLock ); + SimulateIOErrorBenign(1); + SimulateIOError( h=(-1) ) + SimulateIOErrorBenign(0); + +#ifdef SQLITE_DEBUG + /* When reducing a lock such that other processes can start + ** reading the database file again, make sure that the + ** transaction counter was updated if any part of the database + ** file changed. If the transaction counter is not updated, + ** other connections to the same file might not realize that + ** the file has changed and hence might not know to flush their + ** cache. The use of a stale cache can lead to database corruption. + */ + assert( pFile->inNormalWrite==0 + || pFile->dbUpdate==0 + || pFile->transCntrChng==1 ); + pFile->inNormalWrite = 0; +#endif + + if( pFile->eFileLock==EXCLUSIVE_LOCK ){ + rc = afpSetLock(context->dbPath, pFile, SHARED_FIRST, SHARED_SIZE, 0); + if( rc==SQLITE_OK && (eFileLock==SHARED_LOCK || pInode->nShared>1) ){ + /* only re-establish the shared lock if necessary */ + int sharedLockByte = SHARED_FIRST+pInode->sharedByte; + rc = afpSetLock(context->dbPath, pFile, sharedLockByte, 1, 1); + } else { + skipShared = 1; + } + } + if( rc==SQLITE_OK && pFile->eFileLock>=PENDING_LOCK ){ + rc = afpSetLock(context->dbPath, pFile, PENDING_BYTE, 1, 0); + } + if( rc==SQLITE_OK && pFile->eFileLock>=RESERVED_LOCK && context->reserved ){ + rc = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1, 0); + if( !rc ){ + context->reserved = 0; + } + } + if( rc==SQLITE_OK && (eFileLock==SHARED_LOCK || pInode->nShared>1)){ + pInode->eFileLock = SHARED_LOCK; + } + } + if( rc==SQLITE_OK && eFileLock==NO_LOCK ){ + + /* Decrement the shared lock counter. Release the lock using an + ** OS call only when all threads in this same process have released + ** the lock. + */ + unsigned long long sharedLockByte = SHARED_FIRST+pInode->sharedByte; + pInode->nShared--; + if( pInode->nShared==0 ){ + SimulateIOErrorBenign(1); + SimulateIOError( h=(-1) ) + SimulateIOErrorBenign(0); + if( !skipShared ){ + rc = afpSetLock(context->dbPath, pFile, sharedLockByte, 1, 0); + } + if( !rc ){ + pInode->eFileLock = NO_LOCK; + pFile->eFileLock = NO_LOCK; + } + } + if( rc==SQLITE_OK ){ + pInode->nLock--; + assert( pInode->nLock>=0 ); + if( pInode->nLock==0 ){ + closePendingFds(pFile); + } + } + } + + unixLeaveMutex(); + if( rc==SQLITE_OK ) pFile->eFileLock = eFileLock; + return rc; +} + +/* +** Close a file & cleanup AFP specific locking context +*/ +static int afpClose(sqlite3_file *id) { + int rc = SQLITE_OK; + if( id ){ + unixFile *pFile = (unixFile*)id; + afpUnlock(id, NO_LOCK); + unixEnterMutex(); + if( pFile->pInode && pFile->pInode->nLock ){ + /* If there are outstanding locks, do not actually close the file just + ** yet because that would clear those locks. Instead, add the file + ** descriptor to pInode->aPending. It will be automatically closed when + ** the last lock is cleared. + */ + setPendingFd(pFile); + } + releaseInodeInfo(pFile); + sqlite3_free(pFile->lockingContext); + rc = closeUnixFile(id); + unixLeaveMutex(); + } + return rc; +} + +#endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ +/* +** The code above is the AFP lock implementation. The code is specific +** to MacOSX and does not work on other unix platforms. No alternative +** is available. If you don't compile for a mac, then the "unix-afp" +** VFS is not available. +** +********************* End of the AFP lock implementation ********************** +******************************************************************************/ + +/****************************************************************************** +*************************** Begin NFS Locking ********************************/ + +#if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE +/* + ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock + ** must be either NO_LOCK or SHARED_LOCK. + ** + ** If the locking level of the file descriptor is already at or below + ** the requested locking level, this routine is a no-op. + */ +static int nfsUnlock(sqlite3_file *id, int eFileLock){ + return posixUnlock(id, eFileLock, 1); +} + +#endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ +/* +** The code above is the NFS lock implementation. The code is specific +** to MacOSX and does not work on other unix platforms. No alternative +** is available. +** +********************* End of the NFS lock implementation ********************** +******************************************************************************/ + +/****************************************************************************** +**************** Non-locking sqlite3_file methods ***************************** +** +** The next division contains implementations for all methods of the +** sqlite3_file object other than the locking methods. The locking +** methods were defined in divisions above (one locking method per +** division). Those methods that are common to all locking modes +** are gather together into this division. +*/ + +/* +** Seek to the offset passed as the second argument, then read cnt +** bytes into pBuf. Return the number of bytes actually read. +** +** NB: If you define USE_PREAD or USE_PREAD64, then it might also +** be necessary to define _XOPEN_SOURCE to be 500. This varies from +** one system to another. Since SQLite does not define USE_PREAD +** any any form by default, we will not attempt to define _XOPEN_SOURCE. +** See tickets #2741 and #2681. +** +** To avoid stomping the errno value on a failed read the lastErrno value +** is set before returning. +*/ +static int seekAndRead(unixFile *id, sqlite3_int64 offset, void *pBuf, int cnt){ + int got; + int prior = 0; +#if (!defined(USE_PREAD) && !defined(USE_PREAD64)) + i64 newOffset; +#endif + TIMER_START; + assert( cnt==(cnt&0x1ffff) ); + assert( id->h>2 ); + cnt &= 0x1ffff; + do{ +#if defined(USE_PREAD) + got = osPread(id->h, pBuf, cnt, offset); + SimulateIOError( got = -1 ); +#elif defined(USE_PREAD64) + got = osPread64(id->h, pBuf, cnt, offset); + SimulateIOError( got = -1 ); +#else + newOffset = lseek(id->h, offset, SEEK_SET); + SimulateIOError( newOffset-- ); + if( newOffset!=offset ){ + if( newOffset == -1 ){ + ((unixFile*)id)->lastErrno = errno; + }else{ + ((unixFile*)id)->lastErrno = 0; + } + return -1; + } + got = osRead(id->h, pBuf, cnt); +#endif + if( got==cnt ) break; + if( got<0 ){ + if( errno==EINTR ){ got = 1; continue; } + prior = 0; + ((unixFile*)id)->lastErrno = errno; + break; + }else if( got>0 ){ + cnt -= got; + offset += got; + prior += got; + pBuf = (void*)(got + (char*)pBuf); + } + }while( got>0 ); + TIMER_END; + OSTRACE(("READ %-3d %5d %7lld %llu\n", + id->h, got+prior, offset-prior, TIMER_ELAPSED)); + return got+prior; +} + +/* +** Read data from a file into a buffer. Return SQLITE_OK if all +** bytes were read successfully and SQLITE_IOERR if anything goes +** wrong. +*/ +static int unixRead( + sqlite3_file *id, + void *pBuf, + int amt, + sqlite3_int64 offset +){ + unixFile *pFile = (unixFile *)id; + int got; + assert( id ); + assert( offset>=0 ); + assert( amt>0 ); + + /* If this is a database file (not a journal, master-journal or temp + ** file), the bytes in the locking range should never be read or written. */ +#if 0 + assert( pFile->pUnused==0 + || offset>=PENDING_BYTE+512 + || offset+amt<=PENDING_BYTE + ); +#endif + +#if SQLITE_MAX_MMAP_SIZE>0 + /* Deal with as much of this read request as possible by transfering + ** data from the memory mapping using memcpy(). */ + if( offsetmmapSize ){ + if( offset+amt <= pFile->mmapSize ){ + memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], amt); + return SQLITE_OK; + }else{ + int nCopy = pFile->mmapSize - offset; + memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], nCopy); + pBuf = &((u8 *)pBuf)[nCopy]; + amt -= nCopy; + offset += nCopy; + } + } +#endif + + got = seekAndRead(pFile, offset, pBuf, amt); + if( got==amt ){ + return SQLITE_OK; + }else if( got<0 ){ + /* lastErrno set by seekAndRead */ + return SQLITE_IOERR_READ; + }else{ + pFile->lastErrno = 0; /* not a system error */ + /* Unread parts of the buffer must be zero-filled */ + memset(&((char*)pBuf)[got], 0, amt-got); + return SQLITE_IOERR_SHORT_READ; + } +} + +/* +** Attempt to seek the file-descriptor passed as the first argument to +** absolute offset iOff, then attempt to write nBuf bytes of data from +** pBuf to it. If an error occurs, return -1 and set *piErrno. Otherwise, +** return the actual number of bytes written (which may be less than +** nBuf). +*/ +static int seekAndWriteFd( + int fd, /* File descriptor to write to */ + i64 iOff, /* File offset to begin writing at */ + const void *pBuf, /* Copy data from this buffer to the file */ + int nBuf, /* Size of buffer pBuf in bytes */ + int *piErrno /* OUT: Error number if error occurs */ +){ + int rc = 0; /* Value returned by system call */ + + assert( nBuf==(nBuf&0x1ffff) ); + assert( fd>2 ); + nBuf &= 0x1ffff; + TIMER_START; + +#if defined(USE_PREAD) + do{ rc = osPwrite(fd, pBuf, nBuf, iOff); }while( rc<0 && errno==EINTR ); +#elif defined(USE_PREAD64) + do{ rc = osPwrite64(fd, pBuf, nBuf, iOff);}while( rc<0 && errno==EINTR); +#else + do{ + i64 iSeek = lseek(fd, iOff, SEEK_SET); + SimulateIOError( iSeek-- ); + + if( iSeek!=iOff ){ + if( piErrno ) *piErrno = (iSeek==-1 ? errno : 0); + return -1; + } + rc = osWrite(fd, pBuf, nBuf); + }while( rc<0 && errno==EINTR ); +#endif + + TIMER_END; + OSTRACE(("WRITE %-3d %5d %7lld %llu\n", fd, rc, iOff, TIMER_ELAPSED)); + + if( rc<0 && piErrno ) *piErrno = errno; + return rc; +} + + +/* +** Seek to the offset in id->offset then read cnt bytes into pBuf. +** Return the number of bytes actually read. Update the offset. +** +** To avoid stomping the errno value on a failed write the lastErrno value +** is set before returning. +*/ +static int seekAndWrite(unixFile *id, i64 offset, const void *pBuf, int cnt){ + return seekAndWriteFd(id->h, offset, pBuf, cnt, &id->lastErrno); +} + + +/* +** Write data from a buffer into a file. Return SQLITE_OK on success +** or some other error code on failure. +*/ +static int unixWrite( + sqlite3_file *id, + const void *pBuf, + int amt, + sqlite3_int64 offset +){ + unixFile *pFile = (unixFile*)id; + int wrote = 0; + assert( id ); + assert( amt>0 ); + + /* If this is a database file (not a journal, master-journal or temp + ** file), the bytes in the locking range should never be read or written. */ +#if 0 + assert( pFile->pUnused==0 + || offset>=PENDING_BYTE+512 + || offset+amt<=PENDING_BYTE + ); +#endif + +#ifdef SQLITE_DEBUG + /* If we are doing a normal write to a database file (as opposed to + ** doing a hot-journal rollback or a write to some file other than a + ** normal database file) then record the fact that the database + ** has changed. If the transaction counter is modified, record that + ** fact too. + */ + if( pFile->inNormalWrite ){ + pFile->dbUpdate = 1; /* The database has been modified */ + if( offset<=24 && offset+amt>=27 ){ + int rc; + char oldCntr[4]; + SimulateIOErrorBenign(1); + rc = seekAndRead(pFile, 24, oldCntr, 4); + SimulateIOErrorBenign(0); + if( rc!=4 || memcmp(oldCntr, &((char*)pBuf)[24-offset], 4)!=0 ){ + pFile->transCntrChng = 1; /* The transaction counter has changed */ + } + } + } +#endif + +#if SQLITE_MAX_MMAP_SIZE>0 + /* Deal with as much of this write request as possible by transfering + ** data from the memory mapping using memcpy(). */ + if( offsetmmapSize ){ + if( offset+amt <= pFile->mmapSize ){ + memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, amt); + return SQLITE_OK; + }else{ + int nCopy = pFile->mmapSize - offset; + memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, nCopy); + pBuf = &((u8 *)pBuf)[nCopy]; + amt -= nCopy; + offset += nCopy; + } + } +#endif + + while( amt>0 && (wrote = seekAndWrite(pFile, offset, pBuf, amt))>0 ){ + amt -= wrote; + offset += wrote; + pBuf = &((char*)pBuf)[wrote]; + } + SimulateIOError(( wrote=(-1), amt=1 )); + SimulateDiskfullError(( wrote=0, amt=1 )); + + if( amt>0 ){ + if( wrote<0 && pFile->lastErrno!=ENOSPC ){ + /* lastErrno set by seekAndWrite */ + return SQLITE_IOERR_WRITE; + }else{ + pFile->lastErrno = 0; /* not a system error */ + return SQLITE_FULL; + } + } + + return SQLITE_OK; +} + +#ifdef SQLITE_TEST +/* +** Count the number of fullsyncs and normal syncs. This is used to test +** that syncs and fullsyncs are occurring at the right times. +*/ +SQLITE_API int sqlite3_sync_count = 0; +SQLITE_API int sqlite3_fullsync_count = 0; +#endif + +/* +** We do not trust systems to provide a working fdatasync(). Some do. +** Others do no. To be safe, we will stick with the (slightly slower) +** fsync(). If you know that your system does support fdatasync() correctly, +** then simply compile with -Dfdatasync=fdatasync +*/ +#if !defined(fdatasync) +# define fdatasync fsync +#endif + +/* +** Define HAVE_FULLFSYNC to 0 or 1 depending on whether or not +** the F_FULLFSYNC macro is defined. F_FULLFSYNC is currently +** only available on Mac OS X. But that could change. +*/ +#ifdef F_FULLFSYNC +# define HAVE_FULLFSYNC 1 +#else +# define HAVE_FULLFSYNC 0 +#endif + + +/* +** The fsync() system call does not work as advertised on many +** unix systems. The following procedure is an attempt to make +** it work better. +** +** The SQLITE_NO_SYNC macro disables all fsync()s. This is useful +** for testing when we want to run through the test suite quickly. +** You are strongly advised *not* to deploy with SQLITE_NO_SYNC +** enabled, however, since with SQLITE_NO_SYNC enabled, an OS crash +** or power failure will likely corrupt the database file. +** +** SQLite sets the dataOnly flag if the size of the file is unchanged. +** The idea behind dataOnly is that it should only write the file content +** to disk, not the inode. We only set dataOnly if the file size is +** unchanged since the file size is part of the inode. However, +** Ted Ts'o tells us that fdatasync() will also write the inode if the +** file size has changed. The only real difference between fdatasync() +** and fsync(), Ted tells us, is that fdatasync() will not flush the +** inode if the mtime or owner or other inode attributes have changed. +** We only care about the file size, not the other file attributes, so +** as far as SQLite is concerned, an fdatasync() is always adequate. +** So, we always use fdatasync() if it is available, regardless of +** the value of the dataOnly flag. +*/ +static int full_fsync(int fd, int fullSync, int dataOnly){ + int rc; + + /* The following "ifdef/elif/else/" block has the same structure as + ** the one below. It is replicated here solely to avoid cluttering + ** up the real code with the UNUSED_PARAMETER() macros. + */ +#ifdef SQLITE_NO_SYNC + UNUSED_PARAMETER(fd); + UNUSED_PARAMETER(fullSync); + UNUSED_PARAMETER(dataOnly); +#elif HAVE_FULLFSYNC + UNUSED_PARAMETER(dataOnly); +#else + UNUSED_PARAMETER(fullSync); + UNUSED_PARAMETER(dataOnly); +#endif + + /* Record the number of times that we do a normal fsync() and + ** FULLSYNC. This is used during testing to verify that this procedure + ** gets called with the correct arguments. + */ +#ifdef SQLITE_TEST + if( fullSync ) sqlite3_fullsync_count++; + sqlite3_sync_count++; +#endif + + /* If we compiled with the SQLITE_NO_SYNC flag, then syncing is a + ** no-op + */ +#ifdef SQLITE_NO_SYNC + rc = SQLITE_OK; +#elif HAVE_FULLFSYNC + if( fullSync ){ + rc = osFcntl(fd, F_FULLFSYNC, 0); + }else{ + rc = 1; + } + /* If the FULLFSYNC failed, fall back to attempting an fsync(). + ** It shouldn't be possible for fullfsync to fail on the local + ** file system (on OSX), so failure indicates that FULLFSYNC + ** isn't supported for this file system. So, attempt an fsync + ** and (for now) ignore the overhead of a superfluous fcntl call. + ** It'd be better to detect fullfsync support once and avoid + ** the fcntl call every time sync is called. + */ + if( rc ) rc = fsync(fd); + +#elif defined(__APPLE__) + /* fdatasync() on HFS+ doesn't yet flush the file size if it changed correctly + ** so currently we default to the macro that redefines fdatasync to fsync + */ + rc = fsync(fd); +#else + rc = fdatasync(fd); +#if OS_VXWORKS + if( rc==-1 && errno==ENOTSUP ){ + rc = fsync(fd); + } +#endif /* OS_VXWORKS */ +#endif /* ifdef SQLITE_NO_SYNC elif HAVE_FULLFSYNC */ + + if( OS_VXWORKS && rc!= -1 ){ + rc = 0; + } + return rc; +} + +/* +** Open a file descriptor to the directory containing file zFilename. +** If successful, *pFd is set to the opened file descriptor and +** SQLITE_OK is returned. If an error occurs, either SQLITE_NOMEM +** or SQLITE_CANTOPEN is returned and *pFd is set to an undefined +** value. +** +** The directory file descriptor is used for only one thing - to +** fsync() a directory to make sure file creation and deletion events +** are flushed to disk. Such fsyncs are not needed on newer +** journaling filesystems, but are required on older filesystems. +** +** This routine can be overridden using the xSetSysCall interface. +** The ability to override this routine was added in support of the +** chromium sandbox. Opening a directory is a security risk (we are +** told) so making it overrideable allows the chromium sandbox to +** replace this routine with a harmless no-op. To make this routine +** a no-op, replace it with a stub that returns SQLITE_OK but leaves +** *pFd set to a negative number. +** +** If SQLITE_OK is returned, the caller is responsible for closing +** the file descriptor *pFd using close(). +*/ +static int openDirectory(const char *zFilename, int *pFd){ + int ii; + int fd = -1; + char zDirname[MAX_PATHNAME+1]; + + sqlite3_snprintf(MAX_PATHNAME, zDirname, "%s", zFilename); + for(ii=(int)strlen(zDirname); ii>1 && zDirname[ii]!='/'; ii--); + if( ii>0 ){ + zDirname[ii] = '\0'; + fd = robust_open(zDirname, O_RDONLY|O_BINARY, 0); + if( fd>=0 ){ + OSTRACE(("OPENDIR %-3d %s\n", fd, zDirname)); + } + } + *pFd = fd; + return (fd>=0?SQLITE_OK:unixLogError(SQLITE_CANTOPEN_BKPT, "open", zDirname)); +} + +/* +** Make sure all writes to a particular file are committed to disk. +** +** If dataOnly==0 then both the file itself and its metadata (file +** size, access time, etc) are synced. If dataOnly!=0 then only the +** file data is synced. +** +** Under Unix, also make sure that the directory entry for the file +** has been created by fsync-ing the directory that contains the file. +** If we do not do this and we encounter a power failure, the directory +** entry for the journal might not exist after we reboot. The next +** SQLite to access the file will not know that the journal exists (because +** the directory entry for the journal was never created) and the transaction +** will not roll back - possibly leading to database corruption. +*/ +static int unixSync(sqlite3_file *id, int flags){ + int rc; + unixFile *pFile = (unixFile*)id; + + int isDataOnly = (flags&SQLITE_SYNC_DATAONLY); + int isFullsync = (flags&0x0F)==SQLITE_SYNC_FULL; + + /* Check that one of SQLITE_SYNC_NORMAL or FULL was passed */ + assert((flags&0x0F)==SQLITE_SYNC_NORMAL + || (flags&0x0F)==SQLITE_SYNC_FULL + ); + + /* Unix cannot, but some systems may return SQLITE_FULL from here. This + ** line is to test that doing so does not cause any problems. + */ + SimulateDiskfullError( return SQLITE_FULL ); + + assert( pFile ); + OSTRACE(("SYNC %-3d\n", pFile->h)); + rc = full_fsync(pFile->h, isFullsync, isDataOnly); + SimulateIOError( rc=1 ); + if( rc ){ + pFile->lastErrno = errno; + return unixLogError(SQLITE_IOERR_FSYNC, "full_fsync", pFile->zPath); + } + + /* Also fsync the directory containing the file if the DIRSYNC flag + ** is set. This is a one-time occurrence. Many systems (examples: AIX) + ** are unable to fsync a directory, so ignore errors on the fsync. + */ + if( pFile->ctrlFlags & UNIXFILE_DIRSYNC ){ + int dirfd; + OSTRACE(("DIRSYNC %s (have_fullfsync=%d fullsync=%d)\n", pFile->zPath, + HAVE_FULLFSYNC, isFullsync)); + rc = osOpenDirectory(pFile->zPath, &dirfd); + if( rc==SQLITE_OK && dirfd>=0 ){ + full_fsync(dirfd, 0, 0); + robust_close(pFile, dirfd, __LINE__); + }else if( rc==SQLITE_CANTOPEN ){ + rc = SQLITE_OK; + } + pFile->ctrlFlags &= ~UNIXFILE_DIRSYNC; + } + return rc; +} + +/* +** Truncate an open file to a specified size +*/ +static int unixTruncate(sqlite3_file *id, i64 nByte){ + unixFile *pFile = (unixFile *)id; + int rc; + assert( pFile ); + SimulateIOError( return SQLITE_IOERR_TRUNCATE ); + + /* If the user has configured a chunk-size for this file, truncate the + ** file so that it consists of an integer number of chunks (i.e. the + ** actual file size after the operation may be larger than the requested + ** size). + */ + if( pFile->szChunk>0 ){ + nByte = ((nByte + pFile->szChunk - 1)/pFile->szChunk) * pFile->szChunk; + } + + rc = robust_ftruncate(pFile->h, (off_t)nByte); + if( rc ){ + pFile->lastErrno = errno; + return unixLogError(SQLITE_IOERR_TRUNCATE, "ftruncate", pFile->zPath); + }else{ +#ifdef SQLITE_DEBUG + /* If we are doing a normal write to a database file (as opposed to + ** doing a hot-journal rollback or a write to some file other than a + ** normal database file) and we truncate the file to zero length, + ** that effectively updates the change counter. This might happen + ** when restoring a database using the backup API from a zero-length + ** source. + */ + if( pFile->inNormalWrite && nByte==0 ){ + pFile->transCntrChng = 1; + } +#endif + +#if SQLITE_MAX_MMAP_SIZE>0 + /* If the file was just truncated to a size smaller than the currently + ** mapped region, reduce the effective mapping size as well. SQLite will + ** use read() and write() to access data beyond this point from now on. + */ + if( nBytemmapSize ){ + pFile->mmapSize = nByte; + } +#endif + + return SQLITE_OK; + } +} + +/* +** Determine the current size of a file in bytes +*/ +static int unixFileSize(sqlite3_file *id, i64 *pSize){ + int rc; + struct stat buf; + assert( id ); + rc = osFstat(((unixFile*)id)->h, &buf); + SimulateIOError( rc=1 ); + if( rc!=0 ){ + ((unixFile*)id)->lastErrno = errno; + return SQLITE_IOERR_FSTAT; + } + *pSize = buf.st_size; + + /* When opening a zero-size database, the findInodeInfo() procedure + ** writes a single byte into that file in order to work around a bug + ** in the OS-X msdos filesystem. In order to avoid problems with upper + ** layers, we need to report this file size as zero even though it is + ** really 1. Ticket #3260. + */ + if( *pSize==1 ) *pSize = 0; + + + return SQLITE_OK; +} + +#if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) +/* +** Handler for proxy-locking file-control verbs. Defined below in the +** proxying locking division. +*/ +static int proxyFileControl(sqlite3_file*,int,void*); +#endif + +/* +** This function is called to handle the SQLITE_FCNTL_SIZE_HINT +** file-control operation. Enlarge the database to nBytes in size +** (rounded up to the next chunk-size). If the database is already +** nBytes or larger, this routine is a no-op. +*/ +static int fcntlSizeHint(unixFile *pFile, i64 nByte){ + if( pFile->szChunk>0 ){ + i64 nSize; /* Required file size */ + struct stat buf; /* Used to hold return values of fstat() */ + + if( osFstat(pFile->h, &buf) ) return SQLITE_IOERR_FSTAT; + + nSize = ((nByte+pFile->szChunk-1) / pFile->szChunk) * pFile->szChunk; + if( nSize>(i64)buf.st_size ){ + +#if defined(HAVE_POSIX_FALLOCATE) && HAVE_POSIX_FALLOCATE + /* The code below is handling the return value of osFallocate() + ** correctly. posix_fallocate() is defined to "returns zero on success, + ** or an error number on failure". See the manpage for details. */ + int err; + do{ + err = osFallocate(pFile->h, buf.st_size, nSize-buf.st_size); + }while( err==EINTR ); + if( err ) return SQLITE_IOERR_WRITE; +#else + /* If the OS does not have posix_fallocate(), fake it. First use + ** ftruncate() to set the file size, then write a single byte to + ** the last byte in each block within the extended region. This + ** is the same technique used by glibc to implement posix_fallocate() + ** on systems that do not have a real fallocate() system call. + */ + int nBlk = buf.st_blksize; /* File-system block size */ + i64 iWrite; /* Next offset to write to */ + + if( robust_ftruncate(pFile->h, nSize) ){ + pFile->lastErrno = errno; + return unixLogError(SQLITE_IOERR_TRUNCATE, "ftruncate", pFile->zPath); + } + iWrite = ((buf.st_size + 2*nBlk - 1)/nBlk)*nBlk-1; + while( iWrite0 + if( pFile->mmapSizeMax>0 && nByte>pFile->mmapSize ){ + int rc; + if( pFile->szChunk<=0 ){ + if( robust_ftruncate(pFile->h, nByte) ){ + pFile->lastErrno = errno; + return unixLogError(SQLITE_IOERR_TRUNCATE, "ftruncate", pFile->zPath); + } + } + + rc = unixMapfile(pFile, nByte); + return rc; + } +#endif + + return SQLITE_OK; +} + +/* +** If *pArg is inititially negative then this is a query. Set *pArg to +** 1 or 0 depending on whether or not bit mask of pFile->ctrlFlags is set. +** +** If *pArg is 0 or 1, then clear or set the mask bit of pFile->ctrlFlags. +*/ +static void unixModeBit(unixFile *pFile, unsigned char mask, int *pArg){ + if( *pArg<0 ){ + *pArg = (pFile->ctrlFlags & mask)!=0; + }else if( (*pArg)==0 ){ + pFile->ctrlFlags &= ~mask; + }else{ + pFile->ctrlFlags |= mask; + } +} + +/* Forward declaration */ +static int unixGetTempname(int nBuf, char *zBuf); + +/* +** Information and control of an open file handle. +*/ +static int unixFileControl(sqlite3_file *id, int op, void *pArg){ + unixFile *pFile = (unixFile*)id; + switch( op ){ + case SQLITE_FCNTL_LOCKSTATE: { + *(int*)pArg = pFile->eFileLock; + return SQLITE_OK; + } + case SQLITE_LAST_ERRNO: { + *(int*)pArg = pFile->lastErrno; + return SQLITE_OK; + } + case SQLITE_FCNTL_CHUNK_SIZE: { + pFile->szChunk = *(int *)pArg; + return SQLITE_OK; + } + case SQLITE_FCNTL_SIZE_HINT: { + int rc; + SimulateIOErrorBenign(1); + rc = fcntlSizeHint(pFile, *(i64 *)pArg); + SimulateIOErrorBenign(0); + return rc; + } + case SQLITE_FCNTL_PERSIST_WAL: { + unixModeBit(pFile, UNIXFILE_PERSIST_WAL, (int*)pArg); + return SQLITE_OK; + } + case SQLITE_FCNTL_POWERSAFE_OVERWRITE: { + unixModeBit(pFile, UNIXFILE_PSOW, (int*)pArg); + return SQLITE_OK; + } + case SQLITE_FCNTL_VFSNAME: { + *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName); + return SQLITE_OK; + } + case SQLITE_FCNTL_TEMPFILENAME: { + char *zTFile = sqlite3_malloc( pFile->pVfs->mxPathname ); + if( zTFile ){ + unixGetTempname(pFile->pVfs->mxPathname, zTFile); + *(char**)pArg = zTFile; + } + return SQLITE_OK; + } + case SQLITE_FCNTL_HAS_MOVED: { + *(int*)pArg = fileHasMoved(pFile); + return SQLITE_OK; + } +#if SQLITE_MAX_MMAP_SIZE>0 + case SQLITE_FCNTL_MMAP_SIZE: { + i64 newLimit = *(i64*)pArg; + int rc = SQLITE_OK; + if( newLimit>sqlite3GlobalConfig.mxMmap ){ + newLimit = sqlite3GlobalConfig.mxMmap; + } + *(i64*)pArg = pFile->mmapSizeMax; + if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){ + pFile->mmapSizeMax = newLimit; + if( pFile->mmapSize>0 ){ + unixUnmapfile(pFile); + rc = unixMapfile(pFile, -1); + } + } + return rc; + } +#endif +#ifdef SQLITE_DEBUG + /* The pager calls this method to signal that it has done + ** a rollback and that the database is therefore unchanged and + ** it hence it is OK for the transaction change counter to be + ** unchanged. + */ + case SQLITE_FCNTL_DB_UNCHANGED: { + ((unixFile*)id)->dbUpdate = 0; + return SQLITE_OK; + } +#endif +#if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) + case SQLITE_SET_LOCKPROXYFILE: + case SQLITE_GET_LOCKPROXYFILE: { + return proxyFileControl(id,op,pArg); + } +#endif /* SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) */ + } + return SQLITE_NOTFOUND; +} + +/* +** Return the sector size in bytes of the underlying block device for +** the specified file. This is almost always 512 bytes, but may be +** larger for some devices. +** +** SQLite code assumes this function cannot fail. It also assumes that +** if two files are created in the same file-system directory (i.e. +** a database and its journal file) that the sector size will be the +** same for both. +*/ +#ifndef __QNXNTO__ +static int unixSectorSize(sqlite3_file *NotUsed){ + UNUSED_PARAMETER(NotUsed); + return SQLITE_DEFAULT_SECTOR_SIZE; +} +#endif + +/* +** The following version of unixSectorSize() is optimized for QNX. +*/ +#ifdef __QNXNTO__ +#include +#include +static int unixSectorSize(sqlite3_file *id){ + unixFile *pFile = (unixFile*)id; + if( pFile->sectorSize == 0 ){ + struct statvfs fsInfo; + + /* Set defaults for non-supported filesystems */ + pFile->sectorSize = SQLITE_DEFAULT_SECTOR_SIZE; + pFile->deviceCharacteristics = 0; + if( fstatvfs(pFile->h, &fsInfo) == -1 ) { + return pFile->sectorSize; + } + + if( !strcmp(fsInfo.f_basetype, "tmp") ) { + pFile->sectorSize = fsInfo.f_bsize; + pFile->deviceCharacteristics = + SQLITE_IOCAP_ATOMIC4K | /* All ram filesystem writes are atomic */ + SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until + ** the write succeeds */ + SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind + ** so it is ordered */ + 0; + }else if( strstr(fsInfo.f_basetype, "etfs") ){ + pFile->sectorSize = fsInfo.f_bsize; + pFile->deviceCharacteristics = + /* etfs cluster size writes are atomic */ + (pFile->sectorSize / 512 * SQLITE_IOCAP_ATOMIC512) | + SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until + ** the write succeeds */ + SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind + ** so it is ordered */ + 0; + }else if( !strcmp(fsInfo.f_basetype, "qnx6") ){ + pFile->sectorSize = fsInfo.f_bsize; + pFile->deviceCharacteristics = + SQLITE_IOCAP_ATOMIC | /* All filesystem writes are atomic */ + SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until + ** the write succeeds */ + SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind + ** so it is ordered */ + 0; + }else if( !strcmp(fsInfo.f_basetype, "qnx4") ){ + pFile->sectorSize = fsInfo.f_bsize; + pFile->deviceCharacteristics = + /* full bitset of atomics from max sector size and smaller */ + ((pFile->sectorSize / 512 * SQLITE_IOCAP_ATOMIC512) << 1) - 2 | + SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind + ** so it is ordered */ + 0; + }else if( strstr(fsInfo.f_basetype, "dos") ){ + pFile->sectorSize = fsInfo.f_bsize; + pFile->deviceCharacteristics = + /* full bitset of atomics from max sector size and smaller */ + ((pFile->sectorSize / 512 * SQLITE_IOCAP_ATOMIC512) << 1) - 2 | + SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind + ** so it is ordered */ + 0; + }else{ + pFile->deviceCharacteristics = + SQLITE_IOCAP_ATOMIC512 | /* blocks are atomic */ + SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until + ** the write succeeds */ + 0; + } + } + /* Last chance verification. If the sector size isn't a multiple of 512 + ** then it isn't valid.*/ + if( pFile->sectorSize % 512 != 0 ){ + pFile->deviceCharacteristics = 0; + pFile->sectorSize = SQLITE_DEFAULT_SECTOR_SIZE; + } + return pFile->sectorSize; +} +#endif /* __QNXNTO__ */ + +/* +** Return the device characteristics for the file. +** +** This VFS is set up to return SQLITE_IOCAP_POWERSAFE_OVERWRITE by default. +** However, that choice is contraversial since technically the underlying +** file system does not always provide powersafe overwrites. (In other +** words, after a power-loss event, parts of the file that were never +** written might end up being altered.) However, non-PSOW behavior is very, +** very rare. And asserting PSOW makes a large reduction in the amount +** of required I/O for journaling, since a lot of padding is eliminated. +** Hence, while POWERSAFE_OVERWRITE is on by default, there is a file-control +** available to turn it off and URI query parameter available to turn it off. +*/ +static int unixDeviceCharacteristics(sqlite3_file *id){ + unixFile *p = (unixFile*)id; + int rc = 0; +#ifdef __QNXNTO__ + if( p->sectorSize==0 ) unixSectorSize(id); + rc = p->deviceCharacteristics; +#endif + if( p->ctrlFlags & UNIXFILE_PSOW ){ + rc |= SQLITE_IOCAP_POWERSAFE_OVERWRITE; + } + return rc; +} + +#ifndef SQLITE_OMIT_WAL + + +/* +** Object used to represent an shared memory buffer. +** +** When multiple threads all reference the same wal-index, each thread +** has its own unixShm object, but they all point to a single instance +** of this unixShmNode object. In other words, each wal-index is opened +** only once per process. +** +** Each unixShmNode object is connected to a single unixInodeInfo object. +** We could coalesce this object into unixInodeInfo, but that would mean +** every open file that does not use shared memory (in other words, most +** open files) would have to carry around this extra information. So +** the unixInodeInfo object contains a pointer to this unixShmNode object +** and the unixShmNode object is created only when needed. +** +** unixMutexHeld() must be true when creating or destroying +** this object or while reading or writing the following fields: +** +** nRef +** +** The following fields are read-only after the object is created: +** +** fid +** zFilename +** +** Either unixShmNode.mutex must be held or unixShmNode.nRef==0 and +** unixMutexHeld() is true when reading or writing any other field +** in this structure. +*/ +struct unixShmNode { + unixInodeInfo *pInode; /* unixInodeInfo that owns this SHM node */ + sqlite3_mutex *mutex; /* Mutex to access this object */ + char *zFilename; /* Name of the mmapped file */ + int h; /* Open file descriptor */ + int szRegion; /* Size of shared-memory regions */ + u16 nRegion; /* Size of array apRegion */ + u8 isReadonly; /* True if read-only */ + char **apRegion; /* Array of mapped shared-memory regions */ + int nRef; /* Number of unixShm objects pointing to this */ + unixShm *pFirst; /* All unixShm objects pointing to this */ +#ifdef SQLITE_DEBUG + u8 exclMask; /* Mask of exclusive locks held */ + u8 sharedMask; /* Mask of shared locks held */ + u8 nextShmId; /* Next available unixShm.id value */ +#endif +}; + +/* +** Structure used internally by this VFS to record the state of an +** open shared memory connection. +** +** The following fields are initialized when this object is created and +** are read-only thereafter: +** +** unixShm.pFile +** unixShm.id +** +** All other fields are read/write. The unixShm.pFile->mutex must be held +** while accessing any read/write fields. +*/ +struct unixShm { + unixShmNode *pShmNode; /* The underlying unixShmNode object */ + unixShm *pNext; /* Next unixShm with the same unixShmNode */ + u8 hasMutex; /* True if holding the unixShmNode mutex */ + u8 id; /* Id of this connection within its unixShmNode */ + u16 sharedMask; /* Mask of shared locks held */ + u16 exclMask; /* Mask of exclusive locks held */ +}; + +/* +** Constants used for locking +*/ +#define UNIX_SHM_BASE ((22+SQLITE_SHM_NLOCK)*4) /* first lock byte */ +#define UNIX_SHM_DMS (UNIX_SHM_BASE+SQLITE_SHM_NLOCK) /* deadman switch */ + +/* +** Apply posix advisory locks for all bytes from ofst through ofst+n-1. +** +** Locks block if the mask is exactly UNIX_SHM_C and are non-blocking +** otherwise. +*/ +static int unixShmSystemLock( + unixShmNode *pShmNode, /* Apply locks to this open shared-memory segment */ + int lockType, /* F_UNLCK, F_RDLCK, or F_WRLCK */ + int ofst, /* First byte of the locking range */ + int n /* Number of bytes to lock */ +){ + struct flock f; /* The posix advisory locking structure */ + int rc = SQLITE_OK; /* Result code form fcntl() */ + + /* Access to the unixShmNode object is serialized by the caller */ + assert( sqlite3_mutex_held(pShmNode->mutex) || pShmNode->nRef==0 ); + + /* Shared locks never span more than one byte */ + assert( n==1 || lockType!=F_RDLCK ); + + /* Locks are within range */ + assert( n>=1 && nh>=0 ){ + /* Initialize the locking parameters */ + memset(&f, 0, sizeof(f)); + f.l_type = lockType; + f.l_whence = SEEK_SET; + f.l_start = ofst; + f.l_len = n; + + rc = osFcntl(pShmNode->h, F_SETLK, &f); + rc = (rc!=(-1)) ? SQLITE_OK : SQLITE_BUSY; + } + + /* Update the global lock state and do debug tracing */ +#ifdef SQLITE_DEBUG + { u16 mask; + OSTRACE(("SHM-LOCK ")); + mask = ofst>31 ? 0xffff : (1<<(ofst+n)) - (1<exclMask &= ~mask; + pShmNode->sharedMask &= ~mask; + }else if( lockType==F_RDLCK ){ + OSTRACE(("read-lock %d ok", ofst)); + pShmNode->exclMask &= ~mask; + pShmNode->sharedMask |= mask; + }else{ + assert( lockType==F_WRLCK ); + OSTRACE(("write-lock %d ok", ofst)); + pShmNode->exclMask |= mask; + pShmNode->sharedMask &= ~mask; + } + }else{ + if( lockType==F_UNLCK ){ + OSTRACE(("unlock %d failed", ofst)); + }else if( lockType==F_RDLCK ){ + OSTRACE(("read-lock failed")); + }else{ + assert( lockType==F_WRLCK ); + OSTRACE(("write-lock %d failed", ofst)); + } + } + OSTRACE((" - afterwards %03x,%03x\n", + pShmNode->sharedMask, pShmNode->exclMask)); + } +#endif + + return rc; +} + +/* +** Return the system page size. +** +** This function should not be called directly by other code in this file. +** Instead, it should be called via macro osGetpagesize(). +*/ +static int unixGetpagesize(void){ +#if defined(_BSD_SOURCE) + return getpagesize(); +#else + return (int)sysconf(_SC_PAGESIZE); +#endif +} + +/* +** Return the minimum number of 32KB shm regions that should be mapped at +** a time, assuming that each mapping must be an integer multiple of the +** current system page-size. +** +** Usually, this is 1. The exception seems to be systems that are configured +** to use 64KB pages - in this case each mapping must cover at least two +** shm regions. +*/ +static int unixShmRegionPerMap(void){ + int shmsz = 32*1024; /* SHM region size */ + int pgsz = osGetpagesize(); /* System page size */ + assert( ((pgsz-1)&pgsz)==0 ); /* Page size must be a power of 2 */ + if( pgszpInode->pShmNode; + assert( unixMutexHeld() ); + if( p && p->nRef==0 ){ + int nShmPerMap = unixShmRegionPerMap(); + int i; + assert( p->pInode==pFd->pInode ); + sqlite3_mutex_free(p->mutex); + for(i=0; inRegion; i+=nShmPerMap){ + if( p->h>=0 ){ + osMunmap(p->apRegion[i], p->szRegion); + }else{ + sqlite3_free(p->apRegion[i]); + } + } + sqlite3_free(p->apRegion); + if( p->h>=0 ){ + robust_close(pFd, p->h, __LINE__); + p->h = -1; + } + p->pInode->pShmNode = 0; + sqlite3_free(p); + } +} + +/* +** Open a shared-memory area associated with open database file pDbFd. +** This particular implementation uses mmapped files. +** +** The file used to implement shared-memory is in the same directory +** as the open database file and has the same name as the open database +** file with the "-shm" suffix added. For example, if the database file +** is "/home/user1/config.db" then the file that is created and mmapped +** for shared memory will be called "/home/user1/config.db-shm". +** +** Another approach to is to use files in /dev/shm or /dev/tmp or an +** some other tmpfs mount. But if a file in a different directory +** from the database file is used, then differing access permissions +** or a chroot() might cause two different processes on the same +** database to end up using different files for shared memory - +** meaning that their memory would not really be shared - resulting +** in database corruption. Nevertheless, this tmpfs file usage +** can be enabled at compile-time using -DSQLITE_SHM_DIRECTORY="/dev/shm" +** or the equivalent. The use of the SQLITE_SHM_DIRECTORY compile-time +** option results in an incompatible build of SQLite; builds of SQLite +** that with differing SQLITE_SHM_DIRECTORY settings attempt to use the +** same database file at the same time, database corruption will likely +** result. The SQLITE_SHM_DIRECTORY compile-time option is considered +** "unsupported" and may go away in a future SQLite release. +** +** When opening a new shared-memory file, if no other instances of that +** file are currently open, in this process or in other processes, then +** the file must be truncated to zero length or have its header cleared. +** +** If the original database file (pDbFd) is using the "unix-excl" VFS +** that means that an exclusive lock is held on the database file and +** that no other processes are able to read or write the database. In +** that case, we do not really need shared memory. No shared memory +** file is created. The shared memory will be simulated with heap memory. +*/ +static int unixOpenSharedMemory(unixFile *pDbFd){ + struct unixShm *p = 0; /* The connection to be opened */ + struct unixShmNode *pShmNode; /* The underlying mmapped file */ + int rc; /* Result code */ + unixInodeInfo *pInode; /* The inode of fd */ + char *zShmFilename; /* Name of the file used for SHM */ + int nShmFilename; /* Size of the SHM filename in bytes */ + + /* Allocate space for the new unixShm object. */ + p = sqlite3_malloc( sizeof(*p) ); + if( p==0 ) return SQLITE_NOMEM; + memset(p, 0, sizeof(*p)); + assert( pDbFd->pShm==0 ); + + /* Check to see if a unixShmNode object already exists. Reuse an existing + ** one if present. Create a new one if necessary. + */ + unixEnterMutex(); + pInode = pDbFd->pInode; + pShmNode = pInode->pShmNode; + if( pShmNode==0 ){ + struct stat sStat; /* fstat() info for database file */ + + /* Call fstat() to figure out the permissions on the database file. If + ** a new *-shm file is created, an attempt will be made to create it + ** with the same permissions. + */ + if( osFstat(pDbFd->h, &sStat) && pInode->bProcessLock==0 ){ + rc = SQLITE_IOERR_FSTAT; + goto shm_open_err; + } + +#ifdef SQLITE_SHM_DIRECTORY + nShmFilename = sizeof(SQLITE_SHM_DIRECTORY) + 31; +#else + nShmFilename = 6 + (int)strlen(pDbFd->zPath); +#endif + pShmNode = sqlite3_malloc( sizeof(*pShmNode) + nShmFilename ); + if( pShmNode==0 ){ + rc = SQLITE_NOMEM; + goto shm_open_err; + } + memset(pShmNode, 0, sizeof(*pShmNode)+nShmFilename); + zShmFilename = pShmNode->zFilename = (char*)&pShmNode[1]; +#ifdef SQLITE_SHM_DIRECTORY + sqlite3_snprintf(nShmFilename, zShmFilename, + SQLITE_SHM_DIRECTORY "/sqlite-shm-%x-%x", + (u32)sStat.st_ino, (u32)sStat.st_dev); +#else + sqlite3_snprintf(nShmFilename, zShmFilename, "%s-shm", pDbFd->zPath); + sqlite3FileSuffix3(pDbFd->zPath, zShmFilename); +#endif + pShmNode->h = -1; + pDbFd->pInode->pShmNode = pShmNode; + pShmNode->pInode = pDbFd->pInode; + pShmNode->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); + if( pShmNode->mutex==0 ){ + rc = SQLITE_NOMEM; + goto shm_open_err; + } + + if( pInode->bProcessLock==0 ){ + int openFlags = O_RDWR | O_CREAT; + if( sqlite3_uri_boolean(pDbFd->zPath, "readonly_shm", 0) ){ + openFlags = O_RDONLY; + pShmNode->isReadonly = 1; + } + pShmNode->h = robust_open(zShmFilename, openFlags, (sStat.st_mode&0777)); + if( pShmNode->h<0 ){ + rc = unixLogError(SQLITE_CANTOPEN_BKPT, "open", zShmFilename); + goto shm_open_err; + } + + /* If this process is running as root, make sure that the SHM file + ** is owned by the same user that owns the original database. Otherwise, + ** the original owner will not be able to connect. + */ + osFchown(pShmNode->h, sStat.st_uid, sStat.st_gid); + + /* Check to see if another process is holding the dead-man switch. + ** If not, truncate the file to zero length. + */ + rc = SQLITE_OK; + if( unixShmSystemLock(pShmNode, F_WRLCK, UNIX_SHM_DMS, 1)==SQLITE_OK ){ + if( robust_ftruncate(pShmNode->h, 0) ){ + rc = unixLogError(SQLITE_IOERR_SHMOPEN, "ftruncate", zShmFilename); + } + } + if( rc==SQLITE_OK ){ + rc = unixShmSystemLock(pShmNode, F_RDLCK, UNIX_SHM_DMS, 1); + } + if( rc ) goto shm_open_err; + } + } + + /* Make the new connection a child of the unixShmNode */ + p->pShmNode = pShmNode; +#ifdef SQLITE_DEBUG + p->id = pShmNode->nextShmId++; +#endif + pShmNode->nRef++; + pDbFd->pShm = p; + unixLeaveMutex(); + + /* The reference count on pShmNode has already been incremented under + ** the cover of the unixEnterMutex() mutex and the pointer from the + ** new (struct unixShm) object to the pShmNode has been set. All that is + ** left to do is to link the new object into the linked list starting + ** at pShmNode->pFirst. This must be done while holding the pShmNode->mutex + ** mutex. + */ + sqlite3_mutex_enter(pShmNode->mutex); + p->pNext = pShmNode->pFirst; + pShmNode->pFirst = p; + sqlite3_mutex_leave(pShmNode->mutex); + return SQLITE_OK; + + /* Jump here on any error */ +shm_open_err: + unixShmPurge(pDbFd); /* This call frees pShmNode if required */ + sqlite3_free(p); + unixLeaveMutex(); + return rc; +} + +/* +** This function is called to obtain a pointer to region iRegion of the +** shared-memory associated with the database file fd. Shared-memory regions +** are numbered starting from zero. Each shared-memory region is szRegion +** bytes in size. +** +** If an error occurs, an error code is returned and *pp is set to NULL. +** +** Otherwise, if the bExtend parameter is 0 and the requested shared-memory +** region has not been allocated (by any client, including one running in a +** separate process), then *pp is set to NULL and SQLITE_OK returned. If +** bExtend is non-zero and the requested shared-memory region has not yet +** been allocated, it is allocated by this function. +** +** If the shared-memory region has already been allocated or is allocated by +** this call as described above, then it is mapped into this processes +** address space (if it is not already), *pp is set to point to the mapped +** memory and SQLITE_OK returned. +*/ +static int unixShmMap( + sqlite3_file *fd, /* Handle open on database file */ + int iRegion, /* Region to retrieve */ + int szRegion, /* Size of regions */ + int bExtend, /* True to extend file if necessary */ + void volatile **pp /* OUT: Mapped memory */ +){ + unixFile *pDbFd = (unixFile*)fd; + unixShm *p; + unixShmNode *pShmNode; + int rc = SQLITE_OK; + int nShmPerMap = unixShmRegionPerMap(); + int nReqRegion; + + /* If the shared-memory file has not yet been opened, open it now. */ + if( pDbFd->pShm==0 ){ + rc = unixOpenSharedMemory(pDbFd); + if( rc!=SQLITE_OK ) return rc; + } + + p = pDbFd->pShm; + pShmNode = p->pShmNode; + sqlite3_mutex_enter(pShmNode->mutex); + assert( szRegion==pShmNode->szRegion || pShmNode->nRegion==0 ); + assert( pShmNode->pInode==pDbFd->pInode ); + assert( pShmNode->h>=0 || pDbFd->pInode->bProcessLock==1 ); + assert( pShmNode->h<0 || pDbFd->pInode->bProcessLock==0 ); + + /* Minimum number of regions required to be mapped. */ + nReqRegion = ((iRegion+nShmPerMap) / nShmPerMap) * nShmPerMap; + + if( pShmNode->nRegionszRegion = szRegion; + + if( pShmNode->h>=0 ){ + /* The requested region is not mapped into this processes address space. + ** Check to see if it has been allocated (i.e. if the wal-index file is + ** large enough to contain the requested region). + */ + if( osFstat(pShmNode->h, &sStat) ){ + rc = SQLITE_IOERR_SHMSIZE; + goto shmpage_out; + } + + if( sStat.st_sizeh, iPg*pgsz + pgsz-1, "", 1, 0)!=1 ){ + const char *zFile = pShmNode->zFilename; + rc = unixLogError(SQLITE_IOERR_SHMSIZE, "write", zFile); + goto shmpage_out; + } + } + } + } + } + + /* Map the requested memory region into this processes address space. */ + apNew = (char **)sqlite3_realloc( + pShmNode->apRegion, nReqRegion*sizeof(char *) + ); + if( !apNew ){ + rc = SQLITE_IOERR_NOMEM; + goto shmpage_out; + } + pShmNode->apRegion = apNew; + while( pShmNode->nRegionh>=0 ){ + pMem = osMmap(0, nMap, + pShmNode->isReadonly ? PROT_READ : PROT_READ|PROT_WRITE, + MAP_SHARED, pShmNode->h, szRegion*(i64)pShmNode->nRegion + ); + if( pMem==MAP_FAILED ){ + rc = unixLogError(SQLITE_IOERR_SHMMAP, "mmap", pShmNode->zFilename); + goto shmpage_out; + } + }else{ + pMem = sqlite3_malloc(szRegion); + if( pMem==0 ){ + rc = SQLITE_NOMEM; + goto shmpage_out; + } + memset(pMem, 0, szRegion); + } + + for(i=0; iapRegion[pShmNode->nRegion+i] = &((char*)pMem)[szRegion*i]; + } + pShmNode->nRegion += nShmPerMap; + } + } + +shmpage_out: + if( pShmNode->nRegion>iRegion ){ + *pp = pShmNode->apRegion[iRegion]; + }else{ + *pp = 0; + } + if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY; + sqlite3_mutex_leave(pShmNode->mutex); + return rc; +} + +/* +** Change the lock state for a shared-memory segment. +** +** Note that the relationship between SHAREd and EXCLUSIVE locks is a little +** different here than in posix. In xShmLock(), one can go from unlocked +** to shared and back or from unlocked to exclusive and back. But one may +** not go from shared to exclusive or from exclusive to shared. +*/ +static int unixShmLock( + sqlite3_file *fd, /* Database file holding the shared memory */ + int ofst, /* First lock to acquire or release */ + int n, /* Number of locks to acquire or release */ + int flags /* What to do with the lock */ +){ + unixFile *pDbFd = (unixFile*)fd; /* Connection holding shared memory */ + unixShm *p = pDbFd->pShm; /* The shared memory being locked */ + unixShm *pX; /* For looping over all siblings */ + unixShmNode *pShmNode = p->pShmNode; /* The underlying file iNode */ + int rc = SQLITE_OK; /* Result code */ + u16 mask; /* Mask of locks to take or release */ + + assert( pShmNode==pDbFd->pInode->pShmNode ); + assert( pShmNode->pInode==pDbFd->pInode ); + assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK ); + assert( n>=1 ); + assert( flags==(SQLITE_SHM_LOCK | SQLITE_SHM_SHARED) + || flags==(SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE) + || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED) + || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE) ); + assert( n==1 || (flags & SQLITE_SHM_EXCLUSIVE)!=0 ); + assert( pShmNode->h>=0 || pDbFd->pInode->bProcessLock==1 ); + assert( pShmNode->h<0 || pDbFd->pInode->bProcessLock==0 ); + + mask = (1<<(ofst+n)) - (1<1 || mask==(1<mutex); + if( flags & SQLITE_SHM_UNLOCK ){ + u16 allMask = 0; /* Mask of locks held by siblings */ + + /* See if any siblings hold this same lock */ + for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ + if( pX==p ) continue; + assert( (pX->exclMask & (p->exclMask|p->sharedMask))==0 ); + allMask |= pX->sharedMask; + } + + /* Unlock the system-level locks */ + if( (mask & allMask)==0 ){ + rc = unixShmSystemLock(pShmNode, F_UNLCK, ofst+UNIX_SHM_BASE, n); + }else{ + rc = SQLITE_OK; + } + + /* Undo the local locks */ + if( rc==SQLITE_OK ){ + p->exclMask &= ~mask; + p->sharedMask &= ~mask; + } + }else if( flags & SQLITE_SHM_SHARED ){ + u16 allShared = 0; /* Union of locks held by connections other than "p" */ + + /* Find out which shared locks are already held by sibling connections. + ** If any sibling already holds an exclusive lock, go ahead and return + ** SQLITE_BUSY. + */ + for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ + if( (pX->exclMask & mask)!=0 ){ + rc = SQLITE_BUSY; + break; + } + allShared |= pX->sharedMask; + } + + /* Get shared locks at the system level, if necessary */ + if( rc==SQLITE_OK ){ + if( (allShared & mask)==0 ){ + rc = unixShmSystemLock(pShmNode, F_RDLCK, ofst+UNIX_SHM_BASE, n); + }else{ + rc = SQLITE_OK; + } + } + + /* Get the local shared locks */ + if( rc==SQLITE_OK ){ + p->sharedMask |= mask; + } + }else{ + /* Make sure no sibling connections hold locks that will block this + ** lock. If any do, return SQLITE_BUSY right away. + */ + for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ + if( (pX->exclMask & mask)!=0 || (pX->sharedMask & mask)!=0 ){ + rc = SQLITE_BUSY; + break; + } + } + + /* Get the exclusive locks at the system level. Then if successful + ** also mark the local connection as being locked. + */ + if( rc==SQLITE_OK ){ + rc = unixShmSystemLock(pShmNode, F_WRLCK, ofst+UNIX_SHM_BASE, n); + if( rc==SQLITE_OK ){ + assert( (p->sharedMask & mask)==0 ); + p->exclMask |= mask; + } + } + } + sqlite3_mutex_leave(pShmNode->mutex); + OSTRACE(("SHM-LOCK shmid-%d, pid-%d got %03x,%03x\n", + p->id, getpid(), p->sharedMask, p->exclMask)); + return rc; +} + +/* +** Implement a memory barrier or memory fence on shared memory. +** +** All loads and stores begun before the barrier must complete before +** any load or store begun after the barrier. +*/ +static void unixShmBarrier( + sqlite3_file *fd /* Database file holding the shared memory */ +){ + UNUSED_PARAMETER(fd); + unixEnterMutex(); + unixLeaveMutex(); +} + +/* +** Close a connection to shared-memory. Delete the underlying +** storage if deleteFlag is true. +** +** If there is no shared memory associated with the connection then this +** routine is a harmless no-op. +*/ +static int unixShmUnmap( + sqlite3_file *fd, /* The underlying database file */ + int deleteFlag /* Delete shared-memory if true */ +){ + unixShm *p; /* The connection to be closed */ + unixShmNode *pShmNode; /* The underlying shared-memory file */ + unixShm **pp; /* For looping over sibling connections */ + unixFile *pDbFd; /* The underlying database file */ + + pDbFd = (unixFile*)fd; + p = pDbFd->pShm; + if( p==0 ) return SQLITE_OK; + pShmNode = p->pShmNode; + + assert( pShmNode==pDbFd->pInode->pShmNode ); + assert( pShmNode->pInode==pDbFd->pInode ); + + /* Remove connection p from the set of connections associated + ** with pShmNode */ + sqlite3_mutex_enter(pShmNode->mutex); + for(pp=&pShmNode->pFirst; (*pp)!=p; pp = &(*pp)->pNext){} + *pp = p->pNext; + + /* Free the connection p */ + sqlite3_free(p); + pDbFd->pShm = 0; + sqlite3_mutex_leave(pShmNode->mutex); + + /* If pShmNode->nRef has reached 0, then close the underlying + ** shared-memory file, too */ + unixEnterMutex(); + assert( pShmNode->nRef>0 ); + pShmNode->nRef--; + if( pShmNode->nRef==0 ){ + if( deleteFlag && pShmNode->h>=0 ) osUnlink(pShmNode->zFilename); + unixShmPurge(pDbFd); + } + unixLeaveMutex(); + + return SQLITE_OK; +} + + +#else +# define unixShmMap 0 +# define unixShmLock 0 +# define unixShmBarrier 0 +# define unixShmUnmap 0 +#endif /* #ifndef SQLITE_OMIT_WAL */ + +#if SQLITE_MAX_MMAP_SIZE>0 +/* +** If it is currently memory mapped, unmap file pFd. +*/ +static void unixUnmapfile(unixFile *pFd){ + assert( pFd->nFetchOut==0 ); + if( pFd->pMapRegion ){ + osMunmap(pFd->pMapRegion, pFd->mmapSizeActual); + pFd->pMapRegion = 0; + pFd->mmapSize = 0; + pFd->mmapSizeActual = 0; + } +} + +/* +** Attempt to set the size of the memory mapping maintained by file +** descriptor pFd to nNew bytes. Any existing mapping is discarded. +** +** If successful, this function sets the following variables: +** +** unixFile.pMapRegion +** unixFile.mmapSize +** unixFile.mmapSizeActual +** +** If unsuccessful, an error message is logged via sqlite3_log() and +** the three variables above are zeroed. In this case SQLite should +** continue accessing the database using the xRead() and xWrite() +** methods. +*/ +static void unixRemapfile( + unixFile *pFd, /* File descriptor object */ + i64 nNew /* Required mapping size */ +){ + const char *zErr = "mmap"; + int h = pFd->h; /* File descriptor open on db file */ + u8 *pOrig = (u8 *)pFd->pMapRegion; /* Pointer to current file mapping */ + i64 nOrig = pFd->mmapSizeActual; /* Size of pOrig region in bytes */ + u8 *pNew = 0; /* Location of new mapping */ + int flags = PROT_READ; /* Flags to pass to mmap() */ + + assert( pFd->nFetchOut==0 ); + assert( nNew>pFd->mmapSize ); + assert( nNew<=pFd->mmapSizeMax ); + assert( nNew>0 ); + assert( pFd->mmapSizeActual>=pFd->mmapSize ); + assert( MAP_FAILED!=0 ); + + if( (pFd->ctrlFlags & UNIXFILE_RDONLY)==0 ) flags |= PROT_WRITE; + + if( pOrig ){ +#if HAVE_MREMAP + i64 nReuse = pFd->mmapSize; +#else + const int szSyspage = osGetpagesize(); + i64 nReuse = (pFd->mmapSize & ~(szSyspage-1)); +#endif + u8 *pReq = &pOrig[nReuse]; + + /* Unmap any pages of the existing mapping that cannot be reused. */ + if( nReuse!=nOrig ){ + osMunmap(pReq, nOrig-nReuse); + } + +#if HAVE_MREMAP + pNew = osMremap(pOrig, nReuse, nNew, MREMAP_MAYMOVE); + zErr = "mremap"; +#else + pNew = osMmap(pReq, nNew-nReuse, flags, MAP_SHARED, h, nReuse); + if( pNew!=MAP_FAILED ){ + if( pNew!=pReq ){ + osMunmap(pNew, nNew - nReuse); + pNew = 0; + }else{ + pNew = pOrig; + } + } +#endif + + /* The attempt to extend the existing mapping failed. Free it. */ + if( pNew==MAP_FAILED || pNew==0 ){ + osMunmap(pOrig, nReuse); + } + } + + /* If pNew is still NULL, try to create an entirely new mapping. */ + if( pNew==0 ){ + pNew = osMmap(0, nNew, flags, MAP_SHARED, h, 0); + } + + if( pNew==MAP_FAILED ){ + pNew = 0; + nNew = 0; + unixLogError(SQLITE_OK, zErr, pFd->zPath); + + /* If the mmap() above failed, assume that all subsequent mmap() calls + ** will probably fail too. Fall back to using xRead/xWrite exclusively + ** in this case. */ + pFd->mmapSizeMax = 0; + } + pFd->pMapRegion = (void *)pNew; + pFd->mmapSize = pFd->mmapSizeActual = nNew; +} + +/* +** Memory map or remap the file opened by file-descriptor pFd (if the file +** is already mapped, the existing mapping is replaced by the new). Or, if +** there already exists a mapping for this file, and there are still +** outstanding xFetch() references to it, this function is a no-op. +** +** If parameter nByte is non-negative, then it is the requested size of +** the mapping to create. Otherwise, if nByte is less than zero, then the +** requested size is the size of the file on disk. The actual size of the +** created mapping is either the requested size or the value configured +** using SQLITE_FCNTL_MMAP_LIMIT, whichever is smaller. +** +** SQLITE_OK is returned if no error occurs (even if the mapping is not +** recreated as a result of outstanding references) or an SQLite error +** code otherwise. +*/ +static int unixMapfile(unixFile *pFd, i64 nByte){ + i64 nMap = nByte; + int rc; + + assert( nMap>=0 || pFd->nFetchOut==0 ); + if( pFd->nFetchOut>0 ) return SQLITE_OK; + + if( nMap<0 ){ + struct stat statbuf; /* Low-level file information */ + rc = osFstat(pFd->h, &statbuf); + if( rc!=SQLITE_OK ){ + return SQLITE_IOERR_FSTAT; + } + nMap = statbuf.st_size; + } + if( nMap>pFd->mmapSizeMax ){ + nMap = pFd->mmapSizeMax; + } + + if( nMap!=pFd->mmapSize ){ + if( nMap>0 ){ + unixRemapfile(pFd, nMap); + }else{ + unixUnmapfile(pFd); + } + } + + return SQLITE_OK; +} +#endif /* SQLITE_MAX_MMAP_SIZE>0 */ + +/* +** If possible, return a pointer to a mapping of file fd starting at offset +** iOff. The mapping must be valid for at least nAmt bytes. +** +** If such a pointer can be obtained, store it in *pp and return SQLITE_OK. +** Or, if one cannot but no error occurs, set *pp to 0 and return SQLITE_OK. +** Finally, if an error does occur, return an SQLite error code. The final +** value of *pp is undefined in this case. +** +** If this function does return a pointer, the caller must eventually +** release the reference by calling unixUnfetch(). +*/ +static int unixFetch(sqlite3_file *fd, i64 iOff, int nAmt, void **pp){ +#if SQLITE_MAX_MMAP_SIZE>0 + unixFile *pFd = (unixFile *)fd; /* The underlying database file */ +#endif + *pp = 0; + +#if SQLITE_MAX_MMAP_SIZE>0 + if( pFd->mmapSizeMax>0 ){ + if( pFd->pMapRegion==0 ){ + int rc = unixMapfile(pFd, -1); + if( rc!=SQLITE_OK ) return rc; + } + if( pFd->mmapSize >= iOff+nAmt ){ + *pp = &((u8 *)pFd->pMapRegion)[iOff]; + pFd->nFetchOut++; + } + } +#endif + return SQLITE_OK; +} + +/* +** If the third argument is non-NULL, then this function releases a +** reference obtained by an earlier call to unixFetch(). The second +** argument passed to this function must be the same as the corresponding +** argument that was passed to the unixFetch() invocation. +** +** Or, if the third argument is NULL, then this function is being called +** to inform the VFS layer that, according to POSIX, any existing mapping +** may now be invalid and should be unmapped. +*/ +static int unixUnfetch(sqlite3_file *fd, i64 iOff, void *p){ +#if SQLITE_MAX_MMAP_SIZE>0 + unixFile *pFd = (unixFile *)fd; /* The underlying database file */ + UNUSED_PARAMETER(iOff); + + /* If p==0 (unmap the entire file) then there must be no outstanding + ** xFetch references. Or, if p!=0 (meaning it is an xFetch reference), + ** then there must be at least one outstanding. */ + assert( (p==0)==(pFd->nFetchOut==0) ); + + /* If p!=0, it must match the iOff value. */ + assert( p==0 || p==&((u8 *)pFd->pMapRegion)[iOff] ); + + if( p ){ + pFd->nFetchOut--; + }else{ + unixUnmapfile(pFd); + } + + assert( pFd->nFetchOut>=0 ); +#else + UNUSED_PARAMETER(fd); + UNUSED_PARAMETER(p); + UNUSED_PARAMETER(iOff); +#endif + return SQLITE_OK; +} + +/* +** Here ends the implementation of all sqlite3_file methods. +** +********************** End sqlite3_file Methods ******************************* +******************************************************************************/ + +/* +** This division contains definitions of sqlite3_io_methods objects that +** implement various file locking strategies. It also contains definitions +** of "finder" functions. A finder-function is used to locate the appropriate +** sqlite3_io_methods object for a particular database file. The pAppData +** field of the sqlite3_vfs VFS objects are initialized to be pointers to +** the correct finder-function for that VFS. +** +** Most finder functions return a pointer to a fixed sqlite3_io_methods +** object. The only interesting finder-function is autolockIoFinder, which +** looks at the filesystem type and tries to guess the best locking +** strategy from that. +** +** For finder-funtion F, two objects are created: +** +** (1) The real finder-function named "FImpt()". +** +** (2) A constant pointer to this function named just "F". +** +** +** A pointer to the F pointer is used as the pAppData value for VFS +** objects. We have to do this instead of letting pAppData point +** directly at the finder-function since C90 rules prevent a void* +** from be cast into a function pointer. +** +** +** Each instance of this macro generates two objects: +** +** * A constant sqlite3_io_methods object call METHOD that has locking +** methods CLOSE, LOCK, UNLOCK, CKRESLOCK. +** +** * An I/O method finder function called FINDER that returns a pointer +** to the METHOD object in the previous bullet. +*/ +#define IOMETHODS(FINDER, METHOD, VERSION, CLOSE, LOCK, UNLOCK, CKLOCK) \ +static const sqlite3_io_methods METHOD = { \ + VERSION, /* iVersion */ \ + CLOSE, /* xClose */ \ + unixRead, /* xRead */ \ + unixWrite, /* xWrite */ \ + unixTruncate, /* xTruncate */ \ + unixSync, /* xSync */ \ + unixFileSize, /* xFileSize */ \ + LOCK, /* xLock */ \ + UNLOCK, /* xUnlock */ \ + CKLOCK, /* xCheckReservedLock */ \ + unixFileControl, /* xFileControl */ \ + unixSectorSize, /* xSectorSize */ \ + unixDeviceCharacteristics, /* xDeviceCapabilities */ \ + unixShmMap, /* xShmMap */ \ + unixShmLock, /* xShmLock */ \ + unixShmBarrier, /* xShmBarrier */ \ + unixShmUnmap, /* xShmUnmap */ \ + unixFetch, /* xFetch */ \ + unixUnfetch, /* xUnfetch */ \ +}; \ +static const sqlite3_io_methods *FINDER##Impl(const char *z, unixFile *p){ \ + UNUSED_PARAMETER(z); UNUSED_PARAMETER(p); \ + return &METHOD; \ +} \ +static const sqlite3_io_methods *(*const FINDER)(const char*,unixFile *p) \ + = FINDER##Impl; + +/* +** Here are all of the sqlite3_io_methods objects for each of the +** locking strategies. Functions that return pointers to these methods +** are also created. +*/ +IOMETHODS( + posixIoFinder, /* Finder function name */ + posixIoMethods, /* sqlite3_io_methods object name */ + 3, /* shared memory and mmap are enabled */ + unixClose, /* xClose method */ + unixLock, /* xLock method */ + unixUnlock, /* xUnlock method */ + unixCheckReservedLock /* xCheckReservedLock method */ +) +IOMETHODS( + nolockIoFinder, /* Finder function name */ + nolockIoMethods, /* sqlite3_io_methods object name */ + 1, /* shared memory is disabled */ + nolockClose, /* xClose method */ + nolockLock, /* xLock method */ + nolockUnlock, /* xUnlock method */ + nolockCheckReservedLock /* xCheckReservedLock method */ +) +IOMETHODS( + dotlockIoFinder, /* Finder function name */ + dotlockIoMethods, /* sqlite3_io_methods object name */ + 1, /* shared memory is disabled */ + dotlockClose, /* xClose method */ + dotlockLock, /* xLock method */ + dotlockUnlock, /* xUnlock method */ + dotlockCheckReservedLock /* xCheckReservedLock method */ +) + +#if SQLITE_ENABLE_LOCKING_STYLE && !OS_VXWORKS +IOMETHODS( + flockIoFinder, /* Finder function name */ + flockIoMethods, /* sqlite3_io_methods object name */ + 1, /* shared memory is disabled */ + flockClose, /* xClose method */ + flockLock, /* xLock method */ + flockUnlock, /* xUnlock method */ + flockCheckReservedLock /* xCheckReservedLock method */ +) +#endif + +#if OS_VXWORKS +IOMETHODS( + semIoFinder, /* Finder function name */ + semIoMethods, /* sqlite3_io_methods object name */ + 1, /* shared memory is disabled */ + semClose, /* xClose method */ + semLock, /* xLock method */ + semUnlock, /* xUnlock method */ + semCheckReservedLock /* xCheckReservedLock method */ +) +#endif + +#if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE +IOMETHODS( + afpIoFinder, /* Finder function name */ + afpIoMethods, /* sqlite3_io_methods object name */ + 1, /* shared memory is disabled */ + afpClose, /* xClose method */ + afpLock, /* xLock method */ + afpUnlock, /* xUnlock method */ + afpCheckReservedLock /* xCheckReservedLock method */ +) +#endif + +/* +** The proxy locking method is a "super-method" in the sense that it +** opens secondary file descriptors for the conch and lock files and +** it uses proxy, dot-file, AFP, and flock() locking methods on those +** secondary files. For this reason, the division that implements +** proxy locking is located much further down in the file. But we need +** to go ahead and define the sqlite3_io_methods and finder function +** for proxy locking here. So we forward declare the I/O methods. +*/ +#if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE +static int proxyClose(sqlite3_file*); +static int proxyLock(sqlite3_file*, int); +static int proxyUnlock(sqlite3_file*, int); +static int proxyCheckReservedLock(sqlite3_file*, int*); +IOMETHODS( + proxyIoFinder, /* Finder function name */ + proxyIoMethods, /* sqlite3_io_methods object name */ + 1, /* shared memory is disabled */ + proxyClose, /* xClose method */ + proxyLock, /* xLock method */ + proxyUnlock, /* xUnlock method */ + proxyCheckReservedLock /* xCheckReservedLock method */ +) +#endif + +/* nfs lockd on OSX 10.3+ doesn't clear write locks when a read lock is set */ +#if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE +IOMETHODS( + nfsIoFinder, /* Finder function name */ + nfsIoMethods, /* sqlite3_io_methods object name */ + 1, /* shared memory is disabled */ + unixClose, /* xClose method */ + unixLock, /* xLock method */ + nfsUnlock, /* xUnlock method */ + unixCheckReservedLock /* xCheckReservedLock method */ +) +#endif + +#if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE +/* +** This "finder" function attempts to determine the best locking strategy +** for the database file "filePath". It then returns the sqlite3_io_methods +** object that implements that strategy. +** +** This is for MacOSX only. +*/ +static const sqlite3_io_methods *autolockIoFinderImpl( + const char *filePath, /* name of the database file */ + unixFile *pNew /* open file object for the database file */ +){ + static const struct Mapping { + const char *zFilesystem; /* Filesystem type name */ + const sqlite3_io_methods *pMethods; /* Appropriate locking method */ + } aMap[] = { + { "hfs", &posixIoMethods }, + { "ufs", &posixIoMethods }, + { "afpfs", &afpIoMethods }, + { "smbfs", &afpIoMethods }, + { "webdav", &nolockIoMethods }, + { 0, 0 } + }; + int i; + struct statfs fsInfo; + struct flock lockInfo; + + if( !filePath ){ + /* If filePath==NULL that means we are dealing with a transient file + ** that does not need to be locked. */ + return &nolockIoMethods; + } + if( statfs(filePath, &fsInfo) != -1 ){ + if( fsInfo.f_flags & MNT_RDONLY ){ + return &nolockIoMethods; + } + for(i=0; aMap[i].zFilesystem; i++){ + if( strcmp(fsInfo.f_fstypename, aMap[i].zFilesystem)==0 ){ + return aMap[i].pMethods; + } + } + } + + /* Default case. Handles, amongst others, "nfs". + ** Test byte-range lock using fcntl(). If the call succeeds, + ** assume that the file-system supports POSIX style locks. + */ + lockInfo.l_len = 1; + lockInfo.l_start = 0; + lockInfo.l_whence = SEEK_SET; + lockInfo.l_type = F_RDLCK; + if( osFcntl(pNew->h, F_GETLK, &lockInfo)!=-1 ) { + if( strcmp(fsInfo.f_fstypename, "nfs")==0 ){ + return &nfsIoMethods; + } else { + return &posixIoMethods; + } + }else{ + return &dotlockIoMethods; + } +} +static const sqlite3_io_methods + *(*const autolockIoFinder)(const char*,unixFile*) = autolockIoFinderImpl; + +#endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ + +#if OS_VXWORKS && SQLITE_ENABLE_LOCKING_STYLE +/* +** This "finder" function attempts to determine the best locking strategy +** for the database file "filePath". It then returns the sqlite3_io_methods +** object that implements that strategy. +** +** This is for VXWorks only. +*/ +static const sqlite3_io_methods *autolockIoFinderImpl( + const char *filePath, /* name of the database file */ + unixFile *pNew /* the open file object */ +){ + struct flock lockInfo; + + if( !filePath ){ + /* If filePath==NULL that means we are dealing with a transient file + ** that does not need to be locked. */ + return &nolockIoMethods; + } + + /* Test if fcntl() is supported and use POSIX style locks. + ** Otherwise fall back to the named semaphore method. + */ + lockInfo.l_len = 1; + lockInfo.l_start = 0; + lockInfo.l_whence = SEEK_SET; + lockInfo.l_type = F_RDLCK; + if( osFcntl(pNew->h, F_GETLK, &lockInfo)!=-1 ) { + return &posixIoMethods; + }else{ + return &semIoMethods; + } +} +static const sqlite3_io_methods + *(*const autolockIoFinder)(const char*,unixFile*) = autolockIoFinderImpl; + +#endif /* OS_VXWORKS && SQLITE_ENABLE_LOCKING_STYLE */ + +/* +** An abstract type for a pointer to a IO method finder function: +*/ +typedef const sqlite3_io_methods *(*finder_type)(const char*,unixFile*); + + +/**************************************************************************** +**************************** sqlite3_vfs methods **************************** +** +** This division contains the implementation of methods on the +** sqlite3_vfs object. +*/ + +/* +** Initialize the contents of the unixFile structure pointed to by pId. +*/ +static int fillInUnixFile( + sqlite3_vfs *pVfs, /* Pointer to vfs object */ + int h, /* Open file descriptor of file being opened */ + sqlite3_file *pId, /* Write to the unixFile structure here */ + const char *zFilename, /* Name of the file being opened */ + int ctrlFlags /* Zero or more UNIXFILE_* values */ +){ + const sqlite3_io_methods *pLockingStyle; + unixFile *pNew = (unixFile *)pId; + int rc = SQLITE_OK; + + assert( pNew->pInode==NULL ); + + /* Usually the path zFilename should not be a relative pathname. The + ** exception is when opening the proxy "conch" file in builds that + ** include the special Apple locking styles. + */ +#if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE + assert( zFilename==0 || zFilename[0]=='/' + || pVfs->pAppData==(void*)&autolockIoFinder ); +#else + assert( zFilename==0 || zFilename[0]=='/' ); +#endif + + /* No locking occurs in temporary files */ + assert( zFilename!=0 || (ctrlFlags & UNIXFILE_NOLOCK)!=0 ); + + OSTRACE(("OPEN %-3d %s\n", h, zFilename)); + pNew->h = h; + pNew->pVfs = pVfs; + pNew->zPath = zFilename; + pNew->ctrlFlags = (u8)ctrlFlags; +#if SQLITE_MAX_MMAP_SIZE>0 + pNew->mmapSizeMax = sqlite3GlobalConfig.szMmap; +#endif + if( sqlite3_uri_boolean(((ctrlFlags & UNIXFILE_URI) ? zFilename : 0), + "psow", SQLITE_POWERSAFE_OVERWRITE) ){ + pNew->ctrlFlags |= UNIXFILE_PSOW; + } + if( strcmp(pVfs->zName,"unix-excl")==0 ){ + pNew->ctrlFlags |= UNIXFILE_EXCL; + } + +#if OS_VXWORKS + pNew->pId = vxworksFindFileId(zFilename); + if( pNew->pId==0 ){ + ctrlFlags |= UNIXFILE_NOLOCK; + rc = SQLITE_NOMEM; + } +#endif + + if( ctrlFlags & UNIXFILE_NOLOCK ){ + pLockingStyle = &nolockIoMethods; + }else{ + pLockingStyle = (**(finder_type*)pVfs->pAppData)(zFilename, pNew); +#if SQLITE_ENABLE_LOCKING_STYLE + /* Cache zFilename in the locking context (AFP and dotlock override) for + ** proxyLock activation is possible (remote proxy is based on db name) + ** zFilename remains valid until file is closed, to support */ + pNew->lockingContext = (void*)zFilename; +#endif + } + + if( pLockingStyle == &posixIoMethods +#if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE + || pLockingStyle == &nfsIoMethods +#endif + ){ + unixEnterMutex(); + rc = findInodeInfo(pNew, &pNew->pInode); + if( rc!=SQLITE_OK ){ + /* If an error occurred in findInodeInfo(), close the file descriptor + ** immediately, before releasing the mutex. findInodeInfo() may fail + ** in two scenarios: + ** + ** (a) A call to fstat() failed. + ** (b) A malloc failed. + ** + ** Scenario (b) may only occur if the process is holding no other + ** file descriptors open on the same file. If there were other file + ** descriptors on this file, then no malloc would be required by + ** findInodeInfo(). If this is the case, it is quite safe to close + ** handle h - as it is guaranteed that no posix locks will be released + ** by doing so. + ** + ** If scenario (a) caused the error then things are not so safe. The + ** implicit assumption here is that if fstat() fails, things are in + ** such bad shape that dropping a lock or two doesn't matter much. + */ + robust_close(pNew, h, __LINE__); + h = -1; + } + unixLeaveMutex(); + } + +#if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) + else if( pLockingStyle == &afpIoMethods ){ + /* AFP locking uses the file path so it needs to be included in + ** the afpLockingContext. + */ + afpLockingContext *pCtx; + pNew->lockingContext = pCtx = sqlite3_malloc( sizeof(*pCtx) ); + if( pCtx==0 ){ + rc = SQLITE_NOMEM; + }else{ + /* NB: zFilename exists and remains valid until the file is closed + ** according to requirement F11141. So we do not need to make a + ** copy of the filename. */ + pCtx->dbPath = zFilename; + pCtx->reserved = 0; + srandomdev(); + unixEnterMutex(); + rc = findInodeInfo(pNew, &pNew->pInode); + if( rc!=SQLITE_OK ){ + sqlite3_free(pNew->lockingContext); + robust_close(pNew, h, __LINE__); + h = -1; + } + unixLeaveMutex(); + } + } +#endif + + else if( pLockingStyle == &dotlockIoMethods ){ + /* Dotfile locking uses the file path so it needs to be included in + ** the dotlockLockingContext + */ + char *zLockFile; + int nFilename; + assert( zFilename!=0 ); + nFilename = (int)strlen(zFilename) + 6; + zLockFile = (char *)sqlite3_malloc(nFilename); + if( zLockFile==0 ){ + rc = SQLITE_NOMEM; + }else{ + sqlite3_snprintf(nFilename, zLockFile, "%s" DOTLOCK_SUFFIX, zFilename); + } + pNew->lockingContext = zLockFile; + } + +#if OS_VXWORKS + else if( pLockingStyle == &semIoMethods ){ + /* Named semaphore locking uses the file path so it needs to be + ** included in the semLockingContext + */ + unixEnterMutex(); + rc = findInodeInfo(pNew, &pNew->pInode); + if( (rc==SQLITE_OK) && (pNew->pInode->pSem==NULL) ){ + char *zSemName = pNew->pInode->aSemName; + int n; + sqlite3_snprintf(MAX_PATHNAME, zSemName, "/%s.sem", + pNew->pId->zCanonicalName); + for( n=1; zSemName[n]; n++ ) + if( zSemName[n]=='/' ) zSemName[n] = '_'; + pNew->pInode->pSem = sem_open(zSemName, O_CREAT, 0666, 1); + if( pNew->pInode->pSem == SEM_FAILED ){ + rc = SQLITE_NOMEM; + pNew->pInode->aSemName[0] = '\0'; + } + } + unixLeaveMutex(); + } +#endif + + pNew->lastErrno = 0; +#if OS_VXWORKS + if( rc!=SQLITE_OK ){ + if( h>=0 ) robust_close(pNew, h, __LINE__); + h = -1; + osUnlink(zFilename); + pNew->ctrlFlags |= UNIXFILE_DELETE; + } +#endif + if( rc!=SQLITE_OK ){ + if( h>=0 ) robust_close(pNew, h, __LINE__); + }else{ + pNew->pMethod = pLockingStyle; + OpenCounter(+1); + verifyDbFile(pNew); + } + return rc; +} + +/* +** Return the name of a directory in which to put temporary files. +** If no suitable temporary file directory can be found, return NULL. +*/ +static const char *unixTempFileDir(void){ + static const char *azDirs[] = { + 0, + 0, + 0, + "/var/tmp", + "/usr/tmp", + "/tmp", + 0 /* List terminator */ + }; + unsigned int i; + struct stat buf; + const char *zDir = 0; + + azDirs[0] = sqlite3_temp_directory; + if( !azDirs[1] ) azDirs[1] = getenv("SQLITE_TMPDIR"); + if( !azDirs[2] ) azDirs[2] = getenv("TMPDIR"); + for(i=0; imxPathname bytes. +*/ +static int unixGetTempname(int nBuf, char *zBuf){ + static const unsigned char zChars[] = + "abcdefghijklmnopqrstuvwxyz" + "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + "0123456789"; + unsigned int i, j; + const char *zDir; + + /* It's odd to simulate an io-error here, but really this is just + ** using the io-error infrastructure to test that SQLite handles this + ** function failing. + */ + SimulateIOError( return SQLITE_IOERR ); + + zDir = unixTempFileDir(); + if( zDir==0 ) zDir = "."; + + /* Check that the output buffer is large enough for the temporary file + ** name. If it is not, return SQLITE_ERROR. + */ + if( (strlen(zDir) + strlen(SQLITE_TEMP_FILE_PREFIX) + 18) >= (size_t)nBuf ){ + return SQLITE_ERROR; + } + + do{ + sqlite3_snprintf(nBuf-18, zBuf, "%s/"SQLITE_TEMP_FILE_PREFIX, zDir); + j = (int)strlen(zBuf); + sqlite3_randomness(15, &zBuf[j]); + for(i=0; i<15; i++, j++){ + zBuf[j] = (char)zChars[ ((unsigned char)zBuf[j])%(sizeof(zChars)-1) ]; + } + zBuf[j] = 0; + zBuf[j+1] = 0; + }while( osAccess(zBuf,0)==0 ); + return SQLITE_OK; +} + +#if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) +/* +** Routine to transform a unixFile into a proxy-locking unixFile. +** Implementation in the proxy-lock division, but used by unixOpen() +** if SQLITE_PREFER_PROXY_LOCKING is defined. +*/ +static int proxyTransformUnixFile(unixFile*, const char*); +#endif + +/* +** Search for an unused file descriptor that was opened on the database +** file (not a journal or master-journal file) identified by pathname +** zPath with SQLITE_OPEN_XXX flags matching those passed as the second +** argument to this function. +** +** Such a file descriptor may exist if a database connection was closed +** but the associated file descriptor could not be closed because some +** other file descriptor open on the same file is holding a file-lock. +** Refer to comments in the unixClose() function and the lengthy comment +** describing "Posix Advisory Locking" at the start of this file for +** further details. Also, ticket #4018. +** +** If a suitable file descriptor is found, then it is returned. If no +** such file descriptor is located, -1 is returned. +*/ +static UnixUnusedFd *findReusableFd(const char *zPath, int flags){ + UnixUnusedFd *pUnused = 0; + + /* Do not search for an unused file descriptor on vxworks. Not because + ** vxworks would not benefit from the change (it might, we're not sure), + ** but because no way to test it is currently available. It is better + ** not to risk breaking vxworks support for the sake of such an obscure + ** feature. */ +#if !OS_VXWORKS + struct stat sStat; /* Results of stat() call */ + + /* A stat() call may fail for various reasons. If this happens, it is + ** almost certain that an open() call on the same path will also fail. + ** For this reason, if an error occurs in the stat() call here, it is + ** ignored and -1 is returned. The caller will try to open a new file + ** descriptor on the same path, fail, and return an error to SQLite. + ** + ** Even if a subsequent open() call does succeed, the consequences of + ** not searching for a resusable file descriptor are not dire. */ + if( 0==osStat(zPath, &sStat) ){ + unixInodeInfo *pInode; + + unixEnterMutex(); + pInode = inodeList; + while( pInode && (pInode->fileId.dev!=sStat.st_dev + || pInode->fileId.ino!=sStat.st_ino) ){ + pInode = pInode->pNext; + } + if( pInode ){ + UnixUnusedFd **pp; + for(pp=&pInode->pUnused; *pp && (*pp)->flags!=flags; pp=&((*pp)->pNext)); + pUnused = *pp; + if( pUnused ){ + *pp = pUnused->pNext; + } + } + unixLeaveMutex(); + } +#endif /* if !OS_VXWORKS */ + return pUnused; +} + +/* +** This function is called by unixOpen() to determine the unix permissions +** to create new files with. If no error occurs, then SQLITE_OK is returned +** and a value suitable for passing as the third argument to open(2) is +** written to *pMode. If an IO error occurs, an SQLite error code is +** returned and the value of *pMode is not modified. +** +** In most cases cases, this routine sets *pMode to 0, which will become +** an indication to robust_open() to create the file using +** SQLITE_DEFAULT_FILE_PERMISSIONS adjusted by the umask. +** But if the file being opened is a WAL or regular journal file, then +** this function queries the file-system for the permissions on the +** corresponding database file and sets *pMode to this value. Whenever +** possible, WAL and journal files are created using the same permissions +** as the associated database file. +** +** If the SQLITE_ENABLE_8_3_NAMES option is enabled, then the +** original filename is unavailable. But 8_3_NAMES is only used for +** FAT filesystems and permissions do not matter there, so just use +** the default permissions. +*/ +static int findCreateFileMode( + const char *zPath, /* Path of file (possibly) being created */ + int flags, /* Flags passed as 4th argument to xOpen() */ + mode_t *pMode, /* OUT: Permissions to open file with */ + uid_t *pUid, /* OUT: uid to set on the file */ + gid_t *pGid /* OUT: gid to set on the file */ +){ + int rc = SQLITE_OK; /* Return Code */ + *pMode = 0; + *pUid = 0; + *pGid = 0; + if( flags & (SQLITE_OPEN_WAL|SQLITE_OPEN_MAIN_JOURNAL) ){ + char zDb[MAX_PATHNAME+1]; /* Database file path */ + int nDb; /* Number of valid bytes in zDb */ + struct stat sStat; /* Output of stat() on database file */ + + /* zPath is a path to a WAL or journal file. The following block derives + ** the path to the associated database file from zPath. This block handles + ** the following naming conventions: + ** + ** "-journal" + ** "-wal" + ** "-journalNN" + ** "-walNN" + ** + ** where NN is a decimal number. The NN naming schemes are + ** used by the test_multiplex.c module. + */ + nDb = sqlite3Strlen30(zPath) - 1; +#ifdef SQLITE_ENABLE_8_3_NAMES + while( nDb>0 && sqlite3Isalnum(zPath[nDb]) ) nDb--; + if( nDb==0 || zPath[nDb]!='-' ) return SQLITE_OK; +#else + while( zPath[nDb]!='-' ){ + assert( nDb>0 ); + assert( zPath[nDb]!='\n' ); + nDb--; + } +#endif + memcpy(zDb, zPath, nDb); + zDb[nDb] = '\0'; + + if( 0==osStat(zDb, &sStat) ){ + *pMode = sStat.st_mode & 0777; + *pUid = sStat.st_uid; + *pGid = sStat.st_gid; + }else{ + rc = SQLITE_IOERR_FSTAT; + } + }else if( flags & SQLITE_OPEN_DELETEONCLOSE ){ + *pMode = 0600; + } + return rc; +} + +/* +** Open the file zPath. +** +** Previously, the SQLite OS layer used three functions in place of this +** one: +** +** sqlite3OsOpenReadWrite(); +** sqlite3OsOpenReadOnly(); +** sqlite3OsOpenExclusive(); +** +** These calls correspond to the following combinations of flags: +** +** ReadWrite() -> (READWRITE | CREATE) +** ReadOnly() -> (READONLY) +** OpenExclusive() -> (READWRITE | CREATE | EXCLUSIVE) +** +** The old OpenExclusive() accepted a boolean argument - "delFlag". If +** true, the file was configured to be automatically deleted when the +** file handle closed. To achieve the same effect using this new +** interface, add the DELETEONCLOSE flag to those specified above for +** OpenExclusive(). +*/ +static int unixOpen( + sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */ + const char *zPath, /* Pathname of file to be opened */ + sqlite3_file *pFile, /* The file descriptor to be filled in */ + int flags, /* Input flags to control the opening */ + int *pOutFlags /* Output flags returned to SQLite core */ +){ + unixFile *p = (unixFile *)pFile; + int fd = -1; /* File descriptor returned by open() */ + int openFlags = 0; /* Flags to pass to open() */ + int eType = flags&0xFFFFFF00; /* Type of file to open */ + int noLock; /* True to omit locking primitives */ + int rc = SQLITE_OK; /* Function Return Code */ + int ctrlFlags = 0; /* UNIXFILE_* flags */ + + int isExclusive = (flags & SQLITE_OPEN_EXCLUSIVE); + int isDelete = (flags & SQLITE_OPEN_DELETEONCLOSE); + int isCreate = (flags & SQLITE_OPEN_CREATE); + int isReadonly = (flags & SQLITE_OPEN_READONLY); + int isReadWrite = (flags & SQLITE_OPEN_READWRITE); +#if SQLITE_ENABLE_LOCKING_STYLE + int isAutoProxy = (flags & SQLITE_OPEN_AUTOPROXY); +#endif +#if defined(__APPLE__) || SQLITE_ENABLE_LOCKING_STYLE + struct statfs fsInfo; +#endif + + /* If creating a master or main-file journal, this function will open + ** a file-descriptor on the directory too. The first time unixSync() + ** is called the directory file descriptor will be fsync()ed and close()d. + */ + int syncDir = (isCreate && ( + eType==SQLITE_OPEN_MASTER_JOURNAL + || eType==SQLITE_OPEN_MAIN_JOURNAL + || eType==SQLITE_OPEN_WAL + )); + + /* If argument zPath is a NULL pointer, this function is required to open + ** a temporary file. Use this buffer to store the file name in. + */ + char zTmpname[MAX_PATHNAME+2]; + const char *zName = zPath; + + /* Check the following statements are true: + ** + ** (a) Exactly one of the READWRITE and READONLY flags must be set, and + ** (b) if CREATE is set, then READWRITE must also be set, and + ** (c) if EXCLUSIVE is set, then CREATE must also be set. + ** (d) if DELETEONCLOSE is set, then CREATE must also be set. + */ + assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly)); + assert(isCreate==0 || isReadWrite); + assert(isExclusive==0 || isCreate); + assert(isDelete==0 || isCreate); + + /* The main DB, main journal, WAL file and master journal are never + ** automatically deleted. Nor are they ever temporary files. */ + assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); + assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); + assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MASTER_JOURNAL ); + assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); + + /* Assert that the upper layer has set one of the "file-type" flags. */ + assert( eType==SQLITE_OPEN_MAIN_DB || eType==SQLITE_OPEN_TEMP_DB + || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL + || eType==SQLITE_OPEN_SUBJOURNAL || eType==SQLITE_OPEN_MASTER_JOURNAL + || eType==SQLITE_OPEN_TRANSIENT_DB || eType==SQLITE_OPEN_WAL + ); + + /* Detect a pid change and reset the PRNG. There is a race condition + ** here such that two or more threads all trying to open databases at + ** the same instant might all reset the PRNG. But multiple resets + ** are harmless. + */ + if( randomnessPid!=getpid() ){ + randomnessPid = getpid(); + sqlite3_randomness(0,0); + } + + memset(p, 0, sizeof(unixFile)); + + if( eType==SQLITE_OPEN_MAIN_DB ){ + UnixUnusedFd *pUnused; + pUnused = findReusableFd(zName, flags); + if( pUnused ){ + fd = pUnused->fd; + }else{ + pUnused = sqlite3_malloc(sizeof(*pUnused)); + if( !pUnused ){ + return SQLITE_NOMEM; + } + } + p->pUnused = pUnused; + + /* Database filenames are double-zero terminated if they are not + ** URIs with parameters. Hence, they can always be passed into + ** sqlite3_uri_parameter(). */ + assert( (flags & SQLITE_OPEN_URI) || zName[strlen(zName)+1]==0 ); + + }else if( !zName ){ + /* If zName is NULL, the upper layer is requesting a temp file. */ + assert(isDelete && !syncDir); + rc = unixGetTempname(MAX_PATHNAME+2, zTmpname); + if( rc!=SQLITE_OK ){ + return rc; + } + zName = zTmpname; + + /* Generated temporary filenames are always double-zero terminated + ** for use by sqlite3_uri_parameter(). */ + assert( zName[strlen(zName)+1]==0 ); + } + + /* Determine the value of the flags parameter passed to POSIX function + ** open(). These must be calculated even if open() is not called, as + ** they may be stored as part of the file handle and used by the + ** 'conch file' locking functions later on. */ + if( isReadonly ) openFlags |= O_RDONLY; + if( isReadWrite ) openFlags |= O_RDWR; + if( isCreate ) openFlags |= O_CREAT; + if( isExclusive ) openFlags |= (O_EXCL|O_NOFOLLOW); + openFlags |= (O_LARGEFILE|O_BINARY); + + if( fd<0 ){ + mode_t openMode; /* Permissions to create file with */ + uid_t uid; /* Userid for the file */ + gid_t gid; /* Groupid for the file */ + rc = findCreateFileMode(zName, flags, &openMode, &uid, &gid); + if( rc!=SQLITE_OK ){ + assert( !p->pUnused ); + assert( eType==SQLITE_OPEN_WAL || eType==SQLITE_OPEN_MAIN_JOURNAL ); + return rc; + } + fd = robust_open(zName, openFlags, openMode); + OSTRACE(("OPENX %-3d %s 0%o\n", fd, zName, openFlags)); + if( fd<0 && errno!=EISDIR && isReadWrite && !isExclusive ){ + /* Failed to open the file for read/write access. Try read-only. */ + flags &= ~(SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE); + openFlags &= ~(O_RDWR|O_CREAT); + flags |= SQLITE_OPEN_READONLY; + openFlags |= O_RDONLY; + isReadonly = 1; + fd = robust_open(zName, openFlags, openMode); + } + if( fd<0 ){ + rc = unixLogError(SQLITE_CANTOPEN_BKPT, "open", zName); + goto open_finished; + } + + /* If this process is running as root and if creating a new rollback + ** journal or WAL file, set the ownership of the journal or WAL to be + ** the same as the original database. + */ + if( flags & (SQLITE_OPEN_WAL|SQLITE_OPEN_MAIN_JOURNAL) ){ + osFchown(fd, uid, gid); + } + } + assert( fd>=0 ); + if( pOutFlags ){ + *pOutFlags = flags; + } + + if( p->pUnused ){ + p->pUnused->fd = fd; + p->pUnused->flags = flags; + } + + if( isDelete ){ +#if OS_VXWORKS + zPath = zName; +#else + osUnlink(zName); +#endif + } +#if SQLITE_ENABLE_LOCKING_STYLE + else{ + p->openFlags = openFlags; + } +#endif + + noLock = eType!=SQLITE_OPEN_MAIN_DB; + + +#if defined(__APPLE__) || SQLITE_ENABLE_LOCKING_STYLE + if( fstatfs(fd, &fsInfo) == -1 ){ + ((unixFile*)pFile)->lastErrno = errno; + robust_close(p, fd, __LINE__); + return SQLITE_IOERR_ACCESS; + } + if (0 == strncmp("msdos", fsInfo.f_fstypename, 5)) { + ((unixFile*)pFile)->fsFlags |= SQLITE_FSFLAGS_IS_MSDOS; + } +#endif + + /* Set up appropriate ctrlFlags */ + if( isDelete ) ctrlFlags |= UNIXFILE_DELETE; + if( isReadonly ) ctrlFlags |= UNIXFILE_RDONLY; + if( noLock ) ctrlFlags |= UNIXFILE_NOLOCK; + if( syncDir ) ctrlFlags |= UNIXFILE_DIRSYNC; + if( flags & SQLITE_OPEN_URI ) ctrlFlags |= UNIXFILE_URI; + +#if SQLITE_ENABLE_LOCKING_STYLE +#if SQLITE_PREFER_PROXY_LOCKING + isAutoProxy = 1; +#endif + if( isAutoProxy && (zPath!=NULL) && (!noLock) && pVfs->xOpen ){ + char *envforce = getenv("SQLITE_FORCE_PROXY_LOCKING"); + int useProxy = 0; + + /* SQLITE_FORCE_PROXY_LOCKING==1 means force always use proxy, 0 means + ** never use proxy, NULL means use proxy for non-local files only. */ + if( envforce!=NULL ){ + useProxy = atoi(envforce)>0; + }else{ + if( statfs(zPath, &fsInfo) == -1 ){ + /* In theory, the close(fd) call is sub-optimal. If the file opened + ** with fd is a database file, and there are other connections open + ** on that file that are currently holding advisory locks on it, + ** then the call to close() will cancel those locks. In practice, + ** we're assuming that statfs() doesn't fail very often. At least + ** not while other file descriptors opened by the same process on + ** the same file are working. */ + p->lastErrno = errno; + robust_close(p, fd, __LINE__); + rc = SQLITE_IOERR_ACCESS; + goto open_finished; + } + useProxy = !(fsInfo.f_flags&MNT_LOCAL); + } + if( useProxy ){ + rc = fillInUnixFile(pVfs, fd, pFile, zPath, ctrlFlags); + if( rc==SQLITE_OK ){ + rc = proxyTransformUnixFile((unixFile*)pFile, ":auto:"); + if( rc!=SQLITE_OK ){ + /* Use unixClose to clean up the resources added in fillInUnixFile + ** and clear all the structure's references. Specifically, + ** pFile->pMethods will be NULL so sqlite3OsClose will be a no-op + */ + unixClose(pFile); + return rc; + } + } + goto open_finished; + } + } +#endif + + rc = fillInUnixFile(pVfs, fd, pFile, zPath, ctrlFlags); + +open_finished: + if( rc!=SQLITE_OK ){ + sqlite3_free(p->pUnused); + } + return rc; +} + + +/* +** Delete the file at zPath. If the dirSync argument is true, fsync() +** the directory after deleting the file. +*/ +static int unixDelete( + sqlite3_vfs *NotUsed, /* VFS containing this as the xDelete method */ + const char *zPath, /* Name of file to be deleted */ + int dirSync /* If true, fsync() directory after deleting file */ +){ + int rc = SQLITE_OK; + UNUSED_PARAMETER(NotUsed); + SimulateIOError(return SQLITE_IOERR_DELETE); + if( osUnlink(zPath)==(-1) ){ + if( errno==ENOENT ){ + rc = SQLITE_IOERR_DELETE_NOENT; + }else{ + rc = unixLogError(SQLITE_IOERR_DELETE, "unlink", zPath); + } + return rc; + } +#ifndef SQLITE_DISABLE_DIRSYNC + if( (dirSync & 1)!=0 ){ + int fd; + rc = osOpenDirectory(zPath, &fd); + if( rc==SQLITE_OK ){ +#if OS_VXWORKS + if( fsync(fd)==-1 ) +#else + if( fsync(fd) ) +#endif + { + rc = unixLogError(SQLITE_IOERR_DIR_FSYNC, "fsync", zPath); + } + robust_close(0, fd, __LINE__); + }else if( rc==SQLITE_CANTOPEN ){ + rc = SQLITE_OK; + } + } +#endif + return rc; +} + +/* +** Test the existence of or access permissions of file zPath. The +** test performed depends on the value of flags: +** +** SQLITE_ACCESS_EXISTS: Return 1 if the file exists +** SQLITE_ACCESS_READWRITE: Return 1 if the file is read and writable. +** SQLITE_ACCESS_READONLY: Return 1 if the file is readable. +** +** Otherwise return 0. +*/ +static int unixAccess( + sqlite3_vfs *NotUsed, /* The VFS containing this xAccess method */ + const char *zPath, /* Path of the file to examine */ + int flags, /* What do we want to learn about the zPath file? */ + int *pResOut /* Write result boolean here */ +){ + int amode = 0; + UNUSED_PARAMETER(NotUsed); + SimulateIOError( return SQLITE_IOERR_ACCESS; ); + switch( flags ){ + case SQLITE_ACCESS_EXISTS: + amode = F_OK; + break; + case SQLITE_ACCESS_READWRITE: + amode = W_OK|R_OK; + break; + case SQLITE_ACCESS_READ: + amode = R_OK; + break; + + default: + assert(!"Invalid flags argument"); + } + *pResOut = (osAccess(zPath, amode)==0); + if( flags==SQLITE_ACCESS_EXISTS && *pResOut ){ + struct stat buf; + if( 0==osStat(zPath, &buf) && buf.st_size==0 ){ + *pResOut = 0; + } + } + return SQLITE_OK; +} + + +/* +** Turn a relative pathname into a full pathname. The relative path +** is stored as a nul-terminated string in the buffer pointed to by +** zPath. +** +** zOut points to a buffer of at least sqlite3_vfs.mxPathname bytes +** (in this case, MAX_PATHNAME bytes). The full-path is written to +** this buffer before returning. +*/ +static int unixFullPathname( + sqlite3_vfs *pVfs, /* Pointer to vfs object */ + const char *zPath, /* Possibly relative input path */ + int nOut, /* Size of output buffer in bytes */ + char *zOut /* Output buffer */ +){ + + /* It's odd to simulate an io-error here, but really this is just + ** using the io-error infrastructure to test that SQLite handles this + ** function failing. This function could fail if, for example, the + ** current working directory has been unlinked. + */ + SimulateIOError( return SQLITE_ERROR ); + + assert( pVfs->mxPathname==MAX_PATHNAME ); + UNUSED_PARAMETER(pVfs); + + zOut[nOut-1] = '\0'; + if( zPath[0]=='/' ){ + sqlite3_snprintf(nOut, zOut, "%s", zPath); + }else{ + int nCwd; + if( osGetcwd(zOut, nOut-1)==0 ){ + return unixLogError(SQLITE_CANTOPEN_BKPT, "getcwd", zPath); + } + nCwd = (int)strlen(zOut); + sqlite3_snprintf(nOut-nCwd, &zOut[nCwd], "/%s", zPath); + } + return SQLITE_OK; +} + + +#ifndef SQLITE_OMIT_LOAD_EXTENSION +/* +** Interfaces for opening a shared library, finding entry points +** within the shared library, and closing the shared library. +*/ +#include +static void *unixDlOpen(sqlite3_vfs *NotUsed, const char *zFilename){ + UNUSED_PARAMETER(NotUsed); + return dlopen(zFilename, RTLD_NOW | RTLD_GLOBAL); +} + +/* +** SQLite calls this function immediately after a call to unixDlSym() or +** unixDlOpen() fails (returns a null pointer). If a more detailed error +** message is available, it is written to zBufOut. If no error message +** is available, zBufOut is left unmodified and SQLite uses a default +** error message. +*/ +static void unixDlError(sqlite3_vfs *NotUsed, int nBuf, char *zBufOut){ + const char *zErr; + UNUSED_PARAMETER(NotUsed); + unixEnterMutex(); + zErr = dlerror(); + if( zErr ){ + sqlite3_snprintf(nBuf, zBufOut, "%s", zErr); + } + unixLeaveMutex(); +} +static void (*unixDlSym(sqlite3_vfs *NotUsed, void *p, const char*zSym))(void){ + /* + ** GCC with -pedantic-errors says that C90 does not allow a void* to be + ** cast into a pointer to a function. And yet the library dlsym() routine + ** returns a void* which is really a pointer to a function. So how do we + ** use dlsym() with -pedantic-errors? + ** + ** Variable x below is defined to be a pointer to a function taking + ** parameters void* and const char* and returning a pointer to a function. + ** We initialize x by assigning it a pointer to the dlsym() function. + ** (That assignment requires a cast.) Then we call the function that + ** x points to. + ** + ** This work-around is unlikely to work correctly on any system where + ** you really cannot cast a function pointer into void*. But then, on the + ** other hand, dlsym() will not work on such a system either, so we have + ** not really lost anything. + */ + void (*(*x)(void*,const char*))(void); + UNUSED_PARAMETER(NotUsed); + x = (void(*(*)(void*,const char*))(void))dlsym; + return (*x)(p, zSym); +} +static void unixDlClose(sqlite3_vfs *NotUsed, void *pHandle){ + UNUSED_PARAMETER(NotUsed); + dlclose(pHandle); +} +#else /* if SQLITE_OMIT_LOAD_EXTENSION is defined: */ + #define unixDlOpen 0 + #define unixDlError 0 + #define unixDlSym 0 + #define unixDlClose 0 +#endif + +/* +** Write nBuf bytes of random data to the supplied buffer zBuf. +*/ +static int unixRandomness(sqlite3_vfs *NotUsed, int nBuf, char *zBuf){ + UNUSED_PARAMETER(NotUsed); + assert((size_t)nBuf>=(sizeof(time_t)+sizeof(int))); + + /* We have to initialize zBuf to prevent valgrind from reporting + ** errors. The reports issued by valgrind are incorrect - we would + ** prefer that the randomness be increased by making use of the + ** uninitialized space in zBuf - but valgrind errors tend to worry + ** some users. Rather than argue, it seems easier just to initialize + ** the whole array and silence valgrind, even if that means less randomness + ** in the random seed. + ** + ** When testing, initializing zBuf[] to zero is all we do. That means + ** that we always use the same random number sequence. This makes the + ** tests repeatable. + */ + memset(zBuf, 0, nBuf); + randomnessPid = getpid(); +#if !defined(SQLITE_TEST) + { + int fd, got; + fd = robust_open("/dev/urandom", O_RDONLY, 0); + if( fd<0 ){ + time_t t; + time(&t); + memcpy(zBuf, &t, sizeof(t)); + memcpy(&zBuf[sizeof(t)], &randomnessPid, sizeof(randomnessPid)); + assert( sizeof(t)+sizeof(randomnessPid)<=(size_t)nBuf ); + nBuf = sizeof(t) + sizeof(randomnessPid); + }else{ + do{ got = osRead(fd, zBuf, nBuf); }while( got<0 && errno==EINTR ); + robust_close(0, fd, __LINE__); + } + } +#endif + return nBuf; +} + + +/* +** Sleep for a little while. Return the amount of time slept. +** The argument is the number of microseconds we want to sleep. +** The return value is the number of microseconds of sleep actually +** requested from the underlying operating system, a number which +** might be greater than or equal to the argument, but not less +** than the argument. +*/ +static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){ +#if OS_VXWORKS + struct timespec sp; + + sp.tv_sec = microseconds / 1000000; + sp.tv_nsec = (microseconds % 1000000) * 1000; + nanosleep(&sp, NULL); + UNUSED_PARAMETER(NotUsed); + return microseconds; +#elif defined(HAVE_USLEEP) && HAVE_USLEEP + usleep(microseconds); + UNUSED_PARAMETER(NotUsed); + return microseconds; +#else + int seconds = (microseconds+999999)/1000000; + sleep(seconds); + UNUSED_PARAMETER(NotUsed); + return seconds*1000000; +#endif +} + +/* +** The following variable, if set to a non-zero value, is interpreted as +** the number of seconds since 1970 and is used to set the result of +** sqlite3OsCurrentTime() during testing. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_current_time = 0; /* Fake system time in seconds since 1970. */ +#endif + +/* +** Find the current time (in Universal Coordinated Time). Write into *piNow +** the current time and date as a Julian Day number times 86_400_000. In +** other words, write into *piNow the number of milliseconds since the Julian +** epoch of noon in Greenwich on November 24, 4714 B.C according to the +** proleptic Gregorian calendar. +** +** On success, return SQLITE_OK. Return SQLITE_ERROR if the time and date +** cannot be found. +*/ +static int unixCurrentTimeInt64(sqlite3_vfs *NotUsed, sqlite3_int64 *piNow){ + static const sqlite3_int64 unixEpoch = 24405875*(sqlite3_int64)8640000; + int rc = SQLITE_OK; +#if defined(NO_GETTOD) + time_t t; + time(&t); + *piNow = ((sqlite3_int64)t)*1000 + unixEpoch; +#elif OS_VXWORKS + struct timespec sNow; + clock_gettime(CLOCK_REALTIME, &sNow); + *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_nsec/1000000; +#else + struct timeval sNow; + if( gettimeofday(&sNow, 0)==0 ){ + *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000; + }else{ + rc = SQLITE_ERROR; + } +#endif + +#ifdef SQLITE_TEST + if( sqlite3_current_time ){ + *piNow = 1000*(sqlite3_int64)sqlite3_current_time + unixEpoch; + } +#endif + UNUSED_PARAMETER(NotUsed); + return rc; +} + +/* +** Find the current time (in Universal Coordinated Time). Write the +** current time and date as a Julian Day number into *prNow and +** return 0. Return 1 if the time and date cannot be found. +*/ +static int unixCurrentTime(sqlite3_vfs *NotUsed, double *prNow){ + sqlite3_int64 i = 0; + int rc; + UNUSED_PARAMETER(NotUsed); + rc = unixCurrentTimeInt64(0, &i); + *prNow = i/86400000.0; + return rc; +} + +/* +** We added the xGetLastError() method with the intention of providing +** better low-level error messages when operating-system problems come up +** during SQLite operation. But so far, none of that has been implemented +** in the core. So this routine is never called. For now, it is merely +** a place-holder. +*/ +static int unixGetLastError(sqlite3_vfs *NotUsed, int NotUsed2, char *NotUsed3){ + UNUSED_PARAMETER(NotUsed); + UNUSED_PARAMETER(NotUsed2); + UNUSED_PARAMETER(NotUsed3); + return 0; +} + + +/* +************************ End of sqlite3_vfs methods *************************** +******************************************************************************/ + +/****************************************************************************** +************************** Begin Proxy Locking ******************************** +** +** Proxy locking is a "uber-locking-method" in this sense: It uses the +** other locking methods on secondary lock files. Proxy locking is a +** meta-layer over top of the primitive locking implemented above. For +** this reason, the division that implements of proxy locking is deferred +** until late in the file (here) after all of the other I/O methods have +** been defined - so that the primitive locking methods are available +** as services to help with the implementation of proxy locking. +** +**** +** +** The default locking schemes in SQLite use byte-range locks on the +** database file to coordinate safe, concurrent access by multiple readers +** and writers [http://sqlite.org/lockingv3.html]. The five file locking +** states (UNLOCKED, PENDING, SHARED, RESERVED, EXCLUSIVE) are implemented +** as POSIX read & write locks over fixed set of locations (via fsctl), +** on AFP and SMB only exclusive byte-range locks are available via fsctl +** with _IOWR('z', 23, struct ByteRangeLockPB2) to track the same 5 states. +** To simulate a F_RDLCK on the shared range, on AFP a randomly selected +** address in the shared range is taken for a SHARED lock, the entire +** shared range is taken for an EXCLUSIVE lock): +** +** PENDING_BYTE 0x40000000 +** RESERVED_BYTE 0x40000001 +** SHARED_RANGE 0x40000002 -> 0x40000200 +** +** This works well on the local file system, but shows a nearly 100x +** slowdown in read performance on AFP because the AFP client disables +** the read cache when byte-range locks are present. Enabling the read +** cache exposes a cache coherency problem that is present on all OS X +** supported network file systems. NFS and AFP both observe the +** close-to-open semantics for ensuring cache coherency +** [http://nfs.sourceforge.net/#faq_a8], which does not effectively +** address the requirements for concurrent database access by multiple +** readers and writers +** [http://www.nabble.com/SQLite-on-NFS-cache-coherency-td15655701.html]. +** +** To address the performance and cache coherency issues, proxy file locking +** changes the way database access is controlled by limiting access to a +** single host at a time and moving file locks off of the database file +** and onto a proxy file on the local file system. +** +** +** Using proxy locks +** ----------------- +** +** C APIs +** +** sqlite3_file_control(db, dbname, SQLITE_SET_LOCKPROXYFILE, +** | ":auto:"); +** sqlite3_file_control(db, dbname, SQLITE_GET_LOCKPROXYFILE, &); +** +** +** SQL pragmas +** +** PRAGMA [database.]lock_proxy_file= | :auto: +** PRAGMA [database.]lock_proxy_file +** +** Specifying ":auto:" means that if there is a conch file with a matching +** host ID in it, the proxy path in the conch file will be used, otherwise +** a proxy path based on the user's temp dir +** (via confstr(_CS_DARWIN_USER_TEMP_DIR,...)) will be used and the +** actual proxy file name is generated from the name and path of the +** database file. For example: +** +** For database path "/Users/me/foo.db" +** The lock path will be "/sqliteplocks/_Users_me_foo.db:auto:") +** +** Once a lock proxy is configured for a database connection, it can not +** be removed, however it may be switched to a different proxy path via +** the above APIs (assuming the conch file is not being held by another +** connection or process). +** +** +** How proxy locking works +** ----------------------- +** +** Proxy file locking relies primarily on two new supporting files: +** +** * conch file to limit access to the database file to a single host +** at a time +** +** * proxy file to act as a proxy for the advisory locks normally +** taken on the database +** +** The conch file - to use a proxy file, sqlite must first "hold the conch" +** by taking an sqlite-style shared lock on the conch file, reading the +** contents and comparing the host's unique host ID (see below) and lock +** proxy path against the values stored in the conch. The conch file is +** stored in the same directory as the database file and the file name +** is patterned after the database file name as ".-conch". +** If the conch file does not exist, or it's contents do not match the +** host ID and/or proxy path, then the lock is escalated to an exclusive +** lock and the conch file contents is updated with the host ID and proxy +** path and the lock is downgraded to a shared lock again. If the conch +** is held by another process (with a shared lock), the exclusive lock +** will fail and SQLITE_BUSY is returned. +** +** The proxy file - a single-byte file used for all advisory file locks +** normally taken on the database file. This allows for safe sharing +** of the database file for multiple readers and writers on the same +** host (the conch ensures that they all use the same local lock file). +** +** Requesting the lock proxy does not immediately take the conch, it is +** only taken when the first request to lock database file is made. +** This matches the semantics of the traditional locking behavior, where +** opening a connection to a database file does not take a lock on it. +** The shared lock and an open file descriptor are maintained until +** the connection to the database is closed. +** +** The proxy file and the lock file are never deleted so they only need +** to be created the first time they are used. +** +** Configuration options +** --------------------- +** +** SQLITE_PREFER_PROXY_LOCKING +** +** Database files accessed on non-local file systems are +** automatically configured for proxy locking, lock files are +** named automatically using the same logic as +** PRAGMA lock_proxy_file=":auto:" +** +** SQLITE_PROXY_DEBUG +** +** Enables the logging of error messages during host id file +** retrieval and creation +** +** LOCKPROXYDIR +** +** Overrides the default directory used for lock proxy files that +** are named automatically via the ":auto:" setting +** +** SQLITE_DEFAULT_PROXYDIR_PERMISSIONS +** +** Permissions to use when creating a directory for storing the +** lock proxy files, only used when LOCKPROXYDIR is not set. +** +** +** As mentioned above, when compiled with SQLITE_PREFER_PROXY_LOCKING, +** setting the environment variable SQLITE_FORCE_PROXY_LOCKING to 1 will +** force proxy locking to be used for every database file opened, and 0 +** will force automatic proxy locking to be disabled for all database +** files (explicity calling the SQLITE_SET_LOCKPROXYFILE pragma or +** sqlite_file_control API is not affected by SQLITE_FORCE_PROXY_LOCKING). +*/ + +/* +** Proxy locking is only available on MacOSX +*/ +#if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE + +/* +** The proxyLockingContext has the path and file structures for the remote +** and local proxy files in it +*/ +typedef struct proxyLockingContext proxyLockingContext; +struct proxyLockingContext { + unixFile *conchFile; /* Open conch file */ + char *conchFilePath; /* Name of the conch file */ + unixFile *lockProxy; /* Open proxy lock file */ + char *lockProxyPath; /* Name of the proxy lock file */ + char *dbPath; /* Name of the open file */ + int conchHeld; /* 1 if the conch is held, -1 if lockless */ + void *oldLockingContext; /* Original lockingcontext to restore on close */ + sqlite3_io_methods const *pOldMethod; /* Original I/O methods for close */ +}; + +/* +** The proxy lock file path for the database at dbPath is written into lPath, +** which must point to valid, writable memory large enough for a maxLen length +** file path. +*/ +static int proxyGetLockPath(const char *dbPath, char *lPath, size_t maxLen){ + int len; + int dbLen; + int i; + +#ifdef LOCKPROXYDIR + len = strlcpy(lPath, LOCKPROXYDIR, maxLen); +#else +# ifdef _CS_DARWIN_USER_TEMP_DIR + { + if( !confstr(_CS_DARWIN_USER_TEMP_DIR, lPath, maxLen) ){ + OSTRACE(("GETLOCKPATH failed %s errno=%d pid=%d\n", + lPath, errno, getpid())); + return SQLITE_IOERR_LOCK; + } + len = strlcat(lPath, "sqliteplocks", maxLen); + } +# else + len = strlcpy(lPath, "/tmp/", maxLen); +# endif +#endif + + if( lPath[len-1]!='/' ){ + len = strlcat(lPath, "/", maxLen); + } + + /* transform the db path to a unique cache name */ + dbLen = (int)strlen(dbPath); + for( i=0; i 0) ){ + /* only mkdir if leaf dir != "." or "/" or ".." */ + if( i-start>2 || (i-start==1 && buf[start] != '.' && buf[start] != '/') + || (i-start==2 && buf[start] != '.' && buf[start+1] != '.') ){ + buf[i]='\0'; + if( osMkdir(buf, SQLITE_DEFAULT_PROXYDIR_PERMISSIONS) ){ + int err=errno; + if( err!=EEXIST ) { + OSTRACE(("CREATELOCKPATH FAILED creating %s, " + "'%s' proxy lock path=%s pid=%d\n", + buf, strerror(err), lockPath, getpid())); + return err; + } + } + } + start=i+1; + } + buf[i] = lockPath[i]; + } + OSTRACE(("CREATELOCKPATH proxy lock path=%s pid=%d\n", lockPath, getpid())); + return 0; +} + +/* +** Create a new VFS file descriptor (stored in memory obtained from +** sqlite3_malloc) and open the file named "path" in the file descriptor. +** +** The caller is responsible not only for closing the file descriptor +** but also for freeing the memory associated with the file descriptor. +*/ +static int proxyCreateUnixFile( + const char *path, /* path for the new unixFile */ + unixFile **ppFile, /* unixFile created and returned by ref */ + int islockfile /* if non zero missing dirs will be created */ +) { + int fd = -1; + unixFile *pNew; + int rc = SQLITE_OK; + int openFlags = O_RDWR | O_CREAT; + sqlite3_vfs dummyVfs; + int terrno = 0; + UnixUnusedFd *pUnused = NULL; + + /* 1. first try to open/create the file + ** 2. if that fails, and this is a lock file (not-conch), try creating + ** the parent directories and then try again. + ** 3. if that fails, try to open the file read-only + ** otherwise return BUSY (if lock file) or CANTOPEN for the conch file + */ + pUnused = findReusableFd(path, openFlags); + if( pUnused ){ + fd = pUnused->fd; + }else{ + pUnused = sqlite3_malloc(sizeof(*pUnused)); + if( !pUnused ){ + return SQLITE_NOMEM; + } + } + if( fd<0 ){ + fd = robust_open(path, openFlags, 0); + terrno = errno; + if( fd<0 && errno==ENOENT && islockfile ){ + if( proxyCreateLockPath(path) == SQLITE_OK ){ + fd = robust_open(path, openFlags, 0); + } + } + } + if( fd<0 ){ + openFlags = O_RDONLY; + fd = robust_open(path, openFlags, 0); + terrno = errno; + } + if( fd<0 ){ + if( islockfile ){ + return SQLITE_BUSY; + } + switch (terrno) { + case EACCES: + return SQLITE_PERM; + case EIO: + return SQLITE_IOERR_LOCK; /* even though it is the conch */ + default: + return SQLITE_CANTOPEN_BKPT; + } + } + + pNew = (unixFile *)sqlite3_malloc(sizeof(*pNew)); + if( pNew==NULL ){ + rc = SQLITE_NOMEM; + goto end_create_proxy; + } + memset(pNew, 0, sizeof(unixFile)); + pNew->openFlags = openFlags; + memset(&dummyVfs, 0, sizeof(dummyVfs)); + dummyVfs.pAppData = (void*)&autolockIoFinder; + dummyVfs.zName = "dummy"; + pUnused->fd = fd; + pUnused->flags = openFlags; + pNew->pUnused = pUnused; + + rc = fillInUnixFile(&dummyVfs, fd, (sqlite3_file*)pNew, path, 0); + if( rc==SQLITE_OK ){ + *ppFile = pNew; + return SQLITE_OK; + } +end_create_proxy: + robust_close(pNew, fd, __LINE__); + sqlite3_free(pNew); + sqlite3_free(pUnused); + return rc; +} + +#ifdef SQLITE_TEST +/* simulate multiple hosts by creating unique hostid file paths */ +SQLITE_API int sqlite3_hostid_num = 0; +#endif + +#define PROXY_HOSTIDLEN 16 /* conch file host id length */ + +/* Not always defined in the headers as it ought to be */ +extern int gethostuuid(uuid_t id, const struct timespec *wait); + +/* get the host ID via gethostuuid(), pHostID must point to PROXY_HOSTIDLEN +** bytes of writable memory. +*/ +static int proxyGetHostID(unsigned char *pHostID, int *pError){ + assert(PROXY_HOSTIDLEN == sizeof(uuid_t)); + memset(pHostID, 0, PROXY_HOSTIDLEN); +#if defined(__MAX_OS_X_VERSION_MIN_REQUIRED)\ + && __MAC_OS_X_VERSION_MIN_REQUIRED<1050 + { + static const struct timespec timeout = {1, 0}; /* 1 sec timeout */ + if( gethostuuid(pHostID, &timeout) ){ + int err = errno; + if( pError ){ + *pError = err; + } + return SQLITE_IOERR; + } + } +#else + UNUSED_PARAMETER(pError); +#endif +#ifdef SQLITE_TEST + /* simulate multiple hosts by creating unique hostid file paths */ + if( sqlite3_hostid_num != 0){ + pHostID[0] = (char)(pHostID[0] + (char)(sqlite3_hostid_num & 0xFF)); + } +#endif + + return SQLITE_OK; +} + +/* The conch file contains the header, host id and lock file path + */ +#define PROXY_CONCHVERSION 2 /* 1-byte header, 16-byte host id, path */ +#define PROXY_HEADERLEN 1 /* conch file header length */ +#define PROXY_PATHINDEX (PROXY_HEADERLEN+PROXY_HOSTIDLEN) +#define PROXY_MAXCONCHLEN (PROXY_HEADERLEN+PROXY_HOSTIDLEN+MAXPATHLEN) + +/* +** Takes an open conch file, copies the contents to a new path and then moves +** it back. The newly created file's file descriptor is assigned to the +** conch file structure and finally the original conch file descriptor is +** closed. Returns zero if successful. +*/ +static int proxyBreakConchLock(unixFile *pFile, uuid_t myHostID){ + proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; + unixFile *conchFile = pCtx->conchFile; + char tPath[MAXPATHLEN]; + char buf[PROXY_MAXCONCHLEN]; + char *cPath = pCtx->conchFilePath; + size_t readLen = 0; + size_t pathLen = 0; + char errmsg[64] = ""; + int fd = -1; + int rc = -1; + UNUSED_PARAMETER(myHostID); + + /* create a new path by replace the trailing '-conch' with '-break' */ + pathLen = strlcpy(tPath, cPath, MAXPATHLEN); + if( pathLen>MAXPATHLEN || pathLen<6 || + (strlcpy(&tPath[pathLen-5], "break", 6) != 5) ){ + sqlite3_snprintf(sizeof(errmsg),errmsg,"path error (len %d)",(int)pathLen); + goto end_breaklock; + } + /* read the conch content */ + readLen = osPread(conchFile->h, buf, PROXY_MAXCONCHLEN, 0); + if( readLenh, __LINE__); + conchFile->h = fd; + conchFile->openFlags = O_RDWR | O_CREAT; + +end_breaklock: + if( rc ){ + if( fd>=0 ){ + osUnlink(tPath); + robust_close(pFile, fd, __LINE__); + } + fprintf(stderr, "failed to break stale lock on %s, %s\n", cPath, errmsg); + } + return rc; +} + +/* Take the requested lock on the conch file and break a stale lock if the +** host id matches. +*/ +static int proxyConchLock(unixFile *pFile, uuid_t myHostID, int lockType){ + proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; + unixFile *conchFile = pCtx->conchFile; + int rc = SQLITE_OK; + int nTries = 0; + struct timespec conchModTime; + + memset(&conchModTime, 0, sizeof(conchModTime)); + do { + rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType); + nTries ++; + if( rc==SQLITE_BUSY ){ + /* If the lock failed (busy): + * 1st try: get the mod time of the conch, wait 0.5s and try again. + * 2nd try: fail if the mod time changed or host id is different, wait + * 10 sec and try again + * 3rd try: break the lock unless the mod time has changed. + */ + struct stat buf; + if( osFstat(conchFile->h, &buf) ){ + pFile->lastErrno = errno; + return SQLITE_IOERR_LOCK; + } + + if( nTries==1 ){ + conchModTime = buf.st_mtimespec; + usleep(500000); /* wait 0.5 sec and try the lock again*/ + continue; + } + + assert( nTries>1 ); + if( conchModTime.tv_sec != buf.st_mtimespec.tv_sec || + conchModTime.tv_nsec != buf.st_mtimespec.tv_nsec ){ + return SQLITE_BUSY; + } + + if( nTries==2 ){ + char tBuf[PROXY_MAXCONCHLEN]; + int len = osPread(conchFile->h, tBuf, PROXY_MAXCONCHLEN, 0); + if( len<0 ){ + pFile->lastErrno = errno; + return SQLITE_IOERR_LOCK; + } + if( len>PROXY_PATHINDEX && tBuf[0]==(char)PROXY_CONCHVERSION){ + /* don't break the lock if the host id doesn't match */ + if( 0!=memcmp(&tBuf[PROXY_HEADERLEN], myHostID, PROXY_HOSTIDLEN) ){ + return SQLITE_BUSY; + } + }else{ + /* don't break the lock on short read or a version mismatch */ + return SQLITE_BUSY; + } + usleep(10000000); /* wait 10 sec and try the lock again */ + continue; + } + + assert( nTries==3 ); + if( 0==proxyBreakConchLock(pFile, myHostID) ){ + rc = SQLITE_OK; + if( lockType==EXCLUSIVE_LOCK ){ + rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK); + } + if( !rc ){ + rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType); + } + } + } + } while( rc==SQLITE_BUSY && nTries<3 ); + + return rc; +} + +/* Takes the conch by taking a shared lock and read the contents conch, if +** lockPath is non-NULL, the host ID and lock file path must match. A NULL +** lockPath means that the lockPath in the conch file will be used if the +** host IDs match, or a new lock path will be generated automatically +** and written to the conch file. +*/ +static int proxyTakeConch(unixFile *pFile){ + proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; + + if( pCtx->conchHeld!=0 ){ + return SQLITE_OK; + }else{ + unixFile *conchFile = pCtx->conchFile; + uuid_t myHostID; + int pError = 0; + char readBuf[PROXY_MAXCONCHLEN]; + char lockPath[MAXPATHLEN]; + char *tempLockPath = NULL; + int rc = SQLITE_OK; + int createConch = 0; + int hostIdMatch = 0; + int readLen = 0; + int tryOldLockPath = 0; + int forceNewLockPath = 0; + + OSTRACE(("TAKECONCH %d for %s pid=%d\n", conchFile->h, + (pCtx->lockProxyPath ? pCtx->lockProxyPath : ":auto:"), getpid())); + + rc = proxyGetHostID(myHostID, &pError); + if( (rc&0xff)==SQLITE_IOERR ){ + pFile->lastErrno = pError; + goto end_takeconch; + } + rc = proxyConchLock(pFile, myHostID, SHARED_LOCK); + if( rc!=SQLITE_OK ){ + goto end_takeconch; + } + /* read the existing conch file */ + readLen = seekAndRead((unixFile*)conchFile, 0, readBuf, PROXY_MAXCONCHLEN); + if( readLen<0 ){ + /* I/O error: lastErrno set by seekAndRead */ + pFile->lastErrno = conchFile->lastErrno; + rc = SQLITE_IOERR_READ; + goto end_takeconch; + }else if( readLen<=(PROXY_HEADERLEN+PROXY_HOSTIDLEN) || + readBuf[0]!=(char)PROXY_CONCHVERSION ){ + /* a short read or version format mismatch means we need to create a new + ** conch file. + */ + createConch = 1; + } + /* if the host id matches and the lock path already exists in the conch + ** we'll try to use the path there, if we can't open that path, we'll + ** retry with a new auto-generated path + */ + do { /* in case we need to try again for an :auto: named lock file */ + + if( !createConch && !forceNewLockPath ){ + hostIdMatch = !memcmp(&readBuf[PROXY_HEADERLEN], myHostID, + PROXY_HOSTIDLEN); + /* if the conch has data compare the contents */ + if( !pCtx->lockProxyPath ){ + /* for auto-named local lock file, just check the host ID and we'll + ** use the local lock file path that's already in there + */ + if( hostIdMatch ){ + size_t pathLen = (readLen - PROXY_PATHINDEX); + + if( pathLen>=MAXPATHLEN ){ + pathLen=MAXPATHLEN-1; + } + memcpy(lockPath, &readBuf[PROXY_PATHINDEX], pathLen); + lockPath[pathLen] = 0; + tempLockPath = lockPath; + tryOldLockPath = 1; + /* create a copy of the lock path if the conch is taken */ + goto end_takeconch; + } + }else if( hostIdMatch + && !strncmp(pCtx->lockProxyPath, &readBuf[PROXY_PATHINDEX], + readLen-PROXY_PATHINDEX) + ){ + /* conch host and lock path match */ + goto end_takeconch; + } + } + + /* if the conch isn't writable and doesn't match, we can't take it */ + if( (conchFile->openFlags&O_RDWR) == 0 ){ + rc = SQLITE_BUSY; + goto end_takeconch; + } + + /* either the conch didn't match or we need to create a new one */ + if( !pCtx->lockProxyPath ){ + proxyGetLockPath(pCtx->dbPath, lockPath, MAXPATHLEN); + tempLockPath = lockPath; + /* create a copy of the lock path _only_ if the conch is taken */ + } + + /* update conch with host and path (this will fail if other process + ** has a shared lock already), if the host id matches, use the big + ** stick. + */ + futimes(conchFile->h, NULL); + if( hostIdMatch && !createConch ){ + if( conchFile->pInode && conchFile->pInode->nShared>1 ){ + /* We are trying for an exclusive lock but another thread in this + ** same process is still holding a shared lock. */ + rc = SQLITE_BUSY; + } else { + rc = proxyConchLock(pFile, myHostID, EXCLUSIVE_LOCK); + } + }else{ + rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, EXCLUSIVE_LOCK); + } + if( rc==SQLITE_OK ){ + char writeBuffer[PROXY_MAXCONCHLEN]; + int writeSize = 0; + + writeBuffer[0] = (char)PROXY_CONCHVERSION; + memcpy(&writeBuffer[PROXY_HEADERLEN], myHostID, PROXY_HOSTIDLEN); + if( pCtx->lockProxyPath!=NULL ){ + strlcpy(&writeBuffer[PROXY_PATHINDEX], pCtx->lockProxyPath, MAXPATHLEN); + }else{ + strlcpy(&writeBuffer[PROXY_PATHINDEX], tempLockPath, MAXPATHLEN); + } + writeSize = PROXY_PATHINDEX + strlen(&writeBuffer[PROXY_PATHINDEX]); + robust_ftruncate(conchFile->h, writeSize); + rc = unixWrite((sqlite3_file *)conchFile, writeBuffer, writeSize, 0); + fsync(conchFile->h); + /* If we created a new conch file (not just updated the contents of a + ** valid conch file), try to match the permissions of the database + */ + if( rc==SQLITE_OK && createConch ){ + struct stat buf; + int err = osFstat(pFile->h, &buf); + if( err==0 ){ + mode_t cmode = buf.st_mode&(S_IRUSR|S_IWUSR | S_IRGRP|S_IWGRP | + S_IROTH|S_IWOTH); + /* try to match the database file R/W permissions, ignore failure */ +#ifndef SQLITE_PROXY_DEBUG + osFchmod(conchFile->h, cmode); +#else + do{ + rc = osFchmod(conchFile->h, cmode); + }while( rc==(-1) && errno==EINTR ); + if( rc!=0 ){ + int code = errno; + fprintf(stderr, "fchmod %o FAILED with %d %s\n", + cmode, code, strerror(code)); + } else { + fprintf(stderr, "fchmod %o SUCCEDED\n",cmode); + } + }else{ + int code = errno; + fprintf(stderr, "STAT FAILED[%d] with %d %s\n", + err, code, strerror(code)); +#endif + } + } + } + conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK); + + end_takeconch: + OSTRACE(("TRANSPROXY: CLOSE %d\n", pFile->h)); + if( rc==SQLITE_OK && pFile->openFlags ){ + int fd; + if( pFile->h>=0 ){ + robust_close(pFile, pFile->h, __LINE__); + } + pFile->h = -1; + fd = robust_open(pCtx->dbPath, pFile->openFlags, 0); + OSTRACE(("TRANSPROXY: OPEN %d\n", fd)); + if( fd>=0 ){ + pFile->h = fd; + }else{ + rc=SQLITE_CANTOPEN_BKPT; /* SQLITE_BUSY? proxyTakeConch called + during locking */ + } + } + if( rc==SQLITE_OK && !pCtx->lockProxy ){ + char *path = tempLockPath ? tempLockPath : pCtx->lockProxyPath; + rc = proxyCreateUnixFile(path, &pCtx->lockProxy, 1); + if( rc!=SQLITE_OK && rc!=SQLITE_NOMEM && tryOldLockPath ){ + /* we couldn't create the proxy lock file with the old lock file path + ** so try again via auto-naming + */ + forceNewLockPath = 1; + tryOldLockPath = 0; + continue; /* go back to the do {} while start point, try again */ + } + } + if( rc==SQLITE_OK ){ + /* Need to make a copy of path if we extracted the value + ** from the conch file or the path was allocated on the stack + */ + if( tempLockPath ){ + pCtx->lockProxyPath = sqlite3DbStrDup(0, tempLockPath); + if( !pCtx->lockProxyPath ){ + rc = SQLITE_NOMEM; + } + } + } + if( rc==SQLITE_OK ){ + pCtx->conchHeld = 1; + + if( pCtx->lockProxy->pMethod == &afpIoMethods ){ + afpLockingContext *afpCtx; + afpCtx = (afpLockingContext *)pCtx->lockProxy->lockingContext; + afpCtx->dbPath = pCtx->lockProxyPath; + } + } else { + conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK); + } + OSTRACE(("TAKECONCH %d %s\n", conchFile->h, + rc==SQLITE_OK?"ok":"failed")); + return rc; + } while (1); /* in case we need to retry the :auto: lock file - + ** we should never get here except via the 'continue' call. */ + } +} + +/* +** If pFile holds a lock on a conch file, then release that lock. +*/ +static int proxyReleaseConch(unixFile *pFile){ + int rc = SQLITE_OK; /* Subroutine return code */ + proxyLockingContext *pCtx; /* The locking context for the proxy lock */ + unixFile *conchFile; /* Name of the conch file */ + + pCtx = (proxyLockingContext *)pFile->lockingContext; + conchFile = pCtx->conchFile; + OSTRACE(("RELEASECONCH %d for %s pid=%d\n", conchFile->h, + (pCtx->lockProxyPath ? pCtx->lockProxyPath : ":auto:"), + getpid())); + if( pCtx->conchHeld>0 ){ + rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK); + } + pCtx->conchHeld = 0; + OSTRACE(("RELEASECONCH %d %s\n", conchFile->h, + (rc==SQLITE_OK ? "ok" : "failed"))); + return rc; +} + +/* +** Given the name of a database file, compute the name of its conch file. +** Store the conch filename in memory obtained from sqlite3_malloc(). +** Make *pConchPath point to the new name. Return SQLITE_OK on success +** or SQLITE_NOMEM if unable to obtain memory. +** +** The caller is responsible for ensuring that the allocated memory +** space is eventually freed. +** +** *pConchPath is set to NULL if a memory allocation error occurs. +*/ +static int proxyCreateConchPathname(char *dbPath, char **pConchPath){ + int i; /* Loop counter */ + int len = (int)strlen(dbPath); /* Length of database filename - dbPath */ + char *conchPath; /* buffer in which to construct conch name */ + + /* Allocate space for the conch filename and initialize the name to + ** the name of the original database file. */ + *pConchPath = conchPath = (char *)sqlite3_malloc(len + 8); + if( conchPath==0 ){ + return SQLITE_NOMEM; + } + memcpy(conchPath, dbPath, len+1); + + /* now insert a "." before the last / character */ + for( i=(len-1); i>=0; i-- ){ + if( conchPath[i]=='/' ){ + i++; + break; + } + } + conchPath[i]='.'; + while ( ilockingContext; + char *oldPath = pCtx->lockProxyPath; + int rc = SQLITE_OK; + + if( pFile->eFileLock!=NO_LOCK ){ + return SQLITE_BUSY; + } + + /* nothing to do if the path is NULL, :auto: or matches the existing path */ + if( !path || path[0]=='\0' || !strcmp(path, ":auto:") || + (oldPath && !strncmp(oldPath, path, MAXPATHLEN)) ){ + return SQLITE_OK; + }else{ + unixFile *lockProxy = pCtx->lockProxy; + pCtx->lockProxy=NULL; + pCtx->conchHeld = 0; + if( lockProxy!=NULL ){ + rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy); + if( rc ) return rc; + sqlite3_free(lockProxy); + } + sqlite3_free(oldPath); + pCtx->lockProxyPath = sqlite3DbStrDup(0, path); + } + + return rc; +} + +/* +** pFile is a file that has been opened by a prior xOpen call. dbPath +** is a string buffer at least MAXPATHLEN+1 characters in size. +** +** This routine find the filename associated with pFile and writes it +** int dbPath. +*/ +static int proxyGetDbPathForUnixFile(unixFile *pFile, char *dbPath){ +#if defined(__APPLE__) + if( pFile->pMethod == &afpIoMethods ){ + /* afp style keeps a reference to the db path in the filePath field + ** of the struct */ + assert( (int)strlen((char*)pFile->lockingContext)<=MAXPATHLEN ); + strlcpy(dbPath, ((afpLockingContext *)pFile->lockingContext)->dbPath, MAXPATHLEN); + } else +#endif + if( pFile->pMethod == &dotlockIoMethods ){ + /* dot lock style uses the locking context to store the dot lock + ** file path */ + int len = strlen((char *)pFile->lockingContext) - strlen(DOTLOCK_SUFFIX); + memcpy(dbPath, (char *)pFile->lockingContext, len + 1); + }else{ + /* all other styles use the locking context to store the db file path */ + assert( strlen((char*)pFile->lockingContext)<=MAXPATHLEN ); + strlcpy(dbPath, (char *)pFile->lockingContext, MAXPATHLEN); + } + return SQLITE_OK; +} + +/* +** Takes an already filled in unix file and alters it so all file locking +** will be performed on the local proxy lock file. The following fields +** are preserved in the locking context so that they can be restored and +** the unix structure properly cleaned up at close time: +** ->lockingContext +** ->pMethod +*/ +static int proxyTransformUnixFile(unixFile *pFile, const char *path) { + proxyLockingContext *pCtx; + char dbPath[MAXPATHLEN+1]; /* Name of the database file */ + char *lockPath=NULL; + int rc = SQLITE_OK; + + if( pFile->eFileLock!=NO_LOCK ){ + return SQLITE_BUSY; + } + proxyGetDbPathForUnixFile(pFile, dbPath); + if( !path || path[0]=='\0' || !strcmp(path, ":auto:") ){ + lockPath=NULL; + }else{ + lockPath=(char *)path; + } + + OSTRACE(("TRANSPROXY %d for %s pid=%d\n", pFile->h, + (lockPath ? lockPath : ":auto:"), getpid())); + + pCtx = sqlite3_malloc( sizeof(*pCtx) ); + if( pCtx==0 ){ + return SQLITE_NOMEM; + } + memset(pCtx, 0, sizeof(*pCtx)); + + rc = proxyCreateConchPathname(dbPath, &pCtx->conchFilePath); + if( rc==SQLITE_OK ){ + rc = proxyCreateUnixFile(pCtx->conchFilePath, &pCtx->conchFile, 0); + if( rc==SQLITE_CANTOPEN && ((pFile->openFlags&O_RDWR) == 0) ){ + /* if (a) the open flags are not O_RDWR, (b) the conch isn't there, and + ** (c) the file system is read-only, then enable no-locking access. + ** Ugh, since O_RDONLY==0x0000 we test for !O_RDWR since unixOpen asserts + ** that openFlags will have only one of O_RDONLY or O_RDWR. + */ + struct statfs fsInfo; + struct stat conchInfo; + int goLockless = 0; + + if( osStat(pCtx->conchFilePath, &conchInfo) == -1 ) { + int err = errno; + if( (err==ENOENT) && (statfs(dbPath, &fsInfo) != -1) ){ + goLockless = (fsInfo.f_flags&MNT_RDONLY) == MNT_RDONLY; + } + } + if( goLockless ){ + pCtx->conchHeld = -1; /* read only FS/ lockless */ + rc = SQLITE_OK; + } + } + } + if( rc==SQLITE_OK && lockPath ){ + pCtx->lockProxyPath = sqlite3DbStrDup(0, lockPath); + } + + if( rc==SQLITE_OK ){ + pCtx->dbPath = sqlite3DbStrDup(0, dbPath); + if( pCtx->dbPath==NULL ){ + rc = SQLITE_NOMEM; + } + } + if( rc==SQLITE_OK ){ + /* all memory is allocated, proxys are created and assigned, + ** switch the locking context and pMethod then return. + */ + pCtx->oldLockingContext = pFile->lockingContext; + pFile->lockingContext = pCtx; + pCtx->pOldMethod = pFile->pMethod; + pFile->pMethod = &proxyIoMethods; + }else{ + if( pCtx->conchFile ){ + pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile); + sqlite3_free(pCtx->conchFile); + } + sqlite3DbFree(0, pCtx->lockProxyPath); + sqlite3_free(pCtx->conchFilePath); + sqlite3_free(pCtx); + } + OSTRACE(("TRANSPROXY %d %s\n", pFile->h, + (rc==SQLITE_OK ? "ok" : "failed"))); + return rc; +} + + +/* +** This routine handles sqlite3_file_control() calls that are specific +** to proxy locking. +*/ +static int proxyFileControl(sqlite3_file *id, int op, void *pArg){ + switch( op ){ + case SQLITE_GET_LOCKPROXYFILE: { + unixFile *pFile = (unixFile*)id; + if( pFile->pMethod == &proxyIoMethods ){ + proxyLockingContext *pCtx = (proxyLockingContext*)pFile->lockingContext; + proxyTakeConch(pFile); + if( pCtx->lockProxyPath ){ + *(const char **)pArg = pCtx->lockProxyPath; + }else{ + *(const char **)pArg = ":auto: (not held)"; + } + } else { + *(const char **)pArg = NULL; + } + return SQLITE_OK; + } + case SQLITE_SET_LOCKPROXYFILE: { + unixFile *pFile = (unixFile*)id; + int rc = SQLITE_OK; + int isProxyStyle = (pFile->pMethod == &proxyIoMethods); + if( pArg==NULL || (const char *)pArg==0 ){ + if( isProxyStyle ){ + /* turn off proxy locking - not supported */ + rc = SQLITE_ERROR /*SQLITE_PROTOCOL? SQLITE_MISUSE?*/; + }else{ + /* turn off proxy locking - already off - NOOP */ + rc = SQLITE_OK; + } + }else{ + const char *proxyPath = (const char *)pArg; + if( isProxyStyle ){ + proxyLockingContext *pCtx = + (proxyLockingContext*)pFile->lockingContext; + if( !strcmp(pArg, ":auto:") + || (pCtx->lockProxyPath && + !strncmp(pCtx->lockProxyPath, proxyPath, MAXPATHLEN)) + ){ + rc = SQLITE_OK; + }else{ + rc = switchLockProxyPath(pFile, proxyPath); + } + }else{ + /* turn on proxy file locking */ + rc = proxyTransformUnixFile(pFile, proxyPath); + } + } + return rc; + } + default: { + assert( 0 ); /* The call assures that only valid opcodes are sent */ + } + } + /*NOTREACHED*/ + return SQLITE_ERROR; +} + +/* +** Within this division (the proxying locking implementation) the procedures +** above this point are all utilities. The lock-related methods of the +** proxy-locking sqlite3_io_method object follow. +*/ + + +/* +** This routine checks if there is a RESERVED lock held on the specified +** file by this or any other process. If such a lock is held, set *pResOut +** to a non-zero value otherwise *pResOut is set to zero. The return value +** is set to SQLITE_OK unless an I/O error occurs during lock checking. +*/ +static int proxyCheckReservedLock(sqlite3_file *id, int *pResOut) { + unixFile *pFile = (unixFile*)id; + int rc = proxyTakeConch(pFile); + if( rc==SQLITE_OK ){ + proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; + if( pCtx->conchHeld>0 ){ + unixFile *proxy = pCtx->lockProxy; + return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut); + }else{ /* conchHeld < 0 is lockless */ + pResOut=0; + } + } + return rc; +} + +/* +** Lock the file with the lock specified by parameter eFileLock - one +** of the following: +** +** (1) SHARED_LOCK +** (2) RESERVED_LOCK +** (3) PENDING_LOCK +** (4) EXCLUSIVE_LOCK +** +** Sometimes when requesting one lock state, additional lock states +** are inserted in between. The locking might fail on one of the later +** transitions leaving the lock state different from what it started but +** still short of its goal. The following chart shows the allowed +** transitions and the inserted intermediate states: +** +** UNLOCKED -> SHARED +** SHARED -> RESERVED +** SHARED -> (PENDING) -> EXCLUSIVE +** RESERVED -> (PENDING) -> EXCLUSIVE +** PENDING -> EXCLUSIVE +** +** This routine will only increase a lock. Use the sqlite3OsUnlock() +** routine to lower a locking level. +*/ +static int proxyLock(sqlite3_file *id, int eFileLock) { + unixFile *pFile = (unixFile*)id; + int rc = proxyTakeConch(pFile); + if( rc==SQLITE_OK ){ + proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; + if( pCtx->conchHeld>0 ){ + unixFile *proxy = pCtx->lockProxy; + rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock); + pFile->eFileLock = proxy->eFileLock; + }else{ + /* conchHeld < 0 is lockless */ + } + } + return rc; +} + + +/* +** Lower the locking level on file descriptor pFile to eFileLock. eFileLock +** must be either NO_LOCK or SHARED_LOCK. +** +** If the locking level of the file descriptor is already at or below +** the requested locking level, this routine is a no-op. +*/ +static int proxyUnlock(sqlite3_file *id, int eFileLock) { + unixFile *pFile = (unixFile*)id; + int rc = proxyTakeConch(pFile); + if( rc==SQLITE_OK ){ + proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; + if( pCtx->conchHeld>0 ){ + unixFile *proxy = pCtx->lockProxy; + rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock); + pFile->eFileLock = proxy->eFileLock; + }else{ + /* conchHeld < 0 is lockless */ + } + } + return rc; +} + +/* +** Close a file that uses proxy locks. +*/ +static int proxyClose(sqlite3_file *id) { + if( id ){ + unixFile *pFile = (unixFile*)id; + proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; + unixFile *lockProxy = pCtx->lockProxy; + unixFile *conchFile = pCtx->conchFile; + int rc = SQLITE_OK; + + if( lockProxy ){ + rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK); + if( rc ) return rc; + rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy); + if( rc ) return rc; + sqlite3_free(lockProxy); + pCtx->lockProxy = 0; + } + if( conchFile ){ + if( pCtx->conchHeld ){ + rc = proxyReleaseConch(pFile); + if( rc ) return rc; + } + rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile); + if( rc ) return rc; + sqlite3_free(conchFile); + } + sqlite3DbFree(0, pCtx->lockProxyPath); + sqlite3_free(pCtx->conchFilePath); + sqlite3DbFree(0, pCtx->dbPath); + /* restore the original locking context and pMethod then close it */ + pFile->lockingContext = pCtx->oldLockingContext; + pFile->pMethod = pCtx->pOldMethod; + sqlite3_free(pCtx); + return pFile->pMethod->xClose(id); + } + return SQLITE_OK; +} + + + +#endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ +/* +** The proxy locking style is intended for use with AFP filesystems. +** And since AFP is only supported on MacOSX, the proxy locking is also +** restricted to MacOSX. +** +** +******************* End of the proxy lock implementation ********************** +******************************************************************************/ + +/* +** Initialize the operating system interface. +** +** This routine registers all VFS implementations for unix-like operating +** systems. This routine, and the sqlite3_os_end() routine that follows, +** should be the only routines in this file that are visible from other +** files. +** +** This routine is called once during SQLite initialization and by a +** single thread. The memory allocation and mutex subsystems have not +** necessarily been initialized when this routine is called, and so they +** should not be used. +*/ +SQLITE_API int sqlite3_os_init(void){ + /* + ** The following macro defines an initializer for an sqlite3_vfs object. + ** The name of the VFS is NAME. The pAppData is a pointer to a pointer + ** to the "finder" function. (pAppData is a pointer to a pointer because + ** silly C90 rules prohibit a void* from being cast to a function pointer + ** and so we have to go through the intermediate pointer to avoid problems + ** when compiling with -pedantic-errors on GCC.) + ** + ** The FINDER parameter to this macro is the name of the pointer to the + ** finder-function. The finder-function returns a pointer to the + ** sqlite_io_methods object that implements the desired locking + ** behaviors. See the division above that contains the IOMETHODS + ** macro for addition information on finder-functions. + ** + ** Most finders simply return a pointer to a fixed sqlite3_io_methods + ** object. But the "autolockIoFinder" available on MacOSX does a little + ** more than that; it looks at the filesystem type that hosts the + ** database file and tries to choose an locking method appropriate for + ** that filesystem time. + */ + #define UNIXVFS(VFSNAME, FINDER) { \ + 3, /* iVersion */ \ + sizeof(unixFile), /* szOsFile */ \ + MAX_PATHNAME, /* mxPathname */ \ + 0, /* pNext */ \ + VFSNAME, /* zName */ \ + (void*)&FINDER, /* pAppData */ \ + unixOpen, /* xOpen */ \ + unixDelete, /* xDelete */ \ + unixAccess, /* xAccess */ \ + unixFullPathname, /* xFullPathname */ \ + unixDlOpen, /* xDlOpen */ \ + unixDlError, /* xDlError */ \ + unixDlSym, /* xDlSym */ \ + unixDlClose, /* xDlClose */ \ + unixRandomness, /* xRandomness */ \ + unixSleep, /* xSleep */ \ + unixCurrentTime, /* xCurrentTime */ \ + unixGetLastError, /* xGetLastError */ \ + unixCurrentTimeInt64, /* xCurrentTimeInt64 */ \ + unixSetSystemCall, /* xSetSystemCall */ \ + unixGetSystemCall, /* xGetSystemCall */ \ + unixNextSystemCall, /* xNextSystemCall */ \ + } + + /* + ** All default VFSes for unix are contained in the following array. + ** + ** Note that the sqlite3_vfs.pNext field of the VFS object is modified + ** by the SQLite core when the VFS is registered. So the following + ** array cannot be const. + */ + static sqlite3_vfs aVfs[] = { +#if SQLITE_ENABLE_LOCKING_STYLE && (OS_VXWORKS || defined(__APPLE__)) + UNIXVFS("unix", autolockIoFinder ), +#else + UNIXVFS("unix", posixIoFinder ), +#endif + UNIXVFS("unix-none", nolockIoFinder ), + UNIXVFS("unix-dotfile", dotlockIoFinder ), + UNIXVFS("unix-excl", posixIoFinder ), +#if OS_VXWORKS + UNIXVFS("unix-namedsem", semIoFinder ), +#endif +#if SQLITE_ENABLE_LOCKING_STYLE + UNIXVFS("unix-posix", posixIoFinder ), +#if !OS_VXWORKS + UNIXVFS("unix-flock", flockIoFinder ), +#endif +#endif +#if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) + UNIXVFS("unix-afp", afpIoFinder ), + UNIXVFS("unix-nfs", nfsIoFinder ), + UNIXVFS("unix-proxy", proxyIoFinder ), +#endif + }; + unsigned int i; /* Loop counter */ + + /* Double-check that the aSyscall[] array has been constructed + ** correctly. See ticket [bb3a86e890c8e96ab] */ + assert( ArraySize(aSyscall)==25 ); + + /* Register all VFSes defined in the aVfs[] array */ + for(i=0; i<(sizeof(aVfs)/sizeof(sqlite3_vfs)); i++){ + sqlite3_vfs_register(&aVfs[i], i==0); + } + return SQLITE_OK; +} + +/* +** Shutdown the operating system interface. +** +** Some operating systems might need to do some cleanup in this routine, +** to release dynamically allocated objects. But not on unix. +** This routine is a no-op for unix. +*/ +SQLITE_API int sqlite3_os_end(void){ + return SQLITE_OK; +} + +#endif /* SQLITE_OS_UNIX */ + +/************** End of os_unix.c *********************************************/ +/************** Begin file os_win.c ******************************************/ +/* +** 2004 May 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This file contains code that is specific to Windows. +*/ +#if SQLITE_OS_WIN /* This file is used for Windows only */ + +/* +** Include code that is common to all os_*.c files +*/ +/************** Include os_common.h in the middle of os_win.c ****************/ +/************** Begin file os_common.h ***************************************/ +/* +** 2004 May 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This file contains macros and a little bit of code that is common to +** all of the platform-specific files (os_*.c) and is #included into those +** files. +** +** This file should be #included by the os_*.c files only. It is not a +** general purpose header file. +*/ +#ifndef _OS_COMMON_H_ +#define _OS_COMMON_H_ + +/* +** At least two bugs have slipped in because we changed the MEMORY_DEBUG +** macro to SQLITE_DEBUG and some older makefiles have not yet made the +** switch. The following code should catch this problem at compile-time. +*/ +#ifdef MEMORY_DEBUG +# error "The MEMORY_DEBUG macro is obsolete. Use SQLITE_DEBUG instead." +#endif + +#if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) +# ifndef SQLITE_DEBUG_OS_TRACE +# define SQLITE_DEBUG_OS_TRACE 0 +# endif + int sqlite3OSTrace = SQLITE_DEBUG_OS_TRACE; +# define OSTRACE(X) if( sqlite3OSTrace ) sqlite3DebugPrintf X +#else +# define OSTRACE(X) +#endif + +/* +** Macros for performance tracing. Normally turned off. Only works +** on i486 hardware. +*/ +#ifdef SQLITE_PERFORMANCE_TRACE + +/* +** hwtime.h contains inline assembler code for implementing +** high-performance timing routines. +*/ +/************** Include hwtime.h in the middle of os_common.h ****************/ +/************** Begin file hwtime.h ******************************************/ +/* +** 2008 May 27 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This file contains inline asm code for retrieving "high-performance" +** counters for x86 class CPUs. +*/ +#ifndef _HWTIME_H_ +#define _HWTIME_H_ + +/* +** The following routine only works on pentium-class (or newer) processors. +** It uses the RDTSC opcode to read the cycle count value out of the +** processor and returns that value. This can be used for high-res +** profiling. +*/ +#if (defined(__GNUC__) || defined(_MSC_VER)) && \ + (defined(i386) || defined(__i386__) || defined(_M_IX86)) + + #if defined(__GNUC__) + + __inline__ sqlite_uint64 sqlite3Hwtime(void){ + unsigned int lo, hi; + __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi)); + return (sqlite_uint64)hi << 32 | lo; + } + + #elif defined(_MSC_VER) + + __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ + __asm { + rdtsc + ret ; return value at EDX:EAX + } + } + + #endif + +#elif (defined(__GNUC__) && defined(__x86_64__)) + + __inline__ sqlite_uint64 sqlite3Hwtime(void){ + unsigned long val; + __asm__ __volatile__ ("rdtsc" : "=A" (val)); + return val; + } + +#elif (defined(__GNUC__) && defined(__ppc__)) + + __inline__ sqlite_uint64 sqlite3Hwtime(void){ + unsigned long long retval; + unsigned long junk; + __asm__ __volatile__ ("\n\ + 1: mftbu %1\n\ + mftb %L0\n\ + mftbu %0\n\ + cmpw %0,%1\n\ + bne 1b" + : "=r" (retval), "=r" (junk)); + return retval; + } + +#else + + #error Need implementation of sqlite3Hwtime() for your platform. + + /* + ** To compile without implementing sqlite3Hwtime() for your platform, + ** you can remove the above #error and use the following + ** stub function. You will lose timing support for many + ** of the debugging and testing utilities, but it should at + ** least compile and run. + */ +SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); } + +#endif + +#endif /* !defined(_HWTIME_H_) */ + +/************** End of hwtime.h **********************************************/ +/************** Continuing where we left off in os_common.h ******************/ + +static sqlite_uint64 g_start; +static sqlite_uint64 g_elapsed; +#define TIMER_START g_start=sqlite3Hwtime() +#define TIMER_END g_elapsed=sqlite3Hwtime()-g_start +#define TIMER_ELAPSED g_elapsed +#else +#define TIMER_START +#define TIMER_END +#define TIMER_ELAPSED ((sqlite_uint64)0) +#endif + +/* +** If we compile with the SQLITE_TEST macro set, then the following block +** of code will give us the ability to simulate a disk I/O error. This +** is used for testing the I/O recovery logic. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_io_error_hit = 0; /* Total number of I/O Errors */ +SQLITE_API int sqlite3_io_error_hardhit = 0; /* Number of non-benign errors */ +SQLITE_API int sqlite3_io_error_pending = 0; /* Count down to first I/O error */ +SQLITE_API int sqlite3_io_error_persist = 0; /* True if I/O errors persist */ +SQLITE_API int sqlite3_io_error_benign = 0; /* True if errors are benign */ +SQLITE_API int sqlite3_diskfull_pending = 0; +SQLITE_API int sqlite3_diskfull = 0; +#define SimulateIOErrorBenign(X) sqlite3_io_error_benign=(X) +#define SimulateIOError(CODE) \ + if( (sqlite3_io_error_persist && sqlite3_io_error_hit) \ + || sqlite3_io_error_pending-- == 1 ) \ + { local_ioerr(); CODE; } +static void local_ioerr(){ + IOTRACE(("IOERR\n")); + sqlite3_io_error_hit++; + if( !sqlite3_io_error_benign ) sqlite3_io_error_hardhit++; +} +#define SimulateDiskfullError(CODE) \ + if( sqlite3_diskfull_pending ){ \ + if( sqlite3_diskfull_pending == 1 ){ \ + local_ioerr(); \ + sqlite3_diskfull = 1; \ + sqlite3_io_error_hit = 1; \ + CODE; \ + }else{ \ + sqlite3_diskfull_pending--; \ + } \ + } +#else +#define SimulateIOErrorBenign(X) +#define SimulateIOError(A) +#define SimulateDiskfullError(A) +#endif + +/* +** When testing, keep a count of the number of open files. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_open_file_count = 0; +#define OpenCounter(X) sqlite3_open_file_count+=(X) +#else +#define OpenCounter(X) +#endif + +#endif /* !defined(_OS_COMMON_H_) */ + +/************** End of os_common.h *******************************************/ +/************** Continuing where we left off in os_win.c *********************/ + +/* +** Include the header file for the Windows VFS. +*/ + +/* +** Compiling and using WAL mode requires several APIs that are only +** available in Windows platforms based on the NT kernel. +*/ +#if !SQLITE_OS_WINNT && !defined(SQLITE_OMIT_WAL) +# error "WAL mode requires support from the Windows NT kernel, compile\ + with SQLITE_OMIT_WAL." +#endif + +/* +** Are most of the Win32 ANSI APIs available (i.e. with certain exceptions +** based on the sub-platform)? +*/ +#if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(SQLITE_WIN32_NO_ANSI) +# define SQLITE_WIN32_HAS_ANSI +#endif + +/* +** Are most of the Win32 Unicode APIs available (i.e. with certain exceptions +** based on the sub-platform)? +*/ +#if (SQLITE_OS_WINCE || SQLITE_OS_WINNT || SQLITE_OS_WINRT) && \ + !defined(SQLITE_WIN32_NO_WIDE) +# define SQLITE_WIN32_HAS_WIDE +#endif + +/* +** Make sure at least one set of Win32 APIs is available. +*/ +#if !defined(SQLITE_WIN32_HAS_ANSI) && !defined(SQLITE_WIN32_HAS_WIDE) +# error "At least one of SQLITE_WIN32_HAS_ANSI and SQLITE_WIN32_HAS_WIDE\ + must be defined." +#endif + +/* +** Define the required Windows SDK version constants if they are not +** already available. +*/ +#ifndef NTDDI_WIN8 +# define NTDDI_WIN8 0x06020000 +#endif + +#ifndef NTDDI_WINBLUE +# define NTDDI_WINBLUE 0x06030000 +#endif + +/* +** Check if the GetVersionEx[AW] functions should be considered deprecated +** and avoid using them in that case. It should be noted here that if the +** value of the SQLITE_WIN32_GETVERSIONEX pre-processor macro is zero +** (whether via this block or via being manually specified), that implies +** the underlying operating system will always be based on the Windows NT +** Kernel. +*/ +#ifndef SQLITE_WIN32_GETVERSIONEX +# if defined(NTDDI_VERSION) && NTDDI_VERSION >= NTDDI_WINBLUE +# define SQLITE_WIN32_GETVERSIONEX 0 +# else +# define SQLITE_WIN32_GETVERSIONEX 1 +# endif +#endif + +/* +** This constant should already be defined (in the "WinDef.h" SDK file). +*/ +#ifndef MAX_PATH +# define MAX_PATH (260) +#endif + +/* +** Maximum pathname length (in chars) for Win32. This should normally be +** MAX_PATH. +*/ +#ifndef SQLITE_WIN32_MAX_PATH_CHARS +# define SQLITE_WIN32_MAX_PATH_CHARS (MAX_PATH) +#endif + +/* +** This constant should already be defined (in the "WinNT.h" SDK file). +*/ +#ifndef UNICODE_STRING_MAX_CHARS +# define UNICODE_STRING_MAX_CHARS (32767) +#endif + +/* +** Maximum pathname length (in chars) for WinNT. This should normally be +** UNICODE_STRING_MAX_CHARS. +*/ +#ifndef SQLITE_WINNT_MAX_PATH_CHARS +# define SQLITE_WINNT_MAX_PATH_CHARS (UNICODE_STRING_MAX_CHARS) +#endif + +/* +** Maximum pathname length (in bytes) for Win32. The MAX_PATH macro is in +** characters, so we allocate 4 bytes per character assuming worst-case of +** 4-bytes-per-character for UTF8. +*/ +#ifndef SQLITE_WIN32_MAX_PATH_BYTES +# define SQLITE_WIN32_MAX_PATH_BYTES (SQLITE_WIN32_MAX_PATH_CHARS*4) +#endif + +/* +** Maximum pathname length (in bytes) for WinNT. This should normally be +** UNICODE_STRING_MAX_CHARS * sizeof(WCHAR). +*/ +#ifndef SQLITE_WINNT_MAX_PATH_BYTES +# define SQLITE_WINNT_MAX_PATH_BYTES \ + (sizeof(WCHAR) * SQLITE_WINNT_MAX_PATH_CHARS) +#endif + +/* +** Maximum error message length (in chars) for WinRT. +*/ +#ifndef SQLITE_WIN32_MAX_ERRMSG_CHARS +# define SQLITE_WIN32_MAX_ERRMSG_CHARS (1024) +#endif + +/* +** Returns non-zero if the character should be treated as a directory +** separator. +*/ +#ifndef winIsDirSep +# define winIsDirSep(a) (((a) == '/') || ((a) == '\\')) +#endif + +/* +** This macro is used when a local variable is set to a value that is +** [sometimes] not used by the code (e.g. via conditional compilation). +*/ +#ifndef UNUSED_VARIABLE_VALUE +# define UNUSED_VARIABLE_VALUE(x) (void)(x) +#endif + +/* +** Returns the character that should be used as the directory separator. +*/ +#ifndef winGetDirSep +# define winGetDirSep() '\\' +#endif + +/* +** Do we need to manually define the Win32 file mapping APIs for use with WAL +** mode (e.g. these APIs are available in the Windows CE SDK; however, they +** are not present in the header file)? +*/ +#if SQLITE_WIN32_FILEMAPPING_API && !defined(SQLITE_OMIT_WAL) +/* +** Two of the file mapping APIs are different under WinRT. Figure out which +** set we need. +*/ +#if SQLITE_OS_WINRT +WINBASEAPI HANDLE WINAPI CreateFileMappingFromApp(HANDLE, \ + LPSECURITY_ATTRIBUTES, ULONG, ULONG64, LPCWSTR); + +WINBASEAPI LPVOID WINAPI MapViewOfFileFromApp(HANDLE, ULONG, ULONG64, SIZE_T); +#else +#if defined(SQLITE_WIN32_HAS_ANSI) +WINBASEAPI HANDLE WINAPI CreateFileMappingA(HANDLE, LPSECURITY_ATTRIBUTES, \ + DWORD, DWORD, DWORD, LPCSTR); +#endif /* defined(SQLITE_WIN32_HAS_ANSI) */ + +#if defined(SQLITE_WIN32_HAS_WIDE) +WINBASEAPI HANDLE WINAPI CreateFileMappingW(HANDLE, LPSECURITY_ATTRIBUTES, \ + DWORD, DWORD, DWORD, LPCWSTR); +#endif /* defined(SQLITE_WIN32_HAS_WIDE) */ + +WINBASEAPI LPVOID WINAPI MapViewOfFile(HANDLE, DWORD, DWORD, DWORD, SIZE_T); +#endif /* SQLITE_OS_WINRT */ + +/* +** This file mapping API is common to both Win32 and WinRT. +*/ +WINBASEAPI BOOL WINAPI UnmapViewOfFile(LPCVOID); +#endif /* SQLITE_WIN32_FILEMAPPING_API && !defined(SQLITE_OMIT_WAL) */ + +/* +** Some Microsoft compilers lack this definition. +*/ +#ifndef INVALID_FILE_ATTRIBUTES +# define INVALID_FILE_ATTRIBUTES ((DWORD)-1) +#endif + +#ifndef FILE_FLAG_MASK +# define FILE_FLAG_MASK (0xFF3C0000) +#endif + +#ifndef FILE_ATTRIBUTE_MASK +# define FILE_ATTRIBUTE_MASK (0x0003FFF7) +#endif + +#ifndef SQLITE_OMIT_WAL +/* Forward references to structures used for WAL */ +typedef struct winShm winShm; /* A connection to shared-memory */ +typedef struct winShmNode winShmNode; /* A region of shared-memory */ +#endif + +/* +** WinCE lacks native support for file locking so we have to fake it +** with some code of our own. +*/ +#if SQLITE_OS_WINCE +typedef struct winceLock { + int nReaders; /* Number of reader locks obtained */ + BOOL bPending; /* Indicates a pending lock has been obtained */ + BOOL bReserved; /* Indicates a reserved lock has been obtained */ + BOOL bExclusive; /* Indicates an exclusive lock has been obtained */ +} winceLock; +#endif + +/* +** The winFile structure is a subclass of sqlite3_file* specific to the win32 +** portability layer. +*/ +typedef struct winFile winFile; +struct winFile { + const sqlite3_io_methods *pMethod; /*** Must be first ***/ + sqlite3_vfs *pVfs; /* The VFS used to open this file */ + HANDLE h; /* Handle for accessing the file */ + u8 locktype; /* Type of lock currently held on this file */ + short sharedLockByte; /* Randomly chosen byte used as a shared lock */ + u8 ctrlFlags; /* Flags. See WINFILE_* below */ + DWORD lastErrno; /* The Windows errno from the last I/O error */ +#ifndef SQLITE_OMIT_WAL + winShm *pShm; /* Instance of shared memory on this file */ +#endif + const char *zPath; /* Full pathname of this file */ + int szChunk; /* Chunk size configured by FCNTL_CHUNK_SIZE */ +#if SQLITE_OS_WINCE + LPWSTR zDeleteOnClose; /* Name of file to delete when closing */ + HANDLE hMutex; /* Mutex used to control access to shared lock */ + HANDLE hShared; /* Shared memory segment used for locking */ + winceLock local; /* Locks obtained by this instance of winFile */ + winceLock *shared; /* Global shared lock memory for the file */ +#endif +#if SQLITE_MAX_MMAP_SIZE>0 + int nFetchOut; /* Number of outstanding xFetch references */ + HANDLE hMap; /* Handle for accessing memory mapping */ + void *pMapRegion; /* Area memory mapped */ + sqlite3_int64 mmapSize; /* Usable size of mapped region */ + sqlite3_int64 mmapSizeActual; /* Actual size of mapped region */ + sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */ +#endif +}; + +/* +** Allowed values for winFile.ctrlFlags +*/ +#define WINFILE_RDONLY 0x02 /* Connection is read only */ +#define WINFILE_PERSIST_WAL 0x04 /* Persistent WAL mode */ +#define WINFILE_PSOW 0x10 /* SQLITE_IOCAP_POWERSAFE_OVERWRITE */ + +/* + * The size of the buffer used by sqlite3_win32_write_debug(). + */ +#ifndef SQLITE_WIN32_DBG_BUF_SIZE +# define SQLITE_WIN32_DBG_BUF_SIZE ((int)(4096-sizeof(DWORD))) +#endif + +/* + * The value used with sqlite3_win32_set_directory() to specify that + * the data directory should be changed. + */ +#ifndef SQLITE_WIN32_DATA_DIRECTORY_TYPE +# define SQLITE_WIN32_DATA_DIRECTORY_TYPE (1) +#endif + +/* + * The value used with sqlite3_win32_set_directory() to specify that + * the temporary directory should be changed. + */ +#ifndef SQLITE_WIN32_TEMP_DIRECTORY_TYPE +# define SQLITE_WIN32_TEMP_DIRECTORY_TYPE (2) +#endif + +/* + * If compiled with SQLITE_WIN32_MALLOC on Windows, we will use the + * various Win32 API heap functions instead of our own. + */ +#ifdef SQLITE_WIN32_MALLOC + +/* + * If this is non-zero, an isolated heap will be created by the native Win32 + * allocator subsystem; otherwise, the default process heap will be used. This + * setting has no effect when compiling for WinRT. By default, this is enabled + * and an isolated heap will be created to store all allocated data. + * + ****************************************************************************** + * WARNING: It is important to note that when this setting is non-zero and the + * winMemShutdown function is called (e.g. by the sqlite3_shutdown + * function), all data that was allocated using the isolated heap will + * be freed immediately and any attempt to access any of that freed + * data will almost certainly result in an immediate access violation. + ****************************************************************************** + */ +#ifndef SQLITE_WIN32_HEAP_CREATE +# define SQLITE_WIN32_HEAP_CREATE (TRUE) +#endif + +/* + * The initial size of the Win32-specific heap. This value may be zero. + */ +#ifndef SQLITE_WIN32_HEAP_INIT_SIZE +# define SQLITE_WIN32_HEAP_INIT_SIZE ((SQLITE_DEFAULT_CACHE_SIZE) * \ + (SQLITE_DEFAULT_PAGE_SIZE) + 4194304) +#endif + +/* + * The maximum size of the Win32-specific heap. This value may be zero. + */ +#ifndef SQLITE_WIN32_HEAP_MAX_SIZE +# define SQLITE_WIN32_HEAP_MAX_SIZE (0) +#endif + +/* + * The extra flags to use in calls to the Win32 heap APIs. This value may be + * zero for the default behavior. + */ +#ifndef SQLITE_WIN32_HEAP_FLAGS +# define SQLITE_WIN32_HEAP_FLAGS (0) +#endif + + +/* +** The winMemData structure stores information required by the Win32-specific +** sqlite3_mem_methods implementation. +*/ +typedef struct winMemData winMemData; +struct winMemData { +#ifndef NDEBUG + u32 magic1; /* Magic number to detect structure corruption. */ +#endif + HANDLE hHeap; /* The handle to our heap. */ + BOOL bOwned; /* Do we own the heap (i.e. destroy it on shutdown)? */ +#ifndef NDEBUG + u32 magic2; /* Magic number to detect structure corruption. */ +#endif +}; + +#ifndef NDEBUG +#define WINMEM_MAGIC1 0x42b2830b +#define WINMEM_MAGIC2 0xbd4d7cf4 +#endif + +static struct winMemData win_mem_data = { +#ifndef NDEBUG + WINMEM_MAGIC1, +#endif + NULL, FALSE +#ifndef NDEBUG + ,WINMEM_MAGIC2 +#endif +}; + +#ifndef NDEBUG +#define winMemAssertMagic1() assert( win_mem_data.magic1==WINMEM_MAGIC1 ) +#define winMemAssertMagic2() assert( win_mem_data.magic2==WINMEM_MAGIC2 ) +#define winMemAssertMagic() winMemAssertMagic1(); winMemAssertMagic2(); +#else +#define winMemAssertMagic() +#endif + +#define winMemGetDataPtr() &win_mem_data +#define winMemGetHeap() win_mem_data.hHeap +#define winMemGetOwned() win_mem_data.bOwned + +static void *winMemMalloc(int nBytes); +static void winMemFree(void *pPrior); +static void *winMemRealloc(void *pPrior, int nBytes); +static int winMemSize(void *p); +static int winMemRoundup(int n); +static int winMemInit(void *pAppData); +static void winMemShutdown(void *pAppData); + +SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void); +#endif /* SQLITE_WIN32_MALLOC */ + +/* +** The following variable is (normally) set once and never changes +** thereafter. It records whether the operating system is Win9x +** or WinNT. +** +** 0: Operating system unknown. +** 1: Operating system is Win9x. +** 2: Operating system is WinNT. +** +** In order to facilitate testing on a WinNT system, the test fixture +** can manually set this value to 1 to emulate Win98 behavior. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_os_type = 0; +#elif !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && \ + defined(SQLITE_WIN32_HAS_ANSI) && defined(SQLITE_WIN32_HAS_WIDE) +static int sqlite3_os_type = 0; +#endif + +#ifndef SYSCALL +# define SYSCALL sqlite3_syscall_ptr +#endif + +/* +** This function is not available on Windows CE or WinRT. + */ + +#if SQLITE_OS_WINCE || SQLITE_OS_WINRT +# define osAreFileApisANSI() 1 +#endif + +/* +** Many system calls are accessed through pointer-to-functions so that +** they may be overridden at runtime to facilitate fault injection during +** testing and sandboxing. The following array holds the names and pointers +** to all overrideable system calls. +*/ +static struct win_syscall { + const char *zName; /* Name of the system call */ + sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ + sqlite3_syscall_ptr pDefault; /* Default value */ +} aSyscall[] = { +#if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT + { "AreFileApisANSI", (SYSCALL)AreFileApisANSI, 0 }, +#else + { "AreFileApisANSI", (SYSCALL)0, 0 }, +#endif + +#ifndef osAreFileApisANSI +#define osAreFileApisANSI ((BOOL(WINAPI*)(VOID))aSyscall[0].pCurrent) +#endif + +#if SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_WIDE) + { "CharLowerW", (SYSCALL)CharLowerW, 0 }, +#else + { "CharLowerW", (SYSCALL)0, 0 }, +#endif + +#define osCharLowerW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[1].pCurrent) + +#if SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_WIDE) + { "CharUpperW", (SYSCALL)CharUpperW, 0 }, +#else + { "CharUpperW", (SYSCALL)0, 0 }, +#endif + +#define osCharUpperW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[2].pCurrent) + + { "CloseHandle", (SYSCALL)CloseHandle, 0 }, + +#define osCloseHandle ((BOOL(WINAPI*)(HANDLE))aSyscall[3].pCurrent) + +#if defined(SQLITE_WIN32_HAS_ANSI) + { "CreateFileA", (SYSCALL)CreateFileA, 0 }, +#else + { "CreateFileA", (SYSCALL)0, 0 }, +#endif + +#define osCreateFileA ((HANDLE(WINAPI*)(LPCSTR,DWORD,DWORD, \ + LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[4].pCurrent) + +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) + { "CreateFileW", (SYSCALL)CreateFileW, 0 }, +#else + { "CreateFileW", (SYSCALL)0, 0 }, +#endif + +#define osCreateFileW ((HANDLE(WINAPI*)(LPCWSTR,DWORD,DWORD, \ + LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[5].pCurrent) + +#if (!SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_ANSI) && \ + !defined(SQLITE_OMIT_WAL)) + { "CreateFileMappingA", (SYSCALL)CreateFileMappingA, 0 }, +#else + { "CreateFileMappingA", (SYSCALL)0, 0 }, +#endif + +#define osCreateFileMappingA ((HANDLE(WINAPI*)(HANDLE,LPSECURITY_ATTRIBUTES, \ + DWORD,DWORD,DWORD,LPCSTR))aSyscall[6].pCurrent) + +#if SQLITE_OS_WINCE || (!SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \ + !defined(SQLITE_OMIT_WAL)) + { "CreateFileMappingW", (SYSCALL)CreateFileMappingW, 0 }, +#else + { "CreateFileMappingW", (SYSCALL)0, 0 }, +#endif + +#define osCreateFileMappingW ((HANDLE(WINAPI*)(HANDLE,LPSECURITY_ATTRIBUTES, \ + DWORD,DWORD,DWORD,LPCWSTR))aSyscall[7].pCurrent) + +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) + { "CreateMutexW", (SYSCALL)CreateMutexW, 0 }, +#else + { "CreateMutexW", (SYSCALL)0, 0 }, +#endif + +#define osCreateMutexW ((HANDLE(WINAPI*)(LPSECURITY_ATTRIBUTES,BOOL, \ + LPCWSTR))aSyscall[8].pCurrent) + +#if defined(SQLITE_WIN32_HAS_ANSI) + { "DeleteFileA", (SYSCALL)DeleteFileA, 0 }, +#else + { "DeleteFileA", (SYSCALL)0, 0 }, +#endif + +#define osDeleteFileA ((BOOL(WINAPI*)(LPCSTR))aSyscall[9].pCurrent) + +#if defined(SQLITE_WIN32_HAS_WIDE) + { "DeleteFileW", (SYSCALL)DeleteFileW, 0 }, +#else + { "DeleteFileW", (SYSCALL)0, 0 }, +#endif + +#define osDeleteFileW ((BOOL(WINAPI*)(LPCWSTR))aSyscall[10].pCurrent) + +#if SQLITE_OS_WINCE + { "FileTimeToLocalFileTime", (SYSCALL)FileTimeToLocalFileTime, 0 }, +#else + { "FileTimeToLocalFileTime", (SYSCALL)0, 0 }, +#endif + +#define osFileTimeToLocalFileTime ((BOOL(WINAPI*)(CONST FILETIME*, \ + LPFILETIME))aSyscall[11].pCurrent) + +#if SQLITE_OS_WINCE + { "FileTimeToSystemTime", (SYSCALL)FileTimeToSystemTime, 0 }, +#else + { "FileTimeToSystemTime", (SYSCALL)0, 0 }, +#endif + +#define osFileTimeToSystemTime ((BOOL(WINAPI*)(CONST FILETIME*, \ + LPSYSTEMTIME))aSyscall[12].pCurrent) + + { "FlushFileBuffers", (SYSCALL)FlushFileBuffers, 0 }, + +#define osFlushFileBuffers ((BOOL(WINAPI*)(HANDLE))aSyscall[13].pCurrent) + +#if defined(SQLITE_WIN32_HAS_ANSI) + { "FormatMessageA", (SYSCALL)FormatMessageA, 0 }, +#else + { "FormatMessageA", (SYSCALL)0, 0 }, +#endif + +#define osFormatMessageA ((DWORD(WINAPI*)(DWORD,LPCVOID,DWORD,DWORD,LPSTR, \ + DWORD,va_list*))aSyscall[14].pCurrent) + +#if defined(SQLITE_WIN32_HAS_WIDE) + { "FormatMessageW", (SYSCALL)FormatMessageW, 0 }, +#else + { "FormatMessageW", (SYSCALL)0, 0 }, +#endif + +#define osFormatMessageW ((DWORD(WINAPI*)(DWORD,LPCVOID,DWORD,DWORD,LPWSTR, \ + DWORD,va_list*))aSyscall[15].pCurrent) + +#if !defined(SQLITE_OMIT_LOAD_EXTENSION) + { "FreeLibrary", (SYSCALL)FreeLibrary, 0 }, +#else + { "FreeLibrary", (SYSCALL)0, 0 }, +#endif + +#define osFreeLibrary ((BOOL(WINAPI*)(HMODULE))aSyscall[16].pCurrent) + + { "GetCurrentProcessId", (SYSCALL)GetCurrentProcessId, 0 }, + +#define osGetCurrentProcessId ((DWORD(WINAPI*)(VOID))aSyscall[17].pCurrent) + +#if !SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_ANSI) + { "GetDiskFreeSpaceA", (SYSCALL)GetDiskFreeSpaceA, 0 }, +#else + { "GetDiskFreeSpaceA", (SYSCALL)0, 0 }, +#endif + +#define osGetDiskFreeSpaceA ((BOOL(WINAPI*)(LPCSTR,LPDWORD,LPDWORD,LPDWORD, \ + LPDWORD))aSyscall[18].pCurrent) + +#if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) + { "GetDiskFreeSpaceW", (SYSCALL)GetDiskFreeSpaceW, 0 }, +#else + { "GetDiskFreeSpaceW", (SYSCALL)0, 0 }, +#endif + +#define osGetDiskFreeSpaceW ((BOOL(WINAPI*)(LPCWSTR,LPDWORD,LPDWORD,LPDWORD, \ + LPDWORD))aSyscall[19].pCurrent) + +#if defined(SQLITE_WIN32_HAS_ANSI) + { "GetFileAttributesA", (SYSCALL)GetFileAttributesA, 0 }, +#else + { "GetFileAttributesA", (SYSCALL)0, 0 }, +#endif + +#define osGetFileAttributesA ((DWORD(WINAPI*)(LPCSTR))aSyscall[20].pCurrent) + +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) + { "GetFileAttributesW", (SYSCALL)GetFileAttributesW, 0 }, +#else + { "GetFileAttributesW", (SYSCALL)0, 0 }, +#endif + +#define osGetFileAttributesW ((DWORD(WINAPI*)(LPCWSTR))aSyscall[21].pCurrent) + +#if defined(SQLITE_WIN32_HAS_WIDE) + { "GetFileAttributesExW", (SYSCALL)GetFileAttributesExW, 0 }, +#else + { "GetFileAttributesExW", (SYSCALL)0, 0 }, +#endif + +#define osGetFileAttributesExW ((BOOL(WINAPI*)(LPCWSTR,GET_FILEEX_INFO_LEVELS, \ + LPVOID))aSyscall[22].pCurrent) + +#if !SQLITE_OS_WINRT + { "GetFileSize", (SYSCALL)GetFileSize, 0 }, +#else + { "GetFileSize", (SYSCALL)0, 0 }, +#endif + +#define osGetFileSize ((DWORD(WINAPI*)(HANDLE,LPDWORD))aSyscall[23].pCurrent) + +#if !SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_ANSI) + { "GetFullPathNameA", (SYSCALL)GetFullPathNameA, 0 }, +#else + { "GetFullPathNameA", (SYSCALL)0, 0 }, +#endif + +#define osGetFullPathNameA ((DWORD(WINAPI*)(LPCSTR,DWORD,LPSTR, \ + LPSTR*))aSyscall[24].pCurrent) + +#if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) + { "GetFullPathNameW", (SYSCALL)GetFullPathNameW, 0 }, +#else + { "GetFullPathNameW", (SYSCALL)0, 0 }, +#endif + +#define osGetFullPathNameW ((DWORD(WINAPI*)(LPCWSTR,DWORD,LPWSTR, \ + LPWSTR*))aSyscall[25].pCurrent) + + { "GetLastError", (SYSCALL)GetLastError, 0 }, + +#define osGetLastError ((DWORD(WINAPI*)(VOID))aSyscall[26].pCurrent) + +#if !defined(SQLITE_OMIT_LOAD_EXTENSION) +#if SQLITE_OS_WINCE + /* The GetProcAddressA() routine is only available on Windows CE. */ + { "GetProcAddressA", (SYSCALL)GetProcAddressA, 0 }, +#else + /* All other Windows platforms expect GetProcAddress() to take + ** an ANSI string regardless of the _UNICODE setting */ + { "GetProcAddressA", (SYSCALL)GetProcAddress, 0 }, +#endif +#else + { "GetProcAddressA", (SYSCALL)0, 0 }, +#endif + +#define osGetProcAddressA ((FARPROC(WINAPI*)(HMODULE, \ + LPCSTR))aSyscall[27].pCurrent) + +#if !SQLITE_OS_WINRT + { "GetSystemInfo", (SYSCALL)GetSystemInfo, 0 }, +#else + { "GetSystemInfo", (SYSCALL)0, 0 }, +#endif + +#define osGetSystemInfo ((VOID(WINAPI*)(LPSYSTEM_INFO))aSyscall[28].pCurrent) + + { "GetSystemTime", (SYSCALL)GetSystemTime, 0 }, + +#define osGetSystemTime ((VOID(WINAPI*)(LPSYSTEMTIME))aSyscall[29].pCurrent) + +#if !SQLITE_OS_WINCE + { "GetSystemTimeAsFileTime", (SYSCALL)GetSystemTimeAsFileTime, 0 }, +#else + { "GetSystemTimeAsFileTime", (SYSCALL)0, 0 }, +#endif + +#define osGetSystemTimeAsFileTime ((VOID(WINAPI*)( \ + LPFILETIME))aSyscall[30].pCurrent) + +#if defined(SQLITE_WIN32_HAS_ANSI) + { "GetTempPathA", (SYSCALL)GetTempPathA, 0 }, +#else + { "GetTempPathA", (SYSCALL)0, 0 }, +#endif + +#define osGetTempPathA ((DWORD(WINAPI*)(DWORD,LPSTR))aSyscall[31].pCurrent) + +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) + { "GetTempPathW", (SYSCALL)GetTempPathW, 0 }, +#else + { "GetTempPathW", (SYSCALL)0, 0 }, +#endif + +#define osGetTempPathW ((DWORD(WINAPI*)(DWORD,LPWSTR))aSyscall[32].pCurrent) + +#if !SQLITE_OS_WINRT + { "GetTickCount", (SYSCALL)GetTickCount, 0 }, +#else + { "GetTickCount", (SYSCALL)0, 0 }, +#endif + +#define osGetTickCount ((DWORD(WINAPI*)(VOID))aSyscall[33].pCurrent) + +#if defined(SQLITE_WIN32_HAS_ANSI) && defined(SQLITE_WIN32_GETVERSIONEX) && \ + SQLITE_WIN32_GETVERSIONEX + { "GetVersionExA", (SYSCALL)GetVersionExA, 0 }, +#else + { "GetVersionExA", (SYSCALL)0, 0 }, +#endif + +#define osGetVersionExA ((BOOL(WINAPI*)( \ + LPOSVERSIONINFOA))aSyscall[34].pCurrent) + +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \ + defined(SQLITE_WIN32_GETVERSIONEX) && SQLITE_WIN32_GETVERSIONEX + { "GetVersionExW", (SYSCALL)GetVersionExW, 0 }, +#else + { "GetVersionExW", (SYSCALL)0, 0 }, +#endif + +#define osGetVersionExW ((BOOL(WINAPI*)( \ + LPOSVERSIONINFOW))aSyscall[35].pCurrent) + + { "HeapAlloc", (SYSCALL)HeapAlloc, 0 }, + +#define osHeapAlloc ((LPVOID(WINAPI*)(HANDLE,DWORD, \ + SIZE_T))aSyscall[36].pCurrent) + +#if !SQLITE_OS_WINRT + { "HeapCreate", (SYSCALL)HeapCreate, 0 }, +#else + { "HeapCreate", (SYSCALL)0, 0 }, +#endif + +#define osHeapCreate ((HANDLE(WINAPI*)(DWORD,SIZE_T, \ + SIZE_T))aSyscall[37].pCurrent) + +#if !SQLITE_OS_WINRT + { "HeapDestroy", (SYSCALL)HeapDestroy, 0 }, +#else + { "HeapDestroy", (SYSCALL)0, 0 }, +#endif + +#define osHeapDestroy ((BOOL(WINAPI*)(HANDLE))aSyscall[38].pCurrent) + + { "HeapFree", (SYSCALL)HeapFree, 0 }, + +#define osHeapFree ((BOOL(WINAPI*)(HANDLE,DWORD,LPVOID))aSyscall[39].pCurrent) + + { "HeapReAlloc", (SYSCALL)HeapReAlloc, 0 }, + +#define osHeapReAlloc ((LPVOID(WINAPI*)(HANDLE,DWORD,LPVOID, \ + SIZE_T))aSyscall[40].pCurrent) + + { "HeapSize", (SYSCALL)HeapSize, 0 }, + +#define osHeapSize ((SIZE_T(WINAPI*)(HANDLE,DWORD, \ + LPCVOID))aSyscall[41].pCurrent) + +#if !SQLITE_OS_WINRT + { "HeapValidate", (SYSCALL)HeapValidate, 0 }, +#else + { "HeapValidate", (SYSCALL)0, 0 }, +#endif + +#define osHeapValidate ((BOOL(WINAPI*)(HANDLE,DWORD, \ + LPCVOID))aSyscall[42].pCurrent) + +#if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT + { "HeapCompact", (SYSCALL)HeapCompact, 0 }, +#else + { "HeapCompact", (SYSCALL)0, 0 }, +#endif + +#define osHeapCompact ((UINT(WINAPI*)(HANDLE,DWORD))aSyscall[43].pCurrent) + +#if defined(SQLITE_WIN32_HAS_ANSI) && !defined(SQLITE_OMIT_LOAD_EXTENSION) + { "LoadLibraryA", (SYSCALL)LoadLibraryA, 0 }, +#else + { "LoadLibraryA", (SYSCALL)0, 0 }, +#endif + +#define osLoadLibraryA ((HMODULE(WINAPI*)(LPCSTR))aSyscall[44].pCurrent) + +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \ + !defined(SQLITE_OMIT_LOAD_EXTENSION) + { "LoadLibraryW", (SYSCALL)LoadLibraryW, 0 }, +#else + { "LoadLibraryW", (SYSCALL)0, 0 }, +#endif + +#define osLoadLibraryW ((HMODULE(WINAPI*)(LPCWSTR))aSyscall[45].pCurrent) + +#if !SQLITE_OS_WINRT + { "LocalFree", (SYSCALL)LocalFree, 0 }, +#else + { "LocalFree", (SYSCALL)0, 0 }, +#endif + +#define osLocalFree ((HLOCAL(WINAPI*)(HLOCAL))aSyscall[46].pCurrent) + +#if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT + { "LockFile", (SYSCALL)LockFile, 0 }, +#else + { "LockFile", (SYSCALL)0, 0 }, +#endif + +#ifndef osLockFile +#define osLockFile ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ + DWORD))aSyscall[47].pCurrent) +#endif + +#if !SQLITE_OS_WINCE + { "LockFileEx", (SYSCALL)LockFileEx, 0 }, +#else + { "LockFileEx", (SYSCALL)0, 0 }, +#endif + +#ifndef osLockFileEx +#define osLockFileEx ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD,DWORD, \ + LPOVERLAPPED))aSyscall[48].pCurrent) +#endif + +#if SQLITE_OS_WINCE || (!SQLITE_OS_WINRT && !defined(SQLITE_OMIT_WAL)) + { "MapViewOfFile", (SYSCALL)MapViewOfFile, 0 }, +#else + { "MapViewOfFile", (SYSCALL)0, 0 }, +#endif + +#define osMapViewOfFile ((LPVOID(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ + SIZE_T))aSyscall[49].pCurrent) + + { "MultiByteToWideChar", (SYSCALL)MultiByteToWideChar, 0 }, + +#define osMultiByteToWideChar ((int(WINAPI*)(UINT,DWORD,LPCSTR,int,LPWSTR, \ + int))aSyscall[50].pCurrent) + + { "QueryPerformanceCounter", (SYSCALL)QueryPerformanceCounter, 0 }, + +#define osQueryPerformanceCounter ((BOOL(WINAPI*)( \ + LARGE_INTEGER*))aSyscall[51].pCurrent) + + { "ReadFile", (SYSCALL)ReadFile, 0 }, + +#define osReadFile ((BOOL(WINAPI*)(HANDLE,LPVOID,DWORD,LPDWORD, \ + LPOVERLAPPED))aSyscall[52].pCurrent) + + { "SetEndOfFile", (SYSCALL)SetEndOfFile, 0 }, + +#define osSetEndOfFile ((BOOL(WINAPI*)(HANDLE))aSyscall[53].pCurrent) + +#if !SQLITE_OS_WINRT + { "SetFilePointer", (SYSCALL)SetFilePointer, 0 }, +#else + { "SetFilePointer", (SYSCALL)0, 0 }, +#endif + +#define osSetFilePointer ((DWORD(WINAPI*)(HANDLE,LONG,PLONG, \ + DWORD))aSyscall[54].pCurrent) + +#if !SQLITE_OS_WINRT + { "Sleep", (SYSCALL)Sleep, 0 }, +#else + { "Sleep", (SYSCALL)0, 0 }, +#endif + +#define osSleep ((VOID(WINAPI*)(DWORD))aSyscall[55].pCurrent) + + { "SystemTimeToFileTime", (SYSCALL)SystemTimeToFileTime, 0 }, + +#define osSystemTimeToFileTime ((BOOL(WINAPI*)(CONST SYSTEMTIME*, \ + LPFILETIME))aSyscall[56].pCurrent) + +#if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT + { "UnlockFile", (SYSCALL)UnlockFile, 0 }, +#else + { "UnlockFile", (SYSCALL)0, 0 }, +#endif + +#ifndef osUnlockFile +#define osUnlockFile ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ + DWORD))aSyscall[57].pCurrent) +#endif + +#if !SQLITE_OS_WINCE + { "UnlockFileEx", (SYSCALL)UnlockFileEx, 0 }, +#else + { "UnlockFileEx", (SYSCALL)0, 0 }, +#endif + +#define osUnlockFileEx ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ + LPOVERLAPPED))aSyscall[58].pCurrent) + +#if SQLITE_OS_WINCE || !defined(SQLITE_OMIT_WAL) + { "UnmapViewOfFile", (SYSCALL)UnmapViewOfFile, 0 }, +#else + { "UnmapViewOfFile", (SYSCALL)0, 0 }, +#endif + +#define osUnmapViewOfFile ((BOOL(WINAPI*)(LPCVOID))aSyscall[59].pCurrent) + + { "WideCharToMultiByte", (SYSCALL)WideCharToMultiByte, 0 }, + +#define osWideCharToMultiByte ((int(WINAPI*)(UINT,DWORD,LPCWSTR,int,LPSTR,int, \ + LPCSTR,LPBOOL))aSyscall[60].pCurrent) + + { "WriteFile", (SYSCALL)WriteFile, 0 }, + +#define osWriteFile ((BOOL(WINAPI*)(HANDLE,LPCVOID,DWORD,LPDWORD, \ + LPOVERLAPPED))aSyscall[61].pCurrent) + +#if SQLITE_OS_WINRT + { "CreateEventExW", (SYSCALL)CreateEventExW, 0 }, +#else + { "CreateEventExW", (SYSCALL)0, 0 }, +#endif + +#define osCreateEventExW ((HANDLE(WINAPI*)(LPSECURITY_ATTRIBUTES,LPCWSTR, \ + DWORD,DWORD))aSyscall[62].pCurrent) + +#if !SQLITE_OS_WINRT + { "WaitForSingleObject", (SYSCALL)WaitForSingleObject, 0 }, +#else + { "WaitForSingleObject", (SYSCALL)0, 0 }, +#endif + +#define osWaitForSingleObject ((DWORD(WINAPI*)(HANDLE, \ + DWORD))aSyscall[63].pCurrent) + +#if SQLITE_OS_WINRT + { "WaitForSingleObjectEx", (SYSCALL)WaitForSingleObjectEx, 0 }, +#else + { "WaitForSingleObjectEx", (SYSCALL)0, 0 }, +#endif + +#define osWaitForSingleObjectEx ((DWORD(WINAPI*)(HANDLE,DWORD, \ + BOOL))aSyscall[64].pCurrent) + +#if SQLITE_OS_WINRT + { "SetFilePointerEx", (SYSCALL)SetFilePointerEx, 0 }, +#else + { "SetFilePointerEx", (SYSCALL)0, 0 }, +#endif + +#define osSetFilePointerEx ((BOOL(WINAPI*)(HANDLE,LARGE_INTEGER, \ + PLARGE_INTEGER,DWORD))aSyscall[65].pCurrent) + +#if SQLITE_OS_WINRT + { "GetFileInformationByHandleEx", (SYSCALL)GetFileInformationByHandleEx, 0 }, +#else + { "GetFileInformationByHandleEx", (SYSCALL)0, 0 }, +#endif + +#define osGetFileInformationByHandleEx ((BOOL(WINAPI*)(HANDLE, \ + FILE_INFO_BY_HANDLE_CLASS,LPVOID,DWORD))aSyscall[66].pCurrent) + +#if SQLITE_OS_WINRT && !defined(SQLITE_OMIT_WAL) + { "MapViewOfFileFromApp", (SYSCALL)MapViewOfFileFromApp, 0 }, +#else + { "MapViewOfFileFromApp", (SYSCALL)0, 0 }, +#endif + +#define osMapViewOfFileFromApp ((LPVOID(WINAPI*)(HANDLE,ULONG,ULONG64, \ + SIZE_T))aSyscall[67].pCurrent) + +#if SQLITE_OS_WINRT + { "CreateFile2", (SYSCALL)CreateFile2, 0 }, +#else + { "CreateFile2", (SYSCALL)0, 0 }, +#endif + +#define osCreateFile2 ((HANDLE(WINAPI*)(LPCWSTR,DWORD,DWORD,DWORD, \ + LPCREATEFILE2_EXTENDED_PARAMETERS))aSyscall[68].pCurrent) + +#if SQLITE_OS_WINRT && !defined(SQLITE_OMIT_LOAD_EXTENSION) + { "LoadPackagedLibrary", (SYSCALL)LoadPackagedLibrary, 0 }, +#else + { "LoadPackagedLibrary", (SYSCALL)0, 0 }, +#endif + +#define osLoadPackagedLibrary ((HMODULE(WINAPI*)(LPCWSTR, \ + DWORD))aSyscall[69].pCurrent) + +#if SQLITE_OS_WINRT + { "GetTickCount64", (SYSCALL)GetTickCount64, 0 }, +#else + { "GetTickCount64", (SYSCALL)0, 0 }, +#endif + +#define osGetTickCount64 ((ULONGLONG(WINAPI*)(VOID))aSyscall[70].pCurrent) + +#if SQLITE_OS_WINRT + { "GetNativeSystemInfo", (SYSCALL)GetNativeSystemInfo, 0 }, +#else + { "GetNativeSystemInfo", (SYSCALL)0, 0 }, +#endif + +#define osGetNativeSystemInfo ((VOID(WINAPI*)( \ + LPSYSTEM_INFO))aSyscall[71].pCurrent) + +#if defined(SQLITE_WIN32_HAS_ANSI) + { "OutputDebugStringA", (SYSCALL)OutputDebugStringA, 0 }, +#else + { "OutputDebugStringA", (SYSCALL)0, 0 }, +#endif + +#define osOutputDebugStringA ((VOID(WINAPI*)(LPCSTR))aSyscall[72].pCurrent) + +#if defined(SQLITE_WIN32_HAS_WIDE) + { "OutputDebugStringW", (SYSCALL)OutputDebugStringW, 0 }, +#else + { "OutputDebugStringW", (SYSCALL)0, 0 }, +#endif + +#define osOutputDebugStringW ((VOID(WINAPI*)(LPCWSTR))aSyscall[73].pCurrent) + + { "GetProcessHeap", (SYSCALL)GetProcessHeap, 0 }, + +#define osGetProcessHeap ((HANDLE(WINAPI*)(VOID))aSyscall[74].pCurrent) + +#if SQLITE_OS_WINRT && !defined(SQLITE_OMIT_WAL) + { "CreateFileMappingFromApp", (SYSCALL)CreateFileMappingFromApp, 0 }, +#else + { "CreateFileMappingFromApp", (SYSCALL)0, 0 }, +#endif + +#define osCreateFileMappingFromApp ((HANDLE(WINAPI*)(HANDLE, \ + LPSECURITY_ATTRIBUTES,ULONG,ULONG64,LPCWSTR))aSyscall[75].pCurrent) + +}; /* End of the overrideable system calls */ + +/* +** This is the xSetSystemCall() method of sqlite3_vfs for all of the +** "win32" VFSes. Return SQLITE_OK opon successfully updating the +** system call pointer, or SQLITE_NOTFOUND if there is no configurable +** system call named zName. +*/ +static int winSetSystemCall( + sqlite3_vfs *pNotUsed, /* The VFS pointer. Not used */ + const char *zName, /* Name of system call to override */ + sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */ +){ + unsigned int i; + int rc = SQLITE_NOTFOUND; + + UNUSED_PARAMETER(pNotUsed); + if( zName==0 ){ + /* If no zName is given, restore all system calls to their default + ** settings and return NULL + */ + rc = SQLITE_OK; + for(i=0; i0 ){ + memset(zDbgBuf, 0, SQLITE_WIN32_DBG_BUF_SIZE); + memcpy(zDbgBuf, zBuf, nMin); + osOutputDebugStringA(zDbgBuf); + }else{ + osOutputDebugStringA(zBuf); + } +#elif defined(SQLITE_WIN32_HAS_WIDE) + memset(zDbgBuf, 0, SQLITE_WIN32_DBG_BUF_SIZE); + if ( osMultiByteToWideChar( + osAreFileApisANSI() ? CP_ACP : CP_OEMCP, 0, zBuf, + nMin, (LPWSTR)zDbgBuf, SQLITE_WIN32_DBG_BUF_SIZE/sizeof(WCHAR))<=0 ){ + return; + } + osOutputDebugStringW((LPCWSTR)zDbgBuf); +#else + if( nMin>0 ){ + memset(zDbgBuf, 0, SQLITE_WIN32_DBG_BUF_SIZE); + memcpy(zDbgBuf, zBuf, nMin); + fprintf(stderr, "%s", zDbgBuf); + }else{ + fprintf(stderr, "%s", zBuf); + } +#endif +} + +/* +** The following routine suspends the current thread for at least ms +** milliseconds. This is equivalent to the Win32 Sleep() interface. +*/ +#if SQLITE_OS_WINRT +static HANDLE sleepObj = NULL; +#endif + +SQLITE_API void sqlite3_win32_sleep(DWORD milliseconds){ +#if SQLITE_OS_WINRT + if ( sleepObj==NULL ){ + sleepObj = osCreateEventExW(NULL, NULL, CREATE_EVENT_MANUAL_RESET, + SYNCHRONIZE); + } + assert( sleepObj!=NULL ); + osWaitForSingleObjectEx(sleepObj, milliseconds, FALSE); +#else + osSleep(milliseconds); +#endif +} + +/* +** Return true (non-zero) if we are running under WinNT, Win2K, WinXP, +** or WinCE. Return false (zero) for Win95, Win98, or WinME. +** +** Here is an interesting observation: Win95, Win98, and WinME lack +** the LockFileEx() API. But we can still statically link against that +** API as long as we don't call it when running Win95/98/ME. A call to +** this routine is used to determine if the host is Win95/98/ME or +** WinNT/2K/XP so that we will know whether or not we can safely call +** the LockFileEx() API. +*/ + +#if !defined(SQLITE_WIN32_GETVERSIONEX) || !SQLITE_WIN32_GETVERSIONEX +# define osIsNT() (1) +#elif SQLITE_OS_WINCE || SQLITE_OS_WINRT || !defined(SQLITE_WIN32_HAS_ANSI) +# define osIsNT() (1) +#elif !defined(SQLITE_WIN32_HAS_WIDE) +# define osIsNT() (0) +#else + static int osIsNT(void){ + if( sqlite3_os_type==0 ){ +#if defined(NTDDI_VERSION) && NTDDI_VERSION >= NTDDI_WIN8 + OSVERSIONINFOW sInfo; + sInfo.dwOSVersionInfoSize = sizeof(sInfo); + osGetVersionExW(&sInfo); +#else + OSVERSIONINFOA sInfo; + sInfo.dwOSVersionInfoSize = sizeof(sInfo); + osGetVersionExA(&sInfo); +#endif + sqlite3_os_type = sInfo.dwPlatformId==VER_PLATFORM_WIN32_NT ? 2 : 1; + } + return sqlite3_os_type==2; + } +#endif + +#ifdef SQLITE_WIN32_MALLOC +/* +** Allocate nBytes of memory. +*/ +static void *winMemMalloc(int nBytes){ + HANDLE hHeap; + void *p; + + winMemAssertMagic(); + hHeap = winMemGetHeap(); + assert( hHeap!=0 ); + assert( hHeap!=INVALID_HANDLE_VALUE ); +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) + assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); +#endif + assert( nBytes>=0 ); + p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); + if( !p ){ + sqlite3_log(SQLITE_NOMEM, "failed to HeapAlloc %u bytes (%lu), heap=%p", + nBytes, osGetLastError(), (void*)hHeap); + } + return p; +} + +/* +** Free memory. +*/ +static void winMemFree(void *pPrior){ + HANDLE hHeap; + + winMemAssertMagic(); + hHeap = winMemGetHeap(); + assert( hHeap!=0 ); + assert( hHeap!=INVALID_HANDLE_VALUE ); +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) + assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ); +#endif + if( !pPrior ) return; /* Passing NULL to HeapFree is undefined. */ + if( !osHeapFree(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ){ + sqlite3_log(SQLITE_NOMEM, "failed to HeapFree block %p (%lu), heap=%p", + pPrior, osGetLastError(), (void*)hHeap); + } +} + +/* +** Change the size of an existing memory allocation +*/ +static void *winMemRealloc(void *pPrior, int nBytes){ + HANDLE hHeap; + void *p; + + winMemAssertMagic(); + hHeap = winMemGetHeap(); + assert( hHeap!=0 ); + assert( hHeap!=INVALID_HANDLE_VALUE ); +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) + assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ); +#endif + assert( nBytes>=0 ); + if( !pPrior ){ + p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); + }else{ + p = osHeapReAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior, (SIZE_T)nBytes); + } + if( !p ){ + sqlite3_log(SQLITE_NOMEM, "failed to %s %u bytes (%lu), heap=%p", + pPrior ? "HeapReAlloc" : "HeapAlloc", nBytes, osGetLastError(), + (void*)hHeap); + } + return p; +} + +/* +** Return the size of an outstanding allocation, in bytes. +*/ +static int winMemSize(void *p){ + HANDLE hHeap; + SIZE_T n; + + winMemAssertMagic(); + hHeap = winMemGetHeap(); + assert( hHeap!=0 ); + assert( hHeap!=INVALID_HANDLE_VALUE ); +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) + assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, p) ); +#endif + if( !p ) return 0; + n = osHeapSize(hHeap, SQLITE_WIN32_HEAP_FLAGS, p); + if( n==(SIZE_T)-1 ){ + sqlite3_log(SQLITE_NOMEM, "failed to HeapSize block %p (%lu), heap=%p", + p, osGetLastError(), (void*)hHeap); + return 0; + } + return (int)n; +} + +/* +** Round up a request size to the next valid allocation size. +*/ +static int winMemRoundup(int n){ + return n; +} + +/* +** Initialize this module. +*/ +static int winMemInit(void *pAppData){ + winMemData *pWinMemData = (winMemData *)pAppData; + + if( !pWinMemData ) return SQLITE_ERROR; + assert( pWinMemData->magic1==WINMEM_MAGIC1 ); + assert( pWinMemData->magic2==WINMEM_MAGIC2 ); + +#if !SQLITE_OS_WINRT && SQLITE_WIN32_HEAP_CREATE + if( !pWinMemData->hHeap ){ + DWORD dwInitialSize = SQLITE_WIN32_HEAP_INIT_SIZE; + DWORD dwMaximumSize = (DWORD)sqlite3GlobalConfig.nHeap; + if( dwMaximumSize==0 ){ + dwMaximumSize = SQLITE_WIN32_HEAP_MAX_SIZE; + }else if( dwInitialSize>dwMaximumSize ){ + dwInitialSize = dwMaximumSize; + } + pWinMemData->hHeap = osHeapCreate(SQLITE_WIN32_HEAP_FLAGS, + dwInitialSize, dwMaximumSize); + if( !pWinMemData->hHeap ){ + sqlite3_log(SQLITE_NOMEM, + "failed to HeapCreate (%lu), flags=%u, initSize=%lu, maxSize=%lu", + osGetLastError(), SQLITE_WIN32_HEAP_FLAGS, dwInitialSize, + dwMaximumSize); + return SQLITE_NOMEM; + } + pWinMemData->bOwned = TRUE; + assert( pWinMemData->bOwned ); + } +#else + pWinMemData->hHeap = osGetProcessHeap(); + if( !pWinMemData->hHeap ){ + sqlite3_log(SQLITE_NOMEM, + "failed to GetProcessHeap (%lu)", osGetLastError()); + return SQLITE_NOMEM; + } + pWinMemData->bOwned = FALSE; + assert( !pWinMemData->bOwned ); +#endif + assert( pWinMemData->hHeap!=0 ); + assert( pWinMemData->hHeap!=INVALID_HANDLE_VALUE ); +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) + assert( osHeapValidate(pWinMemData->hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); +#endif + return SQLITE_OK; +} + +/* +** Deinitialize this module. +*/ +static void winMemShutdown(void *pAppData){ + winMemData *pWinMemData = (winMemData *)pAppData; + + if( !pWinMemData ) return; + assert( pWinMemData->magic1==WINMEM_MAGIC1 ); + assert( pWinMemData->magic2==WINMEM_MAGIC2 ); + + if( pWinMemData->hHeap ){ + assert( pWinMemData->hHeap!=INVALID_HANDLE_VALUE ); +#if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) + assert( osHeapValidate(pWinMemData->hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); +#endif + if( pWinMemData->bOwned ){ + if( !osHeapDestroy(pWinMemData->hHeap) ){ + sqlite3_log(SQLITE_NOMEM, "failed to HeapDestroy (%lu), heap=%p", + osGetLastError(), (void*)pWinMemData->hHeap); + } + pWinMemData->bOwned = FALSE; + } + pWinMemData->hHeap = NULL; + } +} + +/* +** Populate the low-level memory allocation function pointers in +** sqlite3GlobalConfig.m with pointers to the routines in this file. The +** arguments specify the block of memory to manage. +** +** This routine is only called by sqlite3_config(), and therefore +** is not required to be threadsafe (it is not). +*/ +SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void){ + static const sqlite3_mem_methods winMemMethods = { + winMemMalloc, + winMemFree, + winMemRealloc, + winMemSize, + winMemRoundup, + winMemInit, + winMemShutdown, + &win_mem_data + }; + return &winMemMethods; +} + +SQLITE_PRIVATE void sqlite3MemSetDefault(void){ + sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetWin32()); +} +#endif /* SQLITE_WIN32_MALLOC */ + +/* +** Convert a UTF-8 string to Microsoft Unicode (UTF-16?). +** +** Space to hold the returned string is obtained from malloc. +*/ +static LPWSTR winUtf8ToUnicode(const char *zFilename){ + int nChar; + LPWSTR zWideFilename; + + nChar = osMultiByteToWideChar(CP_UTF8, 0, zFilename, -1, NULL, 0); + if( nChar==0 ){ + return 0; + } + zWideFilename = sqlite3MallocZero( nChar*sizeof(zWideFilename[0]) ); + if( zWideFilename==0 ){ + return 0; + } + nChar = osMultiByteToWideChar(CP_UTF8, 0, zFilename, -1, zWideFilename, + nChar); + if( nChar==0 ){ + sqlite3_free(zWideFilename); + zWideFilename = 0; + } + return zWideFilename; +} + +/* +** Convert Microsoft Unicode to UTF-8. Space to hold the returned string is +** obtained from sqlite3_malloc(). +*/ +static char *winUnicodeToUtf8(LPCWSTR zWideFilename){ + int nByte; + char *zFilename; + + nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideFilename, -1, 0, 0, 0, 0); + if( nByte == 0 ){ + return 0; + } + zFilename = sqlite3MallocZero( nByte ); + if( zFilename==0 ){ + return 0; + } + nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideFilename, -1, zFilename, nByte, + 0, 0); + if( nByte == 0 ){ + sqlite3_free(zFilename); + zFilename = 0; + } + return zFilename; +} + +/* +** Convert an ANSI string to Microsoft Unicode, based on the +** current codepage settings for file apis. +** +** Space to hold the returned string is obtained +** from sqlite3_malloc. +*/ +static LPWSTR winMbcsToUnicode(const char *zFilename){ + int nByte; + LPWSTR zMbcsFilename; + int codepage = osAreFileApisANSI() ? CP_ACP : CP_OEMCP; + + nByte = osMultiByteToWideChar(codepage, 0, zFilename, -1, NULL, + 0)*sizeof(WCHAR); + if( nByte==0 ){ + return 0; + } + zMbcsFilename = sqlite3MallocZero( nByte*sizeof(zMbcsFilename[0]) ); + if( zMbcsFilename==0 ){ + return 0; + } + nByte = osMultiByteToWideChar(codepage, 0, zFilename, -1, zMbcsFilename, + nByte); + if( nByte==0 ){ + sqlite3_free(zMbcsFilename); + zMbcsFilename = 0; + } + return zMbcsFilename; +} + +/* +** Convert Microsoft Unicode to multi-byte character string, based on the +** user's ANSI codepage. +** +** Space to hold the returned string is obtained from +** sqlite3_malloc(). +*/ +static char *winUnicodeToMbcs(LPCWSTR zWideFilename){ + int nByte; + char *zFilename; + int codepage = osAreFileApisANSI() ? CP_ACP : CP_OEMCP; + + nByte = osWideCharToMultiByte(codepage, 0, zWideFilename, -1, 0, 0, 0, 0); + if( nByte == 0 ){ + return 0; + } + zFilename = sqlite3MallocZero( nByte ); + if( zFilename==0 ){ + return 0; + } + nByte = osWideCharToMultiByte(codepage, 0, zWideFilename, -1, zFilename, + nByte, 0, 0); + if( nByte == 0 ){ + sqlite3_free(zFilename); + zFilename = 0; + } + return zFilename; +} + +/* +** Convert multibyte character string to UTF-8. Space to hold the +** returned string is obtained from sqlite3_malloc(). +*/ +SQLITE_API char *sqlite3_win32_mbcs_to_utf8(const char *zFilename){ + char *zFilenameUtf8; + LPWSTR zTmpWide; + + zTmpWide = winMbcsToUnicode(zFilename); + if( zTmpWide==0 ){ + return 0; + } + zFilenameUtf8 = winUnicodeToUtf8(zTmpWide); + sqlite3_free(zTmpWide); + return zFilenameUtf8; +} + +/* +** Convert UTF-8 to multibyte character string. Space to hold the +** returned string is obtained from sqlite3_malloc(). +*/ +SQLITE_API char *sqlite3_win32_utf8_to_mbcs(const char *zFilename){ + char *zFilenameMbcs; + LPWSTR zTmpWide; + + zTmpWide = winUtf8ToUnicode(zFilename); + if( zTmpWide==0 ){ + return 0; + } + zFilenameMbcs = winUnicodeToMbcs(zTmpWide); + sqlite3_free(zTmpWide); + return zFilenameMbcs; +} + +/* +** This function sets the data directory or the temporary directory based on +** the provided arguments. The type argument must be 1 in order to set the +** data directory or 2 in order to set the temporary directory. The zValue +** argument is the name of the directory to use. The return value will be +** SQLITE_OK if successful. +*/ +SQLITE_API int sqlite3_win32_set_directory(DWORD type, LPCWSTR zValue){ + char **ppDirectory = 0; +#ifndef SQLITE_OMIT_AUTOINIT + int rc = sqlite3_initialize(); + if( rc ) return rc; +#endif + if( type==SQLITE_WIN32_DATA_DIRECTORY_TYPE ){ + ppDirectory = &sqlite3_data_directory; + }else if( type==SQLITE_WIN32_TEMP_DIRECTORY_TYPE ){ + ppDirectory = &sqlite3_temp_directory; + } + assert( !ppDirectory || type==SQLITE_WIN32_DATA_DIRECTORY_TYPE + || type==SQLITE_WIN32_TEMP_DIRECTORY_TYPE + ); + assert( !ppDirectory || sqlite3MemdebugHasType(*ppDirectory, MEMTYPE_HEAP) ); + if( ppDirectory ){ + char *zValueUtf8 = 0; + if( zValue && zValue[0] ){ + zValueUtf8 = winUnicodeToUtf8(zValue); + if ( zValueUtf8==0 ){ + return SQLITE_NOMEM; + } + } + sqlite3_free(*ppDirectory); + *ppDirectory = zValueUtf8; + return SQLITE_OK; + } + return SQLITE_ERROR; +} + +/* +** The return value of winGetLastErrorMsg +** is zero if the error message fits in the buffer, or non-zero +** otherwise (if the message was truncated). +*/ +static int winGetLastErrorMsg(DWORD lastErrno, int nBuf, char *zBuf){ + /* FormatMessage returns 0 on failure. Otherwise it + ** returns the number of TCHARs written to the output + ** buffer, excluding the terminating null char. + */ + DWORD dwLen = 0; + char *zOut = 0; + + if( osIsNT() ){ +#if SQLITE_OS_WINRT + WCHAR zTempWide[SQLITE_WIN32_MAX_ERRMSG_CHARS+1]; + dwLen = osFormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS, + NULL, + lastErrno, + 0, + zTempWide, + SQLITE_WIN32_MAX_ERRMSG_CHARS, + 0); +#else + LPWSTR zTempWide = NULL; + dwLen = osFormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | + FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS, + NULL, + lastErrno, + 0, + (LPWSTR) &zTempWide, + 0, + 0); +#endif + if( dwLen > 0 ){ + /* allocate a buffer and convert to UTF8 */ + sqlite3BeginBenignMalloc(); + zOut = winUnicodeToUtf8(zTempWide); + sqlite3EndBenignMalloc(); +#if !SQLITE_OS_WINRT + /* free the system buffer allocated by FormatMessage */ + osLocalFree(zTempWide); +#endif + } + } +#ifdef SQLITE_WIN32_HAS_ANSI + else{ + char *zTemp = NULL; + dwLen = osFormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | + FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS, + NULL, + lastErrno, + 0, + (LPSTR) &zTemp, + 0, + 0); + if( dwLen > 0 ){ + /* allocate a buffer and convert to UTF8 */ + sqlite3BeginBenignMalloc(); + zOut = sqlite3_win32_mbcs_to_utf8(zTemp); + sqlite3EndBenignMalloc(); + /* free the system buffer allocated by FormatMessage */ + osLocalFree(zTemp); + } + } +#endif + if( 0 == dwLen ){ + sqlite3_snprintf(nBuf, zBuf, "OsError 0x%lx (%lu)", lastErrno, lastErrno); + }else{ + /* copy a maximum of nBuf chars to output buffer */ + sqlite3_snprintf(nBuf, zBuf, "%s", zOut); + /* free the UTF8 buffer */ + sqlite3_free(zOut); + } + return 0; +} + +/* +** +** This function - winLogErrorAtLine() - is only ever called via the macro +** winLogError(). +** +** This routine is invoked after an error occurs in an OS function. +** It logs a message using sqlite3_log() containing the current value of +** error code and, if possible, the human-readable equivalent from +** FormatMessage. +** +** The first argument passed to the macro should be the error code that +** will be returned to SQLite (e.g. SQLITE_IOERR_DELETE, SQLITE_CANTOPEN). +** The two subsequent arguments should be the name of the OS function that +** failed and the associated file-system path, if any. +*/ +#define winLogError(a,b,c,d) winLogErrorAtLine(a,b,c,d,__LINE__) +static int winLogErrorAtLine( + int errcode, /* SQLite error code */ + DWORD lastErrno, /* Win32 last error */ + const char *zFunc, /* Name of OS function that failed */ + const char *zPath, /* File path associated with error */ + int iLine /* Source line number where error occurred */ +){ + char zMsg[500]; /* Human readable error text */ + int i; /* Loop counter */ + + zMsg[0] = 0; + winGetLastErrorMsg(lastErrno, sizeof(zMsg), zMsg); + assert( errcode!=SQLITE_OK ); + if( zPath==0 ) zPath = ""; + for(i=0; zMsg[i] && zMsg[i]!='\r' && zMsg[i]!='\n'; i++){} + zMsg[i] = 0; + sqlite3_log(errcode, + "os_win.c:%d: (%lu) %s(%s) - %s", + iLine, lastErrno, zFunc, zPath, zMsg + ); + + return errcode; +} + +/* +** The number of times that a ReadFile(), WriteFile(), and DeleteFile() +** will be retried following a locking error - probably caused by +** antivirus software. Also the initial delay before the first retry. +** The delay increases linearly with each retry. +*/ +#ifndef SQLITE_WIN32_IOERR_RETRY +# define SQLITE_WIN32_IOERR_RETRY 10 +#endif +#ifndef SQLITE_WIN32_IOERR_RETRY_DELAY +# define SQLITE_WIN32_IOERR_RETRY_DELAY 25 +#endif +static int winIoerrRetry = SQLITE_WIN32_IOERR_RETRY; +static int winIoerrRetryDelay = SQLITE_WIN32_IOERR_RETRY_DELAY; + +/* +** The "winIoerrCanRetry1" macro is used to determine if a particular I/O +** error code obtained via GetLastError() is eligible to be retried. It +** must accept the error code DWORD as its only argument and should return +** non-zero if the error code is transient in nature and the operation +** responsible for generating the original error might succeed upon being +** retried. The argument to this macro should be a variable. +** +** Additionally, a macro named "winIoerrCanRetry2" may be defined. If it +** is defined, it will be consulted only when the macro "winIoerrCanRetry1" +** returns zero. The "winIoerrCanRetry2" macro is completely optional and +** may be used to include additional error codes in the set that should +** result in the failing I/O operation being retried by the caller. If +** defined, the "winIoerrCanRetry2" macro must exhibit external semantics +** identical to those of the "winIoerrCanRetry1" macro. +*/ +#if !defined(winIoerrCanRetry1) +#define winIoerrCanRetry1(a) (((a)==ERROR_ACCESS_DENIED) || \ + ((a)==ERROR_SHARING_VIOLATION) || \ + ((a)==ERROR_LOCK_VIOLATION) || \ + ((a)==ERROR_DEV_NOT_EXIST) || \ + ((a)==ERROR_NETNAME_DELETED) || \ + ((a)==ERROR_SEM_TIMEOUT) || \ + ((a)==ERROR_NETWORK_UNREACHABLE)) +#endif + +/* +** If a ReadFile() or WriteFile() error occurs, invoke this routine +** to see if it should be retried. Return TRUE to retry. Return FALSE +** to give up with an error. +*/ +static int winRetryIoerr(int *pnRetry, DWORD *pError){ + DWORD e = osGetLastError(); + if( *pnRetry>=winIoerrRetry ){ + if( pError ){ + *pError = e; + } + return 0; + } + if( winIoerrCanRetry1(e) ){ + sqlite3_win32_sleep(winIoerrRetryDelay*(1+*pnRetry)); + ++*pnRetry; + return 1; + } +#if defined(winIoerrCanRetry2) + else if( winIoerrCanRetry2(e) ){ + sqlite3_win32_sleep(winIoerrRetryDelay*(1+*pnRetry)); + ++*pnRetry; + return 1; + } +#endif + if( pError ){ + *pError = e; + } + return 0; +} + +/* +** Log a I/O error retry episode. +*/ +static void winLogIoerr(int nRetry){ + if( nRetry ){ + sqlite3_log(SQLITE_IOERR, + "delayed %dms for lock/sharing conflict", + winIoerrRetryDelay*nRetry*(nRetry+1)/2 + ); + } +} + +#if SQLITE_OS_WINCE +/************************************************************************* +** This section contains code for WinCE only. +*/ +#if !defined(SQLITE_MSVC_LOCALTIME_API) || !SQLITE_MSVC_LOCALTIME_API +/* +** The MSVC CRT on Windows CE may not have a localtime() function. So +** create a substitute. +*/ +/* #include */ +struct tm *__cdecl localtime(const time_t *t) +{ + static struct tm y; + FILETIME uTm, lTm; + SYSTEMTIME pTm; + sqlite3_int64 t64; + t64 = *t; + t64 = (t64 + 11644473600)*10000000; + uTm.dwLowDateTime = (DWORD)(t64 & 0xFFFFFFFF); + uTm.dwHighDateTime= (DWORD)(t64 >> 32); + osFileTimeToLocalFileTime(&uTm,&lTm); + osFileTimeToSystemTime(&lTm,&pTm); + y.tm_year = pTm.wYear - 1900; + y.tm_mon = pTm.wMonth - 1; + y.tm_wday = pTm.wDayOfWeek; + y.tm_mday = pTm.wDay; + y.tm_hour = pTm.wHour; + y.tm_min = pTm.wMinute; + y.tm_sec = pTm.wSecond; + return &y; +} +#endif + +#define HANDLE_TO_WINFILE(a) (winFile*)&((char*)a)[-(int)offsetof(winFile,h)] + +/* +** Acquire a lock on the handle h +*/ +static void winceMutexAcquire(HANDLE h){ + DWORD dwErr; + do { + dwErr = osWaitForSingleObject(h, INFINITE); + } while (dwErr != WAIT_OBJECT_0 && dwErr != WAIT_ABANDONED); +} +/* +** Release a lock acquired by winceMutexAcquire() +*/ +#define winceMutexRelease(h) ReleaseMutex(h) + +/* +** Create the mutex and shared memory used for locking in the file +** descriptor pFile +*/ +static int winceCreateLock(const char *zFilename, winFile *pFile){ + LPWSTR zTok; + LPWSTR zName; + DWORD lastErrno; + BOOL bLogged = FALSE; + BOOL bInit = TRUE; + + zName = winUtf8ToUnicode(zFilename); + if( zName==0 ){ + /* out of memory */ + return SQLITE_IOERR_NOMEM; + } + + /* Initialize the local lockdata */ + memset(&pFile->local, 0, sizeof(pFile->local)); + + /* Replace the backslashes from the filename and lowercase it + ** to derive a mutex name. */ + zTok = osCharLowerW(zName); + for (;*zTok;zTok++){ + if (*zTok == '\\') *zTok = '_'; + } + + /* Create/open the named mutex */ + pFile->hMutex = osCreateMutexW(NULL, FALSE, zName); + if (!pFile->hMutex){ + pFile->lastErrno = osGetLastError(); + sqlite3_free(zName); + return winLogError(SQLITE_IOERR, pFile->lastErrno, + "winceCreateLock1", zFilename); + } + + /* Acquire the mutex before continuing */ + winceMutexAcquire(pFile->hMutex); + + /* Since the names of named mutexes, semaphores, file mappings etc are + ** case-sensitive, take advantage of that by uppercasing the mutex name + ** and using that as the shared filemapping name. + */ + osCharUpperW(zName); + pFile->hShared = osCreateFileMappingW(INVALID_HANDLE_VALUE, NULL, + PAGE_READWRITE, 0, sizeof(winceLock), + zName); + + /* Set a flag that indicates we're the first to create the memory so it + ** must be zero-initialized */ + lastErrno = osGetLastError(); + if (lastErrno == ERROR_ALREADY_EXISTS){ + bInit = FALSE; + } + + sqlite3_free(zName); + + /* If we succeeded in making the shared memory handle, map it. */ + if( pFile->hShared ){ + pFile->shared = (winceLock*)osMapViewOfFile(pFile->hShared, + FILE_MAP_READ|FILE_MAP_WRITE, 0, 0, sizeof(winceLock)); + /* If mapping failed, close the shared memory handle and erase it */ + if( !pFile->shared ){ + pFile->lastErrno = osGetLastError(); + winLogError(SQLITE_IOERR, pFile->lastErrno, + "winceCreateLock2", zFilename); + bLogged = TRUE; + osCloseHandle(pFile->hShared); + pFile->hShared = NULL; + } + } + + /* If shared memory could not be created, then close the mutex and fail */ + if( pFile->hShared==NULL ){ + if( !bLogged ){ + pFile->lastErrno = lastErrno; + winLogError(SQLITE_IOERR, pFile->lastErrno, + "winceCreateLock3", zFilename); + bLogged = TRUE; + } + winceMutexRelease(pFile->hMutex); + osCloseHandle(pFile->hMutex); + pFile->hMutex = NULL; + return SQLITE_IOERR; + } + + /* Initialize the shared memory if we're supposed to */ + if( bInit ){ + memset(pFile->shared, 0, sizeof(winceLock)); + } + + winceMutexRelease(pFile->hMutex); + return SQLITE_OK; +} + +/* +** Destroy the part of winFile that deals with wince locks +*/ +static void winceDestroyLock(winFile *pFile){ + if (pFile->hMutex){ + /* Acquire the mutex */ + winceMutexAcquire(pFile->hMutex); + + /* The following blocks should probably assert in debug mode, but they + are to cleanup in case any locks remained open */ + if (pFile->local.nReaders){ + pFile->shared->nReaders --; + } + if (pFile->local.bReserved){ + pFile->shared->bReserved = FALSE; + } + if (pFile->local.bPending){ + pFile->shared->bPending = FALSE; + } + if (pFile->local.bExclusive){ + pFile->shared->bExclusive = FALSE; + } + + /* De-reference and close our copy of the shared memory handle */ + osUnmapViewOfFile(pFile->shared); + osCloseHandle(pFile->hShared); + + /* Done with the mutex */ + winceMutexRelease(pFile->hMutex); + osCloseHandle(pFile->hMutex); + pFile->hMutex = NULL; + } +} + +/* +** An implementation of the LockFile() API of Windows for CE +*/ +static BOOL winceLockFile( + LPHANDLE phFile, + DWORD dwFileOffsetLow, + DWORD dwFileOffsetHigh, + DWORD nNumberOfBytesToLockLow, + DWORD nNumberOfBytesToLockHigh +){ + winFile *pFile = HANDLE_TO_WINFILE(phFile); + BOOL bReturn = FALSE; + + UNUSED_PARAMETER(dwFileOffsetHigh); + UNUSED_PARAMETER(nNumberOfBytesToLockHigh); + + if (!pFile->hMutex) return TRUE; + winceMutexAcquire(pFile->hMutex); + + /* Wanting an exclusive lock? */ + if (dwFileOffsetLow == (DWORD)SHARED_FIRST + && nNumberOfBytesToLockLow == (DWORD)SHARED_SIZE){ + if (pFile->shared->nReaders == 0 && pFile->shared->bExclusive == 0){ + pFile->shared->bExclusive = TRUE; + pFile->local.bExclusive = TRUE; + bReturn = TRUE; + } + } + + /* Want a read-only lock? */ + else if (dwFileOffsetLow == (DWORD)SHARED_FIRST && + nNumberOfBytesToLockLow == 1){ + if (pFile->shared->bExclusive == 0){ + pFile->local.nReaders ++; + if (pFile->local.nReaders == 1){ + pFile->shared->nReaders ++; + } + bReturn = TRUE; + } + } + + /* Want a pending lock? */ + else if (dwFileOffsetLow == (DWORD)PENDING_BYTE + && nNumberOfBytesToLockLow == 1){ + /* If no pending lock has been acquired, then acquire it */ + if (pFile->shared->bPending == 0) { + pFile->shared->bPending = TRUE; + pFile->local.bPending = TRUE; + bReturn = TRUE; + } + } + + /* Want a reserved lock? */ + else if (dwFileOffsetLow == (DWORD)RESERVED_BYTE + && nNumberOfBytesToLockLow == 1){ + if (pFile->shared->bReserved == 0) { + pFile->shared->bReserved = TRUE; + pFile->local.bReserved = TRUE; + bReturn = TRUE; + } + } + + winceMutexRelease(pFile->hMutex); + return bReturn; +} + +/* +** An implementation of the UnlockFile API of Windows for CE +*/ +static BOOL winceUnlockFile( + LPHANDLE phFile, + DWORD dwFileOffsetLow, + DWORD dwFileOffsetHigh, + DWORD nNumberOfBytesToUnlockLow, + DWORD nNumberOfBytesToUnlockHigh +){ + winFile *pFile = HANDLE_TO_WINFILE(phFile); + BOOL bReturn = FALSE; + + UNUSED_PARAMETER(dwFileOffsetHigh); + UNUSED_PARAMETER(nNumberOfBytesToUnlockHigh); + + if (!pFile->hMutex) return TRUE; + winceMutexAcquire(pFile->hMutex); + + /* Releasing a reader lock or an exclusive lock */ + if (dwFileOffsetLow == (DWORD)SHARED_FIRST){ + /* Did we have an exclusive lock? */ + if (pFile->local.bExclusive){ + assert(nNumberOfBytesToUnlockLow == (DWORD)SHARED_SIZE); + pFile->local.bExclusive = FALSE; + pFile->shared->bExclusive = FALSE; + bReturn = TRUE; + } + + /* Did we just have a reader lock? */ + else if (pFile->local.nReaders){ + assert(nNumberOfBytesToUnlockLow == (DWORD)SHARED_SIZE + || nNumberOfBytesToUnlockLow == 1); + pFile->local.nReaders --; + if (pFile->local.nReaders == 0) + { + pFile->shared->nReaders --; + } + bReturn = TRUE; + } + } + + /* Releasing a pending lock */ + else if (dwFileOffsetLow == (DWORD)PENDING_BYTE + && nNumberOfBytesToUnlockLow == 1){ + if (pFile->local.bPending){ + pFile->local.bPending = FALSE; + pFile->shared->bPending = FALSE; + bReturn = TRUE; + } + } + /* Releasing a reserved lock */ + else if (dwFileOffsetLow == (DWORD)RESERVED_BYTE + && nNumberOfBytesToUnlockLow == 1){ + if (pFile->local.bReserved) { + pFile->local.bReserved = FALSE; + pFile->shared->bReserved = FALSE; + bReturn = TRUE; + } + } + + winceMutexRelease(pFile->hMutex); + return bReturn; +} +/* +** End of the special code for wince +*****************************************************************************/ +#endif /* SQLITE_OS_WINCE */ + +/* +** Lock a file region. +*/ +static BOOL winLockFile( + LPHANDLE phFile, + DWORD flags, + DWORD offsetLow, + DWORD offsetHigh, + DWORD numBytesLow, + DWORD numBytesHigh +){ +#if SQLITE_OS_WINCE + /* + ** NOTE: Windows CE is handled differently here due its lack of the Win32 + ** API LockFile. + */ + return winceLockFile(phFile, offsetLow, offsetHigh, + numBytesLow, numBytesHigh); +#else + if( osIsNT() ){ + OVERLAPPED ovlp; + memset(&ovlp, 0, sizeof(OVERLAPPED)); + ovlp.Offset = offsetLow; + ovlp.OffsetHigh = offsetHigh; + return osLockFileEx(*phFile, flags, 0, numBytesLow, numBytesHigh, &ovlp); + }else{ + return osLockFile(*phFile, offsetLow, offsetHigh, numBytesLow, + numBytesHigh); + } +#endif +} + +/* +** Unlock a file region. + */ +static BOOL winUnlockFile( + LPHANDLE phFile, + DWORD offsetLow, + DWORD offsetHigh, + DWORD numBytesLow, + DWORD numBytesHigh +){ +#if SQLITE_OS_WINCE + /* + ** NOTE: Windows CE is handled differently here due its lack of the Win32 + ** API UnlockFile. + */ + return winceUnlockFile(phFile, offsetLow, offsetHigh, + numBytesLow, numBytesHigh); +#else + if( osIsNT() ){ + OVERLAPPED ovlp; + memset(&ovlp, 0, sizeof(OVERLAPPED)); + ovlp.Offset = offsetLow; + ovlp.OffsetHigh = offsetHigh; + return osUnlockFileEx(*phFile, 0, numBytesLow, numBytesHigh, &ovlp); + }else{ + return osUnlockFile(*phFile, offsetLow, offsetHigh, numBytesLow, + numBytesHigh); + } +#endif +} + +/***************************************************************************** +** The next group of routines implement the I/O methods specified +** by the sqlite3_io_methods object. +******************************************************************************/ + +/* +** Some Microsoft compilers lack this definition. +*/ +#ifndef INVALID_SET_FILE_POINTER +# define INVALID_SET_FILE_POINTER ((DWORD)-1) +#endif + +/* +** Move the current position of the file handle passed as the first +** argument to offset iOffset within the file. If successful, return 0. +** Otherwise, set pFile->lastErrno and return non-zero. +*/ +static int winSeekFile(winFile *pFile, sqlite3_int64 iOffset){ +#if !SQLITE_OS_WINRT + LONG upperBits; /* Most sig. 32 bits of new offset */ + LONG lowerBits; /* Least sig. 32 bits of new offset */ + DWORD dwRet; /* Value returned by SetFilePointer() */ + DWORD lastErrno; /* Value returned by GetLastError() */ + + OSTRACE(("SEEK file=%p, offset=%lld\n", pFile->h, iOffset)); + + upperBits = (LONG)((iOffset>>32) & 0x7fffffff); + lowerBits = (LONG)(iOffset & 0xffffffff); + + /* API oddity: If successful, SetFilePointer() returns a dword + ** containing the lower 32-bits of the new file-offset. Or, if it fails, + ** it returns INVALID_SET_FILE_POINTER. However according to MSDN, + ** INVALID_SET_FILE_POINTER may also be a valid new offset. So to determine + ** whether an error has actually occurred, it is also necessary to call + ** GetLastError(). + */ + dwRet = osSetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN); + + if( (dwRet==INVALID_SET_FILE_POINTER + && ((lastErrno = osGetLastError())!=NO_ERROR)) ){ + pFile->lastErrno = lastErrno; + winLogError(SQLITE_IOERR_SEEK, pFile->lastErrno, + "winSeekFile", pFile->zPath); + OSTRACE(("SEEK file=%p, rc=SQLITE_IOERR_SEEK\n", pFile->h)); + return 1; + } + + OSTRACE(("SEEK file=%p, rc=SQLITE_OK\n", pFile->h)); + return 0; +#else + /* + ** Same as above, except that this implementation works for WinRT. + */ + + LARGE_INTEGER x; /* The new offset */ + BOOL bRet; /* Value returned by SetFilePointerEx() */ + + x.QuadPart = iOffset; + bRet = osSetFilePointerEx(pFile->h, x, 0, FILE_BEGIN); + + if(!bRet){ + pFile->lastErrno = osGetLastError(); + winLogError(SQLITE_IOERR_SEEK, pFile->lastErrno, + "winSeekFile", pFile->zPath); + OSTRACE(("SEEK file=%p, rc=SQLITE_IOERR_SEEK\n", pFile->h)); + return 1; + } + + OSTRACE(("SEEK file=%p, rc=SQLITE_OK\n", pFile->h)); + return 0; +#endif +} + +#if SQLITE_MAX_MMAP_SIZE>0 +/* Forward references to VFS helper methods used for memory mapped files */ +static int winMapfile(winFile*, sqlite3_int64); +static int winUnmapfile(winFile*); +#endif + +/* +** Close a file. +** +** It is reported that an attempt to close a handle might sometimes +** fail. This is a very unreasonable result, but Windows is notorious +** for being unreasonable so I do not doubt that it might happen. If +** the close fails, we pause for 100 milliseconds and try again. As +** many as MX_CLOSE_ATTEMPT attempts to close the handle are made before +** giving up and returning an error. +*/ +#define MX_CLOSE_ATTEMPT 3 +static int winClose(sqlite3_file *id){ + int rc, cnt = 0; + winFile *pFile = (winFile*)id; + + assert( id!=0 ); +#ifndef SQLITE_OMIT_WAL + assert( pFile->pShm==0 ); +#endif + assert( pFile->h!=NULL && pFile->h!=INVALID_HANDLE_VALUE ); + OSTRACE(("CLOSE file=%p\n", pFile->h)); + +#if SQLITE_MAX_MMAP_SIZE>0 + winUnmapfile(pFile); +#endif + + do{ + rc = osCloseHandle(pFile->h); + /* SimulateIOError( rc=0; cnt=MX_CLOSE_ATTEMPT; ); */ + }while( rc==0 && ++cnt < MX_CLOSE_ATTEMPT && (sqlite3_win32_sleep(100), 1) ); +#if SQLITE_OS_WINCE +#define WINCE_DELETION_ATTEMPTS 3 + winceDestroyLock(pFile); + if( pFile->zDeleteOnClose ){ + int cnt = 0; + while( + osDeleteFileW(pFile->zDeleteOnClose)==0 + && osGetFileAttributesW(pFile->zDeleteOnClose)!=0xffffffff + && cnt++ < WINCE_DELETION_ATTEMPTS + ){ + sqlite3_win32_sleep(100); /* Wait a little before trying again */ + } + sqlite3_free(pFile->zDeleteOnClose); + } +#endif + if( rc ){ + pFile->h = NULL; + } + OpenCounter(-1); + OSTRACE(("CLOSE file=%p, rc=%s\n", pFile->h, rc ? "ok" : "failed")); + return rc ? SQLITE_OK + : winLogError(SQLITE_IOERR_CLOSE, osGetLastError(), + "winClose", pFile->zPath); +} + +/* +** Read data from a file into a buffer. Return SQLITE_OK if all +** bytes were read successfully and SQLITE_IOERR if anything goes +** wrong. +*/ +static int winRead( + sqlite3_file *id, /* File to read from */ + void *pBuf, /* Write content into this buffer */ + int amt, /* Number of bytes to read */ + sqlite3_int64 offset /* Begin reading at this offset */ +){ +#if !SQLITE_OS_WINCE + OVERLAPPED overlapped; /* The offset for ReadFile. */ +#endif + winFile *pFile = (winFile*)id; /* file handle */ + DWORD nRead; /* Number of bytes actually read from file */ + int nRetry = 0; /* Number of retrys */ + + assert( id!=0 ); + assert( amt>0 ); + assert( offset>=0 ); + SimulateIOError(return SQLITE_IOERR_READ); + OSTRACE(("READ file=%p, buffer=%p, amount=%d, offset=%lld, lock=%d\n", + pFile->h, pBuf, amt, offset, pFile->locktype)); + +#if SQLITE_MAX_MMAP_SIZE>0 + /* Deal with as much of this read request as possible by transfering + ** data from the memory mapping using memcpy(). */ + if( offsetmmapSize ){ + if( offset+amt <= pFile->mmapSize ){ + memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], amt); + OSTRACE(("READ-MMAP file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + }else{ + int nCopy = (int)(pFile->mmapSize - offset); + memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], nCopy); + pBuf = &((u8 *)pBuf)[nCopy]; + amt -= nCopy; + offset += nCopy; + } + } +#endif + +#if SQLITE_OS_WINCE + if( winSeekFile(pFile, offset) ){ + OSTRACE(("READ file=%p, rc=SQLITE_FULL\n", pFile->h)); + return SQLITE_FULL; + } + while( !osReadFile(pFile->h, pBuf, amt, &nRead, 0) ){ +#else + memset(&overlapped, 0, sizeof(OVERLAPPED)); + overlapped.Offset = (LONG)(offset & 0xffffffff); + overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff); + while( !osReadFile(pFile->h, pBuf, amt, &nRead, &overlapped) && + osGetLastError()!=ERROR_HANDLE_EOF ){ +#endif + DWORD lastErrno; + if( winRetryIoerr(&nRetry, &lastErrno) ) continue; + pFile->lastErrno = lastErrno; + OSTRACE(("READ file=%p, rc=SQLITE_IOERR_READ\n", pFile->h)); + return winLogError(SQLITE_IOERR_READ, pFile->lastErrno, + "winRead", pFile->zPath); + } + winLogIoerr(nRetry); + if( nRead<(DWORD)amt ){ + /* Unread parts of the buffer must be zero-filled */ + memset(&((char*)pBuf)[nRead], 0, amt-nRead); + OSTRACE(("READ file=%p, rc=SQLITE_IOERR_SHORT_READ\n", pFile->h)); + return SQLITE_IOERR_SHORT_READ; + } + + OSTRACE(("READ file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; +} + +/* +** Write data from a buffer into a file. Return SQLITE_OK on success +** or some other error code on failure. +*/ +static int winWrite( + sqlite3_file *id, /* File to write into */ + const void *pBuf, /* The bytes to be written */ + int amt, /* Number of bytes to write */ + sqlite3_int64 offset /* Offset into the file to begin writing at */ +){ + int rc = 0; /* True if error has occurred, else false */ + winFile *pFile = (winFile*)id; /* File handle */ + int nRetry = 0; /* Number of retries */ + + assert( amt>0 ); + assert( pFile ); + SimulateIOError(return SQLITE_IOERR_WRITE); + SimulateDiskfullError(return SQLITE_FULL); + + OSTRACE(("WRITE file=%p, buffer=%p, amount=%d, offset=%lld, lock=%d\n", + pFile->h, pBuf, amt, offset, pFile->locktype)); + +#if SQLITE_MAX_MMAP_SIZE>0 + /* Deal with as much of this write request as possible by transfering + ** data from the memory mapping using memcpy(). */ + if( offsetmmapSize ){ + if( offset+amt <= pFile->mmapSize ){ + memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, amt); + OSTRACE(("WRITE-MMAP file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + }else{ + int nCopy = (int)(pFile->mmapSize - offset); + memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, nCopy); + pBuf = &((u8 *)pBuf)[nCopy]; + amt -= nCopy; + offset += nCopy; + } + } +#endif + +#if SQLITE_OS_WINCE + rc = winSeekFile(pFile, offset); + if( rc==0 ){ +#else + { +#endif +#if !SQLITE_OS_WINCE + OVERLAPPED overlapped; /* The offset for WriteFile. */ +#endif + u8 *aRem = (u8 *)pBuf; /* Data yet to be written */ + int nRem = amt; /* Number of bytes yet to be written */ + DWORD nWrite; /* Bytes written by each WriteFile() call */ + DWORD lastErrno = NO_ERROR; /* Value returned by GetLastError() */ + +#if !SQLITE_OS_WINCE + memset(&overlapped, 0, sizeof(OVERLAPPED)); + overlapped.Offset = (LONG)(offset & 0xffffffff); + overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff); +#endif + + while( nRem>0 ){ +#if SQLITE_OS_WINCE + if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, 0) ){ +#else + if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, &overlapped) ){ +#endif + if( winRetryIoerr(&nRetry, &lastErrno) ) continue; + break; + } + assert( nWrite==0 || nWrite<=(DWORD)nRem ); + if( nWrite==0 || nWrite>(DWORD)nRem ){ + lastErrno = osGetLastError(); + break; + } +#if !SQLITE_OS_WINCE + offset += nWrite; + overlapped.Offset = (LONG)(offset & 0xffffffff); + overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff); +#endif + aRem += nWrite; + nRem -= nWrite; + } + if( nRem>0 ){ + pFile->lastErrno = lastErrno; + rc = 1; + } + } + + if( rc ){ + if( ( pFile->lastErrno==ERROR_HANDLE_DISK_FULL ) + || ( pFile->lastErrno==ERROR_DISK_FULL )){ + OSTRACE(("WRITE file=%p, rc=SQLITE_FULL\n", pFile->h)); + return winLogError(SQLITE_FULL, pFile->lastErrno, + "winWrite1", pFile->zPath); + } + OSTRACE(("WRITE file=%p, rc=SQLITE_IOERR_WRITE\n", pFile->h)); + return winLogError(SQLITE_IOERR_WRITE, pFile->lastErrno, + "winWrite2", pFile->zPath); + }else{ + winLogIoerr(nRetry); + } + OSTRACE(("WRITE file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; +} + +/* +** Truncate an open file to a specified size +*/ +static int winTruncate(sqlite3_file *id, sqlite3_int64 nByte){ + winFile *pFile = (winFile*)id; /* File handle object */ + int rc = SQLITE_OK; /* Return code for this function */ + DWORD lastErrno; + + assert( pFile ); + SimulateIOError(return SQLITE_IOERR_TRUNCATE); + OSTRACE(("TRUNCATE file=%p, size=%lld, lock=%d\n", + pFile->h, nByte, pFile->locktype)); + + /* If the user has configured a chunk-size for this file, truncate the + ** file so that it consists of an integer number of chunks (i.e. the + ** actual file size after the operation may be larger than the requested + ** size). + */ + if( pFile->szChunk>0 ){ + nByte = ((nByte + pFile->szChunk - 1)/pFile->szChunk) * pFile->szChunk; + } + + /* SetEndOfFile() returns non-zero when successful, or zero when it fails. */ + if( winSeekFile(pFile, nByte) ){ + rc = winLogError(SQLITE_IOERR_TRUNCATE, pFile->lastErrno, + "winTruncate1", pFile->zPath); + }else if( 0==osSetEndOfFile(pFile->h) && + ((lastErrno = osGetLastError())!=ERROR_USER_MAPPED_FILE) ){ + pFile->lastErrno = lastErrno; + rc = winLogError(SQLITE_IOERR_TRUNCATE, pFile->lastErrno, + "winTruncate2", pFile->zPath); + } + +#if SQLITE_MAX_MMAP_SIZE>0 + /* If the file was truncated to a size smaller than the currently + ** mapped region, reduce the effective mapping size as well. SQLite will + ** use read() and write() to access data beyond this point from now on. + */ + if( pFile->pMapRegion && nBytemmapSize ){ + pFile->mmapSize = nByte; + } +#endif + + OSTRACE(("TRUNCATE file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc))); + return rc; +} + +#ifdef SQLITE_TEST +/* +** Count the number of fullsyncs and normal syncs. This is used to test +** that syncs and fullsyncs are occuring at the right times. +*/ +SQLITE_API int sqlite3_sync_count = 0; +SQLITE_API int sqlite3_fullsync_count = 0; +#endif + +/* +** Make sure all writes to a particular file are committed to disk. +*/ +static int winSync(sqlite3_file *id, int flags){ +#ifndef SQLITE_NO_SYNC + /* + ** Used only when SQLITE_NO_SYNC is not defined. + */ + BOOL rc; +#endif +#if !defined(NDEBUG) || !defined(SQLITE_NO_SYNC) || \ + (defined(SQLITE_TEST) && defined(SQLITE_DEBUG)) + /* + ** Used when SQLITE_NO_SYNC is not defined and by the assert() and/or + ** OSTRACE() macros. + */ + winFile *pFile = (winFile*)id; +#else + UNUSED_PARAMETER(id); +#endif + + assert( pFile ); + /* Check that one of SQLITE_SYNC_NORMAL or FULL was passed */ + assert((flags&0x0F)==SQLITE_SYNC_NORMAL + || (flags&0x0F)==SQLITE_SYNC_FULL + ); + + /* Unix cannot, but some systems may return SQLITE_FULL from here. This + ** line is to test that doing so does not cause any problems. + */ + SimulateDiskfullError( return SQLITE_FULL ); + + OSTRACE(("SYNC file=%p, flags=%x, lock=%d\n", + pFile->h, flags, pFile->locktype)); + +#ifndef SQLITE_TEST + UNUSED_PARAMETER(flags); +#else + if( (flags&0x0F)==SQLITE_SYNC_FULL ){ + sqlite3_fullsync_count++; + } + sqlite3_sync_count++; +#endif + + /* If we compiled with the SQLITE_NO_SYNC flag, then syncing is a + ** no-op + */ +#ifdef SQLITE_NO_SYNC + OSTRACE(("SYNC-NOP file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; +#else + rc = osFlushFileBuffers(pFile->h); + SimulateIOError( rc=FALSE ); + if( rc ){ + OSTRACE(("SYNC file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + }else{ + pFile->lastErrno = osGetLastError(); + OSTRACE(("SYNC file=%p, rc=SQLITE_IOERR_FSYNC\n", pFile->h)); + return winLogError(SQLITE_IOERR_FSYNC, pFile->lastErrno, + "winSync", pFile->zPath); + } +#endif +} + +/* +** Determine the current size of a file in bytes +*/ +static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){ + winFile *pFile = (winFile*)id; + int rc = SQLITE_OK; + + assert( id!=0 ); + assert( pSize!=0 ); + SimulateIOError(return SQLITE_IOERR_FSTAT); + OSTRACE(("SIZE file=%p, pSize=%p\n", pFile->h, pSize)); + +#if SQLITE_OS_WINRT + { + FILE_STANDARD_INFO info; + if( osGetFileInformationByHandleEx(pFile->h, FileStandardInfo, + &info, sizeof(info)) ){ + *pSize = info.EndOfFile.QuadPart; + }else{ + pFile->lastErrno = osGetLastError(); + rc = winLogError(SQLITE_IOERR_FSTAT, pFile->lastErrno, + "winFileSize", pFile->zPath); + } + } +#else + { + DWORD upperBits; + DWORD lowerBits; + DWORD lastErrno; + + lowerBits = osGetFileSize(pFile->h, &upperBits); + *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits; + if( (lowerBits == INVALID_FILE_SIZE) + && ((lastErrno = osGetLastError())!=NO_ERROR) ){ + pFile->lastErrno = lastErrno; + rc = winLogError(SQLITE_IOERR_FSTAT, pFile->lastErrno, + "winFileSize", pFile->zPath); + } + } +#endif + OSTRACE(("SIZE file=%p, pSize=%p, *pSize=%lld, rc=%s\n", + pFile->h, pSize, *pSize, sqlite3ErrName(rc))); + return rc; +} + +/* +** LOCKFILE_FAIL_IMMEDIATELY is undefined on some Windows systems. +*/ +#ifndef LOCKFILE_FAIL_IMMEDIATELY +# define LOCKFILE_FAIL_IMMEDIATELY 1 +#endif + +#ifndef LOCKFILE_EXCLUSIVE_LOCK +# define LOCKFILE_EXCLUSIVE_LOCK 2 +#endif + +/* +** Historically, SQLite has used both the LockFile and LockFileEx functions. +** When the LockFile function was used, it was always expected to fail +** immediately if the lock could not be obtained. Also, it always expected to +** obtain an exclusive lock. These flags are used with the LockFileEx function +** and reflect those expectations; therefore, they should not be changed. +*/ +#ifndef SQLITE_LOCKFILE_FLAGS +# define SQLITE_LOCKFILE_FLAGS (LOCKFILE_FAIL_IMMEDIATELY | \ + LOCKFILE_EXCLUSIVE_LOCK) +#endif + +/* +** Currently, SQLite never calls the LockFileEx function without wanting the +** call to fail immediately if the lock cannot be obtained. +*/ +#ifndef SQLITE_LOCKFILEEX_FLAGS +# define SQLITE_LOCKFILEEX_FLAGS (LOCKFILE_FAIL_IMMEDIATELY) +#endif + +/* +** Acquire a reader lock. +** Different API routines are called depending on whether or not this +** is Win9x or WinNT. +*/ +static int winGetReadLock(winFile *pFile){ + int res; + OSTRACE(("READ-LOCK file=%p, lock=%d\n", pFile->h, pFile->locktype)); + if( osIsNT() ){ +#if SQLITE_OS_WINCE + /* + ** NOTE: Windows CE is handled differently here due its lack of the Win32 + ** API LockFileEx. + */ + res = winceLockFile(&pFile->h, SHARED_FIRST, 0, 1, 0); +#else + res = winLockFile(&pFile->h, SQLITE_LOCKFILEEX_FLAGS, SHARED_FIRST, 0, + SHARED_SIZE, 0); +#endif + } +#ifdef SQLITE_WIN32_HAS_ANSI + else{ + int lk; + sqlite3_randomness(sizeof(lk), &lk); + pFile->sharedLockByte = (short)((lk & 0x7fffffff)%(SHARED_SIZE - 1)); + res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, + SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0); + } +#endif + if( res == 0 ){ + pFile->lastErrno = osGetLastError(); + /* No need to log a failure to lock */ + } + OSTRACE(("READ-LOCK file=%p, result=%d\n", pFile->h, res)); + return res; +} + +/* +** Undo a readlock +*/ +static int winUnlockReadLock(winFile *pFile){ + int res; + DWORD lastErrno; + OSTRACE(("READ-UNLOCK file=%p, lock=%d\n", pFile->h, pFile->locktype)); + if( osIsNT() ){ + res = winUnlockFile(&pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0); + } +#ifdef SQLITE_WIN32_HAS_ANSI + else{ + res = winUnlockFile(&pFile->h, SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0); + } +#endif + if( res==0 && ((lastErrno = osGetLastError())!=ERROR_NOT_LOCKED) ){ + pFile->lastErrno = lastErrno; + winLogError(SQLITE_IOERR_UNLOCK, pFile->lastErrno, + "winUnlockReadLock", pFile->zPath); + } + OSTRACE(("READ-UNLOCK file=%p, result=%d\n", pFile->h, res)); + return res; +} + +/* +** Lock the file with the lock specified by parameter locktype - one +** of the following: +** +** (1) SHARED_LOCK +** (2) RESERVED_LOCK +** (3) PENDING_LOCK +** (4) EXCLUSIVE_LOCK +** +** Sometimes when requesting one lock state, additional lock states +** are inserted in between. The locking might fail on one of the later +** transitions leaving the lock state different from what it started but +** still short of its goal. The following chart shows the allowed +** transitions and the inserted intermediate states: +** +** UNLOCKED -> SHARED +** SHARED -> RESERVED +** SHARED -> (PENDING) -> EXCLUSIVE +** RESERVED -> (PENDING) -> EXCLUSIVE +** PENDING -> EXCLUSIVE +** +** This routine will only increase a lock. The winUnlock() routine +** erases all locks at once and returns us immediately to locking level 0. +** It is not possible to lower the locking level one step at a time. You +** must go straight to locking level 0. +*/ +static int winLock(sqlite3_file *id, int locktype){ + int rc = SQLITE_OK; /* Return code from subroutines */ + int res = 1; /* Result of a Windows lock call */ + int newLocktype; /* Set pFile->locktype to this value before exiting */ + int gotPendingLock = 0;/* True if we acquired a PENDING lock this time */ + winFile *pFile = (winFile*)id; + DWORD lastErrno = NO_ERROR; + + assert( id!=0 ); + OSTRACE(("LOCK file=%p, oldLock=%d(%d), newLock=%d\n", + pFile->h, pFile->locktype, pFile->sharedLockByte, locktype)); + + /* If there is already a lock of this type or more restrictive on the + ** OsFile, do nothing. Don't use the end_lock: exit path, as + ** sqlite3OsEnterMutex() hasn't been called yet. + */ + if( pFile->locktype>=locktype ){ + OSTRACE(("LOCK-HELD file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + } + + /* Make sure the locking sequence is correct + */ + assert( pFile->locktype!=NO_LOCK || locktype==SHARED_LOCK ); + assert( locktype!=PENDING_LOCK ); + assert( locktype!=RESERVED_LOCK || pFile->locktype==SHARED_LOCK ); + + /* Lock the PENDING_LOCK byte if we need to acquire a PENDING lock or + ** a SHARED lock. If we are acquiring a SHARED lock, the acquisition of + ** the PENDING_LOCK byte is temporary. + */ + newLocktype = pFile->locktype; + if( (pFile->locktype==NO_LOCK) + || ( (locktype==EXCLUSIVE_LOCK) + && (pFile->locktype==RESERVED_LOCK)) + ){ + int cnt = 3; + while( cnt-->0 && (res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, + PENDING_BYTE, 0, 1, 0))==0 ){ + /* Try 3 times to get the pending lock. This is needed to work + ** around problems caused by indexing and/or anti-virus software on + ** Windows systems. + ** If you are using this code as a model for alternative VFSes, do not + ** copy this retry logic. It is a hack intended for Windows only. + */ + lastErrno = osGetLastError(); + OSTRACE(("LOCK-PENDING-FAIL file=%p, count=%d, result=%d\n", + pFile->h, cnt, res)); + if( lastErrno==ERROR_INVALID_HANDLE ){ + pFile->lastErrno = lastErrno; + rc = SQLITE_IOERR_LOCK; + OSTRACE(("LOCK-FAIL file=%p, count=%d, rc=%s\n", + pFile->h, cnt, sqlite3ErrName(rc))); + return rc; + } + if( cnt ) sqlite3_win32_sleep(1); + } + gotPendingLock = res; + if( !res ){ + lastErrno = osGetLastError(); + } + } + + /* Acquire a shared lock + */ + if( locktype==SHARED_LOCK && res ){ + assert( pFile->locktype==NO_LOCK ); + res = winGetReadLock(pFile); + if( res ){ + newLocktype = SHARED_LOCK; + }else{ + lastErrno = osGetLastError(); + } + } + + /* Acquire a RESERVED lock + */ + if( locktype==RESERVED_LOCK && res ){ + assert( pFile->locktype==SHARED_LOCK ); + res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, RESERVED_BYTE, 0, 1, 0); + if( res ){ + newLocktype = RESERVED_LOCK; + }else{ + lastErrno = osGetLastError(); + } + } + + /* Acquire a PENDING lock + */ + if( locktype==EXCLUSIVE_LOCK && res ){ + newLocktype = PENDING_LOCK; + gotPendingLock = 0; + } + + /* Acquire an EXCLUSIVE lock + */ + if( locktype==EXCLUSIVE_LOCK && res ){ + assert( pFile->locktype>=SHARED_LOCK ); + res = winUnlockReadLock(pFile); + res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, SHARED_FIRST, 0, + SHARED_SIZE, 0); + if( res ){ + newLocktype = EXCLUSIVE_LOCK; + }else{ + lastErrno = osGetLastError(); + winGetReadLock(pFile); + } + } + + /* If we are holding a PENDING lock that ought to be released, then + ** release it now. + */ + if( gotPendingLock && locktype==SHARED_LOCK ){ + winUnlockFile(&pFile->h, PENDING_BYTE, 0, 1, 0); + } + + /* Update the state of the lock has held in the file descriptor then + ** return the appropriate result code. + */ + if( res ){ + rc = SQLITE_OK; + }else{ + pFile->lastErrno = lastErrno; + rc = SQLITE_BUSY; + OSTRACE(("LOCK-FAIL file=%p, wanted=%d, got=%d\n", + pFile->h, locktype, newLocktype)); + } + pFile->locktype = (u8)newLocktype; + OSTRACE(("LOCK file=%p, lock=%d, rc=%s\n", + pFile->h, pFile->locktype, sqlite3ErrName(rc))); + return rc; +} + +/* +** This routine checks if there is a RESERVED lock held on the specified +** file by this or any other process. If such a lock is held, return +** non-zero, otherwise zero. +*/ +static int winCheckReservedLock(sqlite3_file *id, int *pResOut){ + int res; + winFile *pFile = (winFile*)id; + + SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); + OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p\n", pFile->h, pResOut)); + + assert( id!=0 ); + if( pFile->locktype>=RESERVED_LOCK ){ + res = 1; + OSTRACE(("TEST-WR-LOCK file=%p, result=%d (local)\n", pFile->h, res)); + }else{ + res = winLockFile(&pFile->h, SQLITE_LOCKFILEEX_FLAGS,RESERVED_BYTE, 0, 1, 0); + if( res ){ + winUnlockFile(&pFile->h, RESERVED_BYTE, 0, 1, 0); + } + res = !res; + OSTRACE(("TEST-WR-LOCK file=%p, result=%d (remote)\n", pFile->h, res)); + } + *pResOut = res; + OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n", + pFile->h, pResOut, *pResOut)); + return SQLITE_OK; +} + +/* +** Lower the locking level on file descriptor id to locktype. locktype +** must be either NO_LOCK or SHARED_LOCK. +** +** If the locking level of the file descriptor is already at or below +** the requested locking level, this routine is a no-op. +** +** It is not possible for this routine to fail if the second argument +** is NO_LOCK. If the second argument is SHARED_LOCK then this routine +** might return SQLITE_IOERR; +*/ +static int winUnlock(sqlite3_file *id, int locktype){ + int type; + winFile *pFile = (winFile*)id; + int rc = SQLITE_OK; + assert( pFile!=0 ); + assert( locktype<=SHARED_LOCK ); + OSTRACE(("UNLOCK file=%p, oldLock=%d(%d), newLock=%d\n", + pFile->h, pFile->locktype, pFile->sharedLockByte, locktype)); + type = pFile->locktype; + if( type>=EXCLUSIVE_LOCK ){ + winUnlockFile(&pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0); + if( locktype==SHARED_LOCK && !winGetReadLock(pFile) ){ + /* This should never happen. We should always be able to + ** reacquire the read lock */ + rc = winLogError(SQLITE_IOERR_UNLOCK, osGetLastError(), + "winUnlock", pFile->zPath); + } + } + if( type>=RESERVED_LOCK ){ + winUnlockFile(&pFile->h, RESERVED_BYTE, 0, 1, 0); + } + if( locktype==NO_LOCK && type>=SHARED_LOCK ){ + winUnlockReadLock(pFile); + } + if( type>=PENDING_LOCK ){ + winUnlockFile(&pFile->h, PENDING_BYTE, 0, 1, 0); + } + pFile->locktype = (u8)locktype; + OSTRACE(("UNLOCK file=%p, lock=%d, rc=%s\n", + pFile->h, pFile->locktype, sqlite3ErrName(rc))); + return rc; +} + +/* +** If *pArg is inititially negative then this is a query. Set *pArg to +** 1 or 0 depending on whether or not bit mask of pFile->ctrlFlags is set. +** +** If *pArg is 0 or 1, then clear or set the mask bit of pFile->ctrlFlags. +*/ +static void winModeBit(winFile *pFile, unsigned char mask, int *pArg){ + if( *pArg<0 ){ + *pArg = (pFile->ctrlFlags & mask)!=0; + }else if( (*pArg)==0 ){ + pFile->ctrlFlags &= ~mask; + }else{ + pFile->ctrlFlags |= mask; + } +} + +/* Forward references to VFS helper methods used for temporary files */ +static int winGetTempname(sqlite3_vfs *, char **); +static int winIsDir(const void *); +static BOOL winIsDriveLetterAndColon(const char *); + +/* +** Control and query of the open file handle. +*/ +static int winFileControl(sqlite3_file *id, int op, void *pArg){ + winFile *pFile = (winFile*)id; + OSTRACE(("FCNTL file=%p, op=%d, pArg=%p\n", pFile->h, op, pArg)); + switch( op ){ + case SQLITE_FCNTL_LOCKSTATE: { + *(int*)pArg = pFile->locktype; + OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + } + case SQLITE_LAST_ERRNO: { + *(int*)pArg = (int)pFile->lastErrno; + OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + } + case SQLITE_FCNTL_CHUNK_SIZE: { + pFile->szChunk = *(int *)pArg; + OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + } + case SQLITE_FCNTL_SIZE_HINT: { + if( pFile->szChunk>0 ){ + sqlite3_int64 oldSz; + int rc = winFileSize(id, &oldSz); + if( rc==SQLITE_OK ){ + sqlite3_int64 newSz = *(sqlite3_int64*)pArg; + if( newSz>oldSz ){ + SimulateIOErrorBenign(1); + rc = winTruncate(id, newSz); + SimulateIOErrorBenign(0); + } + } + OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc))); + return rc; + } + OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + } + case SQLITE_FCNTL_PERSIST_WAL: { + winModeBit(pFile, WINFILE_PERSIST_WAL, (int*)pArg); + OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + } + case SQLITE_FCNTL_POWERSAFE_OVERWRITE: { + winModeBit(pFile, WINFILE_PSOW, (int*)pArg); + OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + } + case SQLITE_FCNTL_VFSNAME: { + *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName); + OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + } + case SQLITE_FCNTL_WIN32_AV_RETRY: { + int *a = (int*)pArg; + if( a[0]>0 ){ + winIoerrRetry = a[0]; + }else{ + a[0] = winIoerrRetry; + } + if( a[1]>0 ){ + winIoerrRetryDelay = a[1]; + }else{ + a[1] = winIoerrRetryDelay; + } + OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); + return SQLITE_OK; + } +#ifdef SQLITE_TEST + case SQLITE_FCNTL_WIN32_SET_HANDLE: { + LPHANDLE phFile = (LPHANDLE)pArg; + HANDLE hOldFile = pFile->h; + pFile->h = *phFile; + *phFile = hOldFile; + OSTRACE(("FCNTL oldFile=%p, newFile=%p, rc=SQLITE_OK\n", + hOldFile, pFile->h)); + return SQLITE_OK; + } +#endif + case SQLITE_FCNTL_TEMPFILENAME: { + char *zTFile = 0; + int rc = winGetTempname(pFile->pVfs, &zTFile); + if( rc==SQLITE_OK ){ + *(char**)pArg = zTFile; + } + OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc))); + return rc; + } +#if SQLITE_MAX_MMAP_SIZE>0 + case SQLITE_FCNTL_MMAP_SIZE: { + i64 newLimit = *(i64*)pArg; + int rc = SQLITE_OK; + if( newLimit>sqlite3GlobalConfig.mxMmap ){ + newLimit = sqlite3GlobalConfig.mxMmap; + } + *(i64*)pArg = pFile->mmapSizeMax; + if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){ + pFile->mmapSizeMax = newLimit; + if( pFile->mmapSize>0 ){ + winUnmapfile(pFile); + rc = winMapfile(pFile, -1); + } + } + OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc))); + return rc; + } +#endif + } + OSTRACE(("FCNTL file=%p, rc=SQLITE_NOTFOUND\n", pFile->h)); + return SQLITE_NOTFOUND; +} + +/* +** Return the sector size in bytes of the underlying block device for +** the specified file. This is almost always 512 bytes, but may be +** larger for some devices. +** +** SQLite code assumes this function cannot fail. It also assumes that +** if two files are created in the same file-system directory (i.e. +** a database and its journal file) that the sector size will be the +** same for both. +*/ +static int winSectorSize(sqlite3_file *id){ + (void)id; + return SQLITE_DEFAULT_SECTOR_SIZE; +} + +/* +** Return a vector of device characteristics. +*/ +static int winDeviceCharacteristics(sqlite3_file *id){ + winFile *p = (winFile*)id; + return SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN | + ((p->ctrlFlags & WINFILE_PSOW)?SQLITE_IOCAP_POWERSAFE_OVERWRITE:0); +} + +/* +** Windows will only let you create file view mappings +** on allocation size granularity boundaries. +** During sqlite3_os_init() we do a GetSystemInfo() +** to get the granularity size. +*/ +static SYSTEM_INFO winSysInfo; + +#ifndef SQLITE_OMIT_WAL + +/* +** Helper functions to obtain and relinquish the global mutex. The +** global mutex is used to protect the winLockInfo objects used by +** this file, all of which may be shared by multiple threads. +** +** Function winShmMutexHeld() is used to assert() that the global mutex +** is held when required. This function is only used as part of assert() +** statements. e.g. +** +** winShmEnterMutex() +** assert( winShmMutexHeld() ); +** winShmLeaveMutex() +*/ +static void winShmEnterMutex(void){ + sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); +} +static void winShmLeaveMutex(void){ + sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); +} +#ifndef NDEBUG +static int winShmMutexHeld(void) { + return sqlite3_mutex_held(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); +} +#endif + +/* +** Object used to represent a single file opened and mmapped to provide +** shared memory. When multiple threads all reference the same +** log-summary, each thread has its own winFile object, but they all +** point to a single instance of this object. In other words, each +** log-summary is opened only once per process. +** +** winShmMutexHeld() must be true when creating or destroying +** this object or while reading or writing the following fields: +** +** nRef +** pNext +** +** The following fields are read-only after the object is created: +** +** fid +** zFilename +** +** Either winShmNode.mutex must be held or winShmNode.nRef==0 and +** winShmMutexHeld() is true when reading or writing any other field +** in this structure. +** +*/ +struct winShmNode { + sqlite3_mutex *mutex; /* Mutex to access this object */ + char *zFilename; /* Name of the file */ + winFile hFile; /* File handle from winOpen */ + + int szRegion; /* Size of shared-memory regions */ + int nRegion; /* Size of array apRegion */ + struct ShmRegion { + HANDLE hMap; /* File handle from CreateFileMapping */ + void *pMap; + } *aRegion; + DWORD lastErrno; /* The Windows errno from the last I/O error */ + + int nRef; /* Number of winShm objects pointing to this */ + winShm *pFirst; /* All winShm objects pointing to this */ + winShmNode *pNext; /* Next in list of all winShmNode objects */ +#ifdef SQLITE_DEBUG + u8 nextShmId; /* Next available winShm.id value */ +#endif +}; + +/* +** A global array of all winShmNode objects. +** +** The winShmMutexHeld() must be true while reading or writing this list. +*/ +static winShmNode *winShmNodeList = 0; + +/* +** Structure used internally by this VFS to record the state of an +** open shared memory connection. +** +** The following fields are initialized when this object is created and +** are read-only thereafter: +** +** winShm.pShmNode +** winShm.id +** +** All other fields are read/write. The winShm.pShmNode->mutex must be held +** while accessing any read/write fields. +*/ +struct winShm { + winShmNode *pShmNode; /* The underlying winShmNode object */ + winShm *pNext; /* Next winShm with the same winShmNode */ + u8 hasMutex; /* True if holding the winShmNode mutex */ + u16 sharedMask; /* Mask of shared locks held */ + u16 exclMask; /* Mask of exclusive locks held */ +#ifdef SQLITE_DEBUG + u8 id; /* Id of this connection with its winShmNode */ +#endif +}; + +/* +** Constants used for locking +*/ +#define WIN_SHM_BASE ((22+SQLITE_SHM_NLOCK)*4) /* first lock byte */ +#define WIN_SHM_DMS (WIN_SHM_BASE+SQLITE_SHM_NLOCK) /* deadman switch */ + +/* +** Apply advisory locks for all n bytes beginning at ofst. +*/ +#define _SHM_UNLCK 1 +#define _SHM_RDLCK 2 +#define _SHM_WRLCK 3 +static int winShmSystemLock( + winShmNode *pFile, /* Apply locks to this open shared-memory segment */ + int lockType, /* _SHM_UNLCK, _SHM_RDLCK, or _SHM_WRLCK */ + int ofst, /* Offset to first byte to be locked/unlocked */ + int nByte /* Number of bytes to lock or unlock */ +){ + int rc = 0; /* Result code form Lock/UnlockFileEx() */ + + /* Access to the winShmNode object is serialized by the caller */ + assert( sqlite3_mutex_held(pFile->mutex) || pFile->nRef==0 ); + + OSTRACE(("SHM-LOCK file=%p, lock=%d, offset=%d, size=%d\n", + pFile->hFile.h, lockType, ofst, nByte)); + + /* Release/Acquire the system-level lock */ + if( lockType==_SHM_UNLCK ){ + rc = winUnlockFile(&pFile->hFile.h, ofst, 0, nByte, 0); + }else{ + /* Initialize the locking parameters */ + DWORD dwFlags = LOCKFILE_FAIL_IMMEDIATELY; + if( lockType == _SHM_WRLCK ) dwFlags |= LOCKFILE_EXCLUSIVE_LOCK; + rc = winLockFile(&pFile->hFile.h, dwFlags, ofst, 0, nByte, 0); + } + + if( rc!= 0 ){ + rc = SQLITE_OK; + }else{ + pFile->lastErrno = osGetLastError(); + rc = SQLITE_BUSY; + } + + OSTRACE(("SHM-LOCK file=%p, func=%s, errno=%lu, rc=%s\n", + pFile->hFile.h, (lockType == _SHM_UNLCK) ? "winUnlockFile" : + "winLockFile", pFile->lastErrno, sqlite3ErrName(rc))); + + return rc; +} + +/* Forward references to VFS methods */ +static int winOpen(sqlite3_vfs*,const char*,sqlite3_file*,int,int*); +static int winDelete(sqlite3_vfs *,const char*,int); + +/* +** Purge the winShmNodeList list of all entries with winShmNode.nRef==0. +** +** This is not a VFS shared-memory method; it is a utility function called +** by VFS shared-memory methods. +*/ +static void winShmPurge(sqlite3_vfs *pVfs, int deleteFlag){ + winShmNode **pp; + winShmNode *p; + assert( winShmMutexHeld() ); + OSTRACE(("SHM-PURGE pid=%lu, deleteFlag=%d\n", + osGetCurrentProcessId(), deleteFlag)); + pp = &winShmNodeList; + while( (p = *pp)!=0 ){ + if( p->nRef==0 ){ + int i; + if( p->mutex ){ sqlite3_mutex_free(p->mutex); } + for(i=0; inRegion; i++){ + BOOL bRc = osUnmapViewOfFile(p->aRegion[i].pMap); + OSTRACE(("SHM-PURGE-UNMAP pid=%lu, region=%d, rc=%s\n", + osGetCurrentProcessId(), i, bRc ? "ok" : "failed")); + UNUSED_VARIABLE_VALUE(bRc); + bRc = osCloseHandle(p->aRegion[i].hMap); + OSTRACE(("SHM-PURGE-CLOSE pid=%lu, region=%d, rc=%s\n", + osGetCurrentProcessId(), i, bRc ? "ok" : "failed")); + UNUSED_VARIABLE_VALUE(bRc); + } + if( p->hFile.h!=NULL && p->hFile.h!=INVALID_HANDLE_VALUE ){ + SimulateIOErrorBenign(1); + winClose((sqlite3_file *)&p->hFile); + SimulateIOErrorBenign(0); + } + if( deleteFlag ){ + SimulateIOErrorBenign(1); + sqlite3BeginBenignMalloc(); + winDelete(pVfs, p->zFilename, 0); + sqlite3EndBenignMalloc(); + SimulateIOErrorBenign(0); + } + *pp = p->pNext; + sqlite3_free(p->aRegion); + sqlite3_free(p); + }else{ + pp = &p->pNext; + } + } +} + +/* +** Open the shared-memory area associated with database file pDbFd. +** +** When opening a new shared-memory file, if no other instances of that +** file are currently open, in this process or in other processes, then +** the file must be truncated to zero length or have its header cleared. +*/ +static int winOpenSharedMemory(winFile *pDbFd){ + struct winShm *p; /* The connection to be opened */ + struct winShmNode *pShmNode = 0; /* The underlying mmapped file */ + int rc; /* Result code */ + struct winShmNode *pNew; /* Newly allocated winShmNode */ + int nName; /* Size of zName in bytes */ + + assert( pDbFd->pShm==0 ); /* Not previously opened */ + + /* Allocate space for the new sqlite3_shm object. Also speculatively + ** allocate space for a new winShmNode and filename. + */ + p = sqlite3MallocZero( sizeof(*p) ); + if( p==0 ) return SQLITE_IOERR_NOMEM; + nName = sqlite3Strlen30(pDbFd->zPath); + pNew = sqlite3MallocZero( sizeof(*pShmNode) + nName + 17 ); + if( pNew==0 ){ + sqlite3_free(p); + return SQLITE_IOERR_NOMEM; + } + pNew->zFilename = (char*)&pNew[1]; + sqlite3_snprintf(nName+15, pNew->zFilename, "%s-shm", pDbFd->zPath); + sqlite3FileSuffix3(pDbFd->zPath, pNew->zFilename); + + /* Look to see if there is an existing winShmNode that can be used. + ** If no matching winShmNode currently exists, create a new one. + */ + winShmEnterMutex(); + for(pShmNode = winShmNodeList; pShmNode; pShmNode=pShmNode->pNext){ + /* TBD need to come up with better match here. Perhaps + ** use FILE_ID_BOTH_DIR_INFO Structure. + */ + if( sqlite3StrICmp(pShmNode->zFilename, pNew->zFilename)==0 ) break; + } + if( pShmNode ){ + sqlite3_free(pNew); + }else{ + pShmNode = pNew; + pNew = 0; + ((winFile*)(&pShmNode->hFile))->h = INVALID_HANDLE_VALUE; + pShmNode->pNext = winShmNodeList; + winShmNodeList = pShmNode; + + pShmNode->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); + if( pShmNode->mutex==0 ){ + rc = SQLITE_IOERR_NOMEM; + goto shm_open_err; + } + + rc = winOpen(pDbFd->pVfs, + pShmNode->zFilename, /* Name of the file (UTF-8) */ + (sqlite3_file*)&pShmNode->hFile, /* File handle here */ + SQLITE_OPEN_WAL | SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, + 0); + if( SQLITE_OK!=rc ){ + goto shm_open_err; + } + + /* Check to see if another process is holding the dead-man switch. + ** If not, truncate the file to zero length. + */ + if( winShmSystemLock(pShmNode, _SHM_WRLCK, WIN_SHM_DMS, 1)==SQLITE_OK ){ + rc = winTruncate((sqlite3_file *)&pShmNode->hFile, 0); + if( rc!=SQLITE_OK ){ + rc = winLogError(SQLITE_IOERR_SHMOPEN, osGetLastError(), + "winOpenShm", pDbFd->zPath); + } + } + if( rc==SQLITE_OK ){ + winShmSystemLock(pShmNode, _SHM_UNLCK, WIN_SHM_DMS, 1); + rc = winShmSystemLock(pShmNode, _SHM_RDLCK, WIN_SHM_DMS, 1); + } + if( rc ) goto shm_open_err; + } + + /* Make the new connection a child of the winShmNode */ + p->pShmNode = pShmNode; +#ifdef SQLITE_DEBUG + p->id = pShmNode->nextShmId++; +#endif + pShmNode->nRef++; + pDbFd->pShm = p; + winShmLeaveMutex(); + + /* The reference count on pShmNode has already been incremented under + ** the cover of the winShmEnterMutex() mutex and the pointer from the + ** new (struct winShm) object to the pShmNode has been set. All that is + ** left to do is to link the new object into the linked list starting + ** at pShmNode->pFirst. This must be done while holding the pShmNode->mutex + ** mutex. + */ + sqlite3_mutex_enter(pShmNode->mutex); + p->pNext = pShmNode->pFirst; + pShmNode->pFirst = p; + sqlite3_mutex_leave(pShmNode->mutex); + return SQLITE_OK; + + /* Jump here on any error */ +shm_open_err: + winShmSystemLock(pShmNode, _SHM_UNLCK, WIN_SHM_DMS, 1); + winShmPurge(pDbFd->pVfs, 0); /* This call frees pShmNode if required */ + sqlite3_free(p); + sqlite3_free(pNew); + winShmLeaveMutex(); + return rc; +} + +/* +** Close a connection to shared-memory. Delete the underlying +** storage if deleteFlag is true. +*/ +static int winShmUnmap( + sqlite3_file *fd, /* Database holding shared memory */ + int deleteFlag /* Delete after closing if true */ +){ + winFile *pDbFd; /* Database holding shared-memory */ + winShm *p; /* The connection to be closed */ + winShmNode *pShmNode; /* The underlying shared-memory file */ + winShm **pp; /* For looping over sibling connections */ + + pDbFd = (winFile*)fd; + p = pDbFd->pShm; + if( p==0 ) return SQLITE_OK; + pShmNode = p->pShmNode; + + /* Remove connection p from the set of connections associated + ** with pShmNode */ + sqlite3_mutex_enter(pShmNode->mutex); + for(pp=&pShmNode->pFirst; (*pp)!=p; pp = &(*pp)->pNext){} + *pp = p->pNext; + + /* Free the connection p */ + sqlite3_free(p); + pDbFd->pShm = 0; + sqlite3_mutex_leave(pShmNode->mutex); + + /* If pShmNode->nRef has reached 0, then close the underlying + ** shared-memory file, too */ + winShmEnterMutex(); + assert( pShmNode->nRef>0 ); + pShmNode->nRef--; + if( pShmNode->nRef==0 ){ + winShmPurge(pDbFd->pVfs, deleteFlag); + } + winShmLeaveMutex(); + + return SQLITE_OK; +} + +/* +** Change the lock state for a shared-memory segment. +*/ +static int winShmLock( + sqlite3_file *fd, /* Database file holding the shared memory */ + int ofst, /* First lock to acquire or release */ + int n, /* Number of locks to acquire or release */ + int flags /* What to do with the lock */ +){ + winFile *pDbFd = (winFile*)fd; /* Connection holding shared memory */ + winShm *p = pDbFd->pShm; /* The shared memory being locked */ + winShm *pX; /* For looping over all siblings */ + winShmNode *pShmNode = p->pShmNode; + int rc = SQLITE_OK; /* Result code */ + u16 mask; /* Mask of locks to take or release */ + + assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK ); + assert( n>=1 ); + assert( flags==(SQLITE_SHM_LOCK | SQLITE_SHM_SHARED) + || flags==(SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE) + || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED) + || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE) ); + assert( n==1 || (flags & SQLITE_SHM_EXCLUSIVE)!=0 ); + + mask = (u16)((1U<<(ofst+n)) - (1U<1 || mask==(1<mutex); + if( flags & SQLITE_SHM_UNLOCK ){ + u16 allMask = 0; /* Mask of locks held by siblings */ + + /* See if any siblings hold this same lock */ + for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ + if( pX==p ) continue; + assert( (pX->exclMask & (p->exclMask|p->sharedMask))==0 ); + allMask |= pX->sharedMask; + } + + /* Unlock the system-level locks */ + if( (mask & allMask)==0 ){ + rc = winShmSystemLock(pShmNode, _SHM_UNLCK, ofst+WIN_SHM_BASE, n); + }else{ + rc = SQLITE_OK; + } + + /* Undo the local locks */ + if( rc==SQLITE_OK ){ + p->exclMask &= ~mask; + p->sharedMask &= ~mask; + } + }else if( flags & SQLITE_SHM_SHARED ){ + u16 allShared = 0; /* Union of locks held by connections other than "p" */ + + /* Find out which shared locks are already held by sibling connections. + ** If any sibling already holds an exclusive lock, go ahead and return + ** SQLITE_BUSY. + */ + for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ + if( (pX->exclMask & mask)!=0 ){ + rc = SQLITE_BUSY; + break; + } + allShared |= pX->sharedMask; + } + + /* Get shared locks at the system level, if necessary */ + if( rc==SQLITE_OK ){ + if( (allShared & mask)==0 ){ + rc = winShmSystemLock(pShmNode, _SHM_RDLCK, ofst+WIN_SHM_BASE, n); + }else{ + rc = SQLITE_OK; + } + } + + /* Get the local shared locks */ + if( rc==SQLITE_OK ){ + p->sharedMask |= mask; + } + }else{ + /* Make sure no sibling connections hold locks that will block this + ** lock. If any do, return SQLITE_BUSY right away. + */ + for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ + if( (pX->exclMask & mask)!=0 || (pX->sharedMask & mask)!=0 ){ + rc = SQLITE_BUSY; + break; + } + } + + /* Get the exclusive locks at the system level. Then if successful + ** also mark the local connection as being locked. + */ + if( rc==SQLITE_OK ){ + rc = winShmSystemLock(pShmNode, _SHM_WRLCK, ofst+WIN_SHM_BASE, n); + if( rc==SQLITE_OK ){ + assert( (p->sharedMask & mask)==0 ); + p->exclMask |= mask; + } + } + } + sqlite3_mutex_leave(pShmNode->mutex); + OSTRACE(("SHM-LOCK pid=%lu, id=%d, sharedMask=%03x, exclMask=%03x, rc=%s\n", + osGetCurrentProcessId(), p->id, p->sharedMask, p->exclMask, + sqlite3ErrName(rc))); + return rc; +} + +/* +** Implement a memory barrier or memory fence on shared memory. +** +** All loads and stores begun before the barrier must complete before +** any load or store begun after the barrier. +*/ +static void winShmBarrier( + sqlite3_file *fd /* Database holding the shared memory */ +){ + UNUSED_PARAMETER(fd); + /* MemoryBarrier(); // does not work -- do not know why not */ + winShmEnterMutex(); + winShmLeaveMutex(); +} + +/* +** This function is called to obtain a pointer to region iRegion of the +** shared-memory associated with the database file fd. Shared-memory regions +** are numbered starting from zero. Each shared-memory region is szRegion +** bytes in size. +** +** If an error occurs, an error code is returned and *pp is set to NULL. +** +** Otherwise, if the isWrite parameter is 0 and the requested shared-memory +** region has not been allocated (by any client, including one running in a +** separate process), then *pp is set to NULL and SQLITE_OK returned. If +** isWrite is non-zero and the requested shared-memory region has not yet +** been allocated, it is allocated by this function. +** +** If the shared-memory region has already been allocated or is allocated by +** this call as described above, then it is mapped into this processes +** address space (if it is not already), *pp is set to point to the mapped +** memory and SQLITE_OK returned. +*/ +static int winShmMap( + sqlite3_file *fd, /* Handle open on database file */ + int iRegion, /* Region to retrieve */ + int szRegion, /* Size of regions */ + int isWrite, /* True to extend file if necessary */ + void volatile **pp /* OUT: Mapped memory */ +){ + winFile *pDbFd = (winFile*)fd; + winShm *p = pDbFd->pShm; + winShmNode *pShmNode; + int rc = SQLITE_OK; + + if( !p ){ + rc = winOpenSharedMemory(pDbFd); + if( rc!=SQLITE_OK ) return rc; + p = pDbFd->pShm; + } + pShmNode = p->pShmNode; + + sqlite3_mutex_enter(pShmNode->mutex); + assert( szRegion==pShmNode->szRegion || pShmNode->nRegion==0 ); + + if( pShmNode->nRegion<=iRegion ){ + struct ShmRegion *apNew; /* New aRegion[] array */ + int nByte = (iRegion+1)*szRegion; /* Minimum required file size */ + sqlite3_int64 sz; /* Current size of wal-index file */ + + pShmNode->szRegion = szRegion; + + /* The requested region is not mapped into this processes address space. + ** Check to see if it has been allocated (i.e. if the wal-index file is + ** large enough to contain the requested region). + */ + rc = winFileSize((sqlite3_file *)&pShmNode->hFile, &sz); + if( rc!=SQLITE_OK ){ + rc = winLogError(SQLITE_IOERR_SHMSIZE, osGetLastError(), + "winShmMap1", pDbFd->zPath); + goto shmpage_out; + } + + if( szhFile, nByte); + if( rc!=SQLITE_OK ){ + rc = winLogError(SQLITE_IOERR_SHMSIZE, osGetLastError(), + "winShmMap2", pDbFd->zPath); + goto shmpage_out; + } + } + + /* Map the requested memory region into this processes address space. */ + apNew = (struct ShmRegion *)sqlite3_realloc( + pShmNode->aRegion, (iRegion+1)*sizeof(apNew[0]) + ); + if( !apNew ){ + rc = SQLITE_IOERR_NOMEM; + goto shmpage_out; + } + pShmNode->aRegion = apNew; + + while( pShmNode->nRegion<=iRegion ){ + HANDLE hMap = NULL; /* file-mapping handle */ + void *pMap = 0; /* Mapped memory region */ + +#if SQLITE_OS_WINRT + hMap = osCreateFileMappingFromApp(pShmNode->hFile.h, + NULL, PAGE_READWRITE, nByte, NULL + ); +#elif defined(SQLITE_WIN32_HAS_WIDE) + hMap = osCreateFileMappingW(pShmNode->hFile.h, + NULL, PAGE_READWRITE, 0, nByte, NULL + ); +#elif defined(SQLITE_WIN32_HAS_ANSI) + hMap = osCreateFileMappingA(pShmNode->hFile.h, + NULL, PAGE_READWRITE, 0, nByte, NULL + ); +#endif + OSTRACE(("SHM-MAP-CREATE pid=%lu, region=%d, size=%d, rc=%s\n", + osGetCurrentProcessId(), pShmNode->nRegion, nByte, + hMap ? "ok" : "failed")); + if( hMap ){ + int iOffset = pShmNode->nRegion*szRegion; + int iOffsetShift = iOffset % winSysInfo.dwAllocationGranularity; +#if SQLITE_OS_WINRT + pMap = osMapViewOfFileFromApp(hMap, FILE_MAP_WRITE | FILE_MAP_READ, + iOffset - iOffsetShift, szRegion + iOffsetShift + ); +#else + pMap = osMapViewOfFile(hMap, FILE_MAP_WRITE | FILE_MAP_READ, + 0, iOffset - iOffsetShift, szRegion + iOffsetShift + ); +#endif + OSTRACE(("SHM-MAP-MAP pid=%lu, region=%d, offset=%d, size=%d, rc=%s\n", + osGetCurrentProcessId(), pShmNode->nRegion, iOffset, + szRegion, pMap ? "ok" : "failed")); + } + if( !pMap ){ + pShmNode->lastErrno = osGetLastError(); + rc = winLogError(SQLITE_IOERR_SHMMAP, pShmNode->lastErrno, + "winShmMap3", pDbFd->zPath); + if( hMap ) osCloseHandle(hMap); + goto shmpage_out; + } + + pShmNode->aRegion[pShmNode->nRegion].pMap = pMap; + pShmNode->aRegion[pShmNode->nRegion].hMap = hMap; + pShmNode->nRegion++; + } + } + +shmpage_out: + if( pShmNode->nRegion>iRegion ){ + int iOffset = iRegion*szRegion; + int iOffsetShift = iOffset % winSysInfo.dwAllocationGranularity; + char *p = (char *)pShmNode->aRegion[iRegion].pMap; + *pp = (void *)&p[iOffsetShift]; + }else{ + *pp = 0; + } + sqlite3_mutex_leave(pShmNode->mutex); + return rc; +} + +#else +# define winShmMap 0 +# define winShmLock 0 +# define winShmBarrier 0 +# define winShmUnmap 0 +#endif /* #ifndef SQLITE_OMIT_WAL */ + +/* +** Cleans up the mapped region of the specified file, if any. +*/ +#if SQLITE_MAX_MMAP_SIZE>0 +static int winUnmapfile(winFile *pFile){ + assert( pFile!=0 ); + OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, hMap=%p, pMapRegion=%p, " + "mmapSize=%lld, mmapSizeActual=%lld, mmapSizeMax=%lld\n", + osGetCurrentProcessId(), pFile, pFile->hMap, pFile->pMapRegion, + pFile->mmapSize, pFile->mmapSizeActual, pFile->mmapSizeMax)); + if( pFile->pMapRegion ){ + if( !osUnmapViewOfFile(pFile->pMapRegion) ){ + pFile->lastErrno = osGetLastError(); + OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, pMapRegion=%p, " + "rc=SQLITE_IOERR_MMAP\n", osGetCurrentProcessId(), pFile, + pFile->pMapRegion)); + return winLogError(SQLITE_IOERR_MMAP, pFile->lastErrno, + "winUnmapfile1", pFile->zPath); + } + pFile->pMapRegion = 0; + pFile->mmapSize = 0; + pFile->mmapSizeActual = 0; + } + if( pFile->hMap!=NULL ){ + if( !osCloseHandle(pFile->hMap) ){ + pFile->lastErrno = osGetLastError(); + OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, hMap=%p, rc=SQLITE_IOERR_MMAP\n", + osGetCurrentProcessId(), pFile, pFile->hMap)); + return winLogError(SQLITE_IOERR_MMAP, pFile->lastErrno, + "winUnmapfile2", pFile->zPath); + } + pFile->hMap = NULL; + } + OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, rc=SQLITE_OK\n", + osGetCurrentProcessId(), pFile)); + return SQLITE_OK; +} + +/* +** Memory map or remap the file opened by file-descriptor pFd (if the file +** is already mapped, the existing mapping is replaced by the new). Or, if +** there already exists a mapping for this file, and there are still +** outstanding xFetch() references to it, this function is a no-op. +** +** If parameter nByte is non-negative, then it is the requested size of +** the mapping to create. Otherwise, if nByte is less than zero, then the +** requested size is the size of the file on disk. The actual size of the +** created mapping is either the requested size or the value configured +** using SQLITE_FCNTL_MMAP_SIZE, whichever is smaller. +** +** SQLITE_OK is returned if no error occurs (even if the mapping is not +** recreated as a result of outstanding references) or an SQLite error +** code otherwise. +*/ +static int winMapfile(winFile *pFd, sqlite3_int64 nByte){ + sqlite3_int64 nMap = nByte; + int rc; + + assert( nMap>=0 || pFd->nFetchOut==0 ); + OSTRACE(("MAP-FILE pid=%lu, pFile=%p, size=%lld\n", + osGetCurrentProcessId(), pFd, nByte)); + + if( pFd->nFetchOut>0 ) return SQLITE_OK; + + if( nMap<0 ){ + rc = winFileSize((sqlite3_file*)pFd, &nMap); + if( rc ){ + OSTRACE(("MAP-FILE pid=%lu, pFile=%p, rc=SQLITE_IOERR_FSTAT\n", + osGetCurrentProcessId(), pFd)); + return SQLITE_IOERR_FSTAT; + } + } + if( nMap>pFd->mmapSizeMax ){ + nMap = pFd->mmapSizeMax; + } + nMap &= ~(sqlite3_int64)(winSysInfo.dwPageSize - 1); + + if( nMap==0 && pFd->mmapSize>0 ){ + winUnmapfile(pFd); + } + if( nMap!=pFd->mmapSize ){ + void *pNew = 0; + DWORD protect = PAGE_READONLY; + DWORD flags = FILE_MAP_READ; + + winUnmapfile(pFd); + if( (pFd->ctrlFlags & WINFILE_RDONLY)==0 ){ + protect = PAGE_READWRITE; + flags |= FILE_MAP_WRITE; + } +#if SQLITE_OS_WINRT + pFd->hMap = osCreateFileMappingFromApp(pFd->h, NULL, protect, nMap, NULL); +#elif defined(SQLITE_WIN32_HAS_WIDE) + pFd->hMap = osCreateFileMappingW(pFd->h, NULL, protect, + (DWORD)((nMap>>32) & 0xffffffff), + (DWORD)(nMap & 0xffffffff), NULL); +#elif defined(SQLITE_WIN32_HAS_ANSI) + pFd->hMap = osCreateFileMappingA(pFd->h, NULL, protect, + (DWORD)((nMap>>32) & 0xffffffff), + (DWORD)(nMap & 0xffffffff), NULL); +#endif + if( pFd->hMap==NULL ){ + pFd->lastErrno = osGetLastError(); + rc = winLogError(SQLITE_IOERR_MMAP, pFd->lastErrno, + "winMapfile1", pFd->zPath); + /* Log the error, but continue normal operation using xRead/xWrite */ + OSTRACE(("MAP-FILE-CREATE pid=%lu, pFile=%p, rc=%s\n", + osGetCurrentProcessId(), pFd, sqlite3ErrName(rc))); + return SQLITE_OK; + } + assert( (nMap % winSysInfo.dwPageSize)==0 ); + assert( sizeof(SIZE_T)==sizeof(sqlite3_int64) || nMap<=0xffffffff ); +#if SQLITE_OS_WINRT + pNew = osMapViewOfFileFromApp(pFd->hMap, flags, 0, (SIZE_T)nMap); +#else + pNew = osMapViewOfFile(pFd->hMap, flags, 0, 0, (SIZE_T)nMap); +#endif + if( pNew==NULL ){ + osCloseHandle(pFd->hMap); + pFd->hMap = NULL; + pFd->lastErrno = osGetLastError(); + rc = winLogError(SQLITE_IOERR_MMAP, pFd->lastErrno, + "winMapfile2", pFd->zPath); + /* Log the error, but continue normal operation using xRead/xWrite */ + OSTRACE(("MAP-FILE-MAP pid=%lu, pFile=%p, rc=%s\n", + osGetCurrentProcessId(), pFd, sqlite3ErrName(rc))); + return SQLITE_OK; + } + pFd->pMapRegion = pNew; + pFd->mmapSize = nMap; + pFd->mmapSizeActual = nMap; + } + + OSTRACE(("MAP-FILE pid=%lu, pFile=%p, rc=SQLITE_OK\n", + osGetCurrentProcessId(), pFd)); + return SQLITE_OK; +} +#endif /* SQLITE_MAX_MMAP_SIZE>0 */ + +/* +** If possible, return a pointer to a mapping of file fd starting at offset +** iOff. The mapping must be valid for at least nAmt bytes. +** +** If such a pointer can be obtained, store it in *pp and return SQLITE_OK. +** Or, if one cannot but no error occurs, set *pp to 0 and return SQLITE_OK. +** Finally, if an error does occur, return an SQLite error code. The final +** value of *pp is undefined in this case. +** +** If this function does return a pointer, the caller must eventually +** release the reference by calling winUnfetch(). +*/ +static int winFetch(sqlite3_file *fd, i64 iOff, int nAmt, void **pp){ +#if SQLITE_MAX_MMAP_SIZE>0 + winFile *pFd = (winFile*)fd; /* The underlying database file */ +#endif + *pp = 0; + + OSTRACE(("FETCH pid=%lu, pFile=%p, offset=%lld, amount=%d, pp=%p\n", + osGetCurrentProcessId(), fd, iOff, nAmt, pp)); + +#if SQLITE_MAX_MMAP_SIZE>0 + if( pFd->mmapSizeMax>0 ){ + if( pFd->pMapRegion==0 ){ + int rc = winMapfile(pFd, -1); + if( rc!=SQLITE_OK ){ + OSTRACE(("FETCH pid=%lu, pFile=%p, rc=%s\n", + osGetCurrentProcessId(), pFd, sqlite3ErrName(rc))); + return rc; + } + } + if( pFd->mmapSize >= iOff+nAmt ){ + *pp = &((u8 *)pFd->pMapRegion)[iOff]; + pFd->nFetchOut++; + } + } +#endif + + OSTRACE(("FETCH pid=%lu, pFile=%p, pp=%p, *pp=%p, rc=SQLITE_OK\n", + osGetCurrentProcessId(), fd, pp, *pp)); + return SQLITE_OK; +} + +/* +** If the third argument is non-NULL, then this function releases a +** reference obtained by an earlier call to winFetch(). The second +** argument passed to this function must be the same as the corresponding +** argument that was passed to the winFetch() invocation. +** +** Or, if the third argument is NULL, then this function is being called +** to inform the VFS layer that, according to POSIX, any existing mapping +** may now be invalid and should be unmapped. +*/ +static int winUnfetch(sqlite3_file *fd, i64 iOff, void *p){ +#if SQLITE_MAX_MMAP_SIZE>0 + winFile *pFd = (winFile*)fd; /* The underlying database file */ + + /* If p==0 (unmap the entire file) then there must be no outstanding + ** xFetch references. Or, if p!=0 (meaning it is an xFetch reference), + ** then there must be at least one outstanding. */ + assert( (p==0)==(pFd->nFetchOut==0) ); + + /* If p!=0, it must match the iOff value. */ + assert( p==0 || p==&((u8 *)pFd->pMapRegion)[iOff] ); + + OSTRACE(("UNFETCH pid=%lu, pFile=%p, offset=%lld, p=%p\n", + osGetCurrentProcessId(), pFd, iOff, p)); + + if( p ){ + pFd->nFetchOut--; + }else{ + /* FIXME: If Windows truly always prevents truncating or deleting a + ** file while a mapping is held, then the following winUnmapfile() call + ** is unnecessary can can be omitted - potentially improving + ** performance. */ + winUnmapfile(pFd); + } + + assert( pFd->nFetchOut>=0 ); +#endif + + OSTRACE(("UNFETCH pid=%lu, pFile=%p, rc=SQLITE_OK\n", + osGetCurrentProcessId(), fd)); + return SQLITE_OK; +} + +/* +** Here ends the implementation of all sqlite3_file methods. +** +********************** End sqlite3_file Methods ******************************* +******************************************************************************/ + +/* +** This vector defines all the methods that can operate on an +** sqlite3_file for win32. +*/ +static const sqlite3_io_methods winIoMethod = { + 3, /* iVersion */ + winClose, /* xClose */ + winRead, /* xRead */ + winWrite, /* xWrite */ + winTruncate, /* xTruncate */ + winSync, /* xSync */ + winFileSize, /* xFileSize */ + winLock, /* xLock */ + winUnlock, /* xUnlock */ + winCheckReservedLock, /* xCheckReservedLock */ + winFileControl, /* xFileControl */ + winSectorSize, /* xSectorSize */ + winDeviceCharacteristics, /* xDeviceCharacteristics */ + winShmMap, /* xShmMap */ + winShmLock, /* xShmLock */ + winShmBarrier, /* xShmBarrier */ + winShmUnmap, /* xShmUnmap */ + winFetch, /* xFetch */ + winUnfetch /* xUnfetch */ +}; + +/**************************************************************************** +**************************** sqlite3_vfs methods **************************** +** +** This division contains the implementation of methods on the +** sqlite3_vfs object. +*/ + +#if defined(__CYGWIN__) +/* +** Convert a filename from whatever the underlying operating system +** supports for filenames into UTF-8. Space to hold the result is +** obtained from malloc and must be freed by the calling function. +*/ +static char *winConvertToUtf8Filename(const void *zFilename){ + char *zConverted = 0; + if( osIsNT() ){ + zConverted = winUnicodeToUtf8(zFilename); + } +#ifdef SQLITE_WIN32_HAS_ANSI + else{ + zConverted = sqlite3_win32_mbcs_to_utf8(zFilename); + } +#endif + /* caller will handle out of memory */ + return zConverted; +} +#endif + +/* +** Convert a UTF-8 filename into whatever form the underlying +** operating system wants filenames in. Space to hold the result +** is obtained from malloc and must be freed by the calling +** function. +*/ +static void *winConvertFromUtf8Filename(const char *zFilename){ + void *zConverted = 0; + if( osIsNT() ){ + zConverted = winUtf8ToUnicode(zFilename); + } +#ifdef SQLITE_WIN32_HAS_ANSI + else{ + zConverted = sqlite3_win32_utf8_to_mbcs(zFilename); + } +#endif + /* caller will handle out of memory */ + return zConverted; +} + +/* +** This function returns non-zero if the specified UTF-8 string buffer +** ends with a directory separator character or one was successfully +** added to it. +*/ +static int winMakeEndInDirSep(int nBuf, char *zBuf){ + if( zBuf ){ + int nLen = sqlite3Strlen30(zBuf); + if( nLen>0 ){ + if( winIsDirSep(zBuf[nLen-1]) ){ + return 1; + }else if( nLen+1mxPathname; nBuf = nMax + 2; + zBuf = sqlite3MallocZero( nBuf ); + if( !zBuf ){ + OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n")); + return SQLITE_IOERR_NOMEM; + } + + /* Figure out the effective temporary directory. First, check if one + ** has been explicitly set by the application; otherwise, use the one + ** configured by the operating system. + */ + nDir = nMax - (nPre + 15); + assert( nDir>0 ); + if( sqlite3_temp_directory ){ + int nDirLen = sqlite3Strlen30(sqlite3_temp_directory); + if( nDirLen>0 ){ + if( !winIsDirSep(sqlite3_temp_directory[nDirLen-1]) ){ + nDirLen++; + } + if( nDirLen>nDir ){ + sqlite3_free(zBuf); + OSTRACE(("TEMP-FILENAME rc=SQLITE_ERROR\n")); + return winLogError(SQLITE_ERROR, 0, "winGetTempname1", 0); + } + sqlite3_snprintf(nMax, zBuf, "%s", sqlite3_temp_directory); + } + } +#if defined(__CYGWIN__) + else{ + static const char *azDirs[] = { + 0, /* getenv("SQLITE_TMPDIR") */ + 0, /* getenv("TMPDIR") */ + 0, /* getenv("TMP") */ + 0, /* getenv("TEMP") */ + 0, /* getenv("USERPROFILE") */ + "/var/tmp", + "/usr/tmp", + "/tmp", + ".", + 0 /* List terminator */ + }; + unsigned int i; + const char *zDir = 0; + + if( !azDirs[0] ) azDirs[0] = getenv("SQLITE_TMPDIR"); + if( !azDirs[1] ) azDirs[1] = getenv("TMPDIR"); + if( !azDirs[2] ) azDirs[2] = getenv("TMP"); + if( !azDirs[3] ) azDirs[3] = getenv("TEMP"); + if( !azDirs[4] ) azDirs[4] = getenv("USERPROFILE"); + for(i=0; i/etilqs_XXXXXXXXXXXXXXX\0\0" + ** + ** If not, return SQLITE_ERROR. The number 17 is used here in order to + ** account for the space used by the 15 character random suffix and the + ** two trailing NUL characters. The final directory separator character + ** has already added if it was not already present. + */ + nLen = sqlite3Strlen30(zBuf); + if( (nLen + nPre + 17) > nBuf ){ + sqlite3_free(zBuf); + OSTRACE(("TEMP-FILENAME rc=SQLITE_ERROR\n")); + return winLogError(SQLITE_ERROR, 0, "winGetTempname5", 0); + } + + sqlite3_snprintf(nBuf-16-nLen, zBuf+nLen, SQLITE_TEMP_FILE_PREFIX); + + j = sqlite3Strlen30(zBuf); + sqlite3_randomness(15, &zBuf[j]); + for(i=0; i<15; i++, j++){ + zBuf[j] = (char)zChars[ ((unsigned char)zBuf[j])%(sizeof(zChars)-1) ]; + } + zBuf[j] = 0; + zBuf[j+1] = 0; + *pzBuf = zBuf; + + OSTRACE(("TEMP-FILENAME name=%s, rc=SQLITE_OK\n", zBuf)); + return SQLITE_OK; +} + +/* +** Return TRUE if the named file is really a directory. Return false if +** it is something other than a directory, or if there is any kind of memory +** allocation failure. +*/ +static int winIsDir(const void *zConverted){ + DWORD attr; + int rc = 0; + DWORD lastErrno; + + if( osIsNT() ){ + int cnt = 0; + WIN32_FILE_ATTRIBUTE_DATA sAttrData; + memset(&sAttrData, 0, sizeof(sAttrData)); + while( !(rc = osGetFileAttributesExW((LPCWSTR)zConverted, + GetFileExInfoStandard, + &sAttrData)) && winRetryIoerr(&cnt, &lastErrno) ){} + if( !rc ){ + return 0; /* Invalid name? */ + } + attr = sAttrData.dwFileAttributes; +#if SQLITE_OS_WINCE==0 + }else{ + attr = osGetFileAttributesA((char*)zConverted); +#endif + } + return (attr!=INVALID_FILE_ATTRIBUTES) && (attr&FILE_ATTRIBUTE_DIRECTORY); +} + +/* +** Open a file. +*/ +static int winOpen( + sqlite3_vfs *pVfs, /* Used to get maximum path name length */ + const char *zName, /* Name of the file (UTF-8) */ + sqlite3_file *id, /* Write the SQLite file handle here */ + int flags, /* Open mode flags */ + int *pOutFlags /* Status return flags */ +){ + HANDLE h; + DWORD lastErrno = 0; + DWORD dwDesiredAccess; + DWORD dwShareMode; + DWORD dwCreationDisposition; + DWORD dwFlagsAndAttributes = 0; +#if SQLITE_OS_WINCE + int isTemp = 0; +#endif + winFile *pFile = (winFile*)id; + void *zConverted; /* Filename in OS encoding */ + const char *zUtf8Name = zName; /* Filename in UTF-8 encoding */ + int cnt = 0; + + /* If argument zPath is a NULL pointer, this function is required to open + ** a temporary file. Use this buffer to store the file name in. + */ + char *zTmpname = 0; /* For temporary filename, if necessary. */ + + int rc = SQLITE_OK; /* Function Return Code */ +#if !defined(NDEBUG) || SQLITE_OS_WINCE + int eType = flags&0xFFFFFF00; /* Type of file to open */ +#endif + + int isExclusive = (flags & SQLITE_OPEN_EXCLUSIVE); + int isDelete = (flags & SQLITE_OPEN_DELETEONCLOSE); + int isCreate = (flags & SQLITE_OPEN_CREATE); + int isReadonly = (flags & SQLITE_OPEN_READONLY); + int isReadWrite = (flags & SQLITE_OPEN_READWRITE); + +#ifndef NDEBUG + int isOpenJournal = (isCreate && ( + eType==SQLITE_OPEN_MASTER_JOURNAL + || eType==SQLITE_OPEN_MAIN_JOURNAL + || eType==SQLITE_OPEN_WAL + )); +#endif + + OSTRACE(("OPEN name=%s, pFile=%p, flags=%x, pOutFlags=%p\n", + zUtf8Name, id, flags, pOutFlags)); + + /* Check the following statements are true: + ** + ** (a) Exactly one of the READWRITE and READONLY flags must be set, and + ** (b) if CREATE is set, then READWRITE must also be set, and + ** (c) if EXCLUSIVE is set, then CREATE must also be set. + ** (d) if DELETEONCLOSE is set, then CREATE must also be set. + */ + assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly)); + assert(isCreate==0 || isReadWrite); + assert(isExclusive==0 || isCreate); + assert(isDelete==0 || isCreate); + + /* The main DB, main journal, WAL file and master journal are never + ** automatically deleted. Nor are they ever temporary files. */ + assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); + assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); + assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MASTER_JOURNAL ); + assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); + + /* Assert that the upper layer has set one of the "file-type" flags. */ + assert( eType==SQLITE_OPEN_MAIN_DB || eType==SQLITE_OPEN_TEMP_DB + || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL + || eType==SQLITE_OPEN_SUBJOURNAL || eType==SQLITE_OPEN_MASTER_JOURNAL + || eType==SQLITE_OPEN_TRANSIENT_DB || eType==SQLITE_OPEN_WAL + ); + + assert( pFile!=0 ); + memset(pFile, 0, sizeof(winFile)); + pFile->h = INVALID_HANDLE_VALUE; + +#if SQLITE_OS_WINRT + if( !zUtf8Name && !sqlite3_temp_directory ){ + sqlite3_log(SQLITE_ERROR, + "sqlite3_temp_directory variable should be set for WinRT"); + } +#endif + + /* If the second argument to this function is NULL, generate a + ** temporary file name to use + */ + if( !zUtf8Name ){ + assert( isDelete && !isOpenJournal ); + rc = winGetTempname(pVfs, &zTmpname); + if( rc!=SQLITE_OK ){ + OSTRACE(("OPEN name=%s, rc=%s", zUtf8Name, sqlite3ErrName(rc))); + return rc; + } + zUtf8Name = zTmpname; + } + + /* Database filenames are double-zero terminated if they are not + ** URIs with parameters. Hence, they can always be passed into + ** sqlite3_uri_parameter(). + */ + assert( (eType!=SQLITE_OPEN_MAIN_DB) || (flags & SQLITE_OPEN_URI) || + zUtf8Name[sqlite3Strlen30(zUtf8Name)+1]==0 ); + + /* Convert the filename to the system encoding. */ + zConverted = winConvertFromUtf8Filename(zUtf8Name); + if( zConverted==0 ){ + sqlite3_free(zTmpname); + OSTRACE(("OPEN name=%s, rc=SQLITE_IOERR_NOMEM", zUtf8Name)); + return SQLITE_IOERR_NOMEM; + } + + if( winIsDir(zConverted) ){ + sqlite3_free(zConverted); + sqlite3_free(zTmpname); + OSTRACE(("OPEN name=%s, rc=SQLITE_CANTOPEN_ISDIR", zUtf8Name)); + return SQLITE_CANTOPEN_ISDIR; + } + + if( isReadWrite ){ + dwDesiredAccess = GENERIC_READ | GENERIC_WRITE; + }else{ + dwDesiredAccess = GENERIC_READ; + } + + /* SQLITE_OPEN_EXCLUSIVE is used to make sure that a new file is + ** created. SQLite doesn't use it to indicate "exclusive access" + ** as it is usually understood. + */ + if( isExclusive ){ + /* Creates a new file, only if it does not already exist. */ + /* If the file exists, it fails. */ + dwCreationDisposition = CREATE_NEW; + }else if( isCreate ){ + /* Open existing file, or create if it doesn't exist */ + dwCreationDisposition = OPEN_ALWAYS; + }else{ + /* Opens a file, only if it exists. */ + dwCreationDisposition = OPEN_EXISTING; + } + + dwShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE; + + if( isDelete ){ +#if SQLITE_OS_WINCE + dwFlagsAndAttributes = FILE_ATTRIBUTE_HIDDEN; + isTemp = 1; +#else + dwFlagsAndAttributes = FILE_ATTRIBUTE_TEMPORARY + | FILE_ATTRIBUTE_HIDDEN + | FILE_FLAG_DELETE_ON_CLOSE; +#endif + }else{ + dwFlagsAndAttributes = FILE_ATTRIBUTE_NORMAL; + } + /* Reports from the internet are that performance is always + ** better if FILE_FLAG_RANDOM_ACCESS is used. Ticket #2699. */ +#if SQLITE_OS_WINCE + dwFlagsAndAttributes |= FILE_FLAG_RANDOM_ACCESS; +#endif + + if( osIsNT() ){ +#if SQLITE_OS_WINRT + CREATEFILE2_EXTENDED_PARAMETERS extendedParameters; + extendedParameters.dwSize = sizeof(CREATEFILE2_EXTENDED_PARAMETERS); + extendedParameters.dwFileAttributes = + dwFlagsAndAttributes & FILE_ATTRIBUTE_MASK; + extendedParameters.dwFileFlags = dwFlagsAndAttributes & FILE_FLAG_MASK; + extendedParameters.dwSecurityQosFlags = SECURITY_ANONYMOUS; + extendedParameters.lpSecurityAttributes = NULL; + extendedParameters.hTemplateFile = NULL; + while( (h = osCreateFile2((LPCWSTR)zConverted, + dwDesiredAccess, + dwShareMode, + dwCreationDisposition, + &extendedParameters))==INVALID_HANDLE_VALUE && + winRetryIoerr(&cnt, &lastErrno) ){ + /* Noop */ + } +#else + while( (h = osCreateFileW((LPCWSTR)zConverted, + dwDesiredAccess, + dwShareMode, NULL, + dwCreationDisposition, + dwFlagsAndAttributes, + NULL))==INVALID_HANDLE_VALUE && + winRetryIoerr(&cnt, &lastErrno) ){ + /* Noop */ + } +#endif + } +#ifdef SQLITE_WIN32_HAS_ANSI + else{ + while( (h = osCreateFileA((LPCSTR)zConverted, + dwDesiredAccess, + dwShareMode, NULL, + dwCreationDisposition, + dwFlagsAndAttributes, + NULL))==INVALID_HANDLE_VALUE && + winRetryIoerr(&cnt, &lastErrno) ){ + /* Noop */ + } + } +#endif + winLogIoerr(cnt); + + OSTRACE(("OPEN file=%p, name=%s, access=%lx, rc=%s\n", h, zUtf8Name, + dwDesiredAccess, (h==INVALID_HANDLE_VALUE) ? "failed" : "ok")); + + if( h==INVALID_HANDLE_VALUE ){ + pFile->lastErrno = lastErrno; + winLogError(SQLITE_CANTOPEN, pFile->lastErrno, "winOpen", zUtf8Name); + sqlite3_free(zConverted); + sqlite3_free(zTmpname); + if( isReadWrite && !isExclusive ){ + return winOpen(pVfs, zName, id, + ((flags|SQLITE_OPEN_READONLY) & + ~(SQLITE_OPEN_CREATE|SQLITE_OPEN_READWRITE)), + pOutFlags); + }else{ + return SQLITE_CANTOPEN_BKPT; + } + } + + if( pOutFlags ){ + if( isReadWrite ){ + *pOutFlags = SQLITE_OPEN_READWRITE; + }else{ + *pOutFlags = SQLITE_OPEN_READONLY; + } + } + + OSTRACE(("OPEN file=%p, name=%s, access=%lx, pOutFlags=%p, *pOutFlags=%d, " + "rc=%s\n", h, zUtf8Name, dwDesiredAccess, pOutFlags, pOutFlags ? + *pOutFlags : 0, (h==INVALID_HANDLE_VALUE) ? "failed" : "ok")); + +#if SQLITE_OS_WINCE + if( isReadWrite && eType==SQLITE_OPEN_MAIN_DB + && (rc = winceCreateLock(zName, pFile))!=SQLITE_OK + ){ + osCloseHandle(h); + sqlite3_free(zConverted); + sqlite3_free(zTmpname); + OSTRACE(("OPEN-CE-LOCK name=%s, rc=%s\n", zName, sqlite3ErrName(rc))); + return rc; + } + if( isTemp ){ + pFile->zDeleteOnClose = zConverted; + }else +#endif + { + sqlite3_free(zConverted); + } + + sqlite3_free(zTmpname); + pFile->pMethod = &winIoMethod; + pFile->pVfs = pVfs; + pFile->h = h; + if( isReadonly ){ + pFile->ctrlFlags |= WINFILE_RDONLY; + } + if( sqlite3_uri_boolean(zName, "psow", SQLITE_POWERSAFE_OVERWRITE) ){ + pFile->ctrlFlags |= WINFILE_PSOW; + } + pFile->lastErrno = NO_ERROR; + pFile->zPath = zName; +#if SQLITE_MAX_MMAP_SIZE>0 + pFile->hMap = NULL; + pFile->pMapRegion = 0; + pFile->mmapSize = 0; + pFile->mmapSizeActual = 0; + pFile->mmapSizeMax = sqlite3GlobalConfig.szMmap; +#endif + + OpenCounter(+1); + return rc; +} + +/* +** Delete the named file. +** +** Note that Windows does not allow a file to be deleted if some other +** process has it open. Sometimes a virus scanner or indexing program +** will open a journal file shortly after it is created in order to do +** whatever it does. While this other process is holding the +** file open, we will be unable to delete it. To work around this +** problem, we delay 100 milliseconds and try to delete again. Up +** to MX_DELETION_ATTEMPTs deletion attempts are run before giving +** up and returning an error. +*/ +static int winDelete( + sqlite3_vfs *pVfs, /* Not used on win32 */ + const char *zFilename, /* Name of file to delete */ + int syncDir /* Not used on win32 */ +){ + int cnt = 0; + int rc; + DWORD attr; + DWORD lastErrno = 0; + void *zConverted; + UNUSED_PARAMETER(pVfs); + UNUSED_PARAMETER(syncDir); + + SimulateIOError(return SQLITE_IOERR_DELETE); + OSTRACE(("DELETE name=%s, syncDir=%d\n", zFilename, syncDir)); + + zConverted = winConvertFromUtf8Filename(zFilename); + if( zConverted==0 ){ + OSTRACE(("DELETE name=%s, rc=SQLITE_IOERR_NOMEM\n", zFilename)); + return SQLITE_IOERR_NOMEM; + } + if( osIsNT() ){ + do { +#if SQLITE_OS_WINRT + WIN32_FILE_ATTRIBUTE_DATA sAttrData; + memset(&sAttrData, 0, sizeof(sAttrData)); + if ( osGetFileAttributesExW(zConverted, GetFileExInfoStandard, + &sAttrData) ){ + attr = sAttrData.dwFileAttributes; + }else{ + lastErrno = osGetLastError(); + if( lastErrno==ERROR_FILE_NOT_FOUND + || lastErrno==ERROR_PATH_NOT_FOUND ){ + rc = SQLITE_IOERR_DELETE_NOENT; /* Already gone? */ + }else{ + rc = SQLITE_ERROR; + } + break; + } +#else + attr = osGetFileAttributesW(zConverted); +#endif + if ( attr==INVALID_FILE_ATTRIBUTES ){ + lastErrno = osGetLastError(); + if( lastErrno==ERROR_FILE_NOT_FOUND + || lastErrno==ERROR_PATH_NOT_FOUND ){ + rc = SQLITE_IOERR_DELETE_NOENT; /* Already gone? */ + }else{ + rc = SQLITE_ERROR; + } + break; + } + if ( attr&FILE_ATTRIBUTE_DIRECTORY ){ + rc = SQLITE_ERROR; /* Files only. */ + break; + } + if ( osDeleteFileW(zConverted) ){ + rc = SQLITE_OK; /* Deleted OK. */ + break; + } + if ( !winRetryIoerr(&cnt, &lastErrno) ){ + rc = SQLITE_ERROR; /* No more retries. */ + break; + } + } while(1); + } +#ifdef SQLITE_WIN32_HAS_ANSI + else{ + do { + attr = osGetFileAttributesA(zConverted); + if ( attr==INVALID_FILE_ATTRIBUTES ){ + lastErrno = osGetLastError(); + if( lastErrno==ERROR_FILE_NOT_FOUND + || lastErrno==ERROR_PATH_NOT_FOUND ){ + rc = SQLITE_IOERR_DELETE_NOENT; /* Already gone? */ + }else{ + rc = SQLITE_ERROR; + } + break; + } + if ( attr&FILE_ATTRIBUTE_DIRECTORY ){ + rc = SQLITE_ERROR; /* Files only. */ + break; + } + if ( osDeleteFileA(zConverted) ){ + rc = SQLITE_OK; /* Deleted OK. */ + break; + } + if ( !winRetryIoerr(&cnt, &lastErrno) ){ + rc = SQLITE_ERROR; /* No more retries. */ + break; + } + } while(1); + } +#endif + if( rc && rc!=SQLITE_IOERR_DELETE_NOENT ){ + rc = winLogError(SQLITE_IOERR_DELETE, lastErrno, "winDelete", zFilename); + }else{ + winLogIoerr(cnt); + } + sqlite3_free(zConverted); + OSTRACE(("DELETE name=%s, rc=%s\n", zFilename, sqlite3ErrName(rc))); + return rc; +} + +/* +** Check the existence and status of a file. +*/ +static int winAccess( + sqlite3_vfs *pVfs, /* Not used on win32 */ + const char *zFilename, /* Name of file to check */ + int flags, /* Type of test to make on this file */ + int *pResOut /* OUT: Result */ +){ + DWORD attr; + int rc = 0; + DWORD lastErrno = 0; + void *zConverted; + UNUSED_PARAMETER(pVfs); + + SimulateIOError( return SQLITE_IOERR_ACCESS; ); + OSTRACE(("ACCESS name=%s, flags=%x, pResOut=%p\n", + zFilename, flags, pResOut)); + + zConverted = winConvertFromUtf8Filename(zFilename); + if( zConverted==0 ){ + OSTRACE(("ACCESS name=%s, rc=SQLITE_IOERR_NOMEM\n", zFilename)); + return SQLITE_IOERR_NOMEM; + } + if( osIsNT() ){ + int cnt = 0; + WIN32_FILE_ATTRIBUTE_DATA sAttrData; + memset(&sAttrData, 0, sizeof(sAttrData)); + while( !(rc = osGetFileAttributesExW((LPCWSTR)zConverted, + GetFileExInfoStandard, + &sAttrData)) && winRetryIoerr(&cnt, &lastErrno) ){} + if( rc ){ + /* For an SQLITE_ACCESS_EXISTS query, treat a zero-length file + ** as if it does not exist. + */ + if( flags==SQLITE_ACCESS_EXISTS + && sAttrData.nFileSizeHigh==0 + && sAttrData.nFileSizeLow==0 ){ + attr = INVALID_FILE_ATTRIBUTES; + }else{ + attr = sAttrData.dwFileAttributes; + } + }else{ + winLogIoerr(cnt); + if( lastErrno!=ERROR_FILE_NOT_FOUND && lastErrno!=ERROR_PATH_NOT_FOUND ){ + sqlite3_free(zConverted); + return winLogError(SQLITE_IOERR_ACCESS, lastErrno, "winAccess", + zFilename); + }else{ + attr = INVALID_FILE_ATTRIBUTES; + } + } + } +#ifdef SQLITE_WIN32_HAS_ANSI + else{ + attr = osGetFileAttributesA((char*)zConverted); + } +#endif + sqlite3_free(zConverted); + switch( flags ){ + case SQLITE_ACCESS_READ: + case SQLITE_ACCESS_EXISTS: + rc = attr!=INVALID_FILE_ATTRIBUTES; + break; + case SQLITE_ACCESS_READWRITE: + rc = attr!=INVALID_FILE_ATTRIBUTES && + (attr & FILE_ATTRIBUTE_READONLY)==0; + break; + default: + assert(!"Invalid flags argument"); + } + *pResOut = rc; + OSTRACE(("ACCESS name=%s, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n", + zFilename, pResOut, *pResOut)); + return SQLITE_OK; +} + +/* +** Returns non-zero if the specified path name starts with a drive letter +** followed by a colon character. +*/ +static BOOL winIsDriveLetterAndColon( + const char *zPathname +){ + return ( sqlite3Isalpha(zPathname[0]) && zPathname[1]==':' ); +} + +/* +** Returns non-zero if the specified path name should be used verbatim. If +** non-zero is returned from this function, the calling function must simply +** use the provided path name verbatim -OR- resolve it into a full path name +** using the GetFullPathName Win32 API function (if available). +*/ +static BOOL winIsVerbatimPathname( + const char *zPathname +){ + /* + ** If the path name starts with a forward slash or a backslash, it is either + ** a legal UNC name, a volume relative path, or an absolute path name in the + ** "Unix" format on Windows. There is no easy way to differentiate between + ** the final two cases; therefore, we return the safer return value of TRUE + ** so that callers of this function will simply use it verbatim. + */ + if ( winIsDirSep(zPathname[0]) ){ + return TRUE; + } + + /* + ** If the path name starts with a letter and a colon it is either a volume + ** relative path or an absolute path. Callers of this function must not + ** attempt to treat it as a relative path name (i.e. they should simply use + ** it verbatim). + */ + if ( winIsDriveLetterAndColon(zPathname) ){ + return TRUE; + } + + /* + ** If we get to this point, the path name should almost certainly be a purely + ** relative one (i.e. not a UNC name, not absolute, and not volume relative). + */ + return FALSE; +} + +/* +** Turn a relative pathname into a full pathname. Write the full +** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname +** bytes in size. +*/ +static int winFullPathname( + sqlite3_vfs *pVfs, /* Pointer to vfs object */ + const char *zRelative, /* Possibly relative input path */ + int nFull, /* Size of output buffer in bytes */ + char *zFull /* Output buffer */ +){ + +#if defined(__CYGWIN__) + SimulateIOError( return SQLITE_ERROR ); + UNUSED_PARAMETER(nFull); + assert( nFull>=pVfs->mxPathname ); + if ( sqlite3_data_directory && !winIsVerbatimPathname(zRelative) ){ + /* + ** NOTE: We are dealing with a relative path name and the data + ** directory has been set. Therefore, use it as the basis + ** for converting the relative path name to an absolute + ** one by prepending the data directory and a slash. + */ + char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); + if( !zOut ){ + return SQLITE_IOERR_NOMEM; + } + if( cygwin_conv_path( + (osIsNT() ? CCP_POSIX_TO_WIN_W : CCP_POSIX_TO_WIN_A) | + CCP_RELATIVE, zRelative, zOut, pVfs->mxPathname+1)<0 ){ + sqlite3_free(zOut); + return winLogError(SQLITE_CANTOPEN_CONVPATH, (DWORD)errno, + "winFullPathname1", zRelative); + }else{ + char *zUtf8 = winConvertToUtf8Filename(zOut); + if( !zUtf8 ){ + sqlite3_free(zOut); + return SQLITE_IOERR_NOMEM; + } + sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s", + sqlite3_data_directory, winGetDirSep(), zUtf8); + sqlite3_free(zUtf8); + sqlite3_free(zOut); + } + }else{ + char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); + if( !zOut ){ + return SQLITE_IOERR_NOMEM; + } + if( cygwin_conv_path( + (osIsNT() ? CCP_POSIX_TO_WIN_W : CCP_POSIX_TO_WIN_A), + zRelative, zOut, pVfs->mxPathname+1)<0 ){ + sqlite3_free(zOut); + return winLogError(SQLITE_CANTOPEN_CONVPATH, (DWORD)errno, + "winFullPathname2", zRelative); + }else{ + char *zUtf8 = winConvertToUtf8Filename(zOut); + if( !zUtf8 ){ + sqlite3_free(zOut); + return SQLITE_IOERR_NOMEM; + } + sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zUtf8); + sqlite3_free(zUtf8); + sqlite3_free(zOut); + } + } + return SQLITE_OK; +#endif + +#if (SQLITE_OS_WINCE || SQLITE_OS_WINRT) && !defined(__CYGWIN__) + SimulateIOError( return SQLITE_ERROR ); + /* WinCE has no concept of a relative pathname, or so I am told. */ + /* WinRT has no way to convert a relative path to an absolute one. */ + if ( sqlite3_data_directory && !winIsVerbatimPathname(zRelative) ){ + /* + ** NOTE: We are dealing with a relative path name and the data + ** directory has been set. Therefore, use it as the basis + ** for converting the relative path name to an absolute + ** one by prepending the data directory and a backslash. + */ + sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s", + sqlite3_data_directory, winGetDirSep(), zRelative); + }else{ + sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zRelative); + } + return SQLITE_OK; +#endif + +#if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(__CYGWIN__) + DWORD nByte; + void *zConverted; + char *zOut; + + /* If this path name begins with "/X:", where "X" is any alphabetic + ** character, discard the initial "/" from the pathname. + */ + if( zRelative[0]=='/' && winIsDriveLetterAndColon(zRelative+1) ){ + zRelative++; + } + + /* It's odd to simulate an io-error here, but really this is just + ** using the io-error infrastructure to test that SQLite handles this + ** function failing. This function could fail if, for example, the + ** current working directory has been unlinked. + */ + SimulateIOError( return SQLITE_ERROR ); + if ( sqlite3_data_directory && !winIsVerbatimPathname(zRelative) ){ + /* + ** NOTE: We are dealing with a relative path name and the data + ** directory has been set. Therefore, use it as the basis + ** for converting the relative path name to an absolute + ** one by prepending the data directory and a backslash. + */ + sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s", + sqlite3_data_directory, winGetDirSep(), zRelative); + return SQLITE_OK; + } + zConverted = winConvertFromUtf8Filename(zRelative); + if( zConverted==0 ){ + return SQLITE_IOERR_NOMEM; + } + if( osIsNT() ){ + LPWSTR zTemp; + nByte = osGetFullPathNameW((LPCWSTR)zConverted, 0, 0, 0); + if( nByte==0 ){ + sqlite3_free(zConverted); + return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), + "winFullPathname1", zRelative); + } + nByte += 3; + zTemp = sqlite3MallocZero( nByte*sizeof(zTemp[0]) ); + if( zTemp==0 ){ + sqlite3_free(zConverted); + return SQLITE_IOERR_NOMEM; + } + nByte = osGetFullPathNameW((LPCWSTR)zConverted, nByte, zTemp, 0); + if( nByte==0 ){ + sqlite3_free(zConverted); + sqlite3_free(zTemp); + return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), + "winFullPathname2", zRelative); + } + sqlite3_free(zConverted); + zOut = winUnicodeToUtf8(zTemp); + sqlite3_free(zTemp); + } +#ifdef SQLITE_WIN32_HAS_ANSI + else{ + char *zTemp; + nByte = osGetFullPathNameA((char*)zConverted, 0, 0, 0); + if( nByte==0 ){ + sqlite3_free(zConverted); + return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), + "winFullPathname3", zRelative); + } + nByte += 3; + zTemp = sqlite3MallocZero( nByte*sizeof(zTemp[0]) ); + if( zTemp==0 ){ + sqlite3_free(zConverted); + return SQLITE_IOERR_NOMEM; + } + nByte = osGetFullPathNameA((char*)zConverted, nByte, zTemp, 0); + if( nByte==0 ){ + sqlite3_free(zConverted); + sqlite3_free(zTemp); + return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), + "winFullPathname4", zRelative); + } + sqlite3_free(zConverted); + zOut = sqlite3_win32_mbcs_to_utf8(zTemp); + sqlite3_free(zTemp); + } +#endif + if( zOut ){ + sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zOut); + sqlite3_free(zOut); + return SQLITE_OK; + }else{ + return SQLITE_IOERR_NOMEM; + } +#endif +} + +#ifndef SQLITE_OMIT_LOAD_EXTENSION +/* +** Interfaces for opening a shared library, finding entry points +** within the shared library, and closing the shared library. +*/ +static void *winDlOpen(sqlite3_vfs *pVfs, const char *zFilename){ + HANDLE h; +#if defined(__CYGWIN__) + int nFull = pVfs->mxPathname+1; + char *zFull = sqlite3MallocZero( nFull ); + void *zConverted = 0; + if( zFull==0 ){ + OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)0)); + return 0; + } + if( winFullPathname(pVfs, zFilename, nFull, zFull)!=SQLITE_OK ){ + sqlite3_free(zFull); + OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)0)); + return 0; + } + zConverted = winConvertFromUtf8Filename(zFull); + sqlite3_free(zFull); +#else + void *zConverted = winConvertFromUtf8Filename(zFilename); + UNUSED_PARAMETER(pVfs); +#endif + if( zConverted==0 ){ + OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)0)); + return 0; + } + if( osIsNT() ){ +#if SQLITE_OS_WINRT + h = osLoadPackagedLibrary((LPCWSTR)zConverted, 0); +#else + h = osLoadLibraryW((LPCWSTR)zConverted); +#endif + } +#ifdef SQLITE_WIN32_HAS_ANSI + else{ + h = osLoadLibraryA((char*)zConverted); + } +#endif + OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)h)); + sqlite3_free(zConverted); + return (void*)h; +} +static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){ + UNUSED_PARAMETER(pVfs); + winGetLastErrorMsg(osGetLastError(), nBuf, zBufOut); +} +static void (*winDlSym(sqlite3_vfs *pVfs,void *pH,const char *zSym))(void){ + FARPROC proc; + UNUSED_PARAMETER(pVfs); + proc = osGetProcAddressA((HANDLE)pH, zSym); + OSTRACE(("DLSYM handle=%p, symbol=%s, address=%p\n", + (void*)pH, zSym, (void*)proc)); + return (void(*)(void))proc; +} +static void winDlClose(sqlite3_vfs *pVfs, void *pHandle){ + UNUSED_PARAMETER(pVfs); + osFreeLibrary((HANDLE)pHandle); + OSTRACE(("DLCLOSE handle=%p\n", (void*)pHandle)); +} +#else /* if SQLITE_OMIT_LOAD_EXTENSION is defined: */ + #define winDlOpen 0 + #define winDlError 0 + #define winDlSym 0 + #define winDlClose 0 +#endif + + +/* +** Write up to nBuf bytes of randomness into zBuf. +*/ +static int winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ + int n = 0; + UNUSED_PARAMETER(pVfs); +#if defined(SQLITE_TEST) + n = nBuf; + memset(zBuf, 0, nBuf); +#else + if( sizeof(SYSTEMTIME)<=nBuf-n ){ + SYSTEMTIME x; + osGetSystemTime(&x); + memcpy(&zBuf[n], &x, sizeof(x)); + n += sizeof(x); + } + if( sizeof(DWORD)<=nBuf-n ){ + DWORD pid = osGetCurrentProcessId(); + memcpy(&zBuf[n], &pid, sizeof(pid)); + n += sizeof(pid); + } +#if SQLITE_OS_WINRT + if( sizeof(ULONGLONG)<=nBuf-n ){ + ULONGLONG cnt = osGetTickCount64(); + memcpy(&zBuf[n], &cnt, sizeof(cnt)); + n += sizeof(cnt); + } +#else + if( sizeof(DWORD)<=nBuf-n ){ + DWORD cnt = osGetTickCount(); + memcpy(&zBuf[n], &cnt, sizeof(cnt)); + n += sizeof(cnt); + } +#endif + if( sizeof(LARGE_INTEGER)<=nBuf-n ){ + LARGE_INTEGER i; + osQueryPerformanceCounter(&i); + memcpy(&zBuf[n], &i, sizeof(i)); + n += sizeof(i); + } +#endif + return n; +} + + +/* +** Sleep for a little while. Return the amount of time slept. +*/ +static int winSleep(sqlite3_vfs *pVfs, int microsec){ + sqlite3_win32_sleep((microsec+999)/1000); + UNUSED_PARAMETER(pVfs); + return ((microsec+999)/1000)*1000; +} + +/* +** The following variable, if set to a non-zero value, is interpreted as +** the number of seconds since 1970 and is used to set the result of +** sqlite3OsCurrentTime() during testing. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_current_time = 0; /* Fake system time in seconds since 1970. */ +#endif + +/* +** Find the current time (in Universal Coordinated Time). Write into *piNow +** the current time and date as a Julian Day number times 86_400_000. In +** other words, write into *piNow the number of milliseconds since the Julian +** epoch of noon in Greenwich on November 24, 4714 B.C according to the +** proleptic Gregorian calendar. +** +** On success, return SQLITE_OK. Return SQLITE_ERROR if the time and date +** cannot be found. +*/ +static int winCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){ + /* FILETIME structure is a 64-bit value representing the number of + 100-nanosecond intervals since January 1, 1601 (= JD 2305813.5). + */ + FILETIME ft; + static const sqlite3_int64 winFiletimeEpoch = 23058135*(sqlite3_int64)8640000; +#ifdef SQLITE_TEST + static const sqlite3_int64 unixEpoch = 24405875*(sqlite3_int64)8640000; +#endif + /* 2^32 - to avoid use of LL and warnings in gcc */ + static const sqlite3_int64 max32BitValue = + (sqlite3_int64)2000000000 + (sqlite3_int64)2000000000 + + (sqlite3_int64)294967296; + +#if SQLITE_OS_WINCE + SYSTEMTIME time; + osGetSystemTime(&time); + /* if SystemTimeToFileTime() fails, it returns zero. */ + if (!osSystemTimeToFileTime(&time,&ft)){ + return SQLITE_ERROR; + } +#else + osGetSystemTimeAsFileTime( &ft ); +#endif + + *piNow = winFiletimeEpoch + + ((((sqlite3_int64)ft.dwHighDateTime)*max32BitValue) + + (sqlite3_int64)ft.dwLowDateTime)/(sqlite3_int64)10000; + +#ifdef SQLITE_TEST + if( sqlite3_current_time ){ + *piNow = 1000*(sqlite3_int64)sqlite3_current_time + unixEpoch; + } +#endif + UNUSED_PARAMETER(pVfs); + return SQLITE_OK; +} + +/* +** Find the current time (in Universal Coordinated Time). Write the +** current time and date as a Julian Day number into *prNow and +** return 0. Return 1 if the time and date cannot be found. +*/ +static int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){ + int rc; + sqlite3_int64 i; + rc = winCurrentTimeInt64(pVfs, &i); + if( !rc ){ + *prNow = i/86400000.0; + } + return rc; +} + +/* +** The idea is that this function works like a combination of +** GetLastError() and FormatMessage() on Windows (or errno and +** strerror_r() on Unix). After an error is returned by an OS +** function, SQLite calls this function with zBuf pointing to +** a buffer of nBuf bytes. The OS layer should populate the +** buffer with a nul-terminated UTF-8 encoded error message +** describing the last IO error to have occurred within the calling +** thread. +** +** If the error message is too large for the supplied buffer, +** it should be truncated. The return value of xGetLastError +** is zero if the error message fits in the buffer, or non-zero +** otherwise (if the message was truncated). If non-zero is returned, +** then it is not necessary to include the nul-terminator character +** in the output buffer. +** +** Not supplying an error message will have no adverse effect +** on SQLite. It is fine to have an implementation that never +** returns an error message: +** +** int xGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ +** assert(zBuf[0]=='\0'); +** return 0; +** } +** +** However if an error message is supplied, it will be incorporated +** by sqlite into the error message available to the user using +** sqlite3_errmsg(), possibly making IO errors easier to debug. +*/ +static int winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ + UNUSED_PARAMETER(pVfs); + return winGetLastErrorMsg(osGetLastError(), nBuf, zBuf); +} + +/* +** Initialize and deinitialize the operating system interface. +*/ +SQLITE_API int sqlite3_os_init(void){ + static sqlite3_vfs winVfs = { + 3, /* iVersion */ + sizeof(winFile), /* szOsFile */ + SQLITE_WIN32_MAX_PATH_BYTES, /* mxPathname */ + 0, /* pNext */ + "win32", /* zName */ + 0, /* pAppData */ + winOpen, /* xOpen */ + winDelete, /* xDelete */ + winAccess, /* xAccess */ + winFullPathname, /* xFullPathname */ + winDlOpen, /* xDlOpen */ + winDlError, /* xDlError */ + winDlSym, /* xDlSym */ + winDlClose, /* xDlClose */ + winRandomness, /* xRandomness */ + winSleep, /* xSleep */ + winCurrentTime, /* xCurrentTime */ + winGetLastError, /* xGetLastError */ + winCurrentTimeInt64, /* xCurrentTimeInt64 */ + winSetSystemCall, /* xSetSystemCall */ + winGetSystemCall, /* xGetSystemCall */ + winNextSystemCall, /* xNextSystemCall */ + }; +#if defined(SQLITE_WIN32_HAS_WIDE) + static sqlite3_vfs winLongPathVfs = { + 3, /* iVersion */ + sizeof(winFile), /* szOsFile */ + SQLITE_WINNT_MAX_PATH_BYTES, /* mxPathname */ + 0, /* pNext */ + "win32-longpath", /* zName */ + 0, /* pAppData */ + winOpen, /* xOpen */ + winDelete, /* xDelete */ + winAccess, /* xAccess */ + winFullPathname, /* xFullPathname */ + winDlOpen, /* xDlOpen */ + winDlError, /* xDlError */ + winDlSym, /* xDlSym */ + winDlClose, /* xDlClose */ + winRandomness, /* xRandomness */ + winSleep, /* xSleep */ + winCurrentTime, /* xCurrentTime */ + winGetLastError, /* xGetLastError */ + winCurrentTimeInt64, /* xCurrentTimeInt64 */ + winSetSystemCall, /* xSetSystemCall */ + winGetSystemCall, /* xGetSystemCall */ + winNextSystemCall, /* xNextSystemCall */ + }; +#endif + + /* Double-check that the aSyscall[] array has been constructed + ** correctly. See ticket [bb3a86e890c8e96ab] */ + assert( ArraySize(aSyscall)==76 ); + + /* get memory map allocation granularity */ + memset(&winSysInfo, 0, sizeof(SYSTEM_INFO)); +#if SQLITE_OS_WINRT + osGetNativeSystemInfo(&winSysInfo); +#else + osGetSystemInfo(&winSysInfo); +#endif + assert( winSysInfo.dwAllocationGranularity>0 ); + assert( winSysInfo.dwPageSize>0 ); + + sqlite3_vfs_register(&winVfs, 1); + +#if defined(SQLITE_WIN32_HAS_WIDE) + sqlite3_vfs_register(&winLongPathVfs, 0); +#endif + + return SQLITE_OK; +} + +SQLITE_API int sqlite3_os_end(void){ +#if SQLITE_OS_WINRT + if( sleepObj!=NULL ){ + osCloseHandle(sleepObj); + sleepObj = NULL; + } +#endif + return SQLITE_OK; +} + +#endif /* SQLITE_OS_WIN */ + +/************** End of os_win.c **********************************************/ +/************** Begin file bitvec.c ******************************************/ +/* +** 2008 February 16 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file implements an object that represents a fixed-length +** bitmap. Bits are numbered starting with 1. +** +** A bitmap is used to record which pages of a database file have been +** journalled during a transaction, or which pages have the "dont-write" +** property. Usually only a few pages are meet either condition. +** So the bitmap is usually sparse and has low cardinality. +** But sometimes (for example when during a DROP of a large table) most +** or all of the pages in a database can get journalled. In those cases, +** the bitmap becomes dense with high cardinality. The algorithm needs +** to handle both cases well. +** +** The size of the bitmap is fixed when the object is created. +** +** All bits are clear when the bitmap is created. Individual bits +** may be set or cleared one at a time. +** +** Test operations are about 100 times more common that set operations. +** Clear operations are exceedingly rare. There are usually between +** 5 and 500 set operations per Bitvec object, though the number of sets can +** sometimes grow into tens of thousands or larger. The size of the +** Bitvec object is the number of pages in the database file at the +** start of a transaction, and is thus usually less than a few thousand, +** but can be as large as 2 billion for a really big database. +*/ + +/* Size of the Bitvec structure in bytes. */ +#define BITVEC_SZ 512 + +/* Round the union size down to the nearest pointer boundary, since that's how +** it will be aligned within the Bitvec struct. */ +#define BITVEC_USIZE (((BITVEC_SZ-(3*sizeof(u32)))/sizeof(Bitvec*))*sizeof(Bitvec*)) + +/* Type of the array "element" for the bitmap representation. +** Should be a power of 2, and ideally, evenly divide into BITVEC_USIZE. +** Setting this to the "natural word" size of your CPU may improve +** performance. */ +#define BITVEC_TELEM u8 +/* Size, in bits, of the bitmap element. */ +#define BITVEC_SZELEM 8 +/* Number of elements in a bitmap array. */ +#define BITVEC_NELEM (BITVEC_USIZE/sizeof(BITVEC_TELEM)) +/* Number of bits in the bitmap array. */ +#define BITVEC_NBIT (BITVEC_NELEM*BITVEC_SZELEM) + +/* Number of u32 values in hash table. */ +#define BITVEC_NINT (BITVEC_USIZE/sizeof(u32)) +/* Maximum number of entries in hash table before +** sub-dividing and re-hashing. */ +#define BITVEC_MXHASH (BITVEC_NINT/2) +/* Hashing function for the aHash representation. +** Empirical testing showed that the *37 multiplier +** (an arbitrary prime)in the hash function provided +** no fewer collisions than the no-op *1. */ +#define BITVEC_HASH(X) (((X)*1)%BITVEC_NINT) + +#define BITVEC_NPTR (BITVEC_USIZE/sizeof(Bitvec *)) + + +/* +** A bitmap is an instance of the following structure. +** +** This bitmap records the existence of zero or more bits +** with values between 1 and iSize, inclusive. +** +** There are three possible representations of the bitmap. +** If iSize<=BITVEC_NBIT, then Bitvec.u.aBitmap[] is a straight +** bitmap. The least significant bit is bit 1. +** +** If iSize>BITVEC_NBIT and iDivisor==0 then Bitvec.u.aHash[] is +** a hash table that will hold up to BITVEC_MXHASH distinct values. +** +** Otherwise, the value i is redirected into one of BITVEC_NPTR +** sub-bitmaps pointed to by Bitvec.u.apSub[]. Each subbitmap +** handles up to iDivisor separate values of i. apSub[0] holds +** values between 1 and iDivisor. apSub[1] holds values between +** iDivisor+1 and 2*iDivisor. apSub[N] holds values between +** N*iDivisor+1 and (N+1)*iDivisor. Each subbitmap is normalized +** to hold deal with values between 1 and iDivisor. +*/ +struct Bitvec { + u32 iSize; /* Maximum bit index. Max iSize is 4,294,967,296. */ + u32 nSet; /* Number of bits that are set - only valid for aHash + ** element. Max is BITVEC_NINT. For BITVEC_SZ of 512, + ** this would be 125. */ + u32 iDivisor; /* Number of bits handled by each apSub[] entry. */ + /* Should >=0 for apSub element. */ + /* Max iDivisor is max(u32) / BITVEC_NPTR + 1. */ + /* For a BITVEC_SZ of 512, this would be 34,359,739. */ + union { + BITVEC_TELEM aBitmap[BITVEC_NELEM]; /* Bitmap representation */ + u32 aHash[BITVEC_NINT]; /* Hash table representation */ + Bitvec *apSub[BITVEC_NPTR]; /* Recursive representation */ + } u; +}; + +/* +** Create a new bitmap object able to handle bits between 0 and iSize, +** inclusive. Return a pointer to the new object. Return NULL if +** malloc fails. +*/ +SQLITE_PRIVATE Bitvec *sqlite3BitvecCreate(u32 iSize){ + Bitvec *p; + assert( sizeof(*p)==BITVEC_SZ ); + p = sqlite3MallocZero( sizeof(*p) ); + if( p ){ + p->iSize = iSize; + } + return p; +} + +/* +** Check to see if the i-th bit is set. Return true or false. +** If p is NULL (if the bitmap has not been created) or if +** i is out of range, then return false. +*/ +SQLITE_PRIVATE int sqlite3BitvecTest(Bitvec *p, u32 i){ + if( p==0 ) return 0; + if( i>p->iSize || i==0 ) return 0; + i--; + while( p->iDivisor ){ + u32 bin = i/p->iDivisor; + i = i%p->iDivisor; + p = p->u.apSub[bin]; + if (!p) { + return 0; + } + } + if( p->iSize<=BITVEC_NBIT ){ + return (p->u.aBitmap[i/BITVEC_SZELEM] & (1<<(i&(BITVEC_SZELEM-1))))!=0; + } else{ + u32 h = BITVEC_HASH(i++); + while( p->u.aHash[h] ){ + if( p->u.aHash[h]==i ) return 1; + h = (h+1) % BITVEC_NINT; + } + return 0; + } +} + +/* +** Set the i-th bit. Return 0 on success and an error code if +** anything goes wrong. +** +** This routine might cause sub-bitmaps to be allocated. Failing +** to get the memory needed to hold the sub-bitmap is the only +** that can go wrong with an insert, assuming p and i are valid. +** +** The calling function must ensure that p is a valid Bitvec object +** and that the value for "i" is within range of the Bitvec object. +** Otherwise the behavior is undefined. +*/ +SQLITE_PRIVATE int sqlite3BitvecSet(Bitvec *p, u32 i){ + u32 h; + if( p==0 ) return SQLITE_OK; + assert( i>0 ); + assert( i<=p->iSize ); + i--; + while((p->iSize > BITVEC_NBIT) && p->iDivisor) { + u32 bin = i/p->iDivisor; + i = i%p->iDivisor; + if( p->u.apSub[bin]==0 ){ + p->u.apSub[bin] = sqlite3BitvecCreate( p->iDivisor ); + if( p->u.apSub[bin]==0 ) return SQLITE_NOMEM; + } + p = p->u.apSub[bin]; + } + if( p->iSize<=BITVEC_NBIT ){ + p->u.aBitmap[i/BITVEC_SZELEM] |= 1 << (i&(BITVEC_SZELEM-1)); + return SQLITE_OK; + } + h = BITVEC_HASH(i++); + /* if there wasn't a hash collision, and this doesn't */ + /* completely fill the hash, then just add it without */ + /* worring about sub-dividing and re-hashing. */ + if( !p->u.aHash[h] ){ + if (p->nSet<(BITVEC_NINT-1)) { + goto bitvec_set_end; + } else { + goto bitvec_set_rehash; + } + } + /* there was a collision, check to see if it's already */ + /* in hash, if not, try to find a spot for it */ + do { + if( p->u.aHash[h]==i ) return SQLITE_OK; + h++; + if( h>=BITVEC_NINT ) h = 0; + } while( p->u.aHash[h] ); + /* we didn't find it in the hash. h points to the first */ + /* available free spot. check to see if this is going to */ + /* make our hash too "full". */ +bitvec_set_rehash: + if( p->nSet>=BITVEC_MXHASH ){ + unsigned int j; + int rc; + u32 *aiValues = sqlite3StackAllocRaw(0, sizeof(p->u.aHash)); + if( aiValues==0 ){ + return SQLITE_NOMEM; + }else{ + memcpy(aiValues, p->u.aHash, sizeof(p->u.aHash)); + memset(p->u.apSub, 0, sizeof(p->u.apSub)); + p->iDivisor = (p->iSize + BITVEC_NPTR - 1)/BITVEC_NPTR; + rc = sqlite3BitvecSet(p, i); + for(j=0; jnSet++; + p->u.aHash[h] = i; + return SQLITE_OK; +} + +/* +** Clear the i-th bit. +** +** pBuf must be a pointer to at least BITVEC_SZ bytes of temporary storage +** that BitvecClear can use to rebuilt its hash table. +*/ +SQLITE_PRIVATE void sqlite3BitvecClear(Bitvec *p, u32 i, void *pBuf){ + if( p==0 ) return; + assert( i>0 ); + i--; + while( p->iDivisor ){ + u32 bin = i/p->iDivisor; + i = i%p->iDivisor; + p = p->u.apSub[bin]; + if (!p) { + return; + } + } + if( p->iSize<=BITVEC_NBIT ){ + p->u.aBitmap[i/BITVEC_SZELEM] &= ~(1 << (i&(BITVEC_SZELEM-1))); + }else{ + unsigned int j; + u32 *aiValues = pBuf; + memcpy(aiValues, p->u.aHash, sizeof(p->u.aHash)); + memset(p->u.aHash, 0, sizeof(p->u.aHash)); + p->nSet = 0; + for(j=0; jnSet++; + while( p->u.aHash[h] ){ + h++; + if( h>=BITVEC_NINT ) h = 0; + } + p->u.aHash[h] = aiValues[j]; + } + } + } +} + +/* +** Destroy a bitmap object. Reclaim all memory used. +*/ +SQLITE_PRIVATE void sqlite3BitvecDestroy(Bitvec *p){ + if( p==0 ) return; + if( p->iDivisor ){ + unsigned int i; + for(i=0; iu.apSub[i]); + } + } + sqlite3_free(p); +} + +/* +** Return the value of the iSize parameter specified when Bitvec *p +** was created. +*/ +SQLITE_PRIVATE u32 sqlite3BitvecSize(Bitvec *p){ + return p->iSize; +} + +#ifndef SQLITE_OMIT_BUILTIN_TEST +/* +** Let V[] be an array of unsigned characters sufficient to hold +** up to N bits. Let I be an integer between 0 and N. 0<=I>3] |= (1<<(I&7)) +#define CLEARBIT(V,I) V[I>>3] &= ~(1<<(I&7)) +#define TESTBIT(V,I) (V[I>>3]&(1<<(I&7)))!=0 + +/* +** This routine runs an extensive test of the Bitvec code. +** +** The input is an array of integers that acts as a program +** to test the Bitvec. The integers are opcodes followed +** by 0, 1, or 3 operands, depending on the opcode. Another +** opcode follows immediately after the last operand. +** +** There are 6 opcodes numbered from 0 through 5. 0 is the +** "halt" opcode and causes the test to end. +** +** 0 Halt and return the number of errors +** 1 N S X Set N bits beginning with S and incrementing by X +** 2 N S X Clear N bits beginning with S and incrementing by X +** 3 N Set N randomly chosen bits +** 4 N Clear N randomly chosen bits +** 5 N S X Set N bits from S increment X in array only, not in bitvec +** +** The opcodes 1 through 4 perform set and clear operations are performed +** on both a Bitvec object and on a linear array of bits obtained from malloc. +** Opcode 5 works on the linear array only, not on the Bitvec. +** Opcode 5 is used to deliberately induce a fault in order to +** confirm that error detection works. +** +** At the conclusion of the test the linear array is compared +** against the Bitvec object. If there are any differences, +** an error is returned. If they are the same, zero is returned. +** +** If a memory allocation error occurs, return -1. +*/ +SQLITE_PRIVATE int sqlite3BitvecBuiltinTest(int sz, int *aOp){ + Bitvec *pBitvec = 0; + unsigned char *pV = 0; + int rc = -1; + int i, nx, pc, op; + void *pTmpSpace; + + /* Allocate the Bitvec to be tested and a linear array of + ** bits to act as the reference */ + pBitvec = sqlite3BitvecCreate( sz ); + pV = sqlite3MallocZero( (sz+7)/8 + 1 ); + pTmpSpace = sqlite3_malloc(BITVEC_SZ); + if( pBitvec==0 || pV==0 || pTmpSpace==0 ) goto bitvec_end; + + /* NULL pBitvec tests */ + sqlite3BitvecSet(0, 1); + sqlite3BitvecClear(0, 1, pTmpSpace); + + /* Run the program */ + pc = 0; + while( (op = aOp[pc])!=0 ){ + switch( op ){ + case 1: + case 2: + case 5: { + nx = 4; + i = aOp[pc+2] - 1; + aOp[pc+2] += aOp[pc+3]; + break; + } + case 3: + case 4: + default: { + nx = 2; + sqlite3_randomness(sizeof(i), &i); + break; + } + } + if( (--aOp[pc+1]) > 0 ) nx = 0; + pc += nx; + i = (i & 0x7fffffff)%sz; + if( (op & 1)!=0 ){ + SETBIT(pV, (i+1)); + if( op!=5 ){ + if( sqlite3BitvecSet(pBitvec, i+1) ) goto bitvec_end; + } + }else{ + CLEARBIT(pV, (i+1)); + sqlite3BitvecClear(pBitvec, i+1, pTmpSpace); + } + } + + /* Test to make sure the linear array exactly matches the + ** Bitvec object. Start with the assumption that they do + ** match (rc==0). Change rc to non-zero if a discrepancy + ** is found. + */ + rc = sqlite3BitvecTest(0,0) + sqlite3BitvecTest(pBitvec, sz+1) + + sqlite3BitvecTest(pBitvec, 0) + + (sqlite3BitvecSize(pBitvec) - sz); + for(i=1; i<=sz; i++){ + if( (TESTBIT(pV,i))!=sqlite3BitvecTest(pBitvec,i) ){ + rc = i; + break; + } + } + + /* Free allocated structure */ +bitvec_end: + sqlite3_free(pTmpSpace); + sqlite3_free(pV); + sqlite3BitvecDestroy(pBitvec); + return rc; +} +#endif /* SQLITE_OMIT_BUILTIN_TEST */ + +/************** End of bitvec.c **********************************************/ +/************** Begin file pcache.c ******************************************/ +/* +** 2008 August 05 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file implements that page cache. +*/ + +/* +** A complete page cache is an instance of this structure. +*/ +struct PCache { + PgHdr *pDirty, *pDirtyTail; /* List of dirty pages in LRU order */ + PgHdr *pSynced; /* Last synced page in dirty page list */ + int nRef; /* Number of referenced pages */ + int szCache; /* Configured cache size */ + int szPage; /* Size of every page in this cache */ + int szExtra; /* Size of extra space for each page */ + u8 bPurgeable; /* True if pages are on backing store */ + u8 eCreate; /* eCreate value for for xFetch() */ + int (*xStress)(void*,PgHdr*); /* Call to try make a page clean */ + void *pStress; /* Argument to xStress */ + sqlite3_pcache *pCache; /* Pluggable cache module */ + PgHdr *pPage1; /* Reference to page 1 */ +}; + +/* +** Some of the assert() macros in this code are too expensive to run +** even during normal debugging. Use them only rarely on long-running +** tests. Enable the expensive asserts using the +** -DSQLITE_ENABLE_EXPENSIVE_ASSERT=1 compile-time option. +*/ +#ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT +# define expensive_assert(X) assert(X) +#else +# define expensive_assert(X) +#endif + +/********************************** Linked List Management ********************/ + +#if !defined(NDEBUG) && defined(SQLITE_ENABLE_EXPENSIVE_ASSERT) +/* +** Check that the pCache->pSynced variable is set correctly. If it +** is not, either fail an assert or return zero. Otherwise, return +** non-zero. This is only used in debugging builds, as follows: +** +** expensive_assert( pcacheCheckSynced(pCache) ); +*/ +static int pcacheCheckSynced(PCache *pCache){ + PgHdr *p; + for(p=pCache->pDirtyTail; p!=pCache->pSynced; p=p->pDirtyPrev){ + assert( p->nRef || (p->flags&PGHDR_NEED_SYNC) ); + } + return (p==0 || p->nRef || (p->flags&PGHDR_NEED_SYNC)==0); +} +#endif /* !NDEBUG && SQLITE_ENABLE_EXPENSIVE_ASSERT */ + +/* +** Remove page pPage from the list of dirty pages. +*/ +static void pcacheRemoveFromDirtyList(PgHdr *pPage){ + PCache *p = pPage->pCache; + + assert( pPage->pDirtyNext || pPage==p->pDirtyTail ); + assert( pPage->pDirtyPrev || pPage==p->pDirty ); + + /* Update the PCache1.pSynced variable if necessary. */ + if( p->pSynced==pPage ){ + PgHdr *pSynced = pPage->pDirtyPrev; + while( pSynced && (pSynced->flags&PGHDR_NEED_SYNC) ){ + pSynced = pSynced->pDirtyPrev; + } + p->pSynced = pSynced; + } + + if( pPage->pDirtyNext ){ + pPage->pDirtyNext->pDirtyPrev = pPage->pDirtyPrev; + }else{ + assert( pPage==p->pDirtyTail ); + p->pDirtyTail = pPage->pDirtyPrev; + } + if( pPage->pDirtyPrev ){ + pPage->pDirtyPrev->pDirtyNext = pPage->pDirtyNext; + }else{ + assert( pPage==p->pDirty ); + p->pDirty = pPage->pDirtyNext; + if( p->pDirty==0 && p->bPurgeable ){ + assert( p->eCreate==1 ); + p->eCreate = 2; + } + } + pPage->pDirtyNext = 0; + pPage->pDirtyPrev = 0; + + expensive_assert( pcacheCheckSynced(p) ); +} + +/* +** Add page pPage to the head of the dirty list (PCache1.pDirty is set to +** pPage). +*/ +static void pcacheAddToDirtyList(PgHdr *pPage){ + PCache *p = pPage->pCache; + + assert( pPage->pDirtyNext==0 && pPage->pDirtyPrev==0 && p->pDirty!=pPage ); + + pPage->pDirtyNext = p->pDirty; + if( pPage->pDirtyNext ){ + assert( pPage->pDirtyNext->pDirtyPrev==0 ); + pPage->pDirtyNext->pDirtyPrev = pPage; + }else if( p->bPurgeable ){ + assert( p->eCreate==2 ); + p->eCreate = 1; + } + p->pDirty = pPage; + if( !p->pDirtyTail ){ + p->pDirtyTail = pPage; + } + if( !p->pSynced && 0==(pPage->flags&PGHDR_NEED_SYNC) ){ + p->pSynced = pPage; + } + expensive_assert( pcacheCheckSynced(p) ); +} + +/* +** Wrapper around the pluggable caches xUnpin method. If the cache is +** being used for an in-memory database, this function is a no-op. +*/ +static void pcacheUnpin(PgHdr *p){ + PCache *pCache = p->pCache; + if( pCache->bPurgeable ){ + if( p->pgno==1 ){ + pCache->pPage1 = 0; + } + sqlite3GlobalConfig.pcache2.xUnpin(pCache->pCache, p->pPage, 0); + } +} + +/*************************************************** General Interfaces ****** +** +** Initialize and shutdown the page cache subsystem. Neither of these +** functions are threadsafe. +*/ +SQLITE_PRIVATE int sqlite3PcacheInitialize(void){ + if( sqlite3GlobalConfig.pcache2.xInit==0 ){ + /* IMPLEMENTATION-OF: R-26801-64137 If the xInit() method is NULL, then the + ** built-in default page cache is used instead of the application defined + ** page cache. */ + sqlite3PCacheSetDefault(); + } + return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg); +} +SQLITE_PRIVATE void sqlite3PcacheShutdown(void){ + if( sqlite3GlobalConfig.pcache2.xShutdown ){ + /* IMPLEMENTATION-OF: R-26000-56589 The xShutdown() method may be NULL. */ + sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg); + } +} + +/* +** Return the size in bytes of a PCache object. +*/ +SQLITE_PRIVATE int sqlite3PcacheSize(void){ return sizeof(PCache); } + +/* +** Create a new PCache object. Storage space to hold the object +** has already been allocated and is passed in as the p pointer. +** The caller discovers how much space needs to be allocated by +** calling sqlite3PcacheSize(). +*/ +SQLITE_PRIVATE void sqlite3PcacheOpen( + int szPage, /* Size of every page */ + int szExtra, /* Extra space associated with each page */ + int bPurgeable, /* True if pages are on backing store */ + int (*xStress)(void*,PgHdr*),/* Call to try to make pages clean */ + void *pStress, /* Argument to xStress */ + PCache *p /* Preallocated space for the PCache */ +){ + memset(p, 0, sizeof(PCache)); + p->szPage = szPage; + p->szExtra = szExtra; + p->bPurgeable = bPurgeable; + p->eCreate = 2; + p->xStress = xStress; + p->pStress = pStress; + p->szCache = 100; +} + +/* +** Change the page size for PCache object. The caller must ensure that there +** are no outstanding page references when this function is called. +*/ +SQLITE_PRIVATE void sqlite3PcacheSetPageSize(PCache *pCache, int szPage){ + assert( pCache->nRef==0 && pCache->pDirty==0 ); + if( pCache->pCache ){ + sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); + pCache->pCache = 0; + pCache->pPage1 = 0; + } + pCache->szPage = szPage; +} + +/* +** Compute the number of pages of cache requested. +*/ +static int numberOfCachePages(PCache *p){ + if( p->szCache>=0 ){ + return p->szCache; + }else{ + return (int)((-1024*(i64)p->szCache)/(p->szPage+p->szExtra)); + } +} + +/* +** Try to obtain a page from the cache. +*/ +SQLITE_PRIVATE int sqlite3PcacheFetch( + PCache *pCache, /* Obtain the page from this cache */ + Pgno pgno, /* Page number to obtain */ + int createFlag, /* If true, create page if it does not exist already */ + PgHdr **ppPage /* Write the page here */ +){ + sqlite3_pcache_page *pPage; + PgHdr *pPgHdr = 0; + int eCreate; + + assert( pCache!=0 ); + assert( createFlag==1 || createFlag==0 ); + assert( pgno>0 ); + + /* If the pluggable cache (sqlite3_pcache*) has not been allocated, + ** allocate it now. + */ + if( !pCache->pCache ){ + sqlite3_pcache *p; + if( !createFlag ){ + *ppPage = 0; + return SQLITE_OK; + } + p = sqlite3GlobalConfig.pcache2.xCreate( + pCache->szPage, pCache->szExtra + sizeof(PgHdr), pCache->bPurgeable + ); + if( !p ){ + return SQLITE_NOMEM; + } + sqlite3GlobalConfig.pcache2.xCachesize(p, numberOfCachePages(pCache)); + pCache->pCache = p; + } + + /* eCreate defines what to do if the page does not exist. + ** 0 Do not allocate a new page. (createFlag==0) + ** 1 Allocate a new page if doing so is inexpensive. + ** (createFlag==1 AND bPurgeable AND pDirty) + ** 2 Allocate a new page even it doing so is difficult. + ** (createFlag==1 AND !(bPurgeable AND pDirty) + */ + eCreate = createFlag==0 ? 0 : pCache->eCreate; + assert( (createFlag*(1+(!pCache->bPurgeable||!pCache->pDirty)))==eCreate ); + pPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate); + if( !pPage && eCreate==1 ){ + PgHdr *pPg; + + /* Find a dirty page to write-out and recycle. First try to find a + ** page that does not require a journal-sync (one with PGHDR_NEED_SYNC + ** cleared), but if that is not possible settle for any other + ** unreferenced dirty page. + */ + expensive_assert( pcacheCheckSynced(pCache) ); + for(pPg=pCache->pSynced; + pPg && (pPg->nRef || (pPg->flags&PGHDR_NEED_SYNC)); + pPg=pPg->pDirtyPrev + ); + pCache->pSynced = pPg; + if( !pPg ){ + for(pPg=pCache->pDirtyTail; pPg && pPg->nRef; pPg=pPg->pDirtyPrev); + } + if( pPg ){ + int rc; +#ifdef SQLITE_LOG_CACHE_SPILL + sqlite3_log(SQLITE_FULL, + "spill page %d making room for %d - cache used: %d/%d", + pPg->pgno, pgno, + sqlite3GlobalConfig.pcache.xPagecount(pCache->pCache), + numberOfCachePages(pCache)); +#endif + rc = pCache->xStress(pCache->pStress, pPg); + if( rc!=SQLITE_OK && rc!=SQLITE_BUSY ){ + return rc; + } + } + + pPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, 2); + } + + if( pPage ){ + pPgHdr = (PgHdr *)pPage->pExtra; + + if( !pPgHdr->pPage ){ + memset(pPgHdr, 0, sizeof(PgHdr)); + pPgHdr->pPage = pPage; + pPgHdr->pData = pPage->pBuf; + pPgHdr->pExtra = (void *)&pPgHdr[1]; + memset(pPgHdr->pExtra, 0, pCache->szExtra); + pPgHdr->pCache = pCache; + pPgHdr->pgno = pgno; + } + assert( pPgHdr->pCache==pCache ); + assert( pPgHdr->pgno==pgno ); + assert( pPgHdr->pData==pPage->pBuf ); + assert( pPgHdr->pExtra==(void *)&pPgHdr[1] ); + + if( 0==pPgHdr->nRef ){ + pCache->nRef++; + } + pPgHdr->nRef++; + if( pgno==1 ){ + pCache->pPage1 = pPgHdr; + } + } + *ppPage = pPgHdr; + return (pPgHdr==0 && eCreate) ? SQLITE_NOMEM : SQLITE_OK; +} + +/* +** Decrement the reference count on a page. If the page is clean and the +** reference count drops to 0, then it is made elible for recycling. +*/ +SQLITE_PRIVATE void sqlite3PcacheRelease(PgHdr *p){ + assert( p->nRef>0 ); + p->nRef--; + if( p->nRef==0 ){ + PCache *pCache = p->pCache; + pCache->nRef--; + if( (p->flags&PGHDR_DIRTY)==0 ){ + pcacheUnpin(p); + }else{ + /* Move the page to the head of the dirty list. */ + pcacheRemoveFromDirtyList(p); + pcacheAddToDirtyList(p); + } + } +} + +/* +** Increase the reference count of a supplied page by 1. +*/ +SQLITE_PRIVATE void sqlite3PcacheRef(PgHdr *p){ + assert(p->nRef>0); + p->nRef++; +} + +/* +** Drop a page from the cache. There must be exactly one reference to the +** page. This function deletes that reference, so after it returns the +** page pointed to by p is invalid. +*/ +SQLITE_PRIVATE void sqlite3PcacheDrop(PgHdr *p){ + PCache *pCache; + assert( p->nRef==1 ); + if( p->flags&PGHDR_DIRTY ){ + pcacheRemoveFromDirtyList(p); + } + pCache = p->pCache; + pCache->nRef--; + if( p->pgno==1 ){ + pCache->pPage1 = 0; + } + sqlite3GlobalConfig.pcache2.xUnpin(pCache->pCache, p->pPage, 1); +} + +/* +** Make sure the page is marked as dirty. If it isn't dirty already, +** make it so. +*/ +SQLITE_PRIVATE void sqlite3PcacheMakeDirty(PgHdr *p){ + p->flags &= ~PGHDR_DONT_WRITE; + assert( p->nRef>0 ); + if( 0==(p->flags & PGHDR_DIRTY) ){ + p->flags |= PGHDR_DIRTY; + pcacheAddToDirtyList( p); + } +} + +/* +** Make sure the page is marked as clean. If it isn't clean already, +** make it so. +*/ +SQLITE_PRIVATE void sqlite3PcacheMakeClean(PgHdr *p){ + if( (p->flags & PGHDR_DIRTY) ){ + pcacheRemoveFromDirtyList(p); + p->flags &= ~(PGHDR_DIRTY|PGHDR_NEED_SYNC); + if( p->nRef==0 ){ + pcacheUnpin(p); + } + } +} + +/* +** Make every page in the cache clean. +*/ +SQLITE_PRIVATE void sqlite3PcacheCleanAll(PCache *pCache){ + PgHdr *p; + while( (p = pCache->pDirty)!=0 ){ + sqlite3PcacheMakeClean(p); + } +} + +/* +** Clear the PGHDR_NEED_SYNC flag from all dirty pages. +*/ +SQLITE_PRIVATE void sqlite3PcacheClearSyncFlags(PCache *pCache){ + PgHdr *p; + for(p=pCache->pDirty; p; p=p->pDirtyNext){ + p->flags &= ~PGHDR_NEED_SYNC; + } + pCache->pSynced = pCache->pDirtyTail; +} + +/* +** Change the page number of page p to newPgno. +*/ +SQLITE_PRIVATE void sqlite3PcacheMove(PgHdr *p, Pgno newPgno){ + PCache *pCache = p->pCache; + assert( p->nRef>0 ); + assert( newPgno>0 ); + sqlite3GlobalConfig.pcache2.xRekey(pCache->pCache, p->pPage, p->pgno,newPgno); + p->pgno = newPgno; + if( (p->flags&PGHDR_DIRTY) && (p->flags&PGHDR_NEED_SYNC) ){ + pcacheRemoveFromDirtyList(p); + pcacheAddToDirtyList(p); + } +} + +/* +** Drop every cache entry whose page number is greater than "pgno". The +** caller must ensure that there are no outstanding references to any pages +** other than page 1 with a page number greater than pgno. +** +** If there is a reference to page 1 and the pgno parameter passed to this +** function is 0, then the data area associated with page 1 is zeroed, but +** the page object is not dropped. +*/ +SQLITE_PRIVATE void sqlite3PcacheTruncate(PCache *pCache, Pgno pgno){ + if( pCache->pCache ){ + PgHdr *p; + PgHdr *pNext; + for(p=pCache->pDirty; p; p=pNext){ + pNext = p->pDirtyNext; + /* This routine never gets call with a positive pgno except right + ** after sqlite3PcacheCleanAll(). So if there are dirty pages, + ** it must be that pgno==0. + */ + assert( p->pgno>0 ); + if( ALWAYS(p->pgno>pgno) ){ + assert( p->flags&PGHDR_DIRTY ); + sqlite3PcacheMakeClean(p); + } + } + if( pgno==0 && pCache->pPage1 ){ + memset(pCache->pPage1->pData, 0, pCache->szPage); + pgno = 1; + } + sqlite3GlobalConfig.pcache2.xTruncate(pCache->pCache, pgno+1); + } +} + +/* +** Close a cache. +*/ +SQLITE_PRIVATE void sqlite3PcacheClose(PCache *pCache){ + if( pCache->pCache ){ + sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); + } +} + +/* +** Discard the contents of the cache. +*/ +SQLITE_PRIVATE void sqlite3PcacheClear(PCache *pCache){ + sqlite3PcacheTruncate(pCache, 0); +} + +/* +** Merge two lists of pages connected by pDirty and in pgno order. +** Do not both fixing the pDirtyPrev pointers. +*/ +static PgHdr *pcacheMergeDirtyList(PgHdr *pA, PgHdr *pB){ + PgHdr result, *pTail; + pTail = &result; + while( pA && pB ){ + if( pA->pgnopgno ){ + pTail->pDirty = pA; + pTail = pA; + pA = pA->pDirty; + }else{ + pTail->pDirty = pB; + pTail = pB; + pB = pB->pDirty; + } + } + if( pA ){ + pTail->pDirty = pA; + }else if( pB ){ + pTail->pDirty = pB; + }else{ + pTail->pDirty = 0; + } + return result.pDirty; +} + +/* +** Sort the list of pages in accending order by pgno. Pages are +** connected by pDirty pointers. The pDirtyPrev pointers are +** corrupted by this sort. +** +** Since there cannot be more than 2^31 distinct pages in a database, +** there cannot be more than 31 buckets required by the merge sorter. +** One extra bucket is added to catch overflow in case something +** ever changes to make the previous sentence incorrect. +*/ +#define N_SORT_BUCKET 32 +static PgHdr *pcacheSortDirtyList(PgHdr *pIn){ + PgHdr *a[N_SORT_BUCKET], *p; + int i; + memset(a, 0, sizeof(a)); + while( pIn ){ + p = pIn; + pIn = p->pDirty; + p->pDirty = 0; + for(i=0; ALWAYS(ipDirty; p; p=p->pDirtyNext){ + p->pDirty = p->pDirtyNext; + } + return pcacheSortDirtyList(pCache->pDirty); +} + +/* +** Return the total number of referenced pages held by the cache. +*/ +SQLITE_PRIVATE int sqlite3PcacheRefCount(PCache *pCache){ + return pCache->nRef; +} + +/* +** Return the number of references to the page supplied as an argument. +*/ +SQLITE_PRIVATE int sqlite3PcachePageRefcount(PgHdr *p){ + return p->nRef; +} + +/* +** Return the total number of pages in the cache. +*/ +SQLITE_PRIVATE int sqlite3PcachePagecount(PCache *pCache){ + int nPage = 0; + if( pCache->pCache ){ + nPage = sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache); + } + return nPage; +} + +#ifdef SQLITE_TEST +/* +** Get the suggested cache-size value. +*/ +SQLITE_PRIVATE int sqlite3PcacheGetCachesize(PCache *pCache){ + return numberOfCachePages(pCache); +} +#endif + +/* +** Set the suggested cache-size value. +*/ +SQLITE_PRIVATE void sqlite3PcacheSetCachesize(PCache *pCache, int mxPage){ + pCache->szCache = mxPage; + if( pCache->pCache ){ + sqlite3GlobalConfig.pcache2.xCachesize(pCache->pCache, + numberOfCachePages(pCache)); + } +} + +/* +** Free up as much memory as possible from the page cache. +*/ +SQLITE_PRIVATE void sqlite3PcacheShrink(PCache *pCache){ + if( pCache->pCache ){ + sqlite3GlobalConfig.pcache2.xShrink(pCache->pCache); + } +} + +#if defined(SQLITE_CHECK_PAGES) || defined(SQLITE_DEBUG) +/* +** For all dirty pages currently in the cache, invoke the specified +** callback. This is only used if the SQLITE_CHECK_PAGES macro is +** defined. +*/ +SQLITE_PRIVATE void sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *)){ + PgHdr *pDirty; + for(pDirty=pCache->pDirty; pDirty; pDirty=pDirty->pDirtyNext){ + xIter(pDirty); + } +} +#endif + +/************** End of pcache.c **********************************************/ +/************** Begin file pcache1.c *****************************************/ +/* +** 2008 November 05 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file implements the default page cache implementation (the +** sqlite3_pcache interface). It also contains part of the implementation +** of the SQLITE_CONFIG_PAGECACHE and sqlite3_release_memory() features. +** If the default page cache implementation is overriden, then neither of +** these two features are available. +*/ + + +typedef struct PCache1 PCache1; +typedef struct PgHdr1 PgHdr1; +typedef struct PgFreeslot PgFreeslot; +typedef struct PGroup PGroup; + +/* Each page cache (or PCache) belongs to a PGroup. A PGroup is a set +** of one or more PCaches that are able to recycle each others unpinned +** pages when they are under memory pressure. A PGroup is an instance of +** the following object. +** +** This page cache implementation works in one of two modes: +** +** (1) Every PCache is the sole member of its own PGroup. There is +** one PGroup per PCache. +** +** (2) There is a single global PGroup that all PCaches are a member +** of. +** +** Mode 1 uses more memory (since PCache instances are not able to rob +** unused pages from other PCaches) but it also operates without a mutex, +** and is therefore often faster. Mode 2 requires a mutex in order to be +** threadsafe, but recycles pages more efficiently. +** +** For mode (1), PGroup.mutex is NULL. For mode (2) there is only a single +** PGroup which is the pcache1.grp global variable and its mutex is +** SQLITE_MUTEX_STATIC_LRU. +*/ +struct PGroup { + sqlite3_mutex *mutex; /* MUTEX_STATIC_LRU or NULL */ + unsigned int nMaxPage; /* Sum of nMax for purgeable caches */ + unsigned int nMinPage; /* Sum of nMin for purgeable caches */ + unsigned int mxPinned; /* nMaxpage + 10 - nMinPage */ + unsigned int nCurrentPage; /* Number of purgeable pages allocated */ + PgHdr1 *pLruHead, *pLruTail; /* LRU list of unpinned pages */ +}; + +/* Each page cache is an instance of the following object. Every +** open database file (including each in-memory database and each +** temporary or transient database) has a single page cache which +** is an instance of this object. +** +** Pointers to structures of this type are cast and returned as +** opaque sqlite3_pcache* handles. +*/ +struct PCache1 { + /* Cache configuration parameters. Page size (szPage) and the purgeable + ** flag (bPurgeable) are set when the cache is created. nMax may be + ** modified at any time by a call to the pcache1Cachesize() method. + ** The PGroup mutex must be held when accessing nMax. + */ + PGroup *pGroup; /* PGroup this cache belongs to */ + int szPage; /* Size of allocated pages in bytes */ + int szExtra; /* Size of extra space in bytes */ + int bPurgeable; /* True if cache is purgeable */ + unsigned int nMin; /* Minimum number of pages reserved */ + unsigned int nMax; /* Configured "cache_size" value */ + unsigned int n90pct; /* nMax*9/10 */ + unsigned int iMaxKey; /* Largest key seen since xTruncate() */ + + /* Hash table of all pages. The following variables may only be accessed + ** when the accessor is holding the PGroup mutex. + */ + unsigned int nRecyclable; /* Number of pages in the LRU list */ + unsigned int nPage; /* Total number of pages in apHash */ + unsigned int nHash; /* Number of slots in apHash[] */ + PgHdr1 **apHash; /* Hash table for fast lookup by key */ +}; + +/* +** Each cache entry is represented by an instance of the following +** structure. Unless SQLITE_PCACHE_SEPARATE_HEADER is defined, a buffer of +** PgHdr1.pCache->szPage bytes is allocated directly before this structure +** in memory. +*/ +struct PgHdr1 { + sqlite3_pcache_page page; + unsigned int iKey; /* Key value (page number) */ + u8 isPinned; /* Page in use, not on the LRU list */ + PgHdr1 *pNext; /* Next in hash table chain */ + PCache1 *pCache; /* Cache that currently owns this page */ + PgHdr1 *pLruNext; /* Next in LRU list of unpinned pages */ + PgHdr1 *pLruPrev; /* Previous in LRU list of unpinned pages */ +}; + +/* +** Free slots in the allocator used to divide up the buffer provided using +** the SQLITE_CONFIG_PAGECACHE mechanism. +*/ +struct PgFreeslot { + PgFreeslot *pNext; /* Next free slot */ +}; + +/* +** Global data used by this cache. +*/ +static SQLITE_WSD struct PCacheGlobal { + PGroup grp; /* The global PGroup for mode (2) */ + + /* Variables related to SQLITE_CONFIG_PAGECACHE settings. The + ** szSlot, nSlot, pStart, pEnd, nReserve, and isInit values are all + ** fixed at sqlite3_initialize() time and do not require mutex protection. + ** The nFreeSlot and pFree values do require mutex protection. + */ + int isInit; /* True if initialized */ + int szSlot; /* Size of each free slot */ + int nSlot; /* The number of pcache slots */ + int nReserve; /* Try to keep nFreeSlot above this */ + void *pStart, *pEnd; /* Bounds of pagecache malloc range */ + /* Above requires no mutex. Use mutex below for variable that follow. */ + sqlite3_mutex *mutex; /* Mutex for accessing the following: */ + PgFreeslot *pFree; /* Free page blocks */ + int nFreeSlot; /* Number of unused pcache slots */ + /* The following value requires a mutex to change. We skip the mutex on + ** reading because (1) most platforms read a 32-bit integer atomically and + ** (2) even if an incorrect value is read, no great harm is done since this + ** is really just an optimization. */ + int bUnderPressure; /* True if low on PAGECACHE memory */ +} pcache1_g; + +/* +** All code in this file should access the global structure above via the +** alias "pcache1". This ensures that the WSD emulation is used when +** compiling for systems that do not support real WSD. +*/ +#define pcache1 (GLOBAL(struct PCacheGlobal, pcache1_g)) + +/* +** Macros to enter and leave the PCache LRU mutex. +*/ +#define pcache1EnterMutex(X) sqlite3_mutex_enter((X)->mutex) +#define pcache1LeaveMutex(X) sqlite3_mutex_leave((X)->mutex) + +/******************************************************************************/ +/******** Page Allocation/SQLITE_CONFIG_PCACHE Related Functions **************/ + +/* +** This function is called during initialization if a static buffer is +** supplied to use for the page-cache by passing the SQLITE_CONFIG_PAGECACHE +** verb to sqlite3_config(). Parameter pBuf points to an allocation large +** enough to contain 'n' buffers of 'sz' bytes each. +** +** This routine is called from sqlite3_initialize() and so it is guaranteed +** to be serialized already. There is no need for further mutexing. +*/ +SQLITE_PRIVATE void sqlite3PCacheBufferSetup(void *pBuf, int sz, int n){ + if( pcache1.isInit ){ + PgFreeslot *p; + sz = ROUNDDOWN8(sz); + pcache1.szSlot = sz; + pcache1.nSlot = pcache1.nFreeSlot = n; + pcache1.nReserve = n>90 ? 10 : (n/10 + 1); + pcache1.pStart = pBuf; + pcache1.pFree = 0; + pcache1.bUnderPressure = 0; + while( n-- ){ + p = (PgFreeslot*)pBuf; + p->pNext = pcache1.pFree; + pcache1.pFree = p; + pBuf = (void*)&((char*)pBuf)[sz]; + } + pcache1.pEnd = pBuf; + } +} + +/* +** Malloc function used within this file to allocate space from the buffer +** configured using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no +** such buffer exists or there is no space left in it, this function falls +** back to sqlite3Malloc(). +** +** Multiple threads can run this routine at the same time. Global variables +** in pcache1 need to be protected via mutex. +*/ +static void *pcache1Alloc(int nByte){ + void *p = 0; + assert( sqlite3_mutex_notheld(pcache1.grp.mutex) ); + sqlite3StatusSet(SQLITE_STATUS_PAGECACHE_SIZE, nByte); + if( nByte<=pcache1.szSlot ){ + sqlite3_mutex_enter(pcache1.mutex); + p = (PgHdr1 *)pcache1.pFree; + if( p ){ + pcache1.pFree = pcache1.pFree->pNext; + pcache1.nFreeSlot--; + pcache1.bUnderPressure = pcache1.nFreeSlot=0 ); + sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_USED, 1); + } + sqlite3_mutex_leave(pcache1.mutex); + } + if( p==0 ){ + /* Memory is not available in the SQLITE_CONFIG_PAGECACHE pool. Get + ** it from sqlite3Malloc instead. + */ + p = sqlite3Malloc(nByte); +#ifndef SQLITE_DISABLE_PAGECACHE_OVERFLOW_STATS + if( p ){ + int sz = sqlite3MallocSize(p); + sqlite3_mutex_enter(pcache1.mutex); + sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_OVERFLOW, sz); + sqlite3_mutex_leave(pcache1.mutex); + } +#endif + sqlite3MemdebugSetType(p, MEMTYPE_PCACHE); + } + return p; +} + +/* +** Free an allocated buffer obtained from pcache1Alloc(). +*/ +static int pcache1Free(void *p){ + int nFreed = 0; + if( p==0 ) return 0; + if( p>=pcache1.pStart && ppNext = pcache1.pFree; + pcache1.pFree = pSlot; + pcache1.nFreeSlot++; + pcache1.bUnderPressure = pcache1.nFreeSlot=pcache1.pStart && ppGroup->mutex) ); + pcache1LeaveMutex(pCache->pGroup); +#ifdef SQLITE_PCACHE_SEPARATE_HEADER + pPg = pcache1Alloc(pCache->szPage); + p = sqlite3Malloc(sizeof(PgHdr1) + pCache->szExtra); + if( !pPg || !p ){ + pcache1Free(pPg); + sqlite3_free(p); + pPg = 0; + } +#else + pPg = pcache1Alloc(sizeof(PgHdr1) + pCache->szPage + pCache->szExtra); + p = (PgHdr1 *)&((u8 *)pPg)[pCache->szPage]; +#endif + pcache1EnterMutex(pCache->pGroup); + + if( pPg ){ + p->page.pBuf = pPg; + p->page.pExtra = &p[1]; + if( pCache->bPurgeable ){ + pCache->pGroup->nCurrentPage++; + } + return p; + } + return 0; +} + +/* +** Free a page object allocated by pcache1AllocPage(). +** +** The pointer is allowed to be NULL, which is prudent. But it turns out +** that the current implementation happens to never call this routine +** with a NULL pointer, so we mark the NULL test with ALWAYS(). +*/ +static void pcache1FreePage(PgHdr1 *p){ + if( ALWAYS(p) ){ + PCache1 *pCache = p->pCache; + assert( sqlite3_mutex_held(p->pCache->pGroup->mutex) ); + pcache1Free(p->page.pBuf); +#ifdef SQLITE_PCACHE_SEPARATE_HEADER + sqlite3_free(p); +#endif + if( pCache->bPurgeable ){ + pCache->pGroup->nCurrentPage--; + } + } +} + +/* +** Malloc function used by SQLite to obtain space from the buffer configured +** using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no such buffer +** exists, this function falls back to sqlite3Malloc(). +*/ +SQLITE_PRIVATE void *sqlite3PageMalloc(int sz){ + return pcache1Alloc(sz); +} + +/* +** Free an allocated buffer obtained from sqlite3PageMalloc(). +*/ +SQLITE_PRIVATE void sqlite3PageFree(void *p){ + pcache1Free(p); +} + + +/* +** Return true if it desirable to avoid allocating a new page cache +** entry. +** +** If memory was allocated specifically to the page cache using +** SQLITE_CONFIG_PAGECACHE but that memory has all been used, then +** it is desirable to avoid allocating a new page cache entry because +** presumably SQLITE_CONFIG_PAGECACHE was suppose to be sufficient +** for all page cache needs and we should not need to spill the +** allocation onto the heap. +** +** Or, the heap is used for all page cache memory but the heap is +** under memory pressure, then again it is desirable to avoid +** allocating a new page cache entry in order to avoid stressing +** the heap even further. +*/ +static int pcache1UnderMemoryPressure(PCache1 *pCache){ + if( pcache1.nSlot && (pCache->szPage+pCache->szExtra)<=pcache1.szSlot ){ + return pcache1.bUnderPressure; + }else{ + return sqlite3HeapNearlyFull(); + } +} + +/******************************************************************************/ +/******** General Implementation Functions ************************************/ + +/* +** This function is used to resize the hash table used by the cache passed +** as the first argument. +** +** The PCache mutex must be held when this function is called. +*/ +static int pcache1ResizeHash(PCache1 *p){ + PgHdr1 **apNew; + unsigned int nNew; + unsigned int i; + + assert( sqlite3_mutex_held(p->pGroup->mutex) ); + + nNew = p->nHash*2; + if( nNew<256 ){ + nNew = 256; + } + + pcache1LeaveMutex(p->pGroup); + if( p->nHash ){ sqlite3BeginBenignMalloc(); } + apNew = (PgHdr1 **)sqlite3MallocZero(sizeof(PgHdr1 *)*nNew); + if( p->nHash ){ sqlite3EndBenignMalloc(); } + pcache1EnterMutex(p->pGroup); + if( apNew ){ + for(i=0; inHash; i++){ + PgHdr1 *pPage; + PgHdr1 *pNext = p->apHash[i]; + while( (pPage = pNext)!=0 ){ + unsigned int h = pPage->iKey % nNew; + pNext = pPage->pNext; + pPage->pNext = apNew[h]; + apNew[h] = pPage; + } + } + sqlite3_free(p->apHash); + p->apHash = apNew; + p->nHash = nNew; + } + + return (p->apHash ? SQLITE_OK : SQLITE_NOMEM); +} + +/* +** This function is used internally to remove the page pPage from the +** PGroup LRU list, if is part of it. If pPage is not part of the PGroup +** LRU list, then this function is a no-op. +** +** The PGroup mutex must be held when this function is called. +*/ +static void pcache1PinPage(PgHdr1 *pPage){ + PCache1 *pCache; + PGroup *pGroup; + + assert( pPage!=0 ); + assert( pPage->isPinned==0 ); + pCache = pPage->pCache; + pGroup = pCache->pGroup; + assert( pPage->pLruNext || pPage==pGroup->pLruTail ); + assert( pPage->pLruPrev || pPage==pGroup->pLruHead ); + assert( sqlite3_mutex_held(pGroup->mutex) ); + if( pPage->pLruPrev ){ + pPage->pLruPrev->pLruNext = pPage->pLruNext; + }else{ + pGroup->pLruHead = pPage->pLruNext; + } + if( pPage->pLruNext ){ + pPage->pLruNext->pLruPrev = pPage->pLruPrev; + }else{ + pGroup->pLruTail = pPage->pLruPrev; + } + pPage->pLruNext = 0; + pPage->pLruPrev = 0; + pPage->isPinned = 1; + pCache->nRecyclable--; +} + + +/* +** Remove the page supplied as an argument from the hash table +** (PCache1.apHash structure) that it is currently stored in. +** +** The PGroup mutex must be held when this function is called. +*/ +static void pcache1RemoveFromHash(PgHdr1 *pPage){ + unsigned int h; + PCache1 *pCache = pPage->pCache; + PgHdr1 **pp; + + assert( sqlite3_mutex_held(pCache->pGroup->mutex) ); + h = pPage->iKey % pCache->nHash; + for(pp=&pCache->apHash[h]; (*pp)!=pPage; pp=&(*pp)->pNext); + *pp = (*pp)->pNext; + + pCache->nPage--; +} + +/* +** If there are currently more than nMaxPage pages allocated, try +** to recycle pages to reduce the number allocated to nMaxPage. +*/ +static void pcache1EnforceMaxPage(PGroup *pGroup){ + assert( sqlite3_mutex_held(pGroup->mutex) ); + while( pGroup->nCurrentPage>pGroup->nMaxPage && pGroup->pLruTail ){ + PgHdr1 *p = pGroup->pLruTail; + assert( p->pCache->pGroup==pGroup ); + assert( p->isPinned==0 ); + pcache1PinPage(p); + pcache1RemoveFromHash(p); + pcache1FreePage(p); + } +} + +/* +** Discard all pages from cache pCache with a page number (key value) +** greater than or equal to iLimit. Any pinned pages that meet this +** criteria are unpinned before they are discarded. +** +** The PCache mutex must be held when this function is called. +*/ +static void pcache1TruncateUnsafe( + PCache1 *pCache, /* The cache to truncate */ + unsigned int iLimit /* Drop pages with this pgno or larger */ +){ + TESTONLY( unsigned int nPage = 0; ) /* To assert pCache->nPage is correct */ + unsigned int h; + assert( sqlite3_mutex_held(pCache->pGroup->mutex) ); + for(h=0; hnHash; h++){ + PgHdr1 **pp = &pCache->apHash[h]; + PgHdr1 *pPage; + while( (pPage = *pp)!=0 ){ + if( pPage->iKey>=iLimit ){ + pCache->nPage--; + *pp = pPage->pNext; + if( !pPage->isPinned ) pcache1PinPage(pPage); + pcache1FreePage(pPage); + }else{ + pp = &pPage->pNext; + TESTONLY( nPage++; ) + } + } + } + assert( pCache->nPage==nPage ); +} + +/******************************************************************************/ +/******** sqlite3_pcache Methods **********************************************/ + +/* +** Implementation of the sqlite3_pcache.xInit method. +*/ +static int pcache1Init(void *NotUsed){ + UNUSED_PARAMETER(NotUsed); + assert( pcache1.isInit==0 ); + memset(&pcache1, 0, sizeof(pcache1)); + if( sqlite3GlobalConfig.bCoreMutex ){ + pcache1.grp.mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_LRU); + pcache1.mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_PMEM); + } + pcache1.grp.mxPinned = 10; + pcache1.isInit = 1; + return SQLITE_OK; +} + +/* +** Implementation of the sqlite3_pcache.xShutdown method. +** Note that the static mutex allocated in xInit does +** not need to be freed. +*/ +static void pcache1Shutdown(void *NotUsed){ + UNUSED_PARAMETER(NotUsed); + assert( pcache1.isInit!=0 ); + memset(&pcache1, 0, sizeof(pcache1)); +} + +/* +** Implementation of the sqlite3_pcache.xCreate method. +** +** Allocate a new cache. +*/ +static sqlite3_pcache *pcache1Create(int szPage, int szExtra, int bPurgeable){ + PCache1 *pCache; /* The newly created page cache */ + PGroup *pGroup; /* The group the new page cache will belong to */ + int sz; /* Bytes of memory required to allocate the new cache */ + + /* + ** The separateCache variable is true if each PCache has its own private + ** PGroup. In other words, separateCache is true for mode (1) where no + ** mutexing is required. + ** + ** * Always use a unified cache (mode-2) if ENABLE_MEMORY_MANAGEMENT + ** + ** * Always use a unified cache in single-threaded applications + ** + ** * Otherwise (if multi-threaded and ENABLE_MEMORY_MANAGEMENT is off) + ** use separate caches (mode-1) + */ +#if defined(SQLITE_ENABLE_MEMORY_MANAGEMENT) || SQLITE_THREADSAFE==0 + const int separateCache = 0; +#else + int separateCache = sqlite3GlobalConfig.bCoreMutex>0; +#endif + + assert( (szPage & (szPage-1))==0 && szPage>=512 && szPage<=65536 ); + assert( szExtra < 300 ); + + sz = sizeof(PCache1) + sizeof(PGroup)*separateCache; + pCache = (PCache1 *)sqlite3MallocZero(sz); + if( pCache ){ + if( separateCache ){ + pGroup = (PGroup*)&pCache[1]; + pGroup->mxPinned = 10; + }else{ + pGroup = &pcache1.grp; + } + pCache->pGroup = pGroup; + pCache->szPage = szPage; + pCache->szExtra = szExtra; + pCache->bPurgeable = (bPurgeable ? 1 : 0); + if( bPurgeable ){ + pCache->nMin = 10; + pcache1EnterMutex(pGroup); + pGroup->nMinPage += pCache->nMin; + pGroup->mxPinned = pGroup->nMaxPage + 10 - pGroup->nMinPage; + pcache1LeaveMutex(pGroup); + } + } + return (sqlite3_pcache *)pCache; +} + +/* +** Implementation of the sqlite3_pcache.xCachesize method. +** +** Configure the cache_size limit for a cache. +*/ +static void pcache1Cachesize(sqlite3_pcache *p, int nMax){ + PCache1 *pCache = (PCache1 *)p; + if( pCache->bPurgeable ){ + PGroup *pGroup = pCache->pGroup; + pcache1EnterMutex(pGroup); + pGroup->nMaxPage += (nMax - pCache->nMax); + pGroup->mxPinned = pGroup->nMaxPage + 10 - pGroup->nMinPage; + pCache->nMax = nMax; + pCache->n90pct = pCache->nMax*9/10; + pcache1EnforceMaxPage(pGroup); + pcache1LeaveMutex(pGroup); + } +} + +/* +** Implementation of the sqlite3_pcache.xShrink method. +** +** Free up as much memory as possible. +*/ +static void pcache1Shrink(sqlite3_pcache *p){ + PCache1 *pCache = (PCache1*)p; + if( pCache->bPurgeable ){ + PGroup *pGroup = pCache->pGroup; + int savedMaxPage; + pcache1EnterMutex(pGroup); + savedMaxPage = pGroup->nMaxPage; + pGroup->nMaxPage = 0; + pcache1EnforceMaxPage(pGroup); + pGroup->nMaxPage = savedMaxPage; + pcache1LeaveMutex(pGroup); + } +} + +/* +** Implementation of the sqlite3_pcache.xPagecount method. +*/ +static int pcache1Pagecount(sqlite3_pcache *p){ + int n; + PCache1 *pCache = (PCache1*)p; + pcache1EnterMutex(pCache->pGroup); + n = pCache->nPage; + pcache1LeaveMutex(pCache->pGroup); + return n; +} + +/* +** Implementation of the sqlite3_pcache.xFetch method. +** +** Fetch a page by key value. +** +** Whether or not a new page may be allocated by this function depends on +** the value of the createFlag argument. 0 means do not allocate a new +** page. 1 means allocate a new page if space is easily available. 2 +** means to try really hard to allocate a new page. +** +** For a non-purgeable cache (a cache used as the storage for an in-memory +** database) there is really no difference between createFlag 1 and 2. So +** the calling function (pcache.c) will never have a createFlag of 1 on +** a non-purgeable cache. +** +** There are three different approaches to obtaining space for a page, +** depending on the value of parameter createFlag (which may be 0, 1 or 2). +** +** 1. Regardless of the value of createFlag, the cache is searched for a +** copy of the requested page. If one is found, it is returned. +** +** 2. If createFlag==0 and the page is not already in the cache, NULL is +** returned. +** +** 3. If createFlag is 1, and the page is not already in the cache, then +** return NULL (do not allocate a new page) if any of the following +** conditions are true: +** +** (a) the number of pages pinned by the cache is greater than +** PCache1.nMax, or +** +** (b) the number of pages pinned by the cache is greater than +** the sum of nMax for all purgeable caches, less the sum of +** nMin for all other purgeable caches, or +** +** 4. If none of the first three conditions apply and the cache is marked +** as purgeable, and if one of the following is true: +** +** (a) The number of pages allocated for the cache is already +** PCache1.nMax, or +** +** (b) The number of pages allocated for all purgeable caches is +** already equal to or greater than the sum of nMax for all +** purgeable caches, +** +** (c) The system is under memory pressure and wants to avoid +** unnecessary pages cache entry allocations +** +** then attempt to recycle a page from the LRU list. If it is the right +** size, return the recycled buffer. Otherwise, free the buffer and +** proceed to step 5. +** +** 5. Otherwise, allocate and return a new page buffer. +*/ +static sqlite3_pcache_page *pcache1Fetch( + sqlite3_pcache *p, + unsigned int iKey, + int createFlag +){ + unsigned int nPinned; + PCache1 *pCache = (PCache1 *)p; + PGroup *pGroup; + PgHdr1 *pPage = 0; + + assert( offsetof(PgHdr1,page)==0 ); + assert( pCache->bPurgeable || createFlag!=1 ); + assert( pCache->bPurgeable || pCache->nMin==0 ); + assert( pCache->bPurgeable==0 || pCache->nMin==10 ); + assert( pCache->nMin==0 || pCache->bPurgeable ); + pcache1EnterMutex(pGroup = pCache->pGroup); + + /* Step 1: Search the hash table for an existing entry. */ + if( pCache->nHash>0 ){ + unsigned int h = iKey % pCache->nHash; + for(pPage=pCache->apHash[h]; pPage&&pPage->iKey!=iKey; pPage=pPage->pNext); + } + + /* Step 2: Abort if no existing page is found and createFlag is 0 */ + if( pPage ){ + if( !pPage->isPinned ) pcache1PinPage(pPage); + goto fetch_out; + } + if( createFlag==0 ){ + goto fetch_out; + } + + /* The pGroup local variable will normally be initialized by the + ** pcache1EnterMutex() macro above. But if SQLITE_MUTEX_OMIT is defined, + ** then pcache1EnterMutex() is a no-op, so we have to initialize the + ** local variable here. Delaying the initialization of pGroup is an + ** optimization: The common case is to exit the module before reaching + ** this point. + */ +#ifdef SQLITE_MUTEX_OMIT + pGroup = pCache->pGroup; +#endif + + /* Step 3: Abort if createFlag is 1 but the cache is nearly full */ + assert( pCache->nPage >= pCache->nRecyclable ); + nPinned = pCache->nPage - pCache->nRecyclable; + assert( pGroup->mxPinned == pGroup->nMaxPage + 10 - pGroup->nMinPage ); + assert( pCache->n90pct == pCache->nMax*9/10 ); + if( createFlag==1 && ( + nPinned>=pGroup->mxPinned + || nPinned>=pCache->n90pct + || pcache1UnderMemoryPressure(pCache) + )){ + goto fetch_out; + } + + if( pCache->nPage>=pCache->nHash && pcache1ResizeHash(pCache) ){ + goto fetch_out; + } + assert( pCache->nHash>0 && pCache->apHash ); + + /* Step 4. Try to recycle a page. */ + if( pCache->bPurgeable && pGroup->pLruTail && ( + (pCache->nPage+1>=pCache->nMax) + || pGroup->nCurrentPage>=pGroup->nMaxPage + || pcache1UnderMemoryPressure(pCache) + )){ + PCache1 *pOther; + pPage = pGroup->pLruTail; + assert( pPage->isPinned==0 ); + pcache1RemoveFromHash(pPage); + pcache1PinPage(pPage); + pOther = pPage->pCache; + + /* We want to verify that szPage and szExtra are the same for pOther + ** and pCache. Assert that we can verify this by comparing sums. */ + assert( (pCache->szPage & (pCache->szPage-1))==0 && pCache->szPage>=512 ); + assert( pCache->szExtra<512 ); + assert( (pOther->szPage & (pOther->szPage-1))==0 && pOther->szPage>=512 ); + assert( pOther->szExtra<512 ); + + if( pOther->szPage+pOther->szExtra != pCache->szPage+pCache->szExtra ){ + pcache1FreePage(pPage); + pPage = 0; + }else{ + pGroup->nCurrentPage -= (pOther->bPurgeable - pCache->bPurgeable); + } + } + + /* Step 5. If a usable page buffer has still not been found, + ** attempt to allocate a new one. + */ + if( !pPage ){ + if( createFlag==1 ) sqlite3BeginBenignMalloc(); + pPage = pcache1AllocPage(pCache); + if( createFlag==1 ) sqlite3EndBenignMalloc(); + } + + if( pPage ){ + unsigned int h = iKey % pCache->nHash; + pCache->nPage++; + pPage->iKey = iKey; + pPage->pNext = pCache->apHash[h]; + pPage->pCache = pCache; + pPage->pLruPrev = 0; + pPage->pLruNext = 0; + pPage->isPinned = 1; + *(void **)pPage->page.pExtra = 0; + pCache->apHash[h] = pPage; + } + +fetch_out: + if( pPage && iKey>pCache->iMaxKey ){ + pCache->iMaxKey = iKey; + } + pcache1LeaveMutex(pGroup); + return (sqlite3_pcache_page*)pPage; +} + + +/* +** Implementation of the sqlite3_pcache.xUnpin method. +** +** Mark a page as unpinned (eligible for asynchronous recycling). +*/ +static void pcache1Unpin( + sqlite3_pcache *p, + sqlite3_pcache_page *pPg, + int reuseUnlikely +){ + PCache1 *pCache = (PCache1 *)p; + PgHdr1 *pPage = (PgHdr1 *)pPg; + PGroup *pGroup = pCache->pGroup; + + assert( pPage->pCache==pCache ); + pcache1EnterMutex(pGroup); + + /* It is an error to call this function if the page is already + ** part of the PGroup LRU list. + */ + assert( pPage->pLruPrev==0 && pPage->pLruNext==0 ); + assert( pGroup->pLruHead!=pPage && pGroup->pLruTail!=pPage ); + assert( pPage->isPinned==1 ); + + if( reuseUnlikely || pGroup->nCurrentPage>pGroup->nMaxPage ){ + pcache1RemoveFromHash(pPage); + pcache1FreePage(pPage); + }else{ + /* Add the page to the PGroup LRU list. */ + if( pGroup->pLruHead ){ + pGroup->pLruHead->pLruPrev = pPage; + pPage->pLruNext = pGroup->pLruHead; + pGroup->pLruHead = pPage; + }else{ + pGroup->pLruTail = pPage; + pGroup->pLruHead = pPage; + } + pCache->nRecyclable++; + pPage->isPinned = 0; + } + + pcache1LeaveMutex(pCache->pGroup); +} + +/* +** Implementation of the sqlite3_pcache.xRekey method. +*/ +static void pcache1Rekey( + sqlite3_pcache *p, + sqlite3_pcache_page *pPg, + unsigned int iOld, + unsigned int iNew +){ + PCache1 *pCache = (PCache1 *)p; + PgHdr1 *pPage = (PgHdr1 *)pPg; + PgHdr1 **pp; + unsigned int h; + assert( pPage->iKey==iOld ); + assert( pPage->pCache==pCache ); + + pcache1EnterMutex(pCache->pGroup); + + h = iOld%pCache->nHash; + pp = &pCache->apHash[h]; + while( (*pp)!=pPage ){ + pp = &(*pp)->pNext; + } + *pp = pPage->pNext; + + h = iNew%pCache->nHash; + pPage->iKey = iNew; + pPage->pNext = pCache->apHash[h]; + pCache->apHash[h] = pPage; + if( iNew>pCache->iMaxKey ){ + pCache->iMaxKey = iNew; + } + + pcache1LeaveMutex(pCache->pGroup); +} + +/* +** Implementation of the sqlite3_pcache.xTruncate method. +** +** Discard all unpinned pages in the cache with a page number equal to +** or greater than parameter iLimit. Any pinned pages with a page number +** equal to or greater than iLimit are implicitly unpinned. +*/ +static void pcache1Truncate(sqlite3_pcache *p, unsigned int iLimit){ + PCache1 *pCache = (PCache1 *)p; + pcache1EnterMutex(pCache->pGroup); + if( iLimit<=pCache->iMaxKey ){ + pcache1TruncateUnsafe(pCache, iLimit); + pCache->iMaxKey = iLimit-1; + } + pcache1LeaveMutex(pCache->pGroup); +} + +/* +** Implementation of the sqlite3_pcache.xDestroy method. +** +** Destroy a cache allocated using pcache1Create(). +*/ +static void pcache1Destroy(sqlite3_pcache *p){ + PCache1 *pCache = (PCache1 *)p; + PGroup *pGroup = pCache->pGroup; + assert( pCache->bPurgeable || (pCache->nMax==0 && pCache->nMin==0) ); + pcache1EnterMutex(pGroup); + pcache1TruncateUnsafe(pCache, 0); + assert( pGroup->nMaxPage >= pCache->nMax ); + pGroup->nMaxPage -= pCache->nMax; + assert( pGroup->nMinPage >= pCache->nMin ); + pGroup->nMinPage -= pCache->nMin; + pGroup->mxPinned = pGroup->nMaxPage + 10 - pGroup->nMinPage; + pcache1EnforceMaxPage(pGroup); + pcache1LeaveMutex(pGroup); + sqlite3_free(pCache->apHash); + sqlite3_free(pCache); +} + +/* +** This function is called during initialization (sqlite3_initialize()) to +** install the default pluggable cache module, assuming the user has not +** already provided an alternative. +*/ +SQLITE_PRIVATE void sqlite3PCacheSetDefault(void){ + static const sqlite3_pcache_methods2 defaultMethods = { + 1, /* iVersion */ + 0, /* pArg */ + pcache1Init, /* xInit */ + pcache1Shutdown, /* xShutdown */ + pcache1Create, /* xCreate */ + pcache1Cachesize, /* xCachesize */ + pcache1Pagecount, /* xPagecount */ + pcache1Fetch, /* xFetch */ + pcache1Unpin, /* xUnpin */ + pcache1Rekey, /* xRekey */ + pcache1Truncate, /* xTruncate */ + pcache1Destroy, /* xDestroy */ + pcache1Shrink /* xShrink */ + }; + sqlite3_config(SQLITE_CONFIG_PCACHE2, &defaultMethods); +} + +#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT +/* +** This function is called to free superfluous dynamically allocated memory +** held by the pager system. Memory in use by any SQLite pager allocated +** by the current thread may be sqlite3_free()ed. +** +** nReq is the number of bytes of memory required. Once this much has +** been released, the function returns. The return value is the total number +** of bytes of memory released. +*/ +SQLITE_PRIVATE int sqlite3PcacheReleaseMemory(int nReq){ + int nFree = 0; + assert( sqlite3_mutex_notheld(pcache1.grp.mutex) ); + assert( sqlite3_mutex_notheld(pcache1.mutex) ); + if( pcache1.pStart==0 ){ + PgHdr1 *p; + pcache1EnterMutex(&pcache1.grp); + while( (nReq<0 || nFreepage.pBuf); +#ifdef SQLITE_PCACHE_SEPARATE_HEADER + nFree += sqlite3MemSize(p); +#endif + assert( p->isPinned==0 ); + pcache1PinPage(p); + pcache1RemoveFromHash(p); + pcache1FreePage(p); + } + pcache1LeaveMutex(&pcache1.grp); + } + return nFree; +} +#endif /* SQLITE_ENABLE_MEMORY_MANAGEMENT */ + +#ifdef SQLITE_TEST +/* +** This function is used by test procedures to inspect the internal state +** of the global cache. +*/ +SQLITE_PRIVATE void sqlite3PcacheStats( + int *pnCurrent, /* OUT: Total number of pages cached */ + int *pnMax, /* OUT: Global maximum cache size */ + int *pnMin, /* OUT: Sum of PCache1.nMin for purgeable caches */ + int *pnRecyclable /* OUT: Total number of pages available for recycling */ +){ + PgHdr1 *p; + int nRecyclable = 0; + for(p=pcache1.grp.pLruHead; p; p=p->pLruNext){ + assert( p->isPinned==0 ); + nRecyclable++; + } + *pnCurrent = pcache1.grp.nCurrentPage; + *pnMax = (int)pcache1.grp.nMaxPage; + *pnMin = (int)pcache1.grp.nMinPage; + *pnRecyclable = nRecyclable; +} +#endif + +/************** End of pcache1.c *********************************************/ +/************** Begin file rowset.c ******************************************/ +/* +** 2008 December 3 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This module implements an object we call a "RowSet". +** +** The RowSet object is a collection of rowids. Rowids +** are inserted into the RowSet in an arbitrary order. Inserts +** can be intermixed with tests to see if a given rowid has been +** previously inserted into the RowSet. +** +** After all inserts are finished, it is possible to extract the +** elements of the RowSet in sorted order. Once this extraction +** process has started, no new elements may be inserted. +** +** Hence, the primitive operations for a RowSet are: +** +** CREATE +** INSERT +** TEST +** SMALLEST +** DESTROY +** +** The CREATE and DESTROY primitives are the constructor and destructor, +** obviously. The INSERT primitive adds a new element to the RowSet. +** TEST checks to see if an element is already in the RowSet. SMALLEST +** extracts the least value from the RowSet. +** +** The INSERT primitive might allocate additional memory. Memory is +** allocated in chunks so most INSERTs do no allocation. There is an +** upper bound on the size of allocated memory. No memory is freed +** until DESTROY. +** +** The TEST primitive includes a "batch" number. The TEST primitive +** will only see elements that were inserted before the last change +** in the batch number. In other words, if an INSERT occurs between +** two TESTs where the TESTs have the same batch nubmer, then the +** value added by the INSERT will not be visible to the second TEST. +** The initial batch number is zero, so if the very first TEST contains +** a non-zero batch number, it will see all prior INSERTs. +** +** No INSERTs may occurs after a SMALLEST. An assertion will fail if +** that is attempted. +** +** The cost of an INSERT is roughly constant. (Sometime new memory +** has to be allocated on an INSERT.) The cost of a TEST with a new +** batch number is O(NlogN) where N is the number of elements in the RowSet. +** The cost of a TEST using the same batch number is O(logN). The cost +** of the first SMALLEST is O(NlogN). Second and subsequent SMALLEST +** primitives are constant time. The cost of DESTROY is O(N). +** +** There is an added cost of O(N) when switching between TEST and +** SMALLEST primitives. +*/ + + +/* +** Target size for allocation chunks. +*/ +#define ROWSET_ALLOCATION_SIZE 1024 + +/* +** The number of rowset entries per allocation chunk. +*/ +#define ROWSET_ENTRY_PER_CHUNK \ + ((ROWSET_ALLOCATION_SIZE-8)/sizeof(struct RowSetEntry)) + +/* +** Each entry in a RowSet is an instance of the following object. +** +** This same object is reused to store a linked list of trees of RowSetEntry +** objects. In that alternative use, pRight points to the next entry +** in the list, pLeft points to the tree, and v is unused. The +** RowSet.pForest value points to the head of this forest list. +*/ +struct RowSetEntry { + i64 v; /* ROWID value for this entry */ + struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */ + struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */ +}; + +/* +** RowSetEntry objects are allocated in large chunks (instances of the +** following structure) to reduce memory allocation overhead. The +** chunks are kept on a linked list so that they can be deallocated +** when the RowSet is destroyed. +*/ +struct RowSetChunk { + struct RowSetChunk *pNextChunk; /* Next chunk on list of them all */ + struct RowSetEntry aEntry[ROWSET_ENTRY_PER_CHUNK]; /* Allocated entries */ +}; + +/* +** A RowSet in an instance of the following structure. +** +** A typedef of this structure if found in sqliteInt.h. +*/ +struct RowSet { + struct RowSetChunk *pChunk; /* List of all chunk allocations */ + sqlite3 *db; /* The database connection */ + struct RowSetEntry *pEntry; /* List of entries using pRight */ + struct RowSetEntry *pLast; /* Last entry on the pEntry list */ + struct RowSetEntry *pFresh; /* Source of new entry objects */ + struct RowSetEntry *pForest; /* List of binary trees of entries */ + u16 nFresh; /* Number of objects on pFresh */ + u16 rsFlags; /* Various flags */ + int iBatch; /* Current insert batch */ +}; + +/* +** Allowed values for RowSet.rsFlags +*/ +#define ROWSET_SORTED 0x01 /* True if RowSet.pEntry is sorted */ +#define ROWSET_NEXT 0x02 /* True if sqlite3RowSetNext() has been called */ + +/* +** Turn bulk memory into a RowSet object. N bytes of memory +** are available at pSpace. The db pointer is used as a memory context +** for any subsequent allocations that need to occur. +** Return a pointer to the new RowSet object. +** +** It must be the case that N is sufficient to make a Rowset. If not +** an assertion fault occurs. +** +** If N is larger than the minimum, use the surplus as an initial +** allocation of entries available to be filled. +*/ +SQLITE_PRIVATE RowSet *sqlite3RowSetInit(sqlite3 *db, void *pSpace, unsigned int N){ + RowSet *p; + assert( N >= ROUND8(sizeof(*p)) ); + p = pSpace; + p->pChunk = 0; + p->db = db; + p->pEntry = 0; + p->pLast = 0; + p->pForest = 0; + p->pFresh = (struct RowSetEntry*)(ROUND8(sizeof(*p)) + (char*)p); + p->nFresh = (u16)((N - ROUND8(sizeof(*p)))/sizeof(struct RowSetEntry)); + p->rsFlags = ROWSET_SORTED; + p->iBatch = 0; + return p; +} + +/* +** Deallocate all chunks from a RowSet. This frees all memory that +** the RowSet has allocated over its lifetime. This routine is +** the destructor for the RowSet. +*/ +SQLITE_PRIVATE void sqlite3RowSetClear(RowSet *p){ + struct RowSetChunk *pChunk, *pNextChunk; + for(pChunk=p->pChunk; pChunk; pChunk = pNextChunk){ + pNextChunk = pChunk->pNextChunk; + sqlite3DbFree(p->db, pChunk); + } + p->pChunk = 0; + p->nFresh = 0; + p->pEntry = 0; + p->pLast = 0; + p->pForest = 0; + p->rsFlags = ROWSET_SORTED; +} + +/* +** Allocate a new RowSetEntry object that is associated with the +** given RowSet. Return a pointer to the new and completely uninitialized +** objected. +** +** In an OOM situation, the RowSet.db->mallocFailed flag is set and this +** routine returns NULL. +*/ +static struct RowSetEntry *rowSetEntryAlloc(RowSet *p){ + assert( p!=0 ); + if( p->nFresh==0 ){ + struct RowSetChunk *pNew; + pNew = sqlite3DbMallocRaw(p->db, sizeof(*pNew)); + if( pNew==0 ){ + return 0; + } + pNew->pNextChunk = p->pChunk; + p->pChunk = pNew; + p->pFresh = pNew->aEntry; + p->nFresh = ROWSET_ENTRY_PER_CHUNK; + } + p->nFresh--; + return p->pFresh++; +} + +/* +** Insert a new value into a RowSet. +** +** The mallocFailed flag of the database connection is set if a +** memory allocation fails. +*/ +SQLITE_PRIVATE void sqlite3RowSetInsert(RowSet *p, i64 rowid){ + struct RowSetEntry *pEntry; /* The new entry */ + struct RowSetEntry *pLast; /* The last prior entry */ + + /* This routine is never called after sqlite3RowSetNext() */ + assert( p!=0 && (p->rsFlags & ROWSET_NEXT)==0 ); + + pEntry = rowSetEntryAlloc(p); + if( pEntry==0 ) return; + pEntry->v = rowid; + pEntry->pRight = 0; + pLast = p->pLast; + if( pLast ){ + if( (p->rsFlags & ROWSET_SORTED)!=0 && rowid<=pLast->v ){ + p->rsFlags &= ~ROWSET_SORTED; + } + pLast->pRight = pEntry; + }else{ + p->pEntry = pEntry; + } + p->pLast = pEntry; +} + +/* +** Merge two lists of RowSetEntry objects. Remove duplicates. +** +** The input lists are connected via pRight pointers and are +** assumed to each already be in sorted order. +*/ +static struct RowSetEntry *rowSetEntryMerge( + struct RowSetEntry *pA, /* First sorted list to be merged */ + struct RowSetEntry *pB /* Second sorted list to be merged */ +){ + struct RowSetEntry head; + struct RowSetEntry *pTail; + + pTail = &head; + while( pA && pB ){ + assert( pA->pRight==0 || pA->v<=pA->pRight->v ); + assert( pB->pRight==0 || pB->v<=pB->pRight->v ); + if( pA->vv ){ + pTail->pRight = pA; + pA = pA->pRight; + pTail = pTail->pRight; + }else if( pB->vv ){ + pTail->pRight = pB; + pB = pB->pRight; + pTail = pTail->pRight; + }else{ + pA = pA->pRight; + } + } + if( pA ){ + assert( pA->pRight==0 || pA->v<=pA->pRight->v ); + pTail->pRight = pA; + }else{ + assert( pB==0 || pB->pRight==0 || pB->v<=pB->pRight->v ); + pTail->pRight = pB; + } + return head.pRight; +} + +/* +** Sort all elements on the list of RowSetEntry objects into order of +** increasing v. +*/ +static struct RowSetEntry *rowSetEntrySort(struct RowSetEntry *pIn){ + unsigned int i; + struct RowSetEntry *pNext, *aBucket[40]; + + memset(aBucket, 0, sizeof(aBucket)); + while( pIn ){ + pNext = pIn->pRight; + pIn->pRight = 0; + for(i=0; aBucket[i]; i++){ + pIn = rowSetEntryMerge(aBucket[i], pIn); + aBucket[i] = 0; + } + aBucket[i] = pIn; + pIn = pNext; + } + pIn = 0; + for(i=0; ipLeft ){ + struct RowSetEntry *p; + rowSetTreeToList(pIn->pLeft, ppFirst, &p); + p->pRight = pIn; + }else{ + *ppFirst = pIn; + } + if( pIn->pRight ){ + rowSetTreeToList(pIn->pRight, &pIn->pRight, ppLast); + }else{ + *ppLast = pIn; + } + assert( (*ppLast)->pRight==0 ); +} + + +/* +** Convert a sorted list of elements (connected by pRight) into a binary +** tree with depth of iDepth. A depth of 1 means the tree contains a single +** node taken from the head of *ppList. A depth of 2 means a tree with +** three nodes. And so forth. +** +** Use as many entries from the input list as required and update the +** *ppList to point to the unused elements of the list. If the input +** list contains too few elements, then construct an incomplete tree +** and leave *ppList set to NULL. +** +** Return a pointer to the root of the constructed binary tree. +*/ +static struct RowSetEntry *rowSetNDeepTree( + struct RowSetEntry **ppList, + int iDepth +){ + struct RowSetEntry *p; /* Root of the new tree */ + struct RowSetEntry *pLeft; /* Left subtree */ + if( *ppList==0 ){ + return 0; + } + if( iDepth==1 ){ + p = *ppList; + *ppList = p->pRight; + p->pLeft = p->pRight = 0; + return p; + } + pLeft = rowSetNDeepTree(ppList, iDepth-1); + p = *ppList; + if( p==0 ){ + return pLeft; + } + p->pLeft = pLeft; + *ppList = p->pRight; + p->pRight = rowSetNDeepTree(ppList, iDepth-1); + return p; +} + +/* +** Convert a sorted list of elements into a binary tree. Make the tree +** as deep as it needs to be in order to contain the entire list. +*/ +static struct RowSetEntry *rowSetListToTree(struct RowSetEntry *pList){ + int iDepth; /* Depth of the tree so far */ + struct RowSetEntry *p; /* Current tree root */ + struct RowSetEntry *pLeft; /* Left subtree */ + + assert( pList!=0 ); + p = pList; + pList = p->pRight; + p->pLeft = p->pRight = 0; + for(iDepth=1; pList; iDepth++){ + pLeft = p; + p = pList; + pList = p->pRight; + p->pLeft = pLeft; + p->pRight = rowSetNDeepTree(&pList, iDepth); + } + return p; +} + +/* +** Take all the entries on p->pEntry and on the trees in p->pForest and +** sort them all together into one big ordered list on p->pEntry. +** +** This routine should only be called once in the life of a RowSet. +*/ +static void rowSetToList(RowSet *p){ + + /* This routine is called only once */ + assert( p!=0 && (p->rsFlags & ROWSET_NEXT)==0 ); + + if( (p->rsFlags & ROWSET_SORTED)==0 ){ + p->pEntry = rowSetEntrySort(p->pEntry); + } + + /* While this module could theoretically support it, sqlite3RowSetNext() + ** is never called after sqlite3RowSetText() for the same RowSet. So + ** there is never a forest to deal with. Should this change, simply + ** remove the assert() and the #if 0. */ + assert( p->pForest==0 ); +#if 0 + while( p->pForest ){ + struct RowSetEntry *pTree = p->pForest->pLeft; + if( pTree ){ + struct RowSetEntry *pHead, *pTail; + rowSetTreeToList(pTree, &pHead, &pTail); + p->pEntry = rowSetEntryMerge(p->pEntry, pHead); + } + p->pForest = p->pForest->pRight; + } +#endif + p->rsFlags |= ROWSET_NEXT; /* Verify this routine is never called again */ +} + +/* +** Extract the smallest element from the RowSet. +** Write the element into *pRowid. Return 1 on success. Return +** 0 if the RowSet is already empty. +** +** After this routine has been called, the sqlite3RowSetInsert() +** routine may not be called again. +*/ +SQLITE_PRIVATE int sqlite3RowSetNext(RowSet *p, i64 *pRowid){ + assert( p!=0 ); + + /* Merge the forest into a single sorted list on first call */ + if( (p->rsFlags & ROWSET_NEXT)==0 ) rowSetToList(p); + + /* Return the next entry on the list */ + if( p->pEntry ){ + *pRowid = p->pEntry->v; + p->pEntry = p->pEntry->pRight; + if( p->pEntry==0 ){ + sqlite3RowSetClear(p); + } + return 1; + }else{ + return 0; + } +} + +/* +** Check to see if element iRowid was inserted into the rowset as +** part of any insert batch prior to iBatch. Return 1 or 0. +** +** If this is the first test of a new batch and if there exist entires +** on pRowSet->pEntry, then sort those entires into the forest at +** pRowSet->pForest so that they can be tested. +*/ +SQLITE_PRIVATE int sqlite3RowSetTest(RowSet *pRowSet, int iBatch, sqlite3_int64 iRowid){ + struct RowSetEntry *p, *pTree; + + /* This routine is never called after sqlite3RowSetNext() */ + assert( pRowSet!=0 && (pRowSet->rsFlags & ROWSET_NEXT)==0 ); + + /* Sort entries into the forest on the first test of a new batch + */ + if( iBatch!=pRowSet->iBatch ){ + p = pRowSet->pEntry; + if( p ){ + struct RowSetEntry **ppPrevTree = &pRowSet->pForest; + if( (pRowSet->rsFlags & ROWSET_SORTED)==0 ){ + p = rowSetEntrySort(p); + } + for(pTree = pRowSet->pForest; pTree; pTree=pTree->pRight){ + ppPrevTree = &pTree->pRight; + if( pTree->pLeft==0 ){ + pTree->pLeft = rowSetListToTree(p); + break; + }else{ + struct RowSetEntry *pAux, *pTail; + rowSetTreeToList(pTree->pLeft, &pAux, &pTail); + pTree->pLeft = 0; + p = rowSetEntryMerge(pAux, p); + } + } + if( pTree==0 ){ + *ppPrevTree = pTree = rowSetEntryAlloc(pRowSet); + if( pTree ){ + pTree->v = 0; + pTree->pRight = 0; + pTree->pLeft = rowSetListToTree(p); + } + } + pRowSet->pEntry = 0; + pRowSet->pLast = 0; + pRowSet->rsFlags |= ROWSET_SORTED; + } + pRowSet->iBatch = iBatch; + } + + /* Test to see if the iRowid value appears anywhere in the forest. + ** Return 1 if it does and 0 if not. + */ + for(pTree = pRowSet->pForest; pTree; pTree=pTree->pRight){ + p = pTree->pLeft; + while( p ){ + if( p->vpRight; + }else if( p->v>iRowid ){ + p = p->pLeft; + }else{ + return 1; + } + } + } + return 0; +} + +/************** End of rowset.c **********************************************/ +/************** Begin file pager.c *******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This is the implementation of the page cache subsystem or "pager". +** +** The pager is used to access a database disk file. It implements +** atomic commit and rollback through the use of a journal file that +** is separate from the database file. The pager also implements file +** locking to prevent two processes from writing the same database +** file simultaneously, or one process from reading the database while +** another is writing. +*/ +#ifndef SQLITE_OMIT_DISKIO +/************** Include wal.h in the middle of pager.c ***********************/ +/************** Begin file wal.h *********************************************/ +/* +** 2010 February 1 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This header file defines the interface to the write-ahead logging +** system. Refer to the comments below and the header comment attached to +** the implementation of each function in log.c for further details. +*/ + +#ifndef _WAL_H_ +#define _WAL_H_ + + +/* Additional values that can be added to the sync_flags argument of +** sqlite3WalFrames(): +*/ +#define WAL_SYNC_TRANSACTIONS 0x20 /* Sync at the end of each transaction */ +#define SQLITE_SYNC_MASK 0x13 /* Mask off the SQLITE_SYNC_* values */ + +#ifdef SQLITE_OMIT_WAL +# define sqlite3WalOpen(x,y,z) 0 +# define sqlite3WalLimit(x,y) +# define sqlite3WalClose(w,x,y,z) 0 +# define sqlite3WalBeginReadTransaction(y,z) 0 +# define sqlite3WalEndReadTransaction(z) +# define sqlite3WalDbsize(y) 0 +# define sqlite3WalBeginWriteTransaction(y) 0 +# define sqlite3WalEndWriteTransaction(x) 0 +# define sqlite3WalUndo(x,y,z) 0 +# define sqlite3WalSavepoint(y,z) +# define sqlite3WalSavepointUndo(y,z) 0 +# define sqlite3WalFrames(u,v,w,x,y,z) 0 +# define sqlite3WalCheckpoint(r,s,t,u,v,w,x,y,z) 0 +# define sqlite3WalCallback(z) 0 +# define sqlite3WalExclusiveMode(y,z) 0 +# define sqlite3WalHeapMemory(z) 0 +# define sqlite3WalFramesize(z) 0 +# define sqlite3WalFindFrame(x,y,z) 0 +#else + +#define WAL_SAVEPOINT_NDATA 4 + +/* Connection to a write-ahead log (WAL) file. +** There is one object of this type for each pager. +*/ +typedef struct Wal Wal; + +/* Open and close a connection to a write-ahead log. */ +SQLITE_PRIVATE int sqlite3WalOpen(sqlite3_vfs*, sqlite3_file*, const char *, int, i64, Wal**); +SQLITE_PRIVATE int sqlite3WalClose(Wal *pWal, int sync_flags, int, u8 *); + +/* Set the limiting size of a WAL file. */ +SQLITE_PRIVATE void sqlite3WalLimit(Wal*, i64); + +/* Used by readers to open (lock) and close (unlock) a snapshot. A +** snapshot is like a read-transaction. It is the state of the database +** at an instant in time. sqlite3WalOpenSnapshot gets a read lock and +** preserves the current state even if the other threads or processes +** write to or checkpoint the WAL. sqlite3WalCloseSnapshot() closes the +** transaction and releases the lock. +*/ +SQLITE_PRIVATE int sqlite3WalBeginReadTransaction(Wal *pWal, int *); +SQLITE_PRIVATE void sqlite3WalEndReadTransaction(Wal *pWal); + +/* Read a page from the write-ahead log, if it is present. */ +SQLITE_PRIVATE int sqlite3WalFindFrame(Wal *, Pgno, u32 *); +SQLITE_PRIVATE int sqlite3WalReadFrame(Wal *, u32, int, u8 *); + +/* If the WAL is not empty, return the size of the database. */ +SQLITE_PRIVATE Pgno sqlite3WalDbsize(Wal *pWal); + +/* Obtain or release the WRITER lock. */ +SQLITE_PRIVATE int sqlite3WalBeginWriteTransaction(Wal *pWal); +SQLITE_PRIVATE int sqlite3WalEndWriteTransaction(Wal *pWal); + +/* Undo any frames written (but not committed) to the log */ +SQLITE_PRIVATE int sqlite3WalUndo(Wal *pWal, int (*xUndo)(void *, Pgno), void *pUndoCtx); + +/* Return an integer that records the current (uncommitted) write +** position in the WAL */ +SQLITE_PRIVATE void sqlite3WalSavepoint(Wal *pWal, u32 *aWalData); + +/* Move the write position of the WAL back to iFrame. Called in +** response to a ROLLBACK TO command. */ +SQLITE_PRIVATE int sqlite3WalSavepointUndo(Wal *pWal, u32 *aWalData); + +/* Write a frame or frames to the log. */ +SQLITE_PRIVATE int sqlite3WalFrames(Wal *pWal, int, PgHdr *, Pgno, int, int); + +/* Copy pages from the log to the database file */ +SQLITE_PRIVATE int sqlite3WalCheckpoint( + Wal *pWal, /* Write-ahead log connection */ + int eMode, /* One of PASSIVE, FULL and RESTART */ + int (*xBusy)(void*), /* Function to call when busy */ + void *pBusyArg, /* Context argument for xBusyHandler */ + int sync_flags, /* Flags to sync db file with (or 0) */ + int nBuf, /* Size of buffer nBuf */ + u8 *zBuf, /* Temporary buffer to use */ + int *pnLog, /* OUT: Number of frames in WAL */ + int *pnCkpt /* OUT: Number of backfilled frames in WAL */ +); + +/* Return the value to pass to a sqlite3_wal_hook callback, the +** number of frames in the WAL at the point of the last commit since +** sqlite3WalCallback() was called. If no commits have occurred since +** the last call, then return 0. +*/ +SQLITE_PRIVATE int sqlite3WalCallback(Wal *pWal); + +/* Tell the wal layer that an EXCLUSIVE lock has been obtained (or released) +** by the pager layer on the database file. +*/ +SQLITE_PRIVATE int sqlite3WalExclusiveMode(Wal *pWal, int op); + +/* Return true if the argument is non-NULL and the WAL module is using +** heap-memory for the wal-index. Otherwise, if the argument is NULL or the +** WAL module is using shared-memory, return false. +*/ +SQLITE_PRIVATE int sqlite3WalHeapMemory(Wal *pWal); + +#ifdef SQLITE_ENABLE_ZIPVFS +/* If the WAL file is not empty, return the number of bytes of content +** stored in each frame (i.e. the db page-size when the WAL was created). +*/ +SQLITE_PRIVATE int sqlite3WalFramesize(Wal *pWal); +#endif + +#endif /* ifndef SQLITE_OMIT_WAL */ +#endif /* _WAL_H_ */ + +/************** End of wal.h *************************************************/ +/************** Continuing where we left off in pager.c **********************/ + + +/******************* NOTES ON THE DESIGN OF THE PAGER ************************ +** +** This comment block describes invariants that hold when using a rollback +** journal. These invariants do not apply for journal_mode=WAL, +** journal_mode=MEMORY, or journal_mode=OFF. +** +** Within this comment block, a page is deemed to have been synced +** automatically as soon as it is written when PRAGMA synchronous=OFF. +** Otherwise, the page is not synced until the xSync method of the VFS +** is called successfully on the file containing the page. +** +** Definition: A page of the database file is said to be "overwriteable" if +** one or more of the following are true about the page: +** +** (a) The original content of the page as it was at the beginning of +** the transaction has been written into the rollback journal and +** synced. +** +** (b) The page was a freelist leaf page at the start of the transaction. +** +** (c) The page number is greater than the largest page that existed in +** the database file at the start of the transaction. +** +** (1) A page of the database file is never overwritten unless one of the +** following are true: +** +** (a) The page and all other pages on the same sector are overwriteable. +** +** (b) The atomic page write optimization is enabled, and the entire +** transaction other than the update of the transaction sequence +** number consists of a single page change. +** +** (2) The content of a page written into the rollback journal exactly matches +** both the content in the database when the rollback journal was written +** and the content in the database at the beginning of the current +** transaction. +** +** (3) Writes to the database file are an integer multiple of the page size +** in length and are aligned on a page boundary. +** +** (4) Reads from the database file are either aligned on a page boundary and +** an integer multiple of the page size in length or are taken from the +** first 100 bytes of the database file. +** +** (5) All writes to the database file are synced prior to the rollback journal +** being deleted, truncated, or zeroed. +** +** (6) If a master journal file is used, then all writes to the database file +** are synced prior to the master journal being deleted. +** +** Definition: Two databases (or the same database at two points it time) +** are said to be "logically equivalent" if they give the same answer to +** all queries. Note in particular the content of freelist leaf +** pages can be changed arbitarily without effecting the logical equivalence +** of the database. +** +** (7) At any time, if any subset, including the empty set and the total set, +** of the unsynced changes to a rollback journal are removed and the +** journal is rolled back, the resulting database file will be logical +** equivalent to the database file at the beginning of the transaction. +** +** (8) When a transaction is rolled back, the xTruncate method of the VFS +** is called to restore the database file to the same size it was at +** the beginning of the transaction. (In some VFSes, the xTruncate +** method is a no-op, but that does not change the fact the SQLite will +** invoke it.) +** +** (9) Whenever the database file is modified, at least one bit in the range +** of bytes from 24 through 39 inclusive will be changed prior to releasing +** the EXCLUSIVE lock, thus signaling other connections on the same +** database to flush their caches. +** +** (10) The pattern of bits in bytes 24 through 39 shall not repeat in less +** than one billion transactions. +** +** (11) A database file is well-formed at the beginning and at the conclusion +** of every transaction. +** +** (12) An EXCLUSIVE lock is held on the database file when writing to +** the database file. +** +** (13) A SHARED lock is held on the database file while reading any +** content out of the database file. +** +******************************************************************************/ + +/* +** Macros for troubleshooting. Normally turned off +*/ +#if 0 +int sqlite3PagerTrace=1; /* True to enable tracing */ +#define sqlite3DebugPrintf printf +#define PAGERTRACE(X) if( sqlite3PagerTrace ){ sqlite3DebugPrintf X; } +#else +#define PAGERTRACE(X) +#endif + +/* +** The following two macros are used within the PAGERTRACE() macros above +** to print out file-descriptors. +** +** PAGERID() takes a pointer to a Pager struct as its argument. The +** associated file-descriptor is returned. FILEHANDLEID() takes an sqlite3_file +** struct as its argument. +*/ +#define PAGERID(p) ((int)(p->fd)) +#define FILEHANDLEID(fd) ((int)fd) + +/* +** The Pager.eState variable stores the current 'state' of a pager. A +** pager may be in any one of the seven states shown in the following +** state diagram. +** +** OPEN <------+------+ +** | | | +** V | | +** +---------> READER-------+ | +** | | | +** | V | +** |<-------WRITER_LOCKED------> ERROR +** | | ^ +** | V | +** |<------WRITER_CACHEMOD-------->| +** | | | +** | V | +** |<-------WRITER_DBMOD---------->| +** | | | +** | V | +** +<------WRITER_FINISHED-------->+ +** +** +** List of state transitions and the C [function] that performs each: +** +** OPEN -> READER [sqlite3PagerSharedLock] +** READER -> OPEN [pager_unlock] +** +** READER -> WRITER_LOCKED [sqlite3PagerBegin] +** WRITER_LOCKED -> WRITER_CACHEMOD [pager_open_journal] +** WRITER_CACHEMOD -> WRITER_DBMOD [syncJournal] +** WRITER_DBMOD -> WRITER_FINISHED [sqlite3PagerCommitPhaseOne] +** WRITER_*** -> READER [pager_end_transaction] +** +** WRITER_*** -> ERROR [pager_error] +** ERROR -> OPEN [pager_unlock] +** +** +** OPEN: +** +** The pager starts up in this state. Nothing is guaranteed in this +** state - the file may or may not be locked and the database size is +** unknown. The database may not be read or written. +** +** * No read or write transaction is active. +** * Any lock, or no lock at all, may be held on the database file. +** * The dbSize, dbOrigSize and dbFileSize variables may not be trusted. +** +** READER: +** +** In this state all the requirements for reading the database in +** rollback (non-WAL) mode are met. Unless the pager is (or recently +** was) in exclusive-locking mode, a user-level read transaction is +** open. The database size is known in this state. +** +** A connection running with locking_mode=normal enters this state when +** it opens a read-transaction on the database and returns to state +** OPEN after the read-transaction is completed. However a connection +** running in locking_mode=exclusive (including temp databases) remains in +** this state even after the read-transaction is closed. The only way +** a locking_mode=exclusive connection can transition from READER to OPEN +** is via the ERROR state (see below). +** +** * A read transaction may be active (but a write-transaction cannot). +** * A SHARED or greater lock is held on the database file. +** * The dbSize variable may be trusted (even if a user-level read +** transaction is not active). The dbOrigSize and dbFileSize variables +** may not be trusted at this point. +** * If the database is a WAL database, then the WAL connection is open. +** * Even if a read-transaction is not open, it is guaranteed that +** there is no hot-journal in the file-system. +** +** WRITER_LOCKED: +** +** The pager moves to this state from READER when a write-transaction +** is first opened on the database. In WRITER_LOCKED state, all locks +** required to start a write-transaction are held, but no actual +** modifications to the cache or database have taken place. +** +** In rollback mode, a RESERVED or (if the transaction was opened with +** BEGIN EXCLUSIVE) EXCLUSIVE lock is obtained on the database file when +** moving to this state, but the journal file is not written to or opened +** to in this state. If the transaction is committed or rolled back while +** in WRITER_LOCKED state, all that is required is to unlock the database +** file. +** +** IN WAL mode, WalBeginWriteTransaction() is called to lock the log file. +** If the connection is running with locking_mode=exclusive, an attempt +** is made to obtain an EXCLUSIVE lock on the database file. +** +** * A write transaction is active. +** * If the connection is open in rollback-mode, a RESERVED or greater +** lock is held on the database file. +** * If the connection is open in WAL-mode, a WAL write transaction +** is open (i.e. sqlite3WalBeginWriteTransaction() has been successfully +** called). +** * The dbSize, dbOrigSize and dbFileSize variables are all valid. +** * The contents of the pager cache have not been modified. +** * The journal file may or may not be open. +** * Nothing (not even the first header) has been written to the journal. +** +** WRITER_CACHEMOD: +** +** A pager moves from WRITER_LOCKED state to this state when a page is +** first modified by the upper layer. In rollback mode the journal file +** is opened (if it is not already open) and a header written to the +** start of it. The database file on disk has not been modified. +** +** * A write transaction is active. +** * A RESERVED or greater lock is held on the database file. +** * The journal file is open and the first header has been written +** to it, but the header has not been synced to disk. +** * The contents of the page cache have been modified. +** +** WRITER_DBMOD: +** +** The pager transitions from WRITER_CACHEMOD into WRITER_DBMOD state +** when it modifies the contents of the database file. WAL connections +** never enter this state (since they do not modify the database file, +** just the log file). +** +** * A write transaction is active. +** * An EXCLUSIVE or greater lock is held on the database file. +** * The journal file is open and the first header has been written +** and synced to disk. +** * The contents of the page cache have been modified (and possibly +** written to disk). +** +** WRITER_FINISHED: +** +** It is not possible for a WAL connection to enter this state. +** +** A rollback-mode pager changes to WRITER_FINISHED state from WRITER_DBMOD +** state after the entire transaction has been successfully written into the +** database file. In this state the transaction may be committed simply +** by finalizing the journal file. Once in WRITER_FINISHED state, it is +** not possible to modify the database further. At this point, the upper +** layer must either commit or rollback the transaction. +** +** * A write transaction is active. +** * An EXCLUSIVE or greater lock is held on the database file. +** * All writing and syncing of journal and database data has finished. +** If no error occurred, all that remains is to finalize the journal to +** commit the transaction. If an error did occur, the caller will need +** to rollback the transaction. +** +** ERROR: +** +** The ERROR state is entered when an IO or disk-full error (including +** SQLITE_IOERR_NOMEM) occurs at a point in the code that makes it +** difficult to be sure that the in-memory pager state (cache contents, +** db size etc.) are consistent with the contents of the file-system. +** +** Temporary pager files may enter the ERROR state, but in-memory pagers +** cannot. +** +** For example, if an IO error occurs while performing a rollback, +** the contents of the page-cache may be left in an inconsistent state. +** At this point it would be dangerous to change back to READER state +** (as usually happens after a rollback). Any subsequent readers might +** report database corruption (due to the inconsistent cache), and if +** they upgrade to writers, they may inadvertently corrupt the database +** file. To avoid this hazard, the pager switches into the ERROR state +** instead of READER following such an error. +** +** Once it has entered the ERROR state, any attempt to use the pager +** to read or write data returns an error. Eventually, once all +** outstanding transactions have been abandoned, the pager is able to +** transition back to OPEN state, discarding the contents of the +** page-cache and any other in-memory state at the same time. Everything +** is reloaded from disk (and, if necessary, hot-journal rollback peformed) +** when a read-transaction is next opened on the pager (transitioning +** the pager into READER state). At that point the system has recovered +** from the error. +** +** Specifically, the pager jumps into the ERROR state if: +** +** 1. An error occurs while attempting a rollback. This happens in +** function sqlite3PagerRollback(). +** +** 2. An error occurs while attempting to finalize a journal file +** following a commit in function sqlite3PagerCommitPhaseTwo(). +** +** 3. An error occurs while attempting to write to the journal or +** database file in function pagerStress() in order to free up +** memory. +** +** In other cases, the error is returned to the b-tree layer. The b-tree +** layer then attempts a rollback operation. If the error condition +** persists, the pager enters the ERROR state via condition (1) above. +** +** Condition (3) is necessary because it can be triggered by a read-only +** statement executed within a transaction. In this case, if the error +** code were simply returned to the user, the b-tree layer would not +** automatically attempt a rollback, as it assumes that an error in a +** read-only statement cannot leave the pager in an internally inconsistent +** state. +** +** * The Pager.errCode variable is set to something other than SQLITE_OK. +** * There are one or more outstanding references to pages (after the +** last reference is dropped the pager should move back to OPEN state). +** * The pager is not an in-memory pager. +** +** +** Notes: +** +** * A pager is never in WRITER_DBMOD or WRITER_FINISHED state if the +** connection is open in WAL mode. A WAL connection is always in one +** of the first four states. +** +** * Normally, a connection open in exclusive mode is never in PAGER_OPEN +** state. There are two exceptions: immediately after exclusive-mode has +** been turned on (and before any read or write transactions are +** executed), and when the pager is leaving the "error state". +** +** * See also: assert_pager_state(). +*/ +#define PAGER_OPEN 0 +#define PAGER_READER 1 +#define PAGER_WRITER_LOCKED 2 +#define PAGER_WRITER_CACHEMOD 3 +#define PAGER_WRITER_DBMOD 4 +#define PAGER_WRITER_FINISHED 5 +#define PAGER_ERROR 6 + +/* +** The Pager.eLock variable is almost always set to one of the +** following locking-states, according to the lock currently held on +** the database file: NO_LOCK, SHARED_LOCK, RESERVED_LOCK or EXCLUSIVE_LOCK. +** This variable is kept up to date as locks are taken and released by +** the pagerLockDb() and pagerUnlockDb() wrappers. +** +** If the VFS xLock() or xUnlock() returns an error other than SQLITE_BUSY +** (i.e. one of the SQLITE_IOERR subtypes), it is not clear whether or not +** the operation was successful. In these circumstances pagerLockDb() and +** pagerUnlockDb() take a conservative approach - eLock is always updated +** when unlocking the file, and only updated when locking the file if the +** VFS call is successful. This way, the Pager.eLock variable may be set +** to a less exclusive (lower) value than the lock that is actually held +** at the system level, but it is never set to a more exclusive value. +** +** This is usually safe. If an xUnlock fails or appears to fail, there may +** be a few redundant xLock() calls or a lock may be held for longer than +** required, but nothing really goes wrong. +** +** The exception is when the database file is unlocked as the pager moves +** from ERROR to OPEN state. At this point there may be a hot-journal file +** in the file-system that needs to be rolled back (as part of a OPEN->SHARED +** transition, by the same pager or any other). If the call to xUnlock() +** fails at this point and the pager is left holding an EXCLUSIVE lock, this +** can confuse the call to xCheckReservedLock() call made later as part +** of hot-journal detection. +** +** xCheckReservedLock() is defined as returning true "if there is a RESERVED +** lock held by this process or any others". So xCheckReservedLock may +** return true because the caller itself is holding an EXCLUSIVE lock (but +** doesn't know it because of a previous error in xUnlock). If this happens +** a hot-journal may be mistaken for a journal being created by an active +** transaction in another process, causing SQLite to read from the database +** without rolling it back. +** +** To work around this, if a call to xUnlock() fails when unlocking the +** database in the ERROR state, Pager.eLock is set to UNKNOWN_LOCK. It +** is only changed back to a real locking state after a successful call +** to xLock(EXCLUSIVE). Also, the code to do the OPEN->SHARED state transition +** omits the check for a hot-journal if Pager.eLock is set to UNKNOWN_LOCK +** lock. Instead, it assumes a hot-journal exists and obtains an EXCLUSIVE +** lock on the database file before attempting to roll it back. See function +** PagerSharedLock() for more detail. +** +** Pager.eLock may only be set to UNKNOWN_LOCK when the pager is in +** PAGER_OPEN state. +*/ +#define UNKNOWN_LOCK (EXCLUSIVE_LOCK+1) + +/* +** A macro used for invoking the codec if there is one +*/ +#ifdef SQLITE_HAS_CODEC +# define CODEC1(P,D,N,X,E) \ + if( P->xCodec && P->xCodec(P->pCodec,D,N,X)==0 ){ E; } +# define CODEC2(P,D,N,X,E,O) \ + if( P->xCodec==0 ){ O=(char*)D; }else \ + if( (O=(char*)(P->xCodec(P->pCodec,D,N,X)))==0 ){ E; } +#else +# define CODEC1(P,D,N,X,E) /* NO-OP */ +# define CODEC2(P,D,N,X,E,O) O=(char*)D +#endif + +/* +** The maximum allowed sector size. 64KiB. If the xSectorsize() method +** returns a value larger than this, then MAX_SECTOR_SIZE is used instead. +** This could conceivably cause corruption following a power failure on +** such a system. This is currently an undocumented limit. +*/ +#define MAX_SECTOR_SIZE 0x10000 + +/* +** An instance of the following structure is allocated for each active +** savepoint and statement transaction in the system. All such structures +** are stored in the Pager.aSavepoint[] array, which is allocated and +** resized using sqlite3Realloc(). +** +** When a savepoint is created, the PagerSavepoint.iHdrOffset field is +** set to 0. If a journal-header is written into the main journal while +** the savepoint is active, then iHdrOffset is set to the byte offset +** immediately following the last journal record written into the main +** journal before the journal-header. This is required during savepoint +** rollback (see pagerPlaybackSavepoint()). +*/ +typedef struct PagerSavepoint PagerSavepoint; +struct PagerSavepoint { + i64 iOffset; /* Starting offset in main journal */ + i64 iHdrOffset; /* See above */ + Bitvec *pInSavepoint; /* Set of pages in this savepoint */ + Pgno nOrig; /* Original number of pages in file */ + Pgno iSubRec; /* Index of first record in sub-journal */ +#ifndef SQLITE_OMIT_WAL + u32 aWalData[WAL_SAVEPOINT_NDATA]; /* WAL savepoint context */ +#endif +}; + +/* +** Bits of the Pager.doNotSpill flag. See further description below. +*/ +#define SPILLFLAG_OFF 0x01 /* Never spill cache. Set via pragma */ +#define SPILLFLAG_ROLLBACK 0x02 /* Current rolling back, so do not spill */ +#define SPILLFLAG_NOSYNC 0x04 /* Spill is ok, but do not sync */ + +/* +** A open page cache is an instance of struct Pager. A description of +** some of the more important member variables follows: +** +** eState +** +** The current 'state' of the pager object. See the comment and state +** diagram above for a description of the pager state. +** +** eLock +** +** For a real on-disk database, the current lock held on the database file - +** NO_LOCK, SHARED_LOCK, RESERVED_LOCK or EXCLUSIVE_LOCK. +** +** For a temporary or in-memory database (neither of which require any +** locks), this variable is always set to EXCLUSIVE_LOCK. Since such +** databases always have Pager.exclusiveMode==1, this tricks the pager +** logic into thinking that it already has all the locks it will ever +** need (and no reason to release them). +** +** In some (obscure) circumstances, this variable may also be set to +** UNKNOWN_LOCK. See the comment above the #define of UNKNOWN_LOCK for +** details. +** +** changeCountDone +** +** This boolean variable is used to make sure that the change-counter +** (the 4-byte header field at byte offset 24 of the database file) is +** not updated more often than necessary. +** +** It is set to true when the change-counter field is updated, which +** can only happen if an exclusive lock is held on the database file. +** It is cleared (set to false) whenever an exclusive lock is +** relinquished on the database file. Each time a transaction is committed, +** The changeCountDone flag is inspected. If it is true, the work of +** updating the change-counter is omitted for the current transaction. +** +** This mechanism means that when running in exclusive mode, a connection +** need only update the change-counter once, for the first transaction +** committed. +** +** setMaster +** +** When PagerCommitPhaseOne() is called to commit a transaction, it may +** (or may not) specify a master-journal name to be written into the +** journal file before it is synced to disk. +** +** Whether or not a journal file contains a master-journal pointer affects +** the way in which the journal file is finalized after the transaction is +** committed or rolled back when running in "journal_mode=PERSIST" mode. +** If a journal file does not contain a master-journal pointer, it is +** finalized by overwriting the first journal header with zeroes. If +** it does contain a master-journal pointer the journal file is finalized +** by truncating it to zero bytes, just as if the connection were +** running in "journal_mode=truncate" mode. +** +** Journal files that contain master journal pointers cannot be finalized +** simply by overwriting the first journal-header with zeroes, as the +** master journal pointer could interfere with hot-journal rollback of any +** subsequently interrupted transaction that reuses the journal file. +** +** The flag is cleared as soon as the journal file is finalized (either +** by PagerCommitPhaseTwo or PagerRollback). If an IO error prevents the +** journal file from being successfully finalized, the setMaster flag +** is cleared anyway (and the pager will move to ERROR state). +** +** doNotSpill +** +** This variables control the behavior of cache-spills (calls made by +** the pcache module to the pagerStress() routine to write cached data +** to the file-system in order to free up memory). +** +** When bits SPILLFLAG_OFF or SPILLFLAG_ROLLBACK of doNotSpill are set, +** writing to the database from pagerStress() is disabled altogether. +** The SPILLFLAG_ROLLBACK case is done in a very obscure case that +** comes up during savepoint rollback that requires the pcache module +** to allocate a new page to prevent the journal file from being written +** while it is being traversed by code in pager_playback(). The SPILLFLAG_OFF +** case is a user preference. +** +** If the SPILLFLAG_NOSYNC bit is set, writing to the database from pagerStress() +** is permitted, but syncing the journal file is not. This flag is set +** by sqlite3PagerWrite() when the file-system sector-size is larger than +** the database page-size in order to prevent a journal sync from happening +** in between the journalling of two pages on the same sector. +** +** subjInMemory +** +** This is a boolean variable. If true, then any required sub-journal +** is opened as an in-memory journal file. If false, then in-memory +** sub-journals are only used for in-memory pager files. +** +** This variable is updated by the upper layer each time a new +** write-transaction is opened. +** +** dbSize, dbOrigSize, dbFileSize +** +** Variable dbSize is set to the number of pages in the database file. +** It is valid in PAGER_READER and higher states (all states except for +** OPEN and ERROR). +** +** dbSize is set based on the size of the database file, which may be +** larger than the size of the database (the value stored at offset +** 28 of the database header by the btree). If the size of the file +** is not an integer multiple of the page-size, the value stored in +** dbSize is rounded down (i.e. a 5KB file with 2K page-size has dbSize==2). +** Except, any file that is greater than 0 bytes in size is considered +** to have at least one page. (i.e. a 1KB file with 2K page-size leads +** to dbSize==1). +** +** During a write-transaction, if pages with page-numbers greater than +** dbSize are modified in the cache, dbSize is updated accordingly. +** Similarly, if the database is truncated using PagerTruncateImage(), +** dbSize is updated. +** +** Variables dbOrigSize and dbFileSize are valid in states +** PAGER_WRITER_LOCKED and higher. dbOrigSize is a copy of the dbSize +** variable at the start of the transaction. It is used during rollback, +** and to determine whether or not pages need to be journalled before +** being modified. +** +** Throughout a write-transaction, dbFileSize contains the size of +** the file on disk in pages. It is set to a copy of dbSize when the +** write-transaction is first opened, and updated when VFS calls are made +** to write or truncate the database file on disk. +** +** The only reason the dbFileSize variable is required is to suppress +** unnecessary calls to xTruncate() after committing a transaction. If, +** when a transaction is committed, the dbFileSize variable indicates +** that the database file is larger than the database image (Pager.dbSize), +** pager_truncate() is called. The pager_truncate() call uses xFilesize() +** to measure the database file on disk, and then truncates it if required. +** dbFileSize is not used when rolling back a transaction. In this case +** pager_truncate() is called unconditionally (which means there may be +** a call to xFilesize() that is not strictly required). In either case, +** pager_truncate() may cause the file to become smaller or larger. +** +** dbHintSize +** +** The dbHintSize variable is used to limit the number of calls made to +** the VFS xFileControl(FCNTL_SIZE_HINT) method. +** +** dbHintSize is set to a copy of the dbSize variable when a +** write-transaction is opened (at the same time as dbFileSize and +** dbOrigSize). If the xFileControl(FCNTL_SIZE_HINT) method is called, +** dbHintSize is increased to the number of pages that correspond to the +** size-hint passed to the method call. See pager_write_pagelist() for +** details. +** +** errCode +** +** The Pager.errCode variable is only ever used in PAGER_ERROR state. It +** is set to zero in all other states. In PAGER_ERROR state, Pager.errCode +** is always set to SQLITE_FULL, SQLITE_IOERR or one of the SQLITE_IOERR_XXX +** sub-codes. +*/ +struct Pager { + sqlite3_vfs *pVfs; /* OS functions to use for IO */ + u8 exclusiveMode; /* Boolean. True if locking_mode==EXCLUSIVE */ + u8 journalMode; /* One of the PAGER_JOURNALMODE_* values */ + u8 useJournal; /* Use a rollback journal on this file */ + u8 noSync; /* Do not sync the journal if true */ + u8 fullSync; /* Do extra syncs of the journal for robustness */ + u8 ckptSyncFlags; /* SYNC_NORMAL or SYNC_FULL for checkpoint */ + u8 walSyncFlags; /* SYNC_NORMAL or SYNC_FULL for wal writes */ + u8 syncFlags; /* SYNC_NORMAL or SYNC_FULL otherwise */ + u8 tempFile; /* zFilename is a temporary or immutable file */ + u8 noLock; /* Do not lock (except in WAL mode) */ + u8 readOnly; /* True for a read-only database */ + u8 memDb; /* True to inhibit all file I/O */ + + /************************************************************************** + ** The following block contains those class members that change during + ** routine opertion. Class members not in this block are either fixed + ** when the pager is first created or else only change when there is a + ** significant mode change (such as changing the page_size, locking_mode, + ** or the journal_mode). From another view, these class members describe + ** the "state" of the pager, while other class members describe the + ** "configuration" of the pager. + */ + u8 eState; /* Pager state (OPEN, READER, WRITER_LOCKED..) */ + u8 eLock; /* Current lock held on database file */ + u8 changeCountDone; /* Set after incrementing the change-counter */ + u8 setMaster; /* True if a m-j name has been written to jrnl */ + u8 doNotSpill; /* Do not spill the cache when non-zero */ + u8 subjInMemory; /* True to use in-memory sub-journals */ + Pgno dbSize; /* Number of pages in the database */ + Pgno dbOrigSize; /* dbSize before the current transaction */ + Pgno dbFileSize; /* Number of pages in the database file */ + Pgno dbHintSize; /* Value passed to FCNTL_SIZE_HINT call */ + int errCode; /* One of several kinds of errors */ + int nRec; /* Pages journalled since last j-header written */ + u32 cksumInit; /* Quasi-random value added to every checksum */ + u32 nSubRec; /* Number of records written to sub-journal */ + Bitvec *pInJournal; /* One bit for each page in the database file */ + sqlite3_file *fd; /* File descriptor for database */ + sqlite3_file *jfd; /* File descriptor for main journal */ + sqlite3_file *sjfd; /* File descriptor for sub-journal */ + i64 journalOff; /* Current write offset in the journal file */ + i64 journalHdr; /* Byte offset to previous journal header */ + sqlite3_backup *pBackup; /* Pointer to list of ongoing backup processes */ + PagerSavepoint *aSavepoint; /* Array of active savepoints */ + int nSavepoint; /* Number of elements in aSavepoint[] */ + char dbFileVers[16]; /* Changes whenever database file changes */ + + u8 bUseFetch; /* True to use xFetch() */ + int nMmapOut; /* Number of mmap pages currently outstanding */ + sqlite3_int64 szMmap; /* Desired maximum mmap size */ + PgHdr *pMmapFreelist; /* List of free mmap page headers (pDirty) */ + /* + ** End of the routinely-changing class members + ***************************************************************************/ + + u16 nExtra; /* Add this many bytes to each in-memory page */ + i16 nReserve; /* Number of unused bytes at end of each page */ + u32 vfsFlags; /* Flags for sqlite3_vfs.xOpen() */ + u32 sectorSize; /* Assumed sector size during rollback */ + int pageSize; /* Number of bytes in a page */ + Pgno mxPgno; /* Maximum allowed size of the database */ + i64 journalSizeLimit; /* Size limit for persistent journal files */ + char *zFilename; /* Name of the database file */ + char *zJournal; /* Name of the journal file */ + int (*xBusyHandler)(void*); /* Function to call when busy */ + void *pBusyHandlerArg; /* Context argument for xBusyHandler */ + int aStat[3]; /* Total cache hits, misses and writes */ +#ifdef SQLITE_TEST + int nRead; /* Database pages read */ +#endif + void (*xReiniter)(DbPage*); /* Call this routine when reloading pages */ +#ifdef SQLITE_HAS_CODEC + void *(*xCodec)(void*,void*,Pgno,int); /* Routine for en/decoding data */ + void (*xCodecSizeChng)(void*,int,int); /* Notify of page size changes */ + void (*xCodecFree)(void*); /* Destructor for the codec */ + void *pCodec; /* First argument to xCodec... methods */ +#endif + char *pTmpSpace; /* Pager.pageSize bytes of space for tmp use */ + PCache *pPCache; /* Pointer to page cache object */ +#ifndef SQLITE_OMIT_WAL + Wal *pWal; /* Write-ahead log used by "journal_mode=wal" */ + char *zWal; /* File name for write-ahead log */ +#endif +}; + +/* +** Indexes for use with Pager.aStat[]. The Pager.aStat[] array contains +** the values accessed by passing SQLITE_DBSTATUS_CACHE_HIT, CACHE_MISS +** or CACHE_WRITE to sqlite3_db_status(). +*/ +#define PAGER_STAT_HIT 0 +#define PAGER_STAT_MISS 1 +#define PAGER_STAT_WRITE 2 + +/* +** The following global variables hold counters used for +** testing purposes only. These variables do not exist in +** a non-testing build. These variables are not thread-safe. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_pager_readdb_count = 0; /* Number of full pages read from DB */ +SQLITE_API int sqlite3_pager_writedb_count = 0; /* Number of full pages written to DB */ +SQLITE_API int sqlite3_pager_writej_count = 0; /* Number of pages written to journal */ +# define PAGER_INCR(v) v++ +#else +# define PAGER_INCR(v) +#endif + + + +/* +** Journal files begin with the following magic string. The data +** was obtained from /dev/random. It is used only as a sanity check. +** +** Since version 2.8.0, the journal format contains additional sanity +** checking information. If the power fails while the journal is being +** written, semi-random garbage data might appear in the journal +** file after power is restored. If an attempt is then made +** to roll the journal back, the database could be corrupted. The additional +** sanity checking data is an attempt to discover the garbage in the +** journal and ignore it. +** +** The sanity checking information for the new journal format consists +** of a 32-bit checksum on each page of data. The checksum covers both +** the page number and the pPager->pageSize bytes of data for the page. +** This cksum is initialized to a 32-bit random value that appears in the +** journal file right after the header. The random initializer is important, +** because garbage data that appears at the end of a journal is likely +** data that was once in other files that have now been deleted. If the +** garbage data came from an obsolete journal file, the checksums might +** be correct. But by initializing the checksum to random value which +** is different for every journal, we minimize that risk. +*/ +static const unsigned char aJournalMagic[] = { + 0xd9, 0xd5, 0x05, 0xf9, 0x20, 0xa1, 0x63, 0xd7, +}; + +/* +** The size of the of each page record in the journal is given by +** the following macro. +*/ +#define JOURNAL_PG_SZ(pPager) ((pPager->pageSize) + 8) + +/* +** The journal header size for this pager. This is usually the same +** size as a single disk sector. See also setSectorSize(). +*/ +#define JOURNAL_HDR_SZ(pPager) (pPager->sectorSize) + +/* +** The macro MEMDB is true if we are dealing with an in-memory database. +** We do this as a macro so that if the SQLITE_OMIT_MEMORYDB macro is set, +** the value of MEMDB will be a constant and the compiler will optimize +** out code that would never execute. +*/ +#ifdef SQLITE_OMIT_MEMORYDB +# define MEMDB 0 +#else +# define MEMDB pPager->memDb +#endif + +/* +** The macro USEFETCH is true if we are allowed to use the xFetch and xUnfetch +** interfaces to access the database using memory-mapped I/O. +*/ +#if SQLITE_MAX_MMAP_SIZE>0 +# define USEFETCH(x) ((x)->bUseFetch) +#else +# define USEFETCH(x) 0 +#endif + +/* +** The maximum legal page number is (2^31 - 1). +*/ +#define PAGER_MAX_PGNO 2147483647 + +/* +** The argument to this macro is a file descriptor (type sqlite3_file*). +** Return 0 if it is not open, or non-zero (but not 1) if it is. +** +** This is so that expressions can be written as: +** +** if( isOpen(pPager->jfd) ){ ... +** +** instead of +** +** if( pPager->jfd->pMethods ){ ... +*/ +#define isOpen(pFd) ((pFd)->pMethods) + +/* +** Return true if this pager uses a write-ahead log instead of the usual +** rollback journal. Otherwise false. +*/ +#ifndef SQLITE_OMIT_WAL +static int pagerUseWal(Pager *pPager){ + return (pPager->pWal!=0); +} +#else +# define pagerUseWal(x) 0 +# define pagerRollbackWal(x) 0 +# define pagerWalFrames(v,w,x,y) 0 +# define pagerOpenWalIfPresent(z) SQLITE_OK +# define pagerBeginReadTransaction(z) SQLITE_OK +#endif + +#ifndef NDEBUG +/* +** Usage: +** +** assert( assert_pager_state(pPager) ); +** +** This function runs many asserts to try to find inconsistencies in +** the internal state of the Pager object. +*/ +static int assert_pager_state(Pager *p){ + Pager *pPager = p; + + /* State must be valid. */ + assert( p->eState==PAGER_OPEN + || p->eState==PAGER_READER + || p->eState==PAGER_WRITER_LOCKED + || p->eState==PAGER_WRITER_CACHEMOD + || p->eState==PAGER_WRITER_DBMOD + || p->eState==PAGER_WRITER_FINISHED + || p->eState==PAGER_ERROR + ); + + /* Regardless of the current state, a temp-file connection always behaves + ** as if it has an exclusive lock on the database file. It never updates + ** the change-counter field, so the changeCountDone flag is always set. + */ + assert( p->tempFile==0 || p->eLock==EXCLUSIVE_LOCK ); + assert( p->tempFile==0 || pPager->changeCountDone ); + + /* If the useJournal flag is clear, the journal-mode must be "OFF". + ** And if the journal-mode is "OFF", the journal file must not be open. + */ + assert( p->journalMode==PAGER_JOURNALMODE_OFF || p->useJournal ); + assert( p->journalMode!=PAGER_JOURNALMODE_OFF || !isOpen(p->jfd) ); + + /* Check that MEMDB implies noSync. And an in-memory journal. Since + ** this means an in-memory pager performs no IO at all, it cannot encounter + ** either SQLITE_IOERR or SQLITE_FULL during rollback or while finalizing + ** a journal file. (although the in-memory journal implementation may + ** return SQLITE_IOERR_NOMEM while the journal file is being written). It + ** is therefore not possible for an in-memory pager to enter the ERROR + ** state. + */ + if( MEMDB ){ + assert( p->noSync ); + assert( p->journalMode==PAGER_JOURNALMODE_OFF + || p->journalMode==PAGER_JOURNALMODE_MEMORY + ); + assert( p->eState!=PAGER_ERROR && p->eState!=PAGER_OPEN ); + assert( pagerUseWal(p)==0 ); + } + + /* If changeCountDone is set, a RESERVED lock or greater must be held + ** on the file. + */ + assert( pPager->changeCountDone==0 || pPager->eLock>=RESERVED_LOCK ); + assert( p->eLock!=PENDING_LOCK ); + + switch( p->eState ){ + case PAGER_OPEN: + assert( !MEMDB ); + assert( pPager->errCode==SQLITE_OK ); + assert( sqlite3PcacheRefCount(pPager->pPCache)==0 || pPager->tempFile ); + break; + + case PAGER_READER: + assert( pPager->errCode==SQLITE_OK ); + assert( p->eLock!=UNKNOWN_LOCK ); + assert( p->eLock>=SHARED_LOCK ); + break; + + case PAGER_WRITER_LOCKED: + assert( p->eLock!=UNKNOWN_LOCK ); + assert( pPager->errCode==SQLITE_OK ); + if( !pagerUseWal(pPager) ){ + assert( p->eLock>=RESERVED_LOCK ); + } + assert( pPager->dbSize==pPager->dbOrigSize ); + assert( pPager->dbOrigSize==pPager->dbFileSize ); + assert( pPager->dbOrigSize==pPager->dbHintSize ); + assert( pPager->setMaster==0 ); + break; + + case PAGER_WRITER_CACHEMOD: + assert( p->eLock!=UNKNOWN_LOCK ); + assert( pPager->errCode==SQLITE_OK ); + if( !pagerUseWal(pPager) ){ + /* It is possible that if journal_mode=wal here that neither the + ** journal file nor the WAL file are open. This happens during + ** a rollback transaction that switches from journal_mode=off + ** to journal_mode=wal. + */ + assert( p->eLock>=RESERVED_LOCK ); + assert( isOpen(p->jfd) + || p->journalMode==PAGER_JOURNALMODE_OFF + || p->journalMode==PAGER_JOURNALMODE_WAL + ); + } + assert( pPager->dbOrigSize==pPager->dbFileSize ); + assert( pPager->dbOrigSize==pPager->dbHintSize ); + break; + + case PAGER_WRITER_DBMOD: + assert( p->eLock==EXCLUSIVE_LOCK ); + assert( pPager->errCode==SQLITE_OK ); + assert( !pagerUseWal(pPager) ); + assert( p->eLock>=EXCLUSIVE_LOCK ); + assert( isOpen(p->jfd) + || p->journalMode==PAGER_JOURNALMODE_OFF + || p->journalMode==PAGER_JOURNALMODE_WAL + ); + assert( pPager->dbOrigSize<=pPager->dbHintSize ); + break; + + case PAGER_WRITER_FINISHED: + assert( p->eLock==EXCLUSIVE_LOCK ); + assert( pPager->errCode==SQLITE_OK ); + assert( !pagerUseWal(pPager) ); + assert( isOpen(p->jfd) + || p->journalMode==PAGER_JOURNALMODE_OFF + || p->journalMode==PAGER_JOURNALMODE_WAL + ); + break; + + case PAGER_ERROR: + /* There must be at least one outstanding reference to the pager if + ** in ERROR state. Otherwise the pager should have already dropped + ** back to OPEN state. + */ + assert( pPager->errCode!=SQLITE_OK ); + assert( sqlite3PcacheRefCount(pPager->pPCache)>0 ); + break; + } + + return 1; +} +#endif /* ifndef NDEBUG */ + +#ifdef SQLITE_DEBUG +/* +** Return a pointer to a human readable string in a static buffer +** containing the state of the Pager object passed as an argument. This +** is intended to be used within debuggers. For example, as an alternative +** to "print *pPager" in gdb: +** +** (gdb) printf "%s", print_pager_state(pPager) +*/ +static char *print_pager_state(Pager *p){ + static char zRet[1024]; + + sqlite3_snprintf(1024, zRet, + "Filename: %s\n" + "State: %s errCode=%d\n" + "Lock: %s\n" + "Locking mode: locking_mode=%s\n" + "Journal mode: journal_mode=%s\n" + "Backing store: tempFile=%d memDb=%d useJournal=%d\n" + "Journal: journalOff=%lld journalHdr=%lld\n" + "Size: dbsize=%d dbOrigSize=%d dbFileSize=%d\n" + , p->zFilename + , p->eState==PAGER_OPEN ? "OPEN" : + p->eState==PAGER_READER ? "READER" : + p->eState==PAGER_WRITER_LOCKED ? "WRITER_LOCKED" : + p->eState==PAGER_WRITER_CACHEMOD ? "WRITER_CACHEMOD" : + p->eState==PAGER_WRITER_DBMOD ? "WRITER_DBMOD" : + p->eState==PAGER_WRITER_FINISHED ? "WRITER_FINISHED" : + p->eState==PAGER_ERROR ? "ERROR" : "?error?" + , (int)p->errCode + , p->eLock==NO_LOCK ? "NO_LOCK" : + p->eLock==RESERVED_LOCK ? "RESERVED" : + p->eLock==EXCLUSIVE_LOCK ? "EXCLUSIVE" : + p->eLock==SHARED_LOCK ? "SHARED" : + p->eLock==UNKNOWN_LOCK ? "UNKNOWN" : "?error?" + , p->exclusiveMode ? "exclusive" : "normal" + , p->journalMode==PAGER_JOURNALMODE_MEMORY ? "memory" : + p->journalMode==PAGER_JOURNALMODE_OFF ? "off" : + p->journalMode==PAGER_JOURNALMODE_DELETE ? "delete" : + p->journalMode==PAGER_JOURNALMODE_PERSIST ? "persist" : + p->journalMode==PAGER_JOURNALMODE_TRUNCATE ? "truncate" : + p->journalMode==PAGER_JOURNALMODE_WAL ? "wal" : "?error?" + , (int)p->tempFile, (int)p->memDb, (int)p->useJournal + , p->journalOff, p->journalHdr + , (int)p->dbSize, (int)p->dbOrigSize, (int)p->dbFileSize + ); + + return zRet; +} +#endif + +/* +** Return true if it is necessary to write page *pPg into the sub-journal. +** A page needs to be written into the sub-journal if there exists one +** or more open savepoints for which: +** +** * The page-number is less than or equal to PagerSavepoint.nOrig, and +** * The bit corresponding to the page-number is not set in +** PagerSavepoint.pInSavepoint. +*/ +static int subjRequiresPage(PgHdr *pPg){ + Pager *pPager = pPg->pPager; + PagerSavepoint *p; + Pgno pgno = pPg->pgno; + int i; + for(i=0; inSavepoint; i++){ + p = &pPager->aSavepoint[i]; + if( p->nOrig>=pgno && 0==sqlite3BitvecTest(p->pInSavepoint, pgno) ){ + return 1; + } + } + return 0; +} + +/* +** Return true if the page is already in the journal file. +*/ +static int pageInJournal(Pager *pPager, PgHdr *pPg){ + return sqlite3BitvecTest(pPager->pInJournal, pPg->pgno); +} + +/* +** Read a 32-bit integer from the given file descriptor. Store the integer +** that is read in *pRes. Return SQLITE_OK if everything worked, or an +** error code is something goes wrong. +** +** All values are stored on disk as big-endian. +*/ +static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){ + unsigned char ac[4]; + int rc = sqlite3OsRead(fd, ac, sizeof(ac), offset); + if( rc==SQLITE_OK ){ + *pRes = sqlite3Get4byte(ac); + } + return rc; +} + +/* +** Write a 32-bit integer into a string buffer in big-endian byte order. +*/ +#define put32bits(A,B) sqlite3Put4byte((u8*)A,B) + + +/* +** Write a 32-bit integer into the given file descriptor. Return SQLITE_OK +** on success or an error code is something goes wrong. +*/ +static int write32bits(sqlite3_file *fd, i64 offset, u32 val){ + char ac[4]; + put32bits(ac, val); + return sqlite3OsWrite(fd, ac, 4, offset); +} + +/* +** Unlock the database file to level eLock, which must be either NO_LOCK +** or SHARED_LOCK. Regardless of whether or not the call to xUnlock() +** succeeds, set the Pager.eLock variable to match the (attempted) new lock. +** +** Except, if Pager.eLock is set to UNKNOWN_LOCK when this function is +** called, do not modify it. See the comment above the #define of +** UNKNOWN_LOCK for an explanation of this. +*/ +static int pagerUnlockDb(Pager *pPager, int eLock){ + int rc = SQLITE_OK; + + assert( !pPager->exclusiveMode || pPager->eLock==eLock ); + assert( eLock==NO_LOCK || eLock==SHARED_LOCK ); + assert( eLock!=NO_LOCK || pagerUseWal(pPager)==0 ); + if( isOpen(pPager->fd) ){ + assert( pPager->eLock>=eLock ); + rc = pPager->noLock ? SQLITE_OK : sqlite3OsUnlock(pPager->fd, eLock); + if( pPager->eLock!=UNKNOWN_LOCK ){ + pPager->eLock = (u8)eLock; + } + IOTRACE(("UNLOCK %p %d\n", pPager, eLock)) + } + return rc; +} + +/* +** Lock the database file to level eLock, which must be either SHARED_LOCK, +** RESERVED_LOCK or EXCLUSIVE_LOCK. If the caller is successful, set the +** Pager.eLock variable to the new locking state. +** +** Except, if Pager.eLock is set to UNKNOWN_LOCK when this function is +** called, do not modify it unless the new locking state is EXCLUSIVE_LOCK. +** See the comment above the #define of UNKNOWN_LOCK for an explanation +** of this. +*/ +static int pagerLockDb(Pager *pPager, int eLock){ + int rc = SQLITE_OK; + + assert( eLock==SHARED_LOCK || eLock==RESERVED_LOCK || eLock==EXCLUSIVE_LOCK ); + if( pPager->eLockeLock==UNKNOWN_LOCK ){ + rc = pPager->noLock ? SQLITE_OK : sqlite3OsLock(pPager->fd, eLock); + if( rc==SQLITE_OK && (pPager->eLock!=UNKNOWN_LOCK||eLock==EXCLUSIVE_LOCK) ){ + pPager->eLock = (u8)eLock; + IOTRACE(("LOCK %p %d\n", pPager, eLock)) + } + } + return rc; +} + +/* +** This function determines whether or not the atomic-write optimization +** can be used with this pager. The optimization can be used if: +** +** (a) the value returned by OsDeviceCharacteristics() indicates that +** a database page may be written atomically, and +** (b) the value returned by OsSectorSize() is less than or equal +** to the page size. +** +** The optimization is also always enabled for temporary files. It is +** an error to call this function if pPager is opened on an in-memory +** database. +** +** If the optimization cannot be used, 0 is returned. If it can be used, +** then the value returned is the size of the journal file when it +** contains rollback data for exactly one page. +*/ +#ifdef SQLITE_ENABLE_ATOMIC_WRITE +static int jrnlBufferSize(Pager *pPager){ + assert( !MEMDB ); + if( !pPager->tempFile ){ + int dc; /* Device characteristics */ + int nSector; /* Sector size */ + int szPage; /* Page size */ + + assert( isOpen(pPager->fd) ); + dc = sqlite3OsDeviceCharacteristics(pPager->fd); + nSector = pPager->sectorSize; + szPage = pPager->pageSize; + + assert(SQLITE_IOCAP_ATOMIC512==(512>>8)); + assert(SQLITE_IOCAP_ATOMIC64K==(65536>>8)); + if( 0==(dc&(SQLITE_IOCAP_ATOMIC|(szPage>>8)) || nSector>szPage) ){ + return 0; + } + } + + return JOURNAL_HDR_SZ(pPager) + JOURNAL_PG_SZ(pPager); +} +#endif + +/* +** If SQLITE_CHECK_PAGES is defined then we do some sanity checking +** on the cache using a hash function. This is used for testing +** and debugging only. +*/ +#ifdef SQLITE_CHECK_PAGES +/* +** Return a 32-bit hash of the page data for pPage. +*/ +static u32 pager_datahash(int nByte, unsigned char *pData){ + u32 hash = 0; + int i; + for(i=0; ipPager->pageSize, (unsigned char *)pPage->pData); +} +static void pager_set_pagehash(PgHdr *pPage){ + pPage->pageHash = pager_pagehash(pPage); +} + +/* +** The CHECK_PAGE macro takes a PgHdr* as an argument. If SQLITE_CHECK_PAGES +** is defined, and NDEBUG is not defined, an assert() statement checks +** that the page is either dirty or still matches the calculated page-hash. +*/ +#define CHECK_PAGE(x) checkPage(x) +static void checkPage(PgHdr *pPg){ + Pager *pPager = pPg->pPager; + assert( pPager->eState!=PAGER_ERROR ); + assert( (pPg->flags&PGHDR_DIRTY) || pPg->pageHash==pager_pagehash(pPg) ); +} + +#else +#define pager_datahash(X,Y) 0 +#define pager_pagehash(X) 0 +#define pager_set_pagehash(X) +#define CHECK_PAGE(x) +#endif /* SQLITE_CHECK_PAGES */ + +/* +** When this is called the journal file for pager pPager must be open. +** This function attempts to read a master journal file name from the +** end of the file and, if successful, copies it into memory supplied +** by the caller. See comments above writeMasterJournal() for the format +** used to store a master journal file name at the end of a journal file. +** +** zMaster must point to a buffer of at least nMaster bytes allocated by +** the caller. This should be sqlite3_vfs.mxPathname+1 (to ensure there is +** enough space to write the master journal name). If the master journal +** name in the journal is longer than nMaster bytes (including a +** nul-terminator), then this is handled as if no master journal name +** were present in the journal. +** +** If a master journal file name is present at the end of the journal +** file, then it is copied into the buffer pointed to by zMaster. A +** nul-terminator byte is appended to the buffer following the master +** journal file name. +** +** If it is determined that no master journal file name is present +** zMaster[0] is set to 0 and SQLITE_OK returned. +** +** If an error occurs while reading from the journal file, an SQLite +** error code is returned. +*/ +static int readMasterJournal(sqlite3_file *pJrnl, char *zMaster, u32 nMaster){ + int rc; /* Return code */ + u32 len; /* Length in bytes of master journal name */ + i64 szJ; /* Total size in bytes of journal file pJrnl */ + u32 cksum; /* MJ checksum value read from journal */ + u32 u; /* Unsigned loop counter */ + unsigned char aMagic[8]; /* A buffer to hold the magic header */ + zMaster[0] = '\0'; + + if( SQLITE_OK!=(rc = sqlite3OsFileSize(pJrnl, &szJ)) + || szJ<16 + || SQLITE_OK!=(rc = read32bits(pJrnl, szJ-16, &len)) + || len>=nMaster + || len==0 + || SQLITE_OK!=(rc = read32bits(pJrnl, szJ-12, &cksum)) + || SQLITE_OK!=(rc = sqlite3OsRead(pJrnl, aMagic, 8, szJ-8)) + || memcmp(aMagic, aJournalMagic, 8) + || SQLITE_OK!=(rc = sqlite3OsRead(pJrnl, zMaster, len, szJ-16-len)) + ){ + return rc; + } + + /* See if the checksum matches the master journal name */ + for(u=0; ujournalOff, assuming a sector +** size of pPager->sectorSize bytes. +** +** i.e for a sector size of 512: +** +** Pager.journalOff Return value +** --------------------------------------- +** 0 0 +** 512 512 +** 100 512 +** 2000 2048 +** +*/ +static i64 journalHdrOffset(Pager *pPager){ + i64 offset = 0; + i64 c = pPager->journalOff; + if( c ){ + offset = ((c-1)/JOURNAL_HDR_SZ(pPager) + 1) * JOURNAL_HDR_SZ(pPager); + } + assert( offset%JOURNAL_HDR_SZ(pPager)==0 ); + assert( offset>=c ); + assert( (offset-c)jfd) ); + if( pPager->journalOff ){ + const i64 iLimit = pPager->journalSizeLimit; /* Local cache of jsl */ + + IOTRACE(("JZEROHDR %p\n", pPager)) + if( doTruncate || iLimit==0 ){ + rc = sqlite3OsTruncate(pPager->jfd, 0); + }else{ + static const char zeroHdr[28] = {0}; + rc = sqlite3OsWrite(pPager->jfd, zeroHdr, sizeof(zeroHdr), 0); + } + if( rc==SQLITE_OK && !pPager->noSync ){ + rc = sqlite3OsSync(pPager->jfd, SQLITE_SYNC_DATAONLY|pPager->syncFlags); + } + + /* At this point the transaction is committed but the write lock + ** is still held on the file. If there is a size limit configured for + ** the persistent journal and the journal file currently consumes more + ** space than that limit allows for, truncate it now. There is no need + ** to sync the file following this operation. + */ + if( rc==SQLITE_OK && iLimit>0 ){ + i64 sz; + rc = sqlite3OsFileSize(pPager->jfd, &sz); + if( rc==SQLITE_OK && sz>iLimit ){ + rc = sqlite3OsTruncate(pPager->jfd, iLimit); + } + } + } + return rc; +} + +/* +** The journal file must be open when this routine is called. A journal +** header (JOURNAL_HDR_SZ bytes) is written into the journal file at the +** current location. +** +** The format for the journal header is as follows: +** - 8 bytes: Magic identifying journal format. +** - 4 bytes: Number of records in journal, or -1 no-sync mode is on. +** - 4 bytes: Random number used for page hash. +** - 4 bytes: Initial database page count. +** - 4 bytes: Sector size used by the process that wrote this journal. +** - 4 bytes: Database page size. +** +** Followed by (JOURNAL_HDR_SZ - 28) bytes of unused space. +*/ +static int writeJournalHdr(Pager *pPager){ + int rc = SQLITE_OK; /* Return code */ + char *zHeader = pPager->pTmpSpace; /* Temporary space used to build header */ + u32 nHeader = (u32)pPager->pageSize;/* Size of buffer pointed to by zHeader */ + u32 nWrite; /* Bytes of header sector written */ + int ii; /* Loop counter */ + + assert( isOpen(pPager->jfd) ); /* Journal file must be open. */ + + if( nHeader>JOURNAL_HDR_SZ(pPager) ){ + nHeader = JOURNAL_HDR_SZ(pPager); + } + + /* If there are active savepoints and any of them were created + ** since the most recent journal header was written, update the + ** PagerSavepoint.iHdrOffset fields now. + */ + for(ii=0; iinSavepoint; ii++){ + if( pPager->aSavepoint[ii].iHdrOffset==0 ){ + pPager->aSavepoint[ii].iHdrOffset = pPager->journalOff; + } + } + + pPager->journalHdr = pPager->journalOff = journalHdrOffset(pPager); + + /* + ** Write the nRec Field - the number of page records that follow this + ** journal header. Normally, zero is written to this value at this time. + ** After the records are added to the journal (and the journal synced, + ** if in full-sync mode), the zero is overwritten with the true number + ** of records (see syncJournal()). + ** + ** A faster alternative is to write 0xFFFFFFFF to the nRec field. When + ** reading the journal this value tells SQLite to assume that the + ** rest of the journal file contains valid page records. This assumption + ** is dangerous, as if a failure occurred whilst writing to the journal + ** file it may contain some garbage data. There are two scenarios + ** where this risk can be ignored: + ** + ** * When the pager is in no-sync mode. Corruption can follow a + ** power failure in this case anyway. + ** + ** * When the SQLITE_IOCAP_SAFE_APPEND flag is set. This guarantees + ** that garbage data is never appended to the journal file. + */ + assert( isOpen(pPager->fd) || pPager->noSync ); + if( pPager->noSync || (pPager->journalMode==PAGER_JOURNALMODE_MEMORY) + || (sqlite3OsDeviceCharacteristics(pPager->fd)&SQLITE_IOCAP_SAFE_APPEND) + ){ + memcpy(zHeader, aJournalMagic, sizeof(aJournalMagic)); + put32bits(&zHeader[sizeof(aJournalMagic)], 0xffffffff); + }else{ + memset(zHeader, 0, sizeof(aJournalMagic)+4); + } + + /* The random check-hash initializer */ + sqlite3_randomness(sizeof(pPager->cksumInit), &pPager->cksumInit); + put32bits(&zHeader[sizeof(aJournalMagic)+4], pPager->cksumInit); + /* The initial database size */ + put32bits(&zHeader[sizeof(aJournalMagic)+8], pPager->dbOrigSize); + /* The assumed sector size for this process */ + put32bits(&zHeader[sizeof(aJournalMagic)+12], pPager->sectorSize); + + /* The page size */ + put32bits(&zHeader[sizeof(aJournalMagic)+16], pPager->pageSize); + + /* Initializing the tail of the buffer is not necessary. Everything + ** works find if the following memset() is omitted. But initializing + ** the memory prevents valgrind from complaining, so we are willing to + ** take the performance hit. + */ + memset(&zHeader[sizeof(aJournalMagic)+20], 0, + nHeader-(sizeof(aJournalMagic)+20)); + + /* In theory, it is only necessary to write the 28 bytes that the + ** journal header consumes to the journal file here. Then increment the + ** Pager.journalOff variable by JOURNAL_HDR_SZ so that the next + ** record is written to the following sector (leaving a gap in the file + ** that will be implicitly filled in by the OS). + ** + ** However it has been discovered that on some systems this pattern can + ** be significantly slower than contiguously writing data to the file, + ** even if that means explicitly writing data to the block of + ** (JOURNAL_HDR_SZ - 28) bytes that will not be used. So that is what + ** is done. + ** + ** The loop is required here in case the sector-size is larger than the + ** database page size. Since the zHeader buffer is only Pager.pageSize + ** bytes in size, more than one call to sqlite3OsWrite() may be required + ** to populate the entire journal header sector. + */ + for(nWrite=0; rc==SQLITE_OK&&nWritejournalHdr, nHeader)) + rc = sqlite3OsWrite(pPager->jfd, zHeader, nHeader, pPager->journalOff); + assert( pPager->journalHdr <= pPager->journalOff ); + pPager->journalOff += nHeader; + } + + return rc; +} + +/* +** The journal file must be open when this is called. A journal header file +** (JOURNAL_HDR_SZ bytes) is read from the current location in the journal +** file. The current location in the journal file is given by +** pPager->journalOff. See comments above function writeJournalHdr() for +** a description of the journal header format. +** +** If the header is read successfully, *pNRec is set to the number of +** page records following this header and *pDbSize is set to the size of the +** database before the transaction began, in pages. Also, pPager->cksumInit +** is set to the value read from the journal header. SQLITE_OK is returned +** in this case. +** +** If the journal header file appears to be corrupted, SQLITE_DONE is +** returned and *pNRec and *PDbSize are undefined. If JOURNAL_HDR_SZ bytes +** cannot be read from the journal file an error code is returned. +*/ +static int readJournalHdr( + Pager *pPager, /* Pager object */ + int isHot, + i64 journalSize, /* Size of the open journal file in bytes */ + u32 *pNRec, /* OUT: Value read from the nRec field */ + u32 *pDbSize /* OUT: Value of original database size field */ +){ + int rc; /* Return code */ + unsigned char aMagic[8]; /* A buffer to hold the magic header */ + i64 iHdrOff; /* Offset of journal header being read */ + + assert( isOpen(pPager->jfd) ); /* Journal file must be open. */ + + /* Advance Pager.journalOff to the start of the next sector. If the + ** journal file is too small for there to be a header stored at this + ** point, return SQLITE_DONE. + */ + pPager->journalOff = journalHdrOffset(pPager); + if( pPager->journalOff+JOURNAL_HDR_SZ(pPager) > journalSize ){ + return SQLITE_DONE; + } + iHdrOff = pPager->journalOff; + + /* Read in the first 8 bytes of the journal header. If they do not match + ** the magic string found at the start of each journal header, return + ** SQLITE_DONE. If an IO error occurs, return an error code. Otherwise, + ** proceed. + */ + if( isHot || iHdrOff!=pPager->journalHdr ){ + rc = sqlite3OsRead(pPager->jfd, aMagic, sizeof(aMagic), iHdrOff); + if( rc ){ + return rc; + } + if( memcmp(aMagic, aJournalMagic, sizeof(aMagic))!=0 ){ + return SQLITE_DONE; + } + } + + /* Read the first three 32-bit fields of the journal header: The nRec + ** field, the checksum-initializer and the database size at the start + ** of the transaction. Return an error code if anything goes wrong. + */ + if( SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+8, pNRec)) + || SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+12, &pPager->cksumInit)) + || SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+16, pDbSize)) + ){ + return rc; + } + + if( pPager->journalOff==0 ){ + u32 iPageSize; /* Page-size field of journal header */ + u32 iSectorSize; /* Sector-size field of journal header */ + + /* Read the page-size and sector-size journal header fields. */ + if( SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+20, &iSectorSize)) + || SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+24, &iPageSize)) + ){ + return rc; + } + + /* Versions of SQLite prior to 3.5.8 set the page-size field of the + ** journal header to zero. In this case, assume that the Pager.pageSize + ** variable is already set to the correct page size. + */ + if( iPageSize==0 ){ + iPageSize = pPager->pageSize; + } + + /* Check that the values read from the page-size and sector-size fields + ** are within range. To be 'in range', both values need to be a power + ** of two greater than or equal to 512 or 32, and not greater than their + ** respective compile time maximum limits. + */ + if( iPageSize<512 || iSectorSize<32 + || iPageSize>SQLITE_MAX_PAGE_SIZE || iSectorSize>MAX_SECTOR_SIZE + || ((iPageSize-1)&iPageSize)!=0 || ((iSectorSize-1)&iSectorSize)!=0 + ){ + /* If the either the page-size or sector-size in the journal-header is + ** invalid, then the process that wrote the journal-header must have + ** crashed before the header was synced. In this case stop reading + ** the journal file here. + */ + return SQLITE_DONE; + } + + /* Update the page-size to match the value read from the journal. + ** Use a testcase() macro to make sure that malloc failure within + ** PagerSetPagesize() is tested. + */ + rc = sqlite3PagerSetPagesize(pPager, &iPageSize, -1); + testcase( rc!=SQLITE_OK ); + + /* Update the assumed sector-size to match the value used by + ** the process that created this journal. If this journal was + ** created by a process other than this one, then this routine + ** is being called from within pager_playback(). The local value + ** of Pager.sectorSize is restored at the end of that routine. + */ + pPager->sectorSize = iSectorSize; + } + + pPager->journalOff += JOURNAL_HDR_SZ(pPager); + return rc; +} + + +/* +** Write the supplied master journal name into the journal file for pager +** pPager at the current location. The master journal name must be the last +** thing written to a journal file. If the pager is in full-sync mode, the +** journal file descriptor is advanced to the next sector boundary before +** anything is written. The format is: +** +** + 4 bytes: PAGER_MJ_PGNO. +** + N bytes: Master journal filename in utf-8. +** + 4 bytes: N (length of master journal name in bytes, no nul-terminator). +** + 4 bytes: Master journal name checksum. +** + 8 bytes: aJournalMagic[]. +** +** The master journal page checksum is the sum of the bytes in the master +** journal name, where each byte is interpreted as a signed 8-bit integer. +** +** If zMaster is a NULL pointer (occurs for a single database transaction), +** this call is a no-op. +*/ +static int writeMasterJournal(Pager *pPager, const char *zMaster){ + int rc; /* Return code */ + int nMaster; /* Length of string zMaster */ + i64 iHdrOff; /* Offset of header in journal file */ + i64 jrnlSize; /* Size of journal file on disk */ + u32 cksum = 0; /* Checksum of string zMaster */ + + assert( pPager->setMaster==0 ); + assert( !pagerUseWal(pPager) ); + + if( !zMaster + || pPager->journalMode==PAGER_JOURNALMODE_MEMORY + || !isOpen(pPager->jfd) + ){ + return SQLITE_OK; + } + pPager->setMaster = 1; + assert( pPager->journalHdr <= pPager->journalOff ); + + /* Calculate the length in bytes and the checksum of zMaster */ + for(nMaster=0; zMaster[nMaster]; nMaster++){ + cksum += zMaster[nMaster]; + } + + /* If in full-sync mode, advance to the next disk sector before writing + ** the master journal name. This is in case the previous page written to + ** the journal has already been synced. + */ + if( pPager->fullSync ){ + pPager->journalOff = journalHdrOffset(pPager); + } + iHdrOff = pPager->journalOff; + + /* Write the master journal data to the end of the journal file. If + ** an error occurs, return the error code to the caller. + */ + if( (0 != (rc = write32bits(pPager->jfd, iHdrOff, PAGER_MJ_PGNO(pPager)))) + || (0 != (rc = sqlite3OsWrite(pPager->jfd, zMaster, nMaster, iHdrOff+4))) + || (0 != (rc = write32bits(pPager->jfd, iHdrOff+4+nMaster, nMaster))) + || (0 != (rc = write32bits(pPager->jfd, iHdrOff+4+nMaster+4, cksum))) + || (0 != (rc = sqlite3OsWrite(pPager->jfd, aJournalMagic, 8, iHdrOff+4+nMaster+8))) + ){ + return rc; + } + pPager->journalOff += (nMaster+20); + + /* If the pager is in peristent-journal mode, then the physical + ** journal-file may extend past the end of the master-journal name + ** and 8 bytes of magic data just written to the file. This is + ** dangerous because the code to rollback a hot-journal file + ** will not be able to find the master-journal name to determine + ** whether or not the journal is hot. + ** + ** Easiest thing to do in this scenario is to truncate the journal + ** file to the required size. + */ + if( SQLITE_OK==(rc = sqlite3OsFileSize(pPager->jfd, &jrnlSize)) + && jrnlSize>pPager->journalOff + ){ + rc = sqlite3OsTruncate(pPager->jfd, pPager->journalOff); + } + return rc; +} + +/* +** Find a page in the hash table given its page number. Return +** a pointer to the page or NULL if the requested page is not +** already in memory. +*/ +static PgHdr *pager_lookup(Pager *pPager, Pgno pgno){ + PgHdr *p = 0; /* Return value */ + + /* It is not possible for a call to PcacheFetch() with createFlag==0 to + ** fail, since no attempt to allocate dynamic memory will be made. + */ + (void)sqlite3PcacheFetch(pPager->pPCache, pgno, 0, &p); + return p; +} + +/* +** Discard the entire contents of the in-memory page-cache. +*/ +static void pager_reset(Pager *pPager){ + sqlite3BackupRestart(pPager->pBackup); + sqlite3PcacheClear(pPager->pPCache); +} + +/* +** Free all structures in the Pager.aSavepoint[] array and set both +** Pager.aSavepoint and Pager.nSavepoint to zero. Close the sub-journal +** if it is open and the pager is not in exclusive mode. +*/ +static void releaseAllSavepoints(Pager *pPager){ + int ii; /* Iterator for looping through Pager.aSavepoint */ + for(ii=0; iinSavepoint; ii++){ + sqlite3BitvecDestroy(pPager->aSavepoint[ii].pInSavepoint); + } + if( !pPager->exclusiveMode || sqlite3IsMemJournal(pPager->sjfd) ){ + sqlite3OsClose(pPager->sjfd); + } + sqlite3_free(pPager->aSavepoint); + pPager->aSavepoint = 0; + pPager->nSavepoint = 0; + pPager->nSubRec = 0; +} + +/* +** Set the bit number pgno in the PagerSavepoint.pInSavepoint +** bitvecs of all open savepoints. Return SQLITE_OK if successful +** or SQLITE_NOMEM if a malloc failure occurs. +*/ +static int addToSavepointBitvecs(Pager *pPager, Pgno pgno){ + int ii; /* Loop counter */ + int rc = SQLITE_OK; /* Result code */ + + for(ii=0; iinSavepoint; ii++){ + PagerSavepoint *p = &pPager->aSavepoint[ii]; + if( pgno<=p->nOrig ){ + rc |= sqlite3BitvecSet(p->pInSavepoint, pgno); + testcase( rc==SQLITE_NOMEM ); + assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); + } + } + return rc; +} + +/* +** This function is a no-op if the pager is in exclusive mode and not +** in the ERROR state. Otherwise, it switches the pager to PAGER_OPEN +** state. +** +** If the pager is not in exclusive-access mode, the database file is +** completely unlocked. If the file is unlocked and the file-system does +** not exhibit the UNDELETABLE_WHEN_OPEN property, the journal file is +** closed (if it is open). +** +** If the pager is in ERROR state when this function is called, the +** contents of the pager cache are discarded before switching back to +** the OPEN state. Regardless of whether the pager is in exclusive-mode +** or not, any journal file left in the file-system will be treated +** as a hot-journal and rolled back the next time a read-transaction +** is opened (by this or by any other connection). +*/ +static void pager_unlock(Pager *pPager){ + + assert( pPager->eState==PAGER_READER + || pPager->eState==PAGER_OPEN + || pPager->eState==PAGER_ERROR + ); + + sqlite3BitvecDestroy(pPager->pInJournal); + pPager->pInJournal = 0; + releaseAllSavepoints(pPager); + + if( pagerUseWal(pPager) ){ + assert( !isOpen(pPager->jfd) ); + sqlite3WalEndReadTransaction(pPager->pWal); + pPager->eState = PAGER_OPEN; + }else if( !pPager->exclusiveMode ){ + int rc; /* Error code returned by pagerUnlockDb() */ + int iDc = isOpen(pPager->fd)?sqlite3OsDeviceCharacteristics(pPager->fd):0; + + /* If the operating system support deletion of open files, then + ** close the journal file when dropping the database lock. Otherwise + ** another connection with journal_mode=delete might delete the file + ** out from under us. + */ + assert( (PAGER_JOURNALMODE_MEMORY & 5)!=1 ); + assert( (PAGER_JOURNALMODE_OFF & 5)!=1 ); + assert( (PAGER_JOURNALMODE_WAL & 5)!=1 ); + assert( (PAGER_JOURNALMODE_DELETE & 5)!=1 ); + assert( (PAGER_JOURNALMODE_TRUNCATE & 5)==1 ); + assert( (PAGER_JOURNALMODE_PERSIST & 5)==1 ); + if( 0==(iDc & SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN) + || 1!=(pPager->journalMode & 5) + ){ + sqlite3OsClose(pPager->jfd); + } + + /* If the pager is in the ERROR state and the call to unlock the database + ** file fails, set the current lock to UNKNOWN_LOCK. See the comment + ** above the #define for UNKNOWN_LOCK for an explanation of why this + ** is necessary. + */ + rc = pagerUnlockDb(pPager, NO_LOCK); + if( rc!=SQLITE_OK && pPager->eState==PAGER_ERROR ){ + pPager->eLock = UNKNOWN_LOCK; + } + + /* The pager state may be changed from PAGER_ERROR to PAGER_OPEN here + ** without clearing the error code. This is intentional - the error + ** code is cleared and the cache reset in the block below. + */ + assert( pPager->errCode || pPager->eState!=PAGER_ERROR ); + pPager->changeCountDone = 0; + pPager->eState = PAGER_OPEN; + } + + /* If Pager.errCode is set, the contents of the pager cache cannot be + ** trusted. Now that there are no outstanding references to the pager, + ** it can safely move back to PAGER_OPEN state. This happens in both + ** normal and exclusive-locking mode. + */ + if( pPager->errCode ){ + assert( !MEMDB ); + pager_reset(pPager); + pPager->changeCountDone = pPager->tempFile; + pPager->eState = PAGER_OPEN; + pPager->errCode = SQLITE_OK; + if( USEFETCH(pPager) ) sqlite3OsUnfetch(pPager->fd, 0, 0); + } + + pPager->journalOff = 0; + pPager->journalHdr = 0; + pPager->setMaster = 0; +} + +/* +** This function is called whenever an IOERR or FULL error that requires +** the pager to transition into the ERROR state may ahve occurred. +** The first argument is a pointer to the pager structure, the second +** the error-code about to be returned by a pager API function. The +** value returned is a copy of the second argument to this function. +** +** If the second argument is SQLITE_FULL, SQLITE_IOERR or one of the +** IOERR sub-codes, the pager enters the ERROR state and the error code +** is stored in Pager.errCode. While the pager remains in the ERROR state, +** all major API calls on the Pager will immediately return Pager.errCode. +** +** The ERROR state indicates that the contents of the pager-cache +** cannot be trusted. This state can be cleared by completely discarding +** the contents of the pager-cache. If a transaction was active when +** the persistent error occurred, then the rollback journal may need +** to be replayed to restore the contents of the database file (as if +** it were a hot-journal). +*/ +static int pager_error(Pager *pPager, int rc){ + int rc2 = rc & 0xff; + assert( rc==SQLITE_OK || !MEMDB ); + assert( + pPager->errCode==SQLITE_FULL || + pPager->errCode==SQLITE_OK || + (pPager->errCode & 0xff)==SQLITE_IOERR + ); + if( rc2==SQLITE_FULL || rc2==SQLITE_IOERR ){ + pPager->errCode = rc; + pPager->eState = PAGER_ERROR; + } + return rc; +} + +static int pager_truncate(Pager *pPager, Pgno nPage); + +/* +** This routine ends a transaction. A transaction is usually ended by +** either a COMMIT or a ROLLBACK operation. This routine may be called +** after rollback of a hot-journal, or if an error occurs while opening +** the journal file or writing the very first journal-header of a +** database transaction. +** +** This routine is never called in PAGER_ERROR state. If it is called +** in PAGER_NONE or PAGER_SHARED state and the lock held is less +** exclusive than a RESERVED lock, it is a no-op. +** +** Otherwise, any active savepoints are released. +** +** If the journal file is open, then it is "finalized". Once a journal +** file has been finalized it is not possible to use it to roll back a +** transaction. Nor will it be considered to be a hot-journal by this +** or any other database connection. Exactly how a journal is finalized +** depends on whether or not the pager is running in exclusive mode and +** the current journal-mode (Pager.journalMode value), as follows: +** +** journalMode==MEMORY +** Journal file descriptor is simply closed. This destroys an +** in-memory journal. +** +** journalMode==TRUNCATE +** Journal file is truncated to zero bytes in size. +** +** journalMode==PERSIST +** The first 28 bytes of the journal file are zeroed. This invalidates +** the first journal header in the file, and hence the entire journal +** file. An invalid journal file cannot be rolled back. +** +** journalMode==DELETE +** The journal file is closed and deleted using sqlite3OsDelete(). +** +** If the pager is running in exclusive mode, this method of finalizing +** the journal file is never used. Instead, if the journalMode is +** DELETE and the pager is in exclusive mode, the method described under +** journalMode==PERSIST is used instead. +** +** After the journal is finalized, the pager moves to PAGER_READER state. +** If running in non-exclusive rollback mode, the lock on the file is +** downgraded to a SHARED_LOCK. +** +** SQLITE_OK is returned if no error occurs. If an error occurs during +** any of the IO operations to finalize the journal file or unlock the +** database then the IO error code is returned to the user. If the +** operation to finalize the journal file fails, then the code still +** tries to unlock the database file if not in exclusive mode. If the +** unlock operation fails as well, then the first error code related +** to the first error encountered (the journal finalization one) is +** returned. +*/ +static int pager_end_transaction(Pager *pPager, int hasMaster, int bCommit){ + int rc = SQLITE_OK; /* Error code from journal finalization operation */ + int rc2 = SQLITE_OK; /* Error code from db file unlock operation */ + + /* Do nothing if the pager does not have an open write transaction + ** or at least a RESERVED lock. This function may be called when there + ** is no write-transaction active but a RESERVED or greater lock is + ** held under two circumstances: + ** + ** 1. After a successful hot-journal rollback, it is called with + ** eState==PAGER_NONE and eLock==EXCLUSIVE_LOCK. + ** + ** 2. If a connection with locking_mode=exclusive holding an EXCLUSIVE + ** lock switches back to locking_mode=normal and then executes a + ** read-transaction, this function is called with eState==PAGER_READER + ** and eLock==EXCLUSIVE_LOCK when the read-transaction is closed. + */ + assert( assert_pager_state(pPager) ); + assert( pPager->eState!=PAGER_ERROR ); + if( pPager->eStateeLockjfd) || pPager->pInJournal==0 ); + if( isOpen(pPager->jfd) ){ + assert( !pagerUseWal(pPager) ); + + /* Finalize the journal file. */ + if( sqlite3IsMemJournal(pPager->jfd) ){ + assert( pPager->journalMode==PAGER_JOURNALMODE_MEMORY ); + sqlite3OsClose(pPager->jfd); + }else if( pPager->journalMode==PAGER_JOURNALMODE_TRUNCATE ){ + if( pPager->journalOff==0 ){ + rc = SQLITE_OK; + }else{ + rc = sqlite3OsTruncate(pPager->jfd, 0); + } + pPager->journalOff = 0; + }else if( pPager->journalMode==PAGER_JOURNALMODE_PERSIST + || (pPager->exclusiveMode && pPager->journalMode!=PAGER_JOURNALMODE_WAL) + ){ + rc = zeroJournalHdr(pPager, hasMaster); + pPager->journalOff = 0; + }else{ + /* This branch may be executed with Pager.journalMode==MEMORY if + ** a hot-journal was just rolled back. In this case the journal + ** file should be closed and deleted. If this connection writes to + ** the database file, it will do so using an in-memory journal. + */ + int bDelete = (!pPager->tempFile && sqlite3JournalExists(pPager->jfd)); + assert( pPager->journalMode==PAGER_JOURNALMODE_DELETE + || pPager->journalMode==PAGER_JOURNALMODE_MEMORY + || pPager->journalMode==PAGER_JOURNALMODE_WAL + ); + sqlite3OsClose(pPager->jfd); + if( bDelete ){ + rc = sqlite3OsDelete(pPager->pVfs, pPager->zJournal, 0); + } + } + } + +#ifdef SQLITE_CHECK_PAGES + sqlite3PcacheIterateDirty(pPager->pPCache, pager_set_pagehash); + if( pPager->dbSize==0 && sqlite3PcacheRefCount(pPager->pPCache)>0 ){ + PgHdr *p = pager_lookup(pPager, 1); + if( p ){ + p->pageHash = 0; + sqlite3PagerUnrefNotNull(p); + } + } +#endif + + sqlite3BitvecDestroy(pPager->pInJournal); + pPager->pInJournal = 0; + pPager->nRec = 0; + sqlite3PcacheCleanAll(pPager->pPCache); + sqlite3PcacheTruncate(pPager->pPCache, pPager->dbSize); + + if( pagerUseWal(pPager) ){ + /* Drop the WAL write-lock, if any. Also, if the connection was in + ** locking_mode=exclusive mode but is no longer, drop the EXCLUSIVE + ** lock held on the database file. + */ + rc2 = sqlite3WalEndWriteTransaction(pPager->pWal); + assert( rc2==SQLITE_OK ); + }else if( rc==SQLITE_OK && bCommit && pPager->dbFileSize>pPager->dbSize ){ + /* This branch is taken when committing a transaction in rollback-journal + ** mode if the database file on disk is larger than the database image. + ** At this point the journal has been finalized and the transaction + ** successfully committed, but the EXCLUSIVE lock is still held on the + ** file. So it is safe to truncate the database file to its minimum + ** required size. */ + assert( pPager->eLock==EXCLUSIVE_LOCK ); + rc = pager_truncate(pPager, pPager->dbSize); + } + + if( rc==SQLITE_OK && bCommit && isOpen(pPager->fd) ){ + rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_COMMIT_PHASETWO, 0); + if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; + } + + if( !pPager->exclusiveMode + && (!pagerUseWal(pPager) || sqlite3WalExclusiveMode(pPager->pWal, 0)) + ){ + rc2 = pagerUnlockDb(pPager, SHARED_LOCK); + pPager->changeCountDone = 0; + } + pPager->eState = PAGER_READER; + pPager->setMaster = 0; + + return (rc==SQLITE_OK?rc2:rc); +} + +/* +** Execute a rollback if a transaction is active and unlock the +** database file. +** +** If the pager has already entered the ERROR state, do not attempt +** the rollback at this time. Instead, pager_unlock() is called. The +** call to pager_unlock() will discard all in-memory pages, unlock +** the database file and move the pager back to OPEN state. If this +** means that there is a hot-journal left in the file-system, the next +** connection to obtain a shared lock on the pager (which may be this one) +** will roll it back. +** +** If the pager has not already entered the ERROR state, but an IO or +** malloc error occurs during a rollback, then this will itself cause +** the pager to enter the ERROR state. Which will be cleared by the +** call to pager_unlock(), as described above. +*/ +static void pagerUnlockAndRollback(Pager *pPager){ + if( pPager->eState!=PAGER_ERROR && pPager->eState!=PAGER_OPEN ){ + assert( assert_pager_state(pPager) ); + if( pPager->eState>=PAGER_WRITER_LOCKED ){ + sqlite3BeginBenignMalloc(); + sqlite3PagerRollback(pPager); + sqlite3EndBenignMalloc(); + }else if( !pPager->exclusiveMode ){ + assert( pPager->eState==PAGER_READER ); + pager_end_transaction(pPager, 0, 0); + } + } + pager_unlock(pPager); +} + +/* +** Parameter aData must point to a buffer of pPager->pageSize bytes +** of data. Compute and return a checksum based ont the contents of the +** page of data and the current value of pPager->cksumInit. +** +** This is not a real checksum. It is really just the sum of the +** random initial value (pPager->cksumInit) and every 200th byte +** of the page data, starting with byte offset (pPager->pageSize%200). +** Each byte is interpreted as an 8-bit unsigned integer. +** +** Changing the formula used to compute this checksum results in an +** incompatible journal file format. +** +** If journal corruption occurs due to a power failure, the most likely +** scenario is that one end or the other of the record will be changed. +** It is much less likely that the two ends of the journal record will be +** correct and the middle be corrupt. Thus, this "checksum" scheme, +** though fast and simple, catches the mostly likely kind of corruption. +*/ +static u32 pager_cksum(Pager *pPager, const u8 *aData){ + u32 cksum = pPager->cksumInit; /* Checksum value to return */ + int i = pPager->pageSize-200; /* Loop counter */ + while( i>0 ){ + cksum += aData[i]; + i -= 200; + } + return cksum; +} + +/* +** Report the current page size and number of reserved bytes back +** to the codec. +*/ +#ifdef SQLITE_HAS_CODEC +static void pagerReportSize(Pager *pPager){ + if( pPager->xCodecSizeChng ){ + pPager->xCodecSizeChng(pPager->pCodec, pPager->pageSize, + (int)pPager->nReserve); + } +} +#else +# define pagerReportSize(X) /* No-op if we do not support a codec */ +#endif + +/* +** Read a single page from either the journal file (if isMainJrnl==1) or +** from the sub-journal (if isMainJrnl==0) and playback that page. +** The page begins at offset *pOffset into the file. The *pOffset +** value is increased to the start of the next page in the journal. +** +** The main rollback journal uses checksums - the statement journal does +** not. +** +** If the page number of the page record read from the (sub-)journal file +** is greater than the current value of Pager.dbSize, then playback is +** skipped and SQLITE_OK is returned. +** +** If pDone is not NULL, then it is a record of pages that have already +** been played back. If the page at *pOffset has already been played back +** (if the corresponding pDone bit is set) then skip the playback. +** Make sure the pDone bit corresponding to the *pOffset page is set +** prior to returning. +** +** If the page record is successfully read from the (sub-)journal file +** and played back, then SQLITE_OK is returned. If an IO error occurs +** while reading the record from the (sub-)journal file or while writing +** to the database file, then the IO error code is returned. If data +** is successfully read from the (sub-)journal file but appears to be +** corrupted, SQLITE_DONE is returned. Data is considered corrupted in +** two circumstances: +** +** * If the record page-number is illegal (0 or PAGER_MJ_PGNO), or +** * If the record is being rolled back from the main journal file +** and the checksum field does not match the record content. +** +** Neither of these two scenarios are possible during a savepoint rollback. +** +** If this is a savepoint rollback, then memory may have to be dynamically +** allocated by this function. If this is the case and an allocation fails, +** SQLITE_NOMEM is returned. +*/ +static int pager_playback_one_page( + Pager *pPager, /* The pager being played back */ + i64 *pOffset, /* Offset of record to playback */ + Bitvec *pDone, /* Bitvec of pages already played back */ + int isMainJrnl, /* 1 -> main journal. 0 -> sub-journal. */ + int isSavepnt /* True for a savepoint rollback */ +){ + int rc; + PgHdr *pPg; /* An existing page in the cache */ + Pgno pgno; /* The page number of a page in journal */ + u32 cksum; /* Checksum used for sanity checking */ + char *aData; /* Temporary storage for the page */ + sqlite3_file *jfd; /* The file descriptor for the journal file */ + int isSynced; /* True if journal page is synced */ + + assert( (isMainJrnl&~1)==0 ); /* isMainJrnl is 0 or 1 */ + assert( (isSavepnt&~1)==0 ); /* isSavepnt is 0 or 1 */ + assert( isMainJrnl || pDone ); /* pDone always used on sub-journals */ + assert( isSavepnt || pDone==0 ); /* pDone never used on non-savepoint */ + + aData = pPager->pTmpSpace; + assert( aData ); /* Temp storage must have already been allocated */ + assert( pagerUseWal(pPager)==0 || (!isMainJrnl && isSavepnt) ); + + /* Either the state is greater than PAGER_WRITER_CACHEMOD (a transaction + ** or savepoint rollback done at the request of the caller) or this is + ** a hot-journal rollback. If it is a hot-journal rollback, the pager + ** is in state OPEN and holds an EXCLUSIVE lock. Hot-journal rollback + ** only reads from the main journal, not the sub-journal. + */ + assert( pPager->eState>=PAGER_WRITER_CACHEMOD + || (pPager->eState==PAGER_OPEN && pPager->eLock==EXCLUSIVE_LOCK) + ); + assert( pPager->eState>=PAGER_WRITER_CACHEMOD || isMainJrnl ); + + /* Read the page number and page data from the journal or sub-journal + ** file. Return an error code to the caller if an IO error occurs. + */ + jfd = isMainJrnl ? pPager->jfd : pPager->sjfd; + rc = read32bits(jfd, *pOffset, &pgno); + if( rc!=SQLITE_OK ) return rc; + rc = sqlite3OsRead(jfd, (u8*)aData, pPager->pageSize, (*pOffset)+4); + if( rc!=SQLITE_OK ) return rc; + *pOffset += pPager->pageSize + 4 + isMainJrnl*4; + + /* Sanity checking on the page. This is more important that I originally + ** thought. If a power failure occurs while the journal is being written, + ** it could cause invalid data to be written into the journal. We need to + ** detect this invalid data (with high probability) and ignore it. + */ + if( pgno==0 || pgno==PAGER_MJ_PGNO(pPager) ){ + assert( !isSavepnt ); + return SQLITE_DONE; + } + if( pgno>(Pgno)pPager->dbSize || sqlite3BitvecTest(pDone, pgno) ){ + return SQLITE_OK; + } + if( isMainJrnl ){ + rc = read32bits(jfd, (*pOffset)-4, &cksum); + if( rc ) return rc; + if( !isSavepnt && pager_cksum(pPager, (u8*)aData)!=cksum ){ + return SQLITE_DONE; + } + } + + /* If this page has already been played by before during the current + ** rollback, then don't bother to play it back again. + */ + if( pDone && (rc = sqlite3BitvecSet(pDone, pgno))!=SQLITE_OK ){ + return rc; + } + + /* When playing back page 1, restore the nReserve setting + */ + if( pgno==1 && pPager->nReserve!=((u8*)aData)[20] ){ + pPager->nReserve = ((u8*)aData)[20]; + pagerReportSize(pPager); + } + + /* If the pager is in CACHEMOD state, then there must be a copy of this + ** page in the pager cache. In this case just update the pager cache, + ** not the database file. The page is left marked dirty in this case. + ** + ** An exception to the above rule: If the database is in no-sync mode + ** and a page is moved during an incremental vacuum then the page may + ** not be in the pager cache. Later: if a malloc() or IO error occurs + ** during a Movepage() call, then the page may not be in the cache + ** either. So the condition described in the above paragraph is not + ** assert()able. + ** + ** If in WRITER_DBMOD, WRITER_FINISHED or OPEN state, then we update the + ** pager cache if it exists and the main file. The page is then marked + ** not dirty. Since this code is only executed in PAGER_OPEN state for + ** a hot-journal rollback, it is guaranteed that the page-cache is empty + ** if the pager is in OPEN state. + ** + ** Ticket #1171: The statement journal might contain page content that is + ** different from the page content at the start of the transaction. + ** This occurs when a page is changed prior to the start of a statement + ** then changed again within the statement. When rolling back such a + ** statement we must not write to the original database unless we know + ** for certain that original page contents are synced into the main rollback + ** journal. Otherwise, a power loss might leave modified data in the + ** database file without an entry in the rollback journal that can + ** restore the database to its original form. Two conditions must be + ** met before writing to the database files. (1) the database must be + ** locked. (2) we know that the original page content is fully synced + ** in the main journal either because the page is not in cache or else + ** the page is marked as needSync==0. + ** + ** 2008-04-14: When attempting to vacuum a corrupt database file, it + ** is possible to fail a statement on a database that does not yet exist. + ** Do not attempt to write if database file has never been opened. + */ + if( pagerUseWal(pPager) ){ + pPg = 0; + }else{ + pPg = pager_lookup(pPager, pgno); + } + assert( pPg || !MEMDB ); + assert( pPager->eState!=PAGER_OPEN || pPg==0 ); + PAGERTRACE(("PLAYBACK %d page %d hash(%08x) %s\n", + PAGERID(pPager), pgno, pager_datahash(pPager->pageSize, (u8*)aData), + (isMainJrnl?"main-journal":"sub-journal") + )); + if( isMainJrnl ){ + isSynced = pPager->noSync || (*pOffset <= pPager->journalHdr); + }else{ + isSynced = (pPg==0 || 0==(pPg->flags & PGHDR_NEED_SYNC)); + } + if( isOpen(pPager->fd) + && (pPager->eState>=PAGER_WRITER_DBMOD || pPager->eState==PAGER_OPEN) + && isSynced + ){ + i64 ofst = (pgno-1)*(i64)pPager->pageSize; + testcase( !isSavepnt && pPg!=0 && (pPg->flags&PGHDR_NEED_SYNC)!=0 ); + assert( !pagerUseWal(pPager) ); + rc = sqlite3OsWrite(pPager->fd, (u8 *)aData, pPager->pageSize, ofst); + if( pgno>pPager->dbFileSize ){ + pPager->dbFileSize = pgno; + } + if( pPager->pBackup ){ + CODEC1(pPager, aData, pgno, 3, rc=SQLITE_NOMEM); + sqlite3BackupUpdate(pPager->pBackup, pgno, (u8*)aData); + CODEC2(pPager, aData, pgno, 7, rc=SQLITE_NOMEM, aData); + } + }else if( !isMainJrnl && pPg==0 ){ + /* If this is a rollback of a savepoint and data was not written to + ** the database and the page is not in-memory, there is a potential + ** problem. When the page is next fetched by the b-tree layer, it + ** will be read from the database file, which may or may not be + ** current. + ** + ** There are a couple of different ways this can happen. All are quite + ** obscure. When running in synchronous mode, this can only happen + ** if the page is on the free-list at the start of the transaction, then + ** populated, then moved using sqlite3PagerMovepage(). + ** + ** The solution is to add an in-memory page to the cache containing + ** the data just read from the sub-journal. Mark the page as dirty + ** and if the pager requires a journal-sync, then mark the page as + ** requiring a journal-sync before it is written. + */ + assert( isSavepnt ); + assert( (pPager->doNotSpill & SPILLFLAG_ROLLBACK)==0 ); + pPager->doNotSpill |= SPILLFLAG_ROLLBACK; + rc = sqlite3PagerAcquire(pPager, pgno, &pPg, 1); + assert( (pPager->doNotSpill & SPILLFLAG_ROLLBACK)!=0 ); + pPager->doNotSpill &= ~SPILLFLAG_ROLLBACK; + if( rc!=SQLITE_OK ) return rc; + pPg->flags &= ~PGHDR_NEED_READ; + sqlite3PcacheMakeDirty(pPg); + } + if( pPg ){ + /* No page should ever be explicitly rolled back that is in use, except + ** for page 1 which is held in use in order to keep the lock on the + ** database active. However such a page may be rolled back as a result + ** of an internal error resulting in an automatic call to + ** sqlite3PagerRollback(). + */ + void *pData; + pData = pPg->pData; + memcpy(pData, (u8*)aData, pPager->pageSize); + pPager->xReiniter(pPg); + if( isMainJrnl && (!isSavepnt || *pOffset<=pPager->journalHdr) ){ + /* If the contents of this page were just restored from the main + ** journal file, then its content must be as they were when the + ** transaction was first opened. In this case we can mark the page + ** as clean, since there will be no need to write it out to the + ** database. + ** + ** There is one exception to this rule. If the page is being rolled + ** back as part of a savepoint (or statement) rollback from an + ** unsynced portion of the main journal file, then it is not safe + ** to mark the page as clean. This is because marking the page as + ** clean will clear the PGHDR_NEED_SYNC flag. Since the page is + ** already in the journal file (recorded in Pager.pInJournal) and + ** the PGHDR_NEED_SYNC flag is cleared, if the page is written to + ** again within this transaction, it will be marked as dirty but + ** the PGHDR_NEED_SYNC flag will not be set. It could then potentially + ** be written out into the database file before its journal file + ** segment is synced. If a crash occurs during or following this, + ** database corruption may ensue. + */ + assert( !pagerUseWal(pPager) ); + sqlite3PcacheMakeClean(pPg); + } + pager_set_pagehash(pPg); + + /* If this was page 1, then restore the value of Pager.dbFileVers. + ** Do this before any decoding. */ + if( pgno==1 ){ + memcpy(&pPager->dbFileVers, &((u8*)pData)[24],sizeof(pPager->dbFileVers)); + } + + /* Decode the page just read from disk */ + CODEC1(pPager, pData, pPg->pgno, 3, rc=SQLITE_NOMEM); + sqlite3PcacheRelease(pPg); + } + return rc; +} + +/* +** Parameter zMaster is the name of a master journal file. A single journal +** file that referred to the master journal file has just been rolled back. +** This routine checks if it is possible to delete the master journal file, +** and does so if it is. +** +** Argument zMaster may point to Pager.pTmpSpace. So that buffer is not +** available for use within this function. +** +** When a master journal file is created, it is populated with the names +** of all of its child journals, one after another, formatted as utf-8 +** encoded text. The end of each child journal file is marked with a +** nul-terminator byte (0x00). i.e. the entire contents of a master journal +** file for a transaction involving two databases might be: +** +** "/home/bill/a.db-journal\x00/home/bill/b.db-journal\x00" +** +** A master journal file may only be deleted once all of its child +** journals have been rolled back. +** +** This function reads the contents of the master-journal file into +** memory and loops through each of the child journal names. For +** each child journal, it checks if: +** +** * if the child journal exists, and if so +** * if the child journal contains a reference to master journal +** file zMaster +** +** If a child journal can be found that matches both of the criteria +** above, this function returns without doing anything. Otherwise, if +** no such child journal can be found, file zMaster is deleted from +** the file-system using sqlite3OsDelete(). +** +** If an IO error within this function, an error code is returned. This +** function allocates memory by calling sqlite3Malloc(). If an allocation +** fails, SQLITE_NOMEM is returned. Otherwise, if no IO or malloc errors +** occur, SQLITE_OK is returned. +** +** TODO: This function allocates a single block of memory to load +** the entire contents of the master journal file. This could be +** a couple of kilobytes or so - potentially larger than the page +** size. +*/ +static int pager_delmaster(Pager *pPager, const char *zMaster){ + sqlite3_vfs *pVfs = pPager->pVfs; + int rc; /* Return code */ + sqlite3_file *pMaster; /* Malloc'd master-journal file descriptor */ + sqlite3_file *pJournal; /* Malloc'd child-journal file descriptor */ + char *zMasterJournal = 0; /* Contents of master journal file */ + i64 nMasterJournal; /* Size of master journal file */ + char *zJournal; /* Pointer to one journal within MJ file */ + char *zMasterPtr; /* Space to hold MJ filename from a journal file */ + int nMasterPtr; /* Amount of space allocated to zMasterPtr[] */ + + /* Allocate space for both the pJournal and pMaster file descriptors. + ** If successful, open the master journal file for reading. + */ + pMaster = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile * 2); + pJournal = (sqlite3_file *)(((u8 *)pMaster) + pVfs->szOsFile); + if( !pMaster ){ + rc = SQLITE_NOMEM; + }else{ + const int flags = (SQLITE_OPEN_READONLY|SQLITE_OPEN_MASTER_JOURNAL); + rc = sqlite3OsOpen(pVfs, zMaster, pMaster, flags, 0); + } + if( rc!=SQLITE_OK ) goto delmaster_out; + + /* Load the entire master journal file into space obtained from + ** sqlite3_malloc() and pointed to by zMasterJournal. Also obtain + ** sufficient space (in zMasterPtr) to hold the names of master + ** journal files extracted from regular rollback-journals. + */ + rc = sqlite3OsFileSize(pMaster, &nMasterJournal); + if( rc!=SQLITE_OK ) goto delmaster_out; + nMasterPtr = pVfs->mxPathname+1; + zMasterJournal = sqlite3Malloc((int)nMasterJournal + nMasterPtr + 1); + if( !zMasterJournal ){ + rc = SQLITE_NOMEM; + goto delmaster_out; + } + zMasterPtr = &zMasterJournal[nMasterJournal+1]; + rc = sqlite3OsRead(pMaster, zMasterJournal, (int)nMasterJournal, 0); + if( rc!=SQLITE_OK ) goto delmaster_out; + zMasterJournal[nMasterJournal] = 0; + + zJournal = zMasterJournal; + while( (zJournal-zMasterJournal)pageSize bytes). +** If the file on disk is currently larger than nPage pages, then use the VFS +** xTruncate() method to truncate it. +** +** Or, it might might be the case that the file on disk is smaller than +** nPage pages. Some operating system implementations can get confused if +** you try to truncate a file to some size that is larger than it +** currently is, so detect this case and write a single zero byte to +** the end of the new file instead. +** +** If successful, return SQLITE_OK. If an IO error occurs while modifying +** the database file, return the error code to the caller. +*/ +static int pager_truncate(Pager *pPager, Pgno nPage){ + int rc = SQLITE_OK; + assert( pPager->eState!=PAGER_ERROR ); + assert( pPager->eState!=PAGER_READER ); + + if( isOpen(pPager->fd) + && (pPager->eState>=PAGER_WRITER_DBMOD || pPager->eState==PAGER_OPEN) + ){ + i64 currentSize, newSize; + int szPage = pPager->pageSize; + assert( pPager->eLock==EXCLUSIVE_LOCK ); + /* TODO: Is it safe to use Pager.dbFileSize here? */ + rc = sqlite3OsFileSize(pPager->fd, ¤tSize); + newSize = szPage*(i64)nPage; + if( rc==SQLITE_OK && currentSize!=newSize ){ + if( currentSize>newSize ){ + rc = sqlite3OsTruncate(pPager->fd, newSize); + }else if( (currentSize+szPage)<=newSize ){ + char *pTmp = pPager->pTmpSpace; + memset(pTmp, 0, szPage); + testcase( (newSize-szPage) == currentSize ); + testcase( (newSize-szPage) > currentSize ); + rc = sqlite3OsWrite(pPager->fd, pTmp, szPage, newSize-szPage); + } + if( rc==SQLITE_OK ){ + pPager->dbFileSize = nPage; + } + } + } + return rc; +} + +/* +** Return a sanitized version of the sector-size of OS file pFile. The +** return value is guaranteed to lie between 32 and MAX_SECTOR_SIZE. +*/ +SQLITE_PRIVATE int sqlite3SectorSize(sqlite3_file *pFile){ + int iRet = sqlite3OsSectorSize(pFile); + if( iRet<32 ){ + iRet = 512; + }else if( iRet>MAX_SECTOR_SIZE ){ + assert( MAX_SECTOR_SIZE>=512 ); + iRet = MAX_SECTOR_SIZE; + } + return iRet; +} + +/* +** Set the value of the Pager.sectorSize variable for the given +** pager based on the value returned by the xSectorSize method +** of the open database file. The sector size will be used used +** to determine the size and alignment of journal header and +** master journal pointers within created journal files. +** +** For temporary files the effective sector size is always 512 bytes. +** +** Otherwise, for non-temporary files, the effective sector size is +** the value returned by the xSectorSize() method rounded up to 32 if +** it is less than 32, or rounded down to MAX_SECTOR_SIZE if it +** is greater than MAX_SECTOR_SIZE. +** +** If the file has the SQLITE_IOCAP_POWERSAFE_OVERWRITE property, then set +** the effective sector size to its minimum value (512). The purpose of +** pPager->sectorSize is to define the "blast radius" of bytes that +** might change if a crash occurs while writing to a single byte in +** that range. But with POWERSAFE_OVERWRITE, the blast radius is zero +** (that is what POWERSAFE_OVERWRITE means), so we minimize the sector +** size. For backwards compatibility of the rollback journal file format, +** we cannot reduce the effective sector size below 512. +*/ +static void setSectorSize(Pager *pPager){ + assert( isOpen(pPager->fd) || pPager->tempFile ); + + if( pPager->tempFile + || (sqlite3OsDeviceCharacteristics(pPager->fd) & + SQLITE_IOCAP_POWERSAFE_OVERWRITE)!=0 + ){ + /* Sector size doesn't matter for temporary files. Also, the file + ** may not have been opened yet, in which case the OsSectorSize() + ** call will segfault. */ + pPager->sectorSize = 512; + }else{ + pPager->sectorSize = sqlite3SectorSize(pPager->fd); + } +} + +/* +** Playback the journal and thus restore the database file to +** the state it was in before we started making changes. +** +** The journal file format is as follows: +** +** (1) 8 byte prefix. A copy of aJournalMagic[]. +** (2) 4 byte big-endian integer which is the number of valid page records +** in the journal. If this value is 0xffffffff, then compute the +** number of page records from the journal size. +** (3) 4 byte big-endian integer which is the initial value for the +** sanity checksum. +** (4) 4 byte integer which is the number of pages to truncate the +** database to during a rollback. +** (5) 4 byte big-endian integer which is the sector size. The header +** is this many bytes in size. +** (6) 4 byte big-endian integer which is the page size. +** (7) zero padding out to the next sector size. +** (8) Zero or more pages instances, each as follows: +** + 4 byte page number. +** + pPager->pageSize bytes of data. +** + 4 byte checksum +** +** When we speak of the journal header, we mean the first 7 items above. +** Each entry in the journal is an instance of the 8th item. +** +** Call the value from the second bullet "nRec". nRec is the number of +** valid page entries in the journal. In most cases, you can compute the +** value of nRec from the size of the journal file. But if a power +** failure occurred while the journal was being written, it could be the +** case that the size of the journal file had already been increased but +** the extra entries had not yet made it safely to disk. In such a case, +** the value of nRec computed from the file size would be too large. For +** that reason, we always use the nRec value in the header. +** +** If the nRec value is 0xffffffff it means that nRec should be computed +** from the file size. This value is used when the user selects the +** no-sync option for the journal. A power failure could lead to corruption +** in this case. But for things like temporary table (which will be +** deleted when the power is restored) we don't care. +** +** If the file opened as the journal file is not a well-formed +** journal file then all pages up to the first corrupted page are rolled +** back (or no pages if the journal header is corrupted). The journal file +** is then deleted and SQLITE_OK returned, just as if no corruption had +** been encountered. +** +** If an I/O or malloc() error occurs, the journal-file is not deleted +** and an error code is returned. +** +** The isHot parameter indicates that we are trying to rollback a journal +** that might be a hot journal. Or, it could be that the journal is +** preserved because of JOURNALMODE_PERSIST or JOURNALMODE_TRUNCATE. +** If the journal really is hot, reset the pager cache prior rolling +** back any content. If the journal is merely persistent, no reset is +** needed. +*/ +static int pager_playback(Pager *pPager, int isHot){ + sqlite3_vfs *pVfs = pPager->pVfs; + i64 szJ; /* Size of the journal file in bytes */ + u32 nRec; /* Number of Records in the journal */ + u32 u; /* Unsigned loop counter */ + Pgno mxPg = 0; /* Size of the original file in pages */ + int rc; /* Result code of a subroutine */ + int res = 1; /* Value returned by sqlite3OsAccess() */ + char *zMaster = 0; /* Name of master journal file if any */ + int needPagerReset; /* True to reset page prior to first page rollback */ + int nPlayback = 0; /* Total number of pages restored from journal */ + + /* Figure out how many records are in the journal. Abort early if + ** the journal is empty. + */ + assert( isOpen(pPager->jfd) ); + rc = sqlite3OsFileSize(pPager->jfd, &szJ); + if( rc!=SQLITE_OK ){ + goto end_playback; + } + + /* Read the master journal name from the journal, if it is present. + ** If a master journal file name is specified, but the file is not + ** present on disk, then the journal is not hot and does not need to be + ** played back. + ** + ** TODO: Technically the following is an error because it assumes that + ** buffer Pager.pTmpSpace is (mxPathname+1) bytes or larger. i.e. that + ** (pPager->pageSize >= pPager->pVfs->mxPathname+1). Using os_unix.c, + ** mxPathname is 512, which is the same as the minimum allowable value + ** for pageSize. + */ + zMaster = pPager->pTmpSpace; + rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1); + if( rc==SQLITE_OK && zMaster[0] ){ + rc = sqlite3OsAccess(pVfs, zMaster, SQLITE_ACCESS_EXISTS, &res); + } + zMaster = 0; + if( rc!=SQLITE_OK || !res ){ + goto end_playback; + } + pPager->journalOff = 0; + needPagerReset = isHot; + + /* This loop terminates either when a readJournalHdr() or + ** pager_playback_one_page() call returns SQLITE_DONE or an IO error + ** occurs. + */ + while( 1 ){ + /* Read the next journal header from the journal file. If there are + ** not enough bytes left in the journal file for a complete header, or + ** it is corrupted, then a process must have failed while writing it. + ** This indicates nothing more needs to be rolled back. + */ + rc = readJournalHdr(pPager, isHot, szJ, &nRec, &mxPg); + if( rc!=SQLITE_OK ){ + if( rc==SQLITE_DONE ){ + rc = SQLITE_OK; + } + goto end_playback; + } + + /* If nRec is 0xffffffff, then this journal was created by a process + ** working in no-sync mode. This means that the rest of the journal + ** file consists of pages, there are no more journal headers. Compute + ** the value of nRec based on this assumption. + */ + if( nRec==0xffffffff ){ + assert( pPager->journalOff==JOURNAL_HDR_SZ(pPager) ); + nRec = (int)((szJ - JOURNAL_HDR_SZ(pPager))/JOURNAL_PG_SZ(pPager)); + } + + /* If nRec is 0 and this rollback is of a transaction created by this + ** process and if this is the final header in the journal, then it means + ** that this part of the journal was being filled but has not yet been + ** synced to disk. Compute the number of pages based on the remaining + ** size of the file. + ** + ** The third term of the test was added to fix ticket #2565. + ** When rolling back a hot journal, nRec==0 always means that the next + ** chunk of the journal contains zero pages to be rolled back. But + ** when doing a ROLLBACK and the nRec==0 chunk is the last chunk in + ** the journal, it means that the journal might contain additional + ** pages that need to be rolled back and that the number of pages + ** should be computed based on the journal file size. + */ + if( nRec==0 && !isHot && + pPager->journalHdr+JOURNAL_HDR_SZ(pPager)==pPager->journalOff ){ + nRec = (int)((szJ - pPager->journalOff) / JOURNAL_PG_SZ(pPager)); + } + + /* If this is the first header read from the journal, truncate the + ** database file back to its original size. + */ + if( pPager->journalOff==JOURNAL_HDR_SZ(pPager) ){ + rc = pager_truncate(pPager, mxPg); + if( rc!=SQLITE_OK ){ + goto end_playback; + } + pPager->dbSize = mxPg; + } + + /* Copy original pages out of the journal and back into the + ** database file and/or page cache. + */ + for(u=0; ujournalOff,0,1,0); + if( rc==SQLITE_OK ){ + nPlayback++; + }else{ + if( rc==SQLITE_DONE ){ + pPager->journalOff = szJ; + break; + }else if( rc==SQLITE_IOERR_SHORT_READ ){ + /* If the journal has been truncated, simply stop reading and + ** processing the journal. This might happen if the journal was + ** not completely written and synced prior to a crash. In that + ** case, the database should have never been written in the + ** first place so it is OK to simply abandon the rollback. */ + rc = SQLITE_OK; + goto end_playback; + }else{ + /* If we are unable to rollback, quit and return the error + ** code. This will cause the pager to enter the error state + ** so that no further harm will be done. Perhaps the next + ** process to come along will be able to rollback the database. + */ + goto end_playback; + } + } + } + } + /*NOTREACHED*/ + assert( 0 ); + +end_playback: + /* Following a rollback, the database file should be back in its original + ** state prior to the start of the transaction, so invoke the + ** SQLITE_FCNTL_DB_UNCHANGED file-control method to disable the + ** assertion that the transaction counter was modified. + */ +#ifdef SQLITE_DEBUG + if( pPager->fd->pMethods ){ + sqlite3OsFileControlHint(pPager->fd,SQLITE_FCNTL_DB_UNCHANGED,0); + } +#endif + + /* If this playback is happening automatically as a result of an IO or + ** malloc error that occurred after the change-counter was updated but + ** before the transaction was committed, then the change-counter + ** modification may just have been reverted. If this happens in exclusive + ** mode, then subsequent transactions performed by the connection will not + ** update the change-counter at all. This may lead to cache inconsistency + ** problems for other processes at some point in the future. So, just + ** in case this has happened, clear the changeCountDone flag now. + */ + pPager->changeCountDone = pPager->tempFile; + + if( rc==SQLITE_OK ){ + zMaster = pPager->pTmpSpace; + rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1); + testcase( rc!=SQLITE_OK ); + } + if( rc==SQLITE_OK + && (pPager->eState>=PAGER_WRITER_DBMOD || pPager->eState==PAGER_OPEN) + ){ + rc = sqlite3PagerSync(pPager, 0); + } + if( rc==SQLITE_OK ){ + rc = pager_end_transaction(pPager, zMaster[0]!='\0', 0); + testcase( rc!=SQLITE_OK ); + } + if( rc==SQLITE_OK && zMaster[0] && res ){ + /* If there was a master journal and this routine will return success, + ** see if it is possible to delete the master journal. + */ + rc = pager_delmaster(pPager, zMaster); + testcase( rc!=SQLITE_OK ); + } + if( isHot && nPlayback ){ + sqlite3_log(SQLITE_NOTICE_RECOVER_ROLLBACK, "recovered %d pages from %s", + nPlayback, pPager->zJournal); + } + + /* The Pager.sectorSize variable may have been updated while rolling + ** back a journal created by a process with a different sector size + ** value. Reset it to the correct value for this process. + */ + setSectorSize(pPager); + return rc; +} + + +/* +** Read the content for page pPg out of the database file and into +** pPg->pData. A shared lock or greater must be held on the database +** file before this function is called. +** +** If page 1 is read, then the value of Pager.dbFileVers[] is set to +** the value read from the database file. +** +** If an IO error occurs, then the IO error is returned to the caller. +** Otherwise, SQLITE_OK is returned. +*/ +static int readDbPage(PgHdr *pPg, u32 iFrame){ + Pager *pPager = pPg->pPager; /* Pager object associated with page pPg */ + Pgno pgno = pPg->pgno; /* Page number to read */ + int rc = SQLITE_OK; /* Return code */ + int pgsz = pPager->pageSize; /* Number of bytes to read */ + + assert( pPager->eState>=PAGER_READER && !MEMDB ); + assert( isOpen(pPager->fd) ); + +#ifndef SQLITE_OMIT_WAL + if( iFrame ){ + /* Try to pull the page from the write-ahead log. */ + rc = sqlite3WalReadFrame(pPager->pWal, iFrame, pgsz, pPg->pData); + }else +#endif + { + i64 iOffset = (pgno-1)*(i64)pPager->pageSize; + rc = sqlite3OsRead(pPager->fd, pPg->pData, pgsz, iOffset); + if( rc==SQLITE_IOERR_SHORT_READ ){ + rc = SQLITE_OK; + } + } + + if( pgno==1 ){ + if( rc ){ + /* If the read is unsuccessful, set the dbFileVers[] to something + ** that will never be a valid file version. dbFileVers[] is a copy + ** of bytes 24..39 of the database. Bytes 28..31 should always be + ** zero or the size of the database in page. Bytes 32..35 and 35..39 + ** should be page numbers which are never 0xffffffff. So filling + ** pPager->dbFileVers[] with all 0xff bytes should suffice. + ** + ** For an encrypted database, the situation is more complex: bytes + ** 24..39 of the database are white noise. But the probability of + ** white noising equaling 16 bytes of 0xff is vanishingly small so + ** we should still be ok. + */ + memset(pPager->dbFileVers, 0xff, sizeof(pPager->dbFileVers)); + }else{ + u8 *dbFileVers = &((u8*)pPg->pData)[24]; + memcpy(&pPager->dbFileVers, dbFileVers, sizeof(pPager->dbFileVers)); + } + } + CODEC1(pPager, pPg->pData, pgno, 3, rc = SQLITE_NOMEM); + + PAGER_INCR(sqlite3_pager_readdb_count); + PAGER_INCR(pPager->nRead); + IOTRACE(("PGIN %p %d\n", pPager, pgno)); + PAGERTRACE(("FETCH %d page %d hash(%08x)\n", + PAGERID(pPager), pgno, pager_pagehash(pPg))); + + return rc; +} + +/* +** Update the value of the change-counter at offsets 24 and 92 in +** the header and the sqlite version number at offset 96. +** +** This is an unconditional update. See also the pager_incr_changecounter() +** routine which only updates the change-counter if the update is actually +** needed, as determined by the pPager->changeCountDone state variable. +*/ +static void pager_write_changecounter(PgHdr *pPg){ + u32 change_counter; + + /* Increment the value just read and write it back to byte 24. */ + change_counter = sqlite3Get4byte((u8*)pPg->pPager->dbFileVers)+1; + put32bits(((char*)pPg->pData)+24, change_counter); + + /* Also store the SQLite version number in bytes 96..99 and in + ** bytes 92..95 store the change counter for which the version number + ** is valid. */ + put32bits(((char*)pPg->pData)+92, change_counter); + put32bits(((char*)pPg->pData)+96, SQLITE_VERSION_NUMBER); +} + +#ifndef SQLITE_OMIT_WAL +/* +** This function is invoked once for each page that has already been +** written into the log file when a WAL transaction is rolled back. +** Parameter iPg is the page number of said page. The pCtx argument +** is actually a pointer to the Pager structure. +** +** If page iPg is present in the cache, and has no outstanding references, +** it is discarded. Otherwise, if there are one or more outstanding +** references, the page content is reloaded from the database. If the +** attempt to reload content from the database is required and fails, +** return an SQLite error code. Otherwise, SQLITE_OK. +*/ +static int pagerUndoCallback(void *pCtx, Pgno iPg){ + int rc = SQLITE_OK; + Pager *pPager = (Pager *)pCtx; + PgHdr *pPg; + + assert( pagerUseWal(pPager) ); + pPg = sqlite3PagerLookup(pPager, iPg); + if( pPg ){ + if( sqlite3PcachePageRefcount(pPg)==1 ){ + sqlite3PcacheDrop(pPg); + }else{ + u32 iFrame = 0; + rc = sqlite3WalFindFrame(pPager->pWal, pPg->pgno, &iFrame); + if( rc==SQLITE_OK ){ + rc = readDbPage(pPg, iFrame); + } + if( rc==SQLITE_OK ){ + pPager->xReiniter(pPg); + } + sqlite3PagerUnrefNotNull(pPg); + } + } + + /* Normally, if a transaction is rolled back, any backup processes are + ** updated as data is copied out of the rollback journal and into the + ** database. This is not generally possible with a WAL database, as + ** rollback involves simply truncating the log file. Therefore, if one + ** or more frames have already been written to the log (and therefore + ** also copied into the backup databases) as part of this transaction, + ** the backups must be restarted. + */ + sqlite3BackupRestart(pPager->pBackup); + + return rc; +} + +/* +** This function is called to rollback a transaction on a WAL database. +*/ +static int pagerRollbackWal(Pager *pPager){ + int rc; /* Return Code */ + PgHdr *pList; /* List of dirty pages to revert */ + + /* For all pages in the cache that are currently dirty or have already + ** been written (but not committed) to the log file, do one of the + ** following: + ** + ** + Discard the cached page (if refcount==0), or + ** + Reload page content from the database (if refcount>0). + */ + pPager->dbSize = pPager->dbOrigSize; + rc = sqlite3WalUndo(pPager->pWal, pagerUndoCallback, (void *)pPager); + pList = sqlite3PcacheDirtyList(pPager->pPCache); + while( pList && rc==SQLITE_OK ){ + PgHdr *pNext = pList->pDirty; + rc = pagerUndoCallback((void *)pPager, pList->pgno); + pList = pNext; + } + + return rc; +} + +/* +** This function is a wrapper around sqlite3WalFrames(). As well as logging +** the contents of the list of pages headed by pList (connected by pDirty), +** this function notifies any active backup processes that the pages have +** changed. +** +** The list of pages passed into this routine is always sorted by page number. +** Hence, if page 1 appears anywhere on the list, it will be the first page. +*/ +static int pagerWalFrames( + Pager *pPager, /* Pager object */ + PgHdr *pList, /* List of frames to log */ + Pgno nTruncate, /* Database size after this commit */ + int isCommit /* True if this is a commit */ +){ + int rc; /* Return code */ + int nList; /* Number of pages in pList */ +#if defined(SQLITE_DEBUG) || defined(SQLITE_CHECK_PAGES) + PgHdr *p; /* For looping over pages */ +#endif + + assert( pPager->pWal ); + assert( pList ); +#ifdef SQLITE_DEBUG + /* Verify that the page list is in accending order */ + for(p=pList; p && p->pDirty; p=p->pDirty){ + assert( p->pgno < p->pDirty->pgno ); + } +#endif + + assert( pList->pDirty==0 || isCommit ); + if( isCommit ){ + /* If a WAL transaction is being committed, there is no point in writing + ** any pages with page numbers greater than nTruncate into the WAL file. + ** They will never be read by any client. So remove them from the pDirty + ** list here. */ + PgHdr *p; + PgHdr **ppNext = &pList; + nList = 0; + for(p=pList; (*ppNext = p)!=0; p=p->pDirty){ + if( p->pgno<=nTruncate ){ + ppNext = &p->pDirty; + nList++; + } + } + assert( pList ); + }else{ + nList = 1; + } + pPager->aStat[PAGER_STAT_WRITE] += nList; + + if( pList->pgno==1 ) pager_write_changecounter(pList); + rc = sqlite3WalFrames(pPager->pWal, + pPager->pageSize, pList, nTruncate, isCommit, pPager->walSyncFlags + ); + if( rc==SQLITE_OK && pPager->pBackup ){ + PgHdr *p; + for(p=pList; p; p=p->pDirty){ + sqlite3BackupUpdate(pPager->pBackup, p->pgno, (u8 *)p->pData); + } + } + +#ifdef SQLITE_CHECK_PAGES + pList = sqlite3PcacheDirtyList(pPager->pPCache); + for(p=pList; p; p=p->pDirty){ + pager_set_pagehash(p); + } +#endif + + return rc; +} + +/* +** Begin a read transaction on the WAL. +** +** This routine used to be called "pagerOpenSnapshot()" because it essentially +** makes a snapshot of the database at the current point in time and preserves +** that snapshot for use by the reader in spite of concurrently changes by +** other writers or checkpointers. +*/ +static int pagerBeginReadTransaction(Pager *pPager){ + int rc; /* Return code */ + int changed = 0; /* True if cache must be reset */ + + assert( pagerUseWal(pPager) ); + assert( pPager->eState==PAGER_OPEN || pPager->eState==PAGER_READER ); + + /* sqlite3WalEndReadTransaction() was not called for the previous + ** transaction in locking_mode=EXCLUSIVE. So call it now. If we + ** are in locking_mode=NORMAL and EndRead() was previously called, + ** the duplicate call is harmless. + */ + sqlite3WalEndReadTransaction(pPager->pWal); + + rc = sqlite3WalBeginReadTransaction(pPager->pWal, &changed); + if( rc!=SQLITE_OK || changed ){ + pager_reset(pPager); + if( USEFETCH(pPager) ) sqlite3OsUnfetch(pPager->fd, 0, 0); + } + + return rc; +} +#endif + +/* +** This function is called as part of the transition from PAGER_OPEN +** to PAGER_READER state to determine the size of the database file +** in pages (assuming the page size currently stored in Pager.pageSize). +** +** If no error occurs, SQLITE_OK is returned and the size of the database +** in pages is stored in *pnPage. Otherwise, an error code (perhaps +** SQLITE_IOERR_FSTAT) is returned and *pnPage is left unmodified. +*/ +static int pagerPagecount(Pager *pPager, Pgno *pnPage){ + Pgno nPage; /* Value to return via *pnPage */ + + /* Query the WAL sub-system for the database size. The WalDbsize() + ** function returns zero if the WAL is not open (i.e. Pager.pWal==0), or + ** if the database size is not available. The database size is not + ** available from the WAL sub-system if the log file is empty or + ** contains no valid committed transactions. + */ + assert( pPager->eState==PAGER_OPEN ); + assert( pPager->eLock>=SHARED_LOCK ); + nPage = sqlite3WalDbsize(pPager->pWal); + + /* If the database size was not available from the WAL sub-system, + ** determine it based on the size of the database file. If the size + ** of the database file is not an integer multiple of the page-size, + ** round down to the nearest page. Except, any file larger than 0 + ** bytes in size is considered to contain at least one page. + */ + if( nPage==0 ){ + i64 n = 0; /* Size of db file in bytes */ + assert( isOpen(pPager->fd) || pPager->tempFile ); + if( isOpen(pPager->fd) ){ + int rc = sqlite3OsFileSize(pPager->fd, &n); + if( rc!=SQLITE_OK ){ + return rc; + } + } + nPage = (Pgno)((n+pPager->pageSize-1) / pPager->pageSize); + } + + /* If the current number of pages in the file is greater than the + ** configured maximum pager number, increase the allowed limit so + ** that the file can be read. + */ + if( nPage>pPager->mxPgno ){ + pPager->mxPgno = (Pgno)nPage; + } + + *pnPage = nPage; + return SQLITE_OK; +} + +#ifndef SQLITE_OMIT_WAL +/* +** Check if the *-wal file that corresponds to the database opened by pPager +** exists if the database is not empy, or verify that the *-wal file does +** not exist (by deleting it) if the database file is empty. +** +** If the database is not empty and the *-wal file exists, open the pager +** in WAL mode. If the database is empty or if no *-wal file exists and +** if no error occurs, make sure Pager.journalMode is not set to +** PAGER_JOURNALMODE_WAL. +** +** Return SQLITE_OK or an error code. +** +** The caller must hold a SHARED lock on the database file to call this +** function. Because an EXCLUSIVE lock on the db file is required to delete +** a WAL on a none-empty database, this ensures there is no race condition +** between the xAccess() below and an xDelete() being executed by some +** other connection. +*/ +static int pagerOpenWalIfPresent(Pager *pPager){ + int rc = SQLITE_OK; + assert( pPager->eState==PAGER_OPEN ); + assert( pPager->eLock>=SHARED_LOCK ); + + if( !pPager->tempFile ){ + int isWal; /* True if WAL file exists */ + Pgno nPage; /* Size of the database file */ + + rc = pagerPagecount(pPager, &nPage); + if( rc ) return rc; + if( nPage==0 ){ + rc = sqlite3OsDelete(pPager->pVfs, pPager->zWal, 0); + if( rc==SQLITE_IOERR_DELETE_NOENT ) rc = SQLITE_OK; + isWal = 0; + }else{ + rc = sqlite3OsAccess( + pPager->pVfs, pPager->zWal, SQLITE_ACCESS_EXISTS, &isWal + ); + } + if( rc==SQLITE_OK ){ + if( isWal ){ + testcase( sqlite3PcachePagecount(pPager->pPCache)==0 ); + rc = sqlite3PagerOpenWal(pPager, 0); + }else if( pPager->journalMode==PAGER_JOURNALMODE_WAL ){ + pPager->journalMode = PAGER_JOURNALMODE_DELETE; + } + } + } + return rc; +} +#endif + +/* +** Playback savepoint pSavepoint. Or, if pSavepoint==NULL, then playback +** the entire master journal file. The case pSavepoint==NULL occurs when +** a ROLLBACK TO command is invoked on a SAVEPOINT that is a transaction +** savepoint. +** +** When pSavepoint is not NULL (meaning a non-transaction savepoint is +** being rolled back), then the rollback consists of up to three stages, +** performed in the order specified: +** +** * Pages are played back from the main journal starting at byte +** offset PagerSavepoint.iOffset and continuing to +** PagerSavepoint.iHdrOffset, or to the end of the main journal +** file if PagerSavepoint.iHdrOffset is zero. +** +** * If PagerSavepoint.iHdrOffset is not zero, then pages are played +** back starting from the journal header immediately following +** PagerSavepoint.iHdrOffset to the end of the main journal file. +** +** * Pages are then played back from the sub-journal file, starting +** with the PagerSavepoint.iSubRec and continuing to the end of +** the journal file. +** +** Throughout the rollback process, each time a page is rolled back, the +** corresponding bit is set in a bitvec structure (variable pDone in the +** implementation below). This is used to ensure that a page is only +** rolled back the first time it is encountered in either journal. +** +** If pSavepoint is NULL, then pages are only played back from the main +** journal file. There is no need for a bitvec in this case. +** +** In either case, before playback commences the Pager.dbSize variable +** is reset to the value that it held at the start of the savepoint +** (or transaction). No page with a page-number greater than this value +** is played back. If one is encountered it is simply skipped. +*/ +static int pagerPlaybackSavepoint(Pager *pPager, PagerSavepoint *pSavepoint){ + i64 szJ; /* Effective size of the main journal */ + i64 iHdrOff; /* End of first segment of main-journal records */ + int rc = SQLITE_OK; /* Return code */ + Bitvec *pDone = 0; /* Bitvec to ensure pages played back only once */ + + assert( pPager->eState!=PAGER_ERROR ); + assert( pPager->eState>=PAGER_WRITER_LOCKED ); + + /* Allocate a bitvec to use to store the set of pages rolled back */ + if( pSavepoint ){ + pDone = sqlite3BitvecCreate(pSavepoint->nOrig); + if( !pDone ){ + return SQLITE_NOMEM; + } + } + + /* Set the database size back to the value it was before the savepoint + ** being reverted was opened. + */ + pPager->dbSize = pSavepoint ? pSavepoint->nOrig : pPager->dbOrigSize; + pPager->changeCountDone = pPager->tempFile; + + if( !pSavepoint && pagerUseWal(pPager) ){ + return pagerRollbackWal(pPager); + } + + /* Use pPager->journalOff as the effective size of the main rollback + ** journal. The actual file might be larger than this in + ** PAGER_JOURNALMODE_TRUNCATE or PAGER_JOURNALMODE_PERSIST. But anything + ** past pPager->journalOff is off-limits to us. + */ + szJ = pPager->journalOff; + assert( pagerUseWal(pPager)==0 || szJ==0 ); + + /* Begin by rolling back records from the main journal starting at + ** PagerSavepoint.iOffset and continuing to the next journal header. + ** There might be records in the main journal that have a page number + ** greater than the current database size (pPager->dbSize) but those + ** will be skipped automatically. Pages are added to pDone as they + ** are played back. + */ + if( pSavepoint && !pagerUseWal(pPager) ){ + iHdrOff = pSavepoint->iHdrOffset ? pSavepoint->iHdrOffset : szJ; + pPager->journalOff = pSavepoint->iOffset; + while( rc==SQLITE_OK && pPager->journalOffjournalOff, pDone, 1, 1); + } + assert( rc!=SQLITE_DONE ); + }else{ + pPager->journalOff = 0; + } + + /* Continue rolling back records out of the main journal starting at + ** the first journal header seen and continuing until the effective end + ** of the main journal file. Continue to skip out-of-range pages and + ** continue adding pages rolled back to pDone. + */ + while( rc==SQLITE_OK && pPager->journalOffjournalHdr+JOURNAL_HDR_SZ(pPager)==pPager->journalOff" + ** test is related to ticket #2565. See the discussion in the + ** pager_playback() function for additional information. + */ + if( nJRec==0 + && pPager->journalHdr+JOURNAL_HDR_SZ(pPager)==pPager->journalOff + ){ + nJRec = (u32)((szJ - pPager->journalOff)/JOURNAL_PG_SZ(pPager)); + } + for(ii=0; rc==SQLITE_OK && iijournalOffjournalOff, pDone, 1, 1); + } + assert( rc!=SQLITE_DONE ); + } + assert( rc!=SQLITE_OK || pPager->journalOff>=szJ ); + + /* Finally, rollback pages from the sub-journal. Page that were + ** previously rolled back out of the main journal (and are hence in pDone) + ** will be skipped. Out-of-range pages are also skipped. + */ + if( pSavepoint ){ + u32 ii; /* Loop counter */ + i64 offset = (i64)pSavepoint->iSubRec*(4+pPager->pageSize); + + if( pagerUseWal(pPager) ){ + rc = sqlite3WalSavepointUndo(pPager->pWal, pSavepoint->aWalData); + } + for(ii=pSavepoint->iSubRec; rc==SQLITE_OK && iinSubRec; ii++){ + assert( offset==(i64)ii*(4+pPager->pageSize) ); + rc = pager_playback_one_page(pPager, &offset, pDone, 0, 1); + } + assert( rc!=SQLITE_DONE ); + } + + sqlite3BitvecDestroy(pDone); + if( rc==SQLITE_OK ){ + pPager->journalOff = szJ; + } + + return rc; +} + +/* +** Change the maximum number of in-memory pages that are allowed. +*/ +SQLITE_PRIVATE void sqlite3PagerSetCachesize(Pager *pPager, int mxPage){ + sqlite3PcacheSetCachesize(pPager->pPCache, mxPage); +} + +/* +** Invoke SQLITE_FCNTL_MMAP_SIZE based on the current value of szMmap. +*/ +static void pagerFixMaplimit(Pager *pPager){ +#if SQLITE_MAX_MMAP_SIZE>0 + sqlite3_file *fd = pPager->fd; + if( isOpen(fd) && fd->pMethods->iVersion>=3 ){ + sqlite3_int64 sz; + sz = pPager->szMmap; + pPager->bUseFetch = (sz>0); + sqlite3OsFileControlHint(pPager->fd, SQLITE_FCNTL_MMAP_SIZE, &sz); + } +#endif +} + +/* +** Change the maximum size of any memory mapping made of the database file. +*/ +SQLITE_PRIVATE void sqlite3PagerSetMmapLimit(Pager *pPager, sqlite3_int64 szMmap){ + pPager->szMmap = szMmap; + pagerFixMaplimit(pPager); +} + +/* +** Free as much memory as possible from the pager. +*/ +SQLITE_PRIVATE void sqlite3PagerShrink(Pager *pPager){ + sqlite3PcacheShrink(pPager->pPCache); +} + +/* +** Adjust settings of the pager to those specified in the pgFlags parameter. +** +** The "level" in pgFlags & PAGER_SYNCHRONOUS_MASK sets the robustness +** of the database to damage due to OS crashes or power failures by +** changing the number of syncs()s when writing the journals. +** There are three levels: +** +** OFF sqlite3OsSync() is never called. This is the default +** for temporary and transient files. +** +** NORMAL The journal is synced once before writes begin on the +** database. This is normally adequate protection, but +** it is theoretically possible, though very unlikely, +** that an inopertune power failure could leave the journal +** in a state which would cause damage to the database +** when it is rolled back. +** +** FULL The journal is synced twice before writes begin on the +** database (with some additional information - the nRec field +** of the journal header - being written in between the two +** syncs). If we assume that writing a +** single disk sector is atomic, then this mode provides +** assurance that the journal will not be corrupted to the +** point of causing damage to the database during rollback. +** +** The above is for a rollback-journal mode. For WAL mode, OFF continues +** to mean that no syncs ever occur. NORMAL means that the WAL is synced +** prior to the start of checkpoint and that the database file is synced +** at the conclusion of the checkpoint if the entire content of the WAL +** was written back into the database. But no sync operations occur for +** an ordinary commit in NORMAL mode with WAL. FULL means that the WAL +** file is synced following each commit operation, in addition to the +** syncs associated with NORMAL. +** +** Do not confuse synchronous=FULL with SQLITE_SYNC_FULL. The +** SQLITE_SYNC_FULL macro means to use the MacOSX-style full-fsync +** using fcntl(F_FULLFSYNC). SQLITE_SYNC_NORMAL means to do an +** ordinary fsync() call. There is no difference between SQLITE_SYNC_FULL +** and SQLITE_SYNC_NORMAL on platforms other than MacOSX. But the +** synchronous=FULL versus synchronous=NORMAL setting determines when +** the xSync primitive is called and is relevant to all platforms. +** +** Numeric values associated with these states are OFF==1, NORMAL=2, +** and FULL=3. +*/ +#ifndef SQLITE_OMIT_PAGER_PRAGMAS +SQLITE_PRIVATE void sqlite3PagerSetFlags( + Pager *pPager, /* The pager to set safety level for */ + unsigned pgFlags /* Various flags */ +){ + unsigned level = pgFlags & PAGER_SYNCHRONOUS_MASK; + assert( level>=1 && level<=3 ); + pPager->noSync = (level==1 || pPager->tempFile) ?1:0; + pPager->fullSync = (level==3 && !pPager->tempFile) ?1:0; + if( pPager->noSync ){ + pPager->syncFlags = 0; + pPager->ckptSyncFlags = 0; + }else if( pgFlags & PAGER_FULLFSYNC ){ + pPager->syncFlags = SQLITE_SYNC_FULL; + pPager->ckptSyncFlags = SQLITE_SYNC_FULL; + }else if( pgFlags & PAGER_CKPT_FULLFSYNC ){ + pPager->syncFlags = SQLITE_SYNC_NORMAL; + pPager->ckptSyncFlags = SQLITE_SYNC_FULL; + }else{ + pPager->syncFlags = SQLITE_SYNC_NORMAL; + pPager->ckptSyncFlags = SQLITE_SYNC_NORMAL; + } + pPager->walSyncFlags = pPager->syncFlags; + if( pPager->fullSync ){ + pPager->walSyncFlags |= WAL_SYNC_TRANSACTIONS; + } + if( pgFlags & PAGER_CACHESPILL ){ + pPager->doNotSpill &= ~SPILLFLAG_OFF; + }else{ + pPager->doNotSpill |= SPILLFLAG_OFF; + } +} +#endif + +/* +** The following global variable is incremented whenever the library +** attempts to open a temporary file. This information is used for +** testing and analysis only. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_opentemp_count = 0; +#endif + +/* +** Open a temporary file. +** +** Write the file descriptor into *pFile. Return SQLITE_OK on success +** or some other error code if we fail. The OS will automatically +** delete the temporary file when it is closed. +** +** The flags passed to the VFS layer xOpen() call are those specified +** by parameter vfsFlags ORed with the following: +** +** SQLITE_OPEN_READWRITE +** SQLITE_OPEN_CREATE +** SQLITE_OPEN_EXCLUSIVE +** SQLITE_OPEN_DELETEONCLOSE +*/ +static int pagerOpentemp( + Pager *pPager, /* The pager object */ + sqlite3_file *pFile, /* Write the file descriptor here */ + int vfsFlags /* Flags passed through to the VFS */ +){ + int rc; /* Return code */ + +#ifdef SQLITE_TEST + sqlite3_opentemp_count++; /* Used for testing and analysis only */ +#endif + + vfsFlags |= SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | + SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE; + rc = sqlite3OsOpen(pPager->pVfs, 0, pFile, vfsFlags, 0); + assert( rc!=SQLITE_OK || isOpen(pFile) ); + return rc; +} + +/* +** Set the busy handler function. +** +** The pager invokes the busy-handler if sqlite3OsLock() returns +** SQLITE_BUSY when trying to upgrade from no-lock to a SHARED lock, +** or when trying to upgrade from a RESERVED lock to an EXCLUSIVE +** lock. It does *not* invoke the busy handler when upgrading from +** SHARED to RESERVED, or when upgrading from SHARED to EXCLUSIVE +** (which occurs during hot-journal rollback). Summary: +** +** Transition | Invokes xBusyHandler +** -------------------------------------------------------- +** NO_LOCK -> SHARED_LOCK | Yes +** SHARED_LOCK -> RESERVED_LOCK | No +** SHARED_LOCK -> EXCLUSIVE_LOCK | No +** RESERVED_LOCK -> EXCLUSIVE_LOCK | Yes +** +** If the busy-handler callback returns non-zero, the lock is +** retried. If it returns zero, then the SQLITE_BUSY error is +** returned to the caller of the pager API function. +*/ +SQLITE_PRIVATE void sqlite3PagerSetBusyhandler( + Pager *pPager, /* Pager object */ + int (*xBusyHandler)(void *), /* Pointer to busy-handler function */ + void *pBusyHandlerArg /* Argument to pass to xBusyHandler */ +){ + pPager->xBusyHandler = xBusyHandler; + pPager->pBusyHandlerArg = pBusyHandlerArg; + + if( isOpen(pPager->fd) ){ + void **ap = (void **)&pPager->xBusyHandler; + assert( ((int(*)(void *))(ap[0]))==xBusyHandler ); + assert( ap[1]==pBusyHandlerArg ); + sqlite3OsFileControlHint(pPager->fd, SQLITE_FCNTL_BUSYHANDLER, (void *)ap); + } +} + +/* +** Change the page size used by the Pager object. The new page size +** is passed in *pPageSize. +** +** If the pager is in the error state when this function is called, it +** is a no-op. The value returned is the error state error code (i.e. +** one of SQLITE_IOERR, an SQLITE_IOERR_xxx sub-code or SQLITE_FULL). +** +** Otherwise, if all of the following are true: +** +** * the new page size (value of *pPageSize) is valid (a power +** of two between 512 and SQLITE_MAX_PAGE_SIZE, inclusive), and +** +** * there are no outstanding page references, and +** +** * the database is either not an in-memory database or it is +** an in-memory database that currently consists of zero pages. +** +** then the pager object page size is set to *pPageSize. +** +** If the page size is changed, then this function uses sqlite3PagerMalloc() +** to obtain a new Pager.pTmpSpace buffer. If this allocation attempt +** fails, SQLITE_NOMEM is returned and the page size remains unchanged. +** In all other cases, SQLITE_OK is returned. +** +** If the page size is not changed, either because one of the enumerated +** conditions above is not true, the pager was in error state when this +** function was called, or because the memory allocation attempt failed, +** then *pPageSize is set to the old, retained page size before returning. +*/ +SQLITE_PRIVATE int sqlite3PagerSetPagesize(Pager *pPager, u32 *pPageSize, int nReserve){ + int rc = SQLITE_OK; + + /* It is not possible to do a full assert_pager_state() here, as this + ** function may be called from within PagerOpen(), before the state + ** of the Pager object is internally consistent. + ** + ** At one point this function returned an error if the pager was in + ** PAGER_ERROR state. But since PAGER_ERROR state guarantees that + ** there is at least one outstanding page reference, this function + ** is a no-op for that case anyhow. + */ + + u32 pageSize = *pPageSize; + assert( pageSize==0 || (pageSize>=512 && pageSize<=SQLITE_MAX_PAGE_SIZE) ); + if( (pPager->memDb==0 || pPager->dbSize==0) + && sqlite3PcacheRefCount(pPager->pPCache)==0 + && pageSize && pageSize!=(u32)pPager->pageSize + ){ + char *pNew = NULL; /* New temp space */ + i64 nByte = 0; + + if( pPager->eState>PAGER_OPEN && isOpen(pPager->fd) ){ + rc = sqlite3OsFileSize(pPager->fd, &nByte); + } + if( rc==SQLITE_OK ){ + pNew = (char *)sqlite3PageMalloc(pageSize); + if( !pNew ) rc = SQLITE_NOMEM; + } + + if( rc==SQLITE_OK ){ + pager_reset(pPager); + pPager->dbSize = (Pgno)((nByte+pageSize-1)/pageSize); + pPager->pageSize = pageSize; + sqlite3PageFree(pPager->pTmpSpace); + pPager->pTmpSpace = pNew; + sqlite3PcacheSetPageSize(pPager->pPCache, pageSize); + } + } + + *pPageSize = pPager->pageSize; + if( rc==SQLITE_OK ){ + if( nReserve<0 ) nReserve = pPager->nReserve; + assert( nReserve>=0 && nReserve<1000 ); + pPager->nReserve = (i16)nReserve; + pagerReportSize(pPager); + pagerFixMaplimit(pPager); + } + return rc; +} + +/* +** Return a pointer to the "temporary page" buffer held internally +** by the pager. This is a buffer that is big enough to hold the +** entire content of a database page. This buffer is used internally +** during rollback and will be overwritten whenever a rollback +** occurs. But other modules are free to use it too, as long as +** no rollbacks are happening. +*/ +SQLITE_PRIVATE void *sqlite3PagerTempSpace(Pager *pPager){ + return pPager->pTmpSpace; +} + +/* +** Attempt to set the maximum database page count if mxPage is positive. +** Make no changes if mxPage is zero or negative. And never reduce the +** maximum page count below the current size of the database. +** +** Regardless of mxPage, return the current maximum page count. +*/ +SQLITE_PRIVATE int sqlite3PagerMaxPageCount(Pager *pPager, int mxPage){ + if( mxPage>0 ){ + pPager->mxPgno = mxPage; + } + assert( pPager->eState!=PAGER_OPEN ); /* Called only by OP_MaxPgcnt */ + assert( pPager->mxPgno>=pPager->dbSize ); /* OP_MaxPgcnt enforces this */ + return pPager->mxPgno; +} + +/* +** The following set of routines are used to disable the simulated +** I/O error mechanism. These routines are used to avoid simulated +** errors in places where we do not care about errors. +** +** Unless -DSQLITE_TEST=1 is used, these routines are all no-ops +** and generate no code. +*/ +#ifdef SQLITE_TEST +SQLITE_API extern int sqlite3_io_error_pending; +SQLITE_API extern int sqlite3_io_error_hit; +static int saved_cnt; +void disable_simulated_io_errors(void){ + saved_cnt = sqlite3_io_error_pending; + sqlite3_io_error_pending = -1; +} +void enable_simulated_io_errors(void){ + sqlite3_io_error_pending = saved_cnt; +} +#else +# define disable_simulated_io_errors() +# define enable_simulated_io_errors() +#endif + +/* +** Read the first N bytes from the beginning of the file into memory +** that pDest points to. +** +** If the pager was opened on a transient file (zFilename==""), or +** opened on a file less than N bytes in size, the output buffer is +** zeroed and SQLITE_OK returned. The rationale for this is that this +** function is used to read database headers, and a new transient or +** zero sized database has a header than consists entirely of zeroes. +** +** If any IO error apart from SQLITE_IOERR_SHORT_READ is encountered, +** the error code is returned to the caller and the contents of the +** output buffer undefined. +*/ +SQLITE_PRIVATE int sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest){ + int rc = SQLITE_OK; + memset(pDest, 0, N); + assert( isOpen(pPager->fd) || pPager->tempFile ); + + /* This routine is only called by btree immediately after creating + ** the Pager object. There has not been an opportunity to transition + ** to WAL mode yet. + */ + assert( !pagerUseWal(pPager) ); + + if( isOpen(pPager->fd) ){ + IOTRACE(("DBHDR %p 0 %d\n", pPager, N)) + rc = sqlite3OsRead(pPager->fd, pDest, N, 0); + if( rc==SQLITE_IOERR_SHORT_READ ){ + rc = SQLITE_OK; + } + } + return rc; +} + +/* +** This function may only be called when a read-transaction is open on +** the pager. It returns the total number of pages in the database. +** +** However, if the file is between 1 and bytes in size, then +** this is considered a 1 page file. +*/ +SQLITE_PRIVATE void sqlite3PagerPagecount(Pager *pPager, int *pnPage){ + assert( pPager->eState>=PAGER_READER ); + assert( pPager->eState!=PAGER_WRITER_FINISHED ); + *pnPage = (int)pPager->dbSize; +} + + +/* +** Try to obtain a lock of type locktype on the database file. If +** a similar or greater lock is already held, this function is a no-op +** (returning SQLITE_OK immediately). +** +** Otherwise, attempt to obtain the lock using sqlite3OsLock(). Invoke +** the busy callback if the lock is currently not available. Repeat +** until the busy callback returns false or until the attempt to +** obtain the lock succeeds. +** +** Return SQLITE_OK on success and an error code if we cannot obtain +** the lock. If the lock is obtained successfully, set the Pager.state +** variable to locktype before returning. +*/ +static int pager_wait_on_lock(Pager *pPager, int locktype){ + int rc; /* Return code */ + + /* Check that this is either a no-op (because the requested lock is + ** already held, or one of the transistions that the busy-handler + ** may be invoked during, according to the comment above + ** sqlite3PagerSetBusyhandler(). + */ + assert( (pPager->eLock>=locktype) + || (pPager->eLock==NO_LOCK && locktype==SHARED_LOCK) + || (pPager->eLock==RESERVED_LOCK && locktype==EXCLUSIVE_LOCK) + ); + + do { + rc = pagerLockDb(pPager, locktype); + }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) ); + return rc; +} + +/* +** Function assertTruncateConstraint(pPager) checks that one of the +** following is true for all dirty pages currently in the page-cache: +** +** a) The page number is less than or equal to the size of the +** current database image, in pages, OR +** +** b) if the page content were written at this time, it would not +** be necessary to write the current content out to the sub-journal +** (as determined by function subjRequiresPage()). +** +** If the condition asserted by this function were not true, and the +** dirty page were to be discarded from the cache via the pagerStress() +** routine, pagerStress() would not write the current page content to +** the database file. If a savepoint transaction were rolled back after +** this happened, the correct behavior would be to restore the current +** content of the page. However, since this content is not present in either +** the database file or the portion of the rollback journal and +** sub-journal rolled back the content could not be restored and the +** database image would become corrupt. It is therefore fortunate that +** this circumstance cannot arise. +*/ +#if defined(SQLITE_DEBUG) +static void assertTruncateConstraintCb(PgHdr *pPg){ + assert( pPg->flags&PGHDR_DIRTY ); + assert( !subjRequiresPage(pPg) || pPg->pgno<=pPg->pPager->dbSize ); +} +static void assertTruncateConstraint(Pager *pPager){ + sqlite3PcacheIterateDirty(pPager->pPCache, assertTruncateConstraintCb); +} +#else +# define assertTruncateConstraint(pPager) +#endif + +/* +** Truncate the in-memory database file image to nPage pages. This +** function does not actually modify the database file on disk. It +** just sets the internal state of the pager object so that the +** truncation will be done when the current transaction is committed. +** +** This function is only called right before committing a transaction. +** Once this function has been called, the transaction must either be +** rolled back or committed. It is not safe to call this function and +** then continue writing to the database. +*/ +SQLITE_PRIVATE void sqlite3PagerTruncateImage(Pager *pPager, Pgno nPage){ + assert( pPager->dbSize>=nPage ); + assert( pPager->eState>=PAGER_WRITER_CACHEMOD ); + pPager->dbSize = nPage; + + /* At one point the code here called assertTruncateConstraint() to + ** ensure that all pages being truncated away by this operation are, + ** if one or more savepoints are open, present in the savepoint + ** journal so that they can be restored if the savepoint is rolled + ** back. This is no longer necessary as this function is now only + ** called right before committing a transaction. So although the + ** Pager object may still have open savepoints (Pager.nSavepoint!=0), + ** they cannot be rolled back. So the assertTruncateConstraint() call + ** is no longer correct. */ +} + + +/* +** This function is called before attempting a hot-journal rollback. It +** syncs the journal file to disk, then sets pPager->journalHdr to the +** size of the journal file so that the pager_playback() routine knows +** that the entire journal file has been synced. +** +** Syncing a hot-journal to disk before attempting to roll it back ensures +** that if a power-failure occurs during the rollback, the process that +** attempts rollback following system recovery sees the same journal +** content as this process. +** +** If everything goes as planned, SQLITE_OK is returned. Otherwise, +** an SQLite error code. +*/ +static int pagerSyncHotJournal(Pager *pPager){ + int rc = SQLITE_OK; + if( !pPager->noSync ){ + rc = sqlite3OsSync(pPager->jfd, SQLITE_SYNC_NORMAL); + } + if( rc==SQLITE_OK ){ + rc = sqlite3OsFileSize(pPager->jfd, &pPager->journalHdr); + } + return rc; +} + +/* +** Obtain a reference to a memory mapped page object for page number pgno. +** The new object will use the pointer pData, obtained from xFetch(). +** If successful, set *ppPage to point to the new page reference +** and return SQLITE_OK. Otherwise, return an SQLite error code and set +** *ppPage to zero. +** +** Page references obtained by calling this function should be released +** by calling pagerReleaseMapPage(). +*/ +static int pagerAcquireMapPage( + Pager *pPager, /* Pager object */ + Pgno pgno, /* Page number */ + void *pData, /* xFetch()'d data for this page */ + PgHdr **ppPage /* OUT: Acquired page object */ +){ + PgHdr *p; /* Memory mapped page to return */ + + if( pPager->pMmapFreelist ){ + *ppPage = p = pPager->pMmapFreelist; + pPager->pMmapFreelist = p->pDirty; + p->pDirty = 0; + memset(p->pExtra, 0, pPager->nExtra); + }else{ + *ppPage = p = (PgHdr *)sqlite3MallocZero(sizeof(PgHdr) + pPager->nExtra); + if( p==0 ){ + sqlite3OsUnfetch(pPager->fd, (i64)(pgno-1) * pPager->pageSize, pData); + return SQLITE_NOMEM; + } + p->pExtra = (void *)&p[1]; + p->flags = PGHDR_MMAP; + p->nRef = 1; + p->pPager = pPager; + } + + assert( p->pExtra==(void *)&p[1] ); + assert( p->pPage==0 ); + assert( p->flags==PGHDR_MMAP ); + assert( p->pPager==pPager ); + assert( p->nRef==1 ); + + p->pgno = pgno; + p->pData = pData; + pPager->nMmapOut++; + + return SQLITE_OK; +} + +/* +** Release a reference to page pPg. pPg must have been returned by an +** earlier call to pagerAcquireMapPage(). +*/ +static void pagerReleaseMapPage(PgHdr *pPg){ + Pager *pPager = pPg->pPager; + pPager->nMmapOut--; + pPg->pDirty = pPager->pMmapFreelist; + pPager->pMmapFreelist = pPg; + + assert( pPager->fd->pMethods->iVersion>=3 ); + sqlite3OsUnfetch(pPager->fd, (i64)(pPg->pgno-1)*pPager->pageSize, pPg->pData); +} + +/* +** Free all PgHdr objects stored in the Pager.pMmapFreelist list. +*/ +static void pagerFreeMapHdrs(Pager *pPager){ + PgHdr *p; + PgHdr *pNext; + for(p=pPager->pMmapFreelist; p; p=pNext){ + pNext = p->pDirty; + sqlite3_free(p); + } +} + + +/* +** Shutdown the page cache. Free all memory and close all files. +** +** If a transaction was in progress when this routine is called, that +** transaction is rolled back. All outstanding pages are invalidated +** and their memory is freed. Any attempt to use a page associated +** with this page cache after this function returns will likely +** result in a coredump. +** +** This function always succeeds. If a transaction is active an attempt +** is made to roll it back. If an error occurs during the rollback +** a hot journal may be left in the filesystem but no error is returned +** to the caller. +*/ +SQLITE_PRIVATE int sqlite3PagerClose(Pager *pPager){ + u8 *pTmp = (u8 *)pPager->pTmpSpace; + + assert( assert_pager_state(pPager) ); + disable_simulated_io_errors(); + sqlite3BeginBenignMalloc(); + pagerFreeMapHdrs(pPager); + /* pPager->errCode = 0; */ + pPager->exclusiveMode = 0; +#ifndef SQLITE_OMIT_WAL + sqlite3WalClose(pPager->pWal, pPager->ckptSyncFlags, pPager->pageSize, pTmp); + pPager->pWal = 0; +#endif + pager_reset(pPager); + if( MEMDB ){ + pager_unlock(pPager); + }else{ + /* If it is open, sync the journal file before calling UnlockAndRollback. + ** If this is not done, then an unsynced portion of the open journal + ** file may be played back into the database. If a power failure occurs + ** while this is happening, the database could become corrupt. + ** + ** If an error occurs while trying to sync the journal, shift the pager + ** into the ERROR state. This causes UnlockAndRollback to unlock the + ** database and close the journal file without attempting to roll it + ** back or finalize it. The next database user will have to do hot-journal + ** rollback before accessing the database file. + */ + if( isOpen(pPager->jfd) ){ + pager_error(pPager, pagerSyncHotJournal(pPager)); + } + pagerUnlockAndRollback(pPager); + } + sqlite3EndBenignMalloc(); + enable_simulated_io_errors(); + PAGERTRACE(("CLOSE %d\n", PAGERID(pPager))); + IOTRACE(("CLOSE %p\n", pPager)) + sqlite3OsClose(pPager->jfd); + sqlite3OsClose(pPager->fd); + sqlite3PageFree(pTmp); + sqlite3PcacheClose(pPager->pPCache); + +#ifdef SQLITE_HAS_CODEC + if( pPager->xCodecFree ) pPager->xCodecFree(pPager->pCodec); +#endif + + assert( !pPager->aSavepoint && !pPager->pInJournal ); + assert( !isOpen(pPager->jfd) && !isOpen(pPager->sjfd) ); + + sqlite3_free(pPager); + return SQLITE_OK; +} + +#if !defined(NDEBUG) || defined(SQLITE_TEST) +/* +** Return the page number for page pPg. +*/ +SQLITE_PRIVATE Pgno sqlite3PagerPagenumber(DbPage *pPg){ + return pPg->pgno; +} +#endif + +/* +** Increment the reference count for page pPg. +*/ +SQLITE_PRIVATE void sqlite3PagerRef(DbPage *pPg){ + sqlite3PcacheRef(pPg); +} + +/* +** Sync the journal. In other words, make sure all the pages that have +** been written to the journal have actually reached the surface of the +** disk and can be restored in the event of a hot-journal rollback. +** +** If the Pager.noSync flag is set, then this function is a no-op. +** Otherwise, the actions required depend on the journal-mode and the +** device characteristics of the file-system, as follows: +** +** * If the journal file is an in-memory journal file, no action need +** be taken. +** +** * Otherwise, if the device does not support the SAFE_APPEND property, +** then the nRec field of the most recently written journal header +** is updated to contain the number of journal records that have +** been written following it. If the pager is operating in full-sync +** mode, then the journal file is synced before this field is updated. +** +** * If the device does not support the SEQUENTIAL property, then +** journal file is synced. +** +** Or, in pseudo-code: +** +** if( NOT ){ +** if( NOT SAFE_APPEND ){ +** if( ) xSync(); +** +** } +** if( NOT SEQUENTIAL ) xSync(); +** } +** +** If successful, this routine clears the PGHDR_NEED_SYNC flag of every +** page currently held in memory before returning SQLITE_OK. If an IO +** error is encountered, then the IO error code is returned to the caller. +*/ +static int syncJournal(Pager *pPager, int newHdr){ + int rc; /* Return code */ + + assert( pPager->eState==PAGER_WRITER_CACHEMOD + || pPager->eState==PAGER_WRITER_DBMOD + ); + assert( assert_pager_state(pPager) ); + assert( !pagerUseWal(pPager) ); + + rc = sqlite3PagerExclusiveLock(pPager); + if( rc!=SQLITE_OK ) return rc; + + if( !pPager->noSync ){ + assert( !pPager->tempFile ); + if( isOpen(pPager->jfd) && pPager->journalMode!=PAGER_JOURNALMODE_MEMORY ){ + const int iDc = sqlite3OsDeviceCharacteristics(pPager->fd); + assert( isOpen(pPager->jfd) ); + + if( 0==(iDc&SQLITE_IOCAP_SAFE_APPEND) ){ + /* This block deals with an obscure problem. If the last connection + ** that wrote to this database was operating in persistent-journal + ** mode, then the journal file may at this point actually be larger + ** than Pager.journalOff bytes. If the next thing in the journal + ** file happens to be a journal-header (written as part of the + ** previous connection's transaction), and a crash or power-failure + ** occurs after nRec is updated but before this connection writes + ** anything else to the journal file (or commits/rolls back its + ** transaction), then SQLite may become confused when doing the + ** hot-journal rollback following recovery. It may roll back all + ** of this connections data, then proceed to rolling back the old, + ** out-of-date data that follows it. Database corruption. + ** + ** To work around this, if the journal file does appear to contain + ** a valid header following Pager.journalOff, then write a 0x00 + ** byte to the start of it to prevent it from being recognized. + ** + ** Variable iNextHdrOffset is set to the offset at which this + ** problematic header will occur, if it exists. aMagic is used + ** as a temporary buffer to inspect the first couple of bytes of + ** the potential journal header. + */ + i64 iNextHdrOffset; + u8 aMagic[8]; + u8 zHeader[sizeof(aJournalMagic)+4]; + + memcpy(zHeader, aJournalMagic, sizeof(aJournalMagic)); + put32bits(&zHeader[sizeof(aJournalMagic)], pPager->nRec); + + iNextHdrOffset = journalHdrOffset(pPager); + rc = sqlite3OsRead(pPager->jfd, aMagic, 8, iNextHdrOffset); + if( rc==SQLITE_OK && 0==memcmp(aMagic, aJournalMagic, 8) ){ + static const u8 zerobyte = 0; + rc = sqlite3OsWrite(pPager->jfd, &zerobyte, 1, iNextHdrOffset); + } + if( rc!=SQLITE_OK && rc!=SQLITE_IOERR_SHORT_READ ){ + return rc; + } + + /* Write the nRec value into the journal file header. If in + ** full-synchronous mode, sync the journal first. This ensures that + ** all data has really hit the disk before nRec is updated to mark + ** it as a candidate for rollback. + ** + ** This is not required if the persistent media supports the + ** SAFE_APPEND property. Because in this case it is not possible + ** for garbage data to be appended to the file, the nRec field + ** is populated with 0xFFFFFFFF when the journal header is written + ** and never needs to be updated. + */ + if( pPager->fullSync && 0==(iDc&SQLITE_IOCAP_SEQUENTIAL) ){ + PAGERTRACE(("SYNC journal of %d\n", PAGERID(pPager))); + IOTRACE(("JSYNC %p\n", pPager)) + rc = sqlite3OsSync(pPager->jfd, pPager->syncFlags); + if( rc!=SQLITE_OK ) return rc; + } + IOTRACE(("JHDR %p %lld\n", pPager, pPager->journalHdr)); + rc = sqlite3OsWrite( + pPager->jfd, zHeader, sizeof(zHeader), pPager->journalHdr + ); + if( rc!=SQLITE_OK ) return rc; + } + if( 0==(iDc&SQLITE_IOCAP_SEQUENTIAL) ){ + PAGERTRACE(("SYNC journal of %d\n", PAGERID(pPager))); + IOTRACE(("JSYNC %p\n", pPager)) + rc = sqlite3OsSync(pPager->jfd, pPager->syncFlags| + (pPager->syncFlags==SQLITE_SYNC_FULL?SQLITE_SYNC_DATAONLY:0) + ); + if( rc!=SQLITE_OK ) return rc; + } + + pPager->journalHdr = pPager->journalOff; + if( newHdr && 0==(iDc&SQLITE_IOCAP_SAFE_APPEND) ){ + pPager->nRec = 0; + rc = writeJournalHdr(pPager); + if( rc!=SQLITE_OK ) return rc; + } + }else{ + pPager->journalHdr = pPager->journalOff; + } + } + + /* Unless the pager is in noSync mode, the journal file was just + ** successfully synced. Either way, clear the PGHDR_NEED_SYNC flag on + ** all pages. + */ + sqlite3PcacheClearSyncFlags(pPager->pPCache); + pPager->eState = PAGER_WRITER_DBMOD; + assert( assert_pager_state(pPager) ); + return SQLITE_OK; +} + +/* +** The argument is the first in a linked list of dirty pages connected +** by the PgHdr.pDirty pointer. This function writes each one of the +** in-memory pages in the list to the database file. The argument may +** be NULL, representing an empty list. In this case this function is +** a no-op. +** +** The pager must hold at least a RESERVED lock when this function +** is called. Before writing anything to the database file, this lock +** is upgraded to an EXCLUSIVE lock. If the lock cannot be obtained, +** SQLITE_BUSY is returned and no data is written to the database file. +** +** If the pager is a temp-file pager and the actual file-system file +** is not yet open, it is created and opened before any data is +** written out. +** +** Once the lock has been upgraded and, if necessary, the file opened, +** the pages are written out to the database file in list order. Writing +** a page is skipped if it meets either of the following criteria: +** +** * The page number is greater than Pager.dbSize, or +** * The PGHDR_DONT_WRITE flag is set on the page. +** +** If writing out a page causes the database file to grow, Pager.dbFileSize +** is updated accordingly. If page 1 is written out, then the value cached +** in Pager.dbFileVers[] is updated to match the new value stored in +** the database file. +** +** If everything is successful, SQLITE_OK is returned. If an IO error +** occurs, an IO error code is returned. Or, if the EXCLUSIVE lock cannot +** be obtained, SQLITE_BUSY is returned. +*/ +static int pager_write_pagelist(Pager *pPager, PgHdr *pList){ + int rc = SQLITE_OK; /* Return code */ + + /* This function is only called for rollback pagers in WRITER_DBMOD state. */ + assert( !pagerUseWal(pPager) ); + assert( pPager->eState==PAGER_WRITER_DBMOD ); + assert( pPager->eLock==EXCLUSIVE_LOCK ); + + /* If the file is a temp-file has not yet been opened, open it now. It + ** is not possible for rc to be other than SQLITE_OK if this branch + ** is taken, as pager_wait_on_lock() is a no-op for temp-files. + */ + if( !isOpen(pPager->fd) ){ + assert( pPager->tempFile && rc==SQLITE_OK ); + rc = pagerOpentemp(pPager, pPager->fd, pPager->vfsFlags); + } + + /* Before the first write, give the VFS a hint of what the final + ** file size will be. + */ + assert( rc!=SQLITE_OK || isOpen(pPager->fd) ); + if( rc==SQLITE_OK + && pPager->dbHintSizedbSize + && (pList->pDirty || pList->pgno>pPager->dbHintSize) + ){ + sqlite3_int64 szFile = pPager->pageSize * (sqlite3_int64)pPager->dbSize; + sqlite3OsFileControlHint(pPager->fd, SQLITE_FCNTL_SIZE_HINT, &szFile); + pPager->dbHintSize = pPager->dbSize; + } + + while( rc==SQLITE_OK && pList ){ + Pgno pgno = pList->pgno; + + /* If there are dirty pages in the page cache with page numbers greater + ** than Pager.dbSize, this means sqlite3PagerTruncateImage() was called to + ** make the file smaller (presumably by auto-vacuum code). Do not write + ** any such pages to the file. + ** + ** Also, do not write out any page that has the PGHDR_DONT_WRITE flag + ** set (set by sqlite3PagerDontWrite()). + */ + if( pgno<=pPager->dbSize && 0==(pList->flags&PGHDR_DONT_WRITE) ){ + i64 offset = (pgno-1)*(i64)pPager->pageSize; /* Offset to write */ + char *pData; /* Data to write */ + + assert( (pList->flags&PGHDR_NEED_SYNC)==0 ); + if( pList->pgno==1 ) pager_write_changecounter(pList); + + /* Encode the database */ + CODEC2(pPager, pList->pData, pgno, 6, return SQLITE_NOMEM, pData); + + /* Write out the page data. */ + rc = sqlite3OsWrite(pPager->fd, pData, pPager->pageSize, offset); + + /* If page 1 was just written, update Pager.dbFileVers to match + ** the value now stored in the database file. If writing this + ** page caused the database file to grow, update dbFileSize. + */ + if( pgno==1 ){ + memcpy(&pPager->dbFileVers, &pData[24], sizeof(pPager->dbFileVers)); + } + if( pgno>pPager->dbFileSize ){ + pPager->dbFileSize = pgno; + } + pPager->aStat[PAGER_STAT_WRITE]++; + + /* Update any backup objects copying the contents of this pager. */ + sqlite3BackupUpdate(pPager->pBackup, pgno, (u8*)pList->pData); + + PAGERTRACE(("STORE %d page %d hash(%08x)\n", + PAGERID(pPager), pgno, pager_pagehash(pList))); + IOTRACE(("PGOUT %p %d\n", pPager, pgno)); + PAGER_INCR(sqlite3_pager_writedb_count); + }else{ + PAGERTRACE(("NOSTORE %d page %d\n", PAGERID(pPager), pgno)); + } + pager_set_pagehash(pList); + pList = pList->pDirty; + } + + return rc; +} + +/* +** Ensure that the sub-journal file is open. If it is already open, this +** function is a no-op. +** +** SQLITE_OK is returned if everything goes according to plan. An +** SQLITE_IOERR_XXX error code is returned if a call to sqlite3OsOpen() +** fails. +*/ +static int openSubJournal(Pager *pPager){ + int rc = SQLITE_OK; + if( !isOpen(pPager->sjfd) ){ + if( pPager->journalMode==PAGER_JOURNALMODE_MEMORY || pPager->subjInMemory ){ + sqlite3MemJournalOpen(pPager->sjfd); + }else{ + rc = pagerOpentemp(pPager, pPager->sjfd, SQLITE_OPEN_SUBJOURNAL); + } + } + return rc; +} + +/* +** Append a record of the current state of page pPg to the sub-journal. +** It is the callers responsibility to use subjRequiresPage() to check +** that it is really required before calling this function. +** +** If successful, set the bit corresponding to pPg->pgno in the bitvecs +** for all open savepoints before returning. +** +** This function returns SQLITE_OK if everything is successful, an IO +** error code if the attempt to write to the sub-journal fails, or +** SQLITE_NOMEM if a malloc fails while setting a bit in a savepoint +** bitvec. +*/ +static int subjournalPage(PgHdr *pPg){ + int rc = SQLITE_OK; + Pager *pPager = pPg->pPager; + if( pPager->journalMode!=PAGER_JOURNALMODE_OFF ){ + + /* Open the sub-journal, if it has not already been opened */ + assert( pPager->useJournal ); + assert( isOpen(pPager->jfd) || pagerUseWal(pPager) ); + assert( isOpen(pPager->sjfd) || pPager->nSubRec==0 ); + assert( pagerUseWal(pPager) + || pageInJournal(pPager, pPg) + || pPg->pgno>pPager->dbOrigSize + ); + rc = openSubJournal(pPager); + + /* If the sub-journal was opened successfully (or was already open), + ** write the journal record into the file. */ + if( rc==SQLITE_OK ){ + void *pData = pPg->pData; + i64 offset = (i64)pPager->nSubRec*(4+pPager->pageSize); + char *pData2; + + CODEC2(pPager, pData, pPg->pgno, 7, return SQLITE_NOMEM, pData2); + PAGERTRACE(("STMT-JOURNAL %d page %d\n", PAGERID(pPager), pPg->pgno)); + rc = write32bits(pPager->sjfd, offset, pPg->pgno); + if( rc==SQLITE_OK ){ + rc = sqlite3OsWrite(pPager->sjfd, pData2, pPager->pageSize, offset+4); + } + } + } + if( rc==SQLITE_OK ){ + pPager->nSubRec++; + assert( pPager->nSavepoint>0 ); + rc = addToSavepointBitvecs(pPager, pPg->pgno); + } + return rc; +} + +/* +** This function is called by the pcache layer when it has reached some +** soft memory limit. The first argument is a pointer to a Pager object +** (cast as a void*). The pager is always 'purgeable' (not an in-memory +** database). The second argument is a reference to a page that is +** currently dirty but has no outstanding references. The page +** is always associated with the Pager object passed as the first +** argument. +** +** The job of this function is to make pPg clean by writing its contents +** out to the database file, if possible. This may involve syncing the +** journal file. +** +** If successful, sqlite3PcacheMakeClean() is called on the page and +** SQLITE_OK returned. If an IO error occurs while trying to make the +** page clean, the IO error code is returned. If the page cannot be +** made clean for some other reason, but no error occurs, then SQLITE_OK +** is returned by sqlite3PcacheMakeClean() is not called. +*/ +static int pagerStress(void *p, PgHdr *pPg){ + Pager *pPager = (Pager *)p; + int rc = SQLITE_OK; + + assert( pPg->pPager==pPager ); + assert( pPg->flags&PGHDR_DIRTY ); + + /* The doNotSpill NOSYNC bit is set during times when doing a sync of + ** journal (and adding a new header) is not allowed. This occurs + ** during calls to sqlite3PagerWrite() while trying to journal multiple + ** pages belonging to the same sector. + ** + ** The doNotSpill ROLLBACK and OFF bits inhibits all cache spilling + ** regardless of whether or not a sync is required. This is set during + ** a rollback or by user request, respectively. + ** + ** Spilling is also prohibited when in an error state since that could + ** lead to database corruption. In the current implementaton it + ** is impossible for sqlite3PcacheFetch() to be called with createFlag==1 + ** while in the error state, hence it is impossible for this routine to + ** be called in the error state. Nevertheless, we include a NEVER() + ** test for the error state as a safeguard against future changes. + */ + if( NEVER(pPager->errCode) ) return SQLITE_OK; + testcase( pPager->doNotSpill & SPILLFLAG_ROLLBACK ); + testcase( pPager->doNotSpill & SPILLFLAG_OFF ); + testcase( pPager->doNotSpill & SPILLFLAG_NOSYNC ); + if( pPager->doNotSpill + && ((pPager->doNotSpill & (SPILLFLAG_ROLLBACK|SPILLFLAG_OFF))!=0 + || (pPg->flags & PGHDR_NEED_SYNC)!=0) + ){ + return SQLITE_OK; + } + + pPg->pDirty = 0; + if( pagerUseWal(pPager) ){ + /* Write a single frame for this page to the log. */ + if( subjRequiresPage(pPg) ){ + rc = subjournalPage(pPg); + } + if( rc==SQLITE_OK ){ + rc = pagerWalFrames(pPager, pPg, 0, 0); + } + }else{ + + /* Sync the journal file if required. */ + if( pPg->flags&PGHDR_NEED_SYNC + || pPager->eState==PAGER_WRITER_CACHEMOD + ){ + rc = syncJournal(pPager, 1); + } + + /* If the page number of this page is larger than the current size of + ** the database image, it may need to be written to the sub-journal. + ** This is because the call to pager_write_pagelist() below will not + ** actually write data to the file in this case. + ** + ** Consider the following sequence of events: + ** + ** BEGIN; + ** + ** + ** SAVEPOINT sp; + ** + ** pagerStress(page X) + ** ROLLBACK TO sp; + ** + ** If (X>Y), then when pagerStress is called page X will not be written + ** out to the database file, but will be dropped from the cache. Then, + ** following the "ROLLBACK TO sp" statement, reading page X will read + ** data from the database file. This will be the copy of page X as it + ** was when the transaction started, not as it was when "SAVEPOINT sp" + ** was executed. + ** + ** The solution is to write the current data for page X into the + ** sub-journal file now (if it is not already there), so that it will + ** be restored to its current value when the "ROLLBACK TO sp" is + ** executed. + */ + if( NEVER( + rc==SQLITE_OK && pPg->pgno>pPager->dbSize && subjRequiresPage(pPg) + ) ){ + rc = subjournalPage(pPg); + } + + /* Write the contents of the page out to the database file. */ + if( rc==SQLITE_OK ){ + assert( (pPg->flags&PGHDR_NEED_SYNC)==0 ); + rc = pager_write_pagelist(pPager, pPg); + } + } + + /* Mark the page as clean. */ + if( rc==SQLITE_OK ){ + PAGERTRACE(("STRESS %d page %d\n", PAGERID(pPager), pPg->pgno)); + sqlite3PcacheMakeClean(pPg); + } + + return pager_error(pPager, rc); +} + + +/* +** Allocate and initialize a new Pager object and put a pointer to it +** in *ppPager. The pager should eventually be freed by passing it +** to sqlite3PagerClose(). +** +** The zFilename argument is the path to the database file to open. +** If zFilename is NULL then a randomly-named temporary file is created +** and used as the file to be cached. Temporary files are be deleted +** automatically when they are closed. If zFilename is ":memory:" then +** all information is held in cache. It is never written to disk. +** This can be used to implement an in-memory database. +** +** The nExtra parameter specifies the number of bytes of space allocated +** along with each page reference. This space is available to the user +** via the sqlite3PagerGetExtra() API. +** +** The flags argument is used to specify properties that affect the +** operation of the pager. It should be passed some bitwise combination +** of the PAGER_* flags. +** +** The vfsFlags parameter is a bitmask to pass to the flags parameter +** of the xOpen() method of the supplied VFS when opening files. +** +** If the pager object is allocated and the specified file opened +** successfully, SQLITE_OK is returned and *ppPager set to point to +** the new pager object. If an error occurs, *ppPager is set to NULL +** and error code returned. This function may return SQLITE_NOMEM +** (sqlite3Malloc() is used to allocate memory), SQLITE_CANTOPEN or +** various SQLITE_IO_XXX errors. +*/ +SQLITE_PRIVATE int sqlite3PagerOpen( + sqlite3_vfs *pVfs, /* The virtual file system to use */ + Pager **ppPager, /* OUT: Return the Pager structure here */ + const char *zFilename, /* Name of the database file to open */ + int nExtra, /* Extra bytes append to each in-memory page */ + int flags, /* flags controlling this file */ + int vfsFlags, /* flags passed through to sqlite3_vfs.xOpen() */ + void (*xReinit)(DbPage*) /* Function to reinitialize pages */ +){ + u8 *pPtr; + Pager *pPager = 0; /* Pager object to allocate and return */ + int rc = SQLITE_OK; /* Return code */ + int tempFile = 0; /* True for temp files (incl. in-memory files) */ + int memDb = 0; /* True if this is an in-memory file */ + int readOnly = 0; /* True if this is a read-only file */ + int journalFileSize; /* Bytes to allocate for each journal fd */ + char *zPathname = 0; /* Full path to database file */ + int nPathname = 0; /* Number of bytes in zPathname */ + int useJournal = (flags & PAGER_OMIT_JOURNAL)==0; /* False to omit journal */ + int pcacheSize = sqlite3PcacheSize(); /* Bytes to allocate for PCache */ + u32 szPageDflt = SQLITE_DEFAULT_PAGE_SIZE; /* Default page size */ + const char *zUri = 0; /* URI args to copy */ + int nUri = 0; /* Number of bytes of URI args at *zUri */ + + /* Figure out how much space is required for each journal file-handle + ** (there are two of them, the main journal and the sub-journal). This + ** is the maximum space required for an in-memory journal file handle + ** and a regular journal file-handle. Note that a "regular journal-handle" + ** may be a wrapper capable of caching the first portion of the journal + ** file in memory to implement the atomic-write optimization (see + ** source file journal.c). + */ + if( sqlite3JournalSize(pVfs)>sqlite3MemJournalSize() ){ + journalFileSize = ROUND8(sqlite3JournalSize(pVfs)); + }else{ + journalFileSize = ROUND8(sqlite3MemJournalSize()); + } + + /* Set the output variable to NULL in case an error occurs. */ + *ppPager = 0; + +#ifndef SQLITE_OMIT_MEMORYDB + if( flags & PAGER_MEMORY ){ + memDb = 1; + if( zFilename && zFilename[0] ){ + zPathname = sqlite3DbStrDup(0, zFilename); + if( zPathname==0 ) return SQLITE_NOMEM; + nPathname = sqlite3Strlen30(zPathname); + zFilename = 0; + } + } +#endif + + /* Compute and store the full pathname in an allocated buffer pointed + ** to by zPathname, length nPathname. Or, if this is a temporary file, + ** leave both nPathname and zPathname set to 0. + */ + if( zFilename && zFilename[0] ){ + const char *z; + nPathname = pVfs->mxPathname+1; + zPathname = sqlite3DbMallocRaw(0, nPathname*2); + if( zPathname==0 ){ + return SQLITE_NOMEM; + } + zPathname[0] = 0; /* Make sure initialized even if FullPathname() fails */ + rc = sqlite3OsFullPathname(pVfs, zFilename, nPathname, zPathname); + nPathname = sqlite3Strlen30(zPathname); + z = zUri = &zFilename[sqlite3Strlen30(zFilename)+1]; + while( *z ){ + z += sqlite3Strlen30(z)+1; + z += sqlite3Strlen30(z)+1; + } + nUri = (int)(&z[1] - zUri); + assert( nUri>=0 ); + if( rc==SQLITE_OK && nPathname+8>pVfs->mxPathname ){ + /* This branch is taken when the journal path required by + ** the database being opened will be more than pVfs->mxPathname + ** bytes in length. This means the database cannot be opened, + ** as it will not be possible to open the journal file or even + ** check for a hot-journal before reading. + */ + rc = SQLITE_CANTOPEN_BKPT; + } + if( rc!=SQLITE_OK ){ + sqlite3DbFree(0, zPathname); + return rc; + } + } + + /* Allocate memory for the Pager structure, PCache object, the + ** three file descriptors, the database file name and the journal + ** file name. The layout in memory is as follows: + ** + ** Pager object (sizeof(Pager) bytes) + ** PCache object (sqlite3PcacheSize() bytes) + ** Database file handle (pVfs->szOsFile bytes) + ** Sub-journal file handle (journalFileSize bytes) + ** Main journal file handle (journalFileSize bytes) + ** Database file name (nPathname+1 bytes) + ** Journal file name (nPathname+8+1 bytes) + */ + pPtr = (u8 *)sqlite3MallocZero( + ROUND8(sizeof(*pPager)) + /* Pager structure */ + ROUND8(pcacheSize) + /* PCache object */ + ROUND8(pVfs->szOsFile) + /* The main db file */ + journalFileSize * 2 + /* The two journal files */ + nPathname + 1 + nUri + /* zFilename */ + nPathname + 8 + 2 /* zJournal */ +#ifndef SQLITE_OMIT_WAL + + nPathname + 4 + 2 /* zWal */ +#endif + ); + assert( EIGHT_BYTE_ALIGNMENT(SQLITE_INT_TO_PTR(journalFileSize)) ); + if( !pPtr ){ + sqlite3DbFree(0, zPathname); + return SQLITE_NOMEM; + } + pPager = (Pager*)(pPtr); + pPager->pPCache = (PCache*)(pPtr += ROUND8(sizeof(*pPager))); + pPager->fd = (sqlite3_file*)(pPtr += ROUND8(pcacheSize)); + pPager->sjfd = (sqlite3_file*)(pPtr += ROUND8(pVfs->szOsFile)); + pPager->jfd = (sqlite3_file*)(pPtr += journalFileSize); + pPager->zFilename = (char*)(pPtr += journalFileSize); + assert( EIGHT_BYTE_ALIGNMENT(pPager->jfd) ); + + /* Fill in the Pager.zFilename and Pager.zJournal buffers, if required. */ + if( zPathname ){ + assert( nPathname>0 ); + pPager->zJournal = (char*)(pPtr += nPathname + 1 + nUri); + memcpy(pPager->zFilename, zPathname, nPathname); + if( nUri ) memcpy(&pPager->zFilename[nPathname+1], zUri, nUri); + memcpy(pPager->zJournal, zPathname, nPathname); + memcpy(&pPager->zJournal[nPathname], "-journal\000", 8+2); + sqlite3FileSuffix3(pPager->zFilename, pPager->zJournal); +#ifndef SQLITE_OMIT_WAL + pPager->zWal = &pPager->zJournal[nPathname+8+1]; + memcpy(pPager->zWal, zPathname, nPathname); + memcpy(&pPager->zWal[nPathname], "-wal\000", 4+1); + sqlite3FileSuffix3(pPager->zFilename, pPager->zWal); +#endif + sqlite3DbFree(0, zPathname); + } + pPager->pVfs = pVfs; + pPager->vfsFlags = vfsFlags; + + /* Open the pager file. + */ + if( zFilename && zFilename[0] ){ + int fout = 0; /* VFS flags returned by xOpen() */ + rc = sqlite3OsOpen(pVfs, pPager->zFilename, pPager->fd, vfsFlags, &fout); + assert( !memDb ); + readOnly = (fout&SQLITE_OPEN_READONLY); + + /* If the file was successfully opened for read/write access, + ** choose a default page size in case we have to create the + ** database file. The default page size is the maximum of: + ** + ** + SQLITE_DEFAULT_PAGE_SIZE, + ** + The value returned by sqlite3OsSectorSize() + ** + The largest page size that can be written atomically. + */ + if( rc==SQLITE_OK ){ + int iDc = sqlite3OsDeviceCharacteristics(pPager->fd); + if( !readOnly ){ + setSectorSize(pPager); + assert(SQLITE_DEFAULT_PAGE_SIZE<=SQLITE_MAX_DEFAULT_PAGE_SIZE); + if( szPageDfltsectorSize ){ + if( pPager->sectorSize>SQLITE_MAX_DEFAULT_PAGE_SIZE ){ + szPageDflt = SQLITE_MAX_DEFAULT_PAGE_SIZE; + }else{ + szPageDflt = (u32)pPager->sectorSize; + } + } +#ifdef SQLITE_ENABLE_ATOMIC_WRITE + { + int ii; + assert(SQLITE_IOCAP_ATOMIC512==(512>>8)); + assert(SQLITE_IOCAP_ATOMIC64K==(65536>>8)); + assert(SQLITE_MAX_DEFAULT_PAGE_SIZE<=65536); + for(ii=szPageDflt; ii<=SQLITE_MAX_DEFAULT_PAGE_SIZE; ii=ii*2){ + if( iDc&(SQLITE_IOCAP_ATOMIC|(ii>>8)) ){ + szPageDflt = ii; + } + } + } +#endif + } + pPager->noLock = sqlite3_uri_boolean(zFilename, "nolock", 0); + if( (iDc & SQLITE_IOCAP_IMMUTABLE)!=0 + || sqlite3_uri_boolean(zFilename, "immutable", 0) ){ + vfsFlags |= SQLITE_OPEN_READONLY; + goto act_like_temp_file; + } + } + }else{ + /* If a temporary file is requested, it is not opened immediately. + ** In this case we accept the default page size and delay actually + ** opening the file until the first call to OsWrite(). + ** + ** This branch is also run for an in-memory database. An in-memory + ** database is the same as a temp-file that is never written out to + ** disk and uses an in-memory rollback journal. + ** + ** This branch also runs for files marked as immutable. + */ +act_like_temp_file: + tempFile = 1; + pPager->eState = PAGER_READER; /* Pretend we already have a lock */ + pPager->eLock = EXCLUSIVE_LOCK; /* Pretend we are in EXCLUSIVE locking mode */ + pPager->noLock = 1; /* Do no locking */ + readOnly = (vfsFlags&SQLITE_OPEN_READONLY); + } + + /* The following call to PagerSetPagesize() serves to set the value of + ** Pager.pageSize and to allocate the Pager.pTmpSpace buffer. + */ + if( rc==SQLITE_OK ){ + assert( pPager->memDb==0 ); + rc = sqlite3PagerSetPagesize(pPager, &szPageDflt, -1); + testcase( rc!=SQLITE_OK ); + } + + /* If an error occurred in either of the blocks above, free the + ** Pager structure and close the file. + */ + if( rc!=SQLITE_OK ){ + assert( !pPager->pTmpSpace ); + sqlite3OsClose(pPager->fd); + sqlite3_free(pPager); + return rc; + } + + /* Initialize the PCache object. */ + assert( nExtra<1000 ); + nExtra = ROUND8(nExtra); + sqlite3PcacheOpen(szPageDflt, nExtra, !memDb, + !memDb?pagerStress:0, (void *)pPager, pPager->pPCache); + + PAGERTRACE(("OPEN %d %s\n", FILEHANDLEID(pPager->fd), pPager->zFilename)); + IOTRACE(("OPEN %p %s\n", pPager, pPager->zFilename)) + + pPager->useJournal = (u8)useJournal; + /* pPager->stmtOpen = 0; */ + /* pPager->stmtInUse = 0; */ + /* pPager->nRef = 0; */ + /* pPager->stmtSize = 0; */ + /* pPager->stmtJSize = 0; */ + /* pPager->nPage = 0; */ + pPager->mxPgno = SQLITE_MAX_PAGE_COUNT; + /* pPager->state = PAGER_UNLOCK; */ + /* pPager->errMask = 0; */ + pPager->tempFile = (u8)tempFile; + assert( tempFile==PAGER_LOCKINGMODE_NORMAL + || tempFile==PAGER_LOCKINGMODE_EXCLUSIVE ); + assert( PAGER_LOCKINGMODE_EXCLUSIVE==1 ); + pPager->exclusiveMode = (u8)tempFile; + pPager->changeCountDone = pPager->tempFile; + pPager->memDb = (u8)memDb; + pPager->readOnly = (u8)readOnly; + assert( useJournal || pPager->tempFile ); + pPager->noSync = pPager->tempFile; + if( pPager->noSync ){ + assert( pPager->fullSync==0 ); + assert( pPager->syncFlags==0 ); + assert( pPager->walSyncFlags==0 ); + assert( pPager->ckptSyncFlags==0 ); + }else{ + pPager->fullSync = 1; + pPager->syncFlags = SQLITE_SYNC_NORMAL; + pPager->walSyncFlags = SQLITE_SYNC_NORMAL | WAL_SYNC_TRANSACTIONS; + pPager->ckptSyncFlags = SQLITE_SYNC_NORMAL; + } + /* pPager->pFirst = 0; */ + /* pPager->pFirstSynced = 0; */ + /* pPager->pLast = 0; */ + pPager->nExtra = (u16)nExtra; + pPager->journalSizeLimit = SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT; + assert( isOpen(pPager->fd) || tempFile ); + setSectorSize(pPager); + if( !useJournal ){ + pPager->journalMode = PAGER_JOURNALMODE_OFF; + }else if( memDb ){ + pPager->journalMode = PAGER_JOURNALMODE_MEMORY; + } + /* pPager->xBusyHandler = 0; */ + /* pPager->pBusyHandlerArg = 0; */ + pPager->xReiniter = xReinit; + /* memset(pPager->aHash, 0, sizeof(pPager->aHash)); */ + /* pPager->szMmap = SQLITE_DEFAULT_MMAP_SIZE // will be set by btree.c */ + + *ppPager = pPager; + return SQLITE_OK; +} + + +/* Verify that the database file has not be deleted or renamed out from +** under the pager. Return SQLITE_OK if the database is still were it ought +** to be on disk. Return non-zero (SQLITE_READONLY_DBMOVED or some other error +** code from sqlite3OsAccess()) if the database has gone missing. +*/ +static int databaseIsUnmoved(Pager *pPager){ + int bHasMoved = 0; + int rc; + + if( pPager->tempFile ) return SQLITE_OK; + if( pPager->dbSize==0 ) return SQLITE_OK; + assert( pPager->zFilename && pPager->zFilename[0] ); + rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_HAS_MOVED, &bHasMoved); + if( rc==SQLITE_NOTFOUND ){ + /* If the HAS_MOVED file-control is unimplemented, assume that the file + ** has not been moved. That is the historical behavior of SQLite: prior to + ** version 3.8.3, it never checked */ + rc = SQLITE_OK; + }else if( rc==SQLITE_OK && bHasMoved ){ + rc = SQLITE_READONLY_DBMOVED; + } + return rc; +} + + +/* +** This function is called after transitioning from PAGER_UNLOCK to +** PAGER_SHARED state. It tests if there is a hot journal present in +** the file-system for the given pager. A hot journal is one that +** needs to be played back. According to this function, a hot-journal +** file exists if the following criteria are met: +** +** * The journal file exists in the file system, and +** * No process holds a RESERVED or greater lock on the database file, and +** * The database file itself is greater than 0 bytes in size, and +** * The first byte of the journal file exists and is not 0x00. +** +** If the current size of the database file is 0 but a journal file +** exists, that is probably an old journal left over from a prior +** database with the same name. In this case the journal file is +** just deleted using OsDelete, *pExists is set to 0 and SQLITE_OK +** is returned. +** +** This routine does not check if there is a master journal filename +** at the end of the file. If there is, and that master journal file +** does not exist, then the journal file is not really hot. In this +** case this routine will return a false-positive. The pager_playback() +** routine will discover that the journal file is not really hot and +** will not roll it back. +** +** If a hot-journal file is found to exist, *pExists is set to 1 and +** SQLITE_OK returned. If no hot-journal file is present, *pExists is +** set to 0 and SQLITE_OK returned. If an IO error occurs while trying +** to determine whether or not a hot-journal file exists, the IO error +** code is returned and the value of *pExists is undefined. +*/ +static int hasHotJournal(Pager *pPager, int *pExists){ + sqlite3_vfs * const pVfs = pPager->pVfs; + int rc = SQLITE_OK; /* Return code */ + int exists = 1; /* True if a journal file is present */ + int jrnlOpen = !!isOpen(pPager->jfd); + + assert( pPager->useJournal ); + assert( isOpen(pPager->fd) ); + assert( pPager->eState==PAGER_OPEN ); + + assert( jrnlOpen==0 || ( sqlite3OsDeviceCharacteristics(pPager->jfd) & + SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN + )); + + *pExists = 0; + if( !jrnlOpen ){ + rc = sqlite3OsAccess(pVfs, pPager->zJournal, SQLITE_ACCESS_EXISTS, &exists); + } + if( rc==SQLITE_OK && exists ){ + int locked = 0; /* True if some process holds a RESERVED lock */ + + /* Race condition here: Another process might have been holding the + ** the RESERVED lock and have a journal open at the sqlite3OsAccess() + ** call above, but then delete the journal and drop the lock before + ** we get to the following sqlite3OsCheckReservedLock() call. If that + ** is the case, this routine might think there is a hot journal when + ** in fact there is none. This results in a false-positive which will + ** be dealt with by the playback routine. Ticket #3883. + */ + rc = sqlite3OsCheckReservedLock(pPager->fd, &locked); + if( rc==SQLITE_OK && !locked ){ + Pgno nPage; /* Number of pages in database file */ + + rc = pagerPagecount(pPager, &nPage); + if( rc==SQLITE_OK ){ + /* If the database is zero pages in size, that means that either (1) the + ** journal is a remnant from a prior database with the same name where + ** the database file but not the journal was deleted, or (2) the initial + ** transaction that populates a new database is being rolled back. + ** In either case, the journal file can be deleted. However, take care + ** not to delete the journal file if it is already open due to + ** journal_mode=PERSIST. + */ + if( nPage==0 && !jrnlOpen ){ + sqlite3BeginBenignMalloc(); + if( pagerLockDb(pPager, RESERVED_LOCK)==SQLITE_OK ){ + sqlite3OsDelete(pVfs, pPager->zJournal, 0); + if( !pPager->exclusiveMode ) pagerUnlockDb(pPager, SHARED_LOCK); + } + sqlite3EndBenignMalloc(); + }else{ + /* The journal file exists and no other connection has a reserved + ** or greater lock on the database file. Now check that there is + ** at least one non-zero bytes at the start of the journal file. + ** If there is, then we consider this journal to be hot. If not, + ** it can be ignored. + */ + if( !jrnlOpen ){ + int f = SQLITE_OPEN_READONLY|SQLITE_OPEN_MAIN_JOURNAL; + rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &f); + } + if( rc==SQLITE_OK ){ + u8 first = 0; + rc = sqlite3OsRead(pPager->jfd, (void *)&first, 1, 0); + if( rc==SQLITE_IOERR_SHORT_READ ){ + rc = SQLITE_OK; + } + if( !jrnlOpen ){ + sqlite3OsClose(pPager->jfd); + } + *pExists = (first!=0); + }else if( rc==SQLITE_CANTOPEN ){ + /* If we cannot open the rollback journal file in order to see if + ** its has a zero header, that might be due to an I/O error, or + ** it might be due to the race condition described above and in + ** ticket #3883. Either way, assume that the journal is hot. + ** This might be a false positive. But if it is, then the + ** automatic journal playback and recovery mechanism will deal + ** with it under an EXCLUSIVE lock where we do not need to + ** worry so much with race conditions. + */ + *pExists = 1; + rc = SQLITE_OK; + } + } + } + } + } + + return rc; +} + +/* +** This function is called to obtain a shared lock on the database file. +** It is illegal to call sqlite3PagerAcquire() until after this function +** has been successfully called. If a shared-lock is already held when +** this function is called, it is a no-op. +** +** The following operations are also performed by this function. +** +** 1) If the pager is currently in PAGER_OPEN state (no lock held +** on the database file), then an attempt is made to obtain a +** SHARED lock on the database file. Immediately after obtaining +** the SHARED lock, the file-system is checked for a hot-journal, +** which is played back if present. Following any hot-journal +** rollback, the contents of the cache are validated by checking +** the 'change-counter' field of the database file header and +** discarded if they are found to be invalid. +** +** 2) If the pager is running in exclusive-mode, and there are currently +** no outstanding references to any pages, and is in the error state, +** then an attempt is made to clear the error state by discarding +** the contents of the page cache and rolling back any open journal +** file. +** +** If everything is successful, SQLITE_OK is returned. If an IO error +** occurs while locking the database, checking for a hot-journal file or +** rolling back a journal file, the IO error code is returned. +*/ +SQLITE_PRIVATE int sqlite3PagerSharedLock(Pager *pPager){ + int rc = SQLITE_OK; /* Return code */ + + /* This routine is only called from b-tree and only when there are no + ** outstanding pages. This implies that the pager state should either + ** be OPEN or READER. READER is only possible if the pager is or was in + ** exclusive access mode. + */ + assert( sqlite3PcacheRefCount(pPager->pPCache)==0 ); + assert( assert_pager_state(pPager) ); + assert( pPager->eState==PAGER_OPEN || pPager->eState==PAGER_READER ); + if( NEVER(MEMDB && pPager->errCode) ){ return pPager->errCode; } + + if( !pagerUseWal(pPager) && pPager->eState==PAGER_OPEN ){ + int bHotJournal = 1; /* True if there exists a hot journal-file */ + + assert( !MEMDB ); + + rc = pager_wait_on_lock(pPager, SHARED_LOCK); + if( rc!=SQLITE_OK ){ + assert( pPager->eLock==NO_LOCK || pPager->eLock==UNKNOWN_LOCK ); + goto failed; + } + + /* If a journal file exists, and there is no RESERVED lock on the + ** database file, then it either needs to be played back or deleted. + */ + if( pPager->eLock<=SHARED_LOCK ){ + rc = hasHotJournal(pPager, &bHotJournal); + } + if( rc!=SQLITE_OK ){ + goto failed; + } + if( bHotJournal ){ + if( pPager->readOnly ){ + rc = SQLITE_READONLY_ROLLBACK; + goto failed; + } + + /* Get an EXCLUSIVE lock on the database file. At this point it is + ** important that a RESERVED lock is not obtained on the way to the + ** EXCLUSIVE lock. If it were, another process might open the + ** database file, detect the RESERVED lock, and conclude that the + ** database is safe to read while this process is still rolling the + ** hot-journal back. + ** + ** Because the intermediate RESERVED lock is not requested, any + ** other process attempting to access the database file will get to + ** this point in the code and fail to obtain its own EXCLUSIVE lock + ** on the database file. + ** + ** Unless the pager is in locking_mode=exclusive mode, the lock is + ** downgraded to SHARED_LOCK before this function returns. + */ + rc = pagerLockDb(pPager, EXCLUSIVE_LOCK); + if( rc!=SQLITE_OK ){ + goto failed; + } + + /* If it is not already open and the file exists on disk, open the + ** journal for read/write access. Write access is required because + ** in exclusive-access mode the file descriptor will be kept open + ** and possibly used for a transaction later on. Also, write-access + ** is usually required to finalize the journal in journal_mode=persist + ** mode (and also for journal_mode=truncate on some systems). + ** + ** If the journal does not exist, it usually means that some + ** other connection managed to get in and roll it back before + ** this connection obtained the exclusive lock above. Or, it + ** may mean that the pager was in the error-state when this + ** function was called and the journal file does not exist. + */ + if( !isOpen(pPager->jfd) ){ + sqlite3_vfs * const pVfs = pPager->pVfs; + int bExists; /* True if journal file exists */ + rc = sqlite3OsAccess( + pVfs, pPager->zJournal, SQLITE_ACCESS_EXISTS, &bExists); + if( rc==SQLITE_OK && bExists ){ + int fout = 0; + int f = SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_JOURNAL; + assert( !pPager->tempFile ); + rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &fout); + assert( rc!=SQLITE_OK || isOpen(pPager->jfd) ); + if( rc==SQLITE_OK && fout&SQLITE_OPEN_READONLY ){ + rc = SQLITE_CANTOPEN_BKPT; + sqlite3OsClose(pPager->jfd); + } + } + } + + /* Playback and delete the journal. Drop the database write + ** lock and reacquire the read lock. Purge the cache before + ** playing back the hot-journal so that we don't end up with + ** an inconsistent cache. Sync the hot journal before playing + ** it back since the process that crashed and left the hot journal + ** probably did not sync it and we are required to always sync + ** the journal before playing it back. + */ + if( isOpen(pPager->jfd) ){ + assert( rc==SQLITE_OK ); + rc = pagerSyncHotJournal(pPager); + if( rc==SQLITE_OK ){ + rc = pager_playback(pPager, 1); + pPager->eState = PAGER_OPEN; + } + }else if( !pPager->exclusiveMode ){ + pagerUnlockDb(pPager, SHARED_LOCK); + } + + if( rc!=SQLITE_OK ){ + /* This branch is taken if an error occurs while trying to open + ** or roll back a hot-journal while holding an EXCLUSIVE lock. The + ** pager_unlock() routine will be called before returning to unlock + ** the file. If the unlock attempt fails, then Pager.eLock must be + ** set to UNKNOWN_LOCK (see the comment above the #define for + ** UNKNOWN_LOCK above for an explanation). + ** + ** In order to get pager_unlock() to do this, set Pager.eState to + ** PAGER_ERROR now. This is not actually counted as a transition + ** to ERROR state in the state diagram at the top of this file, + ** since we know that the same call to pager_unlock() will very + ** shortly transition the pager object to the OPEN state. Calling + ** assert_pager_state() would fail now, as it should not be possible + ** to be in ERROR state when there are zero outstanding page + ** references. + */ + pager_error(pPager, rc); + goto failed; + } + + assert( pPager->eState==PAGER_OPEN ); + assert( (pPager->eLock==SHARED_LOCK) + || (pPager->exclusiveMode && pPager->eLock>SHARED_LOCK) + ); + } + + if( !pPager->tempFile && ( + pPager->pBackup + || sqlite3PcachePagecount(pPager->pPCache)>0 + || USEFETCH(pPager) + )){ + /* The shared-lock has just been acquired on the database file + ** and there are already pages in the cache (from a previous + ** read or write transaction). Check to see if the database + ** has been modified. If the database has changed, flush the + ** cache. + ** + ** Database changes is detected by looking at 15 bytes beginning + ** at offset 24 into the file. The first 4 of these 16 bytes are + ** a 32-bit counter that is incremented with each change. The + ** other bytes change randomly with each file change when + ** a codec is in use. + ** + ** There is a vanishingly small chance that a change will not be + ** detected. The chance of an undetected change is so small that + ** it can be neglected. + */ + Pgno nPage = 0; + char dbFileVers[sizeof(pPager->dbFileVers)]; + + rc = pagerPagecount(pPager, &nPage); + if( rc ) goto failed; + + if( nPage>0 ){ + IOTRACE(("CKVERS %p %d\n", pPager, sizeof(dbFileVers))); + rc = sqlite3OsRead(pPager->fd, &dbFileVers, sizeof(dbFileVers), 24); + if( rc!=SQLITE_OK && rc!=SQLITE_IOERR_SHORT_READ ){ + goto failed; + } + }else{ + memset(dbFileVers, 0, sizeof(dbFileVers)); + } + + if( memcmp(pPager->dbFileVers, dbFileVers, sizeof(dbFileVers))!=0 ){ + pager_reset(pPager); + + /* Unmap the database file. It is possible that external processes + ** may have truncated the database file and then extended it back + ** to its original size while this process was not holding a lock. + ** In this case there may exist a Pager.pMap mapping that appears + ** to be the right size but is not actually valid. Avoid this + ** possibility by unmapping the db here. */ + if( USEFETCH(pPager) ){ + sqlite3OsUnfetch(pPager->fd, 0, 0); + } + } + } + + /* If there is a WAL file in the file-system, open this database in WAL + ** mode. Otherwise, the following function call is a no-op. + */ + rc = pagerOpenWalIfPresent(pPager); +#ifndef SQLITE_OMIT_WAL + assert( pPager->pWal==0 || rc==SQLITE_OK ); +#endif + } + + if( pagerUseWal(pPager) ){ + assert( rc==SQLITE_OK ); + rc = pagerBeginReadTransaction(pPager); + } + + if( pPager->eState==PAGER_OPEN && rc==SQLITE_OK ){ + rc = pagerPagecount(pPager, &pPager->dbSize); + } + + failed: + if( rc!=SQLITE_OK ){ + assert( !MEMDB ); + pager_unlock(pPager); + assert( pPager->eState==PAGER_OPEN ); + }else{ + pPager->eState = PAGER_READER; + } + return rc; +} + +/* +** If the reference count has reached zero, rollback any active +** transaction and unlock the pager. +** +** Except, in locking_mode=EXCLUSIVE when there is nothing to in +** the rollback journal, the unlock is not performed and there is +** nothing to rollback, so this routine is a no-op. +*/ +static void pagerUnlockIfUnused(Pager *pPager){ + if( pPager->nMmapOut==0 && (sqlite3PcacheRefCount(pPager->pPCache)==0) ){ + pagerUnlockAndRollback(pPager); + } +} + +/* +** Acquire a reference to page number pgno in pager pPager (a page +** reference has type DbPage*). If the requested reference is +** successfully obtained, it is copied to *ppPage and SQLITE_OK returned. +** +** If the requested page is already in the cache, it is returned. +** Otherwise, a new page object is allocated and populated with data +** read from the database file. In some cases, the pcache module may +** choose not to allocate a new page object and may reuse an existing +** object with no outstanding references. +** +** The extra data appended to a page is always initialized to zeros the +** first time a page is loaded into memory. If the page requested is +** already in the cache when this function is called, then the extra +** data is left as it was when the page object was last used. +** +** If the database image is smaller than the requested page or if a +** non-zero value is passed as the noContent parameter and the +** requested page is not already stored in the cache, then no +** actual disk read occurs. In this case the memory image of the +** page is initialized to all zeros. +** +** If noContent is true, it means that we do not care about the contents +** of the page. This occurs in two scenarios: +** +** a) When reading a free-list leaf page from the database, and +** +** b) When a savepoint is being rolled back and we need to load +** a new page into the cache to be filled with the data read +** from the savepoint journal. +** +** If noContent is true, then the data returned is zeroed instead of +** being read from the database. Additionally, the bits corresponding +** to pgno in Pager.pInJournal (bitvec of pages already written to the +** journal file) and the PagerSavepoint.pInSavepoint bitvecs of any open +** savepoints are set. This means if the page is made writable at any +** point in the future, using a call to sqlite3PagerWrite(), its contents +** will not be journaled. This saves IO. +** +** The acquisition might fail for several reasons. In all cases, +** an appropriate error code is returned and *ppPage is set to NULL. +** +** See also sqlite3PagerLookup(). Both this routine and Lookup() attempt +** to find a page in the in-memory cache first. If the page is not already +** in memory, this routine goes to disk to read it in whereas Lookup() +** just returns 0. This routine acquires a read-lock the first time it +** has to go to disk, and could also playback an old journal if necessary. +** Since Lookup() never goes to disk, it never has to deal with locks +** or journal files. +*/ +SQLITE_PRIVATE int sqlite3PagerAcquire( + Pager *pPager, /* The pager open on the database file */ + Pgno pgno, /* Page number to fetch */ + DbPage **ppPage, /* Write a pointer to the page here */ + int flags /* PAGER_GET_XXX flags */ +){ + int rc = SQLITE_OK; + PgHdr *pPg = 0; + u32 iFrame = 0; /* Frame to read from WAL file */ + const int noContent = (flags & PAGER_GET_NOCONTENT); + + /* It is acceptable to use a read-only (mmap) page for any page except + ** page 1 if there is no write-transaction open or the ACQUIRE_READONLY + ** flag was specified by the caller. And so long as the db is not a + ** temporary or in-memory database. */ + const int bMmapOk = (pgno!=1 && USEFETCH(pPager) + && (pPager->eState==PAGER_READER || (flags & PAGER_GET_READONLY)) +#ifdef SQLITE_HAS_CODEC + && pPager->xCodec==0 +#endif + ); + + assert( pPager->eState>=PAGER_READER ); + assert( assert_pager_state(pPager) ); + assert( noContent==0 || bMmapOk==0 ); + + if( pgno==0 ){ + return SQLITE_CORRUPT_BKPT; + } + + /* If the pager is in the error state, return an error immediately. + ** Otherwise, request the page from the PCache layer. */ + if( pPager->errCode!=SQLITE_OK ){ + rc = pPager->errCode; + }else{ + + if( bMmapOk && pagerUseWal(pPager) ){ + rc = sqlite3WalFindFrame(pPager->pWal, pgno, &iFrame); + if( rc!=SQLITE_OK ) goto pager_acquire_err; + } + + if( bMmapOk && iFrame==0 ){ + void *pData = 0; + + rc = sqlite3OsFetch(pPager->fd, + (i64)(pgno-1) * pPager->pageSize, pPager->pageSize, &pData + ); + + if( rc==SQLITE_OK && pData ){ + if( pPager->eState>PAGER_READER ){ + (void)sqlite3PcacheFetch(pPager->pPCache, pgno, 0, &pPg); + } + if( pPg==0 ){ + rc = pagerAcquireMapPage(pPager, pgno, pData, &pPg); + }else{ + sqlite3OsUnfetch(pPager->fd, (i64)(pgno-1)*pPager->pageSize, pData); + } + if( pPg ){ + assert( rc==SQLITE_OK ); + *ppPage = pPg; + return SQLITE_OK; + } + } + if( rc!=SQLITE_OK ){ + goto pager_acquire_err; + } + } + + rc = sqlite3PcacheFetch(pPager->pPCache, pgno, 1, ppPage); + } + + if( rc!=SQLITE_OK ){ + /* Either the call to sqlite3PcacheFetch() returned an error or the + ** pager was already in the error-state when this function was called. + ** Set pPg to 0 and jump to the exception handler. */ + pPg = 0; + goto pager_acquire_err; + } + assert( (*ppPage)->pgno==pgno ); + assert( (*ppPage)->pPager==pPager || (*ppPage)->pPager==0 ); + + if( (*ppPage)->pPager && !noContent ){ + /* In this case the pcache already contains an initialized copy of + ** the page. Return without further ado. */ + assert( pgno<=PAGER_MAX_PGNO && pgno!=PAGER_MJ_PGNO(pPager) ); + pPager->aStat[PAGER_STAT_HIT]++; + return SQLITE_OK; + + }else{ + /* The pager cache has created a new page. Its content needs to + ** be initialized. */ + + pPg = *ppPage; + pPg->pPager = pPager; + + /* The maximum page number is 2^31. Return SQLITE_CORRUPT if a page + ** number greater than this, or the unused locking-page, is requested. */ + if( pgno>PAGER_MAX_PGNO || pgno==PAGER_MJ_PGNO(pPager) ){ + rc = SQLITE_CORRUPT_BKPT; + goto pager_acquire_err; + } + + if( MEMDB || pPager->dbSizefd) ){ + if( pgno>pPager->mxPgno ){ + rc = SQLITE_FULL; + goto pager_acquire_err; + } + if( noContent ){ + /* Failure to set the bits in the InJournal bit-vectors is benign. + ** It merely means that we might do some extra work to journal a + ** page that does not need to be journaled. Nevertheless, be sure + ** to test the case where a malloc error occurs while trying to set + ** a bit in a bit vector. + */ + sqlite3BeginBenignMalloc(); + if( pgno<=pPager->dbOrigSize ){ + TESTONLY( rc = ) sqlite3BitvecSet(pPager->pInJournal, pgno); + testcase( rc==SQLITE_NOMEM ); + } + TESTONLY( rc = ) addToSavepointBitvecs(pPager, pgno); + testcase( rc==SQLITE_NOMEM ); + sqlite3EndBenignMalloc(); + } + memset(pPg->pData, 0, pPager->pageSize); + IOTRACE(("ZERO %p %d\n", pPager, pgno)); + }else{ + if( pagerUseWal(pPager) && bMmapOk==0 ){ + rc = sqlite3WalFindFrame(pPager->pWal, pgno, &iFrame); + if( rc!=SQLITE_OK ) goto pager_acquire_err; + } + assert( pPg->pPager==pPager ); + pPager->aStat[PAGER_STAT_MISS]++; + rc = readDbPage(pPg, iFrame); + if( rc!=SQLITE_OK ){ + goto pager_acquire_err; + } + } + pager_set_pagehash(pPg); + } + + return SQLITE_OK; + +pager_acquire_err: + assert( rc!=SQLITE_OK ); + if( pPg ){ + sqlite3PcacheDrop(pPg); + } + pagerUnlockIfUnused(pPager); + + *ppPage = 0; + return rc; +} + +/* +** Acquire a page if it is already in the in-memory cache. Do +** not read the page from disk. Return a pointer to the page, +** or 0 if the page is not in cache. +** +** See also sqlite3PagerGet(). The difference between this routine +** and sqlite3PagerGet() is that _get() will go to the disk and read +** in the page if the page is not already in cache. This routine +** returns NULL if the page is not in cache or if a disk I/O error +** has ever happened. +*/ +SQLITE_PRIVATE DbPage *sqlite3PagerLookup(Pager *pPager, Pgno pgno){ + PgHdr *pPg = 0; + assert( pPager!=0 ); + assert( pgno!=0 ); + assert( pPager->pPCache!=0 ); + assert( pPager->eState>=PAGER_READER && pPager->eState!=PAGER_ERROR ); + sqlite3PcacheFetch(pPager->pPCache, pgno, 0, &pPg); + return pPg; +} + +/* +** Release a page reference. +** +** If the number of references to the page drop to zero, then the +** page is added to the LRU list. When all references to all pages +** are released, a rollback occurs and the lock on the database is +** removed. +*/ +SQLITE_PRIVATE void sqlite3PagerUnrefNotNull(DbPage *pPg){ + Pager *pPager; + assert( pPg!=0 ); + pPager = pPg->pPager; + if( pPg->flags & PGHDR_MMAP ){ + pagerReleaseMapPage(pPg); + }else{ + sqlite3PcacheRelease(pPg); + } + pagerUnlockIfUnused(pPager); +} +SQLITE_PRIVATE void sqlite3PagerUnref(DbPage *pPg){ + if( pPg ) sqlite3PagerUnrefNotNull(pPg); +} + +/* +** This function is called at the start of every write transaction. +** There must already be a RESERVED or EXCLUSIVE lock on the database +** file when this routine is called. +** +** Open the journal file for pager pPager and write a journal header +** to the start of it. If there are active savepoints, open the sub-journal +** as well. This function is only used when the journal file is being +** opened to write a rollback log for a transaction. It is not used +** when opening a hot journal file to roll it back. +** +** If the journal file is already open (as it may be in exclusive mode), +** then this function just writes a journal header to the start of the +** already open file. +** +** Whether or not the journal file is opened by this function, the +** Pager.pInJournal bitvec structure is allocated. +** +** Return SQLITE_OK if everything is successful. Otherwise, return +** SQLITE_NOMEM if the attempt to allocate Pager.pInJournal fails, or +** an IO error code if opening or writing the journal file fails. +*/ +static int pager_open_journal(Pager *pPager){ + int rc = SQLITE_OK; /* Return code */ + sqlite3_vfs * const pVfs = pPager->pVfs; /* Local cache of vfs pointer */ + + assert( pPager->eState==PAGER_WRITER_LOCKED ); + assert( assert_pager_state(pPager) ); + assert( pPager->pInJournal==0 ); + + /* If already in the error state, this function is a no-op. But on + ** the other hand, this routine is never called if we are already in + ** an error state. */ + if( NEVER(pPager->errCode) ) return pPager->errCode; + + if( !pagerUseWal(pPager) && pPager->journalMode!=PAGER_JOURNALMODE_OFF ){ + pPager->pInJournal = sqlite3BitvecCreate(pPager->dbSize); + if( pPager->pInJournal==0 ){ + return SQLITE_NOMEM; + } + + /* Open the journal file if it is not already open. */ + if( !isOpen(pPager->jfd) ){ + if( pPager->journalMode==PAGER_JOURNALMODE_MEMORY ){ + sqlite3MemJournalOpen(pPager->jfd); + }else{ + const int flags = /* VFS flags to open journal file */ + SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE| + (pPager->tempFile ? + (SQLITE_OPEN_DELETEONCLOSE|SQLITE_OPEN_TEMP_JOURNAL): + (SQLITE_OPEN_MAIN_JOURNAL) + ); + + /* Verify that the database still has the same name as it did when + ** it was originally opened. */ + rc = databaseIsUnmoved(pPager); + if( rc==SQLITE_OK ){ +#ifdef SQLITE_ENABLE_ATOMIC_WRITE + rc = sqlite3JournalOpen( + pVfs, pPager->zJournal, pPager->jfd, flags, jrnlBufferSize(pPager) + ); +#else + rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, flags, 0); +#endif + } + } + assert( rc!=SQLITE_OK || isOpen(pPager->jfd) ); + } + + + /* Write the first journal header to the journal file and open + ** the sub-journal if necessary. + */ + if( rc==SQLITE_OK ){ + /* TODO: Check if all of these are really required. */ + pPager->nRec = 0; + pPager->journalOff = 0; + pPager->setMaster = 0; + pPager->journalHdr = 0; + rc = writeJournalHdr(pPager); + } + } + + if( rc!=SQLITE_OK ){ + sqlite3BitvecDestroy(pPager->pInJournal); + pPager->pInJournal = 0; + }else{ + assert( pPager->eState==PAGER_WRITER_LOCKED ); + pPager->eState = PAGER_WRITER_CACHEMOD; + } + + return rc; +} + +/* +** Begin a write-transaction on the specified pager object. If a +** write-transaction has already been opened, this function is a no-op. +** +** If the exFlag argument is false, then acquire at least a RESERVED +** lock on the database file. If exFlag is true, then acquire at least +** an EXCLUSIVE lock. If such a lock is already held, no locking +** functions need be called. +** +** If the subjInMemory argument is non-zero, then any sub-journal opened +** within this transaction will be opened as an in-memory file. This +** has no effect if the sub-journal is already opened (as it may be when +** running in exclusive mode) or if the transaction does not require a +** sub-journal. If the subjInMemory argument is zero, then any required +** sub-journal is implemented in-memory if pPager is an in-memory database, +** or using a temporary file otherwise. +*/ +SQLITE_PRIVATE int sqlite3PagerBegin(Pager *pPager, int exFlag, int subjInMemory){ + int rc = SQLITE_OK; + + if( pPager->errCode ) return pPager->errCode; + assert( pPager->eState>=PAGER_READER && pPager->eStatesubjInMemory = (u8)subjInMemory; + + if( ALWAYS(pPager->eState==PAGER_READER) ){ + assert( pPager->pInJournal==0 ); + + if( pagerUseWal(pPager) ){ + /* If the pager is configured to use locking_mode=exclusive, and an + ** exclusive lock on the database is not already held, obtain it now. + */ + if( pPager->exclusiveMode && sqlite3WalExclusiveMode(pPager->pWal, -1) ){ + rc = pagerLockDb(pPager, EXCLUSIVE_LOCK); + if( rc!=SQLITE_OK ){ + return rc; + } + sqlite3WalExclusiveMode(pPager->pWal, 1); + } + + /* Grab the write lock on the log file. If successful, upgrade to + ** PAGER_RESERVED state. Otherwise, return an error code to the caller. + ** The busy-handler is not invoked if another connection already + ** holds the write-lock. If possible, the upper layer will call it. + */ + rc = sqlite3WalBeginWriteTransaction(pPager->pWal); + }else{ + /* Obtain a RESERVED lock on the database file. If the exFlag parameter + ** is true, then immediately upgrade this to an EXCLUSIVE lock. The + ** busy-handler callback can be used when upgrading to the EXCLUSIVE + ** lock, but not when obtaining the RESERVED lock. + */ + rc = pagerLockDb(pPager, RESERVED_LOCK); + if( rc==SQLITE_OK && exFlag ){ + rc = pager_wait_on_lock(pPager, EXCLUSIVE_LOCK); + } + } + + if( rc==SQLITE_OK ){ + /* Change to WRITER_LOCKED state. + ** + ** WAL mode sets Pager.eState to PAGER_WRITER_LOCKED or CACHEMOD + ** when it has an open transaction, but never to DBMOD or FINISHED. + ** This is because in those states the code to roll back savepoint + ** transactions may copy data from the sub-journal into the database + ** file as well as into the page cache. Which would be incorrect in + ** WAL mode. + */ + pPager->eState = PAGER_WRITER_LOCKED; + pPager->dbHintSize = pPager->dbSize; + pPager->dbFileSize = pPager->dbSize; + pPager->dbOrigSize = pPager->dbSize; + pPager->journalOff = 0; + } + + assert( rc==SQLITE_OK || pPager->eState==PAGER_READER ); + assert( rc!=SQLITE_OK || pPager->eState==PAGER_WRITER_LOCKED ); + assert( assert_pager_state(pPager) ); + } + + PAGERTRACE(("TRANSACTION %d\n", PAGERID(pPager))); + return rc; +} + +/* +** Mark a single data page as writeable. The page is written into the +** main journal or sub-journal as required. If the page is written into +** one of the journals, the corresponding bit is set in the +** Pager.pInJournal bitvec and the PagerSavepoint.pInSavepoint bitvecs +** of any open savepoints as appropriate. +*/ +static int pager_write(PgHdr *pPg){ + Pager *pPager = pPg->pPager; + int rc = SQLITE_OK; + int inJournal; + + /* This routine is not called unless a write-transaction has already + ** been started. The journal file may or may not be open at this point. + ** It is never called in the ERROR state. + */ + assert( pPager->eState==PAGER_WRITER_LOCKED + || pPager->eState==PAGER_WRITER_CACHEMOD + || pPager->eState==PAGER_WRITER_DBMOD + ); + assert( assert_pager_state(pPager) ); + assert( pPager->errCode==0 ); + assert( pPager->readOnly==0 ); + + CHECK_PAGE(pPg); + + /* The journal file needs to be opened. Higher level routines have already + ** obtained the necessary locks to begin the write-transaction, but the + ** rollback journal might not yet be open. Open it now if this is the case. + ** + ** This is done before calling sqlite3PcacheMakeDirty() on the page. + ** Otherwise, if it were done after calling sqlite3PcacheMakeDirty(), then + ** an error might occur and the pager would end up in WRITER_LOCKED state + ** with pages marked as dirty in the cache. + */ + if( pPager->eState==PAGER_WRITER_LOCKED ){ + rc = pager_open_journal(pPager); + if( rc!=SQLITE_OK ) return rc; + } + assert( pPager->eState>=PAGER_WRITER_CACHEMOD ); + assert( assert_pager_state(pPager) ); + + /* Mark the page as dirty. If the page has already been written + ** to the journal then we can return right away. + */ + sqlite3PcacheMakeDirty(pPg); + inJournal = pageInJournal(pPager, pPg); + if( inJournal && (pPager->nSavepoint==0 || !subjRequiresPage(pPg)) ){ + assert( !pagerUseWal(pPager) ); + }else{ + + /* The transaction journal now exists and we have a RESERVED or an + ** EXCLUSIVE lock on the main database file. Write the current page to + ** the transaction journal if it is not there already. + */ + if( !inJournal && !pagerUseWal(pPager) ){ + assert( pagerUseWal(pPager)==0 ); + if( pPg->pgno<=pPager->dbOrigSize && isOpen(pPager->jfd) ){ + u32 cksum; + char *pData2; + i64 iOff = pPager->journalOff; + + /* We should never write to the journal file the page that + ** contains the database locks. The following assert verifies + ** that we do not. */ + assert( pPg->pgno!=PAGER_MJ_PGNO(pPager) ); + + assert( pPager->journalHdr<=pPager->journalOff ); + CODEC2(pPager, pPg->pData, pPg->pgno, 7, return SQLITE_NOMEM, pData2); + cksum = pager_cksum(pPager, (u8*)pData2); + + /* Even if an IO or diskfull error occurs while journalling the + ** page in the block above, set the need-sync flag for the page. + ** Otherwise, when the transaction is rolled back, the logic in + ** playback_one_page() will think that the page needs to be restored + ** in the database file. And if an IO error occurs while doing so, + ** then corruption may follow. + */ + pPg->flags |= PGHDR_NEED_SYNC; + + rc = write32bits(pPager->jfd, iOff, pPg->pgno); + if( rc!=SQLITE_OK ) return rc; + rc = sqlite3OsWrite(pPager->jfd, pData2, pPager->pageSize, iOff+4); + if( rc!=SQLITE_OK ) return rc; + rc = write32bits(pPager->jfd, iOff+pPager->pageSize+4, cksum); + if( rc!=SQLITE_OK ) return rc; + + IOTRACE(("JOUT %p %d %lld %d\n", pPager, pPg->pgno, + pPager->journalOff, pPager->pageSize)); + PAGER_INCR(sqlite3_pager_writej_count); + PAGERTRACE(("JOURNAL %d page %d needSync=%d hash(%08x)\n", + PAGERID(pPager), pPg->pgno, + ((pPg->flags&PGHDR_NEED_SYNC)?1:0), pager_pagehash(pPg))); + + pPager->journalOff += 8 + pPager->pageSize; + pPager->nRec++; + assert( pPager->pInJournal!=0 ); + rc = sqlite3BitvecSet(pPager->pInJournal, pPg->pgno); + testcase( rc==SQLITE_NOMEM ); + assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); + rc |= addToSavepointBitvecs(pPager, pPg->pgno); + if( rc!=SQLITE_OK ){ + assert( rc==SQLITE_NOMEM ); + return rc; + } + }else{ + if( pPager->eState!=PAGER_WRITER_DBMOD ){ + pPg->flags |= PGHDR_NEED_SYNC; + } + PAGERTRACE(("APPEND %d page %d needSync=%d\n", + PAGERID(pPager), pPg->pgno, + ((pPg->flags&PGHDR_NEED_SYNC)?1:0))); + } + } + + /* If the statement journal is open and the page is not in it, + ** then write the current page to the statement journal. Note that + ** the statement journal format differs from the standard journal format + ** in that it omits the checksums and the header. + */ + if( pPager->nSavepoint>0 && subjRequiresPage(pPg) ){ + rc = subjournalPage(pPg); + } + } + + /* Update the database size and return. + */ + if( pPager->dbSizepgno ){ + pPager->dbSize = pPg->pgno; + } + return rc; +} + +/* +** Mark a data page as writeable. This routine must be called before +** making changes to a page. The caller must check the return value +** of this function and be careful not to change any page data unless +** this routine returns SQLITE_OK. +** +** The difference between this function and pager_write() is that this +** function also deals with the special case where 2 or more pages +** fit on a single disk sector. In this case all co-resident pages +** must have been written to the journal file before returning. +** +** If an error occurs, SQLITE_NOMEM or an IO error code is returned +** as appropriate. Otherwise, SQLITE_OK. +*/ +SQLITE_PRIVATE int sqlite3PagerWrite(DbPage *pDbPage){ + int rc = SQLITE_OK; + + PgHdr *pPg = pDbPage; + Pager *pPager = pPg->pPager; + + assert( (pPg->flags & PGHDR_MMAP)==0 ); + assert( pPager->eState>=PAGER_WRITER_LOCKED ); + assert( pPager->eState!=PAGER_ERROR ); + assert( assert_pager_state(pPager) ); + + if( pPager->sectorSize > (u32)pPager->pageSize ){ + Pgno nPageCount; /* Total number of pages in database file */ + Pgno pg1; /* First page of the sector pPg is located on. */ + int nPage = 0; /* Number of pages starting at pg1 to journal */ + int ii; /* Loop counter */ + int needSync = 0; /* True if any page has PGHDR_NEED_SYNC */ + Pgno nPagePerSector = (pPager->sectorSize/pPager->pageSize); + + /* Set the doNotSpill NOSYNC bit to 1. This is because we cannot allow + ** a journal header to be written between the pages journaled by + ** this function. + */ + assert( !MEMDB ); + assert( (pPager->doNotSpill & SPILLFLAG_NOSYNC)==0 ); + pPager->doNotSpill |= SPILLFLAG_NOSYNC; + + /* This trick assumes that both the page-size and sector-size are + ** an integer power of 2. It sets variable pg1 to the identifier + ** of the first page of the sector pPg is located on. + */ + pg1 = ((pPg->pgno-1) & ~(nPagePerSector-1)) + 1; + + nPageCount = pPager->dbSize; + if( pPg->pgno>nPageCount ){ + nPage = (pPg->pgno - pg1)+1; + }else if( (pg1+nPagePerSector-1)>nPageCount ){ + nPage = nPageCount+1-pg1; + }else{ + nPage = nPagePerSector; + } + assert(nPage>0); + assert(pg1<=pPg->pgno); + assert((pg1+nPage)>pPg->pgno); + + for(ii=0; iipgno || !sqlite3BitvecTest(pPager->pInJournal, pg) ){ + if( pg!=PAGER_MJ_PGNO(pPager) ){ + rc = sqlite3PagerGet(pPager, pg, &pPage); + if( rc==SQLITE_OK ){ + rc = pager_write(pPage); + if( pPage->flags&PGHDR_NEED_SYNC ){ + needSync = 1; + } + sqlite3PagerUnrefNotNull(pPage); + } + } + }else if( (pPage = pager_lookup(pPager, pg))!=0 ){ + if( pPage->flags&PGHDR_NEED_SYNC ){ + needSync = 1; + } + sqlite3PagerUnrefNotNull(pPage); + } + } + + /* If the PGHDR_NEED_SYNC flag is set for any of the nPage pages + ** starting at pg1, then it needs to be set for all of them. Because + ** writing to any of these nPage pages may damage the others, the + ** journal file must contain sync()ed copies of all of them + ** before any of them can be written out to the database file. + */ + if( rc==SQLITE_OK && needSync ){ + assert( !MEMDB ); + for(ii=0; iiflags |= PGHDR_NEED_SYNC; + sqlite3PagerUnrefNotNull(pPage); + } + } + } + + assert( (pPager->doNotSpill & SPILLFLAG_NOSYNC)!=0 ); + pPager->doNotSpill &= ~SPILLFLAG_NOSYNC; + }else{ + rc = pager_write(pDbPage); + } + return rc; +} + +/* +** Return TRUE if the page given in the argument was previously passed +** to sqlite3PagerWrite(). In other words, return TRUE if it is ok +** to change the content of the page. +*/ +#ifndef NDEBUG +SQLITE_PRIVATE int sqlite3PagerIswriteable(DbPage *pPg){ + return pPg->flags&PGHDR_DIRTY; +} +#endif + +/* +** A call to this routine tells the pager that it is not necessary to +** write the information on page pPg back to the disk, even though +** that page might be marked as dirty. This happens, for example, when +** the page has been added as a leaf of the freelist and so its +** content no longer matters. +** +** The overlying software layer calls this routine when all of the data +** on the given page is unused. The pager marks the page as clean so +** that it does not get written to disk. +** +** Tests show that this optimization can quadruple the speed of large +** DELETE operations. +*/ +SQLITE_PRIVATE void sqlite3PagerDontWrite(PgHdr *pPg){ + Pager *pPager = pPg->pPager; + if( (pPg->flags&PGHDR_DIRTY) && pPager->nSavepoint==0 ){ + PAGERTRACE(("DONT_WRITE page %d of %d\n", pPg->pgno, PAGERID(pPager))); + IOTRACE(("CLEAN %p %d\n", pPager, pPg->pgno)) + pPg->flags |= PGHDR_DONT_WRITE; + pager_set_pagehash(pPg); + } +} + +/* +** This routine is called to increment the value of the database file +** change-counter, stored as a 4-byte big-endian integer starting at +** byte offset 24 of the pager file. The secondary change counter at +** 92 is also updated, as is the SQLite version number at offset 96. +** +** But this only happens if the pPager->changeCountDone flag is false. +** To avoid excess churning of page 1, the update only happens once. +** See also the pager_write_changecounter() routine that does an +** unconditional update of the change counters. +** +** If the isDirectMode flag is zero, then this is done by calling +** sqlite3PagerWrite() on page 1, then modifying the contents of the +** page data. In this case the file will be updated when the current +** transaction is committed. +** +** The isDirectMode flag may only be non-zero if the library was compiled +** with the SQLITE_ENABLE_ATOMIC_WRITE macro defined. In this case, +** if isDirect is non-zero, then the database file is updated directly +** by writing an updated version of page 1 using a call to the +** sqlite3OsWrite() function. +*/ +static int pager_incr_changecounter(Pager *pPager, int isDirectMode){ + int rc = SQLITE_OK; + + assert( pPager->eState==PAGER_WRITER_CACHEMOD + || pPager->eState==PAGER_WRITER_DBMOD + ); + assert( assert_pager_state(pPager) ); + + /* Declare and initialize constant integer 'isDirect'. If the + ** atomic-write optimization is enabled in this build, then isDirect + ** is initialized to the value passed as the isDirectMode parameter + ** to this function. Otherwise, it is always set to zero. + ** + ** The idea is that if the atomic-write optimization is not + ** enabled at compile time, the compiler can omit the tests of + ** 'isDirect' below, as well as the block enclosed in the + ** "if( isDirect )" condition. + */ +#ifndef SQLITE_ENABLE_ATOMIC_WRITE +# define DIRECT_MODE 0 + assert( isDirectMode==0 ); + UNUSED_PARAMETER(isDirectMode); +#else +# define DIRECT_MODE isDirectMode +#endif + + if( !pPager->changeCountDone && ALWAYS(pPager->dbSize>0) ){ + PgHdr *pPgHdr; /* Reference to page 1 */ + + assert( !pPager->tempFile && isOpen(pPager->fd) ); + + /* Open page 1 of the file for writing. */ + rc = sqlite3PagerGet(pPager, 1, &pPgHdr); + assert( pPgHdr==0 || rc==SQLITE_OK ); + + /* If page one was fetched successfully, and this function is not + ** operating in direct-mode, make page 1 writable. When not in + ** direct mode, page 1 is always held in cache and hence the PagerGet() + ** above is always successful - hence the ALWAYS on rc==SQLITE_OK. + */ + if( !DIRECT_MODE && ALWAYS(rc==SQLITE_OK) ){ + rc = sqlite3PagerWrite(pPgHdr); + } + + if( rc==SQLITE_OK ){ + /* Actually do the update of the change counter */ + pager_write_changecounter(pPgHdr); + + /* If running in direct mode, write the contents of page 1 to the file. */ + if( DIRECT_MODE ){ + const void *zBuf; + assert( pPager->dbFileSize>0 ); + CODEC2(pPager, pPgHdr->pData, 1, 6, rc=SQLITE_NOMEM, zBuf); + if( rc==SQLITE_OK ){ + rc = sqlite3OsWrite(pPager->fd, zBuf, pPager->pageSize, 0); + pPager->aStat[PAGER_STAT_WRITE]++; + } + if( rc==SQLITE_OK ){ + /* Update the pager's copy of the change-counter. Otherwise, the + ** next time a read transaction is opened the cache will be + ** flushed (as the change-counter values will not match). */ + const void *pCopy = (const void *)&((const char *)zBuf)[24]; + memcpy(&pPager->dbFileVers, pCopy, sizeof(pPager->dbFileVers)); + pPager->changeCountDone = 1; + } + }else{ + pPager->changeCountDone = 1; + } + } + + /* Release the page reference. */ + sqlite3PagerUnref(pPgHdr); + } + return rc; +} + +/* +** Sync the database file to disk. This is a no-op for in-memory databases +** or pages with the Pager.noSync flag set. +** +** If successful, or if called on a pager for which it is a no-op, this +** function returns SQLITE_OK. Otherwise, an IO error code is returned. +*/ +SQLITE_PRIVATE int sqlite3PagerSync(Pager *pPager, const char *zMaster){ + int rc = SQLITE_OK; + + if( isOpen(pPager->fd) ){ + void *pArg = (void*)zMaster; + rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_SYNC, pArg); + if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; + } + if( rc==SQLITE_OK && !pPager->noSync ){ + assert( !MEMDB ); + rc = sqlite3OsSync(pPager->fd, pPager->syncFlags); + } + return rc; +} + +/* +** This function may only be called while a write-transaction is active in +** rollback. If the connection is in WAL mode, this call is a no-op. +** Otherwise, if the connection does not already have an EXCLUSIVE lock on +** the database file, an attempt is made to obtain one. +** +** If the EXCLUSIVE lock is already held or the attempt to obtain it is +** successful, or the connection is in WAL mode, SQLITE_OK is returned. +** Otherwise, either SQLITE_BUSY or an SQLITE_IOERR_XXX error code is +** returned. +*/ +SQLITE_PRIVATE int sqlite3PagerExclusiveLock(Pager *pPager){ + int rc = SQLITE_OK; + assert( pPager->eState==PAGER_WRITER_CACHEMOD + || pPager->eState==PAGER_WRITER_DBMOD + || pPager->eState==PAGER_WRITER_LOCKED + ); + assert( assert_pager_state(pPager) ); + if( 0==pagerUseWal(pPager) ){ + rc = pager_wait_on_lock(pPager, EXCLUSIVE_LOCK); + } + return rc; +} + +/* +** Sync the database file for the pager pPager. zMaster points to the name +** of a master journal file that should be written into the individual +** journal file. zMaster may be NULL, which is interpreted as no master +** journal (a single database transaction). +** +** This routine ensures that: +** +** * The database file change-counter is updated, +** * the journal is synced (unless the atomic-write optimization is used), +** * all dirty pages are written to the database file, +** * the database file is truncated (if required), and +** * the database file synced. +** +** The only thing that remains to commit the transaction is to finalize +** (delete, truncate or zero the first part of) the journal file (or +** delete the master journal file if specified). +** +** Note that if zMaster==NULL, this does not overwrite a previous value +** passed to an sqlite3PagerCommitPhaseOne() call. +** +** If the final parameter - noSync - is true, then the database file itself +** is not synced. The caller must call sqlite3PagerSync() directly to +** sync the database file before calling CommitPhaseTwo() to delete the +** journal file in this case. +*/ +SQLITE_PRIVATE int sqlite3PagerCommitPhaseOne( + Pager *pPager, /* Pager object */ + const char *zMaster, /* If not NULL, the master journal name */ + int noSync /* True to omit the xSync on the db file */ +){ + int rc = SQLITE_OK; /* Return code */ + + assert( pPager->eState==PAGER_WRITER_LOCKED + || pPager->eState==PAGER_WRITER_CACHEMOD + || pPager->eState==PAGER_WRITER_DBMOD + || pPager->eState==PAGER_ERROR + ); + assert( assert_pager_state(pPager) ); + + /* If a prior error occurred, report that error again. */ + if( NEVER(pPager->errCode) ) return pPager->errCode; + + PAGERTRACE(("DATABASE SYNC: File=%s zMaster=%s nSize=%d\n", + pPager->zFilename, zMaster, pPager->dbSize)); + + /* If no database changes have been made, return early. */ + if( pPager->eStatepBackup); + }else{ + if( pagerUseWal(pPager) ){ + PgHdr *pList = sqlite3PcacheDirtyList(pPager->pPCache); + PgHdr *pPageOne = 0; + if( pList==0 ){ + /* Must have at least one page for the WAL commit flag. + ** Ticket [2d1a5c67dfc2363e44f29d9bbd57f] 2011-05-18 */ + rc = sqlite3PagerGet(pPager, 1, &pPageOne); + pList = pPageOne; + pList->pDirty = 0; + } + assert( rc==SQLITE_OK ); + if( ALWAYS(pList) ){ + rc = pagerWalFrames(pPager, pList, pPager->dbSize, 1); + } + sqlite3PagerUnref(pPageOne); + if( rc==SQLITE_OK ){ + sqlite3PcacheCleanAll(pPager->pPCache); + } + }else{ + /* The following block updates the change-counter. Exactly how it + ** does this depends on whether or not the atomic-update optimization + ** was enabled at compile time, and if this transaction meets the + ** runtime criteria to use the operation: + ** + ** * The file-system supports the atomic-write property for + ** blocks of size page-size, and + ** * This commit is not part of a multi-file transaction, and + ** * Exactly one page has been modified and store in the journal file. + ** + ** If the optimization was not enabled at compile time, then the + ** pager_incr_changecounter() function is called to update the change + ** counter in 'indirect-mode'. If the optimization is compiled in but + ** is not applicable to this transaction, call sqlite3JournalCreate() + ** to make sure the journal file has actually been created, then call + ** pager_incr_changecounter() to update the change-counter in indirect + ** mode. + ** + ** Otherwise, if the optimization is both enabled and applicable, + ** then call pager_incr_changecounter() to update the change-counter + ** in 'direct' mode. In this case the journal file will never be + ** created for this transaction. + */ + #ifdef SQLITE_ENABLE_ATOMIC_WRITE + PgHdr *pPg; + assert( isOpen(pPager->jfd) + || pPager->journalMode==PAGER_JOURNALMODE_OFF + || pPager->journalMode==PAGER_JOURNALMODE_WAL + ); + if( !zMaster && isOpen(pPager->jfd) + && pPager->journalOff==jrnlBufferSize(pPager) + && pPager->dbSize>=pPager->dbOrigSize + && (0==(pPg = sqlite3PcacheDirtyList(pPager->pPCache)) || 0==pPg->pDirty) + ){ + /* Update the db file change counter via the direct-write method. The + ** following call will modify the in-memory representation of page 1 + ** to include the updated change counter and then write page 1 + ** directly to the database file. Because of the atomic-write + ** property of the host file-system, this is safe. + */ + rc = pager_incr_changecounter(pPager, 1); + }else{ + rc = sqlite3JournalCreate(pPager->jfd); + if( rc==SQLITE_OK ){ + rc = pager_incr_changecounter(pPager, 0); + } + } + #else + rc = pager_incr_changecounter(pPager, 0); + #endif + if( rc!=SQLITE_OK ) goto commit_phase_one_exit; + + /* Write the master journal name into the journal file. If a master + ** journal file name has already been written to the journal file, + ** or if zMaster is NULL (no master journal), then this call is a no-op. + */ + rc = writeMasterJournal(pPager, zMaster); + if( rc!=SQLITE_OK ) goto commit_phase_one_exit; + + /* Sync the journal file and write all dirty pages to the database. + ** If the atomic-update optimization is being used, this sync will not + ** create the journal file or perform any real IO. + ** + ** Because the change-counter page was just modified, unless the + ** atomic-update optimization is used it is almost certain that the + ** journal requires a sync here. However, in locking_mode=exclusive + ** on a system under memory pressure it is just possible that this is + ** not the case. In this case it is likely enough that the redundant + ** xSync() call will be changed to a no-op by the OS anyhow. + */ + rc = syncJournal(pPager, 0); + if( rc!=SQLITE_OK ) goto commit_phase_one_exit; + + rc = pager_write_pagelist(pPager,sqlite3PcacheDirtyList(pPager->pPCache)); + if( rc!=SQLITE_OK ){ + assert( rc!=SQLITE_IOERR_BLOCKED ); + goto commit_phase_one_exit; + } + sqlite3PcacheCleanAll(pPager->pPCache); + + /* If the file on disk is smaller than the database image, use + ** pager_truncate to grow the file here. This can happen if the database + ** image was extended as part of the current transaction and then the + ** last page in the db image moved to the free-list. In this case the + ** last page is never written out to disk, leaving the database file + ** undersized. Fix this now if it is the case. */ + if( pPager->dbSize>pPager->dbFileSize ){ + Pgno nNew = pPager->dbSize - (pPager->dbSize==PAGER_MJ_PGNO(pPager)); + assert( pPager->eState==PAGER_WRITER_DBMOD ); + rc = pager_truncate(pPager, nNew); + if( rc!=SQLITE_OK ) goto commit_phase_one_exit; + } + + /* Finally, sync the database file. */ + if( !noSync ){ + rc = sqlite3PagerSync(pPager, zMaster); + } + IOTRACE(("DBSYNC %p\n", pPager)) + } + } + +commit_phase_one_exit: + if( rc==SQLITE_OK && !pagerUseWal(pPager) ){ + pPager->eState = PAGER_WRITER_FINISHED; + } + return rc; +} + + +/* +** When this function is called, the database file has been completely +** updated to reflect the changes made by the current transaction and +** synced to disk. The journal file still exists in the file-system +** though, and if a failure occurs at this point it will eventually +** be used as a hot-journal and the current transaction rolled back. +** +** This function finalizes the journal file, either by deleting, +** truncating or partially zeroing it, so that it cannot be used +** for hot-journal rollback. Once this is done the transaction is +** irrevocably committed. +** +** If an error occurs, an IO error code is returned and the pager +** moves into the error state. Otherwise, SQLITE_OK is returned. +*/ +SQLITE_PRIVATE int sqlite3PagerCommitPhaseTwo(Pager *pPager){ + int rc = SQLITE_OK; /* Return code */ + + /* This routine should not be called if a prior error has occurred. + ** But if (due to a coding error elsewhere in the system) it does get + ** called, just return the same error code without doing anything. */ + if( NEVER(pPager->errCode) ) return pPager->errCode; + + assert( pPager->eState==PAGER_WRITER_LOCKED + || pPager->eState==PAGER_WRITER_FINISHED + || (pagerUseWal(pPager) && pPager->eState==PAGER_WRITER_CACHEMOD) + ); + assert( assert_pager_state(pPager) ); + + /* An optimization. If the database was not actually modified during + ** this transaction, the pager is running in exclusive-mode and is + ** using persistent journals, then this function is a no-op. + ** + ** The start of the journal file currently contains a single journal + ** header with the nRec field set to 0. If such a journal is used as + ** a hot-journal during hot-journal rollback, 0 changes will be made + ** to the database file. So there is no need to zero the journal + ** header. Since the pager is in exclusive mode, there is no need + ** to drop any locks either. + */ + if( pPager->eState==PAGER_WRITER_LOCKED + && pPager->exclusiveMode + && pPager->journalMode==PAGER_JOURNALMODE_PERSIST + ){ + assert( pPager->journalOff==JOURNAL_HDR_SZ(pPager) || !pPager->journalOff ); + pPager->eState = PAGER_READER; + return SQLITE_OK; + } + + PAGERTRACE(("COMMIT %d\n", PAGERID(pPager))); + rc = pager_end_transaction(pPager, pPager->setMaster, 1); + return pager_error(pPager, rc); +} + +/* +** If a write transaction is open, then all changes made within the +** transaction are reverted and the current write-transaction is closed. +** The pager falls back to PAGER_READER state if successful, or PAGER_ERROR +** state if an error occurs. +** +** If the pager is already in PAGER_ERROR state when this function is called, +** it returns Pager.errCode immediately. No work is performed in this case. +** +** Otherwise, in rollback mode, this function performs two functions: +** +** 1) It rolls back the journal file, restoring all database file and +** in-memory cache pages to the state they were in when the transaction +** was opened, and +** +** 2) It finalizes the journal file, so that it is not used for hot +** rollback at any point in the future. +** +** Finalization of the journal file (task 2) is only performed if the +** rollback is successful. +** +** In WAL mode, all cache-entries containing data modified within the +** current transaction are either expelled from the cache or reverted to +** their pre-transaction state by re-reading data from the database or +** WAL files. The WAL transaction is then closed. +*/ +SQLITE_PRIVATE int sqlite3PagerRollback(Pager *pPager){ + int rc = SQLITE_OK; /* Return code */ + PAGERTRACE(("ROLLBACK %d\n", PAGERID(pPager))); + + /* PagerRollback() is a no-op if called in READER or OPEN state. If + ** the pager is already in the ERROR state, the rollback is not + ** attempted here. Instead, the error code is returned to the caller. + */ + assert( assert_pager_state(pPager) ); + if( pPager->eState==PAGER_ERROR ) return pPager->errCode; + if( pPager->eState<=PAGER_READER ) return SQLITE_OK; + + if( pagerUseWal(pPager) ){ + int rc2; + rc = sqlite3PagerSavepoint(pPager, SAVEPOINT_ROLLBACK, -1); + rc2 = pager_end_transaction(pPager, pPager->setMaster, 0); + if( rc==SQLITE_OK ) rc = rc2; + }else if( !isOpen(pPager->jfd) || pPager->eState==PAGER_WRITER_LOCKED ){ + int eState = pPager->eState; + rc = pager_end_transaction(pPager, 0, 0); + if( !MEMDB && eState>PAGER_WRITER_LOCKED ){ + /* This can happen using journal_mode=off. Move the pager to the error + ** state to indicate that the contents of the cache may not be trusted. + ** Any active readers will get SQLITE_ABORT. + */ + pPager->errCode = SQLITE_ABORT; + pPager->eState = PAGER_ERROR; + return rc; + } + }else{ + rc = pager_playback(pPager, 0); + } + + assert( pPager->eState==PAGER_READER || rc!=SQLITE_OK ); + assert( rc==SQLITE_OK || rc==SQLITE_FULL || rc==SQLITE_CORRUPT + || rc==SQLITE_NOMEM || (rc&0xFF)==SQLITE_IOERR + || rc==SQLITE_CANTOPEN + ); + + /* If an error occurs during a ROLLBACK, we can no longer trust the pager + ** cache. So call pager_error() on the way out to make any error persistent. + */ + return pager_error(pPager, rc); +} + +/* +** Return TRUE if the database file is opened read-only. Return FALSE +** if the database is (in theory) writable. +*/ +SQLITE_PRIVATE u8 sqlite3PagerIsreadonly(Pager *pPager){ + return pPager->readOnly; +} + +/* +** Return the number of references to the pager. +*/ +SQLITE_PRIVATE int sqlite3PagerRefcount(Pager *pPager){ + return sqlite3PcacheRefCount(pPager->pPCache); +} + +/* +** Return the approximate number of bytes of memory currently +** used by the pager and its associated cache. +*/ +SQLITE_PRIVATE int sqlite3PagerMemUsed(Pager *pPager){ + int perPageSize = pPager->pageSize + pPager->nExtra + sizeof(PgHdr) + + 5*sizeof(void*); + return perPageSize*sqlite3PcachePagecount(pPager->pPCache) + + sqlite3MallocSize(pPager) + + pPager->pageSize; +} + +/* +** Return the number of references to the specified page. +*/ +SQLITE_PRIVATE int sqlite3PagerPageRefcount(DbPage *pPage){ + return sqlite3PcachePageRefcount(pPage); +} + +#ifdef SQLITE_TEST +/* +** This routine is used for testing and analysis only. +*/ +SQLITE_PRIVATE int *sqlite3PagerStats(Pager *pPager){ + static int a[11]; + a[0] = sqlite3PcacheRefCount(pPager->pPCache); + a[1] = sqlite3PcachePagecount(pPager->pPCache); + a[2] = sqlite3PcacheGetCachesize(pPager->pPCache); + a[3] = pPager->eState==PAGER_OPEN ? -1 : (int) pPager->dbSize; + a[4] = pPager->eState; + a[5] = pPager->errCode; + a[6] = pPager->aStat[PAGER_STAT_HIT]; + a[7] = pPager->aStat[PAGER_STAT_MISS]; + a[8] = 0; /* Used to be pPager->nOvfl */ + a[9] = pPager->nRead; + a[10] = pPager->aStat[PAGER_STAT_WRITE]; + return a; +} +#endif + +/* +** Parameter eStat must be either SQLITE_DBSTATUS_CACHE_HIT or +** SQLITE_DBSTATUS_CACHE_MISS. Before returning, *pnVal is incremented by the +** current cache hit or miss count, according to the value of eStat. If the +** reset parameter is non-zero, the cache hit or miss count is zeroed before +** returning. +*/ +SQLITE_PRIVATE void sqlite3PagerCacheStat(Pager *pPager, int eStat, int reset, int *pnVal){ + + assert( eStat==SQLITE_DBSTATUS_CACHE_HIT + || eStat==SQLITE_DBSTATUS_CACHE_MISS + || eStat==SQLITE_DBSTATUS_CACHE_WRITE + ); + + assert( SQLITE_DBSTATUS_CACHE_HIT+1==SQLITE_DBSTATUS_CACHE_MISS ); + assert( SQLITE_DBSTATUS_CACHE_HIT+2==SQLITE_DBSTATUS_CACHE_WRITE ); + assert( PAGER_STAT_HIT==0 && PAGER_STAT_MISS==1 && PAGER_STAT_WRITE==2 ); + + *pnVal += pPager->aStat[eStat - SQLITE_DBSTATUS_CACHE_HIT]; + if( reset ){ + pPager->aStat[eStat - SQLITE_DBSTATUS_CACHE_HIT] = 0; + } +} + +/* +** Return true if this is an in-memory pager. +*/ +SQLITE_PRIVATE int sqlite3PagerIsMemdb(Pager *pPager){ + return MEMDB; +} + +/* +** Check that there are at least nSavepoint savepoints open. If there are +** currently less than nSavepoints open, then open one or more savepoints +** to make up the difference. If the number of savepoints is already +** equal to nSavepoint, then this function is a no-op. +** +** If a memory allocation fails, SQLITE_NOMEM is returned. If an error +** occurs while opening the sub-journal file, then an IO error code is +** returned. Otherwise, SQLITE_OK. +*/ +SQLITE_PRIVATE int sqlite3PagerOpenSavepoint(Pager *pPager, int nSavepoint){ + int rc = SQLITE_OK; /* Return code */ + int nCurrent = pPager->nSavepoint; /* Current number of savepoints */ + + assert( pPager->eState>=PAGER_WRITER_LOCKED ); + assert( assert_pager_state(pPager) ); + + if( nSavepoint>nCurrent && pPager->useJournal ){ + int ii; /* Iterator variable */ + PagerSavepoint *aNew; /* New Pager.aSavepoint array */ + + /* Grow the Pager.aSavepoint array using realloc(). Return SQLITE_NOMEM + ** if the allocation fails. Otherwise, zero the new portion in case a + ** malloc failure occurs while populating it in the for(...) loop below. + */ + aNew = (PagerSavepoint *)sqlite3Realloc( + pPager->aSavepoint, sizeof(PagerSavepoint)*nSavepoint + ); + if( !aNew ){ + return SQLITE_NOMEM; + } + memset(&aNew[nCurrent], 0, (nSavepoint-nCurrent) * sizeof(PagerSavepoint)); + pPager->aSavepoint = aNew; + + /* Populate the PagerSavepoint structures just allocated. */ + for(ii=nCurrent; iidbSize; + if( isOpen(pPager->jfd) && pPager->journalOff>0 ){ + aNew[ii].iOffset = pPager->journalOff; + }else{ + aNew[ii].iOffset = JOURNAL_HDR_SZ(pPager); + } + aNew[ii].iSubRec = pPager->nSubRec; + aNew[ii].pInSavepoint = sqlite3BitvecCreate(pPager->dbSize); + if( !aNew[ii].pInSavepoint ){ + return SQLITE_NOMEM; + } + if( pagerUseWal(pPager) ){ + sqlite3WalSavepoint(pPager->pWal, aNew[ii].aWalData); + } + pPager->nSavepoint = ii+1; + } + assert( pPager->nSavepoint==nSavepoint ); + assertTruncateConstraint(pPager); + } + + return rc; +} + +/* +** This function is called to rollback or release (commit) a savepoint. +** The savepoint to release or rollback need not be the most recently +** created savepoint. +** +** Parameter op is always either SAVEPOINT_ROLLBACK or SAVEPOINT_RELEASE. +** If it is SAVEPOINT_RELEASE, then release and destroy the savepoint with +** index iSavepoint. If it is SAVEPOINT_ROLLBACK, then rollback all changes +** that have occurred since the specified savepoint was created. +** +** The savepoint to rollback or release is identified by parameter +** iSavepoint. A value of 0 means to operate on the outermost savepoint +** (the first created). A value of (Pager.nSavepoint-1) means operate +** on the most recently created savepoint. If iSavepoint is greater than +** (Pager.nSavepoint-1), then this function is a no-op. +** +** If a negative value is passed to this function, then the current +** transaction is rolled back. This is different to calling +** sqlite3PagerRollback() because this function does not terminate +** the transaction or unlock the database, it just restores the +** contents of the database to its original state. +** +** In any case, all savepoints with an index greater than iSavepoint +** are destroyed. If this is a release operation (op==SAVEPOINT_RELEASE), +** then savepoint iSavepoint is also destroyed. +** +** This function may return SQLITE_NOMEM if a memory allocation fails, +** or an IO error code if an IO error occurs while rolling back a +** savepoint. If no errors occur, SQLITE_OK is returned. +*/ +SQLITE_PRIVATE int sqlite3PagerSavepoint(Pager *pPager, int op, int iSavepoint){ + int rc = pPager->errCode; /* Return code */ + + assert( op==SAVEPOINT_RELEASE || op==SAVEPOINT_ROLLBACK ); + assert( iSavepoint>=0 || op==SAVEPOINT_ROLLBACK ); + + if( rc==SQLITE_OK && iSavepointnSavepoint ){ + int ii; /* Iterator variable */ + int nNew; /* Number of remaining savepoints after this op. */ + + /* Figure out how many savepoints will still be active after this + ** operation. Store this value in nNew. Then free resources associated + ** with any savepoints that are destroyed by this operation. + */ + nNew = iSavepoint + (( op==SAVEPOINT_RELEASE ) ? 0 : 1); + for(ii=nNew; iinSavepoint; ii++){ + sqlite3BitvecDestroy(pPager->aSavepoint[ii].pInSavepoint); + } + pPager->nSavepoint = nNew; + + /* If this is a release of the outermost savepoint, truncate + ** the sub-journal to zero bytes in size. */ + if( op==SAVEPOINT_RELEASE ){ + if( nNew==0 && isOpen(pPager->sjfd) ){ + /* Only truncate if it is an in-memory sub-journal. */ + if( sqlite3IsMemJournal(pPager->sjfd) ){ + rc = sqlite3OsTruncate(pPager->sjfd, 0); + assert( rc==SQLITE_OK ); + } + pPager->nSubRec = 0; + } + } + /* Else this is a rollback operation, playback the specified savepoint. + ** If this is a temp-file, it is possible that the journal file has + ** not yet been opened. In this case there have been no changes to + ** the database file, so the playback operation can be skipped. + */ + else if( pagerUseWal(pPager) || isOpen(pPager->jfd) ){ + PagerSavepoint *pSavepoint = (nNew==0)?0:&pPager->aSavepoint[nNew-1]; + rc = pagerPlaybackSavepoint(pPager, pSavepoint); + assert(rc!=SQLITE_DONE); + } + } + + return rc; +} + +/* +** Return the full pathname of the database file. +** +** Except, if the pager is in-memory only, then return an empty string if +** nullIfMemDb is true. This routine is called with nullIfMemDb==1 when +** used to report the filename to the user, for compatibility with legacy +** behavior. But when the Btree needs to know the filename for matching to +** shared cache, it uses nullIfMemDb==0 so that in-memory databases can +** participate in shared-cache. +*/ +SQLITE_PRIVATE const char *sqlite3PagerFilename(Pager *pPager, int nullIfMemDb){ + return (nullIfMemDb && pPager->memDb) ? "" : pPager->zFilename; +} + +/* +** Return the VFS structure for the pager. +*/ +SQLITE_PRIVATE const sqlite3_vfs *sqlite3PagerVfs(Pager *pPager){ + return pPager->pVfs; +} + +/* +** Return the file handle for the database file associated +** with the pager. This might return NULL if the file has +** not yet been opened. +*/ +SQLITE_PRIVATE sqlite3_file *sqlite3PagerFile(Pager *pPager){ + return pPager->fd; +} + +/* +** Return the full pathname of the journal file. +*/ +SQLITE_PRIVATE const char *sqlite3PagerJournalname(Pager *pPager){ + return pPager->zJournal; +} + +/* +** Return true if fsync() calls are disabled for this pager. Return FALSE +** if fsync()s are executed normally. +*/ +SQLITE_PRIVATE int sqlite3PagerNosync(Pager *pPager){ + return pPager->noSync; +} + +#ifdef SQLITE_HAS_CODEC +/* +** Set or retrieve the codec for this pager +*/ +SQLITE_PRIVATE void sqlite3PagerSetCodec( + Pager *pPager, + void *(*xCodec)(void*,void*,Pgno,int), + void (*xCodecSizeChng)(void*,int,int), + void (*xCodecFree)(void*), + void *pCodec +){ + if( pPager->xCodecFree ) pPager->xCodecFree(pPager->pCodec); + pPager->xCodec = pPager->memDb ? 0 : xCodec; + pPager->xCodecSizeChng = xCodecSizeChng; + pPager->xCodecFree = xCodecFree; + pPager->pCodec = pCodec; + pagerReportSize(pPager); +} +SQLITE_PRIVATE void *sqlite3PagerGetCodec(Pager *pPager){ + return pPager->pCodec; +} + +/* +** This function is called by the wal module when writing page content +** into the log file. +** +** This function returns a pointer to a buffer containing the encrypted +** page content. If a malloc fails, this function may return NULL. +*/ +SQLITE_PRIVATE void *sqlite3PagerCodec(PgHdr *pPg){ + void *aData = 0; + CODEC2(pPg->pPager, pPg->pData, pPg->pgno, 6, return 0, aData); + return aData; +} + +/* +** Return the current pager state +*/ +SQLITE_PRIVATE int sqlite3PagerState(Pager *pPager){ + return pPager->eState; +} +#endif /* SQLITE_HAS_CODEC */ + +#ifndef SQLITE_OMIT_AUTOVACUUM +/* +** Move the page pPg to location pgno in the file. +** +** There must be no references to the page previously located at +** pgno (which we call pPgOld) though that page is allowed to be +** in cache. If the page previously located at pgno is not already +** in the rollback journal, it is not put there by by this routine. +** +** References to the page pPg remain valid. Updating any +** meta-data associated with pPg (i.e. data stored in the nExtra bytes +** allocated along with the page) is the responsibility of the caller. +** +** A transaction must be active when this routine is called. It used to be +** required that a statement transaction was not active, but this restriction +** has been removed (CREATE INDEX needs to move a page when a statement +** transaction is active). +** +** If the fourth argument, isCommit, is non-zero, then this page is being +** moved as part of a database reorganization just before the transaction +** is being committed. In this case, it is guaranteed that the database page +** pPg refers to will not be written to again within this transaction. +** +** This function may return SQLITE_NOMEM or an IO error code if an error +** occurs. Otherwise, it returns SQLITE_OK. +*/ +SQLITE_PRIVATE int sqlite3PagerMovepage(Pager *pPager, DbPage *pPg, Pgno pgno, int isCommit){ + PgHdr *pPgOld; /* The page being overwritten. */ + Pgno needSyncPgno = 0; /* Old value of pPg->pgno, if sync is required */ + int rc; /* Return code */ + Pgno origPgno; /* The original page number */ + + assert( pPg->nRef>0 ); + assert( pPager->eState==PAGER_WRITER_CACHEMOD + || pPager->eState==PAGER_WRITER_DBMOD + ); + assert( assert_pager_state(pPager) ); + + /* In order to be able to rollback, an in-memory database must journal + ** the page we are moving from. + */ + if( MEMDB ){ + rc = sqlite3PagerWrite(pPg); + if( rc ) return rc; + } + + /* If the page being moved is dirty and has not been saved by the latest + ** savepoint, then save the current contents of the page into the + ** sub-journal now. This is required to handle the following scenario: + ** + ** BEGIN; + ** + ** SAVEPOINT one; + ** + ** ROLLBACK TO one; + ** + ** If page X were not written to the sub-journal here, it would not + ** be possible to restore its contents when the "ROLLBACK TO one" + ** statement were is processed. + ** + ** subjournalPage() may need to allocate space to store pPg->pgno into + ** one or more savepoint bitvecs. This is the reason this function + ** may return SQLITE_NOMEM. + */ + if( pPg->flags&PGHDR_DIRTY + && subjRequiresPage(pPg) + && SQLITE_OK!=(rc = subjournalPage(pPg)) + ){ + return rc; + } + + PAGERTRACE(("MOVE %d page %d (needSync=%d) moves to %d\n", + PAGERID(pPager), pPg->pgno, (pPg->flags&PGHDR_NEED_SYNC)?1:0, pgno)); + IOTRACE(("MOVE %p %d %d\n", pPager, pPg->pgno, pgno)) + + /* If the journal needs to be sync()ed before page pPg->pgno can + ** be written to, store pPg->pgno in local variable needSyncPgno. + ** + ** If the isCommit flag is set, there is no need to remember that + ** the journal needs to be sync()ed before database page pPg->pgno + ** can be written to. The caller has already promised not to write to it. + */ + if( (pPg->flags&PGHDR_NEED_SYNC) && !isCommit ){ + needSyncPgno = pPg->pgno; + assert( pPager->journalMode==PAGER_JOURNALMODE_OFF || + pageInJournal(pPager, pPg) || pPg->pgno>pPager->dbOrigSize ); + assert( pPg->flags&PGHDR_DIRTY ); + } + + /* If the cache contains a page with page-number pgno, remove it + ** from its hash chain. Also, if the PGHDR_NEED_SYNC flag was set for + ** page pgno before the 'move' operation, it needs to be retained + ** for the page moved there. + */ + pPg->flags &= ~PGHDR_NEED_SYNC; + pPgOld = pager_lookup(pPager, pgno); + assert( !pPgOld || pPgOld->nRef==1 ); + if( pPgOld ){ + pPg->flags |= (pPgOld->flags&PGHDR_NEED_SYNC); + if( MEMDB ){ + /* Do not discard pages from an in-memory database since we might + ** need to rollback later. Just move the page out of the way. */ + sqlite3PcacheMove(pPgOld, pPager->dbSize+1); + }else{ + sqlite3PcacheDrop(pPgOld); + } + } + + origPgno = pPg->pgno; + sqlite3PcacheMove(pPg, pgno); + sqlite3PcacheMakeDirty(pPg); + + /* For an in-memory database, make sure the original page continues + ** to exist, in case the transaction needs to roll back. Use pPgOld + ** as the original page since it has already been allocated. + */ + if( MEMDB ){ + assert( pPgOld ); + sqlite3PcacheMove(pPgOld, origPgno); + sqlite3PagerUnrefNotNull(pPgOld); + } + + if( needSyncPgno ){ + /* If needSyncPgno is non-zero, then the journal file needs to be + ** sync()ed before any data is written to database file page needSyncPgno. + ** Currently, no such page exists in the page-cache and the + ** "is journaled" bitvec flag has been set. This needs to be remedied by + ** loading the page into the pager-cache and setting the PGHDR_NEED_SYNC + ** flag. + ** + ** If the attempt to load the page into the page-cache fails, (due + ** to a malloc() or IO failure), clear the bit in the pInJournal[] + ** array. Otherwise, if the page is loaded and written again in + ** this transaction, it may be written to the database file before + ** it is synced into the journal file. This way, it may end up in + ** the journal file twice, but that is not a problem. + */ + PgHdr *pPgHdr; + rc = sqlite3PagerGet(pPager, needSyncPgno, &pPgHdr); + if( rc!=SQLITE_OK ){ + if( needSyncPgno<=pPager->dbOrigSize ){ + assert( pPager->pTmpSpace!=0 ); + sqlite3BitvecClear(pPager->pInJournal, needSyncPgno, pPager->pTmpSpace); + } + return rc; + } + pPgHdr->flags |= PGHDR_NEED_SYNC; + sqlite3PcacheMakeDirty(pPgHdr); + sqlite3PagerUnrefNotNull(pPgHdr); + } + + return SQLITE_OK; +} +#endif + +/* +** Return a pointer to the data for the specified page. +*/ +SQLITE_PRIVATE void *sqlite3PagerGetData(DbPage *pPg){ + assert( pPg->nRef>0 || pPg->pPager->memDb ); + return pPg->pData; +} + +/* +** Return a pointer to the Pager.nExtra bytes of "extra" space +** allocated along with the specified page. +*/ +SQLITE_PRIVATE void *sqlite3PagerGetExtra(DbPage *pPg){ + return pPg->pExtra; +} + +/* +** Get/set the locking-mode for this pager. Parameter eMode must be one +** of PAGER_LOCKINGMODE_QUERY, PAGER_LOCKINGMODE_NORMAL or +** PAGER_LOCKINGMODE_EXCLUSIVE. If the parameter is not _QUERY, then +** the locking-mode is set to the value specified. +** +** The returned value is either PAGER_LOCKINGMODE_NORMAL or +** PAGER_LOCKINGMODE_EXCLUSIVE, indicating the current (possibly updated) +** locking-mode. +*/ +SQLITE_PRIVATE int sqlite3PagerLockingMode(Pager *pPager, int eMode){ + assert( eMode==PAGER_LOCKINGMODE_QUERY + || eMode==PAGER_LOCKINGMODE_NORMAL + || eMode==PAGER_LOCKINGMODE_EXCLUSIVE ); + assert( PAGER_LOCKINGMODE_QUERY<0 ); + assert( PAGER_LOCKINGMODE_NORMAL>=0 && PAGER_LOCKINGMODE_EXCLUSIVE>=0 ); + assert( pPager->exclusiveMode || 0==sqlite3WalHeapMemory(pPager->pWal) ); + if( eMode>=0 && !pPager->tempFile && !sqlite3WalHeapMemory(pPager->pWal) ){ + pPager->exclusiveMode = (u8)eMode; + } + return (int)pPager->exclusiveMode; +} + +/* +** Set the journal-mode for this pager. Parameter eMode must be one of: +** +** PAGER_JOURNALMODE_DELETE +** PAGER_JOURNALMODE_TRUNCATE +** PAGER_JOURNALMODE_PERSIST +** PAGER_JOURNALMODE_OFF +** PAGER_JOURNALMODE_MEMORY +** PAGER_JOURNALMODE_WAL +** +** The journalmode is set to the value specified if the change is allowed. +** The change may be disallowed for the following reasons: +** +** * An in-memory database can only have its journal_mode set to _OFF +** or _MEMORY. +** +** * Temporary databases cannot have _WAL journalmode. +** +** The returned indicate the current (possibly updated) journal-mode. +*/ +SQLITE_PRIVATE int sqlite3PagerSetJournalMode(Pager *pPager, int eMode){ + u8 eOld = pPager->journalMode; /* Prior journalmode */ + +#ifdef SQLITE_DEBUG + /* The print_pager_state() routine is intended to be used by the debugger + ** only. We invoke it once here to suppress a compiler warning. */ + print_pager_state(pPager); +#endif + + + /* The eMode parameter is always valid */ + assert( eMode==PAGER_JOURNALMODE_DELETE + || eMode==PAGER_JOURNALMODE_TRUNCATE + || eMode==PAGER_JOURNALMODE_PERSIST + || eMode==PAGER_JOURNALMODE_OFF + || eMode==PAGER_JOURNALMODE_WAL + || eMode==PAGER_JOURNALMODE_MEMORY ); + + /* This routine is only called from the OP_JournalMode opcode, and + ** the logic there will never allow a temporary file to be changed + ** to WAL mode. + */ + assert( pPager->tempFile==0 || eMode!=PAGER_JOURNALMODE_WAL ); + + /* Do allow the journalmode of an in-memory database to be set to + ** anything other than MEMORY or OFF + */ + if( MEMDB ){ + assert( eOld==PAGER_JOURNALMODE_MEMORY || eOld==PAGER_JOURNALMODE_OFF ); + if( eMode!=PAGER_JOURNALMODE_MEMORY && eMode!=PAGER_JOURNALMODE_OFF ){ + eMode = eOld; + } + } + + if( eMode!=eOld ){ + + /* Change the journal mode. */ + assert( pPager->eState!=PAGER_ERROR ); + pPager->journalMode = (u8)eMode; + + /* When transistioning from TRUNCATE or PERSIST to any other journal + ** mode except WAL, unless the pager is in locking_mode=exclusive mode, + ** delete the journal file. + */ + assert( (PAGER_JOURNALMODE_TRUNCATE & 5)==1 ); + assert( (PAGER_JOURNALMODE_PERSIST & 5)==1 ); + assert( (PAGER_JOURNALMODE_DELETE & 5)==0 ); + assert( (PAGER_JOURNALMODE_MEMORY & 5)==4 ); + assert( (PAGER_JOURNALMODE_OFF & 5)==0 ); + assert( (PAGER_JOURNALMODE_WAL & 5)==5 ); + + assert( isOpen(pPager->fd) || pPager->exclusiveMode ); + if( !pPager->exclusiveMode && (eOld & 5)==1 && (eMode & 1)==0 ){ + + /* In this case we would like to delete the journal file. If it is + ** not possible, then that is not a problem. Deleting the journal file + ** here is an optimization only. + ** + ** Before deleting the journal file, obtain a RESERVED lock on the + ** database file. This ensures that the journal file is not deleted + ** while it is in use by some other client. + */ + sqlite3OsClose(pPager->jfd); + if( pPager->eLock>=RESERVED_LOCK ){ + sqlite3OsDelete(pPager->pVfs, pPager->zJournal, 0); + }else{ + int rc = SQLITE_OK; + int state = pPager->eState; + assert( state==PAGER_OPEN || state==PAGER_READER ); + if( state==PAGER_OPEN ){ + rc = sqlite3PagerSharedLock(pPager); + } + if( pPager->eState==PAGER_READER ){ + assert( rc==SQLITE_OK ); + rc = pagerLockDb(pPager, RESERVED_LOCK); + } + if( rc==SQLITE_OK ){ + sqlite3OsDelete(pPager->pVfs, pPager->zJournal, 0); + } + if( rc==SQLITE_OK && state==PAGER_READER ){ + pagerUnlockDb(pPager, SHARED_LOCK); + }else if( state==PAGER_OPEN ){ + pager_unlock(pPager); + } + assert( state==pPager->eState ); + } + } + } + + /* Return the new journal mode */ + return (int)pPager->journalMode; +} + +/* +** Return the current journal mode. +*/ +SQLITE_PRIVATE int sqlite3PagerGetJournalMode(Pager *pPager){ + return (int)pPager->journalMode; +} + +/* +** Return TRUE if the pager is in a state where it is OK to change the +** journalmode. Journalmode changes can only happen when the database +** is unmodified. +*/ +SQLITE_PRIVATE int sqlite3PagerOkToChangeJournalMode(Pager *pPager){ + assert( assert_pager_state(pPager) ); + if( pPager->eState>=PAGER_WRITER_CACHEMOD ) return 0; + if( NEVER(isOpen(pPager->jfd) && pPager->journalOff>0) ) return 0; + return 1; +} + +/* +** Get/set the size-limit used for persistent journal files. +** +** Setting the size limit to -1 means no limit is enforced. +** An attempt to set a limit smaller than -1 is a no-op. +*/ +SQLITE_PRIVATE i64 sqlite3PagerJournalSizeLimit(Pager *pPager, i64 iLimit){ + if( iLimit>=-1 ){ + pPager->journalSizeLimit = iLimit; + sqlite3WalLimit(pPager->pWal, iLimit); + } + return pPager->journalSizeLimit; +} + +/* +** Return a pointer to the pPager->pBackup variable. The backup module +** in backup.c maintains the content of this variable. This module +** uses it opaquely as an argument to sqlite3BackupRestart() and +** sqlite3BackupUpdate() only. +*/ +SQLITE_PRIVATE sqlite3_backup **sqlite3PagerBackupPtr(Pager *pPager){ + return &pPager->pBackup; +} + +#ifndef SQLITE_OMIT_VACUUM +/* +** Unless this is an in-memory or temporary database, clear the pager cache. +*/ +SQLITE_PRIVATE void sqlite3PagerClearCache(Pager *pPager){ + if( !MEMDB && pPager->tempFile==0 ) pager_reset(pPager); +} +#endif + +#ifndef SQLITE_OMIT_WAL +/* +** This function is called when the user invokes "PRAGMA wal_checkpoint", +** "PRAGMA wal_blocking_checkpoint" or calls the sqlite3_wal_checkpoint() +** or wal_blocking_checkpoint() API functions. +** +** Parameter eMode is one of SQLITE_CHECKPOINT_PASSIVE, FULL or RESTART. +*/ +SQLITE_PRIVATE int sqlite3PagerCheckpoint(Pager *pPager, int eMode, int *pnLog, int *pnCkpt){ + int rc = SQLITE_OK; + if( pPager->pWal ){ + rc = sqlite3WalCheckpoint(pPager->pWal, eMode, + pPager->xBusyHandler, pPager->pBusyHandlerArg, + pPager->ckptSyncFlags, pPager->pageSize, (u8 *)pPager->pTmpSpace, + pnLog, pnCkpt + ); + } + return rc; +} + +SQLITE_PRIVATE int sqlite3PagerWalCallback(Pager *pPager){ + return sqlite3WalCallback(pPager->pWal); +} + +/* +** Return true if the underlying VFS for the given pager supports the +** primitives necessary for write-ahead logging. +*/ +SQLITE_PRIVATE int sqlite3PagerWalSupported(Pager *pPager){ + const sqlite3_io_methods *pMethods = pPager->fd->pMethods; + return pPager->exclusiveMode || (pMethods->iVersion>=2 && pMethods->xShmMap); +} + +/* +** Attempt to take an exclusive lock on the database file. If a PENDING lock +** is obtained instead, immediately release it. +*/ +static int pagerExclusiveLock(Pager *pPager){ + int rc; /* Return code */ + + assert( pPager->eLock==SHARED_LOCK || pPager->eLock==EXCLUSIVE_LOCK ); + rc = pagerLockDb(pPager, EXCLUSIVE_LOCK); + if( rc!=SQLITE_OK ){ + /* If the attempt to grab the exclusive lock failed, release the + ** pending lock that may have been obtained instead. */ + pagerUnlockDb(pPager, SHARED_LOCK); + } + + return rc; +} + +/* +** Call sqlite3WalOpen() to open the WAL handle. If the pager is in +** exclusive-locking mode when this function is called, take an EXCLUSIVE +** lock on the database file and use heap-memory to store the wal-index +** in. Otherwise, use the normal shared-memory. +*/ +static int pagerOpenWal(Pager *pPager){ + int rc = SQLITE_OK; + + assert( pPager->pWal==0 && pPager->tempFile==0 ); + assert( pPager->eLock==SHARED_LOCK || pPager->eLock==EXCLUSIVE_LOCK ); + + /* If the pager is already in exclusive-mode, the WAL module will use + ** heap-memory for the wal-index instead of the VFS shared-memory + ** implementation. Take the exclusive lock now, before opening the WAL + ** file, to make sure this is safe. + */ + if( pPager->exclusiveMode ){ + rc = pagerExclusiveLock(pPager); + } + + /* Open the connection to the log file. If this operation fails, + ** (e.g. due to malloc() failure), return an error code. + */ + if( rc==SQLITE_OK ){ + rc = sqlite3WalOpen(pPager->pVfs, + pPager->fd, pPager->zWal, pPager->exclusiveMode, + pPager->journalSizeLimit, &pPager->pWal + ); + } + pagerFixMaplimit(pPager); + + return rc; +} + + +/* +** The caller must be holding a SHARED lock on the database file to call +** this function. +** +** If the pager passed as the first argument is open on a real database +** file (not a temp file or an in-memory database), and the WAL file +** is not already open, make an attempt to open it now. If successful, +** return SQLITE_OK. If an error occurs or the VFS used by the pager does +** not support the xShmXXX() methods, return an error code. *pbOpen is +** not modified in either case. +** +** If the pager is open on a temp-file (or in-memory database), or if +** the WAL file is already open, set *pbOpen to 1 and return SQLITE_OK +** without doing anything. +*/ +SQLITE_PRIVATE int sqlite3PagerOpenWal( + Pager *pPager, /* Pager object */ + int *pbOpen /* OUT: Set to true if call is a no-op */ +){ + int rc = SQLITE_OK; /* Return code */ + + assert( assert_pager_state(pPager) ); + assert( pPager->eState==PAGER_OPEN || pbOpen ); + assert( pPager->eState==PAGER_READER || !pbOpen ); + assert( pbOpen==0 || *pbOpen==0 ); + assert( pbOpen!=0 || (!pPager->tempFile && !pPager->pWal) ); + + if( !pPager->tempFile && !pPager->pWal ){ + if( !sqlite3PagerWalSupported(pPager) ) return SQLITE_CANTOPEN; + + /* Close any rollback journal previously open */ + sqlite3OsClose(pPager->jfd); + + rc = pagerOpenWal(pPager); + if( rc==SQLITE_OK ){ + pPager->journalMode = PAGER_JOURNALMODE_WAL; + pPager->eState = PAGER_OPEN; + } + }else{ + *pbOpen = 1; + } + + return rc; +} + +/* +** This function is called to close the connection to the log file prior +** to switching from WAL to rollback mode. +** +** Before closing the log file, this function attempts to take an +** EXCLUSIVE lock on the database file. If this cannot be obtained, an +** error (SQLITE_BUSY) is returned and the log connection is not closed. +** If successful, the EXCLUSIVE lock is not released before returning. +*/ +SQLITE_PRIVATE int sqlite3PagerCloseWal(Pager *pPager){ + int rc = SQLITE_OK; + + assert( pPager->journalMode==PAGER_JOURNALMODE_WAL ); + + /* If the log file is not already open, but does exist in the file-system, + ** it may need to be checkpointed before the connection can switch to + ** rollback mode. Open it now so this can happen. + */ + if( !pPager->pWal ){ + int logexists = 0; + rc = pagerLockDb(pPager, SHARED_LOCK); + if( rc==SQLITE_OK ){ + rc = sqlite3OsAccess( + pPager->pVfs, pPager->zWal, SQLITE_ACCESS_EXISTS, &logexists + ); + } + if( rc==SQLITE_OK && logexists ){ + rc = pagerOpenWal(pPager); + } + } + + /* Checkpoint and close the log. Because an EXCLUSIVE lock is held on + ** the database file, the log and log-summary files will be deleted. + */ + if( rc==SQLITE_OK && pPager->pWal ){ + rc = pagerExclusiveLock(pPager); + if( rc==SQLITE_OK ){ + rc = sqlite3WalClose(pPager->pWal, pPager->ckptSyncFlags, + pPager->pageSize, (u8*)pPager->pTmpSpace); + pPager->pWal = 0; + pagerFixMaplimit(pPager); + } + } + return rc; +} + +#endif /* !SQLITE_OMIT_WAL */ + +#ifdef SQLITE_ENABLE_ZIPVFS +/* +** A read-lock must be held on the pager when this function is called. If +** the pager is in WAL mode and the WAL file currently contains one or more +** frames, return the size in bytes of the page images stored within the +** WAL frames. Otherwise, if this is not a WAL database or the WAL file +** is empty, return 0. +*/ +SQLITE_PRIVATE int sqlite3PagerWalFramesize(Pager *pPager){ + assert( pPager->eState==PAGER_READER ); + return sqlite3WalFramesize(pPager->pWal); +} +#endif + +#endif /* SQLITE_OMIT_DISKIO */ + +/************** End of pager.c ***********************************************/ +/************** Begin file wal.c *********************************************/ +/* +** 2010 February 1 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains the implementation of a write-ahead log (WAL) used in +** "journal_mode=WAL" mode. +** +** WRITE-AHEAD LOG (WAL) FILE FORMAT +** +** A WAL file consists of a header followed by zero or more "frames". +** Each frame records the revised content of a single page from the +** database file. All changes to the database are recorded by writing +** frames into the WAL. Transactions commit when a frame is written that +** contains a commit marker. A single WAL can and usually does record +** multiple transactions. Periodically, the content of the WAL is +** transferred back into the database file in an operation called a +** "checkpoint". +** +** A single WAL file can be used multiple times. In other words, the +** WAL can fill up with frames and then be checkpointed and then new +** frames can overwrite the old ones. A WAL always grows from beginning +** toward the end. Checksums and counters attached to each frame are +** used to determine which frames within the WAL are valid and which +** are leftovers from prior checkpoints. +** +** The WAL header is 32 bytes in size and consists of the following eight +** big-endian 32-bit unsigned integer values: +** +** 0: Magic number. 0x377f0682 or 0x377f0683 +** 4: File format version. Currently 3007000 +** 8: Database page size. Example: 1024 +** 12: Checkpoint sequence number +** 16: Salt-1, random integer incremented with each checkpoint +** 20: Salt-2, a different random integer changing with each ckpt +** 24: Checksum-1 (first part of checksum for first 24 bytes of header). +** 28: Checksum-2 (second part of checksum for first 24 bytes of header). +** +** Immediately following the wal-header are zero or more frames. Each +** frame consists of a 24-byte frame-header followed by a bytes +** of page data. The frame-header is six big-endian 32-bit unsigned +** integer values, as follows: +** +** 0: Page number. +** 4: For commit records, the size of the database image in pages +** after the commit. For all other records, zero. +** 8: Salt-1 (copied from the header) +** 12: Salt-2 (copied from the header) +** 16: Checksum-1. +** 20: Checksum-2. +** +** A frame is considered valid if and only if the following conditions are +** true: +** +** (1) The salt-1 and salt-2 values in the frame-header match +** salt values in the wal-header +** +** (2) The checksum values in the final 8 bytes of the frame-header +** exactly match the checksum computed consecutively on the +** WAL header and the first 8 bytes and the content of all frames +** up to and including the current frame. +** +** The checksum is computed using 32-bit big-endian integers if the +** magic number in the first 4 bytes of the WAL is 0x377f0683 and it +** is computed using little-endian if the magic number is 0x377f0682. +** The checksum values are always stored in the frame header in a +** big-endian format regardless of which byte order is used to compute +** the checksum. The checksum is computed by interpreting the input as +** an even number of unsigned 32-bit integers: x[0] through x[N]. The +** algorithm used for the checksum is as follows: +** +** for i from 0 to n-1 step 2: +** s0 += x[i] + s1; +** s1 += x[i+1] + s0; +** endfor +** +** Note that s0 and s1 are both weighted checksums using fibonacci weights +** in reverse order (the largest fibonacci weight occurs on the first element +** of the sequence being summed.) The s1 value spans all 32-bit +** terms of the sequence whereas s0 omits the final term. +** +** On a checkpoint, the WAL is first VFS.xSync-ed, then valid content of the +** WAL is transferred into the database, then the database is VFS.xSync-ed. +** The VFS.xSync operations serve as write barriers - all writes launched +** before the xSync must complete before any write that launches after the +** xSync begins. +** +** After each checkpoint, the salt-1 value is incremented and the salt-2 +** value is randomized. This prevents old and new frames in the WAL from +** being considered valid at the same time and being checkpointing together +** following a crash. +** +** READER ALGORITHM +** +** To read a page from the database (call it page number P), a reader +** first checks the WAL to see if it contains page P. If so, then the +** last valid instance of page P that is a followed by a commit frame +** or is a commit frame itself becomes the value read. If the WAL +** contains no copies of page P that are valid and which are a commit +** frame or are followed by a commit frame, then page P is read from +** the database file. +** +** To start a read transaction, the reader records the index of the last +** valid frame in the WAL. The reader uses this recorded "mxFrame" value +** for all subsequent read operations. New transactions can be appended +** to the WAL, but as long as the reader uses its original mxFrame value +** and ignores the newly appended content, it will see a consistent snapshot +** of the database from a single point in time. This technique allows +** multiple concurrent readers to view different versions of the database +** content simultaneously. +** +** The reader algorithm in the previous paragraphs works correctly, but +** because frames for page P can appear anywhere within the WAL, the +** reader has to scan the entire WAL looking for page P frames. If the +** WAL is large (multiple megabytes is typical) that scan can be slow, +** and read performance suffers. To overcome this problem, a separate +** data structure called the wal-index is maintained to expedite the +** search for frames of a particular page. +** +** WAL-INDEX FORMAT +** +** Conceptually, the wal-index is shared memory, though VFS implementations +** might choose to implement the wal-index using a mmapped file. Because +** the wal-index is shared memory, SQLite does not support journal_mode=WAL +** on a network filesystem. All users of the database must be able to +** share memory. +** +** The wal-index is transient. After a crash, the wal-index can (and should +** be) reconstructed from the original WAL file. In fact, the VFS is required +** to either truncate or zero the header of the wal-index when the last +** connection to it closes. Because the wal-index is transient, it can +** use an architecture-specific format; it does not have to be cross-platform. +** Hence, unlike the database and WAL file formats which store all values +** as big endian, the wal-index can store multi-byte values in the native +** byte order of the host computer. +** +** The purpose of the wal-index is to answer this question quickly: Given +** a page number P and a maximum frame index M, return the index of the +** last frame in the wal before frame M for page P in the WAL, or return +** NULL if there are no frames for page P in the WAL prior to M. +** +** The wal-index consists of a header region, followed by an one or +** more index blocks. +** +** The wal-index header contains the total number of frames within the WAL +** in the mxFrame field. +** +** Each index block except for the first contains information on +** HASHTABLE_NPAGE frames. The first index block contains information on +** HASHTABLE_NPAGE_ONE frames. The values of HASHTABLE_NPAGE_ONE and +** HASHTABLE_NPAGE are selected so that together the wal-index header and +** first index block are the same size as all other index blocks in the +** wal-index. +** +** Each index block contains two sections, a page-mapping that contains the +** database page number associated with each wal frame, and a hash-table +** that allows readers to query an index block for a specific page number. +** The page-mapping is an array of HASHTABLE_NPAGE (or HASHTABLE_NPAGE_ONE +** for the first index block) 32-bit page numbers. The first entry in the +** first index-block contains the database page number corresponding to the +** first frame in the WAL file. The first entry in the second index block +** in the WAL file corresponds to the (HASHTABLE_NPAGE_ONE+1)th frame in +** the log, and so on. +** +** The last index block in a wal-index usually contains less than the full +** complement of HASHTABLE_NPAGE (or HASHTABLE_NPAGE_ONE) page-numbers, +** depending on the contents of the WAL file. This does not change the +** allocated size of the page-mapping array - the page-mapping array merely +** contains unused entries. +** +** Even without using the hash table, the last frame for page P +** can be found by scanning the page-mapping sections of each index block +** starting with the last index block and moving toward the first, and +** within each index block, starting at the end and moving toward the +** beginning. The first entry that equals P corresponds to the frame +** holding the content for that page. +** +** The hash table consists of HASHTABLE_NSLOT 16-bit unsigned integers. +** HASHTABLE_NSLOT = 2*HASHTABLE_NPAGE, and there is one entry in the +** hash table for each page number in the mapping section, so the hash +** table is never more than half full. The expected number of collisions +** prior to finding a match is 1. Each entry of the hash table is an +** 1-based index of an entry in the mapping section of the same +** index block. Let K be the 1-based index of the largest entry in +** the mapping section. (For index blocks other than the last, K will +** always be exactly HASHTABLE_NPAGE (4096) and for the last index block +** K will be (mxFrame%HASHTABLE_NPAGE).) Unused slots of the hash table +** contain a value of 0. +** +** To look for page P in the hash table, first compute a hash iKey on +** P as follows: +** +** iKey = (P * 383) % HASHTABLE_NSLOT +** +** Then start scanning entries of the hash table, starting with iKey +** (wrapping around to the beginning when the end of the hash table is +** reached) until an unused hash slot is found. Let the first unused slot +** be at index iUnused. (iUnused might be less than iKey if there was +** wrap-around.) Because the hash table is never more than half full, +** the search is guaranteed to eventually hit an unused entry. Let +** iMax be the value between iKey and iUnused, closest to iUnused, +** where aHash[iMax]==P. If there is no iMax entry (if there exists +** no hash slot such that aHash[i]==p) then page P is not in the +** current index block. Otherwise the iMax-th mapping entry of the +** current index block corresponds to the last entry that references +** page P. +** +** A hash search begins with the last index block and moves toward the +** first index block, looking for entries corresponding to page P. On +** average, only two or three slots in each index block need to be +** examined in order to either find the last entry for page P, or to +** establish that no such entry exists in the block. Each index block +** holds over 4000 entries. So two or three index blocks are sufficient +** to cover a typical 10 megabyte WAL file, assuming 1K pages. 8 or 10 +** comparisons (on average) suffice to either locate a frame in the +** WAL or to establish that the frame does not exist in the WAL. This +** is much faster than scanning the entire 10MB WAL. +** +** Note that entries are added in order of increasing K. Hence, one +** reader might be using some value K0 and a second reader that started +** at a later time (after additional transactions were added to the WAL +** and to the wal-index) might be using a different value K1, where K1>K0. +** Both readers can use the same hash table and mapping section to get +** the correct result. There may be entries in the hash table with +** K>K0 but to the first reader, those entries will appear to be unused +** slots in the hash table and so the first reader will get an answer as +** if no values greater than K0 had ever been inserted into the hash table +** in the first place - which is what reader one wants. Meanwhile, the +** second reader using K1 will see additional values that were inserted +** later, which is exactly what reader two wants. +** +** When a rollback occurs, the value of K is decreased. Hash table entries +** that correspond to frames greater than the new K value are removed +** from the hash table at this point. +*/ +#ifndef SQLITE_OMIT_WAL + + +/* +** Trace output macros +*/ +#if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) +SQLITE_PRIVATE int sqlite3WalTrace = 0; +# define WALTRACE(X) if(sqlite3WalTrace) sqlite3DebugPrintf X +#else +# define WALTRACE(X) +#endif + +/* +** The maximum (and only) versions of the wal and wal-index formats +** that may be interpreted by this version of SQLite. +** +** If a client begins recovering a WAL file and finds that (a) the checksum +** values in the wal-header are correct and (b) the version field is not +** WAL_MAX_VERSION, recovery fails and SQLite returns SQLITE_CANTOPEN. +** +** Similarly, if a client successfully reads a wal-index header (i.e. the +** checksum test is successful) and finds that the version field is not +** WALINDEX_MAX_VERSION, then no read-transaction is opened and SQLite +** returns SQLITE_CANTOPEN. +*/ +#define WAL_MAX_VERSION 3007000 +#define WALINDEX_MAX_VERSION 3007000 + +/* +** Indices of various locking bytes. WAL_NREADER is the number +** of available reader locks and should be at least 3. +*/ +#define WAL_WRITE_LOCK 0 +#define WAL_ALL_BUT_WRITE 1 +#define WAL_CKPT_LOCK 1 +#define WAL_RECOVER_LOCK 2 +#define WAL_READ_LOCK(I) (3+(I)) +#define WAL_NREADER (SQLITE_SHM_NLOCK-3) + + +/* Object declarations */ +typedef struct WalIndexHdr WalIndexHdr; +typedef struct WalIterator WalIterator; +typedef struct WalCkptInfo WalCkptInfo; + + +/* +** The following object holds a copy of the wal-index header content. +** +** The actual header in the wal-index consists of two copies of this +** object. +** +** The szPage value can be any power of 2 between 512 and 32768, inclusive. +** Or it can be 1 to represent a 65536-byte page. The latter case was +** added in 3.7.1 when support for 64K pages was added. +*/ +struct WalIndexHdr { + u32 iVersion; /* Wal-index version */ + u32 unused; /* Unused (padding) field */ + u32 iChange; /* Counter incremented each transaction */ + u8 isInit; /* 1 when initialized */ + u8 bigEndCksum; /* True if checksums in WAL are big-endian */ + u16 szPage; /* Database page size in bytes. 1==64K */ + u32 mxFrame; /* Index of last valid frame in the WAL */ + u32 nPage; /* Size of database in pages */ + u32 aFrameCksum[2]; /* Checksum of last frame in log */ + u32 aSalt[2]; /* Two salt values copied from WAL header */ + u32 aCksum[2]; /* Checksum over all prior fields */ +}; + +/* +** A copy of the following object occurs in the wal-index immediately +** following the second copy of the WalIndexHdr. This object stores +** information used by checkpoint. +** +** nBackfill is the number of frames in the WAL that have been written +** back into the database. (We call the act of moving content from WAL to +** database "backfilling".) The nBackfill number is never greater than +** WalIndexHdr.mxFrame. nBackfill can only be increased by threads +** holding the WAL_CKPT_LOCK lock (which includes a recovery thread). +** However, a WAL_WRITE_LOCK thread can move the value of nBackfill from +** mxFrame back to zero when the WAL is reset. +** +** There is one entry in aReadMark[] for each reader lock. If a reader +** holds read-lock K, then the value in aReadMark[K] is no greater than +** the mxFrame for that reader. The value READMARK_NOT_USED (0xffffffff) +** for any aReadMark[] means that entry is unused. aReadMark[0] is +** a special case; its value is never used and it exists as a place-holder +** to avoid having to offset aReadMark[] indexs by one. Readers holding +** WAL_READ_LOCK(0) always ignore the entire WAL and read all content +** directly from the database. +** +** The value of aReadMark[K] may only be changed by a thread that +** is holding an exclusive lock on WAL_READ_LOCK(K). Thus, the value of +** aReadMark[K] cannot changed while there is a reader is using that mark +** since the reader will be holding a shared lock on WAL_READ_LOCK(K). +** +** The checkpointer may only transfer frames from WAL to database where +** the frame numbers are less than or equal to every aReadMark[] that is +** in use (that is, every aReadMark[j] for which there is a corresponding +** WAL_READ_LOCK(j)). New readers (usually) pick the aReadMark[] with the +** largest value and will increase an unused aReadMark[] to mxFrame if there +** is not already an aReadMark[] equal to mxFrame. The exception to the +** previous sentence is when nBackfill equals mxFrame (meaning that everything +** in the WAL has been backfilled into the database) then new readers +** will choose aReadMark[0] which has value 0 and hence such reader will +** get all their all content directly from the database file and ignore +** the WAL. +** +** Writers normally append new frames to the end of the WAL. However, +** if nBackfill equals mxFrame (meaning that all WAL content has been +** written back into the database) and if no readers are using the WAL +** (in other words, if there are no WAL_READ_LOCK(i) where i>0) then +** the writer will first "reset" the WAL back to the beginning and start +** writing new content beginning at frame 1. +** +** We assume that 32-bit loads are atomic and so no locks are needed in +** order to read from any aReadMark[] entries. +*/ +struct WalCkptInfo { + u32 nBackfill; /* Number of WAL frames backfilled into DB */ + u32 aReadMark[WAL_NREADER]; /* Reader marks */ +}; +#define READMARK_NOT_USED 0xffffffff + + +/* A block of WALINDEX_LOCK_RESERVED bytes beginning at +** WALINDEX_LOCK_OFFSET is reserved for locks. Since some systems +** only support mandatory file-locks, we do not read or write data +** from the region of the file on which locks are applied. +*/ +#define WALINDEX_LOCK_OFFSET (sizeof(WalIndexHdr)*2 + sizeof(WalCkptInfo)) +#define WALINDEX_LOCK_RESERVED 16 +#define WALINDEX_HDR_SIZE (WALINDEX_LOCK_OFFSET+WALINDEX_LOCK_RESERVED) + +/* Size of header before each frame in wal */ +#define WAL_FRAME_HDRSIZE 24 + +/* Size of write ahead log header, including checksum. */ +/* #define WAL_HDRSIZE 24 */ +#define WAL_HDRSIZE 32 + +/* WAL magic value. Either this value, or the same value with the least +** significant bit also set (WAL_MAGIC | 0x00000001) is stored in 32-bit +** big-endian format in the first 4 bytes of a WAL file. +** +** If the LSB is set, then the checksums for each frame within the WAL +** file are calculated by treating all data as an array of 32-bit +** big-endian words. Otherwise, they are calculated by interpreting +** all data as 32-bit little-endian words. +*/ +#define WAL_MAGIC 0x377f0682 + +/* +** Return the offset of frame iFrame in the write-ahead log file, +** assuming a database page size of szPage bytes. The offset returned +** is to the start of the write-ahead log frame-header. +*/ +#define walFrameOffset(iFrame, szPage) ( \ + WAL_HDRSIZE + ((iFrame)-1)*(i64)((szPage)+WAL_FRAME_HDRSIZE) \ +) + +/* +** An open write-ahead log file is represented by an instance of the +** following object. +*/ +struct Wal { + sqlite3_vfs *pVfs; /* The VFS used to create pDbFd */ + sqlite3_file *pDbFd; /* File handle for the database file */ + sqlite3_file *pWalFd; /* File handle for WAL file */ + u32 iCallback; /* Value to pass to log callback (or 0) */ + i64 mxWalSize; /* Truncate WAL to this size upon reset */ + int nWiData; /* Size of array apWiData */ + int szFirstBlock; /* Size of first block written to WAL file */ + volatile u32 **apWiData; /* Pointer to wal-index content in memory */ + u32 szPage; /* Database page size */ + i16 readLock; /* Which read lock is being held. -1 for none */ + u8 syncFlags; /* Flags to use to sync header writes */ + u8 exclusiveMode; /* Non-zero if connection is in exclusive mode */ + u8 writeLock; /* True if in a write transaction */ + u8 ckptLock; /* True if holding a checkpoint lock */ + u8 readOnly; /* WAL_RDWR, WAL_RDONLY, or WAL_SHM_RDONLY */ + u8 truncateOnCommit; /* True to truncate WAL file on commit */ + u8 syncHeader; /* Fsync the WAL header if true */ + u8 padToSectorBoundary; /* Pad transactions out to the next sector */ + WalIndexHdr hdr; /* Wal-index header for current transaction */ + const char *zWalName; /* Name of WAL file */ + u32 nCkpt; /* Checkpoint sequence counter in the wal-header */ +#ifdef SQLITE_DEBUG + u8 lockError; /* True if a locking error has occurred */ +#endif +}; + +/* +** Candidate values for Wal.exclusiveMode. +*/ +#define WAL_NORMAL_MODE 0 +#define WAL_EXCLUSIVE_MODE 1 +#define WAL_HEAPMEMORY_MODE 2 + +/* +** Possible values for WAL.readOnly +*/ +#define WAL_RDWR 0 /* Normal read/write connection */ +#define WAL_RDONLY 1 /* The WAL file is readonly */ +#define WAL_SHM_RDONLY 2 /* The SHM file is readonly */ + +/* +** Each page of the wal-index mapping contains a hash-table made up of +** an array of HASHTABLE_NSLOT elements of the following type. +*/ +typedef u16 ht_slot; + +/* +** This structure is used to implement an iterator that loops through +** all frames in the WAL in database page order. Where two or more frames +** correspond to the same database page, the iterator visits only the +** frame most recently written to the WAL (in other words, the frame with +** the largest index). +** +** The internals of this structure are only accessed by: +** +** walIteratorInit() - Create a new iterator, +** walIteratorNext() - Step an iterator, +** walIteratorFree() - Free an iterator. +** +** This functionality is used by the checkpoint code (see walCheckpoint()). +*/ +struct WalIterator { + int iPrior; /* Last result returned from the iterator */ + int nSegment; /* Number of entries in aSegment[] */ + struct WalSegment { + int iNext; /* Next slot in aIndex[] not yet returned */ + ht_slot *aIndex; /* i0, i1, i2... such that aPgno[iN] ascend */ + u32 *aPgno; /* Array of page numbers. */ + int nEntry; /* Nr. of entries in aPgno[] and aIndex[] */ + int iZero; /* Frame number associated with aPgno[0] */ + } aSegment[1]; /* One for every 32KB page in the wal-index */ +}; + +/* +** Define the parameters of the hash tables in the wal-index file. There +** is a hash-table following every HASHTABLE_NPAGE page numbers in the +** wal-index. +** +** Changing any of these constants will alter the wal-index format and +** create incompatibilities. +*/ +#define HASHTABLE_NPAGE 4096 /* Must be power of 2 */ +#define HASHTABLE_HASH_1 383 /* Should be prime */ +#define HASHTABLE_NSLOT (HASHTABLE_NPAGE*2) /* Must be a power of 2 */ + +/* +** The block of page numbers associated with the first hash-table in a +** wal-index is smaller than usual. This is so that there is a complete +** hash-table on each aligned 32KB page of the wal-index. +*/ +#define HASHTABLE_NPAGE_ONE (HASHTABLE_NPAGE - (WALINDEX_HDR_SIZE/sizeof(u32))) + +/* The wal-index is divided into pages of WALINDEX_PGSZ bytes each. */ +#define WALINDEX_PGSZ ( \ + sizeof(ht_slot)*HASHTABLE_NSLOT + HASHTABLE_NPAGE*sizeof(u32) \ +) + +/* +** Obtain a pointer to the iPage'th page of the wal-index. The wal-index +** is broken into pages of WALINDEX_PGSZ bytes. Wal-index pages are +** numbered from zero. +** +** If this call is successful, *ppPage is set to point to the wal-index +** page and SQLITE_OK is returned. If an error (an OOM or VFS error) occurs, +** then an SQLite error code is returned and *ppPage is set to 0. +*/ +static int walIndexPage(Wal *pWal, int iPage, volatile u32 **ppPage){ + int rc = SQLITE_OK; + + /* Enlarge the pWal->apWiData[] array if required */ + if( pWal->nWiData<=iPage ){ + int nByte = sizeof(u32*)*(iPage+1); + volatile u32 **apNew; + apNew = (volatile u32 **)sqlite3_realloc((void *)pWal->apWiData, nByte); + if( !apNew ){ + *ppPage = 0; + return SQLITE_NOMEM; + } + memset((void*)&apNew[pWal->nWiData], 0, + sizeof(u32*)*(iPage+1-pWal->nWiData)); + pWal->apWiData = apNew; + pWal->nWiData = iPage+1; + } + + /* Request a pointer to the required page from the VFS */ + if( pWal->apWiData[iPage]==0 ){ + if( pWal->exclusiveMode==WAL_HEAPMEMORY_MODE ){ + pWal->apWiData[iPage] = (u32 volatile *)sqlite3MallocZero(WALINDEX_PGSZ); + if( !pWal->apWiData[iPage] ) rc = SQLITE_NOMEM; + }else{ + rc = sqlite3OsShmMap(pWal->pDbFd, iPage, WALINDEX_PGSZ, + pWal->writeLock, (void volatile **)&pWal->apWiData[iPage] + ); + if( rc==SQLITE_READONLY ){ + pWal->readOnly |= WAL_SHM_RDONLY; + rc = SQLITE_OK; + } + } + } + + *ppPage = pWal->apWiData[iPage]; + assert( iPage==0 || *ppPage || rc!=SQLITE_OK ); + return rc; +} + +/* +** Return a pointer to the WalCkptInfo structure in the wal-index. +*/ +static volatile WalCkptInfo *walCkptInfo(Wal *pWal){ + assert( pWal->nWiData>0 && pWal->apWiData[0] ); + return (volatile WalCkptInfo*)&(pWal->apWiData[0][sizeof(WalIndexHdr)/2]); +} + +/* +** Return a pointer to the WalIndexHdr structure in the wal-index. +*/ +static volatile WalIndexHdr *walIndexHdr(Wal *pWal){ + assert( pWal->nWiData>0 && pWal->apWiData[0] ); + return (volatile WalIndexHdr*)pWal->apWiData[0]; +} + +/* +** The argument to this macro must be of type u32. On a little-endian +** architecture, it returns the u32 value that results from interpreting +** the 4 bytes as a big-endian value. On a big-endian architecture, it +** returns the value that would be produced by intepreting the 4 bytes +** of the input value as a little-endian integer. +*/ +#define BYTESWAP32(x) ( \ + (((x)&0x000000FF)<<24) + (((x)&0x0000FF00)<<8) \ + + (((x)&0x00FF0000)>>8) + (((x)&0xFF000000)>>24) \ +) + +/* +** Generate or extend an 8 byte checksum based on the data in +** array aByte[] and the initial values of aIn[0] and aIn[1] (or +** initial values of 0 and 0 if aIn==NULL). +** +** The checksum is written back into aOut[] before returning. +** +** nByte must be a positive multiple of 8. +*/ +static void walChecksumBytes( + int nativeCksum, /* True for native byte-order, false for non-native */ + u8 *a, /* Content to be checksummed */ + int nByte, /* Bytes of content in a[]. Must be a multiple of 8. */ + const u32 *aIn, /* Initial checksum value input */ + u32 *aOut /* OUT: Final checksum value output */ +){ + u32 s1, s2; + u32 *aData = (u32 *)a; + u32 *aEnd = (u32 *)&a[nByte]; + + if( aIn ){ + s1 = aIn[0]; + s2 = aIn[1]; + }else{ + s1 = s2 = 0; + } + + assert( nByte>=8 ); + assert( (nByte&0x00000007)==0 ); + + if( nativeCksum ){ + do { + s1 += *aData++ + s2; + s2 += *aData++ + s1; + }while( aDataexclusiveMode!=WAL_HEAPMEMORY_MODE ){ + sqlite3OsShmBarrier(pWal->pDbFd); + } +} + +/* +** Write the header information in pWal->hdr into the wal-index. +** +** The checksum on pWal->hdr is updated before it is written. +*/ +static void walIndexWriteHdr(Wal *pWal){ + volatile WalIndexHdr *aHdr = walIndexHdr(pWal); + const int nCksum = offsetof(WalIndexHdr, aCksum); + + assert( pWal->writeLock ); + pWal->hdr.isInit = 1; + pWal->hdr.iVersion = WALINDEX_MAX_VERSION; + walChecksumBytes(1, (u8*)&pWal->hdr, nCksum, 0, pWal->hdr.aCksum); + memcpy((void *)&aHdr[1], (void *)&pWal->hdr, sizeof(WalIndexHdr)); + walShmBarrier(pWal); + memcpy((void *)&aHdr[0], (void *)&pWal->hdr, sizeof(WalIndexHdr)); +} + +/* +** This function encodes a single frame header and writes it to a buffer +** supplied by the caller. A frame-header is made up of a series of +** 4-byte big-endian integers, as follows: +** +** 0: Page number. +** 4: For commit records, the size of the database image in pages +** after the commit. For all other records, zero. +** 8: Salt-1 (copied from the wal-header) +** 12: Salt-2 (copied from the wal-header) +** 16: Checksum-1. +** 20: Checksum-2. +*/ +static void walEncodeFrame( + Wal *pWal, /* The write-ahead log */ + u32 iPage, /* Database page number for frame */ + u32 nTruncate, /* New db size (or 0 for non-commit frames) */ + u8 *aData, /* Pointer to page data */ + u8 *aFrame /* OUT: Write encoded frame here */ +){ + int nativeCksum; /* True for native byte-order checksums */ + u32 *aCksum = pWal->hdr.aFrameCksum; + assert( WAL_FRAME_HDRSIZE==24 ); + sqlite3Put4byte(&aFrame[0], iPage); + sqlite3Put4byte(&aFrame[4], nTruncate); + memcpy(&aFrame[8], pWal->hdr.aSalt, 8); + + nativeCksum = (pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN); + walChecksumBytes(nativeCksum, aFrame, 8, aCksum, aCksum); + walChecksumBytes(nativeCksum, aData, pWal->szPage, aCksum, aCksum); + + sqlite3Put4byte(&aFrame[16], aCksum[0]); + sqlite3Put4byte(&aFrame[20], aCksum[1]); +} + +/* +** Check to see if the frame with header in aFrame[] and content +** in aData[] is valid. If it is a valid frame, fill *piPage and +** *pnTruncate and return true. Return if the frame is not valid. +*/ +static int walDecodeFrame( + Wal *pWal, /* The write-ahead log */ + u32 *piPage, /* OUT: Database page number for frame */ + u32 *pnTruncate, /* OUT: New db size (or 0 if not commit) */ + u8 *aData, /* Pointer to page data (for checksum) */ + u8 *aFrame /* Frame data */ +){ + int nativeCksum; /* True for native byte-order checksums */ + u32 *aCksum = pWal->hdr.aFrameCksum; + u32 pgno; /* Page number of the frame */ + assert( WAL_FRAME_HDRSIZE==24 ); + + /* A frame is only valid if the salt values in the frame-header + ** match the salt values in the wal-header. + */ + if( memcmp(&pWal->hdr.aSalt, &aFrame[8], 8)!=0 ){ + return 0; + } + + /* A frame is only valid if the page number is creater than zero. + */ + pgno = sqlite3Get4byte(&aFrame[0]); + if( pgno==0 ){ + return 0; + } + + /* A frame is only valid if a checksum of the WAL header, + ** all prior frams, the first 16 bytes of this frame-header, + ** and the frame-data matches the checksum in the last 8 + ** bytes of this frame-header. + */ + nativeCksum = (pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN); + walChecksumBytes(nativeCksum, aFrame, 8, aCksum, aCksum); + walChecksumBytes(nativeCksum, aData, pWal->szPage, aCksum, aCksum); + if( aCksum[0]!=sqlite3Get4byte(&aFrame[16]) + || aCksum[1]!=sqlite3Get4byte(&aFrame[20]) + ){ + /* Checksum failed. */ + return 0; + } + + /* If we reach this point, the frame is valid. Return the page number + ** and the new database size. + */ + *piPage = pgno; + *pnTruncate = sqlite3Get4byte(&aFrame[4]); + return 1; +} + + +#if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) +/* +** Names of locks. This routine is used to provide debugging output and is not +** a part of an ordinary build. +*/ +static const char *walLockName(int lockIdx){ + if( lockIdx==WAL_WRITE_LOCK ){ + return "WRITE-LOCK"; + }else if( lockIdx==WAL_CKPT_LOCK ){ + return "CKPT-LOCK"; + }else if( lockIdx==WAL_RECOVER_LOCK ){ + return "RECOVER-LOCK"; + }else{ + static char zName[15]; + sqlite3_snprintf(sizeof(zName), zName, "READ-LOCK[%d]", + lockIdx-WAL_READ_LOCK(0)); + return zName; + } +} +#endif /*defined(SQLITE_TEST) || defined(SQLITE_DEBUG) */ + + +/* +** Set or release locks on the WAL. Locks are either shared or exclusive. +** A lock cannot be moved directly between shared and exclusive - it must go +** through the unlocked state first. +** +** In locking_mode=EXCLUSIVE, all of these routines become no-ops. +*/ +static int walLockShared(Wal *pWal, int lockIdx){ + int rc; + if( pWal->exclusiveMode ) return SQLITE_OK; + rc = sqlite3OsShmLock(pWal->pDbFd, lockIdx, 1, + SQLITE_SHM_LOCK | SQLITE_SHM_SHARED); + WALTRACE(("WAL%p: acquire SHARED-%s %s\n", pWal, + walLockName(lockIdx), rc ? "failed" : "ok")); + VVA_ONLY( pWal->lockError = (u8)(rc!=SQLITE_OK && rc!=SQLITE_BUSY); ) + return rc; +} +static void walUnlockShared(Wal *pWal, int lockIdx){ + if( pWal->exclusiveMode ) return; + (void)sqlite3OsShmLock(pWal->pDbFd, lockIdx, 1, + SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED); + WALTRACE(("WAL%p: release SHARED-%s\n", pWal, walLockName(lockIdx))); +} +static int walLockExclusive(Wal *pWal, int lockIdx, int n){ + int rc; + if( pWal->exclusiveMode ) return SQLITE_OK; + rc = sqlite3OsShmLock(pWal->pDbFd, lockIdx, n, + SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE); + WALTRACE(("WAL%p: acquire EXCLUSIVE-%s cnt=%d %s\n", pWal, + walLockName(lockIdx), n, rc ? "failed" : "ok")); + VVA_ONLY( pWal->lockError = (u8)(rc!=SQLITE_OK && rc!=SQLITE_BUSY); ) + return rc; +} +static void walUnlockExclusive(Wal *pWal, int lockIdx, int n){ + if( pWal->exclusiveMode ) return; + (void)sqlite3OsShmLock(pWal->pDbFd, lockIdx, n, + SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE); + WALTRACE(("WAL%p: release EXCLUSIVE-%s cnt=%d\n", pWal, + walLockName(lockIdx), n)); +} + +/* +** Compute a hash on a page number. The resulting hash value must land +** between 0 and (HASHTABLE_NSLOT-1). The walHashNext() function advances +** the hash to the next value in the event of a collision. +*/ +static int walHash(u32 iPage){ + assert( iPage>0 ); + assert( (HASHTABLE_NSLOT & (HASHTABLE_NSLOT-1))==0 ); + return (iPage*HASHTABLE_HASH_1) & (HASHTABLE_NSLOT-1); +} +static int walNextHash(int iPriorHash){ + return (iPriorHash+1)&(HASHTABLE_NSLOT-1); +} + +/* +** Return pointers to the hash table and page number array stored on +** page iHash of the wal-index. The wal-index is broken into 32KB pages +** numbered starting from 0. +** +** Set output variable *paHash to point to the start of the hash table +** in the wal-index file. Set *piZero to one less than the frame +** number of the first frame indexed by this hash table. If a +** slot in the hash table is set to N, it refers to frame number +** (*piZero+N) in the log. +** +** Finally, set *paPgno so that *paPgno[1] is the page number of the +** first frame indexed by the hash table, frame (*piZero+1). +*/ +static int walHashGet( + Wal *pWal, /* WAL handle */ + int iHash, /* Find the iHash'th table */ + volatile ht_slot **paHash, /* OUT: Pointer to hash index */ + volatile u32 **paPgno, /* OUT: Pointer to page number array */ + u32 *piZero /* OUT: Frame associated with *paPgno[0] */ +){ + int rc; /* Return code */ + volatile u32 *aPgno; + + rc = walIndexPage(pWal, iHash, &aPgno); + assert( rc==SQLITE_OK || iHash>0 ); + + if( rc==SQLITE_OK ){ + u32 iZero; + volatile ht_slot *aHash; + + aHash = (volatile ht_slot *)&aPgno[HASHTABLE_NPAGE]; + if( iHash==0 ){ + aPgno = &aPgno[WALINDEX_HDR_SIZE/sizeof(u32)]; + iZero = 0; + }else{ + iZero = HASHTABLE_NPAGE_ONE + (iHash-1)*HASHTABLE_NPAGE; + } + + *paPgno = &aPgno[-1]; + *paHash = aHash; + *piZero = iZero; + } + return rc; +} + +/* +** Return the number of the wal-index page that contains the hash-table +** and page-number array that contain entries corresponding to WAL frame +** iFrame. The wal-index is broken up into 32KB pages. Wal-index pages +** are numbered starting from 0. +*/ +static int walFramePage(u32 iFrame){ + int iHash = (iFrame+HASHTABLE_NPAGE-HASHTABLE_NPAGE_ONE-1) / HASHTABLE_NPAGE; + assert( (iHash==0 || iFrame>HASHTABLE_NPAGE_ONE) + && (iHash>=1 || iFrame<=HASHTABLE_NPAGE_ONE) + && (iHash<=1 || iFrame>(HASHTABLE_NPAGE_ONE+HASHTABLE_NPAGE)) + && (iHash>=2 || iFrame<=HASHTABLE_NPAGE_ONE+HASHTABLE_NPAGE) + && (iHash<=2 || iFrame>(HASHTABLE_NPAGE_ONE+2*HASHTABLE_NPAGE)) + ); + return iHash; +} + +/* +** Return the page number associated with frame iFrame in this WAL. +*/ +static u32 walFramePgno(Wal *pWal, u32 iFrame){ + int iHash = walFramePage(iFrame); + if( iHash==0 ){ + return pWal->apWiData[0][WALINDEX_HDR_SIZE/sizeof(u32) + iFrame - 1]; + } + return pWal->apWiData[iHash][(iFrame-1-HASHTABLE_NPAGE_ONE)%HASHTABLE_NPAGE]; +} + +/* +** Remove entries from the hash table that point to WAL slots greater +** than pWal->hdr.mxFrame. +** +** This function is called whenever pWal->hdr.mxFrame is decreased due +** to a rollback or savepoint. +** +** At most only the hash table containing pWal->hdr.mxFrame needs to be +** updated. Any later hash tables will be automatically cleared when +** pWal->hdr.mxFrame advances to the point where those hash tables are +** actually needed. +*/ +static void walCleanupHash(Wal *pWal){ + volatile ht_slot *aHash = 0; /* Pointer to hash table to clear */ + volatile u32 *aPgno = 0; /* Page number array for hash table */ + u32 iZero = 0; /* frame == (aHash[x]+iZero) */ + int iLimit = 0; /* Zero values greater than this */ + int nByte; /* Number of bytes to zero in aPgno[] */ + int i; /* Used to iterate through aHash[] */ + + assert( pWal->writeLock ); + testcase( pWal->hdr.mxFrame==HASHTABLE_NPAGE_ONE-1 ); + testcase( pWal->hdr.mxFrame==HASHTABLE_NPAGE_ONE ); + testcase( pWal->hdr.mxFrame==HASHTABLE_NPAGE_ONE+1 ); + + if( pWal->hdr.mxFrame==0 ) return; + + /* Obtain pointers to the hash-table and page-number array containing + ** the entry that corresponds to frame pWal->hdr.mxFrame. It is guaranteed + ** that the page said hash-table and array reside on is already mapped. + */ + assert( pWal->nWiData>walFramePage(pWal->hdr.mxFrame) ); + assert( pWal->apWiData[walFramePage(pWal->hdr.mxFrame)] ); + walHashGet(pWal, walFramePage(pWal->hdr.mxFrame), &aHash, &aPgno, &iZero); + + /* Zero all hash-table entries that correspond to frame numbers greater + ** than pWal->hdr.mxFrame. + */ + iLimit = pWal->hdr.mxFrame - iZero; + assert( iLimit>0 ); + for(i=0; iiLimit ){ + aHash[i] = 0; + } + } + + /* Zero the entries in the aPgno array that correspond to frames with + ** frame numbers greater than pWal->hdr.mxFrame. + */ + nByte = (int)((char *)aHash - (char *)&aPgno[iLimit+1]); + memset((void *)&aPgno[iLimit+1], 0, nByte); + +#ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT + /* Verify that the every entry in the mapping region is still reachable + ** via the hash table even after the cleanup. + */ + if( iLimit ){ + int i; /* Loop counter */ + int iKey; /* Hash key */ + for(i=1; i<=iLimit; i++){ + for(iKey=walHash(aPgno[i]); aHash[iKey]; iKey=walNextHash(iKey)){ + if( aHash[iKey]==i ) break; + } + assert( aHash[iKey]==i ); + } + } +#endif /* SQLITE_ENABLE_EXPENSIVE_ASSERT */ +} + + +/* +** Set an entry in the wal-index that will map database page number +** pPage into WAL frame iFrame. +*/ +static int walIndexAppend(Wal *pWal, u32 iFrame, u32 iPage){ + int rc; /* Return code */ + u32 iZero = 0; /* One less than frame number of aPgno[1] */ + volatile u32 *aPgno = 0; /* Page number array */ + volatile ht_slot *aHash = 0; /* Hash table */ + + rc = walHashGet(pWal, walFramePage(iFrame), &aHash, &aPgno, &iZero); + + /* Assuming the wal-index file was successfully mapped, populate the + ** page number array and hash table entry. + */ + if( rc==SQLITE_OK ){ + int iKey; /* Hash table key */ + int idx; /* Value to write to hash-table slot */ + int nCollide; /* Number of hash collisions */ + + idx = iFrame - iZero; + assert( idx <= HASHTABLE_NSLOT/2 + 1 ); + + /* If this is the first entry to be added to this hash-table, zero the + ** entire hash table and aPgno[] array before proceding. + */ + if( idx==1 ){ + int nByte = (int)((u8 *)&aHash[HASHTABLE_NSLOT] - (u8 *)&aPgno[1]); + memset((void*)&aPgno[1], 0, nByte); + } + + /* If the entry in aPgno[] is already set, then the previous writer + ** must have exited unexpectedly in the middle of a transaction (after + ** writing one or more dirty pages to the WAL to free up memory). + ** Remove the remnants of that writers uncommitted transaction from + ** the hash-table before writing any new entries. + */ + if( aPgno[idx] ){ + walCleanupHash(pWal); + assert( !aPgno[idx] ); + } + + /* Write the aPgno[] array entry and the hash-table slot. */ + nCollide = idx; + for(iKey=walHash(iPage); aHash[iKey]; iKey=walNextHash(iKey)){ + if( (nCollide--)==0 ) return SQLITE_CORRUPT_BKPT; + } + aPgno[idx] = iPage; + aHash[iKey] = (ht_slot)idx; + +#ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT + /* Verify that the number of entries in the hash table exactly equals + ** the number of entries in the mapping region. + */ + { + int i; /* Loop counter */ + int nEntry = 0; /* Number of entries in the hash table */ + for(i=0; ickptLock==1 || pWal->ckptLock==0 ); + assert( WAL_ALL_BUT_WRITE==WAL_WRITE_LOCK+1 ); + assert( WAL_CKPT_LOCK==WAL_ALL_BUT_WRITE ); + assert( pWal->writeLock ); + iLock = WAL_ALL_BUT_WRITE + pWal->ckptLock; + nLock = SQLITE_SHM_NLOCK - iLock; + rc = walLockExclusive(pWal, iLock, nLock); + if( rc ){ + return rc; + } + WALTRACE(("WAL%p: recovery begin...\n", pWal)); + + memset(&pWal->hdr, 0, sizeof(WalIndexHdr)); + + rc = sqlite3OsFileSize(pWal->pWalFd, &nSize); + if( rc!=SQLITE_OK ){ + goto recovery_error; + } + + if( nSize>WAL_HDRSIZE ){ + u8 aBuf[WAL_HDRSIZE]; /* Buffer to load WAL header into */ + u8 *aFrame = 0; /* Malloc'd buffer to load entire frame */ + int szFrame; /* Number of bytes in buffer aFrame[] */ + u8 *aData; /* Pointer to data part of aFrame buffer */ + int iFrame; /* Index of last frame read */ + i64 iOffset; /* Next offset to read from log file */ + int szPage; /* Page size according to the log */ + u32 magic; /* Magic value read from WAL header */ + u32 version; /* Magic value read from WAL header */ + int isValid; /* True if this frame is valid */ + + /* Read in the WAL header. */ + rc = sqlite3OsRead(pWal->pWalFd, aBuf, WAL_HDRSIZE, 0); + if( rc!=SQLITE_OK ){ + goto recovery_error; + } + + /* If the database page size is not a power of two, or is greater than + ** SQLITE_MAX_PAGE_SIZE, conclude that the WAL file contains no valid + ** data. Similarly, if the 'magic' value is invalid, ignore the whole + ** WAL file. + */ + magic = sqlite3Get4byte(&aBuf[0]); + szPage = sqlite3Get4byte(&aBuf[8]); + if( (magic&0xFFFFFFFE)!=WAL_MAGIC + || szPage&(szPage-1) + || szPage>SQLITE_MAX_PAGE_SIZE + || szPage<512 + ){ + goto finished; + } + pWal->hdr.bigEndCksum = (u8)(magic&0x00000001); + pWal->szPage = szPage; + pWal->nCkpt = sqlite3Get4byte(&aBuf[12]); + memcpy(&pWal->hdr.aSalt, &aBuf[16], 8); + + /* Verify that the WAL header checksum is correct */ + walChecksumBytes(pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN, + aBuf, WAL_HDRSIZE-2*4, 0, pWal->hdr.aFrameCksum + ); + if( pWal->hdr.aFrameCksum[0]!=sqlite3Get4byte(&aBuf[24]) + || pWal->hdr.aFrameCksum[1]!=sqlite3Get4byte(&aBuf[28]) + ){ + goto finished; + } + + /* Verify that the version number on the WAL format is one that + ** are able to understand */ + version = sqlite3Get4byte(&aBuf[4]); + if( version!=WAL_MAX_VERSION ){ + rc = SQLITE_CANTOPEN_BKPT; + goto finished; + } + + /* Malloc a buffer to read frames into. */ + szFrame = szPage + WAL_FRAME_HDRSIZE; + aFrame = (u8 *)sqlite3_malloc(szFrame); + if( !aFrame ){ + rc = SQLITE_NOMEM; + goto recovery_error; + } + aData = &aFrame[WAL_FRAME_HDRSIZE]; + + /* Read all frames from the log file. */ + iFrame = 0; + for(iOffset=WAL_HDRSIZE; (iOffset+szFrame)<=nSize; iOffset+=szFrame){ + u32 pgno; /* Database page number for frame */ + u32 nTruncate; /* dbsize field from frame header */ + + /* Read and decode the next log frame. */ + iFrame++; + rc = sqlite3OsRead(pWal->pWalFd, aFrame, szFrame, iOffset); + if( rc!=SQLITE_OK ) break; + isValid = walDecodeFrame(pWal, &pgno, &nTruncate, aData, aFrame); + if( !isValid ) break; + rc = walIndexAppend(pWal, iFrame, pgno); + if( rc!=SQLITE_OK ) break; + + /* If nTruncate is non-zero, this is a commit record. */ + if( nTruncate ){ + pWal->hdr.mxFrame = iFrame; + pWal->hdr.nPage = nTruncate; + pWal->hdr.szPage = (u16)((szPage&0xff00) | (szPage>>16)); + testcase( szPage<=32768 ); + testcase( szPage>=65536 ); + aFrameCksum[0] = pWal->hdr.aFrameCksum[0]; + aFrameCksum[1] = pWal->hdr.aFrameCksum[1]; + } + } + + sqlite3_free(aFrame); + } + +finished: + if( rc==SQLITE_OK ){ + volatile WalCkptInfo *pInfo; + int i; + pWal->hdr.aFrameCksum[0] = aFrameCksum[0]; + pWal->hdr.aFrameCksum[1] = aFrameCksum[1]; + walIndexWriteHdr(pWal); + + /* Reset the checkpoint-header. This is safe because this thread is + ** currently holding locks that exclude all other readers, writers and + ** checkpointers. + */ + pInfo = walCkptInfo(pWal); + pInfo->nBackfill = 0; + pInfo->aReadMark[0] = 0; + for(i=1; iaReadMark[i] = READMARK_NOT_USED; + if( pWal->hdr.mxFrame ) pInfo->aReadMark[1] = pWal->hdr.mxFrame; + + /* If more than one frame was recovered from the log file, report an + ** event via sqlite3_log(). This is to help with identifying performance + ** problems caused by applications routinely shutting down without + ** checkpointing the log file. + */ + if( pWal->hdr.nPage ){ + sqlite3_log(SQLITE_NOTICE_RECOVER_WAL, + "recovered %d frames from WAL file %s", + pWal->hdr.mxFrame, pWal->zWalName + ); + } + } + +recovery_error: + WALTRACE(("WAL%p: recovery %s\n", pWal, rc ? "failed" : "ok")); + walUnlockExclusive(pWal, iLock, nLock); + return rc; +} + +/* +** Close an open wal-index. +*/ +static void walIndexClose(Wal *pWal, int isDelete){ + if( pWal->exclusiveMode==WAL_HEAPMEMORY_MODE ){ + int i; + for(i=0; inWiData; i++){ + sqlite3_free((void *)pWal->apWiData[i]); + pWal->apWiData[i] = 0; + } + }else{ + sqlite3OsShmUnmap(pWal->pDbFd, isDelete); + } +} + +/* +** Open a connection to the WAL file zWalName. The database file must +** already be opened on connection pDbFd. The buffer that zWalName points +** to must remain valid for the lifetime of the returned Wal* handle. +** +** A SHARED lock should be held on the database file when this function +** is called. The purpose of this SHARED lock is to prevent any other +** client from unlinking the WAL or wal-index file. If another process +** were to do this just after this client opened one of these files, the +** system would be badly broken. +** +** If the log file is successfully opened, SQLITE_OK is returned and +** *ppWal is set to point to a new WAL handle. If an error occurs, +** an SQLite error code is returned and *ppWal is left unmodified. +*/ +SQLITE_PRIVATE int sqlite3WalOpen( + sqlite3_vfs *pVfs, /* vfs module to open wal and wal-index */ + sqlite3_file *pDbFd, /* The open database file */ + const char *zWalName, /* Name of the WAL file */ + int bNoShm, /* True to run in heap-memory mode */ + i64 mxWalSize, /* Truncate WAL to this size on reset */ + Wal **ppWal /* OUT: Allocated Wal handle */ +){ + int rc; /* Return Code */ + Wal *pRet; /* Object to allocate and return */ + int flags; /* Flags passed to OsOpen() */ + + assert( zWalName && zWalName[0] ); + assert( pDbFd ); + + /* In the amalgamation, the os_unix.c and os_win.c source files come before + ** this source file. Verify that the #defines of the locking byte offsets + ** in os_unix.c and os_win.c agree with the WALINDEX_LOCK_OFFSET value. + */ +#ifdef WIN_SHM_BASE + assert( WIN_SHM_BASE==WALINDEX_LOCK_OFFSET ); +#endif +#ifdef UNIX_SHM_BASE + assert( UNIX_SHM_BASE==WALINDEX_LOCK_OFFSET ); +#endif + + + /* Allocate an instance of struct Wal to return. */ + *ppWal = 0; + pRet = (Wal*)sqlite3MallocZero(sizeof(Wal) + pVfs->szOsFile); + if( !pRet ){ + return SQLITE_NOMEM; + } + + pRet->pVfs = pVfs; + pRet->pWalFd = (sqlite3_file *)&pRet[1]; + pRet->pDbFd = pDbFd; + pRet->readLock = -1; + pRet->mxWalSize = mxWalSize; + pRet->zWalName = zWalName; + pRet->syncHeader = 1; + pRet->padToSectorBoundary = 1; + pRet->exclusiveMode = (bNoShm ? WAL_HEAPMEMORY_MODE: WAL_NORMAL_MODE); + + /* Open file handle on the write-ahead log file. */ + flags = (SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|SQLITE_OPEN_WAL); + rc = sqlite3OsOpen(pVfs, zWalName, pRet->pWalFd, flags, &flags); + if( rc==SQLITE_OK && flags&SQLITE_OPEN_READONLY ){ + pRet->readOnly = WAL_RDONLY; + } + + if( rc!=SQLITE_OK ){ + walIndexClose(pRet, 0); + sqlite3OsClose(pRet->pWalFd); + sqlite3_free(pRet); + }else{ + int iDC = sqlite3OsDeviceCharacteristics(pDbFd); + if( iDC & SQLITE_IOCAP_SEQUENTIAL ){ pRet->syncHeader = 0; } + if( iDC & SQLITE_IOCAP_POWERSAFE_OVERWRITE ){ + pRet->padToSectorBoundary = 0; + } + *ppWal = pRet; + WALTRACE(("WAL%d: opened\n", pRet)); + } + return rc; +} + +/* +** Change the size to which the WAL file is trucated on each reset. +*/ +SQLITE_PRIVATE void sqlite3WalLimit(Wal *pWal, i64 iLimit){ + if( pWal ) pWal->mxWalSize = iLimit; +} + +/* +** Find the smallest page number out of all pages held in the WAL that +** has not been returned by any prior invocation of this method on the +** same WalIterator object. Write into *piFrame the frame index where +** that page was last written into the WAL. Write into *piPage the page +** number. +** +** Return 0 on success. If there are no pages in the WAL with a page +** number larger than *piPage, then return 1. +*/ +static int walIteratorNext( + WalIterator *p, /* Iterator */ + u32 *piPage, /* OUT: The page number of the next page */ + u32 *piFrame /* OUT: Wal frame index of next page */ +){ + u32 iMin; /* Result pgno must be greater than iMin */ + u32 iRet = 0xFFFFFFFF; /* 0xffffffff is never a valid page number */ + int i; /* For looping through segments */ + + iMin = p->iPrior; + assert( iMin<0xffffffff ); + for(i=p->nSegment-1; i>=0; i--){ + struct WalSegment *pSegment = &p->aSegment[i]; + while( pSegment->iNextnEntry ){ + u32 iPg = pSegment->aPgno[pSegment->aIndex[pSegment->iNext]]; + if( iPg>iMin ){ + if( iPgiZero + pSegment->aIndex[pSegment->iNext]; + } + break; + } + pSegment->iNext++; + } + } + + *piPage = p->iPrior = iRet; + return (iRet==0xFFFFFFFF); +} + +/* +** This function merges two sorted lists into a single sorted list. +** +** aLeft[] and aRight[] are arrays of indices. The sort key is +** aContent[aLeft[]] and aContent[aRight[]]. Upon entry, the following +** is guaranteed for all J0 && nRight>0 ); + while( iRight=nRight || aContent[aLeft[iLeft]]=nLeft || aContent[aLeft[iLeft]]>dbpage ); + assert( iRight>=nRight || aContent[aRight[iRight]]>dbpage ); + } + + *paRight = aLeft; + *pnRight = iOut; + memcpy(aLeft, aTmp, sizeof(aTmp[0])*iOut); +} + +/* +** Sort the elements in list aList using aContent[] as the sort key. +** Remove elements with duplicate keys, preferring to keep the +** larger aList[] values. +** +** The aList[] entries are indices into aContent[]. The values in +** aList[] are to be sorted so that for all J0 ); + assert( HASHTABLE_NPAGE==(1<<(ArraySize(aSub)-1)) ); + + for(iList=0; iListaList && p->nList<=(1<aList==&aList[iList&~((2<aList, p->nList, &aMerge, &nMerge, aBuffer); + } + aSub[iSub].aList = aMerge; + aSub[iSub].nList = nMerge; + } + + for(iSub++; iSubnList<=(1<aList==&aList[nList&~((2<aList, p->nList, &aMerge, &nMerge, aBuffer); + } + } + assert( aMerge==aList ); + *pnList = nMerge; + +#ifdef SQLITE_DEBUG + { + int i; + for(i=1; i<*pnList; i++){ + assert( aContent[aList[i]] > aContent[aList[i-1]] ); + } + } +#endif +} + +/* +** Free an iterator allocated by walIteratorInit(). +*/ +static void walIteratorFree(WalIterator *p){ + sqlite3ScratchFree(p); +} + +/* +** Construct a WalInterator object that can be used to loop over all +** pages in the WAL in ascending order. The caller must hold the checkpoint +** lock. +** +** On success, make *pp point to the newly allocated WalInterator object +** return SQLITE_OK. Otherwise, return an error code. If this routine +** returns an error, the value of *pp is undefined. +** +** The calling routine should invoke walIteratorFree() to destroy the +** WalIterator object when it has finished with it. +*/ +static int walIteratorInit(Wal *pWal, WalIterator **pp){ + WalIterator *p; /* Return value */ + int nSegment; /* Number of segments to merge */ + u32 iLast; /* Last frame in log */ + int nByte; /* Number of bytes to allocate */ + int i; /* Iterator variable */ + ht_slot *aTmp; /* Temp space used by merge-sort */ + int rc = SQLITE_OK; /* Return Code */ + + /* This routine only runs while holding the checkpoint lock. And + ** it only runs if there is actually content in the log (mxFrame>0). + */ + assert( pWal->ckptLock && pWal->hdr.mxFrame>0 ); + iLast = pWal->hdr.mxFrame; + + /* Allocate space for the WalIterator object. */ + nSegment = walFramePage(iLast) + 1; + nByte = sizeof(WalIterator) + + (nSegment-1)*sizeof(struct WalSegment) + + iLast*sizeof(ht_slot); + p = (WalIterator *)sqlite3ScratchMalloc(nByte); + if( !p ){ + return SQLITE_NOMEM; + } + memset(p, 0, nByte); + p->nSegment = nSegment; + + /* Allocate temporary space used by the merge-sort routine. This block + ** of memory will be freed before this function returns. + */ + aTmp = (ht_slot *)sqlite3ScratchMalloc( + sizeof(ht_slot) * (iLast>HASHTABLE_NPAGE?HASHTABLE_NPAGE:iLast) + ); + if( !aTmp ){ + rc = SQLITE_NOMEM; + } + + for(i=0; rc==SQLITE_OK && iaSegment[p->nSegment])[iZero]; + iZero++; + + for(j=0; jaSegment[i].iZero = iZero; + p->aSegment[i].nEntry = nEntry; + p->aSegment[i].aIndex = aIndex; + p->aSegment[i].aPgno = (u32 *)aPgno; + } + } + sqlite3ScratchFree(aTmp); + + if( rc!=SQLITE_OK ){ + walIteratorFree(p); + } + *pp = p; + return rc; +} + +/* +** Attempt to obtain the exclusive WAL lock defined by parameters lockIdx and +** n. If the attempt fails and parameter xBusy is not NULL, then it is a +** busy-handler function. Invoke it and retry the lock until either the +** lock is successfully obtained or the busy-handler returns 0. +*/ +static int walBusyLock( + Wal *pWal, /* WAL connection */ + int (*xBusy)(void*), /* Function to call when busy */ + void *pBusyArg, /* Context argument for xBusyHandler */ + int lockIdx, /* Offset of first byte to lock */ + int n /* Number of bytes to lock */ +){ + int rc; + do { + rc = walLockExclusive(pWal, lockIdx, n); + }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); + return rc; +} + +/* +** The cache of the wal-index header must be valid to call this function. +** Return the page-size in bytes used by the database. +*/ +static int walPagesize(Wal *pWal){ + return (pWal->hdr.szPage&0xfe00) + ((pWal->hdr.szPage&0x0001)<<16); +} + +/* +** Copy as much content as we can from the WAL back into the database file +** in response to an sqlite3_wal_checkpoint() request or the equivalent. +** +** The amount of information copies from WAL to database might be limited +** by active readers. This routine will never overwrite a database page +** that a concurrent reader might be using. +** +** All I/O barrier operations (a.k.a fsyncs) occur in this routine when +** SQLite is in WAL-mode in synchronous=NORMAL. That means that if +** checkpoints are always run by a background thread or background +** process, foreground threads will never block on a lengthy fsync call. +** +** Fsync is called on the WAL before writing content out of the WAL and +** into the database. This ensures that if the new content is persistent +** in the WAL and can be recovered following a power-loss or hard reset. +** +** Fsync is also called on the database file if (and only if) the entire +** WAL content is copied into the database file. This second fsync makes +** it safe to delete the WAL since the new content will persist in the +** database file. +** +** This routine uses and updates the nBackfill field of the wal-index header. +** This is the only routine tha will increase the value of nBackfill. +** (A WAL reset or recovery will revert nBackfill to zero, but not increase +** its value.) +** +** The caller must be holding sufficient locks to ensure that no other +** checkpoint is running (in any other thread or process) at the same +** time. +*/ +static int walCheckpoint( + Wal *pWal, /* Wal connection */ + int eMode, /* One of PASSIVE, FULL or RESTART */ + int (*xBusyCall)(void*), /* Function to call when busy */ + void *pBusyArg, /* Context argument for xBusyHandler */ + int sync_flags, /* Flags for OsSync() (or 0) */ + u8 *zBuf /* Temporary buffer to use */ +){ + int rc; /* Return code */ + int szPage; /* Database page-size */ + WalIterator *pIter = 0; /* Wal iterator context */ + u32 iDbpage = 0; /* Next database page to write */ + u32 iFrame = 0; /* Wal frame containing data for iDbpage */ + u32 mxSafeFrame; /* Max frame that can be backfilled */ + u32 mxPage; /* Max database page to write */ + int i; /* Loop counter */ + volatile WalCkptInfo *pInfo; /* The checkpoint status information */ + int (*xBusy)(void*) = 0; /* Function to call when waiting for locks */ + + szPage = walPagesize(pWal); + testcase( szPage<=32768 ); + testcase( szPage>=65536 ); + pInfo = walCkptInfo(pWal); + if( pInfo->nBackfill>=pWal->hdr.mxFrame ) return SQLITE_OK; + + /* Allocate the iterator */ + rc = walIteratorInit(pWal, &pIter); + if( rc!=SQLITE_OK ){ + return rc; + } + assert( pIter ); + + if( eMode!=SQLITE_CHECKPOINT_PASSIVE ) xBusy = xBusyCall; + + /* Compute in mxSafeFrame the index of the last frame of the WAL that is + ** safe to write into the database. Frames beyond mxSafeFrame might + ** overwrite database pages that are in use by active readers and thus + ** cannot be backfilled from the WAL. + */ + mxSafeFrame = pWal->hdr.mxFrame; + mxPage = pWal->hdr.nPage; + for(i=1; iaReadMark[i]; + if( mxSafeFrame>y ){ + assert( y<=pWal->hdr.mxFrame ); + rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); + if( rc==SQLITE_OK ){ + pInfo->aReadMark[i] = (i==1 ? mxSafeFrame : READMARK_NOT_USED); + walUnlockExclusive(pWal, WAL_READ_LOCK(i), 1); + }else if( rc==SQLITE_BUSY ){ + mxSafeFrame = y; + xBusy = 0; + }else{ + goto walcheckpoint_out; + } + } + } + + if( pInfo->nBackfillnBackfill; + + /* Sync the WAL to disk */ + if( sync_flags ){ + rc = sqlite3OsSync(pWal->pWalFd, sync_flags); + } + + /* If the database may grow as a result of this checkpoint, hint + ** about the eventual size of the db file to the VFS layer. + */ + if( rc==SQLITE_OK ){ + i64 nReq = ((i64)mxPage * szPage); + rc = sqlite3OsFileSize(pWal->pDbFd, &nSize); + if( rc==SQLITE_OK && nSizepDbFd, SQLITE_FCNTL_SIZE_HINT, &nReq); + } + } + + + /* Iterate through the contents of the WAL, copying data to the db file. */ + while( rc==SQLITE_OK && 0==walIteratorNext(pIter, &iDbpage, &iFrame) ){ + i64 iOffset; + assert( walFramePgno(pWal, iFrame)==iDbpage ); + if( iFrame<=nBackfill || iFrame>mxSafeFrame || iDbpage>mxPage ) continue; + iOffset = walFrameOffset(iFrame, szPage) + WAL_FRAME_HDRSIZE; + /* testcase( IS_BIG_INT(iOffset) ); // requires a 4GiB WAL file */ + rc = sqlite3OsRead(pWal->pWalFd, zBuf, szPage, iOffset); + if( rc!=SQLITE_OK ) break; + iOffset = (iDbpage-1)*(i64)szPage; + testcase( IS_BIG_INT(iOffset) ); + rc = sqlite3OsWrite(pWal->pDbFd, zBuf, szPage, iOffset); + if( rc!=SQLITE_OK ) break; + } + + /* If work was actually accomplished... */ + if( rc==SQLITE_OK ){ + if( mxSafeFrame==walIndexHdr(pWal)->mxFrame ){ + i64 szDb = pWal->hdr.nPage*(i64)szPage; + testcase( IS_BIG_INT(szDb) ); + rc = sqlite3OsTruncate(pWal->pDbFd, szDb); + if( rc==SQLITE_OK && sync_flags ){ + rc = sqlite3OsSync(pWal->pDbFd, sync_flags); + } + } + if( rc==SQLITE_OK ){ + pInfo->nBackfill = mxSafeFrame; + } + } + + /* Release the reader lock held while backfilling */ + walUnlockExclusive(pWal, WAL_READ_LOCK(0), 1); + } + + if( rc==SQLITE_BUSY ){ + /* Reset the return code so as not to report a checkpoint failure + ** just because there are active readers. */ + rc = SQLITE_OK; + } + + /* If this is an SQLITE_CHECKPOINT_RESTART operation, and the entire wal + ** file has been copied into the database file, then block until all + ** readers have finished using the wal file. This ensures that the next + ** process to write to the database restarts the wal file. + */ + if( rc==SQLITE_OK && eMode!=SQLITE_CHECKPOINT_PASSIVE ){ + assert( pWal->writeLock ); + if( pInfo->nBackfillhdr.mxFrame ){ + rc = SQLITE_BUSY; + }else if( eMode==SQLITE_CHECKPOINT_RESTART ){ + assert( mxSafeFrame==pWal->hdr.mxFrame ); + rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(1), WAL_NREADER-1); + if( rc==SQLITE_OK ){ + walUnlockExclusive(pWal, WAL_READ_LOCK(1), WAL_NREADER-1); + } + } + } + + walcheckpoint_out: + walIteratorFree(pIter); + return rc; +} + +/* +** If the WAL file is currently larger than nMax bytes in size, truncate +** it to exactly nMax bytes. If an error occurs while doing so, ignore it. +*/ +static void walLimitSize(Wal *pWal, i64 nMax){ + i64 sz; + int rx; + sqlite3BeginBenignMalloc(); + rx = sqlite3OsFileSize(pWal->pWalFd, &sz); + if( rx==SQLITE_OK && (sz > nMax ) ){ + rx = sqlite3OsTruncate(pWal->pWalFd, nMax); + } + sqlite3EndBenignMalloc(); + if( rx ){ + sqlite3_log(rx, "cannot limit WAL size: %s", pWal->zWalName); + } +} + +/* +** Close a connection to a log file. +*/ +SQLITE_PRIVATE int sqlite3WalClose( + Wal *pWal, /* Wal to close */ + int sync_flags, /* Flags to pass to OsSync() (or 0) */ + int nBuf, + u8 *zBuf /* Buffer of at least nBuf bytes */ +){ + int rc = SQLITE_OK; + if( pWal ){ + int isDelete = 0; /* True to unlink wal and wal-index files */ + + /* If an EXCLUSIVE lock can be obtained on the database file (using the + ** ordinary, rollback-mode locking methods, this guarantees that the + ** connection associated with this log file is the only connection to + ** the database. In this case checkpoint the database and unlink both + ** the wal and wal-index files. + ** + ** The EXCLUSIVE lock is not released before returning. + */ + rc = sqlite3OsLock(pWal->pDbFd, SQLITE_LOCK_EXCLUSIVE); + if( rc==SQLITE_OK ){ + if( pWal->exclusiveMode==WAL_NORMAL_MODE ){ + pWal->exclusiveMode = WAL_EXCLUSIVE_MODE; + } + rc = sqlite3WalCheckpoint( + pWal, SQLITE_CHECKPOINT_PASSIVE, 0, 0, sync_flags, nBuf, zBuf, 0, 0 + ); + if( rc==SQLITE_OK ){ + int bPersist = -1; + sqlite3OsFileControlHint( + pWal->pDbFd, SQLITE_FCNTL_PERSIST_WAL, &bPersist + ); + if( bPersist!=1 ){ + /* Try to delete the WAL file if the checkpoint completed and + ** fsyned (rc==SQLITE_OK) and if we are not in persistent-wal + ** mode (!bPersist) */ + isDelete = 1; + }else if( pWal->mxWalSize>=0 ){ + /* Try to truncate the WAL file to zero bytes if the checkpoint + ** completed and fsynced (rc==SQLITE_OK) and we are in persistent + ** WAL mode (bPersist) and if the PRAGMA journal_size_limit is a + ** non-negative value (pWal->mxWalSize>=0). Note that we truncate + ** to zero bytes as truncating to the journal_size_limit might + ** leave a corrupt WAL file on disk. */ + walLimitSize(pWal, 0); + } + } + } + + walIndexClose(pWal, isDelete); + sqlite3OsClose(pWal->pWalFd); + if( isDelete ){ + sqlite3BeginBenignMalloc(); + sqlite3OsDelete(pWal->pVfs, pWal->zWalName, 0); + sqlite3EndBenignMalloc(); + } + WALTRACE(("WAL%p: closed\n", pWal)); + sqlite3_free((void *)pWal->apWiData); + sqlite3_free(pWal); + } + return rc; +} + +/* +** Try to read the wal-index header. Return 0 on success and 1 if +** there is a problem. +** +** The wal-index is in shared memory. Another thread or process might +** be writing the header at the same time this procedure is trying to +** read it, which might result in inconsistency. A dirty read is detected +** by verifying that both copies of the header are the same and also by +** a checksum on the header. +** +** If and only if the read is consistent and the header is different from +** pWal->hdr, then pWal->hdr is updated to the content of the new header +** and *pChanged is set to 1. +** +** If the checksum cannot be verified return non-zero. If the header +** is read successfully and the checksum verified, return zero. +*/ +static int walIndexTryHdr(Wal *pWal, int *pChanged){ + u32 aCksum[2]; /* Checksum on the header content */ + WalIndexHdr h1, h2; /* Two copies of the header content */ + WalIndexHdr volatile *aHdr; /* Header in shared memory */ + + /* The first page of the wal-index must be mapped at this point. */ + assert( pWal->nWiData>0 && pWal->apWiData[0] ); + + /* Read the header. This might happen concurrently with a write to the + ** same area of shared memory on a different CPU in a SMP, + ** meaning it is possible that an inconsistent snapshot is read + ** from the file. If this happens, return non-zero. + ** + ** There are two copies of the header at the beginning of the wal-index. + ** When reading, read [0] first then [1]. Writes are in the reverse order. + ** Memory barriers are used to prevent the compiler or the hardware from + ** reordering the reads and writes. + */ + aHdr = walIndexHdr(pWal); + memcpy(&h1, (void *)&aHdr[0], sizeof(h1)); + walShmBarrier(pWal); + memcpy(&h2, (void *)&aHdr[1], sizeof(h2)); + + if( memcmp(&h1, &h2, sizeof(h1))!=0 ){ + return 1; /* Dirty read */ + } + if( h1.isInit==0 ){ + return 1; /* Malformed header - probably all zeros */ + } + walChecksumBytes(1, (u8*)&h1, sizeof(h1)-sizeof(h1.aCksum), 0, aCksum); + if( aCksum[0]!=h1.aCksum[0] || aCksum[1]!=h1.aCksum[1] ){ + return 1; /* Checksum does not match */ + } + + if( memcmp(&pWal->hdr, &h1, sizeof(WalIndexHdr)) ){ + *pChanged = 1; + memcpy(&pWal->hdr, &h1, sizeof(WalIndexHdr)); + pWal->szPage = (pWal->hdr.szPage&0xfe00) + ((pWal->hdr.szPage&0x0001)<<16); + testcase( pWal->szPage<=32768 ); + testcase( pWal->szPage>=65536 ); + } + + /* The header was successfully read. Return zero. */ + return 0; +} + +/* +** Read the wal-index header from the wal-index and into pWal->hdr. +** If the wal-header appears to be corrupt, try to reconstruct the +** wal-index from the WAL before returning. +** +** Set *pChanged to 1 if the wal-index header value in pWal->hdr is +** changed by this opertion. If pWal->hdr is unchanged, set *pChanged +** to 0. +** +** If the wal-index header is successfully read, return SQLITE_OK. +** Otherwise an SQLite error code. +*/ +static int walIndexReadHdr(Wal *pWal, int *pChanged){ + int rc; /* Return code */ + int badHdr; /* True if a header read failed */ + volatile u32 *page0; /* Chunk of wal-index containing header */ + + /* Ensure that page 0 of the wal-index (the page that contains the + ** wal-index header) is mapped. Return early if an error occurs here. + */ + assert( pChanged ); + rc = walIndexPage(pWal, 0, &page0); + if( rc!=SQLITE_OK ){ + return rc; + }; + assert( page0 || pWal->writeLock==0 ); + + /* If the first page of the wal-index has been mapped, try to read the + ** wal-index header immediately, without holding any lock. This usually + ** works, but may fail if the wal-index header is corrupt or currently + ** being modified by another thread or process. + */ + badHdr = (page0 ? walIndexTryHdr(pWal, pChanged) : 1); + + /* If the first attempt failed, it might have been due to a race + ** with a writer. So get a WRITE lock and try again. + */ + assert( badHdr==0 || pWal->writeLock==0 ); + if( badHdr ){ + if( pWal->readOnly & WAL_SHM_RDONLY ){ + if( SQLITE_OK==(rc = walLockShared(pWal, WAL_WRITE_LOCK)) ){ + walUnlockShared(pWal, WAL_WRITE_LOCK); + rc = SQLITE_READONLY_RECOVERY; + } + }else if( SQLITE_OK==(rc = walLockExclusive(pWal, WAL_WRITE_LOCK, 1)) ){ + pWal->writeLock = 1; + if( SQLITE_OK==(rc = walIndexPage(pWal, 0, &page0)) ){ + badHdr = walIndexTryHdr(pWal, pChanged); + if( badHdr ){ + /* If the wal-index header is still malformed even while holding + ** a WRITE lock, it can only mean that the header is corrupted and + ** needs to be reconstructed. So run recovery to do exactly that. + */ + rc = walIndexRecover(pWal); + *pChanged = 1; + } + } + pWal->writeLock = 0; + walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); + } + } + + /* If the header is read successfully, check the version number to make + ** sure the wal-index was not constructed with some future format that + ** this version of SQLite cannot understand. + */ + if( badHdr==0 && pWal->hdr.iVersion!=WALINDEX_MAX_VERSION ){ + rc = SQLITE_CANTOPEN_BKPT; + } + + return rc; +} + +/* +** This is the value that walTryBeginRead returns when it needs to +** be retried. +*/ +#define WAL_RETRY (-1) + +/* +** Attempt to start a read transaction. This might fail due to a race or +** other transient condition. When that happens, it returns WAL_RETRY to +** indicate to the caller that it is safe to retry immediately. +** +** On success return SQLITE_OK. On a permanent failure (such an +** I/O error or an SQLITE_BUSY because another process is running +** recovery) return a positive error code. +** +** The useWal parameter is true to force the use of the WAL and disable +** the case where the WAL is bypassed because it has been completely +** checkpointed. If useWal==0 then this routine calls walIndexReadHdr() +** to make a copy of the wal-index header into pWal->hdr. If the +** wal-index header has changed, *pChanged is set to 1 (as an indication +** to the caller that the local paget cache is obsolete and needs to be +** flushed.) When useWal==1, the wal-index header is assumed to already +** be loaded and the pChanged parameter is unused. +** +** The caller must set the cnt parameter to the number of prior calls to +** this routine during the current read attempt that returned WAL_RETRY. +** This routine will start taking more aggressive measures to clear the +** race conditions after multiple WAL_RETRY returns, and after an excessive +** number of errors will ultimately return SQLITE_PROTOCOL. The +** SQLITE_PROTOCOL return indicates that some other process has gone rogue +** and is not honoring the locking protocol. There is a vanishingly small +** chance that SQLITE_PROTOCOL could be returned because of a run of really +** bad luck when there is lots of contention for the wal-index, but that +** possibility is so small that it can be safely neglected, we believe. +** +** On success, this routine obtains a read lock on +** WAL_READ_LOCK(pWal->readLock). The pWal->readLock integer is +** in the range 0 <= pWal->readLock < WAL_NREADER. If pWal->readLock==(-1) +** that means the Wal does not hold any read lock. The reader must not +** access any database page that is modified by a WAL frame up to and +** including frame number aReadMark[pWal->readLock]. The reader will +** use WAL frames up to and including pWal->hdr.mxFrame if pWal->readLock>0 +** Or if pWal->readLock==0, then the reader will ignore the WAL +** completely and get all content directly from the database file. +** If the useWal parameter is 1 then the WAL will never be ignored and +** this routine will always set pWal->readLock>0 on success. +** When the read transaction is completed, the caller must release the +** lock on WAL_READ_LOCK(pWal->readLock) and set pWal->readLock to -1. +** +** This routine uses the nBackfill and aReadMark[] fields of the header +** to select a particular WAL_READ_LOCK() that strives to let the +** checkpoint process do as much work as possible. This routine might +** update values of the aReadMark[] array in the header, but if it does +** so it takes care to hold an exclusive lock on the corresponding +** WAL_READ_LOCK() while changing values. +*/ +static int walTryBeginRead(Wal *pWal, int *pChanged, int useWal, int cnt){ + volatile WalCkptInfo *pInfo; /* Checkpoint information in wal-index */ + u32 mxReadMark; /* Largest aReadMark[] value */ + int mxI; /* Index of largest aReadMark[] value */ + int i; /* Loop counter */ + int rc = SQLITE_OK; /* Return code */ + + assert( pWal->readLock<0 ); /* Not currently locked */ + + /* Take steps to avoid spinning forever if there is a protocol error. + ** + ** Circumstances that cause a RETRY should only last for the briefest + ** instances of time. No I/O or other system calls are done while the + ** locks are held, so the locks should not be held for very long. But + ** if we are unlucky, another process that is holding a lock might get + ** paged out or take a page-fault that is time-consuming to resolve, + ** during the few nanoseconds that it is holding the lock. In that case, + ** it might take longer than normal for the lock to free. + ** + ** After 5 RETRYs, we begin calling sqlite3OsSleep(). The first few + ** calls to sqlite3OsSleep() have a delay of 1 microsecond. Really this + ** is more of a scheduler yield than an actual delay. But on the 10th + ** an subsequent retries, the delays start becoming longer and longer, + ** so that on the 100th (and last) RETRY we delay for 21 milliseconds. + ** The total delay time before giving up is less than 1 second. + */ + if( cnt>5 ){ + int nDelay = 1; /* Pause time in microseconds */ + if( cnt>100 ){ + VVA_ONLY( pWal->lockError = 1; ) + return SQLITE_PROTOCOL; + } + if( cnt>=10 ) nDelay = (cnt-9)*238; /* Max delay 21ms. Total delay 996ms */ + sqlite3OsSleep(pWal->pVfs, nDelay); + } + + if( !useWal ){ + rc = walIndexReadHdr(pWal, pChanged); + if( rc==SQLITE_BUSY ){ + /* If there is not a recovery running in another thread or process + ** then convert BUSY errors to WAL_RETRY. If recovery is known to + ** be running, convert BUSY to BUSY_RECOVERY. There is a race here + ** which might cause WAL_RETRY to be returned even if BUSY_RECOVERY + ** would be technically correct. But the race is benign since with + ** WAL_RETRY this routine will be called again and will probably be + ** right on the second iteration. + */ + if( pWal->apWiData[0]==0 ){ + /* This branch is taken when the xShmMap() method returns SQLITE_BUSY. + ** We assume this is a transient condition, so return WAL_RETRY. The + ** xShmMap() implementation used by the default unix and win32 VFS + ** modules may return SQLITE_BUSY due to a race condition in the + ** code that determines whether or not the shared-memory region + ** must be zeroed before the requested page is returned. + */ + rc = WAL_RETRY; + }else if( SQLITE_OK==(rc = walLockShared(pWal, WAL_RECOVER_LOCK)) ){ + walUnlockShared(pWal, WAL_RECOVER_LOCK); + rc = WAL_RETRY; + }else if( rc==SQLITE_BUSY ){ + rc = SQLITE_BUSY_RECOVERY; + } + } + if( rc!=SQLITE_OK ){ + return rc; + } + } + + pInfo = walCkptInfo(pWal); + if( !useWal && pInfo->nBackfill==pWal->hdr.mxFrame ){ + /* The WAL has been completely backfilled (or it is empty). + ** and can be safely ignored. + */ + rc = walLockShared(pWal, WAL_READ_LOCK(0)); + walShmBarrier(pWal); + if( rc==SQLITE_OK ){ + if( memcmp((void *)walIndexHdr(pWal), &pWal->hdr, sizeof(WalIndexHdr)) ){ + /* It is not safe to allow the reader to continue here if frames + ** may have been appended to the log before READ_LOCK(0) was obtained. + ** When holding READ_LOCK(0), the reader ignores the entire log file, + ** which implies that the database file contains a trustworthy + ** snapshoT. Since holding READ_LOCK(0) prevents a checkpoint from + ** happening, this is usually correct. + ** + ** However, if frames have been appended to the log (or if the log + ** is wrapped and written for that matter) before the READ_LOCK(0) + ** is obtained, that is not necessarily true. A checkpointer may + ** have started to backfill the appended frames but crashed before + ** it finished. Leaving a corrupt image in the database file. + */ + walUnlockShared(pWal, WAL_READ_LOCK(0)); + return WAL_RETRY; + } + pWal->readLock = 0; + return SQLITE_OK; + }else if( rc!=SQLITE_BUSY ){ + return rc; + } + } + + /* If we get this far, it means that the reader will want to use + ** the WAL to get at content from recent commits. The job now is + ** to select one of the aReadMark[] entries that is closest to + ** but not exceeding pWal->hdr.mxFrame and lock that entry. + */ + mxReadMark = 0; + mxI = 0; + for(i=1; iaReadMark[i]; + if( mxReadMark<=thisMark && thisMark<=pWal->hdr.mxFrame ){ + assert( thisMark!=READMARK_NOT_USED ); + mxReadMark = thisMark; + mxI = i; + } + } + /* There was once an "if" here. The extra "{" is to preserve indentation. */ + { + if( (pWal->readOnly & WAL_SHM_RDONLY)==0 + && (mxReadMarkhdr.mxFrame || mxI==0) + ){ + for(i=1; iaReadMark[i] = pWal->hdr.mxFrame; + mxI = i; + walUnlockExclusive(pWal, WAL_READ_LOCK(i), 1); + break; + }else if( rc!=SQLITE_BUSY ){ + return rc; + } + } + } + if( mxI==0 ){ + assert( rc==SQLITE_BUSY || (pWal->readOnly & WAL_SHM_RDONLY)!=0 ); + return rc==SQLITE_BUSY ? WAL_RETRY : SQLITE_READONLY_CANTLOCK; + } + + rc = walLockShared(pWal, WAL_READ_LOCK(mxI)); + if( rc ){ + return rc==SQLITE_BUSY ? WAL_RETRY : rc; + } + /* Now that the read-lock has been obtained, check that neither the + ** value in the aReadMark[] array or the contents of the wal-index + ** header have changed. + ** + ** It is necessary to check that the wal-index header did not change + ** between the time it was read and when the shared-lock was obtained + ** on WAL_READ_LOCK(mxI) was obtained to account for the possibility + ** that the log file may have been wrapped by a writer, or that frames + ** that occur later in the log than pWal->hdr.mxFrame may have been + ** copied into the database by a checkpointer. If either of these things + ** happened, then reading the database with the current value of + ** pWal->hdr.mxFrame risks reading a corrupted snapshot. So, retry + ** instead. + ** + ** This does not guarantee that the copy of the wal-index header is up to + ** date before proceeding. That would not be possible without somehow + ** blocking writers. It only guarantees that a dangerous checkpoint or + ** log-wrap (either of which would require an exclusive lock on + ** WAL_READ_LOCK(mxI)) has not occurred since the snapshot was valid. + */ + walShmBarrier(pWal); + if( pInfo->aReadMark[mxI]!=mxReadMark + || memcmp((void *)walIndexHdr(pWal), &pWal->hdr, sizeof(WalIndexHdr)) + ){ + walUnlockShared(pWal, WAL_READ_LOCK(mxI)); + return WAL_RETRY; + }else{ + assert( mxReadMark<=pWal->hdr.mxFrame ); + pWal->readLock = (i16)mxI; + } + } + return rc; +} + +/* +** Begin a read transaction on the database. +** +** This routine used to be called sqlite3OpenSnapshot() and with good reason: +** it takes a snapshot of the state of the WAL and wal-index for the current +** instant in time. The current thread will continue to use this snapshot. +** Other threads might append new content to the WAL and wal-index but +** that extra content is ignored by the current thread. +** +** If the database contents have changes since the previous read +** transaction, then *pChanged is set to 1 before returning. The +** Pager layer will use this to know that is cache is stale and +** needs to be flushed. +*/ +SQLITE_PRIVATE int sqlite3WalBeginReadTransaction(Wal *pWal, int *pChanged){ + int rc; /* Return code */ + int cnt = 0; /* Number of TryBeginRead attempts */ + + do{ + rc = walTryBeginRead(pWal, pChanged, 0, ++cnt); + }while( rc==WAL_RETRY ); + testcase( (rc&0xff)==SQLITE_BUSY ); + testcase( (rc&0xff)==SQLITE_IOERR ); + testcase( rc==SQLITE_PROTOCOL ); + testcase( rc==SQLITE_OK ); + return rc; +} + +/* +** Finish with a read transaction. All this does is release the +** read-lock. +*/ +SQLITE_PRIVATE void sqlite3WalEndReadTransaction(Wal *pWal){ + sqlite3WalEndWriteTransaction(pWal); + if( pWal->readLock>=0 ){ + walUnlockShared(pWal, WAL_READ_LOCK(pWal->readLock)); + pWal->readLock = -1; + } +} + +/* +** Search the wal file for page pgno. If found, set *piRead to the frame that +** contains the page. Otherwise, if pgno is not in the wal file, set *piRead +** to zero. +** +** Return SQLITE_OK if successful, or an error code if an error occurs. If an +** error does occur, the final value of *piRead is undefined. +*/ +SQLITE_PRIVATE int sqlite3WalFindFrame( + Wal *pWal, /* WAL handle */ + Pgno pgno, /* Database page number to read data for */ + u32 *piRead /* OUT: Frame number (or zero) */ +){ + u32 iRead = 0; /* If !=0, WAL frame to return data from */ + u32 iLast = pWal->hdr.mxFrame; /* Last page in WAL for this reader */ + int iHash; /* Used to loop through N hash tables */ + + /* This routine is only be called from within a read transaction. */ + assert( pWal->readLock>=0 || pWal->lockError ); + + /* If the "last page" field of the wal-index header snapshot is 0, then + ** no data will be read from the wal under any circumstances. Return early + ** in this case as an optimization. Likewise, if pWal->readLock==0, + ** then the WAL is ignored by the reader so return early, as if the + ** WAL were empty. + */ + if( iLast==0 || pWal->readLock==0 ){ + *piRead = 0; + return SQLITE_OK; + } + + /* Search the hash table or tables for an entry matching page number + ** pgno. Each iteration of the following for() loop searches one + ** hash table (each hash table indexes up to HASHTABLE_NPAGE frames). + ** + ** This code might run concurrently to the code in walIndexAppend() + ** that adds entries to the wal-index (and possibly to this hash + ** table). This means the value just read from the hash + ** slot (aHash[iKey]) may have been added before or after the + ** current read transaction was opened. Values added after the + ** read transaction was opened may have been written incorrectly - + ** i.e. these slots may contain garbage data. However, we assume + ** that any slots written before the current read transaction was + ** opened remain unmodified. + ** + ** For the reasons above, the if(...) condition featured in the inner + ** loop of the following block is more stringent that would be required + ** if we had exclusive access to the hash-table: + ** + ** (aPgno[iFrame]==pgno): + ** This condition filters out normal hash-table collisions. + ** + ** (iFrame<=iLast): + ** This condition filters out entries that were added to the hash + ** table after the current read-transaction had started. + */ + for(iHash=walFramePage(iLast); iHash>=0 && iRead==0; iHash--){ + volatile ht_slot *aHash; /* Pointer to hash table */ + volatile u32 *aPgno; /* Pointer to array of page numbers */ + u32 iZero; /* Frame number corresponding to aPgno[0] */ + int iKey; /* Hash slot index */ + int nCollide; /* Number of hash collisions remaining */ + int rc; /* Error code */ + + rc = walHashGet(pWal, iHash, &aHash, &aPgno, &iZero); + if( rc!=SQLITE_OK ){ + return rc; + } + nCollide = HASHTABLE_NSLOT; + for(iKey=walHash(pgno); aHash[iKey]; iKey=walNextHash(iKey)){ + u32 iFrame = aHash[iKey] + iZero; + if( iFrame<=iLast && aPgno[aHash[iKey]]==pgno ){ + /* assert( iFrame>iRead ); -- not true if there is corruption */ + iRead = iFrame; + } + if( (nCollide--)==0 ){ + return SQLITE_CORRUPT_BKPT; + } + } + } + +#ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT + /* If expensive assert() statements are available, do a linear search + ** of the wal-index file content. Make sure the results agree with the + ** result obtained using the hash indexes above. */ + { + u32 iRead2 = 0; + u32 iTest; + for(iTest=iLast; iTest>0; iTest--){ + if( walFramePgno(pWal, iTest)==pgno ){ + iRead2 = iTest; + break; + } + } + assert( iRead==iRead2 ); + } +#endif + + *piRead = iRead; + return SQLITE_OK; +} + +/* +** Read the contents of frame iRead from the wal file into buffer pOut +** (which is nOut bytes in size). Return SQLITE_OK if successful, or an +** error code otherwise. +*/ +SQLITE_PRIVATE int sqlite3WalReadFrame( + Wal *pWal, /* WAL handle */ + u32 iRead, /* Frame to read */ + int nOut, /* Size of buffer pOut in bytes */ + u8 *pOut /* Buffer to write page data to */ +){ + int sz; + i64 iOffset; + sz = pWal->hdr.szPage; + sz = (sz&0xfe00) + ((sz&0x0001)<<16); + testcase( sz<=32768 ); + testcase( sz>=65536 ); + iOffset = walFrameOffset(iRead, sz) + WAL_FRAME_HDRSIZE; + /* testcase( IS_BIG_INT(iOffset) ); // requires a 4GiB WAL */ + return sqlite3OsRead(pWal->pWalFd, pOut, (nOut>sz ? sz : nOut), iOffset); +} + +/* +** Return the size of the database in pages (or zero, if unknown). +*/ +SQLITE_PRIVATE Pgno sqlite3WalDbsize(Wal *pWal){ + if( pWal && ALWAYS(pWal->readLock>=0) ){ + return pWal->hdr.nPage; + } + return 0; +} + + +/* +** This function starts a write transaction on the WAL. +** +** A read transaction must have already been started by a prior call +** to sqlite3WalBeginReadTransaction(). +** +** If another thread or process has written into the database since +** the read transaction was started, then it is not possible for this +** thread to write as doing so would cause a fork. So this routine +** returns SQLITE_BUSY in that case and no write transaction is started. +** +** There can only be a single writer active at a time. +*/ +SQLITE_PRIVATE int sqlite3WalBeginWriteTransaction(Wal *pWal){ + int rc; + + /* Cannot start a write transaction without first holding a read + ** transaction. */ + assert( pWal->readLock>=0 ); + + if( pWal->readOnly ){ + return SQLITE_READONLY; + } + + /* Only one writer allowed at a time. Get the write lock. Return + ** SQLITE_BUSY if unable. + */ + rc = walLockExclusive(pWal, WAL_WRITE_LOCK, 1); + if( rc ){ + return rc; + } + pWal->writeLock = 1; + + /* If another connection has written to the database file since the + ** time the read transaction on this connection was started, then + ** the write is disallowed. + */ + if( memcmp(&pWal->hdr, (void *)walIndexHdr(pWal), sizeof(WalIndexHdr))!=0 ){ + walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); + pWal->writeLock = 0; + rc = SQLITE_BUSY_SNAPSHOT; + } + + return rc; +} + +/* +** End a write transaction. The commit has already been done. This +** routine merely releases the lock. +*/ +SQLITE_PRIVATE int sqlite3WalEndWriteTransaction(Wal *pWal){ + if( pWal->writeLock ){ + walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); + pWal->writeLock = 0; + pWal->truncateOnCommit = 0; + } + return SQLITE_OK; +} + +/* +** If any data has been written (but not committed) to the log file, this +** function moves the write-pointer back to the start of the transaction. +** +** Additionally, the callback function is invoked for each frame written +** to the WAL since the start of the transaction. If the callback returns +** other than SQLITE_OK, it is not invoked again and the error code is +** returned to the caller. +** +** Otherwise, if the callback function does not return an error, this +** function returns SQLITE_OK. +*/ +SQLITE_PRIVATE int sqlite3WalUndo(Wal *pWal, int (*xUndo)(void *, Pgno), void *pUndoCtx){ + int rc = SQLITE_OK; + if( ALWAYS(pWal->writeLock) ){ + Pgno iMax = pWal->hdr.mxFrame; + Pgno iFrame; + + /* Restore the clients cache of the wal-index header to the state it + ** was in before the client began writing to the database. + */ + memcpy(&pWal->hdr, (void *)walIndexHdr(pWal), sizeof(WalIndexHdr)); + + for(iFrame=pWal->hdr.mxFrame+1; + ALWAYS(rc==SQLITE_OK) && iFrame<=iMax; + iFrame++ + ){ + /* This call cannot fail. Unless the page for which the page number + ** is passed as the second argument is (a) in the cache and + ** (b) has an outstanding reference, then xUndo is either a no-op + ** (if (a) is false) or simply expels the page from the cache (if (b) + ** is false). + ** + ** If the upper layer is doing a rollback, it is guaranteed that there + ** are no outstanding references to any page other than page 1. And + ** page 1 is never written to the log until the transaction is + ** committed. As a result, the call to xUndo may not fail. + */ + assert( walFramePgno(pWal, iFrame)!=1 ); + rc = xUndo(pUndoCtx, walFramePgno(pWal, iFrame)); + } + if( iMax!=pWal->hdr.mxFrame ) walCleanupHash(pWal); + } + assert( rc==SQLITE_OK ); + return rc; +} + +/* +** Argument aWalData must point to an array of WAL_SAVEPOINT_NDATA u32 +** values. This function populates the array with values required to +** "rollback" the write position of the WAL handle back to the current +** point in the event of a savepoint rollback (via WalSavepointUndo()). +*/ +SQLITE_PRIVATE void sqlite3WalSavepoint(Wal *pWal, u32 *aWalData){ + assert( pWal->writeLock ); + aWalData[0] = pWal->hdr.mxFrame; + aWalData[1] = pWal->hdr.aFrameCksum[0]; + aWalData[2] = pWal->hdr.aFrameCksum[1]; + aWalData[3] = pWal->nCkpt; +} + +/* +** Move the write position of the WAL back to the point identified by +** the values in the aWalData[] array. aWalData must point to an array +** of WAL_SAVEPOINT_NDATA u32 values that has been previously populated +** by a call to WalSavepoint(). +*/ +SQLITE_PRIVATE int sqlite3WalSavepointUndo(Wal *pWal, u32 *aWalData){ + int rc = SQLITE_OK; + + assert( pWal->writeLock ); + assert( aWalData[3]!=pWal->nCkpt || aWalData[0]<=pWal->hdr.mxFrame ); + + if( aWalData[3]!=pWal->nCkpt ){ + /* This savepoint was opened immediately after the write-transaction + ** was started. Right after that, the writer decided to wrap around + ** to the start of the log. Update the savepoint values to match. + */ + aWalData[0] = 0; + aWalData[3] = pWal->nCkpt; + } + + if( aWalData[0]hdr.mxFrame ){ + pWal->hdr.mxFrame = aWalData[0]; + pWal->hdr.aFrameCksum[0] = aWalData[1]; + pWal->hdr.aFrameCksum[1] = aWalData[2]; + walCleanupHash(pWal); + } + + return rc; +} + + +/* +** This function is called just before writing a set of frames to the log +** file (see sqlite3WalFrames()). It checks to see if, instead of appending +** to the current log file, it is possible to overwrite the start of the +** existing log file with the new frames (i.e. "reset" the log). If so, +** it sets pWal->hdr.mxFrame to 0. Otherwise, pWal->hdr.mxFrame is left +** unchanged. +** +** SQLITE_OK is returned if no error is encountered (regardless of whether +** or not pWal->hdr.mxFrame is modified). An SQLite error code is returned +** if an error occurs. +*/ +static int walRestartLog(Wal *pWal){ + int rc = SQLITE_OK; + int cnt; + + if( pWal->readLock==0 ){ + volatile WalCkptInfo *pInfo = walCkptInfo(pWal); + assert( pInfo->nBackfill==pWal->hdr.mxFrame ); + if( pInfo->nBackfill>0 ){ + u32 salt1; + sqlite3_randomness(4, &salt1); + rc = walLockExclusive(pWal, WAL_READ_LOCK(1), WAL_NREADER-1); + if( rc==SQLITE_OK ){ + /* If all readers are using WAL_READ_LOCK(0) (in other words if no + ** readers are currently using the WAL), then the transactions + ** frames will overwrite the start of the existing log. Update the + ** wal-index header to reflect this. + ** + ** In theory it would be Ok to update the cache of the header only + ** at this point. But updating the actual wal-index header is also + ** safe and means there is no special case for sqlite3WalUndo() + ** to handle if this transaction is rolled back. + */ + int i; /* Loop counter */ + u32 *aSalt = pWal->hdr.aSalt; /* Big-endian salt values */ + + pWal->nCkpt++; + pWal->hdr.mxFrame = 0; + sqlite3Put4byte((u8*)&aSalt[0], 1 + sqlite3Get4byte((u8*)&aSalt[0])); + aSalt[1] = salt1; + walIndexWriteHdr(pWal); + pInfo->nBackfill = 0; + pInfo->aReadMark[1] = 0; + for(i=2; iaReadMark[i] = READMARK_NOT_USED; + assert( pInfo->aReadMark[0]==0 ); + walUnlockExclusive(pWal, WAL_READ_LOCK(1), WAL_NREADER-1); + }else if( rc!=SQLITE_BUSY ){ + return rc; + } + } + walUnlockShared(pWal, WAL_READ_LOCK(0)); + pWal->readLock = -1; + cnt = 0; + do{ + int notUsed; + rc = walTryBeginRead(pWal, ¬Used, 1, ++cnt); + }while( rc==WAL_RETRY ); + assert( (rc&0xff)!=SQLITE_BUSY ); /* BUSY not possible when useWal==1 */ + testcase( (rc&0xff)==SQLITE_IOERR ); + testcase( rc==SQLITE_PROTOCOL ); + testcase( rc==SQLITE_OK ); + } + return rc; +} + +/* +** Information about the current state of the WAL file and where +** the next fsync should occur - passed from sqlite3WalFrames() into +** walWriteToLog(). +*/ +typedef struct WalWriter { + Wal *pWal; /* The complete WAL information */ + sqlite3_file *pFd; /* The WAL file to which we write */ + sqlite3_int64 iSyncPoint; /* Fsync at this offset */ + int syncFlags; /* Flags for the fsync */ + int szPage; /* Size of one page */ +} WalWriter; + +/* +** Write iAmt bytes of content into the WAL file beginning at iOffset. +** Do a sync when crossing the p->iSyncPoint boundary. +** +** In other words, if iSyncPoint is in between iOffset and iOffset+iAmt, +** first write the part before iSyncPoint, then sync, then write the +** rest. +*/ +static int walWriteToLog( + WalWriter *p, /* WAL to write to */ + void *pContent, /* Content to be written */ + int iAmt, /* Number of bytes to write */ + sqlite3_int64 iOffset /* Start writing at this offset */ +){ + int rc; + if( iOffsetiSyncPoint && iOffset+iAmt>=p->iSyncPoint ){ + int iFirstAmt = (int)(p->iSyncPoint - iOffset); + rc = sqlite3OsWrite(p->pFd, pContent, iFirstAmt, iOffset); + if( rc ) return rc; + iOffset += iFirstAmt; + iAmt -= iFirstAmt; + pContent = (void*)(iFirstAmt + (char*)pContent); + assert( p->syncFlags & (SQLITE_SYNC_NORMAL|SQLITE_SYNC_FULL) ); + rc = sqlite3OsSync(p->pFd, p->syncFlags & SQLITE_SYNC_MASK); + if( iAmt==0 || rc ) return rc; + } + rc = sqlite3OsWrite(p->pFd, pContent, iAmt, iOffset); + return rc; +} + +/* +** Write out a single frame of the WAL +*/ +static int walWriteOneFrame( + WalWriter *p, /* Where to write the frame */ + PgHdr *pPage, /* The page of the frame to be written */ + int nTruncate, /* The commit flag. Usually 0. >0 for commit */ + sqlite3_int64 iOffset /* Byte offset at which to write */ +){ + int rc; /* Result code from subfunctions */ + void *pData; /* Data actually written */ + u8 aFrame[WAL_FRAME_HDRSIZE]; /* Buffer to assemble frame-header in */ +#if defined(SQLITE_HAS_CODEC) + if( (pData = sqlite3PagerCodec(pPage))==0 ) return SQLITE_NOMEM; +#else + pData = pPage->pData; +#endif + walEncodeFrame(p->pWal, pPage->pgno, nTruncate, pData, aFrame); + rc = walWriteToLog(p, aFrame, sizeof(aFrame), iOffset); + if( rc ) return rc; + /* Write the page data */ + rc = walWriteToLog(p, pData, p->szPage, iOffset+sizeof(aFrame)); + return rc; +} + +/* +** Write a set of frames to the log. The caller must hold the write-lock +** on the log file (obtained using sqlite3WalBeginWriteTransaction()). +*/ +SQLITE_PRIVATE int sqlite3WalFrames( + Wal *pWal, /* Wal handle to write to */ + int szPage, /* Database page-size in bytes */ + PgHdr *pList, /* List of dirty pages to write */ + Pgno nTruncate, /* Database size after this commit */ + int isCommit, /* True if this is a commit */ + int sync_flags /* Flags to pass to OsSync() (or 0) */ +){ + int rc; /* Used to catch return codes */ + u32 iFrame; /* Next frame address */ + PgHdr *p; /* Iterator to run through pList with. */ + PgHdr *pLast = 0; /* Last frame in list */ + int nExtra = 0; /* Number of extra copies of last page */ + int szFrame; /* The size of a single frame */ + i64 iOffset; /* Next byte to write in WAL file */ + WalWriter w; /* The writer */ + + assert( pList ); + assert( pWal->writeLock ); + + /* If this frame set completes a transaction, then nTruncate>0. If + ** nTruncate==0 then this frame set does not complete the transaction. */ + assert( (isCommit!=0)==(nTruncate!=0) ); + +#if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) + { int cnt; for(cnt=0, p=pList; p; p=p->pDirty, cnt++){} + WALTRACE(("WAL%p: frame write begin. %d frames. mxFrame=%d. %s\n", + pWal, cnt, pWal->hdr.mxFrame, isCommit ? "Commit" : "Spill")); + } +#endif + + /* See if it is possible to write these frames into the start of the + ** log file, instead of appending to it at pWal->hdr.mxFrame. + */ + if( SQLITE_OK!=(rc = walRestartLog(pWal)) ){ + return rc; + } + + /* If this is the first frame written into the log, write the WAL + ** header to the start of the WAL file. See comments at the top of + ** this source file for a description of the WAL header format. + */ + iFrame = pWal->hdr.mxFrame; + if( iFrame==0 ){ + u8 aWalHdr[WAL_HDRSIZE]; /* Buffer to assemble wal-header in */ + u32 aCksum[2]; /* Checksum for wal-header */ + + sqlite3Put4byte(&aWalHdr[0], (WAL_MAGIC | SQLITE_BIGENDIAN)); + sqlite3Put4byte(&aWalHdr[4], WAL_MAX_VERSION); + sqlite3Put4byte(&aWalHdr[8], szPage); + sqlite3Put4byte(&aWalHdr[12], pWal->nCkpt); + if( pWal->nCkpt==0 ) sqlite3_randomness(8, pWal->hdr.aSalt); + memcpy(&aWalHdr[16], pWal->hdr.aSalt, 8); + walChecksumBytes(1, aWalHdr, WAL_HDRSIZE-2*4, 0, aCksum); + sqlite3Put4byte(&aWalHdr[24], aCksum[0]); + sqlite3Put4byte(&aWalHdr[28], aCksum[1]); + + pWal->szPage = szPage; + pWal->hdr.bigEndCksum = SQLITE_BIGENDIAN; + pWal->hdr.aFrameCksum[0] = aCksum[0]; + pWal->hdr.aFrameCksum[1] = aCksum[1]; + pWal->truncateOnCommit = 1; + + rc = sqlite3OsWrite(pWal->pWalFd, aWalHdr, sizeof(aWalHdr), 0); + WALTRACE(("WAL%p: wal-header write %s\n", pWal, rc ? "failed" : "ok")); + if( rc!=SQLITE_OK ){ + return rc; + } + + /* Sync the header (unless SQLITE_IOCAP_SEQUENTIAL is true or unless + ** all syncing is turned off by PRAGMA synchronous=OFF). Otherwise + ** an out-of-order write following a WAL restart could result in + ** database corruption. See the ticket: + ** + ** http://localhost:591/sqlite/info/ff5be73dee + */ + if( pWal->syncHeader && sync_flags ){ + rc = sqlite3OsSync(pWal->pWalFd, sync_flags & SQLITE_SYNC_MASK); + if( rc ) return rc; + } + } + assert( (int)pWal->szPage==szPage ); + + /* Setup information needed to write frames into the WAL */ + w.pWal = pWal; + w.pFd = pWal->pWalFd; + w.iSyncPoint = 0; + w.syncFlags = sync_flags; + w.szPage = szPage; + iOffset = walFrameOffset(iFrame+1, szPage); + szFrame = szPage + WAL_FRAME_HDRSIZE; + + /* Write all frames into the log file exactly once */ + for(p=pList; p; p=p->pDirty){ + int nDbSize; /* 0 normally. Positive == commit flag */ + iFrame++; + assert( iOffset==walFrameOffset(iFrame, szPage) ); + nDbSize = (isCommit && p->pDirty==0) ? nTruncate : 0; + rc = walWriteOneFrame(&w, p, nDbSize, iOffset); + if( rc ) return rc; + pLast = p; + iOffset += szFrame; + } + + /* If this is the end of a transaction, then we might need to pad + ** the transaction and/or sync the WAL file. + ** + ** Padding and syncing only occur if this set of frames complete a + ** transaction and if PRAGMA synchronous=FULL. If synchronous==NORMAL + ** or synchonous==OFF, then no padding or syncing are needed. + ** + ** If SQLITE_IOCAP_POWERSAFE_OVERWRITE is defined, then padding is not + ** needed and only the sync is done. If padding is needed, then the + ** final frame is repeated (with its commit mark) until the next sector + ** boundary is crossed. Only the part of the WAL prior to the last + ** sector boundary is synced; the part of the last frame that extends + ** past the sector boundary is written after the sync. + */ + if( isCommit && (sync_flags & WAL_SYNC_TRANSACTIONS)!=0 ){ + if( pWal->padToSectorBoundary ){ + int sectorSize = sqlite3SectorSize(pWal->pWalFd); + w.iSyncPoint = ((iOffset+sectorSize-1)/sectorSize)*sectorSize; + while( iOffsettruncateOnCommit && pWal->mxWalSize>=0 ){ + i64 sz = pWal->mxWalSize; + if( walFrameOffset(iFrame+nExtra+1, szPage)>pWal->mxWalSize ){ + sz = walFrameOffset(iFrame+nExtra+1, szPage); + } + walLimitSize(pWal, sz); + pWal->truncateOnCommit = 0; + } + + /* Append data to the wal-index. It is not necessary to lock the + ** wal-index to do this as the SQLITE_SHM_WRITE lock held on the wal-index + ** guarantees that there are no other writers, and no data that may + ** be in use by existing readers is being overwritten. + */ + iFrame = pWal->hdr.mxFrame; + for(p=pList; p && rc==SQLITE_OK; p=p->pDirty){ + iFrame++; + rc = walIndexAppend(pWal, iFrame, p->pgno); + } + while( rc==SQLITE_OK && nExtra>0 ){ + iFrame++; + nExtra--; + rc = walIndexAppend(pWal, iFrame, pLast->pgno); + } + + if( rc==SQLITE_OK ){ + /* Update the private copy of the header. */ + pWal->hdr.szPage = (u16)((szPage&0xff00) | (szPage>>16)); + testcase( szPage<=32768 ); + testcase( szPage>=65536 ); + pWal->hdr.mxFrame = iFrame; + if( isCommit ){ + pWal->hdr.iChange++; + pWal->hdr.nPage = nTruncate; + } + /* If this is a commit, update the wal-index header too. */ + if( isCommit ){ + walIndexWriteHdr(pWal); + pWal->iCallback = iFrame; + } + } + + WALTRACE(("WAL%p: frame write %s\n", pWal, rc ? "failed" : "ok")); + return rc; +} + +/* +** This routine is called to implement sqlite3_wal_checkpoint() and +** related interfaces. +** +** Obtain a CHECKPOINT lock and then backfill as much information as +** we can from WAL into the database. +** +** If parameter xBusy is not NULL, it is a pointer to a busy-handler +** callback. In this case this function runs a blocking checkpoint. +*/ +SQLITE_PRIVATE int sqlite3WalCheckpoint( + Wal *pWal, /* Wal connection */ + int eMode, /* PASSIVE, FULL or RESTART */ + int (*xBusy)(void*), /* Function to call when busy */ + void *pBusyArg, /* Context argument for xBusyHandler */ + int sync_flags, /* Flags to sync db file with (or 0) */ + int nBuf, /* Size of temporary buffer */ + u8 *zBuf, /* Temporary buffer to use */ + int *pnLog, /* OUT: Number of frames in WAL */ + int *pnCkpt /* OUT: Number of backfilled frames in WAL */ +){ + int rc; /* Return code */ + int isChanged = 0; /* True if a new wal-index header is loaded */ + int eMode2 = eMode; /* Mode to pass to walCheckpoint() */ + + assert( pWal->ckptLock==0 ); + assert( pWal->writeLock==0 ); + + if( pWal->readOnly ) return SQLITE_READONLY; + WALTRACE(("WAL%p: checkpoint begins\n", pWal)); + rc = walLockExclusive(pWal, WAL_CKPT_LOCK, 1); + if( rc ){ + /* Usually this is SQLITE_BUSY meaning that another thread or process + ** is already running a checkpoint, or maybe a recovery. But it might + ** also be SQLITE_IOERR. */ + return rc; + } + pWal->ckptLock = 1; + + /* If this is a blocking-checkpoint, then obtain the write-lock as well + ** to prevent any writers from running while the checkpoint is underway. + ** This has to be done before the call to walIndexReadHdr() below. + ** + ** If the writer lock cannot be obtained, then a passive checkpoint is + ** run instead. Since the checkpointer is not holding the writer lock, + ** there is no point in blocking waiting for any readers. Assuming no + ** other error occurs, this function will return SQLITE_BUSY to the caller. + */ + if( eMode!=SQLITE_CHECKPOINT_PASSIVE ){ + rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_WRITE_LOCK, 1); + if( rc==SQLITE_OK ){ + pWal->writeLock = 1; + }else if( rc==SQLITE_BUSY ){ + eMode2 = SQLITE_CHECKPOINT_PASSIVE; + rc = SQLITE_OK; + } + } + + /* Read the wal-index header. */ + if( rc==SQLITE_OK ){ + rc = walIndexReadHdr(pWal, &isChanged); + if( isChanged && pWal->pDbFd->pMethods->iVersion>=3 ){ + sqlite3OsUnfetch(pWal->pDbFd, 0, 0); + } + } + + /* Copy data from the log to the database file. */ + if( rc==SQLITE_OK ){ + if( pWal->hdr.mxFrame && walPagesize(pWal)!=nBuf ){ + rc = SQLITE_CORRUPT_BKPT; + }else{ + rc = walCheckpoint(pWal, eMode2, xBusy, pBusyArg, sync_flags, zBuf); + } + + /* If no error occurred, set the output variables. */ + if( rc==SQLITE_OK || rc==SQLITE_BUSY ){ + if( pnLog ) *pnLog = (int)pWal->hdr.mxFrame; + if( pnCkpt ) *pnCkpt = (int)(walCkptInfo(pWal)->nBackfill); + } + } + + if( isChanged ){ + /* If a new wal-index header was loaded before the checkpoint was + ** performed, then the pager-cache associated with pWal is now + ** out of date. So zero the cached wal-index header to ensure that + ** next time the pager opens a snapshot on this database it knows that + ** the cache needs to be reset. + */ + memset(&pWal->hdr, 0, sizeof(WalIndexHdr)); + } + + /* Release the locks. */ + sqlite3WalEndWriteTransaction(pWal); + walUnlockExclusive(pWal, WAL_CKPT_LOCK, 1); + pWal->ckptLock = 0; + WALTRACE(("WAL%p: checkpoint %s\n", pWal, rc ? "failed" : "ok")); + return (rc==SQLITE_OK && eMode!=eMode2 ? SQLITE_BUSY : rc); +} + +/* Return the value to pass to a sqlite3_wal_hook callback, the +** number of frames in the WAL at the point of the last commit since +** sqlite3WalCallback() was called. If no commits have occurred since +** the last call, then return 0. +*/ +SQLITE_PRIVATE int sqlite3WalCallback(Wal *pWal){ + u32 ret = 0; + if( pWal ){ + ret = pWal->iCallback; + pWal->iCallback = 0; + } + return (int)ret; +} + +/* +** This function is called to change the WAL subsystem into or out +** of locking_mode=EXCLUSIVE. +** +** If op is zero, then attempt to change from locking_mode=EXCLUSIVE +** into locking_mode=NORMAL. This means that we must acquire a lock +** on the pWal->readLock byte. If the WAL is already in locking_mode=NORMAL +** or if the acquisition of the lock fails, then return 0. If the +** transition out of exclusive-mode is successful, return 1. This +** operation must occur while the pager is still holding the exclusive +** lock on the main database file. +** +** If op is one, then change from locking_mode=NORMAL into +** locking_mode=EXCLUSIVE. This means that the pWal->readLock must +** be released. Return 1 if the transition is made and 0 if the +** WAL is already in exclusive-locking mode - meaning that this +** routine is a no-op. The pager must already hold the exclusive lock +** on the main database file before invoking this operation. +** +** If op is negative, then do a dry-run of the op==1 case but do +** not actually change anything. The pager uses this to see if it +** should acquire the database exclusive lock prior to invoking +** the op==1 case. +*/ +SQLITE_PRIVATE int sqlite3WalExclusiveMode(Wal *pWal, int op){ + int rc; + assert( pWal->writeLock==0 ); + assert( pWal->exclusiveMode!=WAL_HEAPMEMORY_MODE || op==-1 ); + + /* pWal->readLock is usually set, but might be -1 if there was a + ** prior error while attempting to acquire are read-lock. This cannot + ** happen if the connection is actually in exclusive mode (as no xShmLock + ** locks are taken in this case). Nor should the pager attempt to + ** upgrade to exclusive-mode following such an error. + */ + assert( pWal->readLock>=0 || pWal->lockError ); + assert( pWal->readLock>=0 || (op<=0 && pWal->exclusiveMode==0) ); + + if( op==0 ){ + if( pWal->exclusiveMode ){ + pWal->exclusiveMode = 0; + if( walLockShared(pWal, WAL_READ_LOCK(pWal->readLock))!=SQLITE_OK ){ + pWal->exclusiveMode = 1; + } + rc = pWal->exclusiveMode==0; + }else{ + /* Already in locking_mode=NORMAL */ + rc = 0; + } + }else if( op>0 ){ + assert( pWal->exclusiveMode==0 ); + assert( pWal->readLock>=0 ); + walUnlockShared(pWal, WAL_READ_LOCK(pWal->readLock)); + pWal->exclusiveMode = 1; + rc = 1; + }else{ + rc = pWal->exclusiveMode==0; + } + return rc; +} + +/* +** Return true if the argument is non-NULL and the WAL module is using +** heap-memory for the wal-index. Otherwise, if the argument is NULL or the +** WAL module is using shared-memory, return false. +*/ +SQLITE_PRIVATE int sqlite3WalHeapMemory(Wal *pWal){ + return (pWal && pWal->exclusiveMode==WAL_HEAPMEMORY_MODE ); +} + +#ifdef SQLITE_ENABLE_ZIPVFS +/* +** If the argument is not NULL, it points to a Wal object that holds a +** read-lock. This function returns the database page-size if it is known, +** or zero if it is not (or if pWal is NULL). +*/ +SQLITE_PRIVATE int sqlite3WalFramesize(Wal *pWal){ + assert( pWal==0 || pWal->readLock>=0 ); + return (pWal ? pWal->szPage : 0); +} +#endif + +#endif /* #ifndef SQLITE_OMIT_WAL */ + +/************** End of wal.c *************************************************/ +/************** Begin file btmutex.c *****************************************/ +/* +** 2007 August 27 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains code used to implement mutexes on Btree objects. +** This code really belongs in btree.c. But btree.c is getting too +** big and we want to break it down some. This packaged seemed like +** a good breakout. +*/ +/************** Include btreeInt.h in the middle of btmutex.c ****************/ +/************** Begin file btreeInt.h ****************************************/ +/* +** 2004 April 6 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file implements a external (disk-based) database using BTrees. +** For a detailed discussion of BTrees, refer to +** +** Donald E. Knuth, THE ART OF COMPUTER PROGRAMMING, Volume 3: +** "Sorting And Searching", pages 473-480. Addison-Wesley +** Publishing Company, Reading, Massachusetts. +** +** The basic idea is that each page of the file contains N database +** entries and N+1 pointers to subpages. +** +** ---------------------------------------------------------------- +** | Ptr(0) | Key(0) | Ptr(1) | Key(1) | ... | Key(N-1) | Ptr(N) | +** ---------------------------------------------------------------- +** +** All of the keys on the page that Ptr(0) points to have values less +** than Key(0). All of the keys on page Ptr(1) and its subpages have +** values greater than Key(0) and less than Key(1). All of the keys +** on Ptr(N) and its subpages have values greater than Key(N-1). And +** so forth. +** +** Finding a particular key requires reading O(log(M)) pages from the +** disk where M is the number of entries in the tree. +** +** In this implementation, a single file can hold one or more separate +** BTrees. Each BTree is identified by the index of its root page. The +** key and data for any entry are combined to form the "payload". A +** fixed amount of payload can be carried directly on the database +** page. If the payload is larger than the preset amount then surplus +** bytes are stored on overflow pages. The payload for an entry +** and the preceding pointer are combined to form a "Cell". Each +** page has a small header which contains the Ptr(N) pointer and other +** information such as the size of key and data. +** +** FORMAT DETAILS +** +** The file is divided into pages. The first page is called page 1, +** the second is page 2, and so forth. A page number of zero indicates +** "no such page". The page size can be any power of 2 between 512 and 65536. +** Each page can be either a btree page, a freelist page, an overflow +** page, or a pointer-map page. +** +** The first page is always a btree page. The first 100 bytes of the first +** page contain a special header (the "file header") that describes the file. +** The format of the file header is as follows: +** +** OFFSET SIZE DESCRIPTION +** 0 16 Header string: "SQLite format 3\000" +** 16 2 Page size in bytes. (1 means 65536) +** 18 1 File format write version +** 19 1 File format read version +** 20 1 Bytes of unused space at the end of each page +** 21 1 Max embedded payload fraction (must be 64) +** 22 1 Min embedded payload fraction (must be 32) +** 23 1 Min leaf payload fraction (must be 32) +** 24 4 File change counter +** 28 4 Reserved for future use +** 32 4 First freelist page +** 36 4 Number of freelist pages in the file +** 40 60 15 4-byte meta values passed to higher layers +** +** 40 4 Schema cookie +** 44 4 File format of schema layer +** 48 4 Size of page cache +** 52 4 Largest root-page (auto/incr_vacuum) +** 56 4 1=UTF-8 2=UTF16le 3=UTF16be +** 60 4 User version +** 64 4 Incremental vacuum mode +** 68 4 Application-ID +** 72 20 unused +** 92 4 The version-valid-for number +** 96 4 SQLITE_VERSION_NUMBER +** +** All of the integer values are big-endian (most significant byte first). +** +** The file change counter is incremented when the database is changed +** This counter allows other processes to know when the file has changed +** and thus when they need to flush their cache. +** +** The max embedded payload fraction is the amount of the total usable +** space in a page that can be consumed by a single cell for standard +** B-tree (non-LEAFDATA) tables. A value of 255 means 100%. The default +** is to limit the maximum cell size so that at least 4 cells will fit +** on one page. Thus the default max embedded payload fraction is 64. +** +** If the payload for a cell is larger than the max payload, then extra +** payload is spilled to overflow pages. Once an overflow page is allocated, +** as many bytes as possible are moved into the overflow pages without letting +** the cell size drop below the min embedded payload fraction. +** +** The min leaf payload fraction is like the min embedded payload fraction +** except that it applies to leaf nodes in a LEAFDATA tree. The maximum +** payload fraction for a LEAFDATA tree is always 100% (or 255) and it +** not specified in the header. +** +** Each btree pages is divided into three sections: The header, the +** cell pointer array, and the cell content area. Page 1 also has a 100-byte +** file header that occurs before the page header. +** +** |----------------| +** | file header | 100 bytes. Page 1 only. +** |----------------| +** | page header | 8 bytes for leaves. 12 bytes for interior nodes +** |----------------| +** | cell pointer | | 2 bytes per cell. Sorted order. +** | array | | Grows downward +** | | v +** |----------------| +** | unallocated | +** | space | +** |----------------| ^ Grows upwards +** | cell content | | Arbitrary order interspersed with freeblocks. +** | area | | and free space fragments. +** |----------------| +** +** The page headers looks like this: +** +** OFFSET SIZE DESCRIPTION +** 0 1 Flags. 1: intkey, 2: zerodata, 4: leafdata, 8: leaf +** 1 2 byte offset to the first freeblock +** 3 2 number of cells on this page +** 5 2 first byte of the cell content area +** 7 1 number of fragmented free bytes +** 8 4 Right child (the Ptr(N) value). Omitted on leaves. +** +** The flags define the format of this btree page. The leaf flag means that +** this page has no children. The zerodata flag means that this page carries +** only keys and no data. The intkey flag means that the key is a integer +** which is stored in the key size entry of the cell header rather than in +** the payload area. +** +** The cell pointer array begins on the first byte after the page header. +** The cell pointer array contains zero or more 2-byte numbers which are +** offsets from the beginning of the page to the cell content in the cell +** content area. The cell pointers occur in sorted order. The system strives +** to keep free space after the last cell pointer so that new cells can +** be easily added without having to defragment the page. +** +** Cell content is stored at the very end of the page and grows toward the +** beginning of the page. +** +** Unused space within the cell content area is collected into a linked list of +** freeblocks. Each freeblock is at least 4 bytes in size. The byte offset +** to the first freeblock is given in the header. Freeblocks occur in +** increasing order. Because a freeblock must be at least 4 bytes in size, +** any group of 3 or fewer unused bytes in the cell content area cannot +** exist on the freeblock chain. A group of 3 or fewer free bytes is called +** a fragment. The total number of bytes in all fragments is recorded. +** in the page header at offset 7. +** +** SIZE DESCRIPTION +** 2 Byte offset of the next freeblock +** 2 Bytes in this freeblock +** +** Cells are of variable length. Cells are stored in the cell content area at +** the end of the page. Pointers to the cells are in the cell pointer array +** that immediately follows the page header. Cells is not necessarily +** contiguous or in order, but cell pointers are contiguous and in order. +** +** Cell content makes use of variable length integers. A variable +** length integer is 1 to 9 bytes where the lower 7 bits of each +** byte are used. The integer consists of all bytes that have bit 8 set and +** the first byte with bit 8 clear. The most significant byte of the integer +** appears first. A variable-length integer may not be more than 9 bytes long. +** As a special case, all 8 bytes of the 9th byte are used as data. This +** allows a 64-bit integer to be encoded in 9 bytes. +** +** 0x00 becomes 0x00000000 +** 0x7f becomes 0x0000007f +** 0x81 0x00 becomes 0x00000080 +** 0x82 0x00 becomes 0x00000100 +** 0x80 0x7f becomes 0x0000007f +** 0x8a 0x91 0xd1 0xac 0x78 becomes 0x12345678 +** 0x81 0x81 0x81 0x81 0x01 becomes 0x10204081 +** +** Variable length integers are used for rowids and to hold the number of +** bytes of key and data in a btree cell. +** +** The content of a cell looks like this: +** +** SIZE DESCRIPTION +** 4 Page number of the left child. Omitted if leaf flag is set. +** var Number of bytes of data. Omitted if the zerodata flag is set. +** var Number of bytes of key. Or the key itself if intkey flag is set. +** * Payload +** 4 First page of the overflow chain. Omitted if no overflow +** +** Overflow pages form a linked list. Each page except the last is completely +** filled with data (pagesize - 4 bytes). The last page can have as little +** as 1 byte of data. +** +** SIZE DESCRIPTION +** 4 Page number of next overflow page +** * Data +** +** Freelist pages come in two subtypes: trunk pages and leaf pages. The +** file header points to the first in a linked list of trunk page. Each trunk +** page points to multiple leaf pages. The content of a leaf page is +** unspecified. A trunk page looks like this: +** +** SIZE DESCRIPTION +** 4 Page number of next trunk page +** 4 Number of leaf pointers on this page +** * zero or more pages numbers of leaves +*/ + + +/* The following value is the maximum cell size assuming a maximum page +** size give above. +*/ +#define MX_CELL_SIZE(pBt) ((int)(pBt->pageSize-8)) + +/* The maximum number of cells on a single page of the database. This +** assumes a minimum cell size of 6 bytes (4 bytes for the cell itself +** plus 2 bytes for the index to the cell in the page header). Such +** small cells will be rare, but they are possible. +*/ +#define MX_CELL(pBt) ((pBt->pageSize-8)/6) + +/* Forward declarations */ +typedef struct MemPage MemPage; +typedef struct BtLock BtLock; + +/* +** This is a magic string that appears at the beginning of every +** SQLite database in order to identify the file as a real database. +** +** You can change this value at compile-time by specifying a +** -DSQLITE_FILE_HEADER="..." on the compiler command-line. The +** header must be exactly 16 bytes including the zero-terminator so +** the string itself should be 15 characters long. If you change +** the header, then your custom library will not be able to read +** databases generated by the standard tools and the standard tools +** will not be able to read databases created by your custom library. +*/ +#ifndef SQLITE_FILE_HEADER /* 123456789 123456 */ +# define SQLITE_FILE_HEADER "SQLite format 3" +#endif + +/* +** Page type flags. An ORed combination of these flags appear as the +** first byte of on-disk image of every BTree page. +*/ +#define PTF_INTKEY 0x01 +#define PTF_ZERODATA 0x02 +#define PTF_LEAFDATA 0x04 +#define PTF_LEAF 0x08 + +/* +** As each page of the file is loaded into memory, an instance of the following +** structure is appended and initialized to zero. This structure stores +** information about the page that is decoded from the raw file page. +** +** The pParent field points back to the parent page. This allows us to +** walk up the BTree from any leaf to the root. Care must be taken to +** unref() the parent page pointer when this page is no longer referenced. +** The pageDestructor() routine handles that chore. +** +** Access to all fields of this structure is controlled by the mutex +** stored in MemPage.pBt->mutex. +*/ +struct MemPage { + u8 isInit; /* True if previously initialized. MUST BE FIRST! */ + u8 nOverflow; /* Number of overflow cell bodies in aCell[] */ + u8 intKey; /* True if intkey flag is set */ + u8 leaf; /* True if leaf flag is set */ + u8 hasData; /* True if this page stores data */ + u8 hdrOffset; /* 100 for page 1. 0 otherwise */ + u8 childPtrSize; /* 0 if leaf==1. 4 if leaf==0 */ + u8 max1bytePayload; /* min(maxLocal,127) */ + u16 maxLocal; /* Copy of BtShared.maxLocal or BtShared.maxLeaf */ + u16 minLocal; /* Copy of BtShared.minLocal or BtShared.minLeaf */ + u16 cellOffset; /* Index in aData of first cell pointer */ + u16 nFree; /* Number of free bytes on the page */ + u16 nCell; /* Number of cells on this page, local and ovfl */ + u16 maskPage; /* Mask for page offset */ + u16 aiOvfl[5]; /* Insert the i-th overflow cell before the aiOvfl-th + ** non-overflow cell */ + u8 *apOvfl[5]; /* Pointers to the body of overflow cells */ + BtShared *pBt; /* Pointer to BtShared that this page is part of */ + u8 *aData; /* Pointer to disk image of the page data */ + u8 *aDataEnd; /* One byte past the end of usable data */ + u8 *aCellIdx; /* The cell index area */ + DbPage *pDbPage; /* Pager page handle */ + Pgno pgno; /* Page number for this page */ +}; + +/* +** The in-memory image of a disk page has the auxiliary information appended +** to the end. EXTRA_SIZE is the number of bytes of space needed to hold +** that extra information. +*/ +#define EXTRA_SIZE sizeof(MemPage) + +/* +** A linked list of the following structures is stored at BtShared.pLock. +** Locks are added (or upgraded from READ_LOCK to WRITE_LOCK) when a cursor +** is opened on the table with root page BtShared.iTable. Locks are removed +** from this list when a transaction is committed or rolled back, or when +** a btree handle is closed. +*/ +struct BtLock { + Btree *pBtree; /* Btree handle holding this lock */ + Pgno iTable; /* Root page of table */ + u8 eLock; /* READ_LOCK or WRITE_LOCK */ + BtLock *pNext; /* Next in BtShared.pLock list */ +}; + +/* Candidate values for BtLock.eLock */ +#define READ_LOCK 1 +#define WRITE_LOCK 2 + +/* A Btree handle +** +** A database connection contains a pointer to an instance of +** this object for every database file that it has open. This structure +** is opaque to the database connection. The database connection cannot +** see the internals of this structure and only deals with pointers to +** this structure. +** +** For some database files, the same underlying database cache might be +** shared between multiple connections. In that case, each connection +** has it own instance of this object. But each instance of this object +** points to the same BtShared object. The database cache and the +** schema associated with the database file are all contained within +** the BtShared object. +** +** All fields in this structure are accessed under sqlite3.mutex. +** The pBt pointer itself may not be changed while there exists cursors +** in the referenced BtShared that point back to this Btree since those +** cursors have to go through this Btree to find their BtShared and +** they often do so without holding sqlite3.mutex. +*/ +struct Btree { + sqlite3 *db; /* The database connection holding this btree */ + BtShared *pBt; /* Sharable content of this btree */ + u8 inTrans; /* TRANS_NONE, TRANS_READ or TRANS_WRITE */ + u8 sharable; /* True if we can share pBt with another db */ + u8 locked; /* True if db currently has pBt locked */ + int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */ + int nBackup; /* Number of backup operations reading this btree */ + Btree *pNext; /* List of other sharable Btrees from the same db */ + Btree *pPrev; /* Back pointer of the same list */ +#ifndef SQLITE_OMIT_SHARED_CACHE + BtLock lock; /* Object used to lock page 1 */ +#endif +}; + +/* +** Btree.inTrans may take one of the following values. +** +** If the shared-data extension is enabled, there may be multiple users +** of the Btree structure. At most one of these may open a write transaction, +** but any number may have active read transactions. +*/ +#define TRANS_NONE 0 +#define TRANS_READ 1 +#define TRANS_WRITE 2 + +/* +** An instance of this object represents a single database file. +** +** A single database file can be in use at the same time by two +** or more database connections. When two or more connections are +** sharing the same database file, each connection has it own +** private Btree object for the file and each of those Btrees points +** to this one BtShared object. BtShared.nRef is the number of +** connections currently sharing this database file. +** +** Fields in this structure are accessed under the BtShared.mutex +** mutex, except for nRef and pNext which are accessed under the +** global SQLITE_MUTEX_STATIC_MASTER mutex. The pPager field +** may not be modified once it is initially set as long as nRef>0. +** The pSchema field may be set once under BtShared.mutex and +** thereafter is unchanged as long as nRef>0. +** +** isPending: +** +** If a BtShared client fails to obtain a write-lock on a database +** table (because there exists one or more read-locks on the table), +** the shared-cache enters 'pending-lock' state and isPending is +** set to true. +** +** The shared-cache leaves the 'pending lock' state when either of +** the following occur: +** +** 1) The current writer (BtShared.pWriter) concludes its transaction, OR +** 2) The number of locks held by other connections drops to zero. +** +** while in the 'pending-lock' state, no connection may start a new +** transaction. +** +** This feature is included to help prevent writer-starvation. +*/ +struct BtShared { + Pager *pPager; /* The page cache */ + sqlite3 *db; /* Database connection currently using this Btree */ + BtCursor *pCursor; /* A list of all open cursors */ + MemPage *pPage1; /* First page of the database */ + u8 openFlags; /* Flags to sqlite3BtreeOpen() */ +#ifndef SQLITE_OMIT_AUTOVACUUM + u8 autoVacuum; /* True if auto-vacuum is enabled */ + u8 incrVacuum; /* True if incr-vacuum is enabled */ + u8 bDoTruncate; /* True to truncate db on commit */ +#endif + u8 inTransaction; /* Transaction state */ + u8 max1bytePayload; /* Maximum first byte of cell for a 1-byte payload */ + u16 btsFlags; /* Boolean parameters. See BTS_* macros below */ + u16 maxLocal; /* Maximum local payload in non-LEAFDATA tables */ + u16 minLocal; /* Minimum local payload in non-LEAFDATA tables */ + u16 maxLeaf; /* Maximum local payload in a LEAFDATA table */ + u16 minLeaf; /* Minimum local payload in a LEAFDATA table */ + u32 pageSize; /* Total number of bytes on a page */ + u32 usableSize; /* Number of usable bytes on each page */ + int nTransaction; /* Number of open transactions (read + write) */ + u32 nPage; /* Number of pages in the database */ + void *pSchema; /* Pointer to space allocated by sqlite3BtreeSchema() */ + void (*xFreeSchema)(void*); /* Destructor for BtShared.pSchema */ + sqlite3_mutex *mutex; /* Non-recursive mutex required to access this object */ + Bitvec *pHasContent; /* Set of pages moved to free-list this transaction */ +#ifndef SQLITE_OMIT_SHARED_CACHE + int nRef; /* Number of references to this structure */ + BtShared *pNext; /* Next on a list of sharable BtShared structs */ + BtLock *pLock; /* List of locks held on this shared-btree struct */ + Btree *pWriter; /* Btree with currently open write transaction */ +#endif + u8 *pTmpSpace; /* BtShared.pageSize bytes of space for tmp use */ +}; + +/* +** Allowed values for BtShared.btsFlags +*/ +#define BTS_READ_ONLY 0x0001 /* Underlying file is readonly */ +#define BTS_PAGESIZE_FIXED 0x0002 /* Page size can no longer be changed */ +#define BTS_SECURE_DELETE 0x0004 /* PRAGMA secure_delete is enabled */ +#define BTS_INITIALLY_EMPTY 0x0008 /* Database was empty at trans start */ +#define BTS_NO_WAL 0x0010 /* Do not open write-ahead-log files */ +#define BTS_EXCLUSIVE 0x0020 /* pWriter has an exclusive lock */ +#define BTS_PENDING 0x0040 /* Waiting for read-locks to clear */ + +/* +** An instance of the following structure is used to hold information +** about a cell. The parseCellPtr() function fills in this structure +** based on information extract from the raw disk page. +*/ +typedef struct CellInfo CellInfo; +struct CellInfo { + i64 nKey; /* The key for INTKEY tables, or number of bytes in key */ + u8 *pCell; /* Pointer to the start of cell content */ + u32 nData; /* Number of bytes of data */ + u32 nPayload; /* Total amount of payload */ + u16 nHeader; /* Size of the cell content header in bytes */ + u16 nLocal; /* Amount of payload held locally */ + u16 iOverflow; /* Offset to overflow page number. Zero if no overflow */ + u16 nSize; /* Size of the cell content on the main b-tree page */ +}; + +/* +** Maximum depth of an SQLite B-Tree structure. Any B-Tree deeper than +** this will be declared corrupt. This value is calculated based on a +** maximum database size of 2^31 pages a minimum fanout of 2 for a +** root-node and 3 for all other internal nodes. +** +** If a tree that appears to be taller than this is encountered, it is +** assumed that the database is corrupt. +*/ +#define BTCURSOR_MAX_DEPTH 20 + +/* +** A cursor is a pointer to a particular entry within a particular +** b-tree within a database file. +** +** The entry is identified by its MemPage and the index in +** MemPage.aCell[] of the entry. +** +** A single database file can be shared by two more database connections, +** but cursors cannot be shared. Each cursor is associated with a +** particular database connection identified BtCursor.pBtree.db. +** +** Fields in this structure are accessed under the BtShared.mutex +** found at self->pBt->mutex. +*/ +struct BtCursor { + Btree *pBtree; /* The Btree to which this cursor belongs */ + BtShared *pBt; /* The BtShared this cursor points to */ + BtCursor *pNext, *pPrev; /* Forms a linked list of all cursors */ + struct KeyInfo *pKeyInfo; /* Argument passed to comparison function */ + Pgno *aOverflow; /* Cache of overflow page locations */ + CellInfo info; /* A parse of the cell we are pointing at */ + i64 nKey; /* Size of pKey, or last integer key */ + void *pKey; /* Saved key that was cursor last known position */ + Pgno pgnoRoot; /* The root page of this tree */ + int nOvflAlloc; /* Allocated size of aOverflow[] array */ + int skipNext; /* Prev() is noop if negative. Next() is noop if positive */ + u8 curFlags; /* zero or more BTCF_* flags defined below */ + u8 eState; /* One of the CURSOR_XXX constants (see below) */ + u8 hints; /* As configured by CursorSetHints() */ + i16 iPage; /* Index of current page in apPage */ + u16 aiIdx[BTCURSOR_MAX_DEPTH]; /* Current index in apPage[i] */ + MemPage *apPage[BTCURSOR_MAX_DEPTH]; /* Pages from root to current page */ +}; + +/* +** Legal values for BtCursor.curFlags +*/ +#define BTCF_WriteFlag 0x01 /* True if a write cursor */ +#define BTCF_ValidNKey 0x02 /* True if info.nKey is valid */ +#define BTCF_ValidOvfl 0x04 /* True if aOverflow is valid */ +#define BTCF_AtLast 0x08 /* Cursor is pointing ot the last entry */ +#define BTCF_Incrblob 0x10 /* True if an incremental I/O handle */ + +/* +** Potential values for BtCursor.eState. +** +** CURSOR_INVALID: +** Cursor does not point to a valid entry. This can happen (for example) +** because the table is empty or because BtreeCursorFirst() has not been +** called. +** +** CURSOR_VALID: +** Cursor points to a valid entry. getPayload() etc. may be called. +** +** CURSOR_SKIPNEXT: +** Cursor is valid except that the Cursor.skipNext field is non-zero +** indicating that the next sqlite3BtreeNext() or sqlite3BtreePrevious() +** operation should be a no-op. +** +** CURSOR_REQUIRESEEK: +** The table that this cursor was opened on still exists, but has been +** modified since the cursor was last used. The cursor position is saved +** in variables BtCursor.pKey and BtCursor.nKey. When a cursor is in +** this state, restoreCursorPosition() can be called to attempt to +** seek the cursor to the saved position. +** +** CURSOR_FAULT: +** A unrecoverable error (an I/O error or a malloc failure) has occurred +** on a different connection that shares the BtShared cache with this +** cursor. The error has left the cache in an inconsistent state. +** Do nothing else with this cursor. Any attempt to use the cursor +** should return the error code stored in BtCursor.skip +*/ +#define CURSOR_INVALID 0 +#define CURSOR_VALID 1 +#define CURSOR_SKIPNEXT 2 +#define CURSOR_REQUIRESEEK 3 +#define CURSOR_FAULT 4 + +/* +** The database page the PENDING_BYTE occupies. This page is never used. +*/ +# define PENDING_BYTE_PAGE(pBt) PAGER_MJ_PGNO(pBt) + +/* +** These macros define the location of the pointer-map entry for a +** database page. The first argument to each is the number of usable +** bytes on each page of the database (often 1024). The second is the +** page number to look up in the pointer map. +** +** PTRMAP_PAGENO returns the database page number of the pointer-map +** page that stores the required pointer. PTRMAP_PTROFFSET returns +** the offset of the requested map entry. +** +** If the pgno argument passed to PTRMAP_PAGENO is a pointer-map page, +** then pgno is returned. So (pgno==PTRMAP_PAGENO(pgsz, pgno)) can be +** used to test if pgno is a pointer-map page. PTRMAP_ISPAGE implements +** this test. +*/ +#define PTRMAP_PAGENO(pBt, pgno) ptrmapPageno(pBt, pgno) +#define PTRMAP_PTROFFSET(pgptrmap, pgno) (5*(pgno-pgptrmap-1)) +#define PTRMAP_ISPAGE(pBt, pgno) (PTRMAP_PAGENO((pBt),(pgno))==(pgno)) + +/* +** The pointer map is a lookup table that identifies the parent page for +** each child page in the database file. The parent page is the page that +** contains a pointer to the child. Every page in the database contains +** 0 or 1 parent pages. (In this context 'database page' refers +** to any page that is not part of the pointer map itself.) Each pointer map +** entry consists of a single byte 'type' and a 4 byte parent page number. +** The PTRMAP_XXX identifiers below are the valid types. +** +** The purpose of the pointer map is to facility moving pages from one +** position in the file to another as part of autovacuum. When a page +** is moved, the pointer in its parent must be updated to point to the +** new location. The pointer map is used to locate the parent page quickly. +** +** PTRMAP_ROOTPAGE: The database page is a root-page. The page-number is not +** used in this case. +** +** PTRMAP_FREEPAGE: The database page is an unused (free) page. The page-number +** is not used in this case. +** +** PTRMAP_OVERFLOW1: The database page is the first page in a list of +** overflow pages. The page number identifies the page that +** contains the cell with a pointer to this overflow page. +** +** PTRMAP_OVERFLOW2: The database page is the second or later page in a list of +** overflow pages. The page-number identifies the previous +** page in the overflow page list. +** +** PTRMAP_BTREE: The database page is a non-root btree page. The page number +** identifies the parent page in the btree. +*/ +#define PTRMAP_ROOTPAGE 1 +#define PTRMAP_FREEPAGE 2 +#define PTRMAP_OVERFLOW1 3 +#define PTRMAP_OVERFLOW2 4 +#define PTRMAP_BTREE 5 + +/* A bunch of assert() statements to check the transaction state variables +** of handle p (type Btree*) are internally consistent. +*/ +#define btreeIntegrity(p) \ + assert( p->pBt->inTransaction!=TRANS_NONE || p->pBt->nTransaction==0 ); \ + assert( p->pBt->inTransaction>=p->inTrans ); + + +/* +** The ISAUTOVACUUM macro is used within balance_nonroot() to determine +** if the database supports auto-vacuum or not. Because it is used +** within an expression that is an argument to another macro +** (sqliteMallocRaw), it is not possible to use conditional compilation. +** So, this macro is defined instead. +*/ +#ifndef SQLITE_OMIT_AUTOVACUUM +#define ISAUTOVACUUM (pBt->autoVacuum) +#else +#define ISAUTOVACUUM 0 +#endif + + +/* +** This structure is passed around through all the sanity checking routines +** in order to keep track of some global state information. +** +** The aRef[] array is allocated so that there is 1 bit for each page in +** the database. As the integrity-check proceeds, for each page used in +** the database the corresponding bit is set. This allows integrity-check to +** detect pages that are used twice and orphaned pages (both of which +** indicate corruption). +*/ +typedef struct IntegrityCk IntegrityCk; +struct IntegrityCk { + BtShared *pBt; /* The tree being checked out */ + Pager *pPager; /* The associated pager. Also accessible by pBt->pPager */ + u8 *aPgRef; /* 1 bit per page in the db (see above) */ + Pgno nPage; /* Number of pages in the database */ + int mxErr; /* Stop accumulating errors when this reaches zero */ + int nErr; /* Number of messages written to zErrMsg so far */ + int mallocFailed; /* A memory allocation error has occurred */ + StrAccum errMsg; /* Accumulate the error message text here */ +}; + +/* +** Routines to read or write a two- and four-byte big-endian integer values. +*/ +#define get2byte(x) ((x)[0]<<8 | (x)[1]) +#define put2byte(p,v) ((p)[0] = (u8)((v)>>8), (p)[1] = (u8)(v)) +#define get4byte sqlite3Get4byte +#define put4byte sqlite3Put4byte + +/************** End of btreeInt.h ********************************************/ +/************** Continuing where we left off in btmutex.c ********************/ +#ifndef SQLITE_OMIT_SHARED_CACHE +#if SQLITE_THREADSAFE + +/* +** Obtain the BtShared mutex associated with B-Tree handle p. Also, +** set BtShared.db to the database handle associated with p and the +** p->locked boolean to true. +*/ +static void lockBtreeMutex(Btree *p){ + assert( p->locked==0 ); + assert( sqlite3_mutex_notheld(p->pBt->mutex) ); + assert( sqlite3_mutex_held(p->db->mutex) ); + + sqlite3_mutex_enter(p->pBt->mutex); + p->pBt->db = p->db; + p->locked = 1; +} + +/* +** Release the BtShared mutex associated with B-Tree handle p and +** clear the p->locked boolean. +*/ +static void unlockBtreeMutex(Btree *p){ + BtShared *pBt = p->pBt; + assert( p->locked==1 ); + assert( sqlite3_mutex_held(pBt->mutex) ); + assert( sqlite3_mutex_held(p->db->mutex) ); + assert( p->db==pBt->db ); + + sqlite3_mutex_leave(pBt->mutex); + p->locked = 0; +} + +/* +** Enter a mutex on the given BTree object. +** +** If the object is not sharable, then no mutex is ever required +** and this routine is a no-op. The underlying mutex is non-recursive. +** But we keep a reference count in Btree.wantToLock so the behavior +** of this interface is recursive. +** +** To avoid deadlocks, multiple Btrees are locked in the same order +** by all database connections. The p->pNext is a list of other +** Btrees belonging to the same database connection as the p Btree +** which need to be locked after p. If we cannot get a lock on +** p, then first unlock all of the others on p->pNext, then wait +** for the lock to become available on p, then relock all of the +** subsequent Btrees that desire a lock. +*/ +SQLITE_PRIVATE void sqlite3BtreeEnter(Btree *p){ + Btree *pLater; + + /* Some basic sanity checking on the Btree. The list of Btrees + ** connected by pNext and pPrev should be in sorted order by + ** Btree.pBt value. All elements of the list should belong to + ** the same connection. Only shared Btrees are on the list. */ + assert( p->pNext==0 || p->pNext->pBt>p->pBt ); + assert( p->pPrev==0 || p->pPrev->pBtpBt ); + assert( p->pNext==0 || p->pNext->db==p->db ); + assert( p->pPrev==0 || p->pPrev->db==p->db ); + assert( p->sharable || (p->pNext==0 && p->pPrev==0) ); + + /* Check for locking consistency */ + assert( !p->locked || p->wantToLock>0 ); + assert( p->sharable || p->wantToLock==0 ); + + /* We should already hold a lock on the database connection */ + assert( sqlite3_mutex_held(p->db->mutex) ); + + /* Unless the database is sharable and unlocked, then BtShared.db + ** should already be set correctly. */ + assert( (p->locked==0 && p->sharable) || p->pBt->db==p->db ); + + if( !p->sharable ) return; + p->wantToLock++; + if( p->locked ) return; + + /* In most cases, we should be able to acquire the lock we + ** want without having to go throught the ascending lock + ** procedure that follows. Just be sure not to block. + */ + if( sqlite3_mutex_try(p->pBt->mutex)==SQLITE_OK ){ + p->pBt->db = p->db; + p->locked = 1; + return; + } + + /* To avoid deadlock, first release all locks with a larger + ** BtShared address. Then acquire our lock. Then reacquire + ** the other BtShared locks that we used to hold in ascending + ** order. + */ + for(pLater=p->pNext; pLater; pLater=pLater->pNext){ + assert( pLater->sharable ); + assert( pLater->pNext==0 || pLater->pNext->pBt>pLater->pBt ); + assert( !pLater->locked || pLater->wantToLock>0 ); + if( pLater->locked ){ + unlockBtreeMutex(pLater); + } + } + lockBtreeMutex(p); + for(pLater=p->pNext; pLater; pLater=pLater->pNext){ + if( pLater->wantToLock ){ + lockBtreeMutex(pLater); + } + } +} + +/* +** Exit the recursive mutex on a Btree. +*/ +SQLITE_PRIVATE void sqlite3BtreeLeave(Btree *p){ + if( p->sharable ){ + assert( p->wantToLock>0 ); + p->wantToLock--; + if( p->wantToLock==0 ){ + unlockBtreeMutex(p); + } + } +} + +#ifndef NDEBUG +/* +** Return true if the BtShared mutex is held on the btree, or if the +** B-Tree is not marked as sharable. +** +** This routine is used only from within assert() statements. +*/ +SQLITE_PRIVATE int sqlite3BtreeHoldsMutex(Btree *p){ + assert( p->sharable==0 || p->locked==0 || p->wantToLock>0 ); + assert( p->sharable==0 || p->locked==0 || p->db==p->pBt->db ); + assert( p->sharable==0 || p->locked==0 || sqlite3_mutex_held(p->pBt->mutex) ); + assert( p->sharable==0 || p->locked==0 || sqlite3_mutex_held(p->db->mutex) ); + + return (p->sharable==0 || p->locked); +} +#endif + + +#ifndef SQLITE_OMIT_INCRBLOB +/* +** Enter and leave a mutex on a Btree given a cursor owned by that +** Btree. These entry points are used by incremental I/O and can be +** omitted if that module is not used. +*/ +SQLITE_PRIVATE void sqlite3BtreeEnterCursor(BtCursor *pCur){ + sqlite3BtreeEnter(pCur->pBtree); +} +SQLITE_PRIVATE void sqlite3BtreeLeaveCursor(BtCursor *pCur){ + sqlite3BtreeLeave(pCur->pBtree); +} +#endif /* SQLITE_OMIT_INCRBLOB */ + + +/* +** Enter the mutex on every Btree associated with a database +** connection. This is needed (for example) prior to parsing +** a statement since we will be comparing table and column names +** against all schemas and we do not want those schemas being +** reset out from under us. +** +** There is a corresponding leave-all procedures. +** +** Enter the mutexes in accending order by BtShared pointer address +** to avoid the possibility of deadlock when two threads with +** two or more btrees in common both try to lock all their btrees +** at the same instant. +*/ +SQLITE_PRIVATE void sqlite3BtreeEnterAll(sqlite3 *db){ + int i; + Btree *p; + assert( sqlite3_mutex_held(db->mutex) ); + for(i=0; inDb; i++){ + p = db->aDb[i].pBt; + if( p ) sqlite3BtreeEnter(p); + } +} +SQLITE_PRIVATE void sqlite3BtreeLeaveAll(sqlite3 *db){ + int i; + Btree *p; + assert( sqlite3_mutex_held(db->mutex) ); + for(i=0; inDb; i++){ + p = db->aDb[i].pBt; + if( p ) sqlite3BtreeLeave(p); + } +} + +/* +** Return true if a particular Btree requires a lock. Return FALSE if +** no lock is ever required since it is not sharable. +*/ +SQLITE_PRIVATE int sqlite3BtreeSharable(Btree *p){ + return p->sharable; +} + +#ifndef NDEBUG +/* +** Return true if the current thread holds the database connection +** mutex and all required BtShared mutexes. +** +** This routine is used inside assert() statements only. +*/ +SQLITE_PRIVATE int sqlite3BtreeHoldsAllMutexes(sqlite3 *db){ + int i; + if( !sqlite3_mutex_held(db->mutex) ){ + return 0; + } + for(i=0; inDb; i++){ + Btree *p; + p = db->aDb[i].pBt; + if( p && p->sharable && + (p->wantToLock==0 || !sqlite3_mutex_held(p->pBt->mutex)) ){ + return 0; + } + } + return 1; +} +#endif /* NDEBUG */ + +#ifndef NDEBUG +/* +** Return true if the correct mutexes are held for accessing the +** db->aDb[iDb].pSchema structure. The mutexes required for schema +** access are: +** +** (1) The mutex on db +** (2) if iDb!=1, then the mutex on db->aDb[iDb].pBt. +** +** If pSchema is not NULL, then iDb is computed from pSchema and +** db using sqlite3SchemaToIndex(). +*/ +SQLITE_PRIVATE int sqlite3SchemaMutexHeld(sqlite3 *db, int iDb, Schema *pSchema){ + Btree *p; + assert( db!=0 ); + if( pSchema ) iDb = sqlite3SchemaToIndex(db, pSchema); + assert( iDb>=0 && iDbnDb ); + if( !sqlite3_mutex_held(db->mutex) ) return 0; + if( iDb==1 ) return 1; + p = db->aDb[iDb].pBt; + assert( p!=0 ); + return p->sharable==0 || p->locked==1; +} +#endif /* NDEBUG */ + +#else /* SQLITE_THREADSAFE>0 above. SQLITE_THREADSAFE==0 below */ +/* +** The following are special cases for mutex enter routines for use +** in single threaded applications that use shared cache. Except for +** these two routines, all mutex operations are no-ops in that case and +** are null #defines in btree.h. +** +** If shared cache is disabled, then all btree mutex routines, including +** the ones below, are no-ops and are null #defines in btree.h. +*/ + +SQLITE_PRIVATE void sqlite3BtreeEnter(Btree *p){ + p->pBt->db = p->db; +} +SQLITE_PRIVATE void sqlite3BtreeEnterAll(sqlite3 *db){ + int i; + for(i=0; inDb; i++){ + Btree *p = db->aDb[i].pBt; + if( p ){ + p->pBt->db = p->db; + } + } +} +#endif /* if SQLITE_THREADSAFE */ +#endif /* ifndef SQLITE_OMIT_SHARED_CACHE */ + +/************** End of btmutex.c *********************************************/ +/************** Begin file btree.c *******************************************/ +/* +** 2004 April 6 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file implements a external (disk-based) database using BTrees. +** See the header comment on "btreeInt.h" for additional information. +** Including a description of file format and an overview of operation. +*/ + +/* +** The header string that appears at the beginning of every +** SQLite database. +*/ +static const char zMagicHeader[] = SQLITE_FILE_HEADER; + +/* +** Set this global variable to 1 to enable tracing using the TRACE +** macro. +*/ +#if 0 +int sqlite3BtreeTrace=1; /* True to enable tracing */ +# define TRACE(X) if(sqlite3BtreeTrace){printf X;fflush(stdout);} +#else +# define TRACE(X) +#endif + +/* +** Extract a 2-byte big-endian integer from an array of unsigned bytes. +** But if the value is zero, make it 65536. +** +** This routine is used to extract the "offset to cell content area" value +** from the header of a btree page. If the page size is 65536 and the page +** is empty, the offset should be 65536, but the 2-byte value stores zero. +** This routine makes the necessary adjustment to 65536. +*/ +#define get2byteNotZero(X) (((((int)get2byte(X))-1)&0xffff)+1) + +/* +** Values passed as the 5th argument to allocateBtreePage() +*/ +#define BTALLOC_ANY 0 /* Allocate any page */ +#define BTALLOC_EXACT 1 /* Allocate exact page if possible */ +#define BTALLOC_LE 2 /* Allocate any page <= the parameter */ + +/* +** Macro IfNotOmitAV(x) returns (x) if SQLITE_OMIT_AUTOVACUUM is not +** defined, or 0 if it is. For example: +** +** bIncrVacuum = IfNotOmitAV(pBtShared->incrVacuum); +*/ +#ifndef SQLITE_OMIT_AUTOVACUUM +#define IfNotOmitAV(expr) (expr) +#else +#define IfNotOmitAV(expr) 0 +#endif + +#ifndef SQLITE_OMIT_SHARED_CACHE +/* +** A list of BtShared objects that are eligible for participation +** in shared cache. This variable has file scope during normal builds, +** but the test harness needs to access it so we make it global for +** test builds. +** +** Access to this variable is protected by SQLITE_MUTEX_STATIC_MASTER. +*/ +#ifdef SQLITE_TEST +SQLITE_PRIVATE BtShared *SQLITE_WSD sqlite3SharedCacheList = 0; +#else +static BtShared *SQLITE_WSD sqlite3SharedCacheList = 0; +#endif +#endif /* SQLITE_OMIT_SHARED_CACHE */ + +#ifndef SQLITE_OMIT_SHARED_CACHE +/* +** Enable or disable the shared pager and schema features. +** +** This routine has no effect on existing database connections. +** The shared cache setting effects only future calls to +** sqlite3_open(), sqlite3_open16(), or sqlite3_open_v2(). +*/ +SQLITE_API int sqlite3_enable_shared_cache(int enable){ + sqlite3GlobalConfig.sharedCacheEnabled = enable; + return SQLITE_OK; +} +#endif + + + +#ifdef SQLITE_OMIT_SHARED_CACHE + /* + ** The functions querySharedCacheTableLock(), setSharedCacheTableLock(), + ** and clearAllSharedCacheTableLocks() + ** manipulate entries in the BtShared.pLock linked list used to store + ** shared-cache table level locks. If the library is compiled with the + ** shared-cache feature disabled, then there is only ever one user + ** of each BtShared structure and so this locking is not necessary. + ** So define the lock related functions as no-ops. + */ + #define querySharedCacheTableLock(a,b,c) SQLITE_OK + #define setSharedCacheTableLock(a,b,c) SQLITE_OK + #define clearAllSharedCacheTableLocks(a) + #define downgradeAllSharedCacheTableLocks(a) + #define hasSharedCacheTableLock(a,b,c,d) 1 + #define hasReadConflicts(a, b) 0 +#endif + +#ifndef SQLITE_OMIT_SHARED_CACHE + +#ifdef SQLITE_DEBUG +/* +**** This function is only used as part of an assert() statement. *** +** +** Check to see if pBtree holds the required locks to read or write to the +** table with root page iRoot. Return 1 if it does and 0 if not. +** +** For example, when writing to a table with root-page iRoot via +** Btree connection pBtree: +** +** assert( hasSharedCacheTableLock(pBtree, iRoot, 0, WRITE_LOCK) ); +** +** When writing to an index that resides in a sharable database, the +** caller should have first obtained a lock specifying the root page of +** the corresponding table. This makes things a bit more complicated, +** as this module treats each table as a separate structure. To determine +** the table corresponding to the index being written, this +** function has to search through the database schema. +** +** Instead of a lock on the table/index rooted at page iRoot, the caller may +** hold a write-lock on the schema table (root page 1). This is also +** acceptable. +*/ +static int hasSharedCacheTableLock( + Btree *pBtree, /* Handle that must hold lock */ + Pgno iRoot, /* Root page of b-tree */ + int isIndex, /* True if iRoot is the root of an index b-tree */ + int eLockType /* Required lock type (READ_LOCK or WRITE_LOCK) */ +){ + Schema *pSchema = (Schema *)pBtree->pBt->pSchema; + Pgno iTab = 0; + BtLock *pLock; + + /* If this database is not shareable, or if the client is reading + ** and has the read-uncommitted flag set, then no lock is required. + ** Return true immediately. + */ + if( (pBtree->sharable==0) + || (eLockType==READ_LOCK && (pBtree->db->flags & SQLITE_ReadUncommitted)) + ){ + return 1; + } + + /* If the client is reading or writing an index and the schema is + ** not loaded, then it is too difficult to actually check to see if + ** the correct locks are held. So do not bother - just return true. + ** This case does not come up very often anyhow. + */ + if( isIndex && (!pSchema || (pSchema->flags&DB_SchemaLoaded)==0) ){ + return 1; + } + + /* Figure out the root-page that the lock should be held on. For table + ** b-trees, this is just the root page of the b-tree being read or + ** written. For index b-trees, it is the root page of the associated + ** table. */ + if( isIndex ){ + HashElem *p; + for(p=sqliteHashFirst(&pSchema->idxHash); p; p=sqliteHashNext(p)){ + Index *pIdx = (Index *)sqliteHashData(p); + if( pIdx->tnum==(int)iRoot ){ + iTab = pIdx->pTable->tnum; + } + } + }else{ + iTab = iRoot; + } + + /* Search for the required lock. Either a write-lock on root-page iTab, a + ** write-lock on the schema table, or (if the client is reading) a + ** read-lock on iTab will suffice. Return 1 if any of these are found. */ + for(pLock=pBtree->pBt->pLock; pLock; pLock=pLock->pNext){ + if( pLock->pBtree==pBtree + && (pLock->iTable==iTab || (pLock->eLock==WRITE_LOCK && pLock->iTable==1)) + && pLock->eLock>=eLockType + ){ + return 1; + } + } + + /* Failed to find the required lock. */ + return 0; +} +#endif /* SQLITE_DEBUG */ + +#ifdef SQLITE_DEBUG +/* +**** This function may be used as part of assert() statements only. **** +** +** Return true if it would be illegal for pBtree to write into the +** table or index rooted at iRoot because other shared connections are +** simultaneously reading that same table or index. +** +** It is illegal for pBtree to write if some other Btree object that +** shares the same BtShared object is currently reading or writing +** the iRoot table. Except, if the other Btree object has the +** read-uncommitted flag set, then it is OK for the other object to +** have a read cursor. +** +** For example, before writing to any part of the table or index +** rooted at page iRoot, one should call: +** +** assert( !hasReadConflicts(pBtree, iRoot) ); +*/ +static int hasReadConflicts(Btree *pBtree, Pgno iRoot){ + BtCursor *p; + for(p=pBtree->pBt->pCursor; p; p=p->pNext){ + if( p->pgnoRoot==iRoot + && p->pBtree!=pBtree + && 0==(p->pBtree->db->flags & SQLITE_ReadUncommitted) + ){ + return 1; + } + } + return 0; +} +#endif /* #ifdef SQLITE_DEBUG */ + +/* +** Query to see if Btree handle p may obtain a lock of type eLock +** (READ_LOCK or WRITE_LOCK) on the table with root-page iTab. Return +** SQLITE_OK if the lock may be obtained (by calling +** setSharedCacheTableLock()), or SQLITE_LOCKED if not. +*/ +static int querySharedCacheTableLock(Btree *p, Pgno iTab, u8 eLock){ + BtShared *pBt = p->pBt; + BtLock *pIter; + + assert( sqlite3BtreeHoldsMutex(p) ); + assert( eLock==READ_LOCK || eLock==WRITE_LOCK ); + assert( p->db!=0 ); + assert( !(p->db->flags&SQLITE_ReadUncommitted)||eLock==WRITE_LOCK||iTab==1 ); + + /* If requesting a write-lock, then the Btree must have an open write + ** transaction on this file. And, obviously, for this to be so there + ** must be an open write transaction on the file itself. + */ + assert( eLock==READ_LOCK || (p==pBt->pWriter && p->inTrans==TRANS_WRITE) ); + assert( eLock==READ_LOCK || pBt->inTransaction==TRANS_WRITE ); + + /* This routine is a no-op if the shared-cache is not enabled */ + if( !p->sharable ){ + return SQLITE_OK; + } + + /* If some other connection is holding an exclusive lock, the + ** requested lock may not be obtained. + */ + if( pBt->pWriter!=p && (pBt->btsFlags & BTS_EXCLUSIVE)!=0 ){ + sqlite3ConnectionBlocked(p->db, pBt->pWriter->db); + return SQLITE_LOCKED_SHAREDCACHE; + } + + for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){ + /* The condition (pIter->eLock!=eLock) in the following if(...) + ** statement is a simplification of: + ** + ** (eLock==WRITE_LOCK || pIter->eLock==WRITE_LOCK) + ** + ** since we know that if eLock==WRITE_LOCK, then no other connection + ** may hold a WRITE_LOCK on any table in this file (since there can + ** only be a single writer). + */ + assert( pIter->eLock==READ_LOCK || pIter->eLock==WRITE_LOCK ); + assert( eLock==READ_LOCK || pIter->pBtree==p || pIter->eLock==READ_LOCK); + if( pIter->pBtree!=p && pIter->iTable==iTab && pIter->eLock!=eLock ){ + sqlite3ConnectionBlocked(p->db, pIter->pBtree->db); + if( eLock==WRITE_LOCK ){ + assert( p==pBt->pWriter ); + pBt->btsFlags |= BTS_PENDING; + } + return SQLITE_LOCKED_SHAREDCACHE; + } + } + return SQLITE_OK; +} +#endif /* !SQLITE_OMIT_SHARED_CACHE */ + +#ifndef SQLITE_OMIT_SHARED_CACHE +/* +** Add a lock on the table with root-page iTable to the shared-btree used +** by Btree handle p. Parameter eLock must be either READ_LOCK or +** WRITE_LOCK. +** +** This function assumes the following: +** +** (a) The specified Btree object p is connected to a sharable +** database (one with the BtShared.sharable flag set), and +** +** (b) No other Btree objects hold a lock that conflicts +** with the requested lock (i.e. querySharedCacheTableLock() has +** already been called and returned SQLITE_OK). +** +** SQLITE_OK is returned if the lock is added successfully. SQLITE_NOMEM +** is returned if a malloc attempt fails. +*/ +static int setSharedCacheTableLock(Btree *p, Pgno iTable, u8 eLock){ + BtShared *pBt = p->pBt; + BtLock *pLock = 0; + BtLock *pIter; + + assert( sqlite3BtreeHoldsMutex(p) ); + assert( eLock==READ_LOCK || eLock==WRITE_LOCK ); + assert( p->db!=0 ); + + /* A connection with the read-uncommitted flag set will never try to + ** obtain a read-lock using this function. The only read-lock obtained + ** by a connection in read-uncommitted mode is on the sqlite_master + ** table, and that lock is obtained in BtreeBeginTrans(). */ + assert( 0==(p->db->flags&SQLITE_ReadUncommitted) || eLock==WRITE_LOCK ); + + /* This function should only be called on a sharable b-tree after it + ** has been determined that no other b-tree holds a conflicting lock. */ + assert( p->sharable ); + assert( SQLITE_OK==querySharedCacheTableLock(p, iTable, eLock) ); + + /* First search the list for an existing lock on this table. */ + for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){ + if( pIter->iTable==iTable && pIter->pBtree==p ){ + pLock = pIter; + break; + } + } + + /* If the above search did not find a BtLock struct associating Btree p + ** with table iTable, allocate one and link it into the list. + */ + if( !pLock ){ + pLock = (BtLock *)sqlite3MallocZero(sizeof(BtLock)); + if( !pLock ){ + return SQLITE_NOMEM; + } + pLock->iTable = iTable; + pLock->pBtree = p; + pLock->pNext = pBt->pLock; + pBt->pLock = pLock; + } + + /* Set the BtLock.eLock variable to the maximum of the current lock + ** and the requested lock. This means if a write-lock was already held + ** and a read-lock requested, we don't incorrectly downgrade the lock. + */ + assert( WRITE_LOCK>READ_LOCK ); + if( eLock>pLock->eLock ){ + pLock->eLock = eLock; + } + + return SQLITE_OK; +} +#endif /* !SQLITE_OMIT_SHARED_CACHE */ + +#ifndef SQLITE_OMIT_SHARED_CACHE +/* +** Release all the table locks (locks obtained via calls to +** the setSharedCacheTableLock() procedure) held by Btree object p. +** +** This function assumes that Btree p has an open read or write +** transaction. If it does not, then the BTS_PENDING flag +** may be incorrectly cleared. +*/ +static void clearAllSharedCacheTableLocks(Btree *p){ + BtShared *pBt = p->pBt; + BtLock **ppIter = &pBt->pLock; + + assert( sqlite3BtreeHoldsMutex(p) ); + assert( p->sharable || 0==*ppIter ); + assert( p->inTrans>0 ); + + while( *ppIter ){ + BtLock *pLock = *ppIter; + assert( (pBt->btsFlags & BTS_EXCLUSIVE)==0 || pBt->pWriter==pLock->pBtree ); + assert( pLock->pBtree->inTrans>=pLock->eLock ); + if( pLock->pBtree==p ){ + *ppIter = pLock->pNext; + assert( pLock->iTable!=1 || pLock==&p->lock ); + if( pLock->iTable!=1 ){ + sqlite3_free(pLock); + } + }else{ + ppIter = &pLock->pNext; + } + } + + assert( (pBt->btsFlags & BTS_PENDING)==0 || pBt->pWriter ); + if( pBt->pWriter==p ){ + pBt->pWriter = 0; + pBt->btsFlags &= ~(BTS_EXCLUSIVE|BTS_PENDING); + }else if( pBt->nTransaction==2 ){ + /* This function is called when Btree p is concluding its + ** transaction. If there currently exists a writer, and p is not + ** that writer, then the number of locks held by connections other + ** than the writer must be about to drop to zero. In this case + ** set the BTS_PENDING flag to 0. + ** + ** If there is not currently a writer, then BTS_PENDING must + ** be zero already. So this next line is harmless in that case. + */ + pBt->btsFlags &= ~BTS_PENDING; + } +} + +/* +** This function changes all write-locks held by Btree p into read-locks. +*/ +static void downgradeAllSharedCacheTableLocks(Btree *p){ + BtShared *pBt = p->pBt; + if( pBt->pWriter==p ){ + BtLock *pLock; + pBt->pWriter = 0; + pBt->btsFlags &= ~(BTS_EXCLUSIVE|BTS_PENDING); + for(pLock=pBt->pLock; pLock; pLock=pLock->pNext){ + assert( pLock->eLock==READ_LOCK || pLock->pBtree==p ); + pLock->eLock = READ_LOCK; + } + } +} + +#endif /* SQLITE_OMIT_SHARED_CACHE */ + +static void releasePage(MemPage *pPage); /* Forward reference */ + +/* +***** This routine is used inside of assert() only **** +** +** Verify that the cursor holds the mutex on its BtShared +*/ +#ifdef SQLITE_DEBUG +static int cursorHoldsMutex(BtCursor *p){ + return sqlite3_mutex_held(p->pBt->mutex); +} +#endif + +/* +** Invalidate the overflow cache of the cursor passed as the first argument. +** on the shared btree structure pBt. +*/ +#define invalidateOverflowCache(pCur) (pCur->curFlags &= ~BTCF_ValidOvfl) + +/* +** Invalidate the overflow page-list cache for all cursors opened +** on the shared btree structure pBt. +*/ +static void invalidateAllOverflowCache(BtShared *pBt){ + BtCursor *p; + assert( sqlite3_mutex_held(pBt->mutex) ); + for(p=pBt->pCursor; p; p=p->pNext){ + invalidateOverflowCache(p); + } +} + +#ifndef SQLITE_OMIT_INCRBLOB +/* +** This function is called before modifying the contents of a table +** to invalidate any incrblob cursors that are open on the +** row or one of the rows being modified. +** +** If argument isClearTable is true, then the entire contents of the +** table is about to be deleted. In this case invalidate all incrblob +** cursors open on any row within the table with root-page pgnoRoot. +** +** Otherwise, if argument isClearTable is false, then the row with +** rowid iRow is being replaced or deleted. In this case invalidate +** only those incrblob cursors open on that specific row. +*/ +static void invalidateIncrblobCursors( + Btree *pBtree, /* The database file to check */ + i64 iRow, /* The rowid that might be changing */ + int isClearTable /* True if all rows are being deleted */ +){ + BtCursor *p; + BtShared *pBt = pBtree->pBt; + assert( sqlite3BtreeHoldsMutex(pBtree) ); + for(p=pBt->pCursor; p; p=p->pNext){ + if( (p->curFlags & BTCF_Incrblob)!=0 && (isClearTable || p->info.nKey==iRow) ){ + p->eState = CURSOR_INVALID; + } + } +} + +#else + /* Stub function when INCRBLOB is omitted */ + #define invalidateIncrblobCursors(x,y,z) +#endif /* SQLITE_OMIT_INCRBLOB */ + +/* +** Set bit pgno of the BtShared.pHasContent bitvec. This is called +** when a page that previously contained data becomes a free-list leaf +** page. +** +** The BtShared.pHasContent bitvec exists to work around an obscure +** bug caused by the interaction of two useful IO optimizations surrounding +** free-list leaf pages: +** +** 1) When all data is deleted from a page and the page becomes +** a free-list leaf page, the page is not written to the database +** (as free-list leaf pages contain no meaningful data). Sometimes +** such a page is not even journalled (as it will not be modified, +** why bother journalling it?). +** +** 2) When a free-list leaf page is reused, its content is not read +** from the database or written to the journal file (why should it +** be, if it is not at all meaningful?). +** +** By themselves, these optimizations work fine and provide a handy +** performance boost to bulk delete or insert operations. However, if +** a page is moved to the free-list and then reused within the same +** transaction, a problem comes up. If the page is not journalled when +** it is moved to the free-list and it is also not journalled when it +** is extracted from the free-list and reused, then the original data +** may be lost. In the event of a rollback, it may not be possible +** to restore the database to its original configuration. +** +** The solution is the BtShared.pHasContent bitvec. Whenever a page is +** moved to become a free-list leaf page, the corresponding bit is +** set in the bitvec. Whenever a leaf page is extracted from the free-list, +** optimization 2 above is omitted if the corresponding bit is already +** set in BtShared.pHasContent. The contents of the bitvec are cleared +** at the end of every transaction. +*/ +static int btreeSetHasContent(BtShared *pBt, Pgno pgno){ + int rc = SQLITE_OK; + if( !pBt->pHasContent ){ + assert( pgno<=pBt->nPage ); + pBt->pHasContent = sqlite3BitvecCreate(pBt->nPage); + if( !pBt->pHasContent ){ + rc = SQLITE_NOMEM; + } + } + if( rc==SQLITE_OK && pgno<=sqlite3BitvecSize(pBt->pHasContent) ){ + rc = sqlite3BitvecSet(pBt->pHasContent, pgno); + } + return rc; +} + +/* +** Query the BtShared.pHasContent vector. +** +** This function is called when a free-list leaf page is removed from the +** free-list for reuse. It returns false if it is safe to retrieve the +** page from the pager layer with the 'no-content' flag set. True otherwise. +*/ +static int btreeGetHasContent(BtShared *pBt, Pgno pgno){ + Bitvec *p = pBt->pHasContent; + return (p && (pgno>sqlite3BitvecSize(p) || sqlite3BitvecTest(p, pgno))); +} + +/* +** Clear (destroy) the BtShared.pHasContent bitvec. This should be +** invoked at the conclusion of each write-transaction. +*/ +static void btreeClearHasContent(BtShared *pBt){ + sqlite3BitvecDestroy(pBt->pHasContent); + pBt->pHasContent = 0; +} + +/* +** Release all of the apPage[] pages for a cursor. +*/ +static void btreeReleaseAllCursorPages(BtCursor *pCur){ + int i; + for(i=0; i<=pCur->iPage; i++){ + releasePage(pCur->apPage[i]); + pCur->apPage[i] = 0; + } + pCur->iPage = -1; +} + + +/* +** Save the current cursor position in the variables BtCursor.nKey +** and BtCursor.pKey. The cursor's state is set to CURSOR_REQUIRESEEK. +** +** The caller must ensure that the cursor is valid (has eState==CURSOR_VALID) +** prior to calling this routine. +*/ +static int saveCursorPosition(BtCursor *pCur){ + int rc; + + assert( CURSOR_VALID==pCur->eState ); + assert( 0==pCur->pKey ); + assert( cursorHoldsMutex(pCur) ); + + rc = sqlite3BtreeKeySize(pCur, &pCur->nKey); + assert( rc==SQLITE_OK ); /* KeySize() cannot fail */ + + /* If this is an intKey table, then the above call to BtreeKeySize() + ** stores the integer key in pCur->nKey. In this case this value is + ** all that is required. Otherwise, if pCur is not open on an intKey + ** table, then malloc space for and store the pCur->nKey bytes of key + ** data. + */ + if( 0==pCur->apPage[0]->intKey ){ + void *pKey = sqlite3Malloc( (int)pCur->nKey ); + if( pKey ){ + rc = sqlite3BtreeKey(pCur, 0, (int)pCur->nKey, pKey); + if( rc==SQLITE_OK ){ + pCur->pKey = pKey; + }else{ + sqlite3_free(pKey); + } + }else{ + rc = SQLITE_NOMEM; + } + } + assert( !pCur->apPage[0]->intKey || !pCur->pKey ); + + if( rc==SQLITE_OK ){ + btreeReleaseAllCursorPages(pCur); + pCur->eState = CURSOR_REQUIRESEEK; + } + + invalidateOverflowCache(pCur); + return rc; +} + +/* +** Save the positions of all cursors (except pExcept) that are open on +** the table with root-page iRoot. Usually, this is called just before cursor +** pExcept is used to modify the table (BtreeDelete() or BtreeInsert()). +*/ +static int saveAllCursors(BtShared *pBt, Pgno iRoot, BtCursor *pExcept){ + BtCursor *p; + assert( sqlite3_mutex_held(pBt->mutex) ); + assert( pExcept==0 || pExcept->pBt==pBt ); + for(p=pBt->pCursor; p; p=p->pNext){ + if( p!=pExcept && (0==iRoot || p->pgnoRoot==iRoot) ){ + if( p->eState==CURSOR_VALID ){ + int rc = saveCursorPosition(p); + if( SQLITE_OK!=rc ){ + return rc; + } + }else{ + testcase( p->iPage>0 ); + btreeReleaseAllCursorPages(p); + } + } + } + return SQLITE_OK; +} + +/* +** Clear the current cursor position. +*/ +SQLITE_PRIVATE void sqlite3BtreeClearCursor(BtCursor *pCur){ + assert( cursorHoldsMutex(pCur) ); + sqlite3_free(pCur->pKey); + pCur->pKey = 0; + pCur->eState = CURSOR_INVALID; +} + +/* +** In this version of BtreeMoveto, pKey is a packed index record +** such as is generated by the OP_MakeRecord opcode. Unpack the +** record and then call BtreeMovetoUnpacked() to do the work. +*/ +static int btreeMoveto( + BtCursor *pCur, /* Cursor open on the btree to be searched */ + const void *pKey, /* Packed key if the btree is an index */ + i64 nKey, /* Integer key for tables. Size of pKey for indices */ + int bias, /* Bias search to the high end */ + int *pRes /* Write search results here */ +){ + int rc; /* Status code */ + UnpackedRecord *pIdxKey; /* Unpacked index key */ + char aSpace[200]; /* Temp space for pIdxKey - to avoid a malloc */ + char *pFree = 0; + + if( pKey ){ + assert( nKey==(i64)(int)nKey ); + pIdxKey = sqlite3VdbeAllocUnpackedRecord( + pCur->pKeyInfo, aSpace, sizeof(aSpace), &pFree + ); + if( pIdxKey==0 ) return SQLITE_NOMEM; + sqlite3VdbeRecordUnpack(pCur->pKeyInfo, (int)nKey, pKey, pIdxKey); + if( pIdxKey->nField==0 ){ + sqlite3DbFree(pCur->pKeyInfo->db, pFree); + return SQLITE_CORRUPT_BKPT; + } + }else{ + pIdxKey = 0; + } + rc = sqlite3BtreeMovetoUnpacked(pCur, pIdxKey, nKey, bias, pRes); + if( pFree ){ + sqlite3DbFree(pCur->pKeyInfo->db, pFree); + } + return rc; +} + +/* +** Restore the cursor to the position it was in (or as close to as possible) +** when saveCursorPosition() was called. Note that this call deletes the +** saved position info stored by saveCursorPosition(), so there can be +** at most one effective restoreCursorPosition() call after each +** saveCursorPosition(). +*/ +static int btreeRestoreCursorPosition(BtCursor *pCur){ + int rc; + assert( cursorHoldsMutex(pCur) ); + assert( pCur->eState>=CURSOR_REQUIRESEEK ); + if( pCur->eState==CURSOR_FAULT ){ + return pCur->skipNext; + } + pCur->eState = CURSOR_INVALID; + rc = btreeMoveto(pCur, pCur->pKey, pCur->nKey, 0, &pCur->skipNext); + if( rc==SQLITE_OK ){ + sqlite3_free(pCur->pKey); + pCur->pKey = 0; + assert( pCur->eState==CURSOR_VALID || pCur->eState==CURSOR_INVALID ); + if( pCur->skipNext && pCur->eState==CURSOR_VALID ){ + pCur->eState = CURSOR_SKIPNEXT; + } + } + return rc; +} + +#define restoreCursorPosition(p) \ + (p->eState>=CURSOR_REQUIRESEEK ? \ + btreeRestoreCursorPosition(p) : \ + SQLITE_OK) + +/* +** Determine whether or not a cursor has moved from the position it +** was last placed at. Cursors can move when the row they are pointing +** at is deleted out from under them. +** +** This routine returns an error code if something goes wrong. The +** integer *pHasMoved is set as follows: +** +** 0: The cursor is unchanged +** 1: The cursor is still pointing at the same row, but the pointers +** returned by sqlite3BtreeKeyFetch() or sqlite3BtreeDataFetch() +** might now be invalid because of a balance() or other change to the +** b-tree. +** 2: The cursor is no longer pointing to the row. The row might have +** been deleted out from under the cursor. +*/ +SQLITE_PRIVATE int sqlite3BtreeCursorHasMoved(BtCursor *pCur, int *pHasMoved){ + int rc; + + if( pCur->eState==CURSOR_VALID ){ + *pHasMoved = 0; + return SQLITE_OK; + } + rc = restoreCursorPosition(pCur); + if( rc ){ + *pHasMoved = 2; + return rc; + } + if( pCur->eState!=CURSOR_VALID || NEVER(pCur->skipNext!=0) ){ + *pHasMoved = 2; + }else{ + *pHasMoved = 1; + } + return SQLITE_OK; +} + +#ifndef SQLITE_OMIT_AUTOVACUUM +/* +** Given a page number of a regular database page, return the page +** number for the pointer-map page that contains the entry for the +** input page number. +** +** Return 0 (not a valid page) for pgno==1 since there is +** no pointer map associated with page 1. The integrity_check logic +** requires that ptrmapPageno(*,1)!=1. +*/ +static Pgno ptrmapPageno(BtShared *pBt, Pgno pgno){ + int nPagesPerMapPage; + Pgno iPtrMap, ret; + assert( sqlite3_mutex_held(pBt->mutex) ); + if( pgno<2 ) return 0; + nPagesPerMapPage = (pBt->usableSize/5)+1; + iPtrMap = (pgno-2)/nPagesPerMapPage; + ret = (iPtrMap*nPagesPerMapPage) + 2; + if( ret==PENDING_BYTE_PAGE(pBt) ){ + ret++; + } + return ret; +} + +/* +** Write an entry into the pointer map. +** +** This routine updates the pointer map entry for page number 'key' +** so that it maps to type 'eType' and parent page number 'pgno'. +** +** If *pRC is initially non-zero (non-SQLITE_OK) then this routine is +** a no-op. If an error occurs, the appropriate error code is written +** into *pRC. +*/ +static void ptrmapPut(BtShared *pBt, Pgno key, u8 eType, Pgno parent, int *pRC){ + DbPage *pDbPage; /* The pointer map page */ + u8 *pPtrmap; /* The pointer map data */ + Pgno iPtrmap; /* The pointer map page number */ + int offset; /* Offset in pointer map page */ + int rc; /* Return code from subfunctions */ + + if( *pRC ) return; + + assert( sqlite3_mutex_held(pBt->mutex) ); + /* The master-journal page number must never be used as a pointer map page */ + assert( 0==PTRMAP_ISPAGE(pBt, PENDING_BYTE_PAGE(pBt)) ); + + assert( pBt->autoVacuum ); + if( key==0 ){ + *pRC = SQLITE_CORRUPT_BKPT; + return; + } + iPtrmap = PTRMAP_PAGENO(pBt, key); + rc = sqlite3PagerGet(pBt->pPager, iPtrmap, &pDbPage); + if( rc!=SQLITE_OK ){ + *pRC = rc; + return; + } + offset = PTRMAP_PTROFFSET(iPtrmap, key); + if( offset<0 ){ + *pRC = SQLITE_CORRUPT_BKPT; + goto ptrmap_exit; + } + assert( offset <= (int)pBt->usableSize-5 ); + pPtrmap = (u8 *)sqlite3PagerGetData(pDbPage); + + if( eType!=pPtrmap[offset] || get4byte(&pPtrmap[offset+1])!=parent ){ + TRACE(("PTRMAP_UPDATE: %d->(%d,%d)\n", key, eType, parent)); + *pRC= rc = sqlite3PagerWrite(pDbPage); + if( rc==SQLITE_OK ){ + pPtrmap[offset] = eType; + put4byte(&pPtrmap[offset+1], parent); + } + } + +ptrmap_exit: + sqlite3PagerUnref(pDbPage); +} + +/* +** Read an entry from the pointer map. +** +** This routine retrieves the pointer map entry for page 'key', writing +** the type and parent page number to *pEType and *pPgno respectively. +** An error code is returned if something goes wrong, otherwise SQLITE_OK. +*/ +static int ptrmapGet(BtShared *pBt, Pgno key, u8 *pEType, Pgno *pPgno){ + DbPage *pDbPage; /* The pointer map page */ + int iPtrmap; /* Pointer map page index */ + u8 *pPtrmap; /* Pointer map page data */ + int offset; /* Offset of entry in pointer map */ + int rc; + + assert( sqlite3_mutex_held(pBt->mutex) ); + + iPtrmap = PTRMAP_PAGENO(pBt, key); + rc = sqlite3PagerGet(pBt->pPager, iPtrmap, &pDbPage); + if( rc!=0 ){ + return rc; + } + pPtrmap = (u8 *)sqlite3PagerGetData(pDbPage); + + offset = PTRMAP_PTROFFSET(iPtrmap, key); + if( offset<0 ){ + sqlite3PagerUnref(pDbPage); + return SQLITE_CORRUPT_BKPT; + } + assert( offset <= (int)pBt->usableSize-5 ); + assert( pEType!=0 ); + *pEType = pPtrmap[offset]; + if( pPgno ) *pPgno = get4byte(&pPtrmap[offset+1]); + + sqlite3PagerUnref(pDbPage); + if( *pEType<1 || *pEType>5 ) return SQLITE_CORRUPT_BKPT; + return SQLITE_OK; +} + +#else /* if defined SQLITE_OMIT_AUTOVACUUM */ + #define ptrmapPut(w,x,y,z,rc) + #define ptrmapGet(w,x,y,z) SQLITE_OK + #define ptrmapPutOvflPtr(x, y, rc) +#endif + +/* +** Given a btree page and a cell index (0 means the first cell on +** the page, 1 means the second cell, and so forth) return a pointer +** to the cell content. +** +** This routine works only for pages that do not contain overflow cells. +*/ +#define findCell(P,I) \ + ((P)->aData + ((P)->maskPage & get2byte(&(P)->aCellIdx[2*(I)]))) +#define findCellv2(D,M,O,I) (D+(M&get2byte(D+(O+2*(I))))) + + +/* +** This a more complex version of findCell() that works for +** pages that do contain overflow cells. +*/ +static u8 *findOverflowCell(MemPage *pPage, int iCell){ + int i; + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + for(i=pPage->nOverflow-1; i>=0; i--){ + int k; + k = pPage->aiOvfl[i]; + if( k<=iCell ){ + if( k==iCell ){ + return pPage->apOvfl[i]; + } + iCell--; + } + } + return findCell(pPage, iCell); +} + +/* +** Parse a cell content block and fill in the CellInfo structure. There +** are two versions of this function. btreeParseCell() takes a +** cell index as the second argument and btreeParseCellPtr() +** takes a pointer to the body of the cell as its second argument. +** +** Within this file, the parseCell() macro can be called instead of +** btreeParseCellPtr(). Using some compilers, this will be faster. +*/ +static void btreeParseCellPtr( + MemPage *pPage, /* Page containing the cell */ + u8 *pCell, /* Pointer to the cell text. */ + CellInfo *pInfo /* Fill in this structure */ +){ + u16 n; /* Number bytes in cell content header */ + u32 nPayload; /* Number of bytes of cell payload */ + + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + + pInfo->pCell = pCell; + assert( pPage->leaf==0 || pPage->leaf==1 ); + n = pPage->childPtrSize; + assert( n==4-4*pPage->leaf ); + if( pPage->intKey ){ + if( pPage->hasData ){ + assert( n==0 ); + n = getVarint32(pCell, nPayload); + }else{ + nPayload = 0; + } + n += getVarint(&pCell[n], (u64*)&pInfo->nKey); + pInfo->nData = nPayload; + }else{ + pInfo->nData = 0; + n += getVarint32(&pCell[n], nPayload); + pInfo->nKey = nPayload; + } + pInfo->nPayload = nPayload; + pInfo->nHeader = n; + testcase( nPayload==pPage->maxLocal ); + testcase( nPayload==pPage->maxLocal+1 ); + if( likely(nPayload<=pPage->maxLocal) ){ + /* This is the (easy) common case where the entire payload fits + ** on the local page. No overflow is required. + */ + if( (pInfo->nSize = (u16)(n+nPayload))<4 ) pInfo->nSize = 4; + pInfo->nLocal = (u16)nPayload; + pInfo->iOverflow = 0; + }else{ + /* If the payload will not fit completely on the local page, we have + ** to decide how much to store locally and how much to spill onto + ** overflow pages. The strategy is to minimize the amount of unused + ** space on overflow pages while keeping the amount of local storage + ** in between minLocal and maxLocal. + ** + ** Warning: changing the way overflow payload is distributed in any + ** way will result in an incompatible file format. + */ + int minLocal; /* Minimum amount of payload held locally */ + int maxLocal; /* Maximum amount of payload held locally */ + int surplus; /* Overflow payload available for local storage */ + + minLocal = pPage->minLocal; + maxLocal = pPage->maxLocal; + surplus = minLocal + (nPayload - minLocal)%(pPage->pBt->usableSize - 4); + testcase( surplus==maxLocal ); + testcase( surplus==maxLocal+1 ); + if( surplus <= maxLocal ){ + pInfo->nLocal = (u16)surplus; + }else{ + pInfo->nLocal = (u16)minLocal; + } + pInfo->iOverflow = (u16)(pInfo->nLocal + n); + pInfo->nSize = pInfo->iOverflow + 4; + } +} +#define parseCell(pPage, iCell, pInfo) \ + btreeParseCellPtr((pPage), findCell((pPage), (iCell)), (pInfo)) +static void btreeParseCell( + MemPage *pPage, /* Page containing the cell */ + int iCell, /* The cell index. First cell is 0 */ + CellInfo *pInfo /* Fill in this structure */ +){ + parseCell(pPage, iCell, pInfo); +} + +/* +** Compute the total number of bytes that a Cell needs in the cell +** data area of the btree-page. The return number includes the cell +** data header and the local payload, but not any overflow page or +** the space used by the cell pointer. +*/ +static u16 cellSizePtr(MemPage *pPage, u8 *pCell){ + u8 *pIter = &pCell[pPage->childPtrSize]; + u32 nSize; + +#ifdef SQLITE_DEBUG + /* The value returned by this function should always be the same as + ** the (CellInfo.nSize) value found by doing a full parse of the + ** cell. If SQLITE_DEBUG is defined, an assert() at the bottom of + ** this function verifies that this invariant is not violated. */ + CellInfo debuginfo; + btreeParseCellPtr(pPage, pCell, &debuginfo); +#endif + + if( pPage->intKey ){ + u8 *pEnd; + if( pPage->hasData ){ + pIter += getVarint32(pIter, nSize); + }else{ + nSize = 0; + } + + /* pIter now points at the 64-bit integer key value, a variable length + ** integer. The following block moves pIter to point at the first byte + ** past the end of the key value. */ + pEnd = &pIter[9]; + while( (*pIter++)&0x80 && pItermaxLocal ); + testcase( nSize==pPage->maxLocal+1 ); + if( nSize>pPage->maxLocal ){ + int minLocal = pPage->minLocal; + nSize = minLocal + (nSize - minLocal) % (pPage->pBt->usableSize - 4); + testcase( nSize==pPage->maxLocal ); + testcase( nSize==pPage->maxLocal+1 ); + if( nSize>pPage->maxLocal ){ + nSize = minLocal; + } + nSize += 4; + } + nSize += (u32)(pIter - pCell); + + /* The minimum size of any cell is 4 bytes. */ + if( nSize<4 ){ + nSize = 4; + } + + assert( nSize==debuginfo.nSize ); + return (u16)nSize; +} + +#ifdef SQLITE_DEBUG +/* This variation on cellSizePtr() is used inside of assert() statements +** only. */ +static u16 cellSize(MemPage *pPage, int iCell){ + return cellSizePtr(pPage, findCell(pPage, iCell)); +} +#endif + +#ifndef SQLITE_OMIT_AUTOVACUUM +/* +** If the cell pCell, part of page pPage contains a pointer +** to an overflow page, insert an entry into the pointer-map +** for the overflow page. +*/ +static void ptrmapPutOvflPtr(MemPage *pPage, u8 *pCell, int *pRC){ + CellInfo info; + if( *pRC ) return; + assert( pCell!=0 ); + btreeParseCellPtr(pPage, pCell, &info); + assert( (info.nData+(pPage->intKey?0:info.nKey))==info.nPayload ); + if( info.iOverflow ){ + Pgno ovfl = get4byte(&pCell[info.iOverflow]); + ptrmapPut(pPage->pBt, ovfl, PTRMAP_OVERFLOW1, pPage->pgno, pRC); + } +} +#endif + + +/* +** Defragment the page given. All Cells are moved to the +** end of the page and all free space is collected into one +** big FreeBlk that occurs in between the header and cell +** pointer array and the cell content area. +*/ +static int defragmentPage(MemPage *pPage){ + int i; /* Loop counter */ + int pc; /* Address of a i-th cell */ + int hdr; /* Offset to the page header */ + int size; /* Size of a cell */ + int usableSize; /* Number of usable bytes on a page */ + int cellOffset; /* Offset to the cell pointer array */ + int cbrk; /* Offset to the cell content area */ + int nCell; /* Number of cells on the page */ + unsigned char *data; /* The page data */ + unsigned char *temp; /* Temp area for cell content */ + int iCellFirst; /* First allowable cell index */ + int iCellLast; /* Last possible cell index */ + + + assert( sqlite3PagerIswriteable(pPage->pDbPage) ); + assert( pPage->pBt!=0 ); + assert( pPage->pBt->usableSize <= SQLITE_MAX_PAGE_SIZE ); + assert( pPage->nOverflow==0 ); + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + temp = sqlite3PagerTempSpace(pPage->pBt->pPager); + data = pPage->aData; + hdr = pPage->hdrOffset; + cellOffset = pPage->cellOffset; + nCell = pPage->nCell; + assert( nCell==get2byte(&data[hdr+3]) ); + usableSize = pPage->pBt->usableSize; + cbrk = get2byte(&data[hdr+5]); + memcpy(&temp[cbrk], &data[cbrk], usableSize - cbrk); + cbrk = usableSize; + iCellFirst = cellOffset + 2*nCell; + iCellLast = usableSize - 4; + for(i=0; iiCellLast ){ + return SQLITE_CORRUPT_BKPT; + } +#endif + assert( pc>=iCellFirst && pc<=iCellLast ); + size = cellSizePtr(pPage, &temp[pc]); + cbrk -= size; +#if defined(SQLITE_ENABLE_OVERSIZE_CELL_CHECK) + if( cbrkusableSize ){ + return SQLITE_CORRUPT_BKPT; + } +#endif + assert( cbrk+size<=usableSize && cbrk>=iCellFirst ); + testcase( cbrk+size==usableSize ); + testcase( pc+size==usableSize ); + memcpy(&data[cbrk], &temp[pc], size); + put2byte(pAddr, cbrk); + } + assert( cbrk>=iCellFirst ); + put2byte(&data[hdr+5], cbrk); + data[hdr+1] = 0; + data[hdr+2] = 0; + data[hdr+7] = 0; + memset(&data[iCellFirst], 0, cbrk-iCellFirst); + assert( sqlite3PagerIswriteable(pPage->pDbPage) ); + if( cbrk-iCellFirst!=pPage->nFree ){ + return SQLITE_CORRUPT_BKPT; + } + return SQLITE_OK; +} + +/* +** Allocate nByte bytes of space from within the B-Tree page passed +** as the first argument. Write into *pIdx the index into pPage->aData[] +** of the first byte of allocated space. Return either SQLITE_OK or +** an error code (usually SQLITE_CORRUPT). +** +** The caller guarantees that there is sufficient space to make the +** allocation. This routine might need to defragment in order to bring +** all the space together, however. This routine will avoid using +** the first two bytes past the cell pointer area since presumably this +** allocation is being made in order to insert a new cell, so we will +** also end up needing a new cell pointer. +*/ +static int allocateSpace(MemPage *pPage, int nByte, int *pIdx){ + const int hdr = pPage->hdrOffset; /* Local cache of pPage->hdrOffset */ + u8 * const data = pPage->aData; /* Local cache of pPage->aData */ + int nFrag; /* Number of fragmented bytes on pPage */ + int top; /* First byte of cell content area */ + int gap; /* First byte of gap between cell pointers and cell content */ + int rc; /* Integer return code */ + int usableSize; /* Usable size of the page */ + + assert( sqlite3PagerIswriteable(pPage->pDbPage) ); + assert( pPage->pBt ); + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + assert( nByte>=0 ); /* Minimum cell size is 4 */ + assert( pPage->nFree>=nByte ); + assert( pPage->nOverflow==0 ); + usableSize = pPage->pBt->usableSize; + assert( nByte < usableSize-8 ); + + nFrag = data[hdr+7]; + assert( pPage->cellOffset == hdr + 12 - 4*pPage->leaf ); + gap = pPage->cellOffset + 2*pPage->nCell; + top = get2byteNotZero(&data[hdr+5]); + if( gap>top ) return SQLITE_CORRUPT_BKPT; + testcase( gap+2==top ); + testcase( gap+1==top ); + testcase( gap==top ); + + if( nFrag>=60 ){ + /* Always defragment highly fragmented pages */ + rc = defragmentPage(pPage); + if( rc ) return rc; + top = get2byteNotZero(&data[hdr+5]); + }else if( gap+2<=top ){ + /* Search the freelist looking for a free slot big enough to satisfy + ** the request. The allocation is made from the first free slot in + ** the list that is large enough to accommodate it. + */ + int pc, addr; + for(addr=hdr+1; (pc = get2byte(&data[addr]))>0; addr=pc){ + int size; /* Size of the free slot */ + if( pc>usableSize-4 || pc=nByte ){ + int x = size - nByte; + testcase( x==4 ); + testcase( x==3 ); + if( x<4 ){ + /* Remove the slot from the free-list. Update the number of + ** fragmented bytes within the page. */ + memcpy(&data[addr], &data[pc], 2); + data[hdr+7] = (u8)(nFrag + x); + }else if( size+pc > usableSize ){ + return SQLITE_CORRUPT_BKPT; + }else{ + /* The slot remains on the free-list. Reduce its size to account + ** for the portion used by the new allocation. */ + put2byte(&data[pc+2], x); + } + *pIdx = pc + x; + return SQLITE_OK; + } + } + } + + /* Check to make sure there is enough space in the gap to satisfy + ** the allocation. If not, defragment. + */ + testcase( gap+2+nByte==top ); + if( gap+2+nByte>top ){ + rc = defragmentPage(pPage); + if( rc ) return rc; + top = get2byteNotZero(&data[hdr+5]); + assert( gap+nByte<=top ); + } + + + /* Allocate memory from the gap in between the cell pointer array + ** and the cell content area. The btreeInitPage() call has already + ** validated the freelist. Given that the freelist is valid, there + ** is no way that the allocation can extend off the end of the page. + ** The assert() below verifies the previous sentence. + */ + top -= nByte; + put2byte(&data[hdr+5], top); + assert( top+nByte <= (int)pPage->pBt->usableSize ); + *pIdx = top; + return SQLITE_OK; +} + +/* +** Return a section of the pPage->aData to the freelist. +** The first byte of the new free block is pPage->aDisk[start] +** and the size of the block is "size" bytes. +** +** Most of the effort here is involved in coalesing adjacent +** free blocks into a single big free block. +*/ +static int freeSpace(MemPage *pPage, int start, int size){ + int addr, pbegin, hdr; + int iLast; /* Largest possible freeblock offset */ + unsigned char *data = pPage->aData; + + assert( pPage->pBt!=0 ); + assert( sqlite3PagerIswriteable(pPage->pDbPage) ); + assert( start>=pPage->hdrOffset+6+pPage->childPtrSize ); + assert( (start + size) <= (int)pPage->pBt->usableSize ); + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + assert( size>=0 ); /* Minimum cell size is 4 */ + + if( pPage->pBt->btsFlags & BTS_SECURE_DELETE ){ + /* Overwrite deleted information with zeros when the secure_delete + ** option is enabled */ + memset(&data[start], 0, size); + } + + /* Add the space back into the linked list of freeblocks. Note that + ** even though the freeblock list was checked by btreeInitPage(), + ** btreeInitPage() did not detect overlapping cells or + ** freeblocks that overlapped cells. Nor does it detect when the + ** cell content area exceeds the value in the page header. If these + ** situations arise, then subsequent insert operations might corrupt + ** the freelist. So we do need to check for corruption while scanning + ** the freelist. + */ + hdr = pPage->hdrOffset; + addr = hdr + 1; + iLast = pPage->pBt->usableSize - 4; + assert( start<=iLast ); + while( (pbegin = get2byte(&data[addr]))0 ){ + if( pbeginiLast ){ + return SQLITE_CORRUPT_BKPT; + } + assert( pbegin>addr || pbegin==0 ); + put2byte(&data[addr], start); + put2byte(&data[start], pbegin); + put2byte(&data[start+2], size); + pPage->nFree = pPage->nFree + (u16)size; + + /* Coalesce adjacent free blocks */ + addr = hdr + 1; + while( (pbegin = get2byte(&data[addr]))>0 ){ + int pnext, psize, x; + assert( pbegin>addr ); + assert( pbegin <= (int)pPage->pBt->usableSize-4 ); + pnext = get2byte(&data[pbegin]); + psize = get2byte(&data[pbegin+2]); + if( pbegin + psize + 3 >= pnext && pnext>0 ){ + int frag = pnext - (pbegin+psize); + if( (frag<0) || (frag>(int)data[hdr+7]) ){ + return SQLITE_CORRUPT_BKPT; + } + data[hdr+7] -= (u8)frag; + x = get2byte(&data[pnext]); + put2byte(&data[pbegin], x); + x = pnext + get2byte(&data[pnext+2]) - pbegin; + put2byte(&data[pbegin+2], x); + }else{ + addr = pbegin; + } + } + + /* If the cell content area begins with a freeblock, remove it. */ + if( data[hdr+1]==data[hdr+5] && data[hdr+2]==data[hdr+6] ){ + int top; + pbegin = get2byte(&data[hdr+1]); + memcpy(&data[hdr+1], &data[pbegin], 2); + top = get2byte(&data[hdr+5]) + get2byte(&data[pbegin+2]); + put2byte(&data[hdr+5], top); + } + assert( sqlite3PagerIswriteable(pPage->pDbPage) ); + return SQLITE_OK; +} + +/* +** Decode the flags byte (the first byte of the header) for a page +** and initialize fields of the MemPage structure accordingly. +** +** Only the following combinations are supported. Anything different +** indicates a corrupt database files: +** +** PTF_ZERODATA +** PTF_ZERODATA | PTF_LEAF +** PTF_LEAFDATA | PTF_INTKEY +** PTF_LEAFDATA | PTF_INTKEY | PTF_LEAF +*/ +static int decodeFlags(MemPage *pPage, int flagByte){ + BtShared *pBt; /* A copy of pPage->pBt */ + + assert( pPage->hdrOffset==(pPage->pgno==1 ? 100 : 0) ); + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + pPage->leaf = (u8)(flagByte>>3); assert( PTF_LEAF == 1<<3 ); + flagByte &= ~PTF_LEAF; + pPage->childPtrSize = 4-4*pPage->leaf; + pBt = pPage->pBt; + if( flagByte==(PTF_LEAFDATA | PTF_INTKEY) ){ + pPage->intKey = 1; + pPage->hasData = pPage->leaf; + pPage->maxLocal = pBt->maxLeaf; + pPage->minLocal = pBt->minLeaf; + }else if( flagByte==PTF_ZERODATA ){ + pPage->intKey = 0; + pPage->hasData = 0; + pPage->maxLocal = pBt->maxLocal; + pPage->minLocal = pBt->minLocal; + }else{ + return SQLITE_CORRUPT_BKPT; + } + pPage->max1bytePayload = pBt->max1bytePayload; + return SQLITE_OK; +} + +/* +** Initialize the auxiliary information for a disk block. +** +** Return SQLITE_OK on success. If we see that the page does +** not contain a well-formed database page, then return +** SQLITE_CORRUPT. Note that a return of SQLITE_OK does not +** guarantee that the page is well-formed. It only shows that +** we failed to detect any corruption. +*/ +static int btreeInitPage(MemPage *pPage){ + + assert( pPage->pBt!=0 ); + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + assert( pPage->pgno==sqlite3PagerPagenumber(pPage->pDbPage) ); + assert( pPage == sqlite3PagerGetExtra(pPage->pDbPage) ); + assert( pPage->aData == sqlite3PagerGetData(pPage->pDbPage) ); + + if( !pPage->isInit ){ + u16 pc; /* Address of a freeblock within pPage->aData[] */ + u8 hdr; /* Offset to beginning of page header */ + u8 *data; /* Equal to pPage->aData */ + BtShared *pBt; /* The main btree structure */ + int usableSize; /* Amount of usable space on each page */ + u16 cellOffset; /* Offset from start of page to first cell pointer */ + int nFree; /* Number of unused bytes on the page */ + int top; /* First byte of the cell content area */ + int iCellFirst; /* First allowable cell or freeblock offset */ + int iCellLast; /* Last possible cell or freeblock offset */ + + pBt = pPage->pBt; + + hdr = pPage->hdrOffset; + data = pPage->aData; + if( decodeFlags(pPage, data[hdr]) ) return SQLITE_CORRUPT_BKPT; + assert( pBt->pageSize>=512 && pBt->pageSize<=65536 ); + pPage->maskPage = (u16)(pBt->pageSize - 1); + pPage->nOverflow = 0; + usableSize = pBt->usableSize; + pPage->cellOffset = cellOffset = hdr + 12 - 4*pPage->leaf; + pPage->aDataEnd = &data[usableSize]; + pPage->aCellIdx = &data[cellOffset]; + top = get2byteNotZero(&data[hdr+5]); + pPage->nCell = get2byte(&data[hdr+3]); + if( pPage->nCell>MX_CELL(pBt) ){ + /* To many cells for a single page. The page must be corrupt */ + return SQLITE_CORRUPT_BKPT; + } + testcase( pPage->nCell==MX_CELL(pBt) ); + + /* A malformed database page might cause us to read past the end + ** of page when parsing a cell. + ** + ** The following block of code checks early to see if a cell extends + ** past the end of a page boundary and causes SQLITE_CORRUPT to be + ** returned if it does. + */ + iCellFirst = cellOffset + 2*pPage->nCell; + iCellLast = usableSize - 4; +#if defined(SQLITE_ENABLE_OVERSIZE_CELL_CHECK) + { + int i; /* Index into the cell pointer array */ + int sz; /* Size of a cell */ + + if( !pPage->leaf ) iCellLast--; + for(i=0; inCell; i++){ + pc = get2byte(&data[cellOffset+i*2]); + testcase( pc==iCellFirst ); + testcase( pc==iCellLast ); + if( pciCellLast ){ + return SQLITE_CORRUPT_BKPT; + } + sz = cellSizePtr(pPage, &data[pc]); + testcase( pc+sz==usableSize ); + if( pc+sz>usableSize ){ + return SQLITE_CORRUPT_BKPT; + } + } + if( !pPage->leaf ) iCellLast++; + } +#endif + + /* Compute the total free space on the page */ + pc = get2byte(&data[hdr+1]); + nFree = data[hdr+7] + top; + while( pc>0 ){ + u16 next, size; + if( pciCellLast ){ + /* Start of free block is off the page */ + return SQLITE_CORRUPT_BKPT; + } + next = get2byte(&data[pc]); + size = get2byte(&data[pc+2]); + if( (next>0 && next<=pc+size+3) || pc+size>usableSize ){ + /* Free blocks must be in ascending order. And the last byte of + ** the free-block must lie on the database page. */ + return SQLITE_CORRUPT_BKPT; + } + nFree = nFree + size; + pc = next; + } + + /* At this point, nFree contains the sum of the offset to the start + ** of the cell-content area plus the number of free bytes within + ** the cell-content area. If this is greater than the usable-size + ** of the page, then the page must be corrupted. This check also + ** serves to verify that the offset to the start of the cell-content + ** area, according to the page header, lies within the page. + */ + if( nFree>usableSize ){ + return SQLITE_CORRUPT_BKPT; + } + pPage->nFree = (u16)(nFree - iCellFirst); + pPage->isInit = 1; + } + return SQLITE_OK; +} + +/* +** Set up a raw page so that it looks like a database page holding +** no entries. +*/ +static void zeroPage(MemPage *pPage, int flags){ + unsigned char *data = pPage->aData; + BtShared *pBt = pPage->pBt; + u8 hdr = pPage->hdrOffset; + u16 first; + + assert( sqlite3PagerPagenumber(pPage->pDbPage)==pPage->pgno ); + assert( sqlite3PagerGetExtra(pPage->pDbPage) == (void*)pPage ); + assert( sqlite3PagerGetData(pPage->pDbPage) == data ); + assert( sqlite3PagerIswriteable(pPage->pDbPage) ); + assert( sqlite3_mutex_held(pBt->mutex) ); + if( pBt->btsFlags & BTS_SECURE_DELETE ){ + memset(&data[hdr], 0, pBt->usableSize - hdr); + } + data[hdr] = (char)flags; + first = hdr + ((flags&PTF_LEAF)==0 ? 12 : 8); + memset(&data[hdr+1], 0, 4); + data[hdr+7] = 0; + put2byte(&data[hdr+5], pBt->usableSize); + pPage->nFree = (u16)(pBt->usableSize - first); + decodeFlags(pPage, flags); + pPage->cellOffset = first; + pPage->aDataEnd = &data[pBt->usableSize]; + pPage->aCellIdx = &data[first]; + pPage->nOverflow = 0; + assert( pBt->pageSize>=512 && pBt->pageSize<=65536 ); + pPage->maskPage = (u16)(pBt->pageSize - 1); + pPage->nCell = 0; + pPage->isInit = 1; +} + + +/* +** Convert a DbPage obtained from the pager into a MemPage used by +** the btree layer. +*/ +static MemPage *btreePageFromDbPage(DbPage *pDbPage, Pgno pgno, BtShared *pBt){ + MemPage *pPage = (MemPage*)sqlite3PagerGetExtra(pDbPage); + pPage->aData = sqlite3PagerGetData(pDbPage); + pPage->pDbPage = pDbPage; + pPage->pBt = pBt; + pPage->pgno = pgno; + pPage->hdrOffset = pPage->pgno==1 ? 100 : 0; + return pPage; +} + +/* +** Get a page from the pager. Initialize the MemPage.pBt and +** MemPage.aData elements if needed. +** +** If the noContent flag is set, it means that we do not care about +** the content of the page at this time. So do not go to the disk +** to fetch the content. Just fill in the content with zeros for now. +** If in the future we call sqlite3PagerWrite() on this page, that +** means we have started to be concerned about content and the disk +** read should occur at that point. +*/ +static int btreeGetPage( + BtShared *pBt, /* The btree */ + Pgno pgno, /* Number of the page to fetch */ + MemPage **ppPage, /* Return the page in this parameter */ + int flags /* PAGER_GET_NOCONTENT or PAGER_GET_READONLY */ +){ + int rc; + DbPage *pDbPage; + + assert( flags==0 || flags==PAGER_GET_NOCONTENT || flags==PAGER_GET_READONLY ); + assert( sqlite3_mutex_held(pBt->mutex) ); + rc = sqlite3PagerAcquire(pBt->pPager, pgno, (DbPage**)&pDbPage, flags); + if( rc ) return rc; + *ppPage = btreePageFromDbPage(pDbPage, pgno, pBt); + return SQLITE_OK; +} + +/* +** Retrieve a page from the pager cache. If the requested page is not +** already in the pager cache return NULL. Initialize the MemPage.pBt and +** MemPage.aData elements if needed. +*/ +static MemPage *btreePageLookup(BtShared *pBt, Pgno pgno){ + DbPage *pDbPage; + assert( sqlite3_mutex_held(pBt->mutex) ); + pDbPage = sqlite3PagerLookup(pBt->pPager, pgno); + if( pDbPage ){ + return btreePageFromDbPage(pDbPage, pgno, pBt); + } + return 0; +} + +/* +** Return the size of the database file in pages. If there is any kind of +** error, return ((unsigned int)-1). +*/ +static Pgno btreePagecount(BtShared *pBt){ + return pBt->nPage; +} +SQLITE_PRIVATE u32 sqlite3BtreeLastPage(Btree *p){ + assert( sqlite3BtreeHoldsMutex(p) ); + assert( ((p->pBt->nPage)&0x8000000)==0 ); + return (int)btreePagecount(p->pBt); +} + +/* +** Get a page from the pager and initialize it. This routine is just a +** convenience wrapper around separate calls to btreeGetPage() and +** btreeInitPage(). +** +** If an error occurs, then the value *ppPage is set to is undefined. It +** may remain unchanged, or it may be set to an invalid value. +*/ +static int getAndInitPage( + BtShared *pBt, /* The database file */ + Pgno pgno, /* Number of the page to get */ + MemPage **ppPage, /* Write the page pointer here */ + int bReadonly /* PAGER_GET_READONLY or 0 */ +){ + int rc; + assert( sqlite3_mutex_held(pBt->mutex) ); + assert( bReadonly==PAGER_GET_READONLY || bReadonly==0 ); + + if( pgno>btreePagecount(pBt) ){ + rc = SQLITE_CORRUPT_BKPT; + }else{ + rc = btreeGetPage(pBt, pgno, ppPage, bReadonly); + if( rc==SQLITE_OK && (*ppPage)->isInit==0 ){ + rc = btreeInitPage(*ppPage); + if( rc!=SQLITE_OK ){ + releasePage(*ppPage); + } + } + } + + testcase( pgno==0 ); + assert( pgno!=0 || rc==SQLITE_CORRUPT ); + return rc; +} + +/* +** Release a MemPage. This should be called once for each prior +** call to btreeGetPage. +*/ +static void releasePage(MemPage *pPage){ + if( pPage ){ + assert( pPage->aData ); + assert( pPage->pBt ); + assert( pPage->pDbPage!=0 ); + assert( sqlite3PagerGetExtra(pPage->pDbPage) == (void*)pPage ); + assert( sqlite3PagerGetData(pPage->pDbPage)==pPage->aData ); + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + sqlite3PagerUnrefNotNull(pPage->pDbPage); + } +} + +/* +** During a rollback, when the pager reloads information into the cache +** so that the cache is restored to its original state at the start of +** the transaction, for each page restored this routine is called. +** +** This routine needs to reset the extra data section at the end of the +** page to agree with the restored data. +*/ +static void pageReinit(DbPage *pData){ + MemPage *pPage; + pPage = (MemPage *)sqlite3PagerGetExtra(pData); + assert( sqlite3PagerPageRefcount(pData)>0 ); + if( pPage->isInit ){ + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + pPage->isInit = 0; + if( sqlite3PagerPageRefcount(pData)>1 ){ + /* pPage might not be a btree page; it might be an overflow page + ** or ptrmap page or a free page. In those cases, the following + ** call to btreeInitPage() will likely return SQLITE_CORRUPT. + ** But no harm is done by this. And it is very important that + ** btreeInitPage() be called on every btree page so we make + ** the call for every page that comes in for re-initing. */ + btreeInitPage(pPage); + } + } +} + +/* +** Invoke the busy handler for a btree. +*/ +static int btreeInvokeBusyHandler(void *pArg){ + BtShared *pBt = (BtShared*)pArg; + assert( pBt->db ); + assert( sqlite3_mutex_held(pBt->db->mutex) ); + return sqlite3InvokeBusyHandler(&pBt->db->busyHandler); +} + +/* +** Open a database file. +** +** zFilename is the name of the database file. If zFilename is NULL +** then an ephemeral database is created. The ephemeral database might +** be exclusively in memory, or it might use a disk-based memory cache. +** Either way, the ephemeral database will be automatically deleted +** when sqlite3BtreeClose() is called. +** +** If zFilename is ":memory:" then an in-memory database is created +** that is automatically destroyed when it is closed. +** +** The "flags" parameter is a bitmask that might contain bits like +** BTREE_OMIT_JOURNAL and/or BTREE_MEMORY. +** +** If the database is already opened in the same database connection +** and we are in shared cache mode, then the open will fail with an +** SQLITE_CONSTRAINT error. We cannot allow two or more BtShared +** objects in the same database connection since doing so will lead +** to problems with locking. +*/ +SQLITE_PRIVATE int sqlite3BtreeOpen( + sqlite3_vfs *pVfs, /* VFS to use for this b-tree */ + const char *zFilename, /* Name of the file containing the BTree database */ + sqlite3 *db, /* Associated database handle */ + Btree **ppBtree, /* Pointer to new Btree object written here */ + int flags, /* Options */ + int vfsFlags /* Flags passed through to sqlite3_vfs.xOpen() */ +){ + BtShared *pBt = 0; /* Shared part of btree structure */ + Btree *p; /* Handle to return */ + sqlite3_mutex *mutexOpen = 0; /* Prevents a race condition. Ticket #3537 */ + int rc = SQLITE_OK; /* Result code from this function */ + u8 nReserve; /* Byte of unused space on each page */ + unsigned char zDbHeader[100]; /* Database header content */ + + /* True if opening an ephemeral, temporary database */ + const int isTempDb = zFilename==0 || zFilename[0]==0; + + /* Set the variable isMemdb to true for an in-memory database, or + ** false for a file-based database. + */ +#ifdef SQLITE_OMIT_MEMORYDB + const int isMemdb = 0; +#else + const int isMemdb = (zFilename && strcmp(zFilename, ":memory:")==0) + || (isTempDb && sqlite3TempInMemory(db)) + || (vfsFlags & SQLITE_OPEN_MEMORY)!=0; +#endif + + assert( db!=0 ); + assert( pVfs!=0 ); + assert( sqlite3_mutex_held(db->mutex) ); + assert( (flags&0xff)==flags ); /* flags fit in 8 bits */ + + /* Only a BTREE_SINGLE database can be BTREE_UNORDERED */ + assert( (flags & BTREE_UNORDERED)==0 || (flags & BTREE_SINGLE)!=0 ); + + /* A BTREE_SINGLE database is always a temporary and/or ephemeral */ + assert( (flags & BTREE_SINGLE)==0 || isTempDb ); + + if( isMemdb ){ + flags |= BTREE_MEMORY; + } + if( (vfsFlags & SQLITE_OPEN_MAIN_DB)!=0 && (isMemdb || isTempDb) ){ + vfsFlags = (vfsFlags & ~SQLITE_OPEN_MAIN_DB) | SQLITE_OPEN_TEMP_DB; + } + p = sqlite3MallocZero(sizeof(Btree)); + if( !p ){ + return SQLITE_NOMEM; + } + p->inTrans = TRANS_NONE; + p->db = db; +#ifndef SQLITE_OMIT_SHARED_CACHE + p->lock.pBtree = p; + p->lock.iTable = 1; +#endif + +#if !defined(SQLITE_OMIT_SHARED_CACHE) && !defined(SQLITE_OMIT_DISKIO) + /* + ** If this Btree is a candidate for shared cache, try to find an + ** existing BtShared object that we can share with + */ + if( isTempDb==0 && (isMemdb==0 || (vfsFlags&SQLITE_OPEN_URI)!=0) ){ + if( vfsFlags & SQLITE_OPEN_SHAREDCACHE ){ + int nFullPathname = pVfs->mxPathname+1; + char *zFullPathname = sqlite3Malloc(nFullPathname); + MUTEX_LOGIC( sqlite3_mutex *mutexShared; ) + p->sharable = 1; + if( !zFullPathname ){ + sqlite3_free(p); + return SQLITE_NOMEM; + } + if( isMemdb ){ + memcpy(zFullPathname, zFilename, sqlite3Strlen30(zFilename)+1); + }else{ + rc = sqlite3OsFullPathname(pVfs, zFilename, + nFullPathname, zFullPathname); + if( rc ){ + sqlite3_free(zFullPathname); + sqlite3_free(p); + return rc; + } + } +#if SQLITE_THREADSAFE + mutexOpen = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_OPEN); + sqlite3_mutex_enter(mutexOpen); + mutexShared = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER); + sqlite3_mutex_enter(mutexShared); +#endif + for(pBt=GLOBAL(BtShared*,sqlite3SharedCacheList); pBt; pBt=pBt->pNext){ + assert( pBt->nRef>0 ); + if( 0==strcmp(zFullPathname, sqlite3PagerFilename(pBt->pPager, 0)) + && sqlite3PagerVfs(pBt->pPager)==pVfs ){ + int iDb; + for(iDb=db->nDb-1; iDb>=0; iDb--){ + Btree *pExisting = db->aDb[iDb].pBt; + if( pExisting && pExisting->pBt==pBt ){ + sqlite3_mutex_leave(mutexShared); + sqlite3_mutex_leave(mutexOpen); + sqlite3_free(zFullPathname); + sqlite3_free(p); + return SQLITE_CONSTRAINT; + } + } + p->pBt = pBt; + pBt->nRef++; + break; + } + } + sqlite3_mutex_leave(mutexShared); + sqlite3_free(zFullPathname); + } +#ifdef SQLITE_DEBUG + else{ + /* In debug mode, we mark all persistent databases as sharable + ** even when they are not. This exercises the locking code and + ** gives more opportunity for asserts(sqlite3_mutex_held()) + ** statements to find locking problems. + */ + p->sharable = 1; + } +#endif + } +#endif + if( pBt==0 ){ + /* + ** The following asserts make sure that structures used by the btree are + ** the right size. This is to guard against size changes that result + ** when compiling on a different architecture. + */ + assert( sizeof(i64)==8 || sizeof(i64)==4 ); + assert( sizeof(u64)==8 || sizeof(u64)==4 ); + assert( sizeof(u32)==4 ); + assert( sizeof(u16)==2 ); + assert( sizeof(Pgno)==4 ); + + pBt = sqlite3MallocZero( sizeof(*pBt) ); + if( pBt==0 ){ + rc = SQLITE_NOMEM; + goto btree_open_out; + } + rc = sqlite3PagerOpen(pVfs, &pBt->pPager, zFilename, + EXTRA_SIZE, flags, vfsFlags, pageReinit); + if( rc==SQLITE_OK ){ + sqlite3PagerSetMmapLimit(pBt->pPager, db->szMmap); + rc = sqlite3PagerReadFileheader(pBt->pPager,sizeof(zDbHeader),zDbHeader); + } + if( rc!=SQLITE_OK ){ + goto btree_open_out; + } + pBt->openFlags = (u8)flags; + pBt->db = db; + sqlite3PagerSetBusyhandler(pBt->pPager, btreeInvokeBusyHandler, pBt); + p->pBt = pBt; + + pBt->pCursor = 0; + pBt->pPage1 = 0; + if( sqlite3PagerIsreadonly(pBt->pPager) ) pBt->btsFlags |= BTS_READ_ONLY; +#ifdef SQLITE_SECURE_DELETE + pBt->btsFlags |= BTS_SECURE_DELETE; +#endif + pBt->pageSize = (zDbHeader[16]<<8) | (zDbHeader[17]<<16); + if( pBt->pageSize<512 || pBt->pageSize>SQLITE_MAX_PAGE_SIZE + || ((pBt->pageSize-1)&pBt->pageSize)!=0 ){ + pBt->pageSize = 0; +#ifndef SQLITE_OMIT_AUTOVACUUM + /* If the magic name ":memory:" will create an in-memory database, then + ** leave the autoVacuum mode at 0 (do not auto-vacuum), even if + ** SQLITE_DEFAULT_AUTOVACUUM is true. On the other hand, if + ** SQLITE_OMIT_MEMORYDB has been defined, then ":memory:" is just a + ** regular file-name. In this case the auto-vacuum applies as per normal. + */ + if( zFilename && !isMemdb ){ + pBt->autoVacuum = (SQLITE_DEFAULT_AUTOVACUUM ? 1 : 0); + pBt->incrVacuum = (SQLITE_DEFAULT_AUTOVACUUM==2 ? 1 : 0); + } +#endif + nReserve = 0; + }else{ + nReserve = zDbHeader[20]; + pBt->btsFlags |= BTS_PAGESIZE_FIXED; +#ifndef SQLITE_OMIT_AUTOVACUUM + pBt->autoVacuum = (get4byte(&zDbHeader[36 + 4*4])?1:0); + pBt->incrVacuum = (get4byte(&zDbHeader[36 + 7*4])?1:0); +#endif + } + rc = sqlite3PagerSetPagesize(pBt->pPager, &pBt->pageSize, nReserve); + if( rc ) goto btree_open_out; + pBt->usableSize = pBt->pageSize - nReserve; + assert( (pBt->pageSize & 7)==0 ); /* 8-byte alignment of pageSize */ + +#if !defined(SQLITE_OMIT_SHARED_CACHE) && !defined(SQLITE_OMIT_DISKIO) + /* Add the new BtShared object to the linked list sharable BtShareds. + */ + if( p->sharable ){ + MUTEX_LOGIC( sqlite3_mutex *mutexShared; ) + pBt->nRef = 1; + MUTEX_LOGIC( mutexShared = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);) + if( SQLITE_THREADSAFE && sqlite3GlobalConfig.bCoreMutex ){ + pBt->mutex = sqlite3MutexAlloc(SQLITE_MUTEX_FAST); + if( pBt->mutex==0 ){ + rc = SQLITE_NOMEM; + db->mallocFailed = 0; + goto btree_open_out; + } + } + sqlite3_mutex_enter(mutexShared); + pBt->pNext = GLOBAL(BtShared*,sqlite3SharedCacheList); + GLOBAL(BtShared*,sqlite3SharedCacheList) = pBt; + sqlite3_mutex_leave(mutexShared); + } +#endif + } + +#if !defined(SQLITE_OMIT_SHARED_CACHE) && !defined(SQLITE_OMIT_DISKIO) + /* If the new Btree uses a sharable pBtShared, then link the new + ** Btree into the list of all sharable Btrees for the same connection. + ** The list is kept in ascending order by pBt address. + */ + if( p->sharable ){ + int i; + Btree *pSib; + for(i=0; inDb; i++){ + if( (pSib = db->aDb[i].pBt)!=0 && pSib->sharable ){ + while( pSib->pPrev ){ pSib = pSib->pPrev; } + if( p->pBtpBt ){ + p->pNext = pSib; + p->pPrev = 0; + pSib->pPrev = p; + }else{ + while( pSib->pNext && pSib->pNext->pBtpBt ){ + pSib = pSib->pNext; + } + p->pNext = pSib->pNext; + p->pPrev = pSib; + if( p->pNext ){ + p->pNext->pPrev = p; + } + pSib->pNext = p; + } + break; + } + } + } +#endif + *ppBtree = p; + +btree_open_out: + if( rc!=SQLITE_OK ){ + if( pBt && pBt->pPager ){ + sqlite3PagerClose(pBt->pPager); + } + sqlite3_free(pBt); + sqlite3_free(p); + *ppBtree = 0; + }else{ + /* If the B-Tree was successfully opened, set the pager-cache size to the + ** default value. Except, when opening on an existing shared pager-cache, + ** do not change the pager-cache size. + */ + if( sqlite3BtreeSchema(p, 0, 0)==0 ){ + sqlite3PagerSetCachesize(p->pBt->pPager, SQLITE_DEFAULT_CACHE_SIZE); + } + } + if( mutexOpen ){ + assert( sqlite3_mutex_held(mutexOpen) ); + sqlite3_mutex_leave(mutexOpen); + } + return rc; +} + +/* +** Decrement the BtShared.nRef counter. When it reaches zero, +** remove the BtShared structure from the sharing list. Return +** true if the BtShared.nRef counter reaches zero and return +** false if it is still positive. +*/ +static int removeFromSharingList(BtShared *pBt){ +#ifndef SQLITE_OMIT_SHARED_CACHE + MUTEX_LOGIC( sqlite3_mutex *pMaster; ) + BtShared *pList; + int removed = 0; + + assert( sqlite3_mutex_notheld(pBt->mutex) ); + MUTEX_LOGIC( pMaster = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER); ) + sqlite3_mutex_enter(pMaster); + pBt->nRef--; + if( pBt->nRef<=0 ){ + if( GLOBAL(BtShared*,sqlite3SharedCacheList)==pBt ){ + GLOBAL(BtShared*,sqlite3SharedCacheList) = pBt->pNext; + }else{ + pList = GLOBAL(BtShared*,sqlite3SharedCacheList); + while( ALWAYS(pList) && pList->pNext!=pBt ){ + pList=pList->pNext; + } + if( ALWAYS(pList) ){ + pList->pNext = pBt->pNext; + } + } + if( SQLITE_THREADSAFE ){ + sqlite3_mutex_free(pBt->mutex); + } + removed = 1; + } + sqlite3_mutex_leave(pMaster); + return removed; +#else + return 1; +#endif +} + +/* +** Make sure pBt->pTmpSpace points to an allocation of +** MX_CELL_SIZE(pBt) bytes. +*/ +static void allocateTempSpace(BtShared *pBt){ + if( !pBt->pTmpSpace ){ + pBt->pTmpSpace = sqlite3PageMalloc( pBt->pageSize ); + + /* One of the uses of pBt->pTmpSpace is to format cells before + ** inserting them into a leaf page (function fillInCell()). If + ** a cell is less than 4 bytes in size, it is rounded up to 4 bytes + ** by the various routines that manipulate binary cells. Which + ** can mean that fillInCell() only initializes the first 2 or 3 + ** bytes of pTmpSpace, but that the first 4 bytes are copied from + ** it into a database page. This is not actually a problem, but it + ** does cause a valgrind error when the 1 or 2 bytes of unitialized + ** data is passed to system call write(). So to avoid this error, + ** zero the first 4 bytes of temp space here. */ + if( pBt->pTmpSpace ) memset(pBt->pTmpSpace, 0, 4); + } +} + +/* +** Free the pBt->pTmpSpace allocation +*/ +static void freeTempSpace(BtShared *pBt){ + sqlite3PageFree( pBt->pTmpSpace); + pBt->pTmpSpace = 0; +} + +/* +** Close an open database and invalidate all cursors. +*/ +SQLITE_PRIVATE int sqlite3BtreeClose(Btree *p){ + BtShared *pBt = p->pBt; + BtCursor *pCur; + + /* Close all cursors opened via this handle. */ + assert( sqlite3_mutex_held(p->db->mutex) ); + sqlite3BtreeEnter(p); + pCur = pBt->pCursor; + while( pCur ){ + BtCursor *pTmp = pCur; + pCur = pCur->pNext; + if( pTmp->pBtree==p ){ + sqlite3BtreeCloseCursor(pTmp); + } + } + + /* Rollback any active transaction and free the handle structure. + ** The call to sqlite3BtreeRollback() drops any table-locks held by + ** this handle. + */ + sqlite3BtreeRollback(p, SQLITE_OK); + sqlite3BtreeLeave(p); + + /* If there are still other outstanding references to the shared-btree + ** structure, return now. The remainder of this procedure cleans + ** up the shared-btree. + */ + assert( p->wantToLock==0 && p->locked==0 ); + if( !p->sharable || removeFromSharingList(pBt) ){ + /* The pBt is no longer on the sharing list, so we can access + ** it without having to hold the mutex. + ** + ** Clean out and delete the BtShared object. + */ + assert( !pBt->pCursor ); + sqlite3PagerClose(pBt->pPager); + if( pBt->xFreeSchema && pBt->pSchema ){ + pBt->xFreeSchema(pBt->pSchema); + } + sqlite3DbFree(0, pBt->pSchema); + freeTempSpace(pBt); + sqlite3_free(pBt); + } + +#ifndef SQLITE_OMIT_SHARED_CACHE + assert( p->wantToLock==0 ); + assert( p->locked==0 ); + if( p->pPrev ) p->pPrev->pNext = p->pNext; + if( p->pNext ) p->pNext->pPrev = p->pPrev; +#endif + + sqlite3_free(p); + return SQLITE_OK; +} + +/* +** Change the limit on the number of pages allowed in the cache. +** +** The maximum number of cache pages is set to the absolute +** value of mxPage. If mxPage is negative, the pager will +** operate asynchronously - it will not stop to do fsync()s +** to insure data is written to the disk surface before +** continuing. Transactions still work if synchronous is off, +** and the database cannot be corrupted if this program +** crashes. But if the operating system crashes or there is +** an abrupt power failure when synchronous is off, the database +** could be left in an inconsistent and unrecoverable state. +** Synchronous is on by default so database corruption is not +** normally a worry. +*/ +SQLITE_PRIVATE int sqlite3BtreeSetCacheSize(Btree *p, int mxPage){ + BtShared *pBt = p->pBt; + assert( sqlite3_mutex_held(p->db->mutex) ); + sqlite3BtreeEnter(p); + sqlite3PagerSetCachesize(pBt->pPager, mxPage); + sqlite3BtreeLeave(p); + return SQLITE_OK; +} + +#if SQLITE_MAX_MMAP_SIZE>0 +/* +** Change the limit on the amount of the database file that may be +** memory mapped. +*/ +SQLITE_PRIVATE int sqlite3BtreeSetMmapLimit(Btree *p, sqlite3_int64 szMmap){ + BtShared *pBt = p->pBt; + assert( sqlite3_mutex_held(p->db->mutex) ); + sqlite3BtreeEnter(p); + sqlite3PagerSetMmapLimit(pBt->pPager, szMmap); + sqlite3BtreeLeave(p); + return SQLITE_OK; +} +#endif /* SQLITE_MAX_MMAP_SIZE>0 */ + +/* +** Change the way data is synced to disk in order to increase or decrease +** how well the database resists damage due to OS crashes and power +** failures. Level 1 is the same as asynchronous (no syncs() occur and +** there is a high probability of damage) Level 2 is the default. There +** is a very low but non-zero probability of damage. Level 3 reduces the +** probability of damage to near zero but with a write performance reduction. +*/ +#ifndef SQLITE_OMIT_PAGER_PRAGMAS +SQLITE_PRIVATE int sqlite3BtreeSetPagerFlags( + Btree *p, /* The btree to set the safety level on */ + unsigned pgFlags /* Various PAGER_* flags */ +){ + BtShared *pBt = p->pBt; + assert( sqlite3_mutex_held(p->db->mutex) ); + sqlite3BtreeEnter(p); + sqlite3PagerSetFlags(pBt->pPager, pgFlags); + sqlite3BtreeLeave(p); + return SQLITE_OK; +} +#endif + +/* +** Return TRUE if the given btree is set to safety level 1. In other +** words, return TRUE if no sync() occurs on the disk files. +*/ +SQLITE_PRIVATE int sqlite3BtreeSyncDisabled(Btree *p){ + BtShared *pBt = p->pBt; + int rc; + assert( sqlite3_mutex_held(p->db->mutex) ); + sqlite3BtreeEnter(p); + assert( pBt && pBt->pPager ); + rc = sqlite3PagerNosync(pBt->pPager); + sqlite3BtreeLeave(p); + return rc; +} + +/* +** Change the default pages size and the number of reserved bytes per page. +** Or, if the page size has already been fixed, return SQLITE_READONLY +** without changing anything. +** +** The page size must be a power of 2 between 512 and 65536. If the page +** size supplied does not meet this constraint then the page size is not +** changed. +** +** Page sizes are constrained to be a power of two so that the region +** of the database file used for locking (beginning at PENDING_BYTE, +** the first byte past the 1GB boundary, 0x40000000) needs to occur +** at the beginning of a page. +** +** If parameter nReserve is less than zero, then the number of reserved +** bytes per page is left unchanged. +** +** If the iFix!=0 then the BTS_PAGESIZE_FIXED flag is set so that the page size +** and autovacuum mode can no longer be changed. +*/ +SQLITE_PRIVATE int sqlite3BtreeSetPageSize(Btree *p, int pageSize, int nReserve, int iFix){ + int rc = SQLITE_OK; + BtShared *pBt = p->pBt; + assert( nReserve>=-1 && nReserve<=255 ); + sqlite3BtreeEnter(p); + if( pBt->btsFlags & BTS_PAGESIZE_FIXED ){ + sqlite3BtreeLeave(p); + return SQLITE_READONLY; + } + if( nReserve<0 ){ + nReserve = pBt->pageSize - pBt->usableSize; + } + assert( nReserve>=0 && nReserve<=255 ); + if( pageSize>=512 && pageSize<=SQLITE_MAX_PAGE_SIZE && + ((pageSize-1)&pageSize)==0 ){ + assert( (pageSize & 7)==0 ); + assert( !pBt->pPage1 && !pBt->pCursor ); + pBt->pageSize = (u32)pageSize; + freeTempSpace(pBt); + } + rc = sqlite3PagerSetPagesize(pBt->pPager, &pBt->pageSize, nReserve); + pBt->usableSize = pBt->pageSize - (u16)nReserve; + if( iFix ) pBt->btsFlags |= BTS_PAGESIZE_FIXED; + sqlite3BtreeLeave(p); + return rc; +} + +/* +** Return the currently defined page size +*/ +SQLITE_PRIVATE int sqlite3BtreeGetPageSize(Btree *p){ + return p->pBt->pageSize; +} + +#if defined(SQLITE_HAS_CODEC) || defined(SQLITE_DEBUG) +/* +** This function is similar to sqlite3BtreeGetReserve(), except that it +** may only be called if it is guaranteed that the b-tree mutex is already +** held. +** +** This is useful in one special case in the backup API code where it is +** known that the shared b-tree mutex is held, but the mutex on the +** database handle that owns *p is not. In this case if sqlite3BtreeEnter() +** were to be called, it might collide with some other operation on the +** database handle that owns *p, causing undefined behavior. +*/ +SQLITE_PRIVATE int sqlite3BtreeGetReserveNoMutex(Btree *p){ + assert( sqlite3_mutex_held(p->pBt->mutex) ); + return p->pBt->pageSize - p->pBt->usableSize; +} +#endif /* SQLITE_HAS_CODEC || SQLITE_DEBUG */ + +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) || !defined(SQLITE_OMIT_VACUUM) +/* +** Return the number of bytes of space at the end of every page that +** are intentually left unused. This is the "reserved" space that is +** sometimes used by extensions. +*/ +SQLITE_PRIVATE int sqlite3BtreeGetReserve(Btree *p){ + int n; + sqlite3BtreeEnter(p); + n = p->pBt->pageSize - p->pBt->usableSize; + sqlite3BtreeLeave(p); + return n; +} + +/* +** Set the maximum page count for a database if mxPage is positive. +** No changes are made if mxPage is 0 or negative. +** Regardless of the value of mxPage, return the maximum page count. +*/ +SQLITE_PRIVATE int sqlite3BtreeMaxPageCount(Btree *p, int mxPage){ + int n; + sqlite3BtreeEnter(p); + n = sqlite3PagerMaxPageCount(p->pBt->pPager, mxPage); + sqlite3BtreeLeave(p); + return n; +} + +/* +** Set the BTS_SECURE_DELETE flag if newFlag is 0 or 1. If newFlag is -1, +** then make no changes. Always return the value of the BTS_SECURE_DELETE +** setting after the change. +*/ +SQLITE_PRIVATE int sqlite3BtreeSecureDelete(Btree *p, int newFlag){ + int b; + if( p==0 ) return 0; + sqlite3BtreeEnter(p); + if( newFlag>=0 ){ + p->pBt->btsFlags &= ~BTS_SECURE_DELETE; + if( newFlag ) p->pBt->btsFlags |= BTS_SECURE_DELETE; + } + b = (p->pBt->btsFlags & BTS_SECURE_DELETE)!=0; + sqlite3BtreeLeave(p); + return b; +} +#endif /* !defined(SQLITE_OMIT_PAGER_PRAGMAS) || !defined(SQLITE_OMIT_VACUUM) */ + +/* +** Change the 'auto-vacuum' property of the database. If the 'autoVacuum' +** parameter is non-zero, then auto-vacuum mode is enabled. If zero, it +** is disabled. The default value for the auto-vacuum property is +** determined by the SQLITE_DEFAULT_AUTOVACUUM macro. +*/ +SQLITE_PRIVATE int sqlite3BtreeSetAutoVacuum(Btree *p, int autoVacuum){ +#ifdef SQLITE_OMIT_AUTOVACUUM + return SQLITE_READONLY; +#else + BtShared *pBt = p->pBt; + int rc = SQLITE_OK; + u8 av = (u8)autoVacuum; + + sqlite3BtreeEnter(p); + if( (pBt->btsFlags & BTS_PAGESIZE_FIXED)!=0 && (av ?1:0)!=pBt->autoVacuum ){ + rc = SQLITE_READONLY; + }else{ + pBt->autoVacuum = av ?1:0; + pBt->incrVacuum = av==2 ?1:0; + } + sqlite3BtreeLeave(p); + return rc; +#endif +} + +/* +** Return the value of the 'auto-vacuum' property. If auto-vacuum is +** enabled 1 is returned. Otherwise 0. +*/ +SQLITE_PRIVATE int sqlite3BtreeGetAutoVacuum(Btree *p){ +#ifdef SQLITE_OMIT_AUTOVACUUM + return BTREE_AUTOVACUUM_NONE; +#else + int rc; + sqlite3BtreeEnter(p); + rc = ( + (!p->pBt->autoVacuum)?BTREE_AUTOVACUUM_NONE: + (!p->pBt->incrVacuum)?BTREE_AUTOVACUUM_FULL: + BTREE_AUTOVACUUM_INCR + ); + sqlite3BtreeLeave(p); + return rc; +#endif +} + + +/* +** Get a reference to pPage1 of the database file. This will +** also acquire a readlock on that file. +** +** SQLITE_OK is returned on success. If the file is not a +** well-formed database file, then SQLITE_CORRUPT is returned. +** SQLITE_BUSY is returned if the database is locked. SQLITE_NOMEM +** is returned if we run out of memory. +*/ +static int lockBtree(BtShared *pBt){ + int rc; /* Result code from subfunctions */ + MemPage *pPage1; /* Page 1 of the database file */ + int nPage; /* Number of pages in the database */ + int nPageFile = 0; /* Number of pages in the database file */ + int nPageHeader; /* Number of pages in the database according to hdr */ + + assert( sqlite3_mutex_held(pBt->mutex) ); + assert( pBt->pPage1==0 ); + rc = sqlite3PagerSharedLock(pBt->pPager); + if( rc!=SQLITE_OK ) return rc; + rc = btreeGetPage(pBt, 1, &pPage1, 0); + if( rc!=SQLITE_OK ) return rc; + + /* Do some checking to help insure the file we opened really is + ** a valid database file. + */ + nPage = nPageHeader = get4byte(28+(u8*)pPage1->aData); + sqlite3PagerPagecount(pBt->pPager, &nPageFile); + if( nPage==0 || memcmp(24+(u8*)pPage1->aData, 92+(u8*)pPage1->aData,4)!=0 ){ + nPage = nPageFile; + } + if( nPage>0 ){ + u32 pageSize; + u32 usableSize; + u8 *page1 = pPage1->aData; + rc = SQLITE_NOTADB; + if( memcmp(page1, zMagicHeader, 16)!=0 ){ + goto page1_init_failed; + } + +#ifdef SQLITE_OMIT_WAL + if( page1[18]>1 ){ + pBt->btsFlags |= BTS_READ_ONLY; + } + if( page1[19]>1 ){ + goto page1_init_failed; + } +#else + if( page1[18]>2 ){ + pBt->btsFlags |= BTS_READ_ONLY; + } + if( page1[19]>2 ){ + goto page1_init_failed; + } + + /* If the write version is set to 2, this database should be accessed + ** in WAL mode. If the log is not already open, open it now. Then + ** return SQLITE_OK and return without populating BtShared.pPage1. + ** The caller detects this and calls this function again. This is + ** required as the version of page 1 currently in the page1 buffer + ** may not be the latest version - there may be a newer one in the log + ** file. + */ + if( page1[19]==2 && (pBt->btsFlags & BTS_NO_WAL)==0 ){ + int isOpen = 0; + rc = sqlite3PagerOpenWal(pBt->pPager, &isOpen); + if( rc!=SQLITE_OK ){ + goto page1_init_failed; + }else if( isOpen==0 ){ + releasePage(pPage1); + return SQLITE_OK; + } + rc = SQLITE_NOTADB; + } +#endif + + /* The maximum embedded fraction must be exactly 25%. And the minimum + ** embedded fraction must be 12.5% for both leaf-data and non-leaf-data. + ** The original design allowed these amounts to vary, but as of + ** version 3.6.0, we require them to be fixed. + */ + if( memcmp(&page1[21], "\100\040\040",3)!=0 ){ + goto page1_init_failed; + } + pageSize = (page1[16]<<8) | (page1[17]<<16); + if( ((pageSize-1)&pageSize)!=0 + || pageSize>SQLITE_MAX_PAGE_SIZE + || pageSize<=256 + ){ + goto page1_init_failed; + } + assert( (pageSize & 7)==0 ); + usableSize = pageSize - page1[20]; + if( (u32)pageSize!=pBt->pageSize ){ + /* After reading the first page of the database assuming a page size + ** of BtShared.pageSize, we have discovered that the page-size is + ** actually pageSize. Unlock the database, leave pBt->pPage1 at + ** zero and return SQLITE_OK. The caller will call this function + ** again with the correct page-size. + */ + releasePage(pPage1); + pBt->usableSize = usableSize; + pBt->pageSize = pageSize; + freeTempSpace(pBt); + rc = sqlite3PagerSetPagesize(pBt->pPager, &pBt->pageSize, + pageSize-usableSize); + return rc; + } + if( (pBt->db->flags & SQLITE_RecoveryMode)==0 && nPage>nPageFile ){ + rc = SQLITE_CORRUPT_BKPT; + goto page1_init_failed; + } + if( usableSize<480 ){ + goto page1_init_failed; + } + pBt->pageSize = pageSize; + pBt->usableSize = usableSize; +#ifndef SQLITE_OMIT_AUTOVACUUM + pBt->autoVacuum = (get4byte(&page1[36 + 4*4])?1:0); + pBt->incrVacuum = (get4byte(&page1[36 + 7*4])?1:0); +#endif + } + + /* maxLocal is the maximum amount of payload to store locally for + ** a cell. Make sure it is small enough so that at least minFanout + ** cells can will fit on one page. We assume a 10-byte page header. + ** Besides the payload, the cell must store: + ** 2-byte pointer to the cell + ** 4-byte child pointer + ** 9-byte nKey value + ** 4-byte nData value + ** 4-byte overflow page pointer + ** So a cell consists of a 2-byte pointer, a header which is as much as + ** 17 bytes long, 0 to N bytes of payload, and an optional 4 byte overflow + ** page pointer. + */ + pBt->maxLocal = (u16)((pBt->usableSize-12)*64/255 - 23); + pBt->minLocal = (u16)((pBt->usableSize-12)*32/255 - 23); + pBt->maxLeaf = (u16)(pBt->usableSize - 35); + pBt->minLeaf = (u16)((pBt->usableSize-12)*32/255 - 23); + if( pBt->maxLocal>127 ){ + pBt->max1bytePayload = 127; + }else{ + pBt->max1bytePayload = (u8)pBt->maxLocal; + } + assert( pBt->maxLeaf + 23 <= MX_CELL_SIZE(pBt) ); + pBt->pPage1 = pPage1; + pBt->nPage = nPage; + return SQLITE_OK; + +page1_init_failed: + releasePage(pPage1); + pBt->pPage1 = 0; + return rc; +} + +#ifndef NDEBUG +/* +** Return the number of cursors open on pBt. This is for use +** in assert() expressions, so it is only compiled if NDEBUG is not +** defined. +** +** Only write cursors are counted if wrOnly is true. If wrOnly is +** false then all cursors are counted. +** +** For the purposes of this routine, a cursor is any cursor that +** is capable of reading or writing to the databse. Cursors that +** have been tripped into the CURSOR_FAULT state are not counted. +*/ +static int countValidCursors(BtShared *pBt, int wrOnly){ + BtCursor *pCur; + int r = 0; + for(pCur=pBt->pCursor; pCur; pCur=pCur->pNext){ + if( (wrOnly==0 || (pCur->curFlags & BTCF_WriteFlag)!=0) + && pCur->eState!=CURSOR_FAULT ) r++; + } + return r; +} +#endif + +/* +** If there are no outstanding cursors and we are not in the middle +** of a transaction but there is a read lock on the database, then +** this routine unrefs the first page of the database file which +** has the effect of releasing the read lock. +** +** If there is a transaction in progress, this routine is a no-op. +*/ +static void unlockBtreeIfUnused(BtShared *pBt){ + assert( sqlite3_mutex_held(pBt->mutex) ); + assert( countValidCursors(pBt,0)==0 || pBt->inTransaction>TRANS_NONE ); + if( pBt->inTransaction==TRANS_NONE && pBt->pPage1!=0 ){ + assert( pBt->pPage1->aData ); + assert( sqlite3PagerRefcount(pBt->pPager)==1 ); + assert( pBt->pPage1->aData ); + releasePage(pBt->pPage1); + pBt->pPage1 = 0; + } +} + +/* +** If pBt points to an empty file then convert that empty file +** into a new empty database by initializing the first page of +** the database. +*/ +static int newDatabase(BtShared *pBt){ + MemPage *pP1; + unsigned char *data; + int rc; + + assert( sqlite3_mutex_held(pBt->mutex) ); + if( pBt->nPage>0 ){ + return SQLITE_OK; + } + pP1 = pBt->pPage1; + assert( pP1!=0 ); + data = pP1->aData; + rc = sqlite3PagerWrite(pP1->pDbPage); + if( rc ) return rc; + memcpy(data, zMagicHeader, sizeof(zMagicHeader)); + assert( sizeof(zMagicHeader)==16 ); + data[16] = (u8)((pBt->pageSize>>8)&0xff); + data[17] = (u8)((pBt->pageSize>>16)&0xff); + data[18] = 1; + data[19] = 1; + assert( pBt->usableSize<=pBt->pageSize && pBt->usableSize+255>=pBt->pageSize); + data[20] = (u8)(pBt->pageSize - pBt->usableSize); + data[21] = 64; + data[22] = 32; + data[23] = 32; + memset(&data[24], 0, 100-24); + zeroPage(pP1, PTF_INTKEY|PTF_LEAF|PTF_LEAFDATA ); + pBt->btsFlags |= BTS_PAGESIZE_FIXED; +#ifndef SQLITE_OMIT_AUTOVACUUM + assert( pBt->autoVacuum==1 || pBt->autoVacuum==0 ); + assert( pBt->incrVacuum==1 || pBt->incrVacuum==0 ); + put4byte(&data[36 + 4*4], pBt->autoVacuum); + put4byte(&data[36 + 7*4], pBt->incrVacuum); +#endif + pBt->nPage = 1; + data[31] = 1; + return SQLITE_OK; +} + +/* +** Initialize the first page of the database file (creating a database +** consisting of a single page and no schema objects). Return SQLITE_OK +** if successful, or an SQLite error code otherwise. +*/ +SQLITE_PRIVATE int sqlite3BtreeNewDb(Btree *p){ + int rc; + sqlite3BtreeEnter(p); + p->pBt->nPage = 0; + rc = newDatabase(p->pBt); + sqlite3BtreeLeave(p); + return rc; +} + +/* +** Attempt to start a new transaction. A write-transaction +** is started if the second argument is nonzero, otherwise a read- +** transaction. If the second argument is 2 or more and exclusive +** transaction is started, meaning that no other process is allowed +** to access the database. A preexisting transaction may not be +** upgraded to exclusive by calling this routine a second time - the +** exclusivity flag only works for a new transaction. +** +** A write-transaction must be started before attempting any +** changes to the database. None of the following routines +** will work unless a transaction is started first: +** +** sqlite3BtreeCreateTable() +** sqlite3BtreeCreateIndex() +** sqlite3BtreeClearTable() +** sqlite3BtreeDropTable() +** sqlite3BtreeInsert() +** sqlite3BtreeDelete() +** sqlite3BtreeUpdateMeta() +** +** If an initial attempt to acquire the lock fails because of lock contention +** and the database was previously unlocked, then invoke the busy handler +** if there is one. But if there was previously a read-lock, do not +** invoke the busy handler - just return SQLITE_BUSY. SQLITE_BUSY is +** returned when there is already a read-lock in order to avoid a deadlock. +** +** Suppose there are two processes A and B. A has a read lock and B has +** a reserved lock. B tries to promote to exclusive but is blocked because +** of A's read lock. A tries to promote to reserved but is blocked by B. +** One or the other of the two processes must give way or there can be +** no progress. By returning SQLITE_BUSY and not invoking the busy callback +** when A already has a read lock, we encourage A to give up and let B +** proceed. +*/ +SQLITE_PRIVATE int sqlite3BtreeBeginTrans(Btree *p, int wrflag){ + sqlite3 *pBlock = 0; + BtShared *pBt = p->pBt; + int rc = SQLITE_OK; + + sqlite3BtreeEnter(p); + btreeIntegrity(p); + + /* If the btree is already in a write-transaction, or it + ** is already in a read-transaction and a read-transaction + ** is requested, this is a no-op. + */ + if( p->inTrans==TRANS_WRITE || (p->inTrans==TRANS_READ && !wrflag) ){ + goto trans_begun; + } + assert( pBt->inTransaction==TRANS_WRITE || IfNotOmitAV(pBt->bDoTruncate)==0 ); + + /* Write transactions are not possible on a read-only database */ + if( (pBt->btsFlags & BTS_READ_ONLY)!=0 && wrflag ){ + rc = SQLITE_READONLY; + goto trans_begun; + } + +#ifndef SQLITE_OMIT_SHARED_CACHE + /* If another database handle has already opened a write transaction + ** on this shared-btree structure and a second write transaction is + ** requested, return SQLITE_LOCKED. + */ + if( (wrflag && pBt->inTransaction==TRANS_WRITE) + || (pBt->btsFlags & BTS_PENDING)!=0 + ){ + pBlock = pBt->pWriter->db; + }else if( wrflag>1 ){ + BtLock *pIter; + for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){ + if( pIter->pBtree!=p ){ + pBlock = pIter->pBtree->db; + break; + } + } + } + if( pBlock ){ + sqlite3ConnectionBlocked(p->db, pBlock); + rc = SQLITE_LOCKED_SHAREDCACHE; + goto trans_begun; + } +#endif + + /* Any read-only or read-write transaction implies a read-lock on + ** page 1. So if some other shared-cache client already has a write-lock + ** on page 1, the transaction cannot be opened. */ + rc = querySharedCacheTableLock(p, MASTER_ROOT, READ_LOCK); + if( SQLITE_OK!=rc ) goto trans_begun; + + pBt->btsFlags &= ~BTS_INITIALLY_EMPTY; + if( pBt->nPage==0 ) pBt->btsFlags |= BTS_INITIALLY_EMPTY; + do { + /* Call lockBtree() until either pBt->pPage1 is populated or + ** lockBtree() returns something other than SQLITE_OK. lockBtree() + ** may return SQLITE_OK but leave pBt->pPage1 set to 0 if after + ** reading page 1 it discovers that the page-size of the database + ** file is not pBt->pageSize. In this case lockBtree() will update + ** pBt->pageSize to the page-size of the file on disk. + */ + while( pBt->pPage1==0 && SQLITE_OK==(rc = lockBtree(pBt)) ); + + if( rc==SQLITE_OK && wrflag ){ + if( (pBt->btsFlags & BTS_READ_ONLY)!=0 ){ + rc = SQLITE_READONLY; + }else{ + rc = sqlite3PagerBegin(pBt->pPager,wrflag>1,sqlite3TempInMemory(p->db)); + if( rc==SQLITE_OK ){ + rc = newDatabase(pBt); + } + } + } + + if( rc!=SQLITE_OK ){ + unlockBtreeIfUnused(pBt); + } + }while( (rc&0xFF)==SQLITE_BUSY && pBt->inTransaction==TRANS_NONE && + btreeInvokeBusyHandler(pBt) ); + + if( rc==SQLITE_OK ){ + if( p->inTrans==TRANS_NONE ){ + pBt->nTransaction++; +#ifndef SQLITE_OMIT_SHARED_CACHE + if( p->sharable ){ + assert( p->lock.pBtree==p && p->lock.iTable==1 ); + p->lock.eLock = READ_LOCK; + p->lock.pNext = pBt->pLock; + pBt->pLock = &p->lock; + } +#endif + } + p->inTrans = (wrflag?TRANS_WRITE:TRANS_READ); + if( p->inTrans>pBt->inTransaction ){ + pBt->inTransaction = p->inTrans; + } + if( wrflag ){ + MemPage *pPage1 = pBt->pPage1; +#ifndef SQLITE_OMIT_SHARED_CACHE + assert( !pBt->pWriter ); + pBt->pWriter = p; + pBt->btsFlags &= ~BTS_EXCLUSIVE; + if( wrflag>1 ) pBt->btsFlags |= BTS_EXCLUSIVE; +#endif + + /* If the db-size header field is incorrect (as it may be if an old + ** client has been writing the database file), update it now. Doing + ** this sooner rather than later means the database size can safely + ** re-read the database size from page 1 if a savepoint or transaction + ** rollback occurs within the transaction. + */ + if( pBt->nPage!=get4byte(&pPage1->aData[28]) ){ + rc = sqlite3PagerWrite(pPage1->pDbPage); + if( rc==SQLITE_OK ){ + put4byte(&pPage1->aData[28], pBt->nPage); + } + } + } + } + + +trans_begun: + if( rc==SQLITE_OK && wrflag ){ + /* This call makes sure that the pager has the correct number of + ** open savepoints. If the second parameter is greater than 0 and + ** the sub-journal is not already open, then it will be opened here. + */ + rc = sqlite3PagerOpenSavepoint(pBt->pPager, p->db->nSavepoint); + } + + btreeIntegrity(p); + sqlite3BtreeLeave(p); + return rc; +} + +#ifndef SQLITE_OMIT_AUTOVACUUM + +/* +** Set the pointer-map entries for all children of page pPage. Also, if +** pPage contains cells that point to overflow pages, set the pointer +** map entries for the overflow pages as well. +*/ +static int setChildPtrmaps(MemPage *pPage){ + int i; /* Counter variable */ + int nCell; /* Number of cells in page pPage */ + int rc; /* Return code */ + BtShared *pBt = pPage->pBt; + u8 isInitOrig = pPage->isInit; + Pgno pgno = pPage->pgno; + + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + rc = btreeInitPage(pPage); + if( rc!=SQLITE_OK ){ + goto set_child_ptrmaps_out; + } + nCell = pPage->nCell; + + for(i=0; ileaf ){ + Pgno childPgno = get4byte(pCell); + ptrmapPut(pBt, childPgno, PTRMAP_BTREE, pgno, &rc); + } + } + + if( !pPage->leaf ){ + Pgno childPgno = get4byte(&pPage->aData[pPage->hdrOffset+8]); + ptrmapPut(pBt, childPgno, PTRMAP_BTREE, pgno, &rc); + } + +set_child_ptrmaps_out: + pPage->isInit = isInitOrig; + return rc; +} + +/* +** Somewhere on pPage is a pointer to page iFrom. Modify this pointer so +** that it points to iTo. Parameter eType describes the type of pointer to +** be modified, as follows: +** +** PTRMAP_BTREE: pPage is a btree-page. The pointer points at a child +** page of pPage. +** +** PTRMAP_OVERFLOW1: pPage is a btree-page. The pointer points at an overflow +** page pointed to by one of the cells on pPage. +** +** PTRMAP_OVERFLOW2: pPage is an overflow-page. The pointer points at the next +** overflow page in the list. +*/ +static int modifyPagePointer(MemPage *pPage, Pgno iFrom, Pgno iTo, u8 eType){ + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + assert( sqlite3PagerIswriteable(pPage->pDbPage) ); + if( eType==PTRMAP_OVERFLOW2 ){ + /* The pointer is always the first 4 bytes of the page in this case. */ + if( get4byte(pPage->aData)!=iFrom ){ + return SQLITE_CORRUPT_BKPT; + } + put4byte(pPage->aData, iTo); + }else{ + u8 isInitOrig = pPage->isInit; + int i; + int nCell; + + btreeInitPage(pPage); + nCell = pPage->nCell; + + for(i=0; iaData+pPage->maskPage + && iFrom==get4byte(&pCell[info.iOverflow]) + ){ + put4byte(&pCell[info.iOverflow], iTo); + break; + } + }else{ + if( get4byte(pCell)==iFrom ){ + put4byte(pCell, iTo); + break; + } + } + } + + if( i==nCell ){ + if( eType!=PTRMAP_BTREE || + get4byte(&pPage->aData[pPage->hdrOffset+8])!=iFrom ){ + return SQLITE_CORRUPT_BKPT; + } + put4byte(&pPage->aData[pPage->hdrOffset+8], iTo); + } + + pPage->isInit = isInitOrig; + } + return SQLITE_OK; +} + + +/* +** Move the open database page pDbPage to location iFreePage in the +** database. The pDbPage reference remains valid. +** +** The isCommit flag indicates that there is no need to remember that +** the journal needs to be sync()ed before database page pDbPage->pgno +** can be written to. The caller has already promised not to write to that +** page. +*/ +static int relocatePage( + BtShared *pBt, /* Btree */ + MemPage *pDbPage, /* Open page to move */ + u8 eType, /* Pointer map 'type' entry for pDbPage */ + Pgno iPtrPage, /* Pointer map 'page-no' entry for pDbPage */ + Pgno iFreePage, /* The location to move pDbPage to */ + int isCommit /* isCommit flag passed to sqlite3PagerMovepage */ +){ + MemPage *pPtrPage; /* The page that contains a pointer to pDbPage */ + Pgno iDbPage = pDbPage->pgno; + Pager *pPager = pBt->pPager; + int rc; + + assert( eType==PTRMAP_OVERFLOW2 || eType==PTRMAP_OVERFLOW1 || + eType==PTRMAP_BTREE || eType==PTRMAP_ROOTPAGE ); + assert( sqlite3_mutex_held(pBt->mutex) ); + assert( pDbPage->pBt==pBt ); + + /* Move page iDbPage from its current location to page number iFreePage */ + TRACE(("AUTOVACUUM: Moving %d to free page %d (ptr page %d type %d)\n", + iDbPage, iFreePage, iPtrPage, eType)); + rc = sqlite3PagerMovepage(pPager, pDbPage->pDbPage, iFreePage, isCommit); + if( rc!=SQLITE_OK ){ + return rc; + } + pDbPage->pgno = iFreePage; + + /* If pDbPage was a btree-page, then it may have child pages and/or cells + ** that point to overflow pages. The pointer map entries for all these + ** pages need to be changed. + ** + ** If pDbPage is an overflow page, then the first 4 bytes may store a + ** pointer to a subsequent overflow page. If this is the case, then + ** the pointer map needs to be updated for the subsequent overflow page. + */ + if( eType==PTRMAP_BTREE || eType==PTRMAP_ROOTPAGE ){ + rc = setChildPtrmaps(pDbPage); + if( rc!=SQLITE_OK ){ + return rc; + } + }else{ + Pgno nextOvfl = get4byte(pDbPage->aData); + if( nextOvfl!=0 ){ + ptrmapPut(pBt, nextOvfl, PTRMAP_OVERFLOW2, iFreePage, &rc); + if( rc!=SQLITE_OK ){ + return rc; + } + } + } + + /* Fix the database pointer on page iPtrPage that pointed at iDbPage so + ** that it points at iFreePage. Also fix the pointer map entry for + ** iPtrPage. + */ + if( eType!=PTRMAP_ROOTPAGE ){ + rc = btreeGetPage(pBt, iPtrPage, &pPtrPage, 0); + if( rc!=SQLITE_OK ){ + return rc; + } + rc = sqlite3PagerWrite(pPtrPage->pDbPage); + if( rc!=SQLITE_OK ){ + releasePage(pPtrPage); + return rc; + } + rc = modifyPagePointer(pPtrPage, iDbPage, iFreePage, eType); + releasePage(pPtrPage); + if( rc==SQLITE_OK ){ + ptrmapPut(pBt, iFreePage, eType, iPtrPage, &rc); + } + } + return rc; +} + +/* Forward declaration required by incrVacuumStep(). */ +static int allocateBtreePage(BtShared *, MemPage **, Pgno *, Pgno, u8); + +/* +** Perform a single step of an incremental-vacuum. If successful, return +** SQLITE_OK. If there is no work to do (and therefore no point in +** calling this function again), return SQLITE_DONE. Or, if an error +** occurs, return some other error code. +** +** More specificly, this function attempts to re-organize the database so +** that the last page of the file currently in use is no longer in use. +** +** Parameter nFin is the number of pages that this database would contain +** were this function called until it returns SQLITE_DONE. +** +** If the bCommit parameter is non-zero, this function assumes that the +** caller will keep calling incrVacuumStep() until it returns SQLITE_DONE +** or an error. bCommit is passed true for an auto-vacuum-on-commmit +** operation, or false for an incremental vacuum. +*/ +static int incrVacuumStep(BtShared *pBt, Pgno nFin, Pgno iLastPg, int bCommit){ + Pgno nFreeList; /* Number of pages still on the free-list */ + int rc; + + assert( sqlite3_mutex_held(pBt->mutex) ); + assert( iLastPg>nFin ); + + if( !PTRMAP_ISPAGE(pBt, iLastPg) && iLastPg!=PENDING_BYTE_PAGE(pBt) ){ + u8 eType; + Pgno iPtrPage; + + nFreeList = get4byte(&pBt->pPage1->aData[36]); + if( nFreeList==0 ){ + return SQLITE_DONE; + } + + rc = ptrmapGet(pBt, iLastPg, &eType, &iPtrPage); + if( rc!=SQLITE_OK ){ + return rc; + } + if( eType==PTRMAP_ROOTPAGE ){ + return SQLITE_CORRUPT_BKPT; + } + + if( eType==PTRMAP_FREEPAGE ){ + if( bCommit==0 ){ + /* Remove the page from the files free-list. This is not required + ** if bCommit is non-zero. In that case, the free-list will be + ** truncated to zero after this function returns, so it doesn't + ** matter if it still contains some garbage entries. + */ + Pgno iFreePg; + MemPage *pFreePg; + rc = allocateBtreePage(pBt, &pFreePg, &iFreePg, iLastPg, BTALLOC_EXACT); + if( rc!=SQLITE_OK ){ + return rc; + } + assert( iFreePg==iLastPg ); + releasePage(pFreePg); + } + } else { + Pgno iFreePg; /* Index of free page to move pLastPg to */ + MemPage *pLastPg; + u8 eMode = BTALLOC_ANY; /* Mode parameter for allocateBtreePage() */ + Pgno iNear = 0; /* nearby parameter for allocateBtreePage() */ + + rc = btreeGetPage(pBt, iLastPg, &pLastPg, 0); + if( rc!=SQLITE_OK ){ + return rc; + } + + /* If bCommit is zero, this loop runs exactly once and page pLastPg + ** is swapped with the first free page pulled off the free list. + ** + ** On the other hand, if bCommit is greater than zero, then keep + ** looping until a free-page located within the first nFin pages + ** of the file is found. + */ + if( bCommit==0 ){ + eMode = BTALLOC_LE; + iNear = nFin; + } + do { + MemPage *pFreePg; + rc = allocateBtreePage(pBt, &pFreePg, &iFreePg, iNear, eMode); + if( rc!=SQLITE_OK ){ + releasePage(pLastPg); + return rc; + } + releasePage(pFreePg); + }while( bCommit && iFreePg>nFin ); + assert( iFreePgbDoTruncate = 1; + pBt->nPage = iLastPg; + } + return SQLITE_OK; +} + +/* +** The database opened by the first argument is an auto-vacuum database +** nOrig pages in size containing nFree free pages. Return the expected +** size of the database in pages following an auto-vacuum operation. +*/ +static Pgno finalDbSize(BtShared *pBt, Pgno nOrig, Pgno nFree){ + int nEntry; /* Number of entries on one ptrmap page */ + Pgno nPtrmap; /* Number of PtrMap pages to be freed */ + Pgno nFin; /* Return value */ + + nEntry = pBt->usableSize/5; + nPtrmap = (nFree-nOrig+PTRMAP_PAGENO(pBt, nOrig)+nEntry)/nEntry; + nFin = nOrig - nFree - nPtrmap; + if( nOrig>PENDING_BYTE_PAGE(pBt) && nFinpBt; + + sqlite3BtreeEnter(p); + assert( pBt->inTransaction==TRANS_WRITE && p->inTrans==TRANS_WRITE ); + if( !pBt->autoVacuum ){ + rc = SQLITE_DONE; + }else{ + Pgno nOrig = btreePagecount(pBt); + Pgno nFree = get4byte(&pBt->pPage1->aData[36]); + Pgno nFin = finalDbSize(pBt, nOrig, nFree); + + if( nOrig0 ){ + rc = saveAllCursors(pBt, 0, 0); + if( rc==SQLITE_OK ){ + invalidateAllOverflowCache(pBt); + rc = incrVacuumStep(pBt, nFin, nOrig, 0); + } + if( rc==SQLITE_OK ){ + rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); + put4byte(&pBt->pPage1->aData[28], pBt->nPage); + } + }else{ + rc = SQLITE_DONE; + } + } + sqlite3BtreeLeave(p); + return rc; +} + +/* +** This routine is called prior to sqlite3PagerCommit when a transaction +** is committed for an auto-vacuum database. +** +** If SQLITE_OK is returned, then *pnTrunc is set to the number of pages +** the database file should be truncated to during the commit process. +** i.e. the database has been reorganized so that only the first *pnTrunc +** pages are in use. +*/ +static int autoVacuumCommit(BtShared *pBt){ + int rc = SQLITE_OK; + Pager *pPager = pBt->pPager; + VVA_ONLY( int nRef = sqlite3PagerRefcount(pPager) ); + + assert( sqlite3_mutex_held(pBt->mutex) ); + invalidateAllOverflowCache(pBt); + assert(pBt->autoVacuum); + if( !pBt->incrVacuum ){ + Pgno nFin; /* Number of pages in database after autovacuuming */ + Pgno nFree; /* Number of pages on the freelist initially */ + Pgno iFree; /* The next page to be freed */ + Pgno nOrig; /* Database size before freeing */ + + nOrig = btreePagecount(pBt); + if( PTRMAP_ISPAGE(pBt, nOrig) || nOrig==PENDING_BYTE_PAGE(pBt) ){ + /* It is not possible to create a database for which the final page + ** is either a pointer-map page or the pending-byte page. If one + ** is encountered, this indicates corruption. + */ + return SQLITE_CORRUPT_BKPT; + } + + nFree = get4byte(&pBt->pPage1->aData[36]); + nFin = finalDbSize(pBt, nOrig, nFree); + if( nFin>nOrig ) return SQLITE_CORRUPT_BKPT; + if( nFinnFin && rc==SQLITE_OK; iFree--){ + rc = incrVacuumStep(pBt, nFin, iFree, 1); + } + if( (rc==SQLITE_DONE || rc==SQLITE_OK) && nFree>0 ){ + rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); + put4byte(&pBt->pPage1->aData[32], 0); + put4byte(&pBt->pPage1->aData[36], 0); + put4byte(&pBt->pPage1->aData[28], nFin); + pBt->bDoTruncate = 1; + pBt->nPage = nFin; + } + if( rc!=SQLITE_OK ){ + sqlite3PagerRollback(pPager); + } + } + + assert( nRef>=sqlite3PagerRefcount(pPager) ); + return rc; +} + +#else /* ifndef SQLITE_OMIT_AUTOVACUUM */ +# define setChildPtrmaps(x) SQLITE_OK +#endif + +/* +** This routine does the first phase of a two-phase commit. This routine +** causes a rollback journal to be created (if it does not already exist) +** and populated with enough information so that if a power loss occurs +** the database can be restored to its original state by playing back +** the journal. Then the contents of the journal are flushed out to +** the disk. After the journal is safely on oxide, the changes to the +** database are written into the database file and flushed to oxide. +** At the end of this call, the rollback journal still exists on the +** disk and we are still holding all locks, so the transaction has not +** committed. See sqlite3BtreeCommitPhaseTwo() for the second phase of the +** commit process. +** +** This call is a no-op if no write-transaction is currently active on pBt. +** +** Otherwise, sync the database file for the btree pBt. zMaster points to +** the name of a master journal file that should be written into the +** individual journal file, or is NULL, indicating no master journal file +** (single database transaction). +** +** When this is called, the master journal should already have been +** created, populated with this journal pointer and synced to disk. +** +** Once this is routine has returned, the only thing required to commit +** the write-transaction for this database file is to delete the journal. +*/ +SQLITE_PRIVATE int sqlite3BtreeCommitPhaseOne(Btree *p, const char *zMaster){ + int rc = SQLITE_OK; + if( p->inTrans==TRANS_WRITE ){ + BtShared *pBt = p->pBt; + sqlite3BtreeEnter(p); +#ifndef SQLITE_OMIT_AUTOVACUUM + if( pBt->autoVacuum ){ + rc = autoVacuumCommit(pBt); + if( rc!=SQLITE_OK ){ + sqlite3BtreeLeave(p); + return rc; + } + } + if( pBt->bDoTruncate ){ + sqlite3PagerTruncateImage(pBt->pPager, pBt->nPage); + } +#endif + rc = sqlite3PagerCommitPhaseOne(pBt->pPager, zMaster, 0); + sqlite3BtreeLeave(p); + } + return rc; +} + +/* +** This function is called from both BtreeCommitPhaseTwo() and BtreeRollback() +** at the conclusion of a transaction. +*/ +static void btreeEndTransaction(Btree *p){ + BtShared *pBt = p->pBt; + sqlite3 *db = p->db; + assert( sqlite3BtreeHoldsMutex(p) ); + +#ifndef SQLITE_OMIT_AUTOVACUUM + pBt->bDoTruncate = 0; +#endif + if( p->inTrans>TRANS_NONE && db->nVdbeRead>1 ){ + /* If there are other active statements that belong to this database + ** handle, downgrade to a read-only transaction. The other statements + ** may still be reading from the database. */ + downgradeAllSharedCacheTableLocks(p); + p->inTrans = TRANS_READ; + }else{ + /* If the handle had any kind of transaction open, decrement the + ** transaction count of the shared btree. If the transaction count + ** reaches 0, set the shared state to TRANS_NONE. The unlockBtreeIfUnused() + ** call below will unlock the pager. */ + if( p->inTrans!=TRANS_NONE ){ + clearAllSharedCacheTableLocks(p); + pBt->nTransaction--; + if( 0==pBt->nTransaction ){ + pBt->inTransaction = TRANS_NONE; + } + } + + /* Set the current transaction state to TRANS_NONE and unlock the + ** pager if this call closed the only read or write transaction. */ + p->inTrans = TRANS_NONE; + unlockBtreeIfUnused(pBt); + } + + btreeIntegrity(p); +} + +/* +** Commit the transaction currently in progress. +** +** This routine implements the second phase of a 2-phase commit. The +** sqlite3BtreeCommitPhaseOne() routine does the first phase and should +** be invoked prior to calling this routine. The sqlite3BtreeCommitPhaseOne() +** routine did all the work of writing information out to disk and flushing the +** contents so that they are written onto the disk platter. All this +** routine has to do is delete or truncate or zero the header in the +** the rollback journal (which causes the transaction to commit) and +** drop locks. +** +** Normally, if an error occurs while the pager layer is attempting to +** finalize the underlying journal file, this function returns an error and +** the upper layer will attempt a rollback. However, if the second argument +** is non-zero then this b-tree transaction is part of a multi-file +** transaction. In this case, the transaction has already been committed +** (by deleting a master journal file) and the caller will ignore this +** functions return code. So, even if an error occurs in the pager layer, +** reset the b-tree objects internal state to indicate that the write +** transaction has been closed. This is quite safe, as the pager will have +** transitioned to the error state. +** +** This will release the write lock on the database file. If there +** are no active cursors, it also releases the read lock. +*/ +SQLITE_PRIVATE int sqlite3BtreeCommitPhaseTwo(Btree *p, int bCleanup){ + + if( p->inTrans==TRANS_NONE ) return SQLITE_OK; + sqlite3BtreeEnter(p); + btreeIntegrity(p); + + /* If the handle has a write-transaction open, commit the shared-btrees + ** transaction and set the shared state to TRANS_READ. + */ + if( p->inTrans==TRANS_WRITE ){ + int rc; + BtShared *pBt = p->pBt; + assert( pBt->inTransaction==TRANS_WRITE ); + assert( pBt->nTransaction>0 ); + rc = sqlite3PagerCommitPhaseTwo(pBt->pPager); + if( rc!=SQLITE_OK && bCleanup==0 ){ + sqlite3BtreeLeave(p); + return rc; + } + pBt->inTransaction = TRANS_READ; + btreeClearHasContent(pBt); + } + + btreeEndTransaction(p); + sqlite3BtreeLeave(p); + return SQLITE_OK; +} + +/* +** Do both phases of a commit. +*/ +SQLITE_PRIVATE int sqlite3BtreeCommit(Btree *p){ + int rc; + sqlite3BtreeEnter(p); + rc = sqlite3BtreeCommitPhaseOne(p, 0); + if( rc==SQLITE_OK ){ + rc = sqlite3BtreeCommitPhaseTwo(p, 0); + } + sqlite3BtreeLeave(p); + return rc; +} + +/* +** This routine sets the state to CURSOR_FAULT and the error +** code to errCode for every cursor on BtShared that pBtree +** references. +** +** Every cursor is tripped, including cursors that belong +** to other database connections that happen to be sharing +** the cache with pBtree. +** +** This routine gets called when a rollback occurs. +** All cursors using the same cache must be tripped +** to prevent them from trying to use the btree after +** the rollback. The rollback may have deleted tables +** or moved root pages, so it is not sufficient to +** save the state of the cursor. The cursor must be +** invalidated. +*/ +SQLITE_PRIVATE void sqlite3BtreeTripAllCursors(Btree *pBtree, int errCode){ + BtCursor *p; + if( pBtree==0 ) return; + sqlite3BtreeEnter(pBtree); + for(p=pBtree->pBt->pCursor; p; p=p->pNext){ + int i; + sqlite3BtreeClearCursor(p); + p->eState = CURSOR_FAULT; + p->skipNext = errCode; + for(i=0; i<=p->iPage; i++){ + releasePage(p->apPage[i]); + p->apPage[i] = 0; + } + } + sqlite3BtreeLeave(pBtree); +} + +/* +** Rollback the transaction in progress. All cursors will be +** invalided by this operation. Any attempt to use a cursor +** that was open at the beginning of this operation will result +** in an error. +** +** This will release the write lock on the database file. If there +** are no active cursors, it also releases the read lock. +*/ +SQLITE_PRIVATE int sqlite3BtreeRollback(Btree *p, int tripCode){ + int rc; + BtShared *pBt = p->pBt; + MemPage *pPage1; + + sqlite3BtreeEnter(p); + if( tripCode==SQLITE_OK ){ + rc = tripCode = saveAllCursors(pBt, 0, 0); + }else{ + rc = SQLITE_OK; + } + if( tripCode ){ + sqlite3BtreeTripAllCursors(p, tripCode); + } + btreeIntegrity(p); + + if( p->inTrans==TRANS_WRITE ){ + int rc2; + + assert( TRANS_WRITE==pBt->inTransaction ); + rc2 = sqlite3PagerRollback(pBt->pPager); + if( rc2!=SQLITE_OK ){ + rc = rc2; + } + + /* The rollback may have destroyed the pPage1->aData value. So + ** call btreeGetPage() on page 1 again to make + ** sure pPage1->aData is set correctly. */ + if( btreeGetPage(pBt, 1, &pPage1, 0)==SQLITE_OK ){ + int nPage = get4byte(28+(u8*)pPage1->aData); + testcase( nPage==0 ); + if( nPage==0 ) sqlite3PagerPagecount(pBt->pPager, &nPage); + testcase( pBt->nPage!=nPage ); + pBt->nPage = nPage; + releasePage(pPage1); + } + assert( countValidCursors(pBt, 1)==0 ); + pBt->inTransaction = TRANS_READ; + btreeClearHasContent(pBt); + } + + btreeEndTransaction(p); + sqlite3BtreeLeave(p); + return rc; +} + +/* +** Start a statement subtransaction. The subtransaction can can be rolled +** back independently of the main transaction. You must start a transaction +** before starting a subtransaction. The subtransaction is ended automatically +** if the main transaction commits or rolls back. +** +** Statement subtransactions are used around individual SQL statements +** that are contained within a BEGIN...COMMIT block. If a constraint +** error occurs within the statement, the effect of that one statement +** can be rolled back without having to rollback the entire transaction. +** +** A statement sub-transaction is implemented as an anonymous savepoint. The +** value passed as the second parameter is the total number of savepoints, +** including the new anonymous savepoint, open on the B-Tree. i.e. if there +** are no active savepoints and no other statement-transactions open, +** iStatement is 1. This anonymous savepoint can be released or rolled back +** using the sqlite3BtreeSavepoint() function. +*/ +SQLITE_PRIVATE int sqlite3BtreeBeginStmt(Btree *p, int iStatement){ + int rc; + BtShared *pBt = p->pBt; + sqlite3BtreeEnter(p); + assert( p->inTrans==TRANS_WRITE ); + assert( (pBt->btsFlags & BTS_READ_ONLY)==0 ); + assert( iStatement>0 ); + assert( iStatement>p->db->nSavepoint ); + assert( pBt->inTransaction==TRANS_WRITE ); + /* At the pager level, a statement transaction is a savepoint with + ** an index greater than all savepoints created explicitly using + ** SQL statements. It is illegal to open, release or rollback any + ** such savepoints while the statement transaction savepoint is active. + */ + rc = sqlite3PagerOpenSavepoint(pBt->pPager, iStatement); + sqlite3BtreeLeave(p); + return rc; +} + +/* +** The second argument to this function, op, is always SAVEPOINT_ROLLBACK +** or SAVEPOINT_RELEASE. This function either releases or rolls back the +** savepoint identified by parameter iSavepoint, depending on the value +** of op. +** +** Normally, iSavepoint is greater than or equal to zero. However, if op is +** SAVEPOINT_ROLLBACK, then iSavepoint may also be -1. In this case the +** contents of the entire transaction are rolled back. This is different +** from a normal transaction rollback, as no locks are released and the +** transaction remains open. +*/ +SQLITE_PRIVATE int sqlite3BtreeSavepoint(Btree *p, int op, int iSavepoint){ + int rc = SQLITE_OK; + if( p && p->inTrans==TRANS_WRITE ){ + BtShared *pBt = p->pBt; + assert( op==SAVEPOINT_RELEASE || op==SAVEPOINT_ROLLBACK ); + assert( iSavepoint>=0 || (iSavepoint==-1 && op==SAVEPOINT_ROLLBACK) ); + sqlite3BtreeEnter(p); + rc = sqlite3PagerSavepoint(pBt->pPager, op, iSavepoint); + if( rc==SQLITE_OK ){ + if( iSavepoint<0 && (pBt->btsFlags & BTS_INITIALLY_EMPTY)!=0 ){ + pBt->nPage = 0; + } + rc = newDatabase(pBt); + pBt->nPage = get4byte(28 + pBt->pPage1->aData); + + /* The database size was written into the offset 28 of the header + ** when the transaction started, so we know that the value at offset + ** 28 is nonzero. */ + assert( pBt->nPage>0 ); + } + sqlite3BtreeLeave(p); + } + return rc; +} + +/* +** Create a new cursor for the BTree whose root is on the page +** iTable. If a read-only cursor is requested, it is assumed that +** the caller already has at least a read-only transaction open +** on the database already. If a write-cursor is requested, then +** the caller is assumed to have an open write transaction. +** +** If wrFlag==0, then the cursor can only be used for reading. +** If wrFlag==1, then the cursor can be used for reading or for +** writing if other conditions for writing are also met. These +** are the conditions that must be met in order for writing to +** be allowed: +** +** 1: The cursor must have been opened with wrFlag==1 +** +** 2: Other database connections that share the same pager cache +** but which are not in the READ_UNCOMMITTED state may not have +** cursors open with wrFlag==0 on the same table. Otherwise +** the changes made by this write cursor would be visible to +** the read cursors in the other database connection. +** +** 3: The database must be writable (not on read-only media) +** +** 4: There must be an active transaction. +** +** No checking is done to make sure that page iTable really is the +** root page of a b-tree. If it is not, then the cursor acquired +** will not work correctly. +** +** It is assumed that the sqlite3BtreeCursorZero() has been called +** on pCur to initialize the memory space prior to invoking this routine. +*/ +static int btreeCursor( + Btree *p, /* The btree */ + int iTable, /* Root page of table to open */ + int wrFlag, /* 1 to write. 0 read-only */ + struct KeyInfo *pKeyInfo, /* First arg to comparison function */ + BtCursor *pCur /* Space for new cursor */ +){ + BtShared *pBt = p->pBt; /* Shared b-tree handle */ + + assert( sqlite3BtreeHoldsMutex(p) ); + assert( wrFlag==0 || wrFlag==1 ); + + /* The following assert statements verify that if this is a sharable + ** b-tree database, the connection is holding the required table locks, + ** and that no other connection has any open cursor that conflicts with + ** this lock. */ + assert( hasSharedCacheTableLock(p, iTable, pKeyInfo!=0, wrFlag+1) ); + assert( wrFlag==0 || !hasReadConflicts(p, iTable) ); + + /* Assert that the caller has opened the required transaction. */ + assert( p->inTrans>TRANS_NONE ); + assert( wrFlag==0 || p->inTrans==TRANS_WRITE ); + assert( pBt->pPage1 && pBt->pPage1->aData ); + + if( NEVER(wrFlag && (pBt->btsFlags & BTS_READ_ONLY)!=0) ){ + return SQLITE_READONLY; + } + if( iTable==1 && btreePagecount(pBt)==0 ){ + assert( wrFlag==0 ); + iTable = 0; + } + + /* Now that no other errors can occur, finish filling in the BtCursor + ** variables and link the cursor into the BtShared list. */ + pCur->pgnoRoot = (Pgno)iTable; + pCur->iPage = -1; + pCur->pKeyInfo = pKeyInfo; + pCur->pBtree = p; + pCur->pBt = pBt; + assert( wrFlag==0 || wrFlag==BTCF_WriteFlag ); + pCur->curFlags = wrFlag; + pCur->pNext = pBt->pCursor; + if( pCur->pNext ){ + pCur->pNext->pPrev = pCur; + } + pBt->pCursor = pCur; + pCur->eState = CURSOR_INVALID; + return SQLITE_OK; +} +SQLITE_PRIVATE int sqlite3BtreeCursor( + Btree *p, /* The btree */ + int iTable, /* Root page of table to open */ + int wrFlag, /* 1 to write. 0 read-only */ + struct KeyInfo *pKeyInfo, /* First arg to xCompare() */ + BtCursor *pCur /* Write new cursor here */ +){ + int rc; + sqlite3BtreeEnter(p); + rc = btreeCursor(p, iTable, wrFlag, pKeyInfo, pCur); + sqlite3BtreeLeave(p); + return rc; +} + +/* +** Return the size of a BtCursor object in bytes. +** +** This interfaces is needed so that users of cursors can preallocate +** sufficient storage to hold a cursor. The BtCursor object is opaque +** to users so they cannot do the sizeof() themselves - they must call +** this routine. +*/ +SQLITE_PRIVATE int sqlite3BtreeCursorSize(void){ + return ROUND8(sizeof(BtCursor)); +} + +/* +** Initialize memory that will be converted into a BtCursor object. +** +** The simple approach here would be to memset() the entire object +** to zero. But it turns out that the apPage[] and aiIdx[] arrays +** do not need to be zeroed and they are large, so we can save a lot +** of run-time by skipping the initialization of those elements. +*/ +SQLITE_PRIVATE void sqlite3BtreeCursorZero(BtCursor *p){ + memset(p, 0, offsetof(BtCursor, iPage)); +} + +/* +** Close a cursor. The read lock on the database file is released +** when the last cursor is closed. +*/ +SQLITE_PRIVATE int sqlite3BtreeCloseCursor(BtCursor *pCur){ + Btree *pBtree = pCur->pBtree; + if( pBtree ){ + int i; + BtShared *pBt = pCur->pBt; + sqlite3BtreeEnter(pBtree); + sqlite3BtreeClearCursor(pCur); + if( pCur->pPrev ){ + pCur->pPrev->pNext = pCur->pNext; + }else{ + pBt->pCursor = pCur->pNext; + } + if( pCur->pNext ){ + pCur->pNext->pPrev = pCur->pPrev; + } + for(i=0; i<=pCur->iPage; i++){ + releasePage(pCur->apPage[i]); + } + unlockBtreeIfUnused(pBt); + sqlite3DbFree(pBtree->db, pCur->aOverflow); + /* sqlite3_free(pCur); */ + sqlite3BtreeLeave(pBtree); + } + return SQLITE_OK; +} + +/* +** Make sure the BtCursor* given in the argument has a valid +** BtCursor.info structure. If it is not already valid, call +** btreeParseCell() to fill it in. +** +** BtCursor.info is a cache of the information in the current cell. +** Using this cache reduces the number of calls to btreeParseCell(). +** +** 2007-06-25: There is a bug in some versions of MSVC that cause the +** compiler to crash when getCellInfo() is implemented as a macro. +** But there is a measureable speed advantage to using the macro on gcc +** (when less compiler optimizations like -Os or -O0 are used and the +** compiler is not doing agressive inlining.) So we use a real function +** for MSVC and a macro for everything else. Ticket #2457. +*/ +#ifndef NDEBUG + static void assertCellInfo(BtCursor *pCur){ + CellInfo info; + int iPage = pCur->iPage; + memset(&info, 0, sizeof(info)); + btreeParseCell(pCur->apPage[iPage], pCur->aiIdx[iPage], &info); + assert( CORRUPT_DB || memcmp(&info, &pCur->info, sizeof(info))==0 ); + } +#else + #define assertCellInfo(x) +#endif +#ifdef _MSC_VER + /* Use a real function in MSVC to work around bugs in that compiler. */ + static void getCellInfo(BtCursor *pCur){ + if( pCur->info.nSize==0 ){ + int iPage = pCur->iPage; + btreeParseCell(pCur->apPage[iPage],pCur->aiIdx[iPage],&pCur->info); + pCur->curFlags |= BTCF_ValidNKey; + }else{ + assertCellInfo(pCur); + } + } +#else /* if not _MSC_VER */ + /* Use a macro in all other compilers so that the function is inlined */ +#define getCellInfo(pCur) \ + if( pCur->info.nSize==0 ){ \ + int iPage = pCur->iPage; \ + btreeParseCell(pCur->apPage[iPage],pCur->aiIdx[iPage],&pCur->info); \ + pCur->curFlags |= BTCF_ValidNKey; \ + }else{ \ + assertCellInfo(pCur); \ + } +#endif /* _MSC_VER */ + +#ifndef NDEBUG /* The next routine used only within assert() statements */ +/* +** Return true if the given BtCursor is valid. A valid cursor is one +** that is currently pointing to a row in a (non-empty) table. +** This is a verification routine is used only within assert() statements. +*/ +SQLITE_PRIVATE int sqlite3BtreeCursorIsValid(BtCursor *pCur){ + return pCur && pCur->eState==CURSOR_VALID; +} +#endif /* NDEBUG */ + +/* +** Set *pSize to the size of the buffer needed to hold the value of +** the key for the current entry. If the cursor is not pointing +** to a valid entry, *pSize is set to 0. +** +** For a table with the INTKEY flag set, this routine returns the key +** itself, not the number of bytes in the key. +** +** The caller must position the cursor prior to invoking this routine. +** +** This routine cannot fail. It always returns SQLITE_OK. +*/ +SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor *pCur, i64 *pSize){ + assert( cursorHoldsMutex(pCur) ); + assert( pCur->eState==CURSOR_INVALID || pCur->eState==CURSOR_VALID ); + if( pCur->eState!=CURSOR_VALID ){ + *pSize = 0; + }else{ + getCellInfo(pCur); + *pSize = pCur->info.nKey; + } + return SQLITE_OK; +} + +/* +** Set *pSize to the number of bytes of data in the entry the +** cursor currently points to. +** +** The caller must guarantee that the cursor is pointing to a non-NULL +** valid entry. In other words, the calling procedure must guarantee +** that the cursor has Cursor.eState==CURSOR_VALID. +** +** Failure is not possible. This function always returns SQLITE_OK. +** It might just as well be a procedure (returning void) but we continue +** to return an integer result code for historical reasons. +*/ +SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor *pCur, u32 *pSize){ + assert( cursorHoldsMutex(pCur) ); + assert( pCur->eState==CURSOR_VALID ); + getCellInfo(pCur); + *pSize = pCur->info.nData; + return SQLITE_OK; +} + +/* +** Given the page number of an overflow page in the database (parameter +** ovfl), this function finds the page number of the next page in the +** linked list of overflow pages. If possible, it uses the auto-vacuum +** pointer-map data instead of reading the content of page ovfl to do so. +** +** If an error occurs an SQLite error code is returned. Otherwise: +** +** The page number of the next overflow page in the linked list is +** written to *pPgnoNext. If page ovfl is the last page in its linked +** list, *pPgnoNext is set to zero. +** +** If ppPage is not NULL, and a reference to the MemPage object corresponding +** to page number pOvfl was obtained, then *ppPage is set to point to that +** reference. It is the responsibility of the caller to call releasePage() +** on *ppPage to free the reference. In no reference was obtained (because +** the pointer-map was used to obtain the value for *pPgnoNext), then +** *ppPage is set to zero. +*/ +static int getOverflowPage( + BtShared *pBt, /* The database file */ + Pgno ovfl, /* Current overflow page number */ + MemPage **ppPage, /* OUT: MemPage handle (may be NULL) */ + Pgno *pPgnoNext /* OUT: Next overflow page number */ +){ + Pgno next = 0; + MemPage *pPage = 0; + int rc = SQLITE_OK; + + assert( sqlite3_mutex_held(pBt->mutex) ); + assert(pPgnoNext); + +#ifndef SQLITE_OMIT_AUTOVACUUM + /* Try to find the next page in the overflow list using the + ** autovacuum pointer-map pages. Guess that the next page in + ** the overflow list is page number (ovfl+1). If that guess turns + ** out to be wrong, fall back to loading the data of page + ** number ovfl to determine the next page number. + */ + if( pBt->autoVacuum ){ + Pgno pgno; + Pgno iGuess = ovfl+1; + u8 eType; + + while( PTRMAP_ISPAGE(pBt, iGuess) || iGuess==PENDING_BYTE_PAGE(pBt) ){ + iGuess++; + } + + if( iGuess<=btreePagecount(pBt) ){ + rc = ptrmapGet(pBt, iGuess, &eType, &pgno); + if( rc==SQLITE_OK && eType==PTRMAP_OVERFLOW2 && pgno==ovfl ){ + next = iGuess; + rc = SQLITE_DONE; + } + } + } +#endif + + assert( next==0 || rc==SQLITE_DONE ); + if( rc==SQLITE_OK ){ + rc = btreeGetPage(pBt, ovfl, &pPage, (ppPage==0) ? PAGER_GET_READONLY : 0); + assert( rc==SQLITE_OK || pPage==0 ); + if( rc==SQLITE_OK ){ + next = get4byte(pPage->aData); + } + } + + *pPgnoNext = next; + if( ppPage ){ + *ppPage = pPage; + }else{ + releasePage(pPage); + } + return (rc==SQLITE_DONE ? SQLITE_OK : rc); +} + +/* +** Copy data from a buffer to a page, or from a page to a buffer. +** +** pPayload is a pointer to data stored on database page pDbPage. +** If argument eOp is false, then nByte bytes of data are copied +** from pPayload to the buffer pointed at by pBuf. If eOp is true, +** then sqlite3PagerWrite() is called on pDbPage and nByte bytes +** of data are copied from the buffer pBuf to pPayload. +** +** SQLITE_OK is returned on success, otherwise an error code. +*/ +static int copyPayload( + void *pPayload, /* Pointer to page data */ + void *pBuf, /* Pointer to buffer */ + int nByte, /* Number of bytes to copy */ + int eOp, /* 0 -> copy from page, 1 -> copy to page */ + DbPage *pDbPage /* Page containing pPayload */ +){ + if( eOp ){ + /* Copy data from buffer to page (a write operation) */ + int rc = sqlite3PagerWrite(pDbPage); + if( rc!=SQLITE_OK ){ + return rc; + } + memcpy(pPayload, pBuf, nByte); + }else{ + /* Copy data from page to buffer (a read operation) */ + memcpy(pBuf, pPayload, nByte); + } + return SQLITE_OK; +} + +/* +** This function is used to read or overwrite payload information +** for the entry that the pCur cursor is pointing to. The eOp +** argument is interpreted as follows: +** +** 0: The operation is a read. Populate the overflow cache. +** 1: The operation is a write. Populate the overflow cache. +** 2: The operation is a read. Do not populate the overflow cache. +** +** A total of "amt" bytes are read or written beginning at "offset". +** Data is read to or from the buffer pBuf. +** +** The content being read or written might appear on the main page +** or be scattered out on multiple overflow pages. +** +** If the current cursor entry uses one or more overflow pages and the +** eOp argument is not 2, this function may allocate space for and lazily +** popluates the overflow page-list cache array (BtCursor.aOverflow). +** Subsequent calls use this cache to make seeking to the supplied offset +** more efficient. +** +** Once an overflow page-list cache has been allocated, it may be +** invalidated if some other cursor writes to the same table, or if +** the cursor is moved to a different row. Additionally, in auto-vacuum +** mode, the following events may invalidate an overflow page-list cache. +** +** * An incremental vacuum, +** * A commit in auto_vacuum="full" mode, +** * Creating a table (may require moving an overflow page). +*/ +static int accessPayload( + BtCursor *pCur, /* Cursor pointing to entry to read from */ + u32 offset, /* Begin reading this far into payload */ + u32 amt, /* Read this many bytes */ + unsigned char *pBuf, /* Write the bytes into this buffer */ + int eOp /* zero to read. non-zero to write. */ +){ + unsigned char *aPayload; + int rc = SQLITE_OK; + u32 nKey; + int iIdx = 0; + MemPage *pPage = pCur->apPage[pCur->iPage]; /* Btree page of current entry */ + BtShared *pBt = pCur->pBt; /* Btree this cursor belongs to */ +#ifdef SQLITE_DIRECT_OVERFLOW_READ + int bEnd; /* True if reading to end of data */ +#endif + + assert( pPage ); + assert( pCur->eState==CURSOR_VALID ); + assert( pCur->aiIdx[pCur->iPage]nCell ); + assert( cursorHoldsMutex(pCur) ); + assert( eOp!=2 || offset==0 ); /* Always start from beginning for eOp==2 */ + + getCellInfo(pCur); + aPayload = pCur->info.pCell + pCur->info.nHeader; + nKey = (pPage->intKey ? 0 : (int)pCur->info.nKey); +#ifdef SQLITE_DIRECT_OVERFLOW_READ + bEnd = (offset+amt==nKey+pCur->info.nData); +#endif + + if( NEVER(offset+amt > nKey+pCur->info.nData) + || &aPayload[pCur->info.nLocal] > &pPage->aData[pBt->usableSize] + ){ + /* Trying to read or write past the end of the data is an error */ + return SQLITE_CORRUPT_BKPT; + } + + /* Check if data must be read/written to/from the btree page itself. */ + if( offsetinfo.nLocal ){ + int a = amt; + if( a+offset>pCur->info.nLocal ){ + a = pCur->info.nLocal - offset; + } + rc = copyPayload(&aPayload[offset], pBuf, a, (eOp & 0x01), pPage->pDbPage); + offset = 0; + pBuf += a; + amt -= a; + }else{ + offset -= pCur->info.nLocal; + } + + if( rc==SQLITE_OK && amt>0 ){ + const u32 ovflSize = pBt->usableSize - 4; /* Bytes content per ovfl page */ + Pgno nextPage; + + nextPage = get4byte(&aPayload[pCur->info.nLocal]); + + /* If the BtCursor.aOverflow[] has not been allocated, allocate it now. + ** Except, do not allocate aOverflow[] for eOp==2. + ** + ** The aOverflow[] array is sized at one entry for each overflow page + ** in the overflow chain. The page number of the first overflow page is + ** stored in aOverflow[0], etc. A value of 0 in the aOverflow[] array + ** means "not yet known" (the cache is lazily populated). + */ + if( eOp!=2 && (pCur->curFlags & BTCF_ValidOvfl)==0 ){ + int nOvfl = (pCur->info.nPayload-pCur->info.nLocal+ovflSize-1)/ovflSize; + if( nOvfl>pCur->nOvflAlloc ){ + Pgno *aNew = (Pgno*)sqlite3DbRealloc( + pCur->pBtree->db, pCur->aOverflow, nOvfl*2*sizeof(Pgno) + ); + if( aNew==0 ){ + rc = SQLITE_NOMEM; + }else{ + pCur->nOvflAlloc = nOvfl*2; + pCur->aOverflow = aNew; + } + } + if( rc==SQLITE_OK ){ + memset(pCur->aOverflow, 0, nOvfl*sizeof(Pgno)); + pCur->curFlags |= BTCF_ValidOvfl; + } + } + + /* If the overflow page-list cache has been allocated and the + ** entry for the first required overflow page is valid, skip + ** directly to it. + */ + if( (pCur->curFlags & BTCF_ValidOvfl)!=0 && pCur->aOverflow[offset/ovflSize] ){ + iIdx = (offset/ovflSize); + nextPage = pCur->aOverflow[iIdx]; + offset = (offset%ovflSize); + } + + for( ; rc==SQLITE_OK && amt>0 && nextPage; iIdx++){ + + /* If required, populate the overflow page-list cache. */ + if( (pCur->curFlags & BTCF_ValidOvfl)!=0 ){ + assert(!pCur->aOverflow[iIdx] || pCur->aOverflow[iIdx]==nextPage); + pCur->aOverflow[iIdx] = nextPage; + } + + if( offset>=ovflSize ){ + /* The only reason to read this page is to obtain the page + ** number for the next page in the overflow chain. The page + ** data is not required. So first try to lookup the overflow + ** page-list cache, if any, then fall back to the getOverflowPage() + ** function. + ** + ** Note that the aOverflow[] array must be allocated because eOp!=2 + ** here. If eOp==2, then offset==0 and this branch is never taken. + */ + assert( eOp!=2 ); + assert( pCur->curFlags & BTCF_ValidOvfl ); + if( pCur->aOverflow[iIdx+1] ){ + nextPage = pCur->aOverflow[iIdx+1]; + }else{ + rc = getOverflowPage(pBt, nextPage, 0, &nextPage); + } + offset -= ovflSize; + }else{ + /* Need to read this page properly. It contains some of the + ** range of data that is being read (eOp==0) or written (eOp!=0). + */ +#ifdef SQLITE_DIRECT_OVERFLOW_READ + sqlite3_file *fd; +#endif + int a = amt; + if( a + offset > ovflSize ){ + a = ovflSize - offset; + } + +#ifdef SQLITE_DIRECT_OVERFLOW_READ + /* If all the following are true: + ** + ** 1) this is a read operation, and + ** 2) data is required from the start of this overflow page, and + ** 3) the database is file-backed, and + ** 4) there is no open write-transaction, and + ** 5) the database is not a WAL database, + ** 6) all data from the page is being read. + ** + ** then data can be read directly from the database file into the + ** output buffer, bypassing the page-cache altogether. This speeds + ** up loading large records that span many overflow pages. + */ + if( (eOp&0x01)==0 /* (1) */ + && offset==0 /* (2) */ + && (bEnd || a==ovflSize) /* (6) */ + && pBt->inTransaction==TRANS_READ /* (4) */ + && (fd = sqlite3PagerFile(pBt->pPager))->pMethods /* (3) */ + && pBt->pPage1->aData[19]==0x01 /* (5) */ + ){ + u8 aSave[4]; + u8 *aWrite = &pBuf[-4]; + memcpy(aSave, aWrite, 4); + rc = sqlite3OsRead(fd, aWrite, a+4, (i64)pBt->pageSize*(nextPage-1)); + nextPage = get4byte(aWrite); + memcpy(aWrite, aSave, 4); + }else +#endif + + { + DbPage *pDbPage; + rc = sqlite3PagerAcquire(pBt->pPager, nextPage, &pDbPage, + ((eOp&0x01)==0 ? PAGER_GET_READONLY : 0) + ); + if( rc==SQLITE_OK ){ + aPayload = sqlite3PagerGetData(pDbPage); + nextPage = get4byte(aPayload); + rc = copyPayload(&aPayload[offset+4], pBuf, a, (eOp&0x01), pDbPage); + sqlite3PagerUnref(pDbPage); + offset = 0; + } + } + amt -= a; + pBuf += a; + } + } + } + + if( rc==SQLITE_OK && amt>0 ){ + return SQLITE_CORRUPT_BKPT; + } + return rc; +} + +/* +** Read part of the key associated with cursor pCur. Exactly +** "amt" bytes will be transfered into pBuf[]. The transfer +** begins at "offset". +** +** The caller must ensure that pCur is pointing to a valid row +** in the table. +** +** Return SQLITE_OK on success or an error code if anything goes +** wrong. An error is returned if "offset+amt" is larger than +** the available payload. +*/ +SQLITE_PRIVATE int sqlite3BtreeKey(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){ + assert( cursorHoldsMutex(pCur) ); + assert( pCur->eState==CURSOR_VALID ); + assert( pCur->iPage>=0 && pCur->apPage[pCur->iPage] ); + assert( pCur->aiIdx[pCur->iPage]apPage[pCur->iPage]->nCell ); + return accessPayload(pCur, offset, amt, (unsigned char*)pBuf, 0); +} + +/* +** Read part of the data associated with cursor pCur. Exactly +** "amt" bytes will be transfered into pBuf[]. The transfer +** begins at "offset". +** +** Return SQLITE_OK on success or an error code if anything goes +** wrong. An error is returned if "offset+amt" is larger than +** the available payload. +*/ +SQLITE_PRIVATE int sqlite3BtreeData(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){ + int rc; + +#ifndef SQLITE_OMIT_INCRBLOB + if ( pCur->eState==CURSOR_INVALID ){ + return SQLITE_ABORT; + } +#endif + + assert( cursorHoldsMutex(pCur) ); + rc = restoreCursorPosition(pCur); + if( rc==SQLITE_OK ){ + assert( pCur->eState==CURSOR_VALID ); + assert( pCur->iPage>=0 && pCur->apPage[pCur->iPage] ); + assert( pCur->aiIdx[pCur->iPage]apPage[pCur->iPage]->nCell ); + rc = accessPayload(pCur, offset, amt, pBuf, 0); + } + return rc; +} + +/* +** Return a pointer to payload information from the entry that the +** pCur cursor is pointing to. The pointer is to the beginning of +** the key if index btrees (pPage->intKey==0) and is the data for +** table btrees (pPage->intKey==1). The number of bytes of available +** key/data is written into *pAmt. If *pAmt==0, then the value +** returned will not be a valid pointer. +** +** This routine is an optimization. It is common for the entire key +** and data to fit on the local page and for there to be no overflow +** pages. When that is so, this routine can be used to access the +** key and data without making a copy. If the key and/or data spills +** onto overflow pages, then accessPayload() must be used to reassemble +** the key/data and copy it into a preallocated buffer. +** +** The pointer returned by this routine looks directly into the cached +** page of the database. The data might change or move the next time +** any btree routine is called. +*/ +static const void *fetchPayload( + BtCursor *pCur, /* Cursor pointing to entry to read from */ + u32 *pAmt /* Write the number of available bytes here */ +){ + assert( pCur!=0 && pCur->iPage>=0 && pCur->apPage[pCur->iPage]); + assert( pCur->eState==CURSOR_VALID ); + assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); + assert( cursorHoldsMutex(pCur) ); + assert( pCur->aiIdx[pCur->iPage]apPage[pCur->iPage]->nCell ); + assert( pCur->info.nSize>0 ); + *pAmt = pCur->info.nLocal; + return (void*)(pCur->info.pCell + pCur->info.nHeader); +} + + +/* +** For the entry that cursor pCur is point to, return as +** many bytes of the key or data as are available on the local +** b-tree page. Write the number of available bytes into *pAmt. +** +** The pointer returned is ephemeral. The key/data may move +** or be destroyed on the next call to any Btree routine, +** including calls from other threads against the same cache. +** Hence, a mutex on the BtShared should be held prior to calling +** this routine. +** +** These routines is used to get quick access to key and data +** in the common case where no overflow pages are used. +*/ +SQLITE_PRIVATE const void *sqlite3BtreeKeyFetch(BtCursor *pCur, u32 *pAmt){ + return fetchPayload(pCur, pAmt); +} +SQLITE_PRIVATE const void *sqlite3BtreeDataFetch(BtCursor *pCur, u32 *pAmt){ + return fetchPayload(pCur, pAmt); +} + + +/* +** Move the cursor down to a new child page. The newPgno argument is the +** page number of the child page to move to. +** +** This function returns SQLITE_CORRUPT if the page-header flags field of +** the new child page does not match the flags field of the parent (i.e. +** if an intkey page appears to be the parent of a non-intkey page, or +** vice-versa). +*/ +static int moveToChild(BtCursor *pCur, u32 newPgno){ + int rc; + int i = pCur->iPage; + MemPage *pNewPage; + BtShared *pBt = pCur->pBt; + + assert( cursorHoldsMutex(pCur) ); + assert( pCur->eState==CURSOR_VALID ); + assert( pCur->iPageiPage>=0 ); + if( pCur->iPage>=(BTCURSOR_MAX_DEPTH-1) ){ + return SQLITE_CORRUPT_BKPT; + } + rc = getAndInitPage(pBt, newPgno, &pNewPage, + (pCur->curFlags & BTCF_WriteFlag)==0 ? PAGER_GET_READONLY : 0); + if( rc ) return rc; + pCur->apPage[i+1] = pNewPage; + pCur->aiIdx[i+1] = 0; + pCur->iPage++; + + pCur->info.nSize = 0; + pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); + if( pNewPage->nCell<1 || pNewPage->intKey!=pCur->apPage[i]->intKey ){ + return SQLITE_CORRUPT_BKPT; + } + return SQLITE_OK; +} + +#if 0 +/* +** Page pParent is an internal (non-leaf) tree page. This function +** asserts that page number iChild is the left-child if the iIdx'th +** cell in page pParent. Or, if iIdx is equal to the total number of +** cells in pParent, that page number iChild is the right-child of +** the page. +*/ +static void assertParentIndex(MemPage *pParent, int iIdx, Pgno iChild){ + assert( iIdx<=pParent->nCell ); + if( iIdx==pParent->nCell ){ + assert( get4byte(&pParent->aData[pParent->hdrOffset+8])==iChild ); + }else{ + assert( get4byte(findCell(pParent, iIdx))==iChild ); + } +} +#else +# define assertParentIndex(x,y,z) +#endif + +/* +** Move the cursor up to the parent page. +** +** pCur->idx is set to the cell index that contains the pointer +** to the page we are coming from. If we are coming from the +** right-most child page then pCur->idx is set to one more than +** the largest cell index. +*/ +static void moveToParent(BtCursor *pCur){ + assert( cursorHoldsMutex(pCur) ); + assert( pCur->eState==CURSOR_VALID ); + assert( pCur->iPage>0 ); + assert( pCur->apPage[pCur->iPage] ); + + /* UPDATE: It is actually possible for the condition tested by the assert + ** below to be untrue if the database file is corrupt. This can occur if + ** one cursor has modified page pParent while a reference to it is held + ** by a second cursor. Which can only happen if a single page is linked + ** into more than one b-tree structure in a corrupt database. */ +#if 0 + assertParentIndex( + pCur->apPage[pCur->iPage-1], + pCur->aiIdx[pCur->iPage-1], + pCur->apPage[pCur->iPage]->pgno + ); +#endif + testcase( pCur->aiIdx[pCur->iPage-1] > pCur->apPage[pCur->iPage-1]->nCell ); + + releasePage(pCur->apPage[pCur->iPage]); + pCur->iPage--; + pCur->info.nSize = 0; + pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); +} + +/* +** Move the cursor to point to the root page of its b-tree structure. +** +** If the table has a virtual root page, then the cursor is moved to point +** to the virtual root page instead of the actual root page. A table has a +** virtual root page when the actual root page contains no cells and a +** single child page. This can only happen with the table rooted at page 1. +** +** If the b-tree structure is empty, the cursor state is set to +** CURSOR_INVALID. Otherwise, the cursor is set to point to the first +** cell located on the root (or virtual root) page and the cursor state +** is set to CURSOR_VALID. +** +** If this function returns successfully, it may be assumed that the +** page-header flags indicate that the [virtual] root-page is the expected +** kind of b-tree page (i.e. if when opening the cursor the caller did not +** specify a KeyInfo structure the flags byte is set to 0x05 or 0x0D, +** indicating a table b-tree, or if the caller did specify a KeyInfo +** structure the flags byte is set to 0x02 or 0x0A, indicating an index +** b-tree). +*/ +static int moveToRoot(BtCursor *pCur){ + MemPage *pRoot; + int rc = SQLITE_OK; + + assert( cursorHoldsMutex(pCur) ); + assert( CURSOR_INVALID < CURSOR_REQUIRESEEK ); + assert( CURSOR_VALID < CURSOR_REQUIRESEEK ); + assert( CURSOR_FAULT > CURSOR_REQUIRESEEK ); + if( pCur->eState>=CURSOR_REQUIRESEEK ){ + if( pCur->eState==CURSOR_FAULT ){ + assert( pCur->skipNext!=SQLITE_OK ); + return pCur->skipNext; + } + sqlite3BtreeClearCursor(pCur); + } + + if( pCur->iPage>=0 ){ + while( pCur->iPage ) releasePage(pCur->apPage[pCur->iPage--]); + }else if( pCur->pgnoRoot==0 ){ + pCur->eState = CURSOR_INVALID; + return SQLITE_OK; + }else{ + rc = getAndInitPage(pCur->pBtree->pBt, pCur->pgnoRoot, &pCur->apPage[0], + (pCur->curFlags & BTCF_WriteFlag)==0 ? PAGER_GET_READONLY : 0); + if( rc!=SQLITE_OK ){ + pCur->eState = CURSOR_INVALID; + return rc; + } + pCur->iPage = 0; + } + pRoot = pCur->apPage[0]; + assert( pRoot->pgno==pCur->pgnoRoot ); + + /* If pCur->pKeyInfo is not NULL, then the caller that opened this cursor + ** expected to open it on an index b-tree. Otherwise, if pKeyInfo is + ** NULL, the caller expects a table b-tree. If this is not the case, + ** return an SQLITE_CORRUPT error. + ** + ** Earlier versions of SQLite assumed that this test could not fail + ** if the root page was already loaded when this function was called (i.e. + ** if pCur->iPage>=0). But this is not so if the database is corrupted + ** in such a way that page pRoot is linked into a second b-tree table + ** (or the freelist). */ + assert( pRoot->intKey==1 || pRoot->intKey==0 ); + if( pRoot->isInit==0 || (pCur->pKeyInfo==0)!=pRoot->intKey ){ + return SQLITE_CORRUPT_BKPT; + } + + pCur->aiIdx[0] = 0; + pCur->info.nSize = 0; + pCur->curFlags &= ~(BTCF_AtLast|BTCF_ValidNKey|BTCF_ValidOvfl); + + if( pRoot->nCell>0 ){ + pCur->eState = CURSOR_VALID; + }else if( !pRoot->leaf ){ + Pgno subpage; + if( pRoot->pgno!=1 ) return SQLITE_CORRUPT_BKPT; + subpage = get4byte(&pRoot->aData[pRoot->hdrOffset+8]); + pCur->eState = CURSOR_VALID; + rc = moveToChild(pCur, subpage); + }else{ + pCur->eState = CURSOR_INVALID; + } + return rc; +} + +/* +** Move the cursor down to the left-most leaf entry beneath the +** entry to which it is currently pointing. +** +** The left-most leaf is the one with the smallest key - the first +** in ascending order. +*/ +static int moveToLeftmost(BtCursor *pCur){ + Pgno pgno; + int rc = SQLITE_OK; + MemPage *pPage; + + assert( cursorHoldsMutex(pCur) ); + assert( pCur->eState==CURSOR_VALID ); + while( rc==SQLITE_OK && !(pPage = pCur->apPage[pCur->iPage])->leaf ){ + assert( pCur->aiIdx[pCur->iPage]nCell ); + pgno = get4byte(findCell(pPage, pCur->aiIdx[pCur->iPage])); + rc = moveToChild(pCur, pgno); + } + return rc; +} + +/* +** Move the cursor down to the right-most leaf entry beneath the +** page to which it is currently pointing. Notice the difference +** between moveToLeftmost() and moveToRightmost(). moveToLeftmost() +** finds the left-most entry beneath the *entry* whereas moveToRightmost() +** finds the right-most entry beneath the *page*. +** +** The right-most entry is the one with the largest key - the last +** key in ascending order. +*/ +static int moveToRightmost(BtCursor *pCur){ + Pgno pgno; + int rc = SQLITE_OK; + MemPage *pPage = 0; + + assert( cursorHoldsMutex(pCur) ); + assert( pCur->eState==CURSOR_VALID ); + while( rc==SQLITE_OK && !(pPage = pCur->apPage[pCur->iPage])->leaf ){ + pgno = get4byte(&pPage->aData[pPage->hdrOffset+8]); + pCur->aiIdx[pCur->iPage] = pPage->nCell; + rc = moveToChild(pCur, pgno); + } + if( rc==SQLITE_OK ){ + pCur->aiIdx[pCur->iPage] = pPage->nCell-1; + pCur->info.nSize = 0; + pCur->curFlags &= ~BTCF_ValidNKey; + } + return rc; +} + +/* Move the cursor to the first entry in the table. Return SQLITE_OK +** on success. Set *pRes to 0 if the cursor actually points to something +** or set *pRes to 1 if the table is empty. +*/ +SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){ + int rc; + + assert( cursorHoldsMutex(pCur) ); + assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); + rc = moveToRoot(pCur); + if( rc==SQLITE_OK ){ + if( pCur->eState==CURSOR_INVALID ){ + assert( pCur->pgnoRoot==0 || pCur->apPage[pCur->iPage]->nCell==0 ); + *pRes = 1; + }else{ + assert( pCur->apPage[pCur->iPage]->nCell>0 ); + *pRes = 0; + rc = moveToLeftmost(pCur); + } + } + return rc; +} + +/* Move the cursor to the last entry in the table. Return SQLITE_OK +** on success. Set *pRes to 0 if the cursor actually points to something +** or set *pRes to 1 if the table is empty. +*/ +SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor *pCur, int *pRes){ + int rc; + + assert( cursorHoldsMutex(pCur) ); + assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); + + /* If the cursor already points to the last entry, this is a no-op. */ + if( CURSOR_VALID==pCur->eState && (pCur->curFlags & BTCF_AtLast)!=0 ){ +#ifdef SQLITE_DEBUG + /* This block serves to assert() that the cursor really does point + ** to the last entry in the b-tree. */ + int ii; + for(ii=0; iiiPage; ii++){ + assert( pCur->aiIdx[ii]==pCur->apPage[ii]->nCell ); + } + assert( pCur->aiIdx[pCur->iPage]==pCur->apPage[pCur->iPage]->nCell-1 ); + assert( pCur->apPage[pCur->iPage]->leaf ); +#endif + return SQLITE_OK; + } + + rc = moveToRoot(pCur); + if( rc==SQLITE_OK ){ + if( CURSOR_INVALID==pCur->eState ){ + assert( pCur->pgnoRoot==0 || pCur->apPage[pCur->iPage]->nCell==0 ); + *pRes = 1; + }else{ + assert( pCur->eState==CURSOR_VALID ); + *pRes = 0; + rc = moveToRightmost(pCur); + if( rc==SQLITE_OK ){ + pCur->curFlags |= BTCF_AtLast; + }else{ + pCur->curFlags &= ~BTCF_AtLast; + } + + } + } + return rc; +} + +/* Move the cursor so that it points to an entry near the key +** specified by pIdxKey or intKey. Return a success code. +** +** For INTKEY tables, the intKey parameter is used. pIdxKey +** must be NULL. For index tables, pIdxKey is used and intKey +** is ignored. +** +** If an exact match is not found, then the cursor is always +** left pointing at a leaf page which would hold the entry if it +** were present. The cursor might point to an entry that comes +** before or after the key. +** +** An integer is written into *pRes which is the result of +** comparing the key with the entry to which the cursor is +** pointing. The meaning of the integer written into +** *pRes is as follows: +** +** *pRes<0 The cursor is left pointing at an entry that +** is smaller than intKey/pIdxKey or if the table is empty +** and the cursor is therefore left point to nothing. +** +** *pRes==0 The cursor is left pointing at an entry that +** exactly matches intKey/pIdxKey. +** +** *pRes>0 The cursor is left pointing at an entry that +** is larger than intKey/pIdxKey. +** +*/ +SQLITE_PRIVATE int sqlite3BtreeMovetoUnpacked( + BtCursor *pCur, /* The cursor to be moved */ + UnpackedRecord *pIdxKey, /* Unpacked index key */ + i64 intKey, /* The table key */ + int biasRight, /* If true, bias the search to the high end */ + int *pRes /* Write search results here */ +){ + int rc; + RecordCompare xRecordCompare; + + assert( cursorHoldsMutex(pCur) ); + assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); + assert( pRes ); + assert( (pIdxKey==0)==(pCur->pKeyInfo==0) ); + + /* If the cursor is already positioned at the point we are trying + ** to move to, then just return without doing any work */ + if( pCur->eState==CURSOR_VALID && (pCur->curFlags & BTCF_ValidNKey)!=0 + && pCur->apPage[0]->intKey + ){ + if( pCur->info.nKey==intKey ){ + *pRes = 0; + return SQLITE_OK; + } + if( (pCur->curFlags & BTCF_AtLast)!=0 && pCur->info.nKeyisCorrupt = 0; + assert( pIdxKey->default_rc==1 + || pIdxKey->default_rc==0 + || pIdxKey->default_rc==-1 + ); + }else{ + xRecordCompare = 0; /* All keys are integers */ + } + + rc = moveToRoot(pCur); + if( rc ){ + return rc; + } + assert( pCur->pgnoRoot==0 || pCur->apPage[pCur->iPage] ); + assert( pCur->pgnoRoot==0 || pCur->apPage[pCur->iPage]->isInit ); + assert( pCur->eState==CURSOR_INVALID || pCur->apPage[pCur->iPage]->nCell>0 ); + if( pCur->eState==CURSOR_INVALID ){ + *pRes = -1; + assert( pCur->pgnoRoot==0 || pCur->apPage[pCur->iPage]->nCell==0 ); + return SQLITE_OK; + } + assert( pCur->apPage[0]->intKey || pIdxKey ); + for(;;){ + int lwr, upr, idx, c; + Pgno chldPg; + MemPage *pPage = pCur->apPage[pCur->iPage]; + u8 *pCell; /* Pointer to current cell in pPage */ + + /* pPage->nCell must be greater than zero. If this is the root-page + ** the cursor would have been INVALID above and this for(;;) loop + ** not run. If this is not the root-page, then the moveToChild() routine + ** would have already detected db corruption. Similarly, pPage must + ** be the right kind (index or table) of b-tree page. Otherwise + ** a moveToChild() or moveToRoot() call would have detected corruption. */ + assert( pPage->nCell>0 ); + assert( pPage->intKey==(pIdxKey==0) ); + lwr = 0; + upr = pPage->nCell-1; + assert( biasRight==0 || biasRight==1 ); + idx = upr>>(1-biasRight); /* idx = biasRight ? upr : (lwr+upr)/2; */ + pCur->aiIdx[pCur->iPage] = (u16)idx; + if( xRecordCompare==0 ){ + for(;;){ + i64 nCellKey; + pCell = findCell(pPage, idx) + pPage->childPtrSize; + if( pPage->hasData ){ + while( 0x80 <= *(pCell++) ){ + if( pCell>=pPage->aDataEnd ) return SQLITE_CORRUPT_BKPT; + } + } + getVarint(pCell, (u64*)&nCellKey); + if( nCellKeyupr ){ c = -1; break; } + }else if( nCellKey>intKey ){ + upr = idx-1; + if( lwr>upr ){ c = +1; break; } + }else{ + assert( nCellKey==intKey ); + pCur->curFlags |= BTCF_ValidNKey; + pCur->info.nKey = nCellKey; + pCur->aiIdx[pCur->iPage] = (u16)idx; + if( !pPage->leaf ){ + lwr = idx; + goto moveto_next_layer; + }else{ + *pRes = 0; + rc = SQLITE_OK; + goto moveto_finish; + } + } + assert( lwr+upr>=0 ); + idx = (lwr+upr)>>1; /* idx = (lwr+upr)/2; */ + } + }else{ + for(;;){ + int nCell; + pCell = findCell(pPage, idx) + pPage->childPtrSize; + + /* The maximum supported page-size is 65536 bytes. This means that + ** the maximum number of record bytes stored on an index B-Tree + ** page is less than 16384 bytes and may be stored as a 2-byte + ** varint. This information is used to attempt to avoid parsing + ** the entire cell by checking for the cases where the record is + ** stored entirely within the b-tree page by inspecting the first + ** 2 bytes of the cell. + */ + nCell = pCell[0]; + if( nCell<=pPage->max1bytePayload ){ + /* This branch runs if the record-size field of the cell is a + ** single byte varint and the record fits entirely on the main + ** b-tree page. */ + testcase( pCell+nCell+1==pPage->aDataEnd ); + c = xRecordCompare(nCell, (void*)&pCell[1], pIdxKey, 0); + }else if( !(pCell[1] & 0x80) + && (nCell = ((nCell&0x7f)<<7) + pCell[1])<=pPage->maxLocal + ){ + /* The record-size field is a 2 byte varint and the record + ** fits entirely on the main b-tree page. */ + testcase( pCell+nCell+2==pPage->aDataEnd ); + c = xRecordCompare(nCell, (void*)&pCell[2], pIdxKey, 0); + }else{ + /* The record flows over onto one or more overflow pages. In + ** this case the whole cell needs to be parsed, a buffer allocated + ** and accessPayload() used to retrieve the record into the + ** buffer before VdbeRecordCompare() can be called. */ + void *pCellKey; + u8 * const pCellBody = pCell - pPage->childPtrSize; + btreeParseCellPtr(pPage, pCellBody, &pCur->info); + nCell = (int)pCur->info.nKey; + pCellKey = sqlite3Malloc( nCell ); + if( pCellKey==0 ){ + rc = SQLITE_NOMEM; + goto moveto_finish; + } + pCur->aiIdx[pCur->iPage] = (u16)idx; + rc = accessPayload(pCur, 0, nCell, (unsigned char*)pCellKey, 2); + if( rc ){ + sqlite3_free(pCellKey); + goto moveto_finish; + } + c = xRecordCompare(nCell, pCellKey, pIdxKey, 0); + sqlite3_free(pCellKey); + } + assert( pIdxKey->isCorrupt==0 || c==0 ); + if( c<0 ){ + lwr = idx+1; + }else if( c>0 ){ + upr = idx-1; + }else{ + assert( c==0 ); + *pRes = 0; + rc = SQLITE_OK; + pCur->aiIdx[pCur->iPage] = (u16)idx; + if( pIdxKey->isCorrupt ) rc = SQLITE_CORRUPT; + goto moveto_finish; + } + if( lwr>upr ) break; + assert( lwr+upr>=0 ); + idx = (lwr+upr)>>1; /* idx = (lwr+upr)/2 */ + } + } + assert( lwr==upr+1 || (pPage->intKey && !pPage->leaf) ); + assert( pPage->isInit ); + if( pPage->leaf ){ + assert( pCur->aiIdx[pCur->iPage]apPage[pCur->iPage]->nCell ); + pCur->aiIdx[pCur->iPage] = (u16)idx; + *pRes = c; + rc = SQLITE_OK; + goto moveto_finish; + } +moveto_next_layer: + if( lwr>=pPage->nCell ){ + chldPg = get4byte(&pPage->aData[pPage->hdrOffset+8]); + }else{ + chldPg = get4byte(findCell(pPage, lwr)); + } + pCur->aiIdx[pCur->iPage] = (u16)lwr; + rc = moveToChild(pCur, chldPg); + if( rc ) break; + } +moveto_finish: + pCur->info.nSize = 0; + pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); + return rc; +} + + +/* +** Return TRUE if the cursor is not pointing at an entry of the table. +** +** TRUE will be returned after a call to sqlite3BtreeNext() moves +** past the last entry in the table or sqlite3BtreePrev() moves past +** the first entry. TRUE is also returned if the table is empty. +*/ +SQLITE_PRIVATE int sqlite3BtreeEof(BtCursor *pCur){ + /* TODO: What if the cursor is in CURSOR_REQUIRESEEK but all table entries + ** have been deleted? This API will need to change to return an error code + ** as well as the boolean result value. + */ + return (CURSOR_VALID!=pCur->eState); +} + +/* +** Advance the cursor to the next entry in the database. If +** successful then set *pRes=0. If the cursor +** was already pointing to the last entry in the database before +** this routine was called, then set *pRes=1. +** +** The calling function will set *pRes to 0 or 1. The initial *pRes value +** will be 1 if the cursor being stepped corresponds to an SQL index and +** if this routine could have been skipped if that SQL index had been +** a unique index. Otherwise the caller will have set *pRes to zero. +** Zero is the common case. The btree implementation is free to use the +** initial *pRes value as a hint to improve performance, but the current +** SQLite btree implementation does not. (Note that the comdb2 btree +** implementation does use this hint, however.) +*/ +SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor *pCur, int *pRes){ + int rc; + int idx; + MemPage *pPage; + + assert( cursorHoldsMutex(pCur) ); + assert( pRes!=0 ); + assert( *pRes==0 || *pRes==1 ); + assert( pCur->skipNext==0 || pCur->eState!=CURSOR_VALID ); + if( pCur->eState!=CURSOR_VALID ){ + invalidateOverflowCache(pCur); + rc = restoreCursorPosition(pCur); + if( rc!=SQLITE_OK ){ + *pRes = 0; + return rc; + } + if( CURSOR_INVALID==pCur->eState ){ + *pRes = 1; + return SQLITE_OK; + } + if( pCur->skipNext ){ + assert( pCur->eState==CURSOR_VALID || pCur->eState==CURSOR_SKIPNEXT ); + pCur->eState = CURSOR_VALID; + if( pCur->skipNext>0 ){ + pCur->skipNext = 0; + *pRes = 0; + return SQLITE_OK; + } + pCur->skipNext = 0; + } + } + + pPage = pCur->apPage[pCur->iPage]; + idx = ++pCur->aiIdx[pCur->iPage]; + assert( pPage->isInit ); + + /* If the database file is corrupt, it is possible for the value of idx + ** to be invalid here. This can only occur if a second cursor modifies + ** the page while cursor pCur is holding a reference to it. Which can + ** only happen if the database is corrupt in such a way as to link the + ** page into more than one b-tree structure. */ + testcase( idx>pPage->nCell ); + + pCur->info.nSize = 0; + pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); + if( idx>=pPage->nCell ){ + if( !pPage->leaf ){ + rc = moveToChild(pCur, get4byte(&pPage->aData[pPage->hdrOffset+8])); + if( rc ){ + *pRes = 0; + return rc; + } + rc = moveToLeftmost(pCur); + *pRes = 0; + return rc; + } + do{ + if( pCur->iPage==0 ){ + *pRes = 1; + pCur->eState = CURSOR_INVALID; + return SQLITE_OK; + } + moveToParent(pCur); + pPage = pCur->apPage[pCur->iPage]; + }while( pCur->aiIdx[pCur->iPage]>=pPage->nCell ); + *pRes = 0; + if( pPage->intKey ){ + rc = sqlite3BtreeNext(pCur, pRes); + }else{ + rc = SQLITE_OK; + } + return rc; + } + *pRes = 0; + if( pPage->leaf ){ + return SQLITE_OK; + } + rc = moveToLeftmost(pCur); + return rc; +} + + +/* +** Step the cursor to the back to the previous entry in the database. If +** successful then set *pRes=0. If the cursor +** was already pointing to the first entry in the database before +** this routine was called, then set *pRes=1. +** +** The calling function will set *pRes to 0 or 1. The initial *pRes value +** will be 1 if the cursor being stepped corresponds to an SQL index and +** if this routine could have been skipped if that SQL index had been +** a unique index. Otherwise the caller will have set *pRes to zero. +** Zero is the common case. The btree implementation is free to use the +** initial *pRes value as a hint to improve performance, but the current +** SQLite btree implementation does not. (Note that the comdb2 btree +** implementation does use this hint, however.) +*/ +SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor *pCur, int *pRes){ + int rc; + MemPage *pPage; + + assert( cursorHoldsMutex(pCur) ); + assert( pRes!=0 ); + assert( *pRes==0 || *pRes==1 ); + assert( pCur->skipNext==0 || pCur->eState!=CURSOR_VALID ); + pCur->curFlags &= ~(BTCF_AtLast|BTCF_ValidOvfl); + if( pCur->eState!=CURSOR_VALID ){ + if( ALWAYS(pCur->eState>=CURSOR_REQUIRESEEK) ){ + rc = btreeRestoreCursorPosition(pCur); + if( rc!=SQLITE_OK ){ + *pRes = 0; + return rc; + } + } + if( CURSOR_INVALID==pCur->eState ){ + *pRes = 1; + return SQLITE_OK; + } + if( pCur->skipNext ){ + assert( pCur->eState==CURSOR_VALID || pCur->eState==CURSOR_SKIPNEXT ); + pCur->eState = CURSOR_VALID; + if( pCur->skipNext<0 ){ + pCur->skipNext = 0; + *pRes = 0; + return SQLITE_OK; + } + pCur->skipNext = 0; + } + } + + pPage = pCur->apPage[pCur->iPage]; + assert( pPage->isInit ); + if( !pPage->leaf ){ + int idx = pCur->aiIdx[pCur->iPage]; + rc = moveToChild(pCur, get4byte(findCell(pPage, idx))); + if( rc ){ + *pRes = 0; + return rc; + } + rc = moveToRightmost(pCur); + }else{ + while( pCur->aiIdx[pCur->iPage]==0 ){ + if( pCur->iPage==0 ){ + pCur->eState = CURSOR_INVALID; + *pRes = 1; + return SQLITE_OK; + } + moveToParent(pCur); + } + pCur->info.nSize = 0; + pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); + + pCur->aiIdx[pCur->iPage]--; + pPage = pCur->apPage[pCur->iPage]; + if( pPage->intKey && !pPage->leaf ){ + rc = sqlite3BtreePrevious(pCur, pRes); + }else{ + rc = SQLITE_OK; + } + } + *pRes = 0; + return rc; +} + +/* +** Allocate a new page from the database file. +** +** The new page is marked as dirty. (In other words, sqlite3PagerWrite() +** has already been called on the new page.) The new page has also +** been referenced and the calling routine is responsible for calling +** sqlite3PagerUnref() on the new page when it is done. +** +** SQLITE_OK is returned on success. Any other return value indicates +** an error. *ppPage and *pPgno are undefined in the event of an error. +** Do not invoke sqlite3PagerUnref() on *ppPage if an error is returned. +** +** If the "nearby" parameter is not 0, then an effort is made to +** locate a page close to the page number "nearby". This can be used in an +** attempt to keep related pages close to each other in the database file, +** which in turn can make database access faster. +** +** If the eMode parameter is BTALLOC_EXACT and the nearby page exists +** anywhere on the free-list, then it is guaranteed to be returned. If +** eMode is BTALLOC_LT then the page returned will be less than or equal +** to nearby if any such page exists. If eMode is BTALLOC_ANY then there +** are no restrictions on which page is returned. +*/ +static int allocateBtreePage( + BtShared *pBt, /* The btree */ + MemPage **ppPage, /* Store pointer to the allocated page here */ + Pgno *pPgno, /* Store the page number here */ + Pgno nearby, /* Search for a page near this one */ + u8 eMode /* BTALLOC_EXACT, BTALLOC_LT, or BTALLOC_ANY */ +){ + MemPage *pPage1; + int rc; + u32 n; /* Number of pages on the freelist */ + u32 k; /* Number of leaves on the trunk of the freelist */ + MemPage *pTrunk = 0; + MemPage *pPrevTrunk = 0; + Pgno mxPage; /* Total size of the database file */ + + assert( sqlite3_mutex_held(pBt->mutex) ); + assert( eMode==BTALLOC_ANY || (nearby>0 && IfNotOmitAV(pBt->autoVacuum)) ); + pPage1 = pBt->pPage1; + mxPage = btreePagecount(pBt); + n = get4byte(&pPage1->aData[36]); + testcase( n==mxPage-1 ); + if( n>=mxPage ){ + return SQLITE_CORRUPT_BKPT; + } + if( n>0 ){ + /* There are pages on the freelist. Reuse one of those pages. */ + Pgno iTrunk; + u8 searchList = 0; /* If the free-list must be searched for 'nearby' */ + + /* If eMode==BTALLOC_EXACT and a query of the pointer-map + ** shows that the page 'nearby' is somewhere on the free-list, then + ** the entire-list will be searched for that page. + */ +#ifndef SQLITE_OMIT_AUTOVACUUM + if( eMode==BTALLOC_EXACT ){ + if( nearby<=mxPage ){ + u8 eType; + assert( nearby>0 ); + assert( pBt->autoVacuum ); + rc = ptrmapGet(pBt, nearby, &eType, 0); + if( rc ) return rc; + if( eType==PTRMAP_FREEPAGE ){ + searchList = 1; + } + } + }else if( eMode==BTALLOC_LE ){ + searchList = 1; + } +#endif + + /* Decrement the free-list count by 1. Set iTrunk to the index of the + ** first free-list trunk page. iPrevTrunk is initially 1. + */ + rc = sqlite3PagerWrite(pPage1->pDbPage); + if( rc ) return rc; + put4byte(&pPage1->aData[36], n-1); + + /* The code within this loop is run only once if the 'searchList' variable + ** is not true. Otherwise, it runs once for each trunk-page on the + ** free-list until the page 'nearby' is located (eMode==BTALLOC_EXACT) + ** or until a page less than 'nearby' is located (eMode==BTALLOC_LT) + */ + do { + pPrevTrunk = pTrunk; + if( pPrevTrunk ){ + iTrunk = get4byte(&pPrevTrunk->aData[0]); + }else{ + iTrunk = get4byte(&pPage1->aData[32]); + } + testcase( iTrunk==mxPage ); + if( iTrunk>mxPage ){ + rc = SQLITE_CORRUPT_BKPT; + }else{ + rc = btreeGetPage(pBt, iTrunk, &pTrunk, 0); + } + if( rc ){ + pTrunk = 0; + goto end_allocate_page; + } + assert( pTrunk!=0 ); + assert( pTrunk->aData!=0 ); + + k = get4byte(&pTrunk->aData[4]); /* # of leaves on this trunk page */ + if( k==0 && !searchList ){ + /* The trunk has no leaves and the list is not being searched. + ** So extract the trunk page itself and use it as the newly + ** allocated page */ + assert( pPrevTrunk==0 ); + rc = sqlite3PagerWrite(pTrunk->pDbPage); + if( rc ){ + goto end_allocate_page; + } + *pPgno = iTrunk; + memcpy(&pPage1->aData[32], &pTrunk->aData[0], 4); + *ppPage = pTrunk; + pTrunk = 0; + TRACE(("ALLOCATE: %d trunk - %d free pages left\n", *pPgno, n-1)); + }else if( k>(u32)(pBt->usableSize/4 - 2) ){ + /* Value of k is out of range. Database corruption */ + rc = SQLITE_CORRUPT_BKPT; + goto end_allocate_page; +#ifndef SQLITE_OMIT_AUTOVACUUM + }else if( searchList + && (nearby==iTrunk || (iTrunkpDbPage); + if( rc ){ + goto end_allocate_page; + } + if( k==0 ){ + if( !pPrevTrunk ){ + memcpy(&pPage1->aData[32], &pTrunk->aData[0], 4); + }else{ + rc = sqlite3PagerWrite(pPrevTrunk->pDbPage); + if( rc!=SQLITE_OK ){ + goto end_allocate_page; + } + memcpy(&pPrevTrunk->aData[0], &pTrunk->aData[0], 4); + } + }else{ + /* The trunk page is required by the caller but it contains + ** pointers to free-list leaves. The first leaf becomes a trunk + ** page in this case. + */ + MemPage *pNewTrunk; + Pgno iNewTrunk = get4byte(&pTrunk->aData[8]); + if( iNewTrunk>mxPage ){ + rc = SQLITE_CORRUPT_BKPT; + goto end_allocate_page; + } + testcase( iNewTrunk==mxPage ); + rc = btreeGetPage(pBt, iNewTrunk, &pNewTrunk, 0); + if( rc!=SQLITE_OK ){ + goto end_allocate_page; + } + rc = sqlite3PagerWrite(pNewTrunk->pDbPage); + if( rc!=SQLITE_OK ){ + releasePage(pNewTrunk); + goto end_allocate_page; + } + memcpy(&pNewTrunk->aData[0], &pTrunk->aData[0], 4); + put4byte(&pNewTrunk->aData[4], k-1); + memcpy(&pNewTrunk->aData[8], &pTrunk->aData[12], (k-1)*4); + releasePage(pNewTrunk); + if( !pPrevTrunk ){ + assert( sqlite3PagerIswriteable(pPage1->pDbPage) ); + put4byte(&pPage1->aData[32], iNewTrunk); + }else{ + rc = sqlite3PagerWrite(pPrevTrunk->pDbPage); + if( rc ){ + goto end_allocate_page; + } + put4byte(&pPrevTrunk->aData[0], iNewTrunk); + } + } + pTrunk = 0; + TRACE(("ALLOCATE: %d trunk - %d free pages left\n", *pPgno, n-1)); +#endif + }else if( k>0 ){ + /* Extract a leaf from the trunk */ + u32 closest; + Pgno iPage; + unsigned char *aData = pTrunk->aData; + if( nearby>0 ){ + u32 i; + closest = 0; + if( eMode==BTALLOC_LE ){ + for(i=0; imxPage ){ + rc = SQLITE_CORRUPT_BKPT; + goto end_allocate_page; + } + testcase( iPage==mxPage ); + if( !searchList + || (iPage==nearby || (iPagepgno, n-1)); + rc = sqlite3PagerWrite(pTrunk->pDbPage); + if( rc ) goto end_allocate_page; + if( closestpDbPage); + if( rc!=SQLITE_OK ){ + releasePage(*ppPage); + } + } + searchList = 0; + } + } + releasePage(pPrevTrunk); + pPrevTrunk = 0; + }while( searchList ); + }else{ + /* There are no pages on the freelist, so append a new page to the + ** database image. + ** + ** Normally, new pages allocated by this block can be requested from the + ** pager layer with the 'no-content' flag set. This prevents the pager + ** from trying to read the pages content from disk. However, if the + ** current transaction has already run one or more incremental-vacuum + ** steps, then the page we are about to allocate may contain content + ** that is required in the event of a rollback. In this case, do + ** not set the no-content flag. This causes the pager to load and journal + ** the current page content before overwriting it. + ** + ** Note that the pager will not actually attempt to load or journal + ** content for any page that really does lie past the end of the database + ** file on disk. So the effects of disabling the no-content optimization + ** here are confined to those pages that lie between the end of the + ** database image and the end of the database file. + */ + int bNoContent = (0==IfNotOmitAV(pBt->bDoTruncate)) ? PAGER_GET_NOCONTENT : 0; + + rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); + if( rc ) return rc; + pBt->nPage++; + if( pBt->nPage==PENDING_BYTE_PAGE(pBt) ) pBt->nPage++; + +#ifndef SQLITE_OMIT_AUTOVACUUM + if( pBt->autoVacuum && PTRMAP_ISPAGE(pBt, pBt->nPage) ){ + /* If *pPgno refers to a pointer-map page, allocate two new pages + ** at the end of the file instead of one. The first allocated page + ** becomes a new pointer-map page, the second is used by the caller. + */ + MemPage *pPg = 0; + TRACE(("ALLOCATE: %d from end of file (pointer-map page)\n", pBt->nPage)); + assert( pBt->nPage!=PENDING_BYTE_PAGE(pBt) ); + rc = btreeGetPage(pBt, pBt->nPage, &pPg, bNoContent); + if( rc==SQLITE_OK ){ + rc = sqlite3PagerWrite(pPg->pDbPage); + releasePage(pPg); + } + if( rc ) return rc; + pBt->nPage++; + if( pBt->nPage==PENDING_BYTE_PAGE(pBt) ){ pBt->nPage++; } + } +#endif + put4byte(28 + (u8*)pBt->pPage1->aData, pBt->nPage); + *pPgno = pBt->nPage; + + assert( *pPgno!=PENDING_BYTE_PAGE(pBt) ); + rc = btreeGetPage(pBt, *pPgno, ppPage, bNoContent); + if( rc ) return rc; + rc = sqlite3PagerWrite((*ppPage)->pDbPage); + if( rc!=SQLITE_OK ){ + releasePage(*ppPage); + } + TRACE(("ALLOCATE: %d from end of file\n", *pPgno)); + } + + assert( *pPgno!=PENDING_BYTE_PAGE(pBt) ); + +end_allocate_page: + releasePage(pTrunk); + releasePage(pPrevTrunk); + if( rc==SQLITE_OK ){ + if( sqlite3PagerPageRefcount((*ppPage)->pDbPage)>1 ){ + releasePage(*ppPage); + *ppPage = 0; + return SQLITE_CORRUPT_BKPT; + } + (*ppPage)->isInit = 0; + }else{ + *ppPage = 0; + } + assert( rc!=SQLITE_OK || sqlite3PagerIswriteable((*ppPage)->pDbPage) ); + return rc; +} + +/* +** This function is used to add page iPage to the database file free-list. +** It is assumed that the page is not already a part of the free-list. +** +** The value passed as the second argument to this function is optional. +** If the caller happens to have a pointer to the MemPage object +** corresponding to page iPage handy, it may pass it as the second value. +** Otherwise, it may pass NULL. +** +** If a pointer to a MemPage object is passed as the second argument, +** its reference count is not altered by this function. +*/ +static int freePage2(BtShared *pBt, MemPage *pMemPage, Pgno iPage){ + MemPage *pTrunk = 0; /* Free-list trunk page */ + Pgno iTrunk = 0; /* Page number of free-list trunk page */ + MemPage *pPage1 = pBt->pPage1; /* Local reference to page 1 */ + MemPage *pPage; /* Page being freed. May be NULL. */ + int rc; /* Return Code */ + int nFree; /* Initial number of pages on free-list */ + + assert( sqlite3_mutex_held(pBt->mutex) ); + assert( iPage>1 ); + assert( !pMemPage || pMemPage->pgno==iPage ); + + if( pMemPage ){ + pPage = pMemPage; + sqlite3PagerRef(pPage->pDbPage); + }else{ + pPage = btreePageLookup(pBt, iPage); + } + + /* Increment the free page count on pPage1 */ + rc = sqlite3PagerWrite(pPage1->pDbPage); + if( rc ) goto freepage_out; + nFree = get4byte(&pPage1->aData[36]); + put4byte(&pPage1->aData[36], nFree+1); + + if( pBt->btsFlags & BTS_SECURE_DELETE ){ + /* If the secure_delete option is enabled, then + ** always fully overwrite deleted information with zeros. + */ + if( (!pPage && ((rc = btreeGetPage(pBt, iPage, &pPage, 0))!=0) ) + || ((rc = sqlite3PagerWrite(pPage->pDbPage))!=0) + ){ + goto freepage_out; + } + memset(pPage->aData, 0, pPage->pBt->pageSize); + } + + /* If the database supports auto-vacuum, write an entry in the pointer-map + ** to indicate that the page is free. + */ + if( ISAUTOVACUUM ){ + ptrmapPut(pBt, iPage, PTRMAP_FREEPAGE, 0, &rc); + if( rc ) goto freepage_out; + } + + /* Now manipulate the actual database free-list structure. There are two + ** possibilities. If the free-list is currently empty, or if the first + ** trunk page in the free-list is full, then this page will become a + ** new free-list trunk page. Otherwise, it will become a leaf of the + ** first trunk page in the current free-list. This block tests if it + ** is possible to add the page as a new free-list leaf. + */ + if( nFree!=0 ){ + u32 nLeaf; /* Initial number of leaf cells on trunk page */ + + iTrunk = get4byte(&pPage1->aData[32]); + rc = btreeGetPage(pBt, iTrunk, &pTrunk, 0); + if( rc!=SQLITE_OK ){ + goto freepage_out; + } + + nLeaf = get4byte(&pTrunk->aData[4]); + assert( pBt->usableSize>32 ); + if( nLeaf > (u32)pBt->usableSize/4 - 2 ){ + rc = SQLITE_CORRUPT_BKPT; + goto freepage_out; + } + if( nLeaf < (u32)pBt->usableSize/4 - 8 ){ + /* In this case there is room on the trunk page to insert the page + ** being freed as a new leaf. + ** + ** Note that the trunk page is not really full until it contains + ** usableSize/4 - 2 entries, not usableSize/4 - 8 entries as we have + ** coded. But due to a coding error in versions of SQLite prior to + ** 3.6.0, databases with freelist trunk pages holding more than + ** usableSize/4 - 8 entries will be reported as corrupt. In order + ** to maintain backwards compatibility with older versions of SQLite, + ** we will continue to restrict the number of entries to usableSize/4 - 8 + ** for now. At some point in the future (once everyone has upgraded + ** to 3.6.0 or later) we should consider fixing the conditional above + ** to read "usableSize/4-2" instead of "usableSize/4-8". + */ + rc = sqlite3PagerWrite(pTrunk->pDbPage); + if( rc==SQLITE_OK ){ + put4byte(&pTrunk->aData[4], nLeaf+1); + put4byte(&pTrunk->aData[8+nLeaf*4], iPage); + if( pPage && (pBt->btsFlags & BTS_SECURE_DELETE)==0 ){ + sqlite3PagerDontWrite(pPage->pDbPage); + } + rc = btreeSetHasContent(pBt, iPage); + } + TRACE(("FREE-PAGE: %d leaf on trunk page %d\n",pPage->pgno,pTrunk->pgno)); + goto freepage_out; + } + } + + /* If control flows to this point, then it was not possible to add the + ** the page being freed as a leaf page of the first trunk in the free-list. + ** Possibly because the free-list is empty, or possibly because the + ** first trunk in the free-list is full. Either way, the page being freed + ** will become the new first trunk page in the free-list. + */ + if( pPage==0 && SQLITE_OK!=(rc = btreeGetPage(pBt, iPage, &pPage, 0)) ){ + goto freepage_out; + } + rc = sqlite3PagerWrite(pPage->pDbPage); + if( rc!=SQLITE_OK ){ + goto freepage_out; + } + put4byte(pPage->aData, iTrunk); + put4byte(&pPage->aData[4], 0); + put4byte(&pPage1->aData[32], iPage); + TRACE(("FREE-PAGE: %d new trunk page replacing %d\n", pPage->pgno, iTrunk)); + +freepage_out: + if( pPage ){ + pPage->isInit = 0; + } + releasePage(pPage); + releasePage(pTrunk); + return rc; +} +static void freePage(MemPage *pPage, int *pRC){ + if( (*pRC)==SQLITE_OK ){ + *pRC = freePage2(pPage->pBt, pPage, pPage->pgno); + } +} + +/* +** Free any overflow pages associated with the given Cell. +*/ +static int clearCell(MemPage *pPage, unsigned char *pCell){ + BtShared *pBt = pPage->pBt; + CellInfo info; + Pgno ovflPgno; + int rc; + int nOvfl; + u32 ovflPageSize; + + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + btreeParseCellPtr(pPage, pCell, &info); + if( info.iOverflow==0 ){ + return SQLITE_OK; /* No overflow pages. Return without doing anything */ + } + if( pCell+info.iOverflow+3 > pPage->aData+pPage->maskPage ){ + return SQLITE_CORRUPT_BKPT; /* Cell extends past end of page */ + } + ovflPgno = get4byte(&pCell[info.iOverflow]); + assert( pBt->usableSize > 4 ); + ovflPageSize = pBt->usableSize - 4; + nOvfl = (info.nPayload - info.nLocal + ovflPageSize - 1)/ovflPageSize; + assert( ovflPgno==0 || nOvfl>0 ); + while( nOvfl-- ){ + Pgno iNext = 0; + MemPage *pOvfl = 0; + if( ovflPgno<2 || ovflPgno>btreePagecount(pBt) ){ + /* 0 is not a legal page number and page 1 cannot be an + ** overflow page. Therefore if ovflPgno<2 or past the end of the + ** file the database must be corrupt. */ + return SQLITE_CORRUPT_BKPT; + } + if( nOvfl ){ + rc = getOverflowPage(pBt, ovflPgno, &pOvfl, &iNext); + if( rc ) return rc; + } + + if( ( pOvfl || ((pOvfl = btreePageLookup(pBt, ovflPgno))!=0) ) + && sqlite3PagerPageRefcount(pOvfl->pDbPage)!=1 + ){ + /* There is no reason any cursor should have an outstanding reference + ** to an overflow page belonging to a cell that is being deleted/updated. + ** So if there exists more than one reference to this page, then it + ** must not really be an overflow page and the database must be corrupt. + ** It is helpful to detect this before calling freePage2(), as + ** freePage2() may zero the page contents if secure-delete mode is + ** enabled. If this 'overflow' page happens to be a page that the + ** caller is iterating through or using in some other way, this + ** can be problematic. + */ + rc = SQLITE_CORRUPT_BKPT; + }else{ + rc = freePage2(pBt, pOvfl, ovflPgno); + } + + if( pOvfl ){ + sqlite3PagerUnref(pOvfl->pDbPage); + } + if( rc ) return rc; + ovflPgno = iNext; + } + return SQLITE_OK; +} + +/* +** Create the byte sequence used to represent a cell on page pPage +** and write that byte sequence into pCell[]. Overflow pages are +** allocated and filled in as necessary. The calling procedure +** is responsible for making sure sufficient space has been allocated +** for pCell[]. +** +** Note that pCell does not necessary need to point to the pPage->aData +** area. pCell might point to some temporary storage. The cell will +** be constructed in this temporary area then copied into pPage->aData +** later. +*/ +static int fillInCell( + MemPage *pPage, /* The page that contains the cell */ + unsigned char *pCell, /* Complete text of the cell */ + const void *pKey, i64 nKey, /* The key */ + const void *pData,int nData, /* The data */ + int nZero, /* Extra zero bytes to append to pData */ + int *pnSize /* Write cell size here */ +){ + int nPayload; + const u8 *pSrc; + int nSrc, n, rc; + int spaceLeft; + MemPage *pOvfl = 0; + MemPage *pToRelease = 0; + unsigned char *pPrior; + unsigned char *pPayload; + BtShared *pBt = pPage->pBt; + Pgno pgnoOvfl = 0; + int nHeader; + CellInfo info; + + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + + /* pPage is not necessarily writeable since pCell might be auxiliary + ** buffer space that is separate from the pPage buffer area */ + assert( pCellaData || pCell>=&pPage->aData[pBt->pageSize] + || sqlite3PagerIswriteable(pPage->pDbPage) ); + + /* Fill in the header. */ + nHeader = 0; + if( !pPage->leaf ){ + nHeader += 4; + } + if( pPage->hasData ){ + nHeader += putVarint32(&pCell[nHeader], nData+nZero); + }else{ + nData = nZero = 0; + } + nHeader += putVarint(&pCell[nHeader], *(u64*)&nKey); + btreeParseCellPtr(pPage, pCell, &info); + assert( info.nHeader==nHeader ); + assert( info.nKey==nKey ); + assert( info.nData==(u32)(nData+nZero) ); + + /* Fill in the payload */ + nPayload = nData + nZero; + if( pPage->intKey ){ + pSrc = pData; + nSrc = nData; + nData = 0; + }else{ + if( NEVER(nKey>0x7fffffff || pKey==0) ){ + return SQLITE_CORRUPT_BKPT; + } + nPayload += (int)nKey; + pSrc = pKey; + nSrc = (int)nKey; + } + *pnSize = info.nSize; + spaceLeft = info.nLocal; + pPayload = &pCell[nHeader]; + pPrior = &pCell[info.iOverflow]; + + while( nPayload>0 ){ + if( spaceLeft==0 ){ +#ifndef SQLITE_OMIT_AUTOVACUUM + Pgno pgnoPtrmap = pgnoOvfl; /* Overflow page pointer-map entry page */ + if( pBt->autoVacuum ){ + do{ + pgnoOvfl++; + } while( + PTRMAP_ISPAGE(pBt, pgnoOvfl) || pgnoOvfl==PENDING_BYTE_PAGE(pBt) + ); + } +#endif + rc = allocateBtreePage(pBt, &pOvfl, &pgnoOvfl, pgnoOvfl, 0); +#ifndef SQLITE_OMIT_AUTOVACUUM + /* If the database supports auto-vacuum, and the second or subsequent + ** overflow page is being allocated, add an entry to the pointer-map + ** for that page now. + ** + ** If this is the first overflow page, then write a partial entry + ** to the pointer-map. If we write nothing to this pointer-map slot, + ** then the optimistic overflow chain processing in clearCell() + ** may misinterpret the uninitialized values and delete the + ** wrong pages from the database. + */ + if( pBt->autoVacuum && rc==SQLITE_OK ){ + u8 eType = (pgnoPtrmap?PTRMAP_OVERFLOW2:PTRMAP_OVERFLOW1); + ptrmapPut(pBt, pgnoOvfl, eType, pgnoPtrmap, &rc); + if( rc ){ + releasePage(pOvfl); + } + } +#endif + if( rc ){ + releasePage(pToRelease); + return rc; + } + + /* If pToRelease is not zero than pPrior points into the data area + ** of pToRelease. Make sure pToRelease is still writeable. */ + assert( pToRelease==0 || sqlite3PagerIswriteable(pToRelease->pDbPage) ); + + /* If pPrior is part of the data area of pPage, then make sure pPage + ** is still writeable */ + assert( pPrioraData || pPrior>=&pPage->aData[pBt->pageSize] + || sqlite3PagerIswriteable(pPage->pDbPage) ); + + put4byte(pPrior, pgnoOvfl); + releasePage(pToRelease); + pToRelease = pOvfl; + pPrior = pOvfl->aData; + put4byte(pPrior, 0); + pPayload = &pOvfl->aData[4]; + spaceLeft = pBt->usableSize - 4; + } + n = nPayload; + if( n>spaceLeft ) n = spaceLeft; + + /* If pToRelease is not zero than pPayload points into the data area + ** of pToRelease. Make sure pToRelease is still writeable. */ + assert( pToRelease==0 || sqlite3PagerIswriteable(pToRelease->pDbPage) ); + + /* If pPayload is part of the data area of pPage, then make sure pPage + ** is still writeable */ + assert( pPayloadaData || pPayload>=&pPage->aData[pBt->pageSize] + || sqlite3PagerIswriteable(pPage->pDbPage) ); + + if( nSrc>0 ){ + if( n>nSrc ) n = nSrc; + assert( pSrc ); + memcpy(pPayload, pSrc, n); + }else{ + memset(pPayload, 0, n); + } + nPayload -= n; + pPayload += n; + pSrc += n; + nSrc -= n; + spaceLeft -= n; + if( nSrc==0 ){ + nSrc = nData; + pSrc = pData; + } + } + releasePage(pToRelease); + return SQLITE_OK; +} + +/* +** Remove the i-th cell from pPage. This routine effects pPage only. +** The cell content is not freed or deallocated. It is assumed that +** the cell content has been copied someplace else. This routine just +** removes the reference to the cell from pPage. +** +** "sz" must be the number of bytes in the cell. +*/ +static void dropCell(MemPage *pPage, int idx, int sz, int *pRC){ + u32 pc; /* Offset to cell content of cell being deleted */ + u8 *data; /* pPage->aData */ + u8 *ptr; /* Used to move bytes around within data[] */ + int rc; /* The return code */ + int hdr; /* Beginning of the header. 0 most pages. 100 page 1 */ + + if( *pRC ) return; + + assert( idx>=0 && idxnCell ); + assert( sz==cellSize(pPage, idx) ); + assert( sqlite3PagerIswriteable(pPage->pDbPage) ); + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + data = pPage->aData; + ptr = &pPage->aCellIdx[2*idx]; + pc = get2byte(ptr); + hdr = pPage->hdrOffset; + testcase( pc==get2byte(&data[hdr+5]) ); + testcase( pc+sz==pPage->pBt->usableSize ); + if( pc < (u32)get2byte(&data[hdr+5]) || pc+sz > pPage->pBt->usableSize ){ + *pRC = SQLITE_CORRUPT_BKPT; + return; + } + rc = freeSpace(pPage, pc, sz); + if( rc ){ + *pRC = rc; + return; + } + pPage->nCell--; + memmove(ptr, ptr+2, 2*(pPage->nCell - idx)); + put2byte(&data[hdr+3], pPage->nCell); + pPage->nFree += 2; +} + +/* +** Insert a new cell on pPage at cell index "i". pCell points to the +** content of the cell. +** +** If the cell content will fit on the page, then put it there. If it +** will not fit, then make a copy of the cell content into pTemp if +** pTemp is not null. Regardless of pTemp, allocate a new entry +** in pPage->apOvfl[] and make it point to the cell content (either +** in pTemp or the original pCell) and also record its index. +** Allocating a new entry in pPage->aCell[] implies that +** pPage->nOverflow is incremented. +** +** If nSkip is non-zero, then do not copy the first nSkip bytes of the +** cell. The caller will overwrite them after this function returns. If +** nSkip is non-zero, then pCell may not point to an invalid memory location +** (but pCell+nSkip is always valid). +*/ +static void insertCell( + MemPage *pPage, /* Page into which we are copying */ + int i, /* New cell becomes the i-th cell of the page */ + u8 *pCell, /* Content of the new cell */ + int sz, /* Bytes of content in pCell */ + u8 *pTemp, /* Temp storage space for pCell, if needed */ + Pgno iChild, /* If non-zero, replace first 4 bytes with this value */ + int *pRC /* Read and write return code from here */ +){ + int idx = 0; /* Where to write new cell content in data[] */ + int j; /* Loop counter */ + int end; /* First byte past the last cell pointer in data[] */ + int ins; /* Index in data[] where new cell pointer is inserted */ + int cellOffset; /* Address of first cell pointer in data[] */ + u8 *data; /* The content of the whole page */ + int nSkip = (iChild ? 4 : 0); + + if( *pRC ) return; + + assert( i>=0 && i<=pPage->nCell+pPage->nOverflow ); + assert( pPage->nCell<=MX_CELL(pPage->pBt) && MX_CELL(pPage->pBt)<=10921 ); + assert( pPage->nOverflow<=ArraySize(pPage->apOvfl) ); + assert( ArraySize(pPage->apOvfl)==ArraySize(pPage->aiOvfl) ); + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + /* The cell should normally be sized correctly. However, when moving a + ** malformed cell from a leaf page to an interior page, if the cell size + ** wanted to be less than 4 but got rounded up to 4 on the leaf, then size + ** might be less than 8 (leaf-size + pointer) on the interior node. Hence + ** the term after the || in the following assert(). */ + assert( sz==cellSizePtr(pPage, pCell) || (sz==8 && iChild>0) ); + if( pPage->nOverflow || sz+2>pPage->nFree ){ + if( pTemp ){ + memcpy(pTemp+nSkip, pCell+nSkip, sz-nSkip); + pCell = pTemp; + } + if( iChild ){ + put4byte(pCell, iChild); + } + j = pPage->nOverflow++; + assert( j<(int)(sizeof(pPage->apOvfl)/sizeof(pPage->apOvfl[0])) ); + pPage->apOvfl[j] = pCell; + pPage->aiOvfl[j] = (u16)i; + }else{ + int rc = sqlite3PagerWrite(pPage->pDbPage); + if( rc!=SQLITE_OK ){ + *pRC = rc; + return; + } + assert( sqlite3PagerIswriteable(pPage->pDbPage) ); + data = pPage->aData; + cellOffset = pPage->cellOffset; + end = cellOffset + 2*pPage->nCell; + ins = cellOffset + 2*i; + rc = allocateSpace(pPage, sz, &idx); + if( rc ){ *pRC = rc; return; } + /* The allocateSpace() routine guarantees the following two properties + ** if it returns success */ + assert( idx >= end+2 ); + assert( idx+sz <= (int)pPage->pBt->usableSize ); + pPage->nCell++; + pPage->nFree -= (u16)(2 + sz); + memcpy(&data[idx+nSkip], pCell+nSkip, sz-nSkip); + if( iChild ){ + put4byte(&data[idx], iChild); + } + memmove(&data[ins+2], &data[ins], end-ins); + put2byte(&data[ins], idx); + put2byte(&data[pPage->hdrOffset+3], pPage->nCell); +#ifndef SQLITE_OMIT_AUTOVACUUM + if( pPage->pBt->autoVacuum ){ + /* The cell may contain a pointer to an overflow page. If so, write + ** the entry for the overflow page into the pointer map. + */ + ptrmapPutOvflPtr(pPage, pCell, pRC); + } +#endif + } +} + +/* +** Add a list of cells to a page. The page should be initially empty. +** The cells are guaranteed to fit on the page. +*/ +static void assemblePage( + MemPage *pPage, /* The page to be assemblied */ + int nCell, /* The number of cells to add to this page */ + u8 **apCell, /* Pointers to cell bodies */ + u16 *aSize /* Sizes of the cells */ +){ + int i; /* Loop counter */ + u8 *pCellptr; /* Address of next cell pointer */ + int cellbody; /* Address of next cell body */ + u8 * const data = pPage->aData; /* Pointer to data for pPage */ + const int hdr = pPage->hdrOffset; /* Offset of header on pPage */ + const int nUsable = pPage->pBt->usableSize; /* Usable size of page */ + + assert( pPage->nOverflow==0 ); + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + assert( nCell>=0 && nCell<=(int)MX_CELL(pPage->pBt) + && (int)MX_CELL(pPage->pBt)<=10921); + assert( sqlite3PagerIswriteable(pPage->pDbPage) ); + + /* Check that the page has just been zeroed by zeroPage() */ + assert( pPage->nCell==0 ); + assert( get2byteNotZero(&data[hdr+5])==nUsable ); + + pCellptr = &pPage->aCellIdx[nCell*2]; + cellbody = nUsable; + for(i=nCell-1; i>=0; i--){ + u16 sz = aSize[i]; + pCellptr -= 2; + cellbody -= sz; + put2byte(pCellptr, cellbody); + memcpy(&data[cellbody], apCell[i], sz); + } + put2byte(&data[hdr+3], nCell); + put2byte(&data[hdr+5], cellbody); + pPage->nFree -= (nCell*2 + nUsable - cellbody); + pPage->nCell = (u16)nCell; +} + +/* +** The following parameters determine how many adjacent pages get involved +** in a balancing operation. NN is the number of neighbors on either side +** of the page that participate in the balancing operation. NB is the +** total number of pages that participate, including the target page and +** NN neighbors on either side. +** +** The minimum value of NN is 1 (of course). Increasing NN above 1 +** (to 2 or 3) gives a modest improvement in SELECT and DELETE performance +** in exchange for a larger degradation in INSERT and UPDATE performance. +** The value of NN appears to give the best results overall. +*/ +#define NN 1 /* Number of neighbors on either side of pPage */ +#define NB (NN*2+1) /* Total pages involved in the balance */ + + +#ifndef SQLITE_OMIT_QUICKBALANCE +/* +** This version of balance() handles the common special case where +** a new entry is being inserted on the extreme right-end of the +** tree, in other words, when the new entry will become the largest +** entry in the tree. +** +** Instead of trying to balance the 3 right-most leaf pages, just add +** a new page to the right-hand side and put the one new entry in +** that page. This leaves the right side of the tree somewhat +** unbalanced. But odds are that we will be inserting new entries +** at the end soon afterwards so the nearly empty page will quickly +** fill up. On average. +** +** pPage is the leaf page which is the right-most page in the tree. +** pParent is its parent. pPage must have a single overflow entry +** which is also the right-most entry on the page. +** +** The pSpace buffer is used to store a temporary copy of the divider +** cell that will be inserted into pParent. Such a cell consists of a 4 +** byte page number followed by a variable length integer. In other +** words, at most 13 bytes. Hence the pSpace buffer must be at +** least 13 bytes in size. +*/ +static int balance_quick(MemPage *pParent, MemPage *pPage, u8 *pSpace){ + BtShared *const pBt = pPage->pBt; /* B-Tree Database */ + MemPage *pNew; /* Newly allocated page */ + int rc; /* Return Code */ + Pgno pgnoNew; /* Page number of pNew */ + + assert( sqlite3_mutex_held(pPage->pBt->mutex) ); + assert( sqlite3PagerIswriteable(pParent->pDbPage) ); + assert( pPage->nOverflow==1 ); + + /* This error condition is now caught prior to reaching this function */ + if( pPage->nCell==0 ) return SQLITE_CORRUPT_BKPT; + + /* Allocate a new page. This page will become the right-sibling of + ** pPage. Make the parent page writable, so that the new divider cell + ** may be inserted. If both these operations are successful, proceed. + */ + rc = allocateBtreePage(pBt, &pNew, &pgnoNew, 0, 0); + + if( rc==SQLITE_OK ){ + + u8 *pOut = &pSpace[4]; + u8 *pCell = pPage->apOvfl[0]; + u16 szCell = cellSizePtr(pPage, pCell); + u8 *pStop; + + assert( sqlite3PagerIswriteable(pNew->pDbPage) ); + assert( pPage->aData[0]==(PTF_INTKEY|PTF_LEAFDATA|PTF_LEAF) ); + zeroPage(pNew, PTF_INTKEY|PTF_LEAFDATA|PTF_LEAF); + assemblePage(pNew, 1, &pCell, &szCell); + + /* If this is an auto-vacuum database, update the pointer map + ** with entries for the new page, and any pointer from the + ** cell on the page to an overflow page. If either of these + ** operations fails, the return code is set, but the contents + ** of the parent page are still manipulated by thh code below. + ** That is Ok, at this point the parent page is guaranteed to + ** be marked as dirty. Returning an error code will cause a + ** rollback, undoing any changes made to the parent page. + */ + if( ISAUTOVACUUM ){ + ptrmapPut(pBt, pgnoNew, PTRMAP_BTREE, pParent->pgno, &rc); + if( szCell>pNew->minLocal ){ + ptrmapPutOvflPtr(pNew, pCell, &rc); + } + } + + /* Create a divider cell to insert into pParent. The divider cell + ** consists of a 4-byte page number (the page number of pPage) and + ** a variable length key value (which must be the same value as the + ** largest key on pPage). + ** + ** To find the largest key value on pPage, first find the right-most + ** cell on pPage. The first two fields of this cell are the + ** record-length (a variable length integer at most 32-bits in size) + ** and the key value (a variable length integer, may have any value). + ** The first of the while(...) loops below skips over the record-length + ** field. The second while(...) loop copies the key value from the + ** cell on pPage into the pSpace buffer. + */ + pCell = findCell(pPage, pPage->nCell-1); + pStop = &pCell[9]; + while( (*(pCell++)&0x80) && pCellnCell, pSpace, (int)(pOut-pSpace), + 0, pPage->pgno, &rc); + + /* Set the right-child pointer of pParent to point to the new page. */ + put4byte(&pParent->aData[pParent->hdrOffset+8], pgnoNew); + + /* Release the reference to the new page. */ + releasePage(pNew); + } + + return rc; +} +#endif /* SQLITE_OMIT_QUICKBALANCE */ + +#if 0 +/* +** This function does not contribute anything to the operation of SQLite. +** it is sometimes activated temporarily while debugging code responsible +** for setting pointer-map entries. +*/ +static int ptrmapCheckPages(MemPage **apPage, int nPage){ + int i, j; + for(i=0; ipBt; + assert( pPage->isInit ); + + for(j=0; jnCell; j++){ + CellInfo info; + u8 *z; + + z = findCell(pPage, j); + btreeParseCellPtr(pPage, z, &info); + if( info.iOverflow ){ + Pgno ovfl = get4byte(&z[info.iOverflow]); + ptrmapGet(pBt, ovfl, &e, &n); + assert( n==pPage->pgno && e==PTRMAP_OVERFLOW1 ); + } + if( !pPage->leaf ){ + Pgno child = get4byte(z); + ptrmapGet(pBt, child, &e, &n); + assert( n==pPage->pgno && e==PTRMAP_BTREE ); + } + } + if( !pPage->leaf ){ + Pgno child = get4byte(&pPage->aData[pPage->hdrOffset+8]); + ptrmapGet(pBt, child, &e, &n); + assert( n==pPage->pgno && e==PTRMAP_BTREE ); + } + } + return 1; +} +#endif + +/* +** This function is used to copy the contents of the b-tree node stored +** on page pFrom to page pTo. If page pFrom was not a leaf page, then +** the pointer-map entries for each child page are updated so that the +** parent page stored in the pointer map is page pTo. If pFrom contained +** any cells with overflow page pointers, then the corresponding pointer +** map entries are also updated so that the parent page is page pTo. +** +** If pFrom is currently carrying any overflow cells (entries in the +** MemPage.apOvfl[] array), they are not copied to pTo. +** +** Before returning, page pTo is reinitialized using btreeInitPage(). +** +** The performance of this function is not critical. It is only used by +** the balance_shallower() and balance_deeper() procedures, neither of +** which are called often under normal circumstances. +*/ +static void copyNodeContent(MemPage *pFrom, MemPage *pTo, int *pRC){ + if( (*pRC)==SQLITE_OK ){ + BtShared * const pBt = pFrom->pBt; + u8 * const aFrom = pFrom->aData; + u8 * const aTo = pTo->aData; + int const iFromHdr = pFrom->hdrOffset; + int const iToHdr = ((pTo->pgno==1) ? 100 : 0); + int rc; + int iData; + + + assert( pFrom->isInit ); + assert( pFrom->nFree>=iToHdr ); + assert( get2byte(&aFrom[iFromHdr+5]) <= (int)pBt->usableSize ); + + /* Copy the b-tree node content from page pFrom to page pTo. */ + iData = get2byte(&aFrom[iFromHdr+5]); + memcpy(&aTo[iData], &aFrom[iData], pBt->usableSize-iData); + memcpy(&aTo[iToHdr], &aFrom[iFromHdr], pFrom->cellOffset + 2*pFrom->nCell); + + /* Reinitialize page pTo so that the contents of the MemPage structure + ** match the new data. The initialization of pTo can actually fail under + ** fairly obscure circumstances, even though it is a copy of initialized + ** page pFrom. + */ + pTo->isInit = 0; + rc = btreeInitPage(pTo); + if( rc!=SQLITE_OK ){ + *pRC = rc; + return; + } + + /* If this is an auto-vacuum database, update the pointer-map entries + ** for any b-tree or overflow pages that pTo now contains the pointers to. + */ + if( ISAUTOVACUUM ){ + *pRC = setChildPtrmaps(pTo); + } + } +} + +/* +** This routine redistributes cells on the iParentIdx'th child of pParent +** (hereafter "the page") and up to 2 siblings so that all pages have about the +** same amount of free space. Usually a single sibling on either side of the +** page are used in the balancing, though both siblings might come from one +** side if the page is the first or last child of its parent. If the page +** has fewer than 2 siblings (something which can only happen if the page +** is a root page or a child of a root page) then all available siblings +** participate in the balancing. +** +** The number of siblings of the page might be increased or decreased by +** one or two in an effort to keep pages nearly full but not over full. +** +** Note that when this routine is called, some of the cells on the page +** might not actually be stored in MemPage.aData[]. This can happen +** if the page is overfull. This routine ensures that all cells allocated +** to the page and its siblings fit into MemPage.aData[] before returning. +** +** In the course of balancing the page and its siblings, cells may be +** inserted into or removed from the parent page (pParent). Doing so +** may cause the parent page to become overfull or underfull. If this +** happens, it is the responsibility of the caller to invoke the correct +** balancing routine to fix this problem (see the balance() routine). +** +** If this routine fails for any reason, it might leave the database +** in a corrupted state. So if this routine fails, the database should +** be rolled back. +** +** The third argument to this function, aOvflSpace, is a pointer to a +** buffer big enough to hold one page. If while inserting cells into the parent +** page (pParent) the parent page becomes overfull, this buffer is +** used to store the parent's overflow cells. Because this function inserts +** a maximum of four divider cells into the parent page, and the maximum +** size of a cell stored within an internal node is always less than 1/4 +** of the page-size, the aOvflSpace[] buffer is guaranteed to be large +** enough for all overflow cells. +** +** If aOvflSpace is set to a null pointer, this function returns +** SQLITE_NOMEM. +*/ +#if defined(_MSC_VER) && _MSC_VER >= 1700 && defined(_M_ARM) +#pragma optimize("", off) +#endif +static int balance_nonroot( + MemPage *pParent, /* Parent page of siblings being balanced */ + int iParentIdx, /* Index of "the page" in pParent */ + u8 *aOvflSpace, /* page-size bytes of space for parent ovfl */ + int isRoot, /* True if pParent is a root-page */ + int bBulk /* True if this call is part of a bulk load */ +){ + BtShared *pBt; /* The whole database */ + int nCell = 0; /* Number of cells in apCell[] */ + int nMaxCells = 0; /* Allocated size of apCell, szCell, aFrom. */ + int nNew = 0; /* Number of pages in apNew[] */ + int nOld; /* Number of pages in apOld[] */ + int i, j, k; /* Loop counters */ + int nxDiv; /* Next divider slot in pParent->aCell[] */ + int rc = SQLITE_OK; /* The return code */ + u16 leafCorrection; /* 4 if pPage is a leaf. 0 if not */ + int leafData; /* True if pPage is a leaf of a LEAFDATA tree */ + int usableSpace; /* Bytes in pPage beyond the header */ + int pageFlags; /* Value of pPage->aData[0] */ + int subtotal; /* Subtotal of bytes in cells on one page */ + int iSpace1 = 0; /* First unused byte of aSpace1[] */ + int iOvflSpace = 0; /* First unused byte of aOvflSpace[] */ + int szScratch; /* Size of scratch memory requested */ + MemPage *apOld[NB]; /* pPage and up to two siblings */ + MemPage *apCopy[NB]; /* Private copies of apOld[] pages */ + MemPage *apNew[NB+2]; /* pPage and up to NB siblings after balancing */ + u8 *pRight; /* Location in parent of right-sibling pointer */ + u8 *apDiv[NB-1]; /* Divider cells in pParent */ + int cntNew[NB+2]; /* Index in aCell[] of cell after i-th page */ + int szNew[NB+2]; /* Combined size of cells place on i-th page */ + u8 **apCell = 0; /* All cells begin balanced */ + u16 *szCell; /* Local size of all cells in apCell[] */ + u8 *aSpace1; /* Space for copies of dividers cells */ + Pgno pgno; /* Temp var to store a page number in */ + + pBt = pParent->pBt; + assert( sqlite3_mutex_held(pBt->mutex) ); + assert( sqlite3PagerIswriteable(pParent->pDbPage) ); + +#if 0 + TRACE(("BALANCE: begin page %d child of %d\n", pPage->pgno, pParent->pgno)); +#endif + + /* At this point pParent may have at most one overflow cell. And if + ** this overflow cell is present, it must be the cell with + ** index iParentIdx. This scenario comes about when this function + ** is called (indirectly) from sqlite3BtreeDelete(). + */ + assert( pParent->nOverflow==0 || pParent->nOverflow==1 ); + assert( pParent->nOverflow==0 || pParent->aiOvfl[0]==iParentIdx ); + + if( !aOvflSpace ){ + return SQLITE_NOMEM; + } + + /* Find the sibling pages to balance. Also locate the cells in pParent + ** that divide the siblings. An attempt is made to find NN siblings on + ** either side of pPage. More siblings are taken from one side, however, + ** if there are fewer than NN siblings on the other side. If pParent + ** has NB or fewer children then all children of pParent are taken. + ** + ** This loop also drops the divider cells from the parent page. This + ** way, the remainder of the function does not have to deal with any + ** overflow cells in the parent page, since if any existed they will + ** have already been removed. + */ + i = pParent->nOverflow + pParent->nCell; + if( i<2 ){ + nxDiv = 0; + }else{ + assert( bBulk==0 || bBulk==1 ); + if( iParentIdx==0 ){ + nxDiv = 0; + }else if( iParentIdx==i ){ + nxDiv = i-2+bBulk; + }else{ + assert( bBulk==0 ); + nxDiv = iParentIdx-1; + } + i = 2-bBulk; + } + nOld = i+1; + if( (i+nxDiv-pParent->nOverflow)==pParent->nCell ){ + pRight = &pParent->aData[pParent->hdrOffset+8]; + }else{ + pRight = findCell(pParent, i+nxDiv-pParent->nOverflow); + } + pgno = get4byte(pRight); + while( 1 ){ + rc = getAndInitPage(pBt, pgno, &apOld[i], 0); + if( rc ){ + memset(apOld, 0, (i+1)*sizeof(MemPage*)); + goto balance_cleanup; + } + nMaxCells += 1+apOld[i]->nCell+apOld[i]->nOverflow; + if( (i--)==0 ) break; + + if( i+nxDiv==pParent->aiOvfl[0] && pParent->nOverflow ){ + apDiv[i] = pParent->apOvfl[0]; + pgno = get4byte(apDiv[i]); + szNew[i] = cellSizePtr(pParent, apDiv[i]); + pParent->nOverflow = 0; + }else{ + apDiv[i] = findCell(pParent, i+nxDiv-pParent->nOverflow); + pgno = get4byte(apDiv[i]); + szNew[i] = cellSizePtr(pParent, apDiv[i]); + + /* Drop the cell from the parent page. apDiv[i] still points to + ** the cell within the parent, even though it has been dropped. + ** This is safe because dropping a cell only overwrites the first + ** four bytes of it, and this function does not need the first + ** four bytes of the divider cell. So the pointer is safe to use + ** later on. + ** + ** But not if we are in secure-delete mode. In secure-delete mode, + ** the dropCell() routine will overwrite the entire cell with zeroes. + ** In this case, temporarily copy the cell into the aOvflSpace[] + ** buffer. It will be copied out again as soon as the aSpace[] buffer + ** is allocated. */ + if( pBt->btsFlags & BTS_SECURE_DELETE ){ + int iOff; + + iOff = SQLITE_PTR_TO_INT(apDiv[i]) - SQLITE_PTR_TO_INT(pParent->aData); + if( (iOff+szNew[i])>(int)pBt->usableSize ){ + rc = SQLITE_CORRUPT_BKPT; + memset(apOld, 0, (i+1)*sizeof(MemPage*)); + goto balance_cleanup; + }else{ + memcpy(&aOvflSpace[iOff], apDiv[i], szNew[i]); + apDiv[i] = &aOvflSpace[apDiv[i]-pParent->aData]; + } + } + dropCell(pParent, i+nxDiv-pParent->nOverflow, szNew[i], &rc); + } + } + + /* Make nMaxCells a multiple of 4 in order to preserve 8-byte + ** alignment */ + nMaxCells = (nMaxCells + 3)&~3; + + /* + ** Allocate space for memory structures + */ + k = pBt->pageSize + ROUND8(sizeof(MemPage)); + szScratch = + nMaxCells*sizeof(u8*) /* apCell */ + + nMaxCells*sizeof(u16) /* szCell */ + + pBt->pageSize /* aSpace1 */ + + k*nOld; /* Page copies (apCopy) */ + apCell = sqlite3ScratchMalloc( szScratch ); + if( apCell==0 ){ + rc = SQLITE_NOMEM; + goto balance_cleanup; + } + szCell = (u16*)&apCell[nMaxCells]; + aSpace1 = (u8*)&szCell[nMaxCells]; + assert( EIGHT_BYTE_ALIGNMENT(aSpace1) ); + + /* + ** Load pointers to all cells on sibling pages and the divider cells + ** into the local apCell[] array. Make copies of the divider cells + ** into space obtained from aSpace1[] and remove the divider cells + ** from pParent. + ** + ** If the siblings are on leaf pages, then the child pointers of the + ** divider cells are stripped from the cells before they are copied + ** into aSpace1[]. In this way, all cells in apCell[] are without + ** child pointers. If siblings are not leaves, then all cell in + ** apCell[] include child pointers. Either way, all cells in apCell[] + ** are alike. + ** + ** leafCorrection: 4 if pPage is a leaf. 0 if pPage is not a leaf. + ** leafData: 1 if pPage holds key+data and pParent holds only keys. + */ + leafCorrection = apOld[0]->leaf*4; + leafData = apOld[0]->hasData; + for(i=0; ipageSize + k*i]; + memcpy(pOld, apOld[i], sizeof(MemPage)); + pOld->aData = (void*)&pOld[1]; + memcpy(pOld->aData, apOld[i]->aData, pBt->pageSize); + + limit = pOld->nCell+pOld->nOverflow; + if( pOld->nOverflow>0 ){ + for(j=0; jaData; + u16 maskPage = pOld->maskPage; + u16 cellOffset = pOld->cellOffset; + for(j=0; jmaxLocal+23 ); + assert( iSpace1 <= (int)pBt->pageSize ); + memcpy(pTemp, apDiv[i], sz); + apCell[nCell] = pTemp+leafCorrection; + assert( leafCorrection==0 || leafCorrection==4 ); + szCell[nCell] = szCell[nCell] - leafCorrection; + if( !pOld->leaf ){ + assert( leafCorrection==0 ); + assert( pOld->hdrOffset==0 ); + /* The right pointer of the child page pOld becomes the left + ** pointer of the divider cell */ + memcpy(apCell[nCell], &pOld->aData[8], 4); + }else{ + assert( leafCorrection==4 ); + if( szCell[nCell]<4 ){ + /* Do not allow any cells smaller than 4 bytes. */ + szCell[nCell] = 4; + } + } + nCell++; + } + } + + /* + ** Figure out the number of pages needed to hold all nCell cells. + ** Store this number in "k". Also compute szNew[] which is the total + ** size of all cells on the i-th page and cntNew[] which is the index + ** in apCell[] of the cell that divides page i from page i+1. + ** cntNew[k] should equal nCell. + ** + ** Values computed by this block: + ** + ** k: The total number of sibling pages + ** szNew[i]: Spaced used on the i-th sibling page. + ** cntNew[i]: Index in apCell[] and szCell[] for the first cell to + ** the right of the i-th sibling page. + ** usableSpace: Number of bytes of space available on each sibling. + ** + */ + usableSpace = pBt->usableSize - 12 + leafCorrection; + for(subtotal=k=i=0; i usableSpace ){ + szNew[k] = subtotal - szCell[i]; + cntNew[k] = i; + if( leafData ){ i--; } + subtotal = 0; + k++; + if( k>NB+1 ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } + } + } + szNew[k] = subtotal; + cntNew[k] = nCell; + k++; + + /* + ** The packing computed by the previous block is biased toward the siblings + ** on the left side. The left siblings are always nearly full, while the + ** right-most sibling might be nearly empty. This block of code attempts + ** to adjust the packing of siblings to get a better balance. + ** + ** This adjustment is more than an optimization. The packing above might + ** be so out of balance as to be illegal. For example, the right-most + ** sibling might be completely empty. This adjustment is not optional. + */ + for(i=k-1; i>0; i--){ + int szRight = szNew[i]; /* Size of sibling on the right */ + int szLeft = szNew[i-1]; /* Size of sibling on the left */ + int r; /* Index of right-most cell in left sibling */ + int d; /* Index of first cell to the left of right sibling */ + + r = cntNew[i-1] - 1; + d = r + 1 - leafData; + assert( d0) or pPage is + ** a virtual root page. A virtual root page is when the real root + ** page is page 1 and we are the only child of that page. + ** + ** UPDATE: The assert() below is not necessarily true if the database + ** file is corrupt. The corruption will be detected and reported later + ** in this procedure so there is no need to act upon it now. + */ +#if 0 + assert( cntNew[0]>0 || (pParent->pgno==1 && pParent->nCell==0) ); +#endif + + TRACE(("BALANCE: old: %d %d %d ", + apOld[0]->pgno, + nOld>=2 ? apOld[1]->pgno : 0, + nOld>=3 ? apOld[2]->pgno : 0 + )); + + /* + ** Allocate k new pages. Reuse old pages where possible. + */ + if( apOld[0]->pgno<=1 ){ + rc = SQLITE_CORRUPT_BKPT; + goto balance_cleanup; + } + pageFlags = apOld[0]->aData[0]; + for(i=0; ipDbPage); + nNew++; + if( rc ) goto balance_cleanup; + }else{ + assert( i>0 ); + rc = allocateBtreePage(pBt, &pNew, &pgno, (bBulk ? 1 : pgno), 0); + if( rc ) goto balance_cleanup; + apNew[i] = pNew; + nNew++; + + /* Set the pointer-map entry for the new sibling page. */ + if( ISAUTOVACUUM ){ + ptrmapPut(pBt, pNew->pgno, PTRMAP_BTREE, pParent->pgno, &rc); + if( rc!=SQLITE_OK ){ + goto balance_cleanup; + } + } + } + } + + /* Free any old pages that were not reused as new pages. + */ + while( ipgno; + int minI = i; + for(j=i+1; jpgno<(unsigned)minV ){ + minI = j; + minV = apNew[j]->pgno; + } + } + if( minI>i ){ + MemPage *pT; + pT = apNew[i]; + apNew[i] = apNew[minI]; + apNew[minI] = pT; + } + } + TRACE(("new: %d(%d) %d(%d) %d(%d) %d(%d) %d(%d)\n", + apNew[0]->pgno, szNew[0], + nNew>=2 ? apNew[1]->pgno : 0, nNew>=2 ? szNew[1] : 0, + nNew>=3 ? apNew[2]->pgno : 0, nNew>=3 ? szNew[2] : 0, + nNew>=4 ? apNew[3]->pgno : 0, nNew>=4 ? szNew[3] : 0, + nNew>=5 ? apNew[4]->pgno : 0, nNew>=5 ? szNew[4] : 0)); + + assert( sqlite3PagerIswriteable(pParent->pDbPage) ); + put4byte(pRight, apNew[nNew-1]->pgno); + + /* + ** Evenly distribute the data in apCell[] across the new pages. + ** Insert divider cells into pParent as necessary. + */ + j = 0; + for(i=0; inCell>0 || (nNew==1 && cntNew[0]==0) ); + assert( pNew->nOverflow==0 ); + + j = cntNew[i]; + + /* If the sibling page assembled above was not the right-most sibling, + ** insert a divider cell into the parent page. + */ + assert( ileaf ){ + memcpy(&pNew->aData[8], pCell, 4); + }else if( leafData ){ + /* If the tree is a leaf-data tree, and the siblings are leaves, + ** then there is no divider cell in apCell[]. Instead, the divider + ** cell consists of the integer key for the right-most cell of + ** the sibling-page assembled above only. + */ + CellInfo info; + j--; + btreeParseCellPtr(pNew, apCell[j], &info); + pCell = pTemp; + sz = 4 + putVarint(&pCell[4], info.nKey); + pTemp = 0; + }else{ + pCell -= 4; + /* Obscure case for non-leaf-data trees: If the cell at pCell was + ** previously stored on a leaf node, and its reported size was 4 + ** bytes, then it may actually be smaller than this + ** (see btreeParseCellPtr(), 4 bytes is the minimum size of + ** any cell). But it is important to pass the correct size to + ** insertCell(), so reparse the cell now. + ** + ** Note that this can never happen in an SQLite data file, as all + ** cells are at least 4 bytes. It only happens in b-trees used + ** to evaluate "IN (SELECT ...)" and similar clauses. + */ + if( szCell[j]==4 ){ + assert(leafCorrection==4); + sz = cellSizePtr(pParent, pCell); + } + } + iOvflSpace += sz; + assert( sz<=pBt->maxLocal+23 ); + assert( iOvflSpace <= (int)pBt->pageSize ); + insertCell(pParent, nxDiv, pCell, sz, pTemp, pNew->pgno, &rc); + if( rc!=SQLITE_OK ) goto balance_cleanup; + assert( sqlite3PagerIswriteable(pParent->pDbPage) ); + + j++; + nxDiv++; + } + } + assert( j==nCell ); + assert( nOld>0 ); + assert( nNew>0 ); + if( (pageFlags & PTF_LEAF)==0 ){ + u8 *zChild = &apCopy[nOld-1]->aData[8]; + memcpy(&apNew[nNew-1]->aData[8], zChild, 4); + } + + if( isRoot && pParent->nCell==0 && pParent->hdrOffset<=apNew[0]->nFree ){ + /* The root page of the b-tree now contains no cells. The only sibling + ** page is the right-child of the parent. Copy the contents of the + ** child page into the parent, decreasing the overall height of the + ** b-tree structure by one. This is described as the "balance-shallower" + ** sub-algorithm in some documentation. + ** + ** If this is an auto-vacuum database, the call to copyNodeContent() + ** sets all pointer-map entries corresponding to database image pages + ** for which the pointer is stored within the content being copied. + ** + ** The second assert below verifies that the child page is defragmented + ** (it must be, as it was just reconstructed using assemblePage()). This + ** is important if the parent page happens to be page 1 of the database + ** image. */ + assert( nNew==1 ); + assert( apNew[0]->nFree == + (get2byte(&apNew[0]->aData[5])-apNew[0]->cellOffset-apNew[0]->nCell*2) + ); + copyNodeContent(apNew[0], pParent, &rc); + freePage(apNew[0], &rc); + }else if( ISAUTOVACUUM ){ + /* Fix the pointer-map entries for all the cells that were shifted around. + ** There are several different types of pointer-map entries that need to + ** be dealt with by this routine. Some of these have been set already, but + ** many have not. The following is a summary: + ** + ** 1) The entries associated with new sibling pages that were not + ** siblings when this function was called. These have already + ** been set. We don't need to worry about old siblings that were + ** moved to the free-list - the freePage() code has taken care + ** of those. + ** + ** 2) The pointer-map entries associated with the first overflow + ** page in any overflow chains used by new divider cells. These + ** have also already been taken care of by the insertCell() code. + ** + ** 3) If the sibling pages are not leaves, then the child pages of + ** cells stored on the sibling pages may need to be updated. + ** + ** 4) If the sibling pages are not internal intkey nodes, then any + ** overflow pages used by these cells may need to be updated + ** (internal intkey nodes never contain pointers to overflow pages). + ** + ** 5) If the sibling pages are not leaves, then the pointer-map + ** entries for the right-child pages of each sibling may need + ** to be updated. + ** + ** Cases 1 and 2 are dealt with above by other code. The next + ** block deals with cases 3 and 4 and the one after that, case 5. Since + ** setting a pointer map entry is a relatively expensive operation, this + ** code only sets pointer map entries for child or overflow pages that have + ** actually moved between pages. */ + MemPage *pNew = apNew[0]; + MemPage *pOld = apCopy[0]; + int nOverflow = pOld->nOverflow; + int iNextOld = pOld->nCell + nOverflow; + int iOverflow = (nOverflow ? pOld->aiOvfl[0] : -1); + j = 0; /* Current 'old' sibling page */ + k = 0; /* Current 'new' sibling page */ + for(i=0; inCell + pOld->nOverflow; + if( pOld->nOverflow ){ + nOverflow = pOld->nOverflow; + iOverflow = i + !leafData + pOld->aiOvfl[0]; + } + isDivider = !leafData; + } + + assert(nOverflow>0 || iOverflowaiOvfl[0]==pOld->aiOvfl[1]-1); + assert(nOverflow<3 || pOld->aiOvfl[1]==pOld->aiOvfl[2]-1); + if( i==iOverflow ){ + isDivider = 1; + if( (--nOverflow)>0 ){ + iOverflow++; + } + } + + if( i==cntNew[k] ){ + /* Cell i is the cell immediately following the last cell on new + ** sibling page k. If the siblings are not leaf pages of an + ** intkey b-tree, then cell i is a divider cell. */ + pNew = apNew[++k]; + if( !leafData ) continue; + } + assert( jpgno!=pNew->pgno ){ + if( !leafCorrection ){ + ptrmapPut(pBt, get4byte(apCell[i]), PTRMAP_BTREE, pNew->pgno, &rc); + } + if( szCell[i]>pNew->minLocal ){ + ptrmapPutOvflPtr(pNew, apCell[i], &rc); + } + } + } + + if( !leafCorrection ){ + for(i=0; iaData[8]); + ptrmapPut(pBt, key, PTRMAP_BTREE, apNew[i]->pgno, &rc); + } + } + +#if 0 + /* The ptrmapCheckPages() contains assert() statements that verify that + ** all pointer map pages are set correctly. This is helpful while + ** debugging. This is usually disabled because a corrupt database may + ** cause an assert() statement to fail. */ + ptrmapCheckPages(apNew, nNew); + ptrmapCheckPages(&pParent, 1); +#endif + } + + assert( pParent->isInit ); + TRACE(("BALANCE: finished: old=%d new=%d cells=%d\n", + nOld, nNew, nCell)); + + /* + ** Cleanup before returning. + */ +balance_cleanup: + sqlite3ScratchFree(apCell); + for(i=0; i= 1700 && defined(_M_ARM) +#pragma optimize("", on) +#endif + + +/* +** This function is called when the root page of a b-tree structure is +** overfull (has one or more overflow pages). +** +** A new child page is allocated and the contents of the current root +** page, including overflow cells, are copied into the child. The root +** page is then overwritten to make it an empty page with the right-child +** pointer pointing to the new page. +** +** Before returning, all pointer-map entries corresponding to pages +** that the new child-page now contains pointers to are updated. The +** entry corresponding to the new right-child pointer of the root +** page is also updated. +** +** If successful, *ppChild is set to contain a reference to the child +** page and SQLITE_OK is returned. In this case the caller is required +** to call releasePage() on *ppChild exactly once. If an error occurs, +** an error code is returned and *ppChild is set to 0. +*/ +static int balance_deeper(MemPage *pRoot, MemPage **ppChild){ + int rc; /* Return value from subprocedures */ + MemPage *pChild = 0; /* Pointer to a new child page */ + Pgno pgnoChild = 0; /* Page number of the new child page */ + BtShared *pBt = pRoot->pBt; /* The BTree */ + + assert( pRoot->nOverflow>0 ); + assert( sqlite3_mutex_held(pBt->mutex) ); + + /* Make pRoot, the root page of the b-tree, writable. Allocate a new + ** page that will become the new right-child of pPage. Copy the contents + ** of the node stored on pRoot into the new child page. + */ + rc = sqlite3PagerWrite(pRoot->pDbPage); + if( rc==SQLITE_OK ){ + rc = allocateBtreePage(pBt,&pChild,&pgnoChild,pRoot->pgno,0); + copyNodeContent(pRoot, pChild, &rc); + if( ISAUTOVACUUM ){ + ptrmapPut(pBt, pgnoChild, PTRMAP_BTREE, pRoot->pgno, &rc); + } + } + if( rc ){ + *ppChild = 0; + releasePage(pChild); + return rc; + } + assert( sqlite3PagerIswriteable(pChild->pDbPage) ); + assert( sqlite3PagerIswriteable(pRoot->pDbPage) ); + assert( pChild->nCell==pRoot->nCell ); + + TRACE(("BALANCE: copy root %d into %d\n", pRoot->pgno, pChild->pgno)); + + /* Copy the overflow cells from pRoot to pChild */ + memcpy(pChild->aiOvfl, pRoot->aiOvfl, + pRoot->nOverflow*sizeof(pRoot->aiOvfl[0])); + memcpy(pChild->apOvfl, pRoot->apOvfl, + pRoot->nOverflow*sizeof(pRoot->apOvfl[0])); + pChild->nOverflow = pRoot->nOverflow; + + /* Zero the contents of pRoot. Then install pChild as the right-child. */ + zeroPage(pRoot, pChild->aData[0] & ~PTF_LEAF); + put4byte(&pRoot->aData[pRoot->hdrOffset+8], pgnoChild); + + *ppChild = pChild; + return SQLITE_OK; +} + +/* +** The page that pCur currently points to has just been modified in +** some way. This function figures out if this modification means the +** tree needs to be balanced, and if so calls the appropriate balancing +** routine. Balancing routines are: +** +** balance_quick() +** balance_deeper() +** balance_nonroot() +*/ +static int balance(BtCursor *pCur){ + int rc = SQLITE_OK; + const int nMin = pCur->pBt->usableSize * 2 / 3; + u8 aBalanceQuickSpace[13]; + u8 *pFree = 0; + + TESTONLY( int balance_quick_called = 0 ); + TESTONLY( int balance_deeper_called = 0 ); + + do { + int iPage = pCur->iPage; + MemPage *pPage = pCur->apPage[iPage]; + + if( iPage==0 ){ + if( pPage->nOverflow ){ + /* The root page of the b-tree is overfull. In this case call the + ** balance_deeper() function to create a new child for the root-page + ** and copy the current contents of the root-page to it. The + ** next iteration of the do-loop will balance the child page. + */ + assert( (balance_deeper_called++)==0 ); + rc = balance_deeper(pPage, &pCur->apPage[1]); + if( rc==SQLITE_OK ){ + pCur->iPage = 1; + pCur->aiIdx[0] = 0; + pCur->aiIdx[1] = 0; + assert( pCur->apPage[1]->nOverflow ); + } + }else{ + break; + } + }else if( pPage->nOverflow==0 && pPage->nFree<=nMin ){ + break; + }else{ + MemPage * const pParent = pCur->apPage[iPage-1]; + int const iIdx = pCur->aiIdx[iPage-1]; + + rc = sqlite3PagerWrite(pParent->pDbPage); + if( rc==SQLITE_OK ){ +#ifndef SQLITE_OMIT_QUICKBALANCE + if( pPage->hasData + && pPage->nOverflow==1 + && pPage->aiOvfl[0]==pPage->nCell + && pParent->pgno!=1 + && pParent->nCell==iIdx + ){ + /* Call balance_quick() to create a new sibling of pPage on which + ** to store the overflow cell. balance_quick() inserts a new cell + ** into pParent, which may cause pParent overflow. If this + ** happens, the next interation of the do-loop will balance pParent + ** use either balance_nonroot() or balance_deeper(). Until this + ** happens, the overflow cell is stored in the aBalanceQuickSpace[] + ** buffer. + ** + ** The purpose of the following assert() is to check that only a + ** single call to balance_quick() is made for each call to this + ** function. If this were not verified, a subtle bug involving reuse + ** of the aBalanceQuickSpace[] might sneak in. + */ + assert( (balance_quick_called++)==0 ); + rc = balance_quick(pParent, pPage, aBalanceQuickSpace); + }else +#endif + { + /* In this case, call balance_nonroot() to redistribute cells + ** between pPage and up to 2 of its sibling pages. This involves + ** modifying the contents of pParent, which may cause pParent to + ** become overfull or underfull. The next iteration of the do-loop + ** will balance the parent page to correct this. + ** + ** If the parent page becomes overfull, the overflow cell or cells + ** are stored in the pSpace buffer allocated immediately below. + ** A subsequent iteration of the do-loop will deal with this by + ** calling balance_nonroot() (balance_deeper() may be called first, + ** but it doesn't deal with overflow cells - just moves them to a + ** different page). Once this subsequent call to balance_nonroot() + ** has completed, it is safe to release the pSpace buffer used by + ** the previous call, as the overflow cell data will have been + ** copied either into the body of a database page or into the new + ** pSpace buffer passed to the latter call to balance_nonroot(). + */ + u8 *pSpace = sqlite3PageMalloc(pCur->pBt->pageSize); + rc = balance_nonroot(pParent, iIdx, pSpace, iPage==1, pCur->hints); + if( pFree ){ + /* If pFree is not NULL, it points to the pSpace buffer used + ** by a previous call to balance_nonroot(). Its contents are + ** now stored either on real database pages or within the + ** new pSpace buffer, so it may be safely freed here. */ + sqlite3PageFree(pFree); + } + + /* The pSpace buffer will be freed after the next call to + ** balance_nonroot(), or just before this function returns, whichever + ** comes first. */ + pFree = pSpace; + } + } + + pPage->nOverflow = 0; + + /* The next iteration of the do-loop balances the parent page. */ + releasePage(pPage); + pCur->iPage--; + } + }while( rc==SQLITE_OK ); + + if( pFree ){ + sqlite3PageFree(pFree); + } + return rc; +} + + +/* +** Insert a new record into the BTree. The key is given by (pKey,nKey) +** and the data is given by (pData,nData). The cursor is used only to +** define what table the record should be inserted into. The cursor +** is left pointing at a random location. +** +** For an INTKEY table, only the nKey value of the key is used. pKey is +** ignored. For a ZERODATA table, the pData and nData are both ignored. +** +** If the seekResult parameter is non-zero, then a successful call to +** MovetoUnpacked() to seek cursor pCur to (pKey, nKey) has already +** been performed. seekResult is the search result returned (a negative +** number if pCur points at an entry that is smaller than (pKey, nKey), or +** a positive value if pCur points at an etry that is larger than +** (pKey, nKey)). +** +** If the seekResult parameter is non-zero, then the caller guarantees that +** cursor pCur is pointing at the existing copy of a row that is to be +** overwritten. If the seekResult parameter is 0, then cursor pCur may +** point to any entry or to no entry at all and so this function has to seek +** the cursor before the new key can be inserted. +*/ +SQLITE_PRIVATE int sqlite3BtreeInsert( + BtCursor *pCur, /* Insert data into the table of this cursor */ + const void *pKey, i64 nKey, /* The key of the new record */ + const void *pData, int nData, /* The data of the new record */ + int nZero, /* Number of extra 0 bytes to append to data */ + int appendBias, /* True if this is likely an append */ + int seekResult /* Result of prior MovetoUnpacked() call */ +){ + int rc; + int loc = seekResult; /* -1: before desired location +1: after */ + int szNew = 0; + int idx; + MemPage *pPage; + Btree *p = pCur->pBtree; + BtShared *pBt = p->pBt; + unsigned char *oldCell; + unsigned char *newCell = 0; + + if( pCur->eState==CURSOR_FAULT ){ + assert( pCur->skipNext!=SQLITE_OK ); + return pCur->skipNext; + } + + assert( cursorHoldsMutex(pCur) ); + assert( (pCur->curFlags & BTCF_WriteFlag)!=0 && pBt->inTransaction==TRANS_WRITE + && (pBt->btsFlags & BTS_READ_ONLY)==0 ); + assert( hasSharedCacheTableLock(p, pCur->pgnoRoot, pCur->pKeyInfo!=0, 2) ); + + /* Assert that the caller has been consistent. If this cursor was opened + ** expecting an index b-tree, then the caller should be inserting blob + ** keys with no associated data. If the cursor was opened expecting an + ** intkey table, the caller should be inserting integer keys with a + ** blob of associated data. */ + assert( (pKey==0)==(pCur->pKeyInfo==0) ); + + /* Save the positions of any other cursors open on this table. + ** + ** In some cases, the call to btreeMoveto() below is a no-op. For + ** example, when inserting data into a table with auto-generated integer + ** keys, the VDBE layer invokes sqlite3BtreeLast() to figure out the + ** integer key to use. It then calls this function to actually insert the + ** data into the intkey B-Tree. In this case btreeMoveto() recognizes + ** that the cursor is already where it needs to be and returns without + ** doing any work. To avoid thwarting these optimizations, it is important + ** not to clear the cursor here. + */ + rc = saveAllCursors(pBt, pCur->pgnoRoot, pCur); + if( rc ) return rc; + + if( pCur->pKeyInfo==0 ){ + /* If this is an insert into a table b-tree, invalidate any incrblob + ** cursors open on the row being replaced */ + invalidateIncrblobCursors(p, nKey, 0); + + /* If the cursor is currently on the last row and we are appending a + ** new row onto the end, set the "loc" to avoid an unnecessary btreeMoveto() + ** call */ + if( (pCur->curFlags&BTCF_ValidNKey)!=0 && nKey>0 && pCur->info.nKey==nKey-1 ){ + loc = -1; + } + } + + if( !loc ){ + rc = btreeMoveto(pCur, pKey, nKey, appendBias, &loc); + if( rc ) return rc; + } + assert( pCur->eState==CURSOR_VALID || (pCur->eState==CURSOR_INVALID && loc) ); + + pPage = pCur->apPage[pCur->iPage]; + assert( pPage->intKey || nKey>=0 ); + assert( pPage->leaf || !pPage->intKey ); + + TRACE(("INSERT: table=%d nkey=%lld ndata=%d page=%d %s\n", + pCur->pgnoRoot, nKey, nData, pPage->pgno, + loc==0 ? "overwrite" : "new entry")); + assert( pPage->isInit ); + allocateTempSpace(pBt); + newCell = pBt->pTmpSpace; + if( newCell==0 ) return SQLITE_NOMEM; + rc = fillInCell(pPage, newCell, pKey, nKey, pData, nData, nZero, &szNew); + if( rc ) goto end_insert; + assert( szNew==cellSizePtr(pPage, newCell) ); + assert( szNew <= MX_CELL_SIZE(pBt) ); + idx = pCur->aiIdx[pCur->iPage]; + if( loc==0 ){ + u16 szOld; + assert( idxnCell ); + rc = sqlite3PagerWrite(pPage->pDbPage); + if( rc ){ + goto end_insert; + } + oldCell = findCell(pPage, idx); + if( !pPage->leaf ){ + memcpy(newCell, oldCell, 4); + } + szOld = cellSizePtr(pPage, oldCell); + rc = clearCell(pPage, oldCell); + dropCell(pPage, idx, szOld, &rc); + if( rc ) goto end_insert; + }else if( loc<0 && pPage->nCell>0 ){ + assert( pPage->leaf ); + idx = ++pCur->aiIdx[pCur->iPage]; + }else{ + assert( pPage->leaf ); + } + insertCell(pPage, idx, newCell, szNew, 0, 0, &rc); + assert( rc!=SQLITE_OK || pPage->nCell>0 || pPage->nOverflow>0 ); + + /* If no error has occurred and pPage has an overflow cell, call balance() + ** to redistribute the cells within the tree. Since balance() may move + ** the cursor, zero the BtCursor.info.nSize and BTCF_ValidNKey + ** variables. + ** + ** Previous versions of SQLite called moveToRoot() to move the cursor + ** back to the root page as balance() used to invalidate the contents + ** of BtCursor.apPage[] and BtCursor.aiIdx[]. Instead of doing that, + ** set the cursor state to "invalid". This makes common insert operations + ** slightly faster. + ** + ** There is a subtle but important optimization here too. When inserting + ** multiple records into an intkey b-tree using a single cursor (as can + ** happen while processing an "INSERT INTO ... SELECT" statement), it + ** is advantageous to leave the cursor pointing to the last entry in + ** the b-tree if possible. If the cursor is left pointing to the last + ** entry in the table, and the next row inserted has an integer key + ** larger than the largest existing key, it is possible to insert the + ** row without seeking the cursor. This can be a big performance boost. + */ + pCur->info.nSize = 0; + if( rc==SQLITE_OK && pPage->nOverflow ){ + pCur->curFlags &= ~(BTCF_ValidNKey); + rc = balance(pCur); + + /* Must make sure nOverflow is reset to zero even if the balance() + ** fails. Internal data structure corruption will result otherwise. + ** Also, set the cursor state to invalid. This stops saveCursorPosition() + ** from trying to save the current position of the cursor. */ + pCur->apPage[pCur->iPage]->nOverflow = 0; + pCur->eState = CURSOR_INVALID; + } + assert( pCur->apPage[pCur->iPage]->nOverflow==0 ); + +end_insert: + return rc; +} + +/* +** Delete the entry that the cursor is pointing to. The cursor +** is left pointing at a arbitrary location. +*/ +SQLITE_PRIVATE int sqlite3BtreeDelete(BtCursor *pCur){ + Btree *p = pCur->pBtree; + BtShared *pBt = p->pBt; + int rc; /* Return code */ + MemPage *pPage; /* Page to delete cell from */ + unsigned char *pCell; /* Pointer to cell to delete */ + int iCellIdx; /* Index of cell to delete */ + int iCellDepth; /* Depth of node containing pCell */ + + assert( cursorHoldsMutex(pCur) ); + assert( pBt->inTransaction==TRANS_WRITE ); + assert( (pBt->btsFlags & BTS_READ_ONLY)==0 ); + assert( pCur->curFlags & BTCF_WriteFlag ); + assert( hasSharedCacheTableLock(p, pCur->pgnoRoot, pCur->pKeyInfo!=0, 2) ); + assert( !hasReadConflicts(p, pCur->pgnoRoot) ); + + if( NEVER(pCur->aiIdx[pCur->iPage]>=pCur->apPage[pCur->iPage]->nCell) + || NEVER(pCur->eState!=CURSOR_VALID) + ){ + return SQLITE_ERROR; /* Something has gone awry. */ + } + + iCellDepth = pCur->iPage; + iCellIdx = pCur->aiIdx[iCellDepth]; + pPage = pCur->apPage[iCellDepth]; + pCell = findCell(pPage, iCellIdx); + + /* If the page containing the entry to delete is not a leaf page, move + ** the cursor to the largest entry in the tree that is smaller than + ** the entry being deleted. This cell will replace the cell being deleted + ** from the internal node. The 'previous' entry is used for this instead + ** of the 'next' entry, as the previous entry is always a part of the + ** sub-tree headed by the child page of the cell being deleted. This makes + ** balancing the tree following the delete operation easier. */ + if( !pPage->leaf ){ + int notUsed = 0; + rc = sqlite3BtreePrevious(pCur, ¬Used); + if( rc ) return rc; + } + + /* Save the positions of any other cursors open on this table before + ** making any modifications. Make the page containing the entry to be + ** deleted writable. Then free any overflow pages associated with the + ** entry and finally remove the cell itself from within the page. + */ + rc = saveAllCursors(pBt, pCur->pgnoRoot, pCur); + if( rc ) return rc; + + /* If this is a delete operation to remove a row from a table b-tree, + ** invalidate any incrblob cursors open on the row being deleted. */ + if( pCur->pKeyInfo==0 ){ + invalidateIncrblobCursors(p, pCur->info.nKey, 0); + } + + rc = sqlite3PagerWrite(pPage->pDbPage); + if( rc ) return rc; + rc = clearCell(pPage, pCell); + dropCell(pPage, iCellIdx, cellSizePtr(pPage, pCell), &rc); + if( rc ) return rc; + + /* If the cell deleted was not located on a leaf page, then the cursor + ** is currently pointing to the largest entry in the sub-tree headed + ** by the child-page of the cell that was just deleted from an internal + ** node. The cell from the leaf node needs to be moved to the internal + ** node to replace the deleted cell. */ + if( !pPage->leaf ){ + MemPage *pLeaf = pCur->apPage[pCur->iPage]; + int nCell; + Pgno n = pCur->apPage[iCellDepth+1]->pgno; + unsigned char *pTmp; + + pCell = findCell(pLeaf, pLeaf->nCell-1); + nCell = cellSizePtr(pLeaf, pCell); + assert( MX_CELL_SIZE(pBt) >= nCell ); + + allocateTempSpace(pBt); + pTmp = pBt->pTmpSpace; + + rc = sqlite3PagerWrite(pLeaf->pDbPage); + insertCell(pPage, iCellIdx, pCell-4, nCell+4, pTmp, n, &rc); + dropCell(pLeaf, pLeaf->nCell-1, nCell, &rc); + if( rc ) return rc; + } + + /* Balance the tree. If the entry deleted was located on a leaf page, + ** then the cursor still points to that page. In this case the first + ** call to balance() repairs the tree, and the if(...) condition is + ** never true. + ** + ** Otherwise, if the entry deleted was on an internal node page, then + ** pCur is pointing to the leaf page from which a cell was removed to + ** replace the cell deleted from the internal node. This is slightly + ** tricky as the leaf node may be underfull, and the internal node may + ** be either under or overfull. In this case run the balancing algorithm + ** on the leaf node first. If the balance proceeds far enough up the + ** tree that we can be sure that any problem in the internal node has + ** been corrected, so be it. Otherwise, after balancing the leaf node, + ** walk the cursor up the tree to the internal node and balance it as + ** well. */ + rc = balance(pCur); + if( rc==SQLITE_OK && pCur->iPage>iCellDepth ){ + while( pCur->iPage>iCellDepth ){ + releasePage(pCur->apPage[pCur->iPage--]); + } + rc = balance(pCur); + } + + if( rc==SQLITE_OK ){ + moveToRoot(pCur); + } + return rc; +} + +/* +** Create a new BTree table. Write into *piTable the page +** number for the root page of the new table. +** +** The type of type is determined by the flags parameter. Only the +** following values of flags are currently in use. Other values for +** flags might not work: +** +** BTREE_INTKEY|BTREE_LEAFDATA Used for SQL tables with rowid keys +** BTREE_ZERODATA Used for SQL indices +*/ +static int btreeCreateTable(Btree *p, int *piTable, int createTabFlags){ + BtShared *pBt = p->pBt; + MemPage *pRoot; + Pgno pgnoRoot; + int rc; + int ptfFlags; /* Page-type flage for the root page of new table */ + + assert( sqlite3BtreeHoldsMutex(p) ); + assert( pBt->inTransaction==TRANS_WRITE ); + assert( (pBt->btsFlags & BTS_READ_ONLY)==0 ); + +#ifdef SQLITE_OMIT_AUTOVACUUM + rc = allocateBtreePage(pBt, &pRoot, &pgnoRoot, 1, 0); + if( rc ){ + return rc; + } +#else + if( pBt->autoVacuum ){ + Pgno pgnoMove; /* Move a page here to make room for the root-page */ + MemPage *pPageMove; /* The page to move to. */ + + /* Creating a new table may probably require moving an existing database + ** to make room for the new tables root page. In case this page turns + ** out to be an overflow page, delete all overflow page-map caches + ** held by open cursors. + */ + invalidateAllOverflowCache(pBt); + + /* Read the value of meta[3] from the database to determine where the + ** root page of the new table should go. meta[3] is the largest root-page + ** created so far, so the new root-page is (meta[3]+1). + */ + sqlite3BtreeGetMeta(p, BTREE_LARGEST_ROOT_PAGE, &pgnoRoot); + pgnoRoot++; + + /* The new root-page may not be allocated on a pointer-map page, or the + ** PENDING_BYTE page. + */ + while( pgnoRoot==PTRMAP_PAGENO(pBt, pgnoRoot) || + pgnoRoot==PENDING_BYTE_PAGE(pBt) ){ + pgnoRoot++; + } + assert( pgnoRoot>=3 ); + + /* Allocate a page. The page that currently resides at pgnoRoot will + ** be moved to the allocated page (unless the allocated page happens + ** to reside at pgnoRoot). + */ + rc = allocateBtreePage(pBt, &pPageMove, &pgnoMove, pgnoRoot, BTALLOC_EXACT); + if( rc!=SQLITE_OK ){ + return rc; + } + + if( pgnoMove!=pgnoRoot ){ + /* pgnoRoot is the page that will be used for the root-page of + ** the new table (assuming an error did not occur). But we were + ** allocated pgnoMove. If required (i.e. if it was not allocated + ** by extending the file), the current page at position pgnoMove + ** is already journaled. + */ + u8 eType = 0; + Pgno iPtrPage = 0; + + /* Save the positions of any open cursors. This is required in + ** case they are holding a reference to an xFetch reference + ** corresponding to page pgnoRoot. */ + rc = saveAllCursors(pBt, 0, 0); + releasePage(pPageMove); + if( rc!=SQLITE_OK ){ + return rc; + } + + /* Move the page currently at pgnoRoot to pgnoMove. */ + rc = btreeGetPage(pBt, pgnoRoot, &pRoot, 0); + if( rc!=SQLITE_OK ){ + return rc; + } + rc = ptrmapGet(pBt, pgnoRoot, &eType, &iPtrPage); + if( eType==PTRMAP_ROOTPAGE || eType==PTRMAP_FREEPAGE ){ + rc = SQLITE_CORRUPT_BKPT; + } + if( rc!=SQLITE_OK ){ + releasePage(pRoot); + return rc; + } + assert( eType!=PTRMAP_ROOTPAGE ); + assert( eType!=PTRMAP_FREEPAGE ); + rc = relocatePage(pBt, pRoot, eType, iPtrPage, pgnoMove, 0); + releasePage(pRoot); + + /* Obtain the page at pgnoRoot */ + if( rc!=SQLITE_OK ){ + return rc; + } + rc = btreeGetPage(pBt, pgnoRoot, &pRoot, 0); + if( rc!=SQLITE_OK ){ + return rc; + } + rc = sqlite3PagerWrite(pRoot->pDbPage); + if( rc!=SQLITE_OK ){ + releasePage(pRoot); + return rc; + } + }else{ + pRoot = pPageMove; + } + + /* Update the pointer-map and meta-data with the new root-page number. */ + ptrmapPut(pBt, pgnoRoot, PTRMAP_ROOTPAGE, 0, &rc); + if( rc ){ + releasePage(pRoot); + return rc; + } + + /* When the new root page was allocated, page 1 was made writable in + ** order either to increase the database filesize, or to decrement the + ** freelist count. Hence, the sqlite3BtreeUpdateMeta() call cannot fail. + */ + assert( sqlite3PagerIswriteable(pBt->pPage1->pDbPage) ); + rc = sqlite3BtreeUpdateMeta(p, 4, pgnoRoot); + if( NEVER(rc) ){ + releasePage(pRoot); + return rc; + } + + }else{ + rc = allocateBtreePage(pBt, &pRoot, &pgnoRoot, 1, 0); + if( rc ) return rc; + } +#endif + assert( sqlite3PagerIswriteable(pRoot->pDbPage) ); + if( createTabFlags & BTREE_INTKEY ){ + ptfFlags = PTF_INTKEY | PTF_LEAFDATA | PTF_LEAF; + }else{ + ptfFlags = PTF_ZERODATA | PTF_LEAF; + } + zeroPage(pRoot, ptfFlags); + sqlite3PagerUnref(pRoot->pDbPage); + assert( (pBt->openFlags & BTREE_SINGLE)==0 || pgnoRoot==2 ); + *piTable = (int)pgnoRoot; + return SQLITE_OK; +} +SQLITE_PRIVATE int sqlite3BtreeCreateTable(Btree *p, int *piTable, int flags){ + int rc; + sqlite3BtreeEnter(p); + rc = btreeCreateTable(p, piTable, flags); + sqlite3BtreeLeave(p); + return rc; +} + +/* +** Erase the given database page and all its children. Return +** the page to the freelist. +*/ +static int clearDatabasePage( + BtShared *pBt, /* The BTree that contains the table */ + Pgno pgno, /* Page number to clear */ + int freePageFlag, /* Deallocate page if true */ + int *pnChange /* Add number of Cells freed to this counter */ +){ + MemPage *pPage; + int rc; + unsigned char *pCell; + int i; + int hdr; + + assert( sqlite3_mutex_held(pBt->mutex) ); + if( pgno>btreePagecount(pBt) ){ + return SQLITE_CORRUPT_BKPT; + } + + rc = getAndInitPage(pBt, pgno, &pPage, 0); + if( rc ) return rc; + hdr = pPage->hdrOffset; + for(i=0; inCell; i++){ + pCell = findCell(pPage, i); + if( !pPage->leaf ){ + rc = clearDatabasePage(pBt, get4byte(pCell), 1, pnChange); + if( rc ) goto cleardatabasepage_out; + } + rc = clearCell(pPage, pCell); + if( rc ) goto cleardatabasepage_out; + } + if( !pPage->leaf ){ + rc = clearDatabasePage(pBt, get4byte(&pPage->aData[hdr+8]), 1, pnChange); + if( rc ) goto cleardatabasepage_out; + }else if( pnChange ){ + assert( pPage->intKey ); + *pnChange += pPage->nCell; + } + if( freePageFlag ){ + freePage(pPage, &rc); + }else if( (rc = sqlite3PagerWrite(pPage->pDbPage))==0 ){ + zeroPage(pPage, pPage->aData[hdr] | PTF_LEAF); + } + +cleardatabasepage_out: + releasePage(pPage); + return rc; +} + +/* +** Delete all information from a single table in the database. iTable is +** the page number of the root of the table. After this routine returns, +** the root page is empty, but still exists. +** +** This routine will fail with SQLITE_LOCKED if there are any open +** read cursors on the table. Open write cursors are moved to the +** root of the table. +** +** If pnChange is not NULL, then table iTable must be an intkey table. The +** integer value pointed to by pnChange is incremented by the number of +** entries in the table. +*/ +SQLITE_PRIVATE int sqlite3BtreeClearTable(Btree *p, int iTable, int *pnChange){ + int rc; + BtShared *pBt = p->pBt; + sqlite3BtreeEnter(p); + assert( p->inTrans==TRANS_WRITE ); + + rc = saveAllCursors(pBt, (Pgno)iTable, 0); + + if( SQLITE_OK==rc ){ + /* Invalidate all incrblob cursors open on table iTable (assuming iTable + ** is the root of a table b-tree - if it is not, the following call is + ** a no-op). */ + invalidateIncrblobCursors(p, 0, 1); + rc = clearDatabasePage(pBt, (Pgno)iTable, 0, pnChange); + } + sqlite3BtreeLeave(p); + return rc; +} + +/* +** Delete all information from the single table that pCur is open on. +** +** This routine only work for pCur on an ephemeral table. +*/ +SQLITE_PRIVATE int sqlite3BtreeClearTableOfCursor(BtCursor *pCur){ + return sqlite3BtreeClearTable(pCur->pBtree, pCur->pgnoRoot, 0); +} + +/* +** Erase all information in a table and add the root of the table to +** the freelist. Except, the root of the principle table (the one on +** page 1) is never added to the freelist. +** +** This routine will fail with SQLITE_LOCKED if there are any open +** cursors on the table. +** +** If AUTOVACUUM is enabled and the page at iTable is not the last +** root page in the database file, then the last root page +** in the database file is moved into the slot formerly occupied by +** iTable and that last slot formerly occupied by the last root page +** is added to the freelist instead of iTable. In this say, all +** root pages are kept at the beginning of the database file, which +** is necessary for AUTOVACUUM to work right. *piMoved is set to the +** page number that used to be the last root page in the file before +** the move. If no page gets moved, *piMoved is set to 0. +** The last root page is recorded in meta[3] and the value of +** meta[3] is updated by this procedure. +*/ +static int btreeDropTable(Btree *p, Pgno iTable, int *piMoved){ + int rc; + MemPage *pPage = 0; + BtShared *pBt = p->pBt; + + assert( sqlite3BtreeHoldsMutex(p) ); + assert( p->inTrans==TRANS_WRITE ); + + /* It is illegal to drop a table if any cursors are open on the + ** database. This is because in auto-vacuum mode the backend may + ** need to move another root-page to fill a gap left by the deleted + ** root page. If an open cursor was using this page a problem would + ** occur. + ** + ** This error is caught long before control reaches this point. + */ + if( NEVER(pBt->pCursor) ){ + sqlite3ConnectionBlocked(p->db, pBt->pCursor->pBtree->db); + return SQLITE_LOCKED_SHAREDCACHE; + } + + rc = btreeGetPage(pBt, (Pgno)iTable, &pPage, 0); + if( rc ) return rc; + rc = sqlite3BtreeClearTable(p, iTable, 0); + if( rc ){ + releasePage(pPage); + return rc; + } + + *piMoved = 0; + + if( iTable>1 ){ +#ifdef SQLITE_OMIT_AUTOVACUUM + freePage(pPage, &rc); + releasePage(pPage); +#else + if( pBt->autoVacuum ){ + Pgno maxRootPgno; + sqlite3BtreeGetMeta(p, BTREE_LARGEST_ROOT_PAGE, &maxRootPgno); + + if( iTable==maxRootPgno ){ + /* If the table being dropped is the table with the largest root-page + ** number in the database, put the root page on the free list. + */ + freePage(pPage, &rc); + releasePage(pPage); + if( rc!=SQLITE_OK ){ + return rc; + } + }else{ + /* The table being dropped does not have the largest root-page + ** number in the database. So move the page that does into the + ** gap left by the deleted root-page. + */ + MemPage *pMove; + releasePage(pPage); + rc = btreeGetPage(pBt, maxRootPgno, &pMove, 0); + if( rc!=SQLITE_OK ){ + return rc; + } + rc = relocatePage(pBt, pMove, PTRMAP_ROOTPAGE, 0, iTable, 0); + releasePage(pMove); + if( rc!=SQLITE_OK ){ + return rc; + } + pMove = 0; + rc = btreeGetPage(pBt, maxRootPgno, &pMove, 0); + freePage(pMove, &rc); + releasePage(pMove); + if( rc!=SQLITE_OK ){ + return rc; + } + *piMoved = maxRootPgno; + } + + /* Set the new 'max-root-page' value in the database header. This + ** is the old value less one, less one more if that happens to + ** be a root-page number, less one again if that is the + ** PENDING_BYTE_PAGE. + */ + maxRootPgno--; + while( maxRootPgno==PENDING_BYTE_PAGE(pBt) + || PTRMAP_ISPAGE(pBt, maxRootPgno) ){ + maxRootPgno--; + } + assert( maxRootPgno!=PENDING_BYTE_PAGE(pBt) ); + + rc = sqlite3BtreeUpdateMeta(p, 4, maxRootPgno); + }else{ + freePage(pPage, &rc); + releasePage(pPage); + } +#endif + }else{ + /* If sqlite3BtreeDropTable was called on page 1. + ** This really never should happen except in a corrupt + ** database. + */ + zeroPage(pPage, PTF_INTKEY|PTF_LEAF ); + releasePage(pPage); + } + return rc; +} +SQLITE_PRIVATE int sqlite3BtreeDropTable(Btree *p, int iTable, int *piMoved){ + int rc; + sqlite3BtreeEnter(p); + rc = btreeDropTable(p, iTable, piMoved); + sqlite3BtreeLeave(p); + return rc; +} + + +/* +** This function may only be called if the b-tree connection already +** has a read or write transaction open on the database. +** +** Read the meta-information out of a database file. Meta[0] +** is the number of free pages currently in the database. Meta[1] +** through meta[15] are available for use by higher layers. Meta[0] +** is read-only, the others are read/write. +** +** The schema layer numbers meta values differently. At the schema +** layer (and the SetCookie and ReadCookie opcodes) the number of +** free pages is not visible. So Cookie[0] is the same as Meta[1]. +*/ +SQLITE_PRIVATE void sqlite3BtreeGetMeta(Btree *p, int idx, u32 *pMeta){ + BtShared *pBt = p->pBt; + + sqlite3BtreeEnter(p); + assert( p->inTrans>TRANS_NONE ); + assert( SQLITE_OK==querySharedCacheTableLock(p, MASTER_ROOT, READ_LOCK) ); + assert( pBt->pPage1 ); + assert( idx>=0 && idx<=15 ); + + *pMeta = get4byte(&pBt->pPage1->aData[36 + idx*4]); + + /* If auto-vacuum is disabled in this build and this is an auto-vacuum + ** database, mark the database as read-only. */ +#ifdef SQLITE_OMIT_AUTOVACUUM + if( idx==BTREE_LARGEST_ROOT_PAGE && *pMeta>0 ){ + pBt->btsFlags |= BTS_READ_ONLY; + } +#endif + + sqlite3BtreeLeave(p); +} + +/* +** Write meta-information back into the database. Meta[0] is +** read-only and may not be written. +*/ +SQLITE_PRIVATE int sqlite3BtreeUpdateMeta(Btree *p, int idx, u32 iMeta){ + BtShared *pBt = p->pBt; + unsigned char *pP1; + int rc; + assert( idx>=1 && idx<=15 ); + sqlite3BtreeEnter(p); + assert( p->inTrans==TRANS_WRITE ); + assert( pBt->pPage1!=0 ); + pP1 = pBt->pPage1->aData; + rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); + if( rc==SQLITE_OK ){ + put4byte(&pP1[36 + idx*4], iMeta); +#ifndef SQLITE_OMIT_AUTOVACUUM + if( idx==BTREE_INCR_VACUUM ){ + assert( pBt->autoVacuum || iMeta==0 ); + assert( iMeta==0 || iMeta==1 ); + pBt->incrVacuum = (u8)iMeta; + } +#endif + } + sqlite3BtreeLeave(p); + return rc; +} + +#ifndef SQLITE_OMIT_BTREECOUNT +/* +** The first argument, pCur, is a cursor opened on some b-tree. Count the +** number of entries in the b-tree and write the result to *pnEntry. +** +** SQLITE_OK is returned if the operation is successfully executed. +** Otherwise, if an error is encountered (i.e. an IO error or database +** corruption) an SQLite error code is returned. +*/ +SQLITE_PRIVATE int sqlite3BtreeCount(BtCursor *pCur, i64 *pnEntry){ + i64 nEntry = 0; /* Value to return in *pnEntry */ + int rc; /* Return code */ + + if( pCur->pgnoRoot==0 ){ + *pnEntry = 0; + return SQLITE_OK; + } + rc = moveToRoot(pCur); + + /* Unless an error occurs, the following loop runs one iteration for each + ** page in the B-Tree structure (not including overflow pages). + */ + while( rc==SQLITE_OK ){ + int iIdx; /* Index of child node in parent */ + MemPage *pPage; /* Current page of the b-tree */ + + /* If this is a leaf page or the tree is not an int-key tree, then + ** this page contains countable entries. Increment the entry counter + ** accordingly. + */ + pPage = pCur->apPage[pCur->iPage]; + if( pPage->leaf || !pPage->intKey ){ + nEntry += pPage->nCell; + } + + /* pPage is a leaf node. This loop navigates the cursor so that it + ** points to the first interior cell that it points to the parent of + ** the next page in the tree that has not yet been visited. The + ** pCur->aiIdx[pCur->iPage] value is set to the index of the parent cell + ** of the page, or to the number of cells in the page if the next page + ** to visit is the right-child of its parent. + ** + ** If all pages in the tree have been visited, return SQLITE_OK to the + ** caller. + */ + if( pPage->leaf ){ + do { + if( pCur->iPage==0 ){ + /* All pages of the b-tree have been visited. Return successfully. */ + *pnEntry = nEntry; + return SQLITE_OK; + } + moveToParent(pCur); + }while ( pCur->aiIdx[pCur->iPage]>=pCur->apPage[pCur->iPage]->nCell ); + + pCur->aiIdx[pCur->iPage]++; + pPage = pCur->apPage[pCur->iPage]; + } + + /* Descend to the child node of the cell that the cursor currently + ** points at. This is the right-child if (iIdx==pPage->nCell). + */ + iIdx = pCur->aiIdx[pCur->iPage]; + if( iIdx==pPage->nCell ){ + rc = moveToChild(pCur, get4byte(&pPage->aData[pPage->hdrOffset+8])); + }else{ + rc = moveToChild(pCur, get4byte(findCell(pPage, iIdx))); + } + } + + /* An error has occurred. Return an error code. */ + return rc; +} +#endif + +/* +** Return the pager associated with a BTree. This routine is used for +** testing and debugging only. +*/ +SQLITE_PRIVATE Pager *sqlite3BtreePager(Btree *p){ + return p->pBt->pPager; +} + +#ifndef SQLITE_OMIT_INTEGRITY_CHECK +/* +** Append a message to the error message string. +*/ +static void checkAppendMsg( + IntegrityCk *pCheck, + char *zMsg1, + const char *zFormat, + ... +){ + va_list ap; + if( !pCheck->mxErr ) return; + pCheck->mxErr--; + pCheck->nErr++; + va_start(ap, zFormat); + if( pCheck->errMsg.nChar ){ + sqlite3StrAccumAppend(&pCheck->errMsg, "\n", 1); + } + if( zMsg1 ){ + sqlite3StrAccumAppendAll(&pCheck->errMsg, zMsg1); + } + sqlite3VXPrintf(&pCheck->errMsg, 1, zFormat, ap); + va_end(ap); + if( pCheck->errMsg.accError==STRACCUM_NOMEM ){ + pCheck->mallocFailed = 1; + } +} +#endif /* SQLITE_OMIT_INTEGRITY_CHECK */ + +#ifndef SQLITE_OMIT_INTEGRITY_CHECK + +/* +** Return non-zero if the bit in the IntegrityCk.aPgRef[] array that +** corresponds to page iPg is already set. +*/ +static int getPageReferenced(IntegrityCk *pCheck, Pgno iPg){ + assert( iPg<=pCheck->nPage && sizeof(pCheck->aPgRef[0])==1 ); + return (pCheck->aPgRef[iPg/8] & (1 << (iPg & 0x07))); +} + +/* +** Set the bit in the IntegrityCk.aPgRef[] array that corresponds to page iPg. +*/ +static void setPageReferenced(IntegrityCk *pCheck, Pgno iPg){ + assert( iPg<=pCheck->nPage && sizeof(pCheck->aPgRef[0])==1 ); + pCheck->aPgRef[iPg/8] |= (1 << (iPg & 0x07)); +} + + +/* +** Add 1 to the reference count for page iPage. If this is the second +** reference to the page, add an error message to pCheck->zErrMsg. +** Return 1 if there are 2 ore more references to the page and 0 if +** if this is the first reference to the page. +** +** Also check that the page number is in bounds. +*/ +static int checkRef(IntegrityCk *pCheck, Pgno iPage, char *zContext){ + if( iPage==0 ) return 1; + if( iPage>pCheck->nPage ){ + checkAppendMsg(pCheck, zContext, "invalid page number %d", iPage); + return 1; + } + if( getPageReferenced(pCheck, iPage) ){ + checkAppendMsg(pCheck, zContext, "2nd reference to page %d", iPage); + return 1; + } + setPageReferenced(pCheck, iPage); + return 0; +} + +#ifndef SQLITE_OMIT_AUTOVACUUM +/* +** Check that the entry in the pointer-map for page iChild maps to +** page iParent, pointer type ptrType. If not, append an error message +** to pCheck. +*/ +static void checkPtrmap( + IntegrityCk *pCheck, /* Integrity check context */ + Pgno iChild, /* Child page number */ + u8 eType, /* Expected pointer map type */ + Pgno iParent, /* Expected pointer map parent page number */ + char *zContext /* Context description (used for error msg) */ +){ + int rc; + u8 ePtrmapType; + Pgno iPtrmapParent; + + rc = ptrmapGet(pCheck->pBt, iChild, &ePtrmapType, &iPtrmapParent); + if( rc!=SQLITE_OK ){ + if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ) pCheck->mallocFailed = 1; + checkAppendMsg(pCheck, zContext, "Failed to read ptrmap key=%d", iChild); + return; + } + + if( ePtrmapType!=eType || iPtrmapParent!=iParent ){ + checkAppendMsg(pCheck, zContext, + "Bad ptr map entry key=%d expected=(%d,%d) got=(%d,%d)", + iChild, eType, iParent, ePtrmapType, iPtrmapParent); + } +} +#endif + +/* +** Check the integrity of the freelist or of an overflow page list. +** Verify that the number of pages on the list is N. +*/ +static void checkList( + IntegrityCk *pCheck, /* Integrity checking context */ + int isFreeList, /* True for a freelist. False for overflow page list */ + int iPage, /* Page number for first page in the list */ + int N, /* Expected number of pages in the list */ + char *zContext /* Context for error messages */ +){ + int i; + int expected = N; + int iFirst = iPage; + while( N-- > 0 && pCheck->mxErr ){ + DbPage *pOvflPage; + unsigned char *pOvflData; + if( iPage<1 ){ + checkAppendMsg(pCheck, zContext, + "%d of %d pages missing from overflow list starting at %d", + N+1, expected, iFirst); + break; + } + if( checkRef(pCheck, iPage, zContext) ) break; + if( sqlite3PagerGet(pCheck->pPager, (Pgno)iPage, &pOvflPage) ){ + checkAppendMsg(pCheck, zContext, "failed to get page %d", iPage); + break; + } + pOvflData = (unsigned char *)sqlite3PagerGetData(pOvflPage); + if( isFreeList ){ + int n = get4byte(&pOvflData[4]); +#ifndef SQLITE_OMIT_AUTOVACUUM + if( pCheck->pBt->autoVacuum ){ + checkPtrmap(pCheck, iPage, PTRMAP_FREEPAGE, 0, zContext); + } +#endif + if( n>(int)pCheck->pBt->usableSize/4-2 ){ + checkAppendMsg(pCheck, zContext, + "freelist leaf count too big on page %d", iPage); + N--; + }else{ + for(i=0; ipBt->autoVacuum ){ + checkPtrmap(pCheck, iFreePage, PTRMAP_FREEPAGE, 0, zContext); + } +#endif + checkRef(pCheck, iFreePage, zContext); + } + N -= n; + } + } +#ifndef SQLITE_OMIT_AUTOVACUUM + else{ + /* If this database supports auto-vacuum and iPage is not the last + ** page in this overflow list, check that the pointer-map entry for + ** the following page matches iPage. + */ + if( pCheck->pBt->autoVacuum && N>0 ){ + i = get4byte(pOvflData); + checkPtrmap(pCheck, i, PTRMAP_OVERFLOW2, iPage, zContext); + } + } +#endif + iPage = get4byte(pOvflData); + sqlite3PagerUnref(pOvflPage); + } +} +#endif /* SQLITE_OMIT_INTEGRITY_CHECK */ + +#ifndef SQLITE_OMIT_INTEGRITY_CHECK +/* +** Do various sanity checks on a single page of a tree. Return +** the tree depth. Root pages return 0. Parents of root pages +** return 1, and so forth. +** +** These checks are done: +** +** 1. Make sure that cells and freeblocks do not overlap +** but combine to completely cover the page. +** NO 2. Make sure cell keys are in order. +** NO 3. Make sure no key is less than or equal to zLowerBound. +** NO 4. Make sure no key is greater than or equal to zUpperBound. +** 5. Check the integrity of overflow pages. +** 6. Recursively call checkTreePage on all children. +** 7. Verify that the depth of all children is the same. +** 8. Make sure this page is at least 33% full or else it is +** the root of the tree. +*/ +static int checkTreePage( + IntegrityCk *pCheck, /* Context for the sanity check */ + int iPage, /* Page number of the page to check */ + char *zParentContext, /* Parent context */ + i64 *pnParentMinKey, + i64 *pnParentMaxKey +){ + MemPage *pPage; + int i, rc, depth, d2, pgno, cnt; + int hdr, cellStart; + int nCell; + u8 *data; + BtShared *pBt; + int usableSize; + char zContext[100]; + char *hit = 0; + i64 nMinKey = 0; + i64 nMaxKey = 0; + + sqlite3_snprintf(sizeof(zContext), zContext, "Page %d: ", iPage); + + /* Check that the page exists + */ + pBt = pCheck->pBt; + usableSize = pBt->usableSize; + if( iPage==0 ) return 0; + if( checkRef(pCheck, iPage, zParentContext) ) return 0; + if( (rc = btreeGetPage(pBt, (Pgno)iPage, &pPage, 0))!=0 ){ + checkAppendMsg(pCheck, zContext, + "unable to get the page. error code=%d", rc); + return 0; + } + + /* Clear MemPage.isInit to make sure the corruption detection code in + ** btreeInitPage() is executed. */ + pPage->isInit = 0; + if( (rc = btreeInitPage(pPage))!=0 ){ + assert( rc==SQLITE_CORRUPT ); /* The only possible error from InitPage */ + checkAppendMsg(pCheck, zContext, + "btreeInitPage() returns error code %d", rc); + releasePage(pPage); + return 0; + } + + /* Check out all the cells. + */ + depth = 0; + for(i=0; inCell && pCheck->mxErr; i++){ + u8 *pCell; + u32 sz; + CellInfo info; + + /* Check payload overflow pages + */ + sqlite3_snprintf(sizeof(zContext), zContext, + "On tree page %d cell %d: ", iPage, i); + pCell = findCell(pPage,i); + btreeParseCellPtr(pPage, pCell, &info); + sz = info.nData; + if( !pPage->intKey ) sz += (int)info.nKey; + /* For intKey pages, check that the keys are in order. + */ + else if( i==0 ) nMinKey = nMaxKey = info.nKey; + else{ + if( info.nKey <= nMaxKey ){ + checkAppendMsg(pCheck, zContext, + "Rowid %lld out of order (previous was %lld)", info.nKey, nMaxKey); + } + nMaxKey = info.nKey; + } + assert( sz==info.nPayload ); + if( (sz>info.nLocal) + && (&pCell[info.iOverflow]<=&pPage->aData[pBt->usableSize]) + ){ + int nPage = (sz - info.nLocal + usableSize - 5)/(usableSize - 4); + Pgno pgnoOvfl = get4byte(&pCell[info.iOverflow]); +#ifndef SQLITE_OMIT_AUTOVACUUM + if( pBt->autoVacuum ){ + checkPtrmap(pCheck, pgnoOvfl, PTRMAP_OVERFLOW1, iPage, zContext); + } +#endif + checkList(pCheck, 0, pgnoOvfl, nPage, zContext); + } + + /* Check sanity of left child page. + */ + if( !pPage->leaf ){ + pgno = get4byte(pCell); +#ifndef SQLITE_OMIT_AUTOVACUUM + if( pBt->autoVacuum ){ + checkPtrmap(pCheck, pgno, PTRMAP_BTREE, iPage, zContext); + } +#endif + d2 = checkTreePage(pCheck, pgno, zContext, &nMinKey, i==0 ? NULL : &nMaxKey); + if( i>0 && d2!=depth ){ + checkAppendMsg(pCheck, zContext, "Child page depth differs"); + } + depth = d2; + } + } + + if( !pPage->leaf ){ + pgno = get4byte(&pPage->aData[pPage->hdrOffset+8]); + sqlite3_snprintf(sizeof(zContext), zContext, + "On page %d at right child: ", iPage); +#ifndef SQLITE_OMIT_AUTOVACUUM + if( pBt->autoVacuum ){ + checkPtrmap(pCheck, pgno, PTRMAP_BTREE, iPage, zContext); + } +#endif + checkTreePage(pCheck, pgno, zContext, NULL, !pPage->nCell ? NULL : &nMaxKey); + } + + /* For intKey leaf pages, check that the min/max keys are in order + ** with any left/parent/right pages. + */ + if( pPage->leaf && pPage->intKey ){ + /* if we are a left child page */ + if( pnParentMinKey ){ + /* if we are the left most child page */ + if( !pnParentMaxKey ){ + if( nMaxKey > *pnParentMinKey ){ + checkAppendMsg(pCheck, zContext, + "Rowid %lld out of order (max larger than parent min of %lld)", + nMaxKey, *pnParentMinKey); + } + }else{ + if( nMinKey <= *pnParentMinKey ){ + checkAppendMsg(pCheck, zContext, + "Rowid %lld out of order (min less than parent min of %lld)", + nMinKey, *pnParentMinKey); + } + if( nMaxKey > *pnParentMaxKey ){ + checkAppendMsg(pCheck, zContext, + "Rowid %lld out of order (max larger than parent max of %lld)", + nMaxKey, *pnParentMaxKey); + } + *pnParentMinKey = nMaxKey; + } + /* else if we're a right child page */ + } else if( pnParentMaxKey ){ + if( nMinKey <= *pnParentMaxKey ){ + checkAppendMsg(pCheck, zContext, + "Rowid %lld out of order (min less than parent max of %lld)", + nMinKey, *pnParentMaxKey); + } + } + } + + /* Check for complete coverage of the page + */ + data = pPage->aData; + hdr = pPage->hdrOffset; + hit = sqlite3PageMalloc( pBt->pageSize ); + if( hit==0 ){ + pCheck->mallocFailed = 1; + }else{ + int contentOffset = get2byteNotZero(&data[hdr+5]); + assert( contentOffset<=usableSize ); /* Enforced by btreeInitPage() */ + memset(hit+contentOffset, 0, usableSize-contentOffset); + memset(hit, 1, contentOffset); + nCell = get2byte(&data[hdr+3]); + cellStart = hdr + 12 - 4*pPage->leaf; + for(i=0; i=usableSize ){ + checkAppendMsg(pCheck, 0, + "Corruption detected in cell %d on page %d",i,iPage); + }else{ + for(j=pc+size-1; j>=pc; j--) hit[j]++; + } + } + i = get2byte(&data[hdr+1]); + while( i>0 ){ + int size, j; + assert( i<=usableSize-4 ); /* Enforced by btreeInitPage() */ + size = get2byte(&data[i+2]); + assert( i+size<=usableSize ); /* Enforced by btreeInitPage() */ + for(j=i+size-1; j>=i; j--) hit[j]++; + j = get2byte(&data[i]); + assert( j==0 || j>i+size ); /* Enforced by btreeInitPage() */ + assert( j<=usableSize-4 ); /* Enforced by btreeInitPage() */ + i = j; + } + for(i=cnt=0; i1 ){ + checkAppendMsg(pCheck, 0, + "Multiple uses for byte %d of page %d", i, iPage); + break; + } + } + if( cnt!=data[hdr+7] ){ + checkAppendMsg(pCheck, 0, + "Fragmentation of %d bytes reported as %d on page %d", + cnt, data[hdr+7], iPage); + } + } + sqlite3PageFree(hit); + releasePage(pPage); + return depth+1; +} +#endif /* SQLITE_OMIT_INTEGRITY_CHECK */ + +#ifndef SQLITE_OMIT_INTEGRITY_CHECK +/* +** This routine does a complete check of the given BTree file. aRoot[] is +** an array of pages numbers were each page number is the root page of +** a table. nRoot is the number of entries in aRoot. +** +** A read-only or read-write transaction must be opened before calling +** this function. +** +** Write the number of error seen in *pnErr. Except for some memory +** allocation errors, an error message held in memory obtained from +** malloc is returned if *pnErr is non-zero. If *pnErr==0 then NULL is +** returned. If a memory allocation error occurs, NULL is returned. +*/ +SQLITE_PRIVATE char *sqlite3BtreeIntegrityCheck( + Btree *p, /* The btree to be checked */ + int *aRoot, /* An array of root pages numbers for individual trees */ + int nRoot, /* Number of entries in aRoot[] */ + int mxErr, /* Stop reporting errors after this many */ + int *pnErr /* Write number of errors seen to this variable */ +){ + Pgno i; + int nRef; + IntegrityCk sCheck; + BtShared *pBt = p->pBt; + char zErr[100]; + + sqlite3BtreeEnter(p); + assert( p->inTrans>TRANS_NONE && pBt->inTransaction>TRANS_NONE ); + nRef = sqlite3PagerRefcount(pBt->pPager); + sCheck.pBt = pBt; + sCheck.pPager = pBt->pPager; + sCheck.nPage = btreePagecount(sCheck.pBt); + sCheck.mxErr = mxErr; + sCheck.nErr = 0; + sCheck.mallocFailed = 0; + *pnErr = 0; + if( sCheck.nPage==0 ){ + sqlite3BtreeLeave(p); + return 0; + } + + sCheck.aPgRef = sqlite3MallocZero((sCheck.nPage / 8)+ 1); + if( !sCheck.aPgRef ){ + *pnErr = 1; + sqlite3BtreeLeave(p); + return 0; + } + i = PENDING_BYTE_PAGE(pBt); + if( i<=sCheck.nPage ) setPageReferenced(&sCheck, i); + sqlite3StrAccumInit(&sCheck.errMsg, zErr, sizeof(zErr), SQLITE_MAX_LENGTH); + sCheck.errMsg.useMalloc = 2; + + /* Check the integrity of the freelist + */ + checkList(&sCheck, 1, get4byte(&pBt->pPage1->aData[32]), + get4byte(&pBt->pPage1->aData[36]), "Main freelist: "); + + /* Check all the tables. + */ + for(i=0; (int)iautoVacuum && aRoot[i]>1 ){ + checkPtrmap(&sCheck, aRoot[i], PTRMAP_ROOTPAGE, 0, 0); + } +#endif + checkTreePage(&sCheck, aRoot[i], "List of tree roots: ", NULL, NULL); + } + + /* Make sure every page in the file is referenced + */ + for(i=1; i<=sCheck.nPage && sCheck.mxErr; i++){ +#ifdef SQLITE_OMIT_AUTOVACUUM + if( getPageReferenced(&sCheck, i)==0 ){ + checkAppendMsg(&sCheck, 0, "Page %d is never used", i); + } +#else + /* If the database supports auto-vacuum, make sure no tables contain + ** references to pointer-map pages. + */ + if( getPageReferenced(&sCheck, i)==0 && + (PTRMAP_PAGENO(pBt, i)!=i || !pBt->autoVacuum) ){ + checkAppendMsg(&sCheck, 0, "Page %d is never used", i); + } + if( getPageReferenced(&sCheck, i)!=0 && + (PTRMAP_PAGENO(pBt, i)==i && pBt->autoVacuum) ){ + checkAppendMsg(&sCheck, 0, "Pointer map page %d is referenced", i); + } +#endif + } + + /* Make sure this analysis did not leave any unref() pages. + ** This is an internal consistency check; an integrity check + ** of the integrity check. + */ + if( NEVER(nRef != sqlite3PagerRefcount(pBt->pPager)) ){ + checkAppendMsg(&sCheck, 0, + "Outstanding page count goes from %d to %d during this analysis", + nRef, sqlite3PagerRefcount(pBt->pPager) + ); + } + + /* Clean up and report errors. + */ + sqlite3BtreeLeave(p); + sqlite3_free(sCheck.aPgRef); + if( sCheck.mallocFailed ){ + sqlite3StrAccumReset(&sCheck.errMsg); + *pnErr = sCheck.nErr+1; + return 0; + } + *pnErr = sCheck.nErr; + if( sCheck.nErr==0 ) sqlite3StrAccumReset(&sCheck.errMsg); + return sqlite3StrAccumFinish(&sCheck.errMsg); +} +#endif /* SQLITE_OMIT_INTEGRITY_CHECK */ + +/* +** Return the full pathname of the underlying database file. Return +** an empty string if the database is in-memory or a TEMP database. +** +** The pager filename is invariant as long as the pager is +** open so it is safe to access without the BtShared mutex. +*/ +SQLITE_PRIVATE const char *sqlite3BtreeGetFilename(Btree *p){ + assert( p->pBt->pPager!=0 ); + return sqlite3PagerFilename(p->pBt->pPager, 1); +} + +/* +** Return the pathname of the journal file for this database. The return +** value of this routine is the same regardless of whether the journal file +** has been created or not. +** +** The pager journal filename is invariant as long as the pager is +** open so it is safe to access without the BtShared mutex. +*/ +SQLITE_PRIVATE const char *sqlite3BtreeGetJournalname(Btree *p){ + assert( p->pBt->pPager!=0 ); + return sqlite3PagerJournalname(p->pBt->pPager); +} + +/* +** Return non-zero if a transaction is active. +*/ +SQLITE_PRIVATE int sqlite3BtreeIsInTrans(Btree *p){ + assert( p==0 || sqlite3_mutex_held(p->db->mutex) ); + return (p && (p->inTrans==TRANS_WRITE)); +} + +#ifndef SQLITE_OMIT_WAL +/* +** Run a checkpoint on the Btree passed as the first argument. +** +** Return SQLITE_LOCKED if this or any other connection has an open +** transaction on the shared-cache the argument Btree is connected to. +** +** Parameter eMode is one of SQLITE_CHECKPOINT_PASSIVE, FULL or RESTART. +*/ +SQLITE_PRIVATE int sqlite3BtreeCheckpoint(Btree *p, int eMode, int *pnLog, int *pnCkpt){ + int rc = SQLITE_OK; + if( p ){ + BtShared *pBt = p->pBt; + sqlite3BtreeEnter(p); + if( pBt->inTransaction!=TRANS_NONE ){ + rc = SQLITE_LOCKED; + }else{ + rc = sqlite3PagerCheckpoint(pBt->pPager, eMode, pnLog, pnCkpt); + } + sqlite3BtreeLeave(p); + } + return rc; +} +#endif + +/* +** Return non-zero if a read (or write) transaction is active. +*/ +SQLITE_PRIVATE int sqlite3BtreeIsInReadTrans(Btree *p){ + assert( p ); + assert( sqlite3_mutex_held(p->db->mutex) ); + return p->inTrans!=TRANS_NONE; +} + +SQLITE_PRIVATE int sqlite3BtreeIsInBackup(Btree *p){ + assert( p ); + assert( sqlite3_mutex_held(p->db->mutex) ); + return p->nBackup!=0; +} + +/* +** This function returns a pointer to a blob of memory associated with +** a single shared-btree. The memory is used by client code for its own +** purposes (for example, to store a high-level schema associated with +** the shared-btree). The btree layer manages reference counting issues. +** +** The first time this is called on a shared-btree, nBytes bytes of memory +** are allocated, zeroed, and returned to the caller. For each subsequent +** call the nBytes parameter is ignored and a pointer to the same blob +** of memory returned. +** +** If the nBytes parameter is 0 and the blob of memory has not yet been +** allocated, a null pointer is returned. If the blob has already been +** allocated, it is returned as normal. +** +** Just before the shared-btree is closed, the function passed as the +** xFree argument when the memory allocation was made is invoked on the +** blob of allocated memory. The xFree function should not call sqlite3_free() +** on the memory, the btree layer does that. +*/ +SQLITE_PRIVATE void *sqlite3BtreeSchema(Btree *p, int nBytes, void(*xFree)(void *)){ + BtShared *pBt = p->pBt; + sqlite3BtreeEnter(p); + if( !pBt->pSchema && nBytes ){ + pBt->pSchema = sqlite3DbMallocZero(0, nBytes); + pBt->xFreeSchema = xFree; + } + sqlite3BtreeLeave(p); + return pBt->pSchema; +} + +/* +** Return SQLITE_LOCKED_SHAREDCACHE if another user of the same shared +** btree as the argument handle holds an exclusive lock on the +** sqlite_master table. Otherwise SQLITE_OK. +*/ +SQLITE_PRIVATE int sqlite3BtreeSchemaLocked(Btree *p){ + int rc; + assert( sqlite3_mutex_held(p->db->mutex) ); + sqlite3BtreeEnter(p); + rc = querySharedCacheTableLock(p, MASTER_ROOT, READ_LOCK); + assert( rc==SQLITE_OK || rc==SQLITE_LOCKED_SHAREDCACHE ); + sqlite3BtreeLeave(p); + return rc; +} + + +#ifndef SQLITE_OMIT_SHARED_CACHE +/* +** Obtain a lock on the table whose root page is iTab. The +** lock is a write lock if isWritelock is true or a read lock +** if it is false. +*/ +SQLITE_PRIVATE int sqlite3BtreeLockTable(Btree *p, int iTab, u8 isWriteLock){ + int rc = SQLITE_OK; + assert( p->inTrans!=TRANS_NONE ); + if( p->sharable ){ + u8 lockType = READ_LOCK + isWriteLock; + assert( READ_LOCK+1==WRITE_LOCK ); + assert( isWriteLock==0 || isWriteLock==1 ); + + sqlite3BtreeEnter(p); + rc = querySharedCacheTableLock(p, iTab, lockType); + if( rc==SQLITE_OK ){ + rc = setSharedCacheTableLock(p, iTab, lockType); + } + sqlite3BtreeLeave(p); + } + return rc; +} +#endif + +#ifndef SQLITE_OMIT_INCRBLOB +/* +** Argument pCsr must be a cursor opened for writing on an +** INTKEY table currently pointing at a valid table entry. +** This function modifies the data stored as part of that entry. +** +** Only the data content may only be modified, it is not possible to +** change the length of the data stored. If this function is called with +** parameters that attempt to write past the end of the existing data, +** no modifications are made and SQLITE_CORRUPT is returned. +*/ +SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor *pCsr, u32 offset, u32 amt, void *z){ + int rc; + assert( cursorHoldsMutex(pCsr) ); + assert( sqlite3_mutex_held(pCsr->pBtree->db->mutex) ); + assert( pCsr->curFlags & BTCF_Incrblob ); + + rc = restoreCursorPosition(pCsr); + if( rc!=SQLITE_OK ){ + return rc; + } + assert( pCsr->eState!=CURSOR_REQUIRESEEK ); + if( pCsr->eState!=CURSOR_VALID ){ + return SQLITE_ABORT; + } + + /* Save the positions of all other cursors open on this table. This is + ** required in case any of them are holding references to an xFetch + ** version of the b-tree page modified by the accessPayload call below. + ** + ** Note that pCsr must be open on a BTREE_INTKEY table and saveCursorPosition() + ** and hence saveAllCursors() cannot fail on a BTREE_INTKEY table, hence + ** saveAllCursors can only return SQLITE_OK. + */ + VVA_ONLY(rc =) saveAllCursors(pCsr->pBt, pCsr->pgnoRoot, pCsr); + assert( rc==SQLITE_OK ); + + /* Check some assumptions: + ** (a) the cursor is open for writing, + ** (b) there is a read/write transaction open, + ** (c) the connection holds a write-lock on the table (if required), + ** (d) there are no conflicting read-locks, and + ** (e) the cursor points at a valid row of an intKey table. + */ + if( (pCsr->curFlags & BTCF_WriteFlag)==0 ){ + return SQLITE_READONLY; + } + assert( (pCsr->pBt->btsFlags & BTS_READ_ONLY)==0 + && pCsr->pBt->inTransaction==TRANS_WRITE ); + assert( hasSharedCacheTableLock(pCsr->pBtree, pCsr->pgnoRoot, 0, 2) ); + assert( !hasReadConflicts(pCsr->pBtree, pCsr->pgnoRoot) ); + assert( pCsr->apPage[pCsr->iPage]->intKey ); + + return accessPayload(pCsr, offset, amt, (unsigned char *)z, 1); +} + +/* +** Mark this cursor as an incremental blob cursor. +*/ +SQLITE_PRIVATE void sqlite3BtreeIncrblobCursor(BtCursor *pCur){ + pCur->curFlags |= BTCF_Incrblob; +} +#endif + +/* +** Set both the "read version" (single byte at byte offset 18) and +** "write version" (single byte at byte offset 19) fields in the database +** header to iVersion. +*/ +SQLITE_PRIVATE int sqlite3BtreeSetVersion(Btree *pBtree, int iVersion){ + BtShared *pBt = pBtree->pBt; + int rc; /* Return code */ + + assert( iVersion==1 || iVersion==2 ); + + /* If setting the version fields to 1, do not automatically open the + ** WAL connection, even if the version fields are currently set to 2. + */ + pBt->btsFlags &= ~BTS_NO_WAL; + if( iVersion==1 ) pBt->btsFlags |= BTS_NO_WAL; + + rc = sqlite3BtreeBeginTrans(pBtree, 0); + if( rc==SQLITE_OK ){ + u8 *aData = pBt->pPage1->aData; + if( aData[18]!=(u8)iVersion || aData[19]!=(u8)iVersion ){ + rc = sqlite3BtreeBeginTrans(pBtree, 2); + if( rc==SQLITE_OK ){ + rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); + if( rc==SQLITE_OK ){ + aData[18] = (u8)iVersion; + aData[19] = (u8)iVersion; + } + } + } + } + + pBt->btsFlags &= ~BTS_NO_WAL; + return rc; +} + +/* +** set the mask of hint flags for cursor pCsr. Currently the only valid +** values are 0 and BTREE_BULKLOAD. +*/ +SQLITE_PRIVATE void sqlite3BtreeCursorHints(BtCursor *pCsr, unsigned int mask){ + assert( mask==BTREE_BULKLOAD || mask==0 ); + pCsr->hints = mask; +} + +/* +** Return true if the given Btree is read-only. +*/ +SQLITE_PRIVATE int sqlite3BtreeIsReadonly(Btree *p){ + return (p->pBt->btsFlags & BTS_READ_ONLY)!=0; +} + +/************** End of btree.c ***********************************************/ +/************** Begin file backup.c ******************************************/ +/* +** 2009 January 28 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains the implementation of the sqlite3_backup_XXX() +** API functions and the related features. +*/ + +/* +** Structure allocated for each backup operation. +*/ +struct sqlite3_backup { + sqlite3* pDestDb; /* Destination database handle */ + Btree *pDest; /* Destination b-tree file */ + u32 iDestSchema; /* Original schema cookie in destination */ + int bDestLocked; /* True once a write-transaction is open on pDest */ + + Pgno iNext; /* Page number of the next source page to copy */ + sqlite3* pSrcDb; /* Source database handle */ + Btree *pSrc; /* Source b-tree file */ + + int rc; /* Backup process error code */ + + /* These two variables are set by every call to backup_step(). They are + ** read by calls to backup_remaining() and backup_pagecount(). + */ + Pgno nRemaining; /* Number of pages left to copy */ + Pgno nPagecount; /* Total number of pages to copy */ + + int isAttached; /* True once backup has been registered with pager */ + sqlite3_backup *pNext; /* Next backup associated with source pager */ +}; + +/* +** THREAD SAFETY NOTES: +** +** Once it has been created using backup_init(), a single sqlite3_backup +** structure may be accessed via two groups of thread-safe entry points: +** +** * Via the sqlite3_backup_XXX() API function backup_step() and +** backup_finish(). Both these functions obtain the source database +** handle mutex and the mutex associated with the source BtShared +** structure, in that order. +** +** * Via the BackupUpdate() and BackupRestart() functions, which are +** invoked by the pager layer to report various state changes in +** the page cache associated with the source database. The mutex +** associated with the source database BtShared structure will always +** be held when either of these functions are invoked. +** +** The other sqlite3_backup_XXX() API functions, backup_remaining() and +** backup_pagecount() are not thread-safe functions. If they are called +** while some other thread is calling backup_step() or backup_finish(), +** the values returned may be invalid. There is no way for a call to +** BackupUpdate() or BackupRestart() to interfere with backup_remaining() +** or backup_pagecount(). +** +** Depending on the SQLite configuration, the database handles and/or +** the Btree objects may have their own mutexes that require locking. +** Non-sharable Btrees (in-memory databases for example), do not have +** associated mutexes. +*/ + +/* +** Return a pointer corresponding to database zDb (i.e. "main", "temp") +** in connection handle pDb. If such a database cannot be found, return +** a NULL pointer and write an error message to pErrorDb. +** +** If the "temp" database is requested, it may need to be opened by this +** function. If an error occurs while doing so, return 0 and write an +** error message to pErrorDb. +*/ +static Btree *findBtree(sqlite3 *pErrorDb, sqlite3 *pDb, const char *zDb){ + int i = sqlite3FindDbName(pDb, zDb); + + if( i==1 ){ + Parse *pParse; + int rc = 0; + pParse = sqlite3StackAllocZero(pErrorDb, sizeof(*pParse)); + if( pParse==0 ){ + sqlite3Error(pErrorDb, SQLITE_NOMEM, "out of memory"); + rc = SQLITE_NOMEM; + }else{ + pParse->db = pDb; + if( sqlite3OpenTempDatabase(pParse) ){ + sqlite3Error(pErrorDb, pParse->rc, "%s", pParse->zErrMsg); + rc = SQLITE_ERROR; + } + sqlite3DbFree(pErrorDb, pParse->zErrMsg); + sqlite3ParserReset(pParse); + sqlite3StackFree(pErrorDb, pParse); + } + if( rc ){ + return 0; + } + } + + if( i<0 ){ + sqlite3Error(pErrorDb, SQLITE_ERROR, "unknown database %s", zDb); + return 0; + } + + return pDb->aDb[i].pBt; +} + +/* +** Attempt to set the page size of the destination to match the page size +** of the source. +*/ +static int setDestPgsz(sqlite3_backup *p){ + int rc; + rc = sqlite3BtreeSetPageSize(p->pDest,sqlite3BtreeGetPageSize(p->pSrc),-1,0); + return rc; +} + +/* +** Create an sqlite3_backup process to copy the contents of zSrcDb from +** connection handle pSrcDb to zDestDb in pDestDb. If successful, return +** a pointer to the new sqlite3_backup object. +** +** If an error occurs, NULL is returned and an error code and error message +** stored in database handle pDestDb. +*/ +SQLITE_API sqlite3_backup *sqlite3_backup_init( + sqlite3* pDestDb, /* Database to write to */ + const char *zDestDb, /* Name of database within pDestDb */ + sqlite3* pSrcDb, /* Database connection to read from */ + const char *zSrcDb /* Name of database within pSrcDb */ +){ + sqlite3_backup *p; /* Value to return */ + + /* Lock the source database handle. The destination database + ** handle is not locked in this routine, but it is locked in + ** sqlite3_backup_step(). The user is required to ensure that no + ** other thread accesses the destination handle for the duration + ** of the backup operation. Any attempt to use the destination + ** database connection while a backup is in progress may cause + ** a malfunction or a deadlock. + */ + sqlite3_mutex_enter(pSrcDb->mutex); + sqlite3_mutex_enter(pDestDb->mutex); + + if( pSrcDb==pDestDb ){ + sqlite3Error( + pDestDb, SQLITE_ERROR, "source and destination must be distinct" + ); + p = 0; + }else { + /* Allocate space for a new sqlite3_backup object... + ** EVIDENCE-OF: R-64852-21591 The sqlite3_backup object is created by a + ** call to sqlite3_backup_init() and is destroyed by a call to + ** sqlite3_backup_finish(). */ + p = (sqlite3_backup *)sqlite3MallocZero(sizeof(sqlite3_backup)); + if( !p ){ + sqlite3Error(pDestDb, SQLITE_NOMEM, 0); + } + } + + /* If the allocation succeeded, populate the new object. */ + if( p ){ + p->pSrc = findBtree(pDestDb, pSrcDb, zSrcDb); + p->pDest = findBtree(pDestDb, pDestDb, zDestDb); + p->pDestDb = pDestDb; + p->pSrcDb = pSrcDb; + p->iNext = 1; + p->isAttached = 0; + + if( 0==p->pSrc || 0==p->pDest || setDestPgsz(p)==SQLITE_NOMEM ){ + /* One (or both) of the named databases did not exist or an OOM + ** error was hit. The error has already been written into the + ** pDestDb handle. All that is left to do here is free the + ** sqlite3_backup structure. + */ + sqlite3_free(p); + p = 0; + } + } + if( p ){ + p->pSrc->nBackup++; + } + + sqlite3_mutex_leave(pDestDb->mutex); + sqlite3_mutex_leave(pSrcDb->mutex); + return p; +} + +/* +** Argument rc is an SQLite error code. Return true if this error is +** considered fatal if encountered during a backup operation. All errors +** are considered fatal except for SQLITE_BUSY and SQLITE_LOCKED. +*/ +static int isFatalError(int rc){ + return (rc!=SQLITE_OK && rc!=SQLITE_BUSY && ALWAYS(rc!=SQLITE_LOCKED)); +} + +/* +** Parameter zSrcData points to a buffer containing the data for +** page iSrcPg from the source database. Copy this data into the +** destination database. +*/ +static int backupOnePage( + sqlite3_backup *p, /* Backup handle */ + Pgno iSrcPg, /* Source database page to backup */ + const u8 *zSrcData, /* Source database page data */ + int bUpdate /* True for an update, false otherwise */ +){ + Pager * const pDestPager = sqlite3BtreePager(p->pDest); + const int nSrcPgsz = sqlite3BtreeGetPageSize(p->pSrc); + int nDestPgsz = sqlite3BtreeGetPageSize(p->pDest); + const int nCopy = MIN(nSrcPgsz, nDestPgsz); + const i64 iEnd = (i64)iSrcPg*(i64)nSrcPgsz; +#ifdef SQLITE_HAS_CODEC + /* Use BtreeGetReserveNoMutex() for the source b-tree, as although it is + ** guaranteed that the shared-mutex is held by this thread, handle + ** p->pSrc may not actually be the owner. */ + int nSrcReserve = sqlite3BtreeGetReserveNoMutex(p->pSrc); + int nDestReserve = sqlite3BtreeGetReserve(p->pDest); +#endif + int rc = SQLITE_OK; + i64 iOff; + + assert( sqlite3BtreeGetReserveNoMutex(p->pSrc)>=0 ); + assert( p->bDestLocked ); + assert( !isFatalError(p->rc) ); + assert( iSrcPg!=PENDING_BYTE_PAGE(p->pSrc->pBt) ); + assert( zSrcData ); + + /* Catch the case where the destination is an in-memory database and the + ** page sizes of the source and destination differ. + */ + if( nSrcPgsz!=nDestPgsz && sqlite3PagerIsMemdb(pDestPager) ){ + rc = SQLITE_READONLY; + } + +#ifdef SQLITE_HAS_CODEC + /* Backup is not possible if the page size of the destination is changing + ** and a codec is in use. + */ + if( nSrcPgsz!=nDestPgsz && sqlite3PagerGetCodec(pDestPager)!=0 ){ + rc = SQLITE_READONLY; + } + + /* Backup is not possible if the number of bytes of reserve space differ + ** between source and destination. If there is a difference, try to + ** fix the destination to agree with the source. If that is not possible, + ** then the backup cannot proceed. + */ + if( nSrcReserve!=nDestReserve ){ + u32 newPgsz = nSrcPgsz; + rc = sqlite3PagerSetPagesize(pDestPager, &newPgsz, nSrcReserve); + if( rc==SQLITE_OK && newPgsz!=nSrcPgsz ) rc = SQLITE_READONLY; + } +#endif + + /* This loop runs once for each destination page spanned by the source + ** page. For each iteration, variable iOff is set to the byte offset + ** of the destination page. + */ + for(iOff=iEnd-(i64)nSrcPgsz; rc==SQLITE_OK && iOffpDest->pBt) ) continue; + if( SQLITE_OK==(rc = sqlite3PagerGet(pDestPager, iDest, &pDestPg)) + && SQLITE_OK==(rc = sqlite3PagerWrite(pDestPg)) + ){ + const u8 *zIn = &zSrcData[iOff%nSrcPgsz]; + u8 *zDestData = sqlite3PagerGetData(pDestPg); + u8 *zOut = &zDestData[iOff%nDestPgsz]; + + /* Copy the data from the source page into the destination page. + ** Then clear the Btree layer MemPage.isInit flag. Both this module + ** and the pager code use this trick (clearing the first byte + ** of the page 'extra' space to invalidate the Btree layers + ** cached parse of the page). MemPage.isInit is marked + ** "MUST BE FIRST" for this purpose. + */ + memcpy(zOut, zIn, nCopy); + ((u8 *)sqlite3PagerGetExtra(pDestPg))[0] = 0; + if( iOff==0 && bUpdate==0 ){ + sqlite3Put4byte(&zOut[28], sqlite3BtreeLastPage(p->pSrc)); + } + } + sqlite3PagerUnref(pDestPg); + } + + return rc; +} + +/* +** If pFile is currently larger than iSize bytes, then truncate it to +** exactly iSize bytes. If pFile is not larger than iSize bytes, then +** this function is a no-op. +** +** Return SQLITE_OK if everything is successful, or an SQLite error +** code if an error occurs. +*/ +static int backupTruncateFile(sqlite3_file *pFile, i64 iSize){ + i64 iCurrent; + int rc = sqlite3OsFileSize(pFile, &iCurrent); + if( rc==SQLITE_OK && iCurrent>iSize ){ + rc = sqlite3OsTruncate(pFile, iSize); + } + return rc; +} + +/* +** Register this backup object with the associated source pager for +** callbacks when pages are changed or the cache invalidated. +*/ +static void attachBackupObject(sqlite3_backup *p){ + sqlite3_backup **pp; + assert( sqlite3BtreeHoldsMutex(p->pSrc) ); + pp = sqlite3PagerBackupPtr(sqlite3BtreePager(p->pSrc)); + p->pNext = *pp; + *pp = p; + p->isAttached = 1; +} + +/* +** Copy nPage pages from the source b-tree to the destination. +*/ +SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage){ + int rc; + int destMode; /* Destination journal mode */ + int pgszSrc = 0; /* Source page size */ + int pgszDest = 0; /* Destination page size */ + + sqlite3_mutex_enter(p->pSrcDb->mutex); + sqlite3BtreeEnter(p->pSrc); + if( p->pDestDb ){ + sqlite3_mutex_enter(p->pDestDb->mutex); + } + + rc = p->rc; + if( !isFatalError(rc) ){ + Pager * const pSrcPager = sqlite3BtreePager(p->pSrc); /* Source pager */ + Pager * const pDestPager = sqlite3BtreePager(p->pDest); /* Dest pager */ + int ii; /* Iterator variable */ + int nSrcPage = -1; /* Size of source db in pages */ + int bCloseTrans = 0; /* True if src db requires unlocking */ + + /* If the source pager is currently in a write-transaction, return + ** SQLITE_BUSY immediately. + */ + if( p->pDestDb && p->pSrc->pBt->inTransaction==TRANS_WRITE ){ + rc = SQLITE_BUSY; + }else{ + rc = SQLITE_OK; + } + + /* Lock the destination database, if it is not locked already. */ + if( SQLITE_OK==rc && p->bDestLocked==0 + && SQLITE_OK==(rc = sqlite3BtreeBeginTrans(p->pDest, 2)) + ){ + p->bDestLocked = 1; + sqlite3BtreeGetMeta(p->pDest, BTREE_SCHEMA_VERSION, &p->iDestSchema); + } + + /* If there is no open read-transaction on the source database, open + ** one now. If a transaction is opened here, then it will be closed + ** before this function exits. + */ + if( rc==SQLITE_OK && 0==sqlite3BtreeIsInReadTrans(p->pSrc) ){ + rc = sqlite3BtreeBeginTrans(p->pSrc, 0); + bCloseTrans = 1; + } + + /* Do not allow backup if the destination database is in WAL mode + ** and the page sizes are different between source and destination */ + pgszSrc = sqlite3BtreeGetPageSize(p->pSrc); + pgszDest = sqlite3BtreeGetPageSize(p->pDest); + destMode = sqlite3PagerGetJournalMode(sqlite3BtreePager(p->pDest)); + if( SQLITE_OK==rc && destMode==PAGER_JOURNALMODE_WAL && pgszSrc!=pgszDest ){ + rc = SQLITE_READONLY; + } + + /* Now that there is a read-lock on the source database, query the + ** source pager for the number of pages in the database. + */ + nSrcPage = (int)sqlite3BtreeLastPage(p->pSrc); + assert( nSrcPage>=0 ); + for(ii=0; (nPage<0 || iiiNext<=(Pgno)nSrcPage && !rc; ii++){ + const Pgno iSrcPg = p->iNext; /* Source page number */ + if( iSrcPg!=PENDING_BYTE_PAGE(p->pSrc->pBt) ){ + DbPage *pSrcPg; /* Source page object */ + rc = sqlite3PagerAcquire(pSrcPager, iSrcPg, &pSrcPg, + PAGER_GET_READONLY); + if( rc==SQLITE_OK ){ + rc = backupOnePage(p, iSrcPg, sqlite3PagerGetData(pSrcPg), 0); + sqlite3PagerUnref(pSrcPg); + } + } + p->iNext++; + } + if( rc==SQLITE_OK ){ + p->nPagecount = nSrcPage; + p->nRemaining = nSrcPage+1-p->iNext; + if( p->iNext>(Pgno)nSrcPage ){ + rc = SQLITE_DONE; + }else if( !p->isAttached ){ + attachBackupObject(p); + } + } + + /* Update the schema version field in the destination database. This + ** is to make sure that the schema-version really does change in + ** the case where the source and destination databases have the + ** same schema version. + */ + if( rc==SQLITE_DONE ){ + if( nSrcPage==0 ){ + rc = sqlite3BtreeNewDb(p->pDest); + nSrcPage = 1; + } + if( rc==SQLITE_OK || rc==SQLITE_DONE ){ + rc = sqlite3BtreeUpdateMeta(p->pDest,1,p->iDestSchema+1); + } + if( rc==SQLITE_OK ){ + if( p->pDestDb ){ + sqlite3ResetAllSchemasOfConnection(p->pDestDb); + } + if( destMode==PAGER_JOURNALMODE_WAL ){ + rc = sqlite3BtreeSetVersion(p->pDest, 2); + } + } + if( rc==SQLITE_OK ){ + int nDestTruncate; + /* Set nDestTruncate to the final number of pages in the destination + ** database. The complication here is that the destination page + ** size may be different to the source page size. + ** + ** If the source page size is smaller than the destination page size, + ** round up. In this case the call to sqlite3OsTruncate() below will + ** fix the size of the file. However it is important to call + ** sqlite3PagerTruncateImage() here so that any pages in the + ** destination file that lie beyond the nDestTruncate page mark are + ** journalled by PagerCommitPhaseOne() before they are destroyed + ** by the file truncation. + */ + assert( pgszSrc==sqlite3BtreeGetPageSize(p->pSrc) ); + assert( pgszDest==sqlite3BtreeGetPageSize(p->pDest) ); + if( pgszSrcpDest->pBt) ){ + nDestTruncate--; + } + }else{ + nDestTruncate = nSrcPage * (pgszSrc/pgszDest); + } + assert( nDestTruncate>0 ); + + if( pgszSrc= iSize || ( + nDestTruncate==(int)(PENDING_BYTE_PAGE(p->pDest->pBt)-1) + && iSize>=PENDING_BYTE && iSize<=PENDING_BYTE+pgszDest + )); + + /* This block ensures that all data required to recreate the original + ** database has been stored in the journal for pDestPager and the + ** journal synced to disk. So at this point we may safely modify + ** the database file in any way, knowing that if a power failure + ** occurs, the original database will be reconstructed from the + ** journal file. */ + sqlite3PagerPagecount(pDestPager, &nDstPage); + for(iPg=nDestTruncate; rc==SQLITE_OK && iPg<=(Pgno)nDstPage; iPg++){ + if( iPg!=PENDING_BYTE_PAGE(p->pDest->pBt) ){ + DbPage *pPg; + rc = sqlite3PagerGet(pDestPager, iPg, &pPg); + if( rc==SQLITE_OK ){ + rc = sqlite3PagerWrite(pPg); + sqlite3PagerUnref(pPg); + } + } + } + if( rc==SQLITE_OK ){ + rc = sqlite3PagerCommitPhaseOne(pDestPager, 0, 1); + } + + /* Write the extra pages and truncate the database file as required */ + iEnd = MIN(PENDING_BYTE + pgszDest, iSize); + for( + iOff=PENDING_BYTE+pgszSrc; + rc==SQLITE_OK && iOffpDest, 0)) + ){ + rc = SQLITE_DONE; + } + } + } + + /* If bCloseTrans is true, then this function opened a read transaction + ** on the source database. Close the read transaction here. There is + ** no need to check the return values of the btree methods here, as + ** "committing" a read-only transaction cannot fail. + */ + if( bCloseTrans ){ + TESTONLY( int rc2 ); + TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0); + TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0); + assert( rc2==SQLITE_OK ); + } + + if( rc==SQLITE_IOERR_NOMEM ){ + rc = SQLITE_NOMEM; + } + p->rc = rc; + } + if( p->pDestDb ){ + sqlite3_mutex_leave(p->pDestDb->mutex); + } + sqlite3BtreeLeave(p->pSrc); + sqlite3_mutex_leave(p->pSrcDb->mutex); + return rc; +} + +/* +** Release all resources associated with an sqlite3_backup* handle. +*/ +SQLITE_API int sqlite3_backup_finish(sqlite3_backup *p){ + sqlite3_backup **pp; /* Ptr to head of pagers backup list */ + sqlite3 *pSrcDb; /* Source database connection */ + int rc; /* Value to return */ + + /* Enter the mutexes */ + if( p==0 ) return SQLITE_OK; + pSrcDb = p->pSrcDb; + sqlite3_mutex_enter(pSrcDb->mutex); + sqlite3BtreeEnter(p->pSrc); + if( p->pDestDb ){ + sqlite3_mutex_enter(p->pDestDb->mutex); + } + + /* Detach this backup from the source pager. */ + if( p->pDestDb ){ + p->pSrc->nBackup--; + } + if( p->isAttached ){ + pp = sqlite3PagerBackupPtr(sqlite3BtreePager(p->pSrc)); + while( *pp!=p ){ + pp = &(*pp)->pNext; + } + *pp = p->pNext; + } + + /* If a transaction is still open on the Btree, roll it back. */ + sqlite3BtreeRollback(p->pDest, SQLITE_OK); + + /* Set the error code of the destination database handle. */ + rc = (p->rc==SQLITE_DONE) ? SQLITE_OK : p->rc; + if( p->pDestDb ){ + sqlite3Error(p->pDestDb, rc, 0); + + /* Exit the mutexes and free the backup context structure. */ + sqlite3LeaveMutexAndCloseZombie(p->pDestDb); + } + sqlite3BtreeLeave(p->pSrc); + if( p->pDestDb ){ + /* EVIDENCE-OF: R-64852-21591 The sqlite3_backup object is created by a + ** call to sqlite3_backup_init() and is destroyed by a call to + ** sqlite3_backup_finish(). */ + sqlite3_free(p); + } + sqlite3LeaveMutexAndCloseZombie(pSrcDb); + return rc; +} + +/* +** Return the number of pages still to be backed up as of the most recent +** call to sqlite3_backup_step(). +*/ +SQLITE_API int sqlite3_backup_remaining(sqlite3_backup *p){ + return p->nRemaining; +} + +/* +** Return the total number of pages in the source database as of the most +** recent call to sqlite3_backup_step(). +*/ +SQLITE_API int sqlite3_backup_pagecount(sqlite3_backup *p){ + return p->nPagecount; +} + +/* +** This function is called after the contents of page iPage of the +** source database have been modified. If page iPage has already been +** copied into the destination database, then the data written to the +** destination is now invalidated. The destination copy of iPage needs +** to be updated with the new data before the backup operation is +** complete. +** +** It is assumed that the mutex associated with the BtShared object +** corresponding to the source database is held when this function is +** called. +*/ +SQLITE_PRIVATE void sqlite3BackupUpdate(sqlite3_backup *pBackup, Pgno iPage, const u8 *aData){ + sqlite3_backup *p; /* Iterator variable */ + for(p=pBackup; p; p=p->pNext){ + assert( sqlite3_mutex_held(p->pSrc->pBt->mutex) ); + if( !isFatalError(p->rc) && iPageiNext ){ + /* The backup process p has already copied page iPage. But now it + ** has been modified by a transaction on the source pager. Copy + ** the new data into the backup. + */ + int rc; + assert( p->pDestDb ); + sqlite3_mutex_enter(p->pDestDb->mutex); + rc = backupOnePage(p, iPage, aData, 1); + sqlite3_mutex_leave(p->pDestDb->mutex); + assert( rc!=SQLITE_BUSY && rc!=SQLITE_LOCKED ); + if( rc!=SQLITE_OK ){ + p->rc = rc; + } + } + } +} + +/* +** Restart the backup process. This is called when the pager layer +** detects that the database has been modified by an external database +** connection. In this case there is no way of knowing which of the +** pages that have been copied into the destination database are still +** valid and which are not, so the entire process needs to be restarted. +** +** It is assumed that the mutex associated with the BtShared object +** corresponding to the source database is held when this function is +** called. +*/ +SQLITE_PRIVATE void sqlite3BackupRestart(sqlite3_backup *pBackup){ + sqlite3_backup *p; /* Iterator variable */ + for(p=pBackup; p; p=p->pNext){ + assert( sqlite3_mutex_held(p->pSrc->pBt->mutex) ); + p->iNext = 1; + } +} + +#ifndef SQLITE_OMIT_VACUUM +/* +** Copy the complete content of pBtFrom into pBtTo. A transaction +** must be active for both files. +** +** The size of file pTo may be reduced by this operation. If anything +** goes wrong, the transaction on pTo is rolled back. If successful, the +** transaction is committed before returning. +*/ +SQLITE_PRIVATE int sqlite3BtreeCopyFile(Btree *pTo, Btree *pFrom){ + int rc; + sqlite3_file *pFd; /* File descriptor for database pTo */ + sqlite3_backup b; + sqlite3BtreeEnter(pTo); + sqlite3BtreeEnter(pFrom); + + assert( sqlite3BtreeIsInTrans(pTo) ); + pFd = sqlite3PagerFile(sqlite3BtreePager(pTo)); + if( pFd->pMethods ){ + i64 nByte = sqlite3BtreeGetPageSize(pFrom)*(i64)sqlite3BtreeLastPage(pFrom); + rc = sqlite3OsFileControl(pFd, SQLITE_FCNTL_OVERWRITE, &nByte); + if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; + if( rc ) goto copy_finished; + } + + /* Set up an sqlite3_backup object. sqlite3_backup.pDestDb must be set + ** to 0. This is used by the implementations of sqlite3_backup_step() + ** and sqlite3_backup_finish() to detect that they are being called + ** from this function, not directly by the user. + */ + memset(&b, 0, sizeof(b)); + b.pSrcDb = pFrom->db; + b.pSrc = pFrom; + b.pDest = pTo; + b.iNext = 1; + + /* 0x7FFFFFFF is the hard limit for the number of pages in a database + ** file. By passing this as the number of pages to copy to + ** sqlite3_backup_step(), we can guarantee that the copy finishes + ** within a single call (unless an error occurs). The assert() statement + ** checks this assumption - (p->rc) should be set to either SQLITE_DONE + ** or an error code. + */ + sqlite3_backup_step(&b, 0x7FFFFFFF); + assert( b.rc!=SQLITE_OK ); + rc = sqlite3_backup_finish(&b); + if( rc==SQLITE_OK ){ + pTo->pBt->btsFlags &= ~BTS_PAGESIZE_FIXED; + }else{ + sqlite3PagerClearCache(sqlite3BtreePager(b.pDest)); + } + + assert( sqlite3BtreeIsInTrans(pTo)==0 ); +copy_finished: + sqlite3BtreeLeave(pFrom); + sqlite3BtreeLeave(pTo); + return rc; +} +#endif /* SQLITE_OMIT_VACUUM */ + +/************** End of backup.c **********************************************/ +/************** Begin file vdbemem.c *****************************************/ +/* +** 2004 May 26 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains code use to manipulate "Mem" structure. A "Mem" +** stores a single value in the VDBE. Mem is an opaque structure visible +** only within the VDBE. Interface routines refer to a Mem using the +** name sqlite_value +*/ + +#ifdef SQLITE_DEBUG +/* +** Check invariants on a Mem object. +** +** This routine is intended for use inside of assert() statements, like +** this: assert( sqlite3VdbeCheckMemInvariants(pMem) ); +*/ +SQLITE_PRIVATE int sqlite3VdbeCheckMemInvariants(Mem *p){ + /* The MEM_Dyn bit is set if and only if Mem.xDel is a non-NULL destructor + ** function for Mem.z + */ + assert( (p->flags & MEM_Dyn)==0 || p->xDel!=0 ); + assert( (p->flags & MEM_Dyn)!=0 || p->xDel==0 ); + + /* If p holds a string or blob, the Mem.z must point to exactly + ** one of the following: + ** + ** (1) Memory in Mem.zMalloc and managed by the Mem object + ** (2) Memory to be freed using Mem.xDel + ** (3) An ephermal string or blob + ** (4) A static string or blob + */ + if( (p->flags & (MEM_Str|MEM_Blob)) && p->z!=0 ){ + assert( + ((p->z==p->zMalloc)? 1 : 0) + + ((p->flags&MEM_Dyn)!=0 ? 1 : 0) + + ((p->flags&MEM_Ephem)!=0 ? 1 : 0) + + ((p->flags&MEM_Static)!=0 ? 1 : 0) == 1 + ); + } + + return 1; +} +#endif + + +/* +** If pMem is an object with a valid string representation, this routine +** ensures the internal encoding for the string representation is +** 'desiredEnc', one of SQLITE_UTF8, SQLITE_UTF16LE or SQLITE_UTF16BE. +** +** If pMem is not a string object, or the encoding of the string +** representation is already stored using the requested encoding, then this +** routine is a no-op. +** +** SQLITE_OK is returned if the conversion is successful (or not required). +** SQLITE_NOMEM may be returned if a malloc() fails during conversion +** between formats. +*/ +SQLITE_PRIVATE int sqlite3VdbeChangeEncoding(Mem *pMem, int desiredEnc){ +#ifndef SQLITE_OMIT_UTF16 + int rc; +#endif + assert( (pMem->flags&MEM_RowSet)==0 ); + assert( desiredEnc==SQLITE_UTF8 || desiredEnc==SQLITE_UTF16LE + || desiredEnc==SQLITE_UTF16BE ); + if( !(pMem->flags&MEM_Str) || pMem->enc==desiredEnc ){ + return SQLITE_OK; + } + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); +#ifdef SQLITE_OMIT_UTF16 + return SQLITE_ERROR; +#else + + /* MemTranslate() may return SQLITE_OK or SQLITE_NOMEM. If NOMEM is returned, + ** then the encoding of the value may not have changed. + */ + rc = sqlite3VdbeMemTranslate(pMem, (u8)desiredEnc); + assert(rc==SQLITE_OK || rc==SQLITE_NOMEM); + assert(rc==SQLITE_OK || pMem->enc!=desiredEnc); + assert(rc==SQLITE_NOMEM || pMem->enc==desiredEnc); + return rc; +#endif +} + +/* +** Make sure pMem->z points to a writable allocation of at least +** min(n,32) bytes. +** +** If the bPreserve argument is true, then copy of the content of +** pMem->z into the new allocation. pMem must be either a string or +** blob if bPreserve is true. If bPreserve is false, any prior content +** in pMem->z is discarded. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemGrow(Mem *pMem, int n, int bPreserve){ + assert( sqlite3VdbeCheckMemInvariants(pMem) ); + assert( (pMem->flags&MEM_RowSet)==0 ); + + /* If the bPreserve flag is set to true, then the memory cell must already + ** contain a valid string or blob value. */ + assert( bPreserve==0 || pMem->flags&(MEM_Blob|MEM_Str) ); + testcase( bPreserve && pMem->z==0 ); + + if( pMem->zMalloc==0 || sqlite3DbMallocSize(pMem->db, pMem->zMalloc)z==pMem->zMalloc ){ + pMem->z = pMem->zMalloc = sqlite3DbReallocOrFree(pMem->db, pMem->z, n); + bPreserve = 0; + }else{ + sqlite3DbFree(pMem->db, pMem->zMalloc); + pMem->zMalloc = sqlite3DbMallocRaw(pMem->db, n); + } + if( pMem->zMalloc==0 ){ + VdbeMemRelease(pMem); + pMem->z = 0; + pMem->flags = MEM_Null; + return SQLITE_NOMEM; + } + } + + if( pMem->z && bPreserve && pMem->z!=pMem->zMalloc ){ + memcpy(pMem->zMalloc, pMem->z, pMem->n); + } + if( (pMem->flags&MEM_Dyn)!=0 ){ + assert( pMem->xDel!=0 && pMem->xDel!=SQLITE_DYNAMIC ); + pMem->xDel((void *)(pMem->z)); + } + + pMem->z = pMem->zMalloc; + pMem->flags &= ~(MEM_Dyn|MEM_Ephem|MEM_Static); + pMem->xDel = 0; + return SQLITE_OK; +} + +/* +** Make the given Mem object MEM_Dyn. In other words, make it so +** that any TEXT or BLOB content is stored in memory obtained from +** malloc(). In this way, we know that the memory is safe to be +** overwritten or altered. +** +** Return SQLITE_OK on success or SQLITE_NOMEM if malloc fails. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemMakeWriteable(Mem *pMem){ + int f; + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + assert( (pMem->flags&MEM_RowSet)==0 ); + ExpandBlob(pMem); + f = pMem->flags; + if( (f&(MEM_Str|MEM_Blob)) && pMem->z!=pMem->zMalloc ){ + if( sqlite3VdbeMemGrow(pMem, pMem->n + 2, 1) ){ + return SQLITE_NOMEM; + } + pMem->z[pMem->n] = 0; + pMem->z[pMem->n+1] = 0; + pMem->flags |= MEM_Term; +#ifdef SQLITE_DEBUG + pMem->pScopyFrom = 0; +#endif + } + + return SQLITE_OK; +} + +/* +** If the given Mem* has a zero-filled tail, turn it into an ordinary +** blob stored in dynamically allocated space. +*/ +#ifndef SQLITE_OMIT_INCRBLOB +SQLITE_PRIVATE int sqlite3VdbeMemExpandBlob(Mem *pMem){ + if( pMem->flags & MEM_Zero ){ + int nByte; + assert( pMem->flags&MEM_Blob ); + assert( (pMem->flags&MEM_RowSet)==0 ); + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + + /* Set nByte to the number of bytes required to store the expanded blob. */ + nByte = pMem->n + pMem->u.nZero; + if( nByte<=0 ){ + nByte = 1; + } + if( sqlite3VdbeMemGrow(pMem, nByte, 1) ){ + return SQLITE_NOMEM; + } + + memset(&pMem->z[pMem->n], 0, pMem->u.nZero); + pMem->n += pMem->u.nZero; + pMem->flags &= ~(MEM_Zero|MEM_Term); + } + return SQLITE_OK; +} +#endif + + +/* +** Make sure the given Mem is \u0000 terminated. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemNulTerminate(Mem *pMem){ + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + if( (pMem->flags & MEM_Term)!=0 || (pMem->flags & MEM_Str)==0 ){ + return SQLITE_OK; /* Nothing to do */ + } + if( sqlite3VdbeMemGrow(pMem, pMem->n+2, 1) ){ + return SQLITE_NOMEM; + } + pMem->z[pMem->n] = 0; + pMem->z[pMem->n+1] = 0; + pMem->flags |= MEM_Term; + return SQLITE_OK; +} + +/* +** Add MEM_Str to the set of representations for the given Mem. Numbers +** are converted using sqlite3_snprintf(). Converting a BLOB to a string +** is a no-op. +** +** Existing representations MEM_Int and MEM_Real are *not* invalidated. +** +** A MEM_Null value will never be passed to this function. This function is +** used for converting values to text for returning to the user (i.e. via +** sqlite3_value_text()), or for ensuring that values to be used as btree +** keys are strings. In the former case a NULL pointer is returned the +** user and the later is an internal programming error. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemStringify(Mem *pMem, int enc){ + int rc = SQLITE_OK; + int fg = pMem->flags; + const int nByte = 32; + + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + assert( !(fg&MEM_Zero) ); + assert( !(fg&(MEM_Str|MEM_Blob)) ); + assert( fg&(MEM_Int|MEM_Real) ); + assert( (pMem->flags&MEM_RowSet)==0 ); + assert( EIGHT_BYTE_ALIGNMENT(pMem) ); + + + if( sqlite3VdbeMemGrow(pMem, nByte, 0) ){ + return SQLITE_NOMEM; + } + + /* For a Real or Integer, use sqlite3_mprintf() to produce the UTF-8 + ** string representation of the value. Then, if the required encoding + ** is UTF-16le or UTF-16be do a translation. + ** + ** FIX ME: It would be better if sqlite3_snprintf() could do UTF-16. + */ + if( fg & MEM_Int ){ + sqlite3_snprintf(nByte, pMem->z, "%lld", pMem->u.i); + }else{ + assert( fg & MEM_Real ); + sqlite3_snprintf(nByte, pMem->z, "%!.15g", pMem->r); + } + pMem->n = sqlite3Strlen30(pMem->z); + pMem->enc = SQLITE_UTF8; + pMem->flags |= MEM_Str|MEM_Term; + sqlite3VdbeChangeEncoding(pMem, enc); + return rc; +} + +/* +** Memory cell pMem contains the context of an aggregate function. +** This routine calls the finalize method for that function. The +** result of the aggregate is stored back into pMem. +** +** Return SQLITE_ERROR if the finalizer reports an error. SQLITE_OK +** otherwise. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc){ + int rc = SQLITE_OK; + if( ALWAYS(pFunc && pFunc->xFinalize) ){ + sqlite3_context ctx; + assert( (pMem->flags & MEM_Null)!=0 || pFunc==pMem->u.pDef ); + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + memset(&ctx, 0, sizeof(ctx)); + ctx.s.flags = MEM_Null; + ctx.s.db = pMem->db; + ctx.pMem = pMem; + ctx.pFunc = pFunc; + pFunc->xFinalize(&ctx); /* IMP: R-24505-23230 */ + assert( 0==(pMem->flags&MEM_Dyn) && !pMem->xDel ); + sqlite3DbFree(pMem->db, pMem->zMalloc); + memcpy(pMem, &ctx.s, sizeof(ctx.s)); + rc = ctx.isError; + } + return rc; +} + +/* +** If the memory cell contains a string value that must be freed by +** invoking an external callback, free it now. Calling this function +** does not free any Mem.zMalloc buffer. +*/ +SQLITE_PRIVATE void sqlite3VdbeMemReleaseExternal(Mem *p){ + assert( p->db==0 || sqlite3_mutex_held(p->db->mutex) ); + if( p->flags&MEM_Agg ){ + sqlite3VdbeMemFinalize(p, p->u.pDef); + assert( (p->flags & MEM_Agg)==0 ); + sqlite3VdbeMemRelease(p); + }else if( p->flags&MEM_Dyn ){ + assert( (p->flags&MEM_RowSet)==0 ); + assert( p->xDel!=SQLITE_DYNAMIC && p->xDel!=0 ); + p->xDel((void *)p->z); + p->xDel = 0; + }else if( p->flags&MEM_RowSet ){ + sqlite3RowSetClear(p->u.pRowSet); + }else if( p->flags&MEM_Frame ){ + sqlite3VdbeMemSetNull(p); + } +} + +/* +** Release any memory held by the Mem. This may leave the Mem in an +** inconsistent state, for example with (Mem.z==0) and +** (Mem.flags==MEM_Str). +*/ +SQLITE_PRIVATE void sqlite3VdbeMemRelease(Mem *p){ + assert( sqlite3VdbeCheckMemInvariants(p) ); + VdbeMemRelease(p); + if( p->zMalloc ){ + sqlite3DbFree(p->db, p->zMalloc); + p->zMalloc = 0; + } + p->z = 0; + assert( p->xDel==0 ); /* Zeroed by VdbeMemRelease() above */ +} + +/* +** Convert a 64-bit IEEE double into a 64-bit signed integer. +** If the double is out of range of a 64-bit signed integer then +** return the closest available 64-bit signed integer. +*/ +static i64 doubleToInt64(double r){ +#ifdef SQLITE_OMIT_FLOATING_POINT + /* When floating-point is omitted, double and int64 are the same thing */ + return r; +#else + /* + ** Many compilers we encounter do not define constants for the + ** minimum and maximum 64-bit integers, or they define them + ** inconsistently. And many do not understand the "LL" notation. + ** So we define our own static constants here using nothing + ** larger than a 32-bit integer constant. + */ + static const i64 maxInt = LARGEST_INT64; + static const i64 minInt = SMALLEST_INT64; + + if( r<=(double)minInt ){ + return minInt; + }else if( r>=(double)maxInt ){ + return maxInt; + }else{ + return (i64)r; + } +#endif +} + +/* +** Return some kind of integer value which is the best we can do +** at representing the value that *pMem describes as an integer. +** If pMem is an integer, then the value is exact. If pMem is +** a floating-point then the value returned is the integer part. +** If pMem is a string or blob, then we make an attempt to convert +** it into a integer and return that. If pMem represents an +** an SQL-NULL value, return 0. +** +** If pMem represents a string value, its encoding might be changed. +*/ +SQLITE_PRIVATE i64 sqlite3VdbeIntValue(Mem *pMem){ + int flags; + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + assert( EIGHT_BYTE_ALIGNMENT(pMem) ); + flags = pMem->flags; + if( flags & MEM_Int ){ + return pMem->u.i; + }else if( flags & MEM_Real ){ + return doubleToInt64(pMem->r); + }else if( flags & (MEM_Str|MEM_Blob) ){ + i64 value = 0; + assert( pMem->z || pMem->n==0 ); + testcase( pMem->z==0 ); + sqlite3Atoi64(pMem->z, &value, pMem->n, pMem->enc); + return value; + }else{ + return 0; + } +} + +/* +** Return the best representation of pMem that we can get into a +** double. If pMem is already a double or an integer, return its +** value. If it is a string or blob, try to convert it to a double. +** If it is a NULL, return 0.0. +*/ +SQLITE_PRIVATE double sqlite3VdbeRealValue(Mem *pMem){ + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + assert( EIGHT_BYTE_ALIGNMENT(pMem) ); + if( pMem->flags & MEM_Real ){ + return pMem->r; + }else if( pMem->flags & MEM_Int ){ + return (double)pMem->u.i; + }else if( pMem->flags & (MEM_Str|MEM_Blob) ){ + /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ + double val = (double)0; + sqlite3AtoF(pMem->z, &val, pMem->n, pMem->enc); + return val; + }else{ + /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ + return (double)0; + } +} + +/* +** The MEM structure is already a MEM_Real. Try to also make it a +** MEM_Int if we can. +*/ +SQLITE_PRIVATE void sqlite3VdbeIntegerAffinity(Mem *pMem){ + assert( pMem->flags & MEM_Real ); + assert( (pMem->flags & MEM_RowSet)==0 ); + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + assert( EIGHT_BYTE_ALIGNMENT(pMem) ); + + pMem->u.i = doubleToInt64(pMem->r); + + /* Only mark the value as an integer if + ** + ** (1) the round-trip conversion real->int->real is a no-op, and + ** (2) The integer is neither the largest nor the smallest + ** possible integer (ticket #3922) + ** + ** The second and third terms in the following conditional enforces + ** the second condition under the assumption that addition overflow causes + ** values to wrap around. + */ + if( pMem->r==(double)pMem->u.i + && pMem->u.i>SMALLEST_INT64 + && pMem->u.iflags |= MEM_Int; + } +} + +/* +** Convert pMem to type integer. Invalidate any prior representations. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemIntegerify(Mem *pMem){ + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + assert( (pMem->flags & MEM_RowSet)==0 ); + assert( EIGHT_BYTE_ALIGNMENT(pMem) ); + + pMem->u.i = sqlite3VdbeIntValue(pMem); + MemSetTypeFlag(pMem, MEM_Int); + return SQLITE_OK; +} + +/* +** Convert pMem so that it is of type MEM_Real. +** Invalidate any prior representations. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemRealify(Mem *pMem){ + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + assert( EIGHT_BYTE_ALIGNMENT(pMem) ); + + pMem->r = sqlite3VdbeRealValue(pMem); + MemSetTypeFlag(pMem, MEM_Real); + return SQLITE_OK; +} + +/* +** Convert pMem so that it has types MEM_Real or MEM_Int or both. +** Invalidate any prior representations. +** +** Every effort is made to force the conversion, even if the input +** is a string that does not look completely like a number. Convert +** as much of the string as we can and ignore the rest. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemNumerify(Mem *pMem){ + if( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))==0 ){ + assert( (pMem->flags & (MEM_Blob|MEM_Str))!=0 ); + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + if( 0==sqlite3Atoi64(pMem->z, &pMem->u.i, pMem->n, pMem->enc) ){ + MemSetTypeFlag(pMem, MEM_Int); + }else{ + pMem->r = sqlite3VdbeRealValue(pMem); + MemSetTypeFlag(pMem, MEM_Real); + sqlite3VdbeIntegerAffinity(pMem); + } + } + assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))!=0 ); + pMem->flags &= ~(MEM_Str|MEM_Blob); + return SQLITE_OK; +} + +/* +** Delete any previous value and set the value stored in *pMem to NULL. +*/ +SQLITE_PRIVATE void sqlite3VdbeMemSetNull(Mem *pMem){ + if( pMem->flags & MEM_Frame ){ + VdbeFrame *pFrame = pMem->u.pFrame; + pFrame->pParent = pFrame->v->pDelFrame; + pFrame->v->pDelFrame = pFrame; + } + if( pMem->flags & MEM_RowSet ){ + sqlite3RowSetClear(pMem->u.pRowSet); + } + MemSetTypeFlag(pMem, MEM_Null); +} +SQLITE_PRIVATE void sqlite3ValueSetNull(sqlite3_value *p){ + sqlite3VdbeMemSetNull((Mem*)p); +} + +/* +** Delete any previous value and set the value to be a BLOB of length +** n containing all zeros. +*/ +SQLITE_PRIVATE void sqlite3VdbeMemSetZeroBlob(Mem *pMem, int n){ + sqlite3VdbeMemRelease(pMem); + pMem->flags = MEM_Blob|MEM_Zero; + pMem->n = 0; + if( n<0 ) n = 0; + pMem->u.nZero = n; + pMem->enc = SQLITE_UTF8; + +#ifdef SQLITE_OMIT_INCRBLOB + sqlite3VdbeMemGrow(pMem, n, 0); + if( pMem->z ){ + pMem->n = n; + memset(pMem->z, 0, n); + } +#endif +} + +/* +** Delete any previous value and set the value stored in *pMem to val, +** manifest type INTEGER. +*/ +SQLITE_PRIVATE void sqlite3VdbeMemSetInt64(Mem *pMem, i64 val){ + sqlite3VdbeMemRelease(pMem); + pMem->u.i = val; + pMem->flags = MEM_Int; +} + +#ifndef SQLITE_OMIT_FLOATING_POINT +/* +** Delete any previous value and set the value stored in *pMem to val, +** manifest type REAL. +*/ +SQLITE_PRIVATE void sqlite3VdbeMemSetDouble(Mem *pMem, double val){ + if( sqlite3IsNaN(val) ){ + sqlite3VdbeMemSetNull(pMem); + }else{ + sqlite3VdbeMemRelease(pMem); + pMem->r = val; + pMem->flags = MEM_Real; + } +} +#endif + +/* +** Delete any previous value and set the value of pMem to be an +** empty boolean index. +*/ +SQLITE_PRIVATE void sqlite3VdbeMemSetRowSet(Mem *pMem){ + sqlite3 *db = pMem->db; + assert( db!=0 ); + assert( (pMem->flags & MEM_RowSet)==0 ); + sqlite3VdbeMemRelease(pMem); + pMem->zMalloc = sqlite3DbMallocRaw(db, 64); + if( db->mallocFailed ){ + pMem->flags = MEM_Null; + }else{ + assert( pMem->zMalloc ); + pMem->u.pRowSet = sqlite3RowSetInit(db, pMem->zMalloc, + sqlite3DbMallocSize(db, pMem->zMalloc)); + assert( pMem->u.pRowSet!=0 ); + pMem->flags = MEM_RowSet; + } +} + +/* +** Return true if the Mem object contains a TEXT or BLOB that is +** too large - whose size exceeds SQLITE_MAX_LENGTH. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemTooBig(Mem *p){ + assert( p->db!=0 ); + if( p->flags & (MEM_Str|MEM_Blob) ){ + int n = p->n; + if( p->flags & MEM_Zero ){ + n += p->u.nZero; + } + return n>p->db->aLimit[SQLITE_LIMIT_LENGTH]; + } + return 0; +} + +#ifdef SQLITE_DEBUG +/* +** This routine prepares a memory cell for modication by breaking +** its link to a shallow copy and by marking any current shallow +** copies of this cell as invalid. +** +** This is used for testing and debugging only - to make sure shallow +** copies are not misused. +*/ +SQLITE_PRIVATE void sqlite3VdbeMemAboutToChange(Vdbe *pVdbe, Mem *pMem){ + int i; + Mem *pX; + for(i=1, pX=&pVdbe->aMem[1]; i<=pVdbe->nMem; i++, pX++){ + if( pX->pScopyFrom==pMem ){ + pX->flags |= MEM_Undefined; + pX->pScopyFrom = 0; + } + } + pMem->pScopyFrom = 0; +} +#endif /* SQLITE_DEBUG */ + +/* +** Size of struct Mem not including the Mem.zMalloc member. +*/ +#define MEMCELLSIZE offsetof(Mem,zMalloc) + +/* +** Make an shallow copy of pFrom into pTo. Prior contents of +** pTo are freed. The pFrom->z field is not duplicated. If +** pFrom->z is used, then pTo->z points to the same thing as pFrom->z +** and flags gets srcType (either MEM_Ephem or MEM_Static). +*/ +SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType){ + assert( (pFrom->flags & MEM_RowSet)==0 ); + VdbeMemRelease(pTo); + memcpy(pTo, pFrom, MEMCELLSIZE); + pTo->xDel = 0; + if( (pFrom->flags&MEM_Static)==0 ){ + pTo->flags &= ~(MEM_Dyn|MEM_Static|MEM_Ephem); + assert( srcType==MEM_Ephem || srcType==MEM_Static ); + pTo->flags |= srcType; + } +} + +/* +** Make a full copy of pFrom into pTo. Prior contents of pTo are +** freed before the copy is made. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemCopy(Mem *pTo, const Mem *pFrom){ + int rc = SQLITE_OK; + + assert( (pFrom->flags & MEM_RowSet)==0 ); + VdbeMemRelease(pTo); + memcpy(pTo, pFrom, MEMCELLSIZE); + pTo->flags &= ~MEM_Dyn; + pTo->xDel = 0; + + if( pTo->flags&(MEM_Str|MEM_Blob) ){ + if( 0==(pFrom->flags&MEM_Static) ){ + pTo->flags |= MEM_Ephem; + rc = sqlite3VdbeMemMakeWriteable(pTo); + } + } + + return rc; +} + +/* +** Transfer the contents of pFrom to pTo. Any existing value in pTo is +** freed. If pFrom contains ephemeral data, a copy is made. +** +** pFrom contains an SQL NULL when this routine returns. +*/ +SQLITE_PRIVATE void sqlite3VdbeMemMove(Mem *pTo, Mem *pFrom){ + assert( pFrom->db==0 || sqlite3_mutex_held(pFrom->db->mutex) ); + assert( pTo->db==0 || sqlite3_mutex_held(pTo->db->mutex) ); + assert( pFrom->db==0 || pTo->db==0 || pFrom->db==pTo->db ); + + sqlite3VdbeMemRelease(pTo); + memcpy(pTo, pFrom, sizeof(Mem)); + pFrom->flags = MEM_Null; + pFrom->xDel = 0; + pFrom->zMalloc = 0; +} + +/* +** Change the value of a Mem to be a string or a BLOB. +** +** The memory management strategy depends on the value of the xDel +** parameter. If the value passed is SQLITE_TRANSIENT, then the +** string is copied into a (possibly existing) buffer managed by the +** Mem structure. Otherwise, any existing buffer is freed and the +** pointer copied. +** +** If the string is too large (if it exceeds the SQLITE_LIMIT_LENGTH +** size limit) then no memory allocation occurs. If the string can be +** stored without allocating memory, then it is. If a memory allocation +** is required to store the string, then value of pMem is unchanged. In +** either case, SQLITE_TOOBIG is returned. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemSetStr( + Mem *pMem, /* Memory cell to set to string value */ + const char *z, /* String pointer */ + int n, /* Bytes in string, or negative */ + u8 enc, /* Encoding of z. 0 for BLOBs */ + void (*xDel)(void*) /* Destructor function */ +){ + int nByte = n; /* New value for pMem->n */ + int iLimit; /* Maximum allowed string or blob size */ + u16 flags = 0; /* New value for pMem->flags */ + + assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); + assert( (pMem->flags & MEM_RowSet)==0 ); + + /* If z is a NULL pointer, set pMem to contain an SQL NULL. */ + if( !z ){ + sqlite3VdbeMemSetNull(pMem); + return SQLITE_OK; + } + + if( pMem->db ){ + iLimit = pMem->db->aLimit[SQLITE_LIMIT_LENGTH]; + }else{ + iLimit = SQLITE_MAX_LENGTH; + } + flags = (enc==0?MEM_Blob:MEM_Str); + if( nByte<0 ){ + assert( enc!=0 ); + if( enc==SQLITE_UTF8 ){ + for(nByte=0; nByte<=iLimit && z[nByte]; nByte++){} + }else{ + for(nByte=0; nByte<=iLimit && (z[nByte] | z[nByte+1]); nByte+=2){} + } + flags |= MEM_Term; + } + + /* The following block sets the new values of Mem.z and Mem.xDel. It + ** also sets a flag in local variable "flags" to indicate the memory + ** management (one of MEM_Dyn or MEM_Static). + */ + if( xDel==SQLITE_TRANSIENT ){ + int nAlloc = nByte; + if( flags&MEM_Term ){ + nAlloc += (enc==SQLITE_UTF8?1:2); + } + if( nByte>iLimit ){ + return SQLITE_TOOBIG; + } + if( sqlite3VdbeMemGrow(pMem, nAlloc, 0) ){ + return SQLITE_NOMEM; + } + memcpy(pMem->z, z, nAlloc); + }else if( xDel==SQLITE_DYNAMIC ){ + sqlite3VdbeMemRelease(pMem); + pMem->zMalloc = pMem->z = (char *)z; + pMem->xDel = 0; + }else{ + sqlite3VdbeMemRelease(pMem); + pMem->z = (char *)z; + pMem->xDel = xDel; + flags |= ((xDel==SQLITE_STATIC)?MEM_Static:MEM_Dyn); + } + + pMem->n = nByte; + pMem->flags = flags; + pMem->enc = (enc==0 ? SQLITE_UTF8 : enc); + +#ifndef SQLITE_OMIT_UTF16 + if( pMem->enc!=SQLITE_UTF8 && sqlite3VdbeMemHandleBom(pMem) ){ + return SQLITE_NOMEM; + } +#endif + + if( nByte>iLimit ){ + return SQLITE_TOOBIG; + } + + return SQLITE_OK; +} + +/* +** Move data out of a btree key or data field and into a Mem structure. +** The data or key is taken from the entry that pCur is currently pointing +** to. offset and amt determine what portion of the data or key to retrieve. +** key is true to get the key or false to get data. The result is written +** into the pMem element. +** +** The pMem structure is assumed to be uninitialized. Any prior content +** is overwritten without being freed. +** +** If this routine fails for any reason (malloc returns NULL or unable +** to read from the disk) then the pMem is left in an inconsistent state. +*/ +SQLITE_PRIVATE int sqlite3VdbeMemFromBtree( + BtCursor *pCur, /* Cursor pointing at record to retrieve. */ + u32 offset, /* Offset from the start of data to return bytes from. */ + u32 amt, /* Number of bytes to return. */ + int key, /* If true, retrieve from the btree key, not data. */ + Mem *pMem /* OUT: Return data in this Mem structure. */ +){ + char *zData; /* Data from the btree layer */ + u32 available = 0; /* Number of bytes available on the local btree page */ + int rc = SQLITE_OK; /* Return code */ + + assert( sqlite3BtreeCursorIsValid(pCur) ); + + /* Note: the calls to BtreeKeyFetch() and DataFetch() below assert() + ** that both the BtShared and database handle mutexes are held. */ + assert( (pMem->flags & MEM_RowSet)==0 ); + if( key ){ + zData = (char *)sqlite3BtreeKeyFetch(pCur, &available); + }else{ + zData = (char *)sqlite3BtreeDataFetch(pCur, &available); + } + assert( zData!=0 ); + + if( offset+amt<=available ){ + sqlite3VdbeMemRelease(pMem); + pMem->z = &zData[offset]; + pMem->flags = MEM_Blob|MEM_Ephem; + pMem->n = (int)amt; + }else if( SQLITE_OK==(rc = sqlite3VdbeMemGrow(pMem, amt+2, 0)) ){ + if( key ){ + rc = sqlite3BtreeKey(pCur, offset, amt, pMem->z); + }else{ + rc = sqlite3BtreeData(pCur, offset, amt, pMem->z); + } + if( rc==SQLITE_OK ){ + pMem->z[amt] = 0; + pMem->z[amt+1] = 0; + pMem->flags = MEM_Blob|MEM_Term; + pMem->n = (int)amt; + }else{ + sqlite3VdbeMemRelease(pMem); + } + } + + return rc; +} + +/* This function is only available internally, it is not part of the +** external API. It works in a similar way to sqlite3_value_text(), +** except the data returned is in the encoding specified by the second +** parameter, which must be one of SQLITE_UTF16BE, SQLITE_UTF16LE or +** SQLITE_UTF8. +** +** (2006-02-16:) The enc value can be or-ed with SQLITE_UTF16_ALIGNED. +** If that is the case, then the result must be aligned on an even byte +** boundary. +*/ +SQLITE_PRIVATE const void *sqlite3ValueText(sqlite3_value* pVal, u8 enc){ + if( !pVal ) return 0; + + assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); + assert( (enc&3)==(enc&~SQLITE_UTF16_ALIGNED) ); + assert( (pVal->flags & MEM_RowSet)==0 ); + + if( pVal->flags&MEM_Null ){ + return 0; + } + assert( (MEM_Blob>>3) == MEM_Str ); + pVal->flags |= (pVal->flags & MEM_Blob)>>3; + ExpandBlob(pVal); + if( pVal->flags&MEM_Str ){ + sqlite3VdbeChangeEncoding(pVal, enc & ~SQLITE_UTF16_ALIGNED); + if( (enc & SQLITE_UTF16_ALIGNED)!=0 && 1==(1&SQLITE_PTR_TO_INT(pVal->z)) ){ + assert( (pVal->flags & (MEM_Ephem|MEM_Static))!=0 ); + if( sqlite3VdbeMemMakeWriteable(pVal)!=SQLITE_OK ){ + return 0; + } + } + sqlite3VdbeMemNulTerminate(pVal); /* IMP: R-31275-44060 */ + }else{ + assert( (pVal->flags&MEM_Blob)==0 ); + sqlite3VdbeMemStringify(pVal, enc); + assert( 0==(1&SQLITE_PTR_TO_INT(pVal->z)) ); + } + assert(pVal->enc==(enc & ~SQLITE_UTF16_ALIGNED) || pVal->db==0 + || pVal->db->mallocFailed ); + if( pVal->enc==(enc & ~SQLITE_UTF16_ALIGNED) ){ + return pVal->z; + }else{ + return 0; + } +} + +/* +** Create a new sqlite3_value object. +*/ +SQLITE_PRIVATE sqlite3_value *sqlite3ValueNew(sqlite3 *db){ + Mem *p = sqlite3DbMallocZero(db, sizeof(*p)); + if( p ){ + p->flags = MEM_Null; + p->db = db; + } + return p; +} + +/* +** Context object passed by sqlite3Stat4ProbeSetValue() through to +** valueNew(). See comments above valueNew() for details. +*/ +struct ValueNewStat4Ctx { + Parse *pParse; + Index *pIdx; + UnpackedRecord **ppRec; + int iVal; +}; + +/* +** Allocate and return a pointer to a new sqlite3_value object. If +** the second argument to this function is NULL, the object is allocated +** by calling sqlite3ValueNew(). +** +** Otherwise, if the second argument is non-zero, then this function is +** being called indirectly by sqlite3Stat4ProbeSetValue(). If it has not +** already been allocated, allocate the UnpackedRecord structure that +** that function will return to its caller here. Then return a pointer +** an sqlite3_value within the UnpackedRecord.a[] array. +*/ +static sqlite3_value *valueNew(sqlite3 *db, struct ValueNewStat4Ctx *p){ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + if( p ){ + UnpackedRecord *pRec = p->ppRec[0]; + + if( pRec==0 ){ + Index *pIdx = p->pIdx; /* Index being probed */ + int nByte; /* Bytes of space to allocate */ + int i; /* Counter variable */ + int nCol = pIdx->nColumn; /* Number of index columns including rowid */ + + nByte = sizeof(Mem) * nCol + ROUND8(sizeof(UnpackedRecord)); + pRec = (UnpackedRecord*)sqlite3DbMallocZero(db, nByte); + if( pRec ){ + pRec->pKeyInfo = sqlite3KeyInfoOfIndex(p->pParse, pIdx); + if( pRec->pKeyInfo ){ + assert( pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField==nCol ); + assert( pRec->pKeyInfo->enc==ENC(db) ); + pRec->aMem = (Mem *)((u8*)pRec + ROUND8(sizeof(UnpackedRecord))); + for(i=0; iaMem[i].flags = MEM_Null; + pRec->aMem[i].db = db; + } + }else{ + sqlite3DbFree(db, pRec); + pRec = 0; + } + } + if( pRec==0 ) return 0; + p->ppRec[0] = pRec; + } + + pRec->nField = p->iVal+1; + return &pRec->aMem[p->iVal]; + } +#else + UNUSED_PARAMETER(p); +#endif /* defined(SQLITE_ENABLE_STAT3_OR_STAT4) */ + return sqlite3ValueNew(db); +} + +/* +** Extract a value from the supplied expression in the manner described +** above sqlite3ValueFromExpr(). Allocate the sqlite3_value object +** using valueNew(). +** +** If pCtx is NULL and an error occurs after the sqlite3_value object +** has been allocated, it is freed before returning. Or, if pCtx is not +** NULL, it is assumed that the caller will free any allocated object +** in all cases. +*/ +static int valueFromExpr( + sqlite3 *db, /* The database connection */ + Expr *pExpr, /* The expression to evaluate */ + u8 enc, /* Encoding to use */ + u8 affinity, /* Affinity to use */ + sqlite3_value **ppVal, /* Write the new value here */ + struct ValueNewStat4Ctx *pCtx /* Second argument for valueNew() */ +){ + int op; + char *zVal = 0; + sqlite3_value *pVal = 0; + int negInt = 1; + const char *zNeg = ""; + int rc = SQLITE_OK; + + if( !pExpr ){ + *ppVal = 0; + return SQLITE_OK; + } + op = pExpr->op; + if( NEVER(op==TK_REGISTER) ) op = pExpr->op2; + + /* Handle negative integers in a single step. This is needed in the + ** case when the value is -9223372036854775808. + */ + if( op==TK_UMINUS + && (pExpr->pLeft->op==TK_INTEGER || pExpr->pLeft->op==TK_FLOAT) ){ + pExpr = pExpr->pLeft; + op = pExpr->op; + negInt = -1; + zNeg = "-"; + } + + if( op==TK_STRING || op==TK_FLOAT || op==TK_INTEGER ){ + pVal = valueNew(db, pCtx); + if( pVal==0 ) goto no_mem; + if( ExprHasProperty(pExpr, EP_IntValue) ){ + sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt); + }else{ + zVal = sqlite3MPrintf(db, "%s%s", zNeg, pExpr->u.zToken); + if( zVal==0 ) goto no_mem; + sqlite3ValueSetStr(pVal, -1, zVal, SQLITE_UTF8, SQLITE_DYNAMIC); + } + if( (op==TK_INTEGER || op==TK_FLOAT ) && affinity==SQLITE_AFF_NONE ){ + sqlite3ValueApplyAffinity(pVal, SQLITE_AFF_NUMERIC, SQLITE_UTF8); + }else{ + sqlite3ValueApplyAffinity(pVal, affinity, SQLITE_UTF8); + } + if( pVal->flags & (MEM_Int|MEM_Real) ) pVal->flags &= ~MEM_Str; + if( enc!=SQLITE_UTF8 ){ + rc = sqlite3VdbeChangeEncoding(pVal, enc); + } + }else if( op==TK_UMINUS ) { + /* This branch happens for multiple negative signs. Ex: -(-5) */ + if( SQLITE_OK==sqlite3ValueFromExpr(db,pExpr->pLeft,enc,affinity,&pVal) + && pVal!=0 + ){ + sqlite3VdbeMemNumerify(pVal); + if( pVal->u.i==SMALLEST_INT64 ){ + pVal->flags &= ~MEM_Int; + pVal->flags |= MEM_Real; + pVal->r = (double)SMALLEST_INT64; + }else{ + pVal->u.i = -pVal->u.i; + } + pVal->r = -pVal->r; + sqlite3ValueApplyAffinity(pVal, affinity, enc); + } + }else if( op==TK_NULL ){ + pVal = valueNew(db, pCtx); + if( pVal==0 ) goto no_mem; + } +#ifndef SQLITE_OMIT_BLOB_LITERAL + else if( op==TK_BLOB ){ + int nVal; + assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); + assert( pExpr->u.zToken[1]=='\'' ); + pVal = valueNew(db, pCtx); + if( !pVal ) goto no_mem; + zVal = &pExpr->u.zToken[2]; + nVal = sqlite3Strlen30(zVal)-1; + assert( zVal[nVal]=='\'' ); + sqlite3VdbeMemSetStr(pVal, sqlite3HexToBlob(db, zVal, nVal), nVal/2, + 0, SQLITE_DYNAMIC); + } +#endif + + *ppVal = pVal; + return rc; + +no_mem: + db->mallocFailed = 1; + sqlite3DbFree(db, zVal); + assert( *ppVal==0 ); +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + if( pCtx==0 ) sqlite3ValueFree(pVal); +#else + assert( pCtx==0 ); sqlite3ValueFree(pVal); +#endif + return SQLITE_NOMEM; +} + +/* +** Create a new sqlite3_value object, containing the value of pExpr. +** +** This only works for very simple expressions that consist of one constant +** token (i.e. "5", "5.1", "'a string'"). If the expression can +** be converted directly into a value, then the value is allocated and +** a pointer written to *ppVal. The caller is responsible for deallocating +** the value by passing it to sqlite3ValueFree() later on. If the expression +** cannot be converted to a value, then *ppVal is set to NULL. +*/ +SQLITE_PRIVATE int sqlite3ValueFromExpr( + sqlite3 *db, /* The database connection */ + Expr *pExpr, /* The expression to evaluate */ + u8 enc, /* Encoding to use */ + u8 affinity, /* Affinity to use */ + sqlite3_value **ppVal /* Write the new value here */ +){ + return valueFromExpr(db, pExpr, enc, affinity, ppVal, 0); +} + +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 +/* +** The implementation of the sqlite_record() function. This function accepts +** a single argument of any type. The return value is a formatted database +** record (a blob) containing the argument value. +** +** This is used to convert the value stored in the 'sample' column of the +** sqlite_stat3 table to the record format SQLite uses internally. +*/ +static void recordFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + const int file_format = 1; + int iSerial; /* Serial type */ + int nSerial; /* Bytes of space for iSerial as varint */ + int nVal; /* Bytes of space required for argv[0] */ + int nRet; + sqlite3 *db; + u8 *aRet; + + UNUSED_PARAMETER( argc ); + iSerial = sqlite3VdbeSerialType(argv[0], file_format); + nSerial = sqlite3VarintLen(iSerial); + nVal = sqlite3VdbeSerialTypeLen(iSerial); + db = sqlite3_context_db_handle(context); + + nRet = 1 + nSerial + nVal; + aRet = sqlite3DbMallocRaw(db, nRet); + if( aRet==0 ){ + sqlite3_result_error_nomem(context); + }else{ + aRet[0] = nSerial+1; + sqlite3PutVarint(&aRet[1], iSerial); + sqlite3VdbeSerialPut(&aRet[1+nSerial], argv[0], iSerial); + sqlite3_result_blob(context, aRet, nRet, SQLITE_TRANSIENT); + sqlite3DbFree(db, aRet); + } +} + +/* +** Register built-in functions used to help read ANALYZE data. +*/ +SQLITE_PRIVATE void sqlite3AnalyzeFunctions(void){ + static SQLITE_WSD FuncDef aAnalyzeTableFuncs[] = { + FUNCTION(sqlite_record, 1, 0, 0, recordFunc), + }; + int i; + FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions); + FuncDef *aFunc = (FuncDef*)&GLOBAL(FuncDef, aAnalyzeTableFuncs); + for(i=0; idb; + + + struct ValueNewStat4Ctx alloc; + alloc.pParse = pParse; + alloc.pIdx = pIdx; + alloc.ppRec = ppRec; + alloc.iVal = iVal; + + /* Skip over any TK_COLLATE nodes */ + pExpr = sqlite3ExprSkipCollate(pExpr); + + if( !pExpr ){ + pVal = valueNew(db, &alloc); + if( pVal ){ + sqlite3VdbeMemSetNull((Mem*)pVal); + } + }else if( pExpr->op==TK_VARIABLE + || NEVER(pExpr->op==TK_REGISTER && pExpr->op2==TK_VARIABLE) + ){ + Vdbe *v; + int iBindVar = pExpr->iColumn; + sqlite3VdbeSetVarmask(pParse->pVdbe, iBindVar); + if( (v = pParse->pReprepare)!=0 ){ + pVal = valueNew(db, &alloc); + if( pVal ){ + rc = sqlite3VdbeMemCopy((Mem*)pVal, &v->aVar[iBindVar-1]); + if( rc==SQLITE_OK ){ + sqlite3ValueApplyAffinity(pVal, affinity, ENC(db)); + } + pVal->db = pParse->db; + } + } + }else{ + rc = valueFromExpr(db, pExpr, ENC(db), affinity, &pVal, &alloc); + } + *pbOk = (pVal!=0); + + assert( pVal==0 || pVal->db==db ); + return rc; +} + +/* +** Unless it is NULL, the argument must be an UnpackedRecord object returned +** by an earlier call to sqlite3Stat4ProbeSetValue(). This call deletes +** the object. +*/ +SQLITE_PRIVATE void sqlite3Stat4ProbeFree(UnpackedRecord *pRec){ + if( pRec ){ + int i; + int nCol = pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField; + Mem *aMem = pRec->aMem; + sqlite3 *db = aMem[0].db; + for(i=0; ipKeyInfo); + sqlite3DbFree(db, pRec); + } +} +#endif /* ifdef SQLITE_ENABLE_STAT4 */ + +/* +** Change the string value of an sqlite3_value object +*/ +SQLITE_PRIVATE void sqlite3ValueSetStr( + sqlite3_value *v, /* Value to be set */ + int n, /* Length of string z */ + const void *z, /* Text of the new string */ + u8 enc, /* Encoding to use */ + void (*xDel)(void*) /* Destructor for the string */ +){ + if( v ) sqlite3VdbeMemSetStr((Mem *)v, z, n, enc, xDel); +} + +/* +** Free an sqlite3_value object +*/ +SQLITE_PRIVATE void sqlite3ValueFree(sqlite3_value *v){ + if( !v ) return; + sqlite3VdbeMemRelease((Mem *)v); + sqlite3DbFree(((Mem*)v)->db, v); +} + +/* +** Return the number of bytes in the sqlite3_value object assuming +** that it uses the encoding "enc" +*/ +SQLITE_PRIVATE int sqlite3ValueBytes(sqlite3_value *pVal, u8 enc){ + Mem *p = (Mem*)pVal; + if( (p->flags & MEM_Blob)!=0 || sqlite3ValueText(pVal, enc) ){ + if( p->flags & MEM_Zero ){ + return p->n + p->u.nZero; + }else{ + return p->n; + } + } + return 0; +} + +/************** End of vdbemem.c *********************************************/ +/************** Begin file vdbeaux.c *****************************************/ +/* +** 2003 September 6 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code used for creating, destroying, and populating +** a VDBE (or an "sqlite3_stmt" as it is known to the outside world.) Prior +** to version 2.8.7, all this code was combined into the vdbe.c source file. +** But that file was getting too big so this subroutines were split out. +*/ + +/* +** Create a new virtual database engine. +*/ +SQLITE_PRIVATE Vdbe *sqlite3VdbeCreate(Parse *pParse){ + sqlite3 *db = pParse->db; + Vdbe *p; + p = sqlite3DbMallocZero(db, sizeof(Vdbe) ); + if( p==0 ) return 0; + p->db = db; + if( db->pVdbe ){ + db->pVdbe->pPrev = p; + } + p->pNext = db->pVdbe; + p->pPrev = 0; + db->pVdbe = p; + p->magic = VDBE_MAGIC_INIT; + p->pParse = pParse; + assert( pParse->aLabel==0 ); + assert( pParse->nLabel==0 ); + assert( pParse->nOpAlloc==0 ); + return p; +} + +/* +** Remember the SQL string for a prepared statement. +*/ +SQLITE_PRIVATE void sqlite3VdbeSetSql(Vdbe *p, const char *z, int n, int isPrepareV2){ + assert( isPrepareV2==1 || isPrepareV2==0 ); + if( p==0 ) return; +#if defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_ENABLE_SQLLOG) + if( !isPrepareV2 ) return; +#endif + assert( p->zSql==0 ); + p->zSql = sqlite3DbStrNDup(p->db, z, n); + p->isPrepareV2 = (u8)isPrepareV2; +} + +/* +** Return the SQL associated with a prepared statement +*/ +SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt){ + Vdbe *p = (Vdbe *)pStmt; + return (p && p->isPrepareV2) ? p->zSql : 0; +} + +/* +** Swap all content between two VDBE structures. +*/ +SQLITE_PRIVATE void sqlite3VdbeSwap(Vdbe *pA, Vdbe *pB){ + Vdbe tmp, *pTmp; + char *zTmp; + tmp = *pA; + *pA = *pB; + *pB = tmp; + pTmp = pA->pNext; + pA->pNext = pB->pNext; + pB->pNext = pTmp; + pTmp = pA->pPrev; + pA->pPrev = pB->pPrev; + pB->pPrev = pTmp; + zTmp = pA->zSql; + pA->zSql = pB->zSql; + pB->zSql = zTmp; + pB->isPrepareV2 = pA->isPrepareV2; +} + +/* +** Resize the Vdbe.aOp array so that it is at least one op larger than +** it was. +** +** If an out-of-memory error occurs while resizing the array, return +** SQLITE_NOMEM. In this case Vdbe.aOp and Vdbe.nOpAlloc remain +** unchanged (this is so that any opcodes already allocated can be +** correctly deallocated along with the rest of the Vdbe). +*/ +static int growOpArray(Vdbe *v){ + VdbeOp *pNew; + Parse *p = v->pParse; + int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op))); + pNew = sqlite3DbRealloc(p->db, v->aOp, nNew*sizeof(Op)); + if( pNew ){ + p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op); + v->aOp = pNew; + } + return (pNew ? SQLITE_OK : SQLITE_NOMEM); +} + +#ifdef SQLITE_DEBUG +/* This routine is just a convenient place to set a breakpoint that will +** fire after each opcode is inserted and displayed using +** "PRAGMA vdbe_addoptrace=on". +*/ +static void test_addop_breakpoint(void){ + static int n = 0; + n++; +} +#endif + +/* +** Add a new instruction to the list of instructions current in the +** VDBE. Return the address of the new instruction. +** +** Parameters: +** +** p Pointer to the VDBE +** +** op The opcode for this instruction +** +** p1, p2, p3 Operands +** +** Use the sqlite3VdbeResolveLabel() function to fix an address and +** the sqlite3VdbeChangeP4() function to change the value of the P4 +** operand. +*/ +SQLITE_PRIVATE int sqlite3VdbeAddOp3(Vdbe *p, int op, int p1, int p2, int p3){ + int i; + VdbeOp *pOp; + + i = p->nOp; + assert( p->magic==VDBE_MAGIC_INIT ); + assert( op>0 && op<0xff ); + if( p->pParse->nOpAlloc<=i ){ + if( growOpArray(p) ){ + return 1; + } + } + p->nOp++; + pOp = &p->aOp[i]; + pOp->opcode = (u8)op; + pOp->p5 = 0; + pOp->p1 = p1; + pOp->p2 = p2; + pOp->p3 = p3; + pOp->p4.p = 0; + pOp->p4type = P4_NOTUSED; +#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS + pOp->zComment = 0; +#endif +#ifdef SQLITE_DEBUG + if( p->db->flags & SQLITE_VdbeAddopTrace ){ + int jj, kk; + Parse *pParse = p->pParse; + for(jj=kk=0; jjaColCache + jj; + if( x->iLevel>pParse->iCacheLevel || x->iReg==0 ) continue; + printf(" r[%d]={%d:%d}", x->iReg, x->iTable, x->iColumn); + kk++; + } + if( kk ) printf("\n"); + sqlite3VdbePrintOp(0, i, &p->aOp[i]); + test_addop_breakpoint(); + } +#endif +#ifdef VDBE_PROFILE + pOp->cycles = 0; + pOp->cnt = 0; +#endif +#ifdef SQLITE_VDBE_COVERAGE + pOp->iSrcLine = 0; +#endif + return i; +} +SQLITE_PRIVATE int sqlite3VdbeAddOp0(Vdbe *p, int op){ + return sqlite3VdbeAddOp3(p, op, 0, 0, 0); +} +SQLITE_PRIVATE int sqlite3VdbeAddOp1(Vdbe *p, int op, int p1){ + return sqlite3VdbeAddOp3(p, op, p1, 0, 0); +} +SQLITE_PRIVATE int sqlite3VdbeAddOp2(Vdbe *p, int op, int p1, int p2){ + return sqlite3VdbeAddOp3(p, op, p1, p2, 0); +} + + +/* +** Add an opcode that includes the p4 value as a pointer. +*/ +SQLITE_PRIVATE int sqlite3VdbeAddOp4( + Vdbe *p, /* Add the opcode to this VM */ + int op, /* The new opcode */ + int p1, /* The P1 operand */ + int p2, /* The P2 operand */ + int p3, /* The P3 operand */ + const char *zP4, /* The P4 operand */ + int p4type /* P4 operand type */ +){ + int addr = sqlite3VdbeAddOp3(p, op, p1, p2, p3); + sqlite3VdbeChangeP4(p, addr, zP4, p4type); + return addr; +} + +/* +** Add an OP_ParseSchema opcode. This routine is broken out from +** sqlite3VdbeAddOp4() since it needs to also needs to mark all btrees +** as having been used. +** +** The zWhere string must have been obtained from sqlite3_malloc(). +** This routine will take ownership of the allocated memory. +*/ +SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere){ + int j; + int addr = sqlite3VdbeAddOp3(p, OP_ParseSchema, iDb, 0, 0); + sqlite3VdbeChangeP4(p, addr, zWhere, P4_DYNAMIC); + for(j=0; jdb->nDb; j++) sqlite3VdbeUsesBtree(p, j); +} + +/* +** Add an opcode that includes the p4 value as an integer. +*/ +SQLITE_PRIVATE int sqlite3VdbeAddOp4Int( + Vdbe *p, /* Add the opcode to this VM */ + int op, /* The new opcode */ + int p1, /* The P1 operand */ + int p2, /* The P2 operand */ + int p3, /* The P3 operand */ + int p4 /* The P4 operand as an integer */ +){ + int addr = sqlite3VdbeAddOp3(p, op, p1, p2, p3); + sqlite3VdbeChangeP4(p, addr, SQLITE_INT_TO_PTR(p4), P4_INT32); + return addr; +} + +/* +** Create a new symbolic label for an instruction that has yet to be +** coded. The symbolic label is really just a negative number. The +** label can be used as the P2 value of an operation. Later, when +** the label is resolved to a specific address, the VDBE will scan +** through its operation list and change all values of P2 which match +** the label into the resolved address. +** +** The VDBE knows that a P2 value is a label because labels are +** always negative and P2 values are suppose to be non-negative. +** Hence, a negative P2 value is a label that has yet to be resolved. +** +** Zero is returned if a malloc() fails. +*/ +SQLITE_PRIVATE int sqlite3VdbeMakeLabel(Vdbe *v){ + Parse *p = v->pParse; + int i = p->nLabel++; + assert( v->magic==VDBE_MAGIC_INIT ); + if( (i & (i-1))==0 ){ + p->aLabel = sqlite3DbReallocOrFree(p->db, p->aLabel, + (i*2+1)*sizeof(p->aLabel[0])); + } + if( p->aLabel ){ + p->aLabel[i] = -1; + } + return -1-i; +} + +/* +** Resolve label "x" to be the address of the next instruction to +** be inserted. The parameter "x" must have been obtained from +** a prior call to sqlite3VdbeMakeLabel(). +*/ +SQLITE_PRIVATE void sqlite3VdbeResolveLabel(Vdbe *v, int x){ + Parse *p = v->pParse; + int j = -1-x; + assert( v->magic==VDBE_MAGIC_INIT ); + assert( jnLabel ); + if( ALWAYS(j>=0) && p->aLabel ){ + p->aLabel[j] = v->nOp; + } + p->iFixedOp = v->nOp - 1; +} + +/* +** Mark the VDBE as one that can only be run one time. +*/ +SQLITE_PRIVATE void sqlite3VdbeRunOnlyOnce(Vdbe *p){ + p->runOnlyOnce = 1; +} + +#ifdef SQLITE_DEBUG /* sqlite3AssertMayAbort() logic */ + +/* +** The following type and function are used to iterate through all opcodes +** in a Vdbe main program and each of the sub-programs (triggers) it may +** invoke directly or indirectly. It should be used as follows: +** +** Op *pOp; +** VdbeOpIter sIter; +** +** memset(&sIter, 0, sizeof(sIter)); +** sIter.v = v; // v is of type Vdbe* +** while( (pOp = opIterNext(&sIter)) ){ +** // Do something with pOp +** } +** sqlite3DbFree(v->db, sIter.apSub); +** +*/ +typedef struct VdbeOpIter VdbeOpIter; +struct VdbeOpIter { + Vdbe *v; /* Vdbe to iterate through the opcodes of */ + SubProgram **apSub; /* Array of subprograms */ + int nSub; /* Number of entries in apSub */ + int iAddr; /* Address of next instruction to return */ + int iSub; /* 0 = main program, 1 = first sub-program etc. */ +}; +static Op *opIterNext(VdbeOpIter *p){ + Vdbe *v = p->v; + Op *pRet = 0; + Op *aOp; + int nOp; + + if( p->iSub<=p->nSub ){ + + if( p->iSub==0 ){ + aOp = v->aOp; + nOp = v->nOp; + }else{ + aOp = p->apSub[p->iSub-1]->aOp; + nOp = p->apSub[p->iSub-1]->nOp; + } + assert( p->iAddriAddr]; + p->iAddr++; + if( p->iAddr==nOp ){ + p->iSub++; + p->iAddr = 0; + } + + if( pRet->p4type==P4_SUBPROGRAM ){ + int nByte = (p->nSub+1)*sizeof(SubProgram*); + int j; + for(j=0; jnSub; j++){ + if( p->apSub[j]==pRet->p4.pProgram ) break; + } + if( j==p->nSub ){ + p->apSub = sqlite3DbReallocOrFree(v->db, p->apSub, nByte); + if( !p->apSub ){ + pRet = 0; + }else{ + p->apSub[p->nSub++] = pRet->p4.pProgram; + } + } + } + } + + return pRet; +} + +/* +** Check if the program stored in the VM associated with pParse may +** throw an ABORT exception (causing the statement, but not entire transaction +** to be rolled back). This condition is true if the main program or any +** sub-programs contains any of the following: +** +** * OP_Halt with P1=SQLITE_CONSTRAINT and P2=OE_Abort. +** * OP_HaltIfNull with P1=SQLITE_CONSTRAINT and P2=OE_Abort. +** * OP_Destroy +** * OP_VUpdate +** * OP_VRename +** * OP_FkCounter with P2==0 (immediate foreign key constraint) +** +** Then check that the value of Parse.mayAbort is true if an +** ABORT may be thrown, or false otherwise. Return true if it does +** match, or false otherwise. This function is intended to be used as +** part of an assert statement in the compiler. Similar to: +** +** assert( sqlite3VdbeAssertMayAbort(pParse->pVdbe, pParse->mayAbort) ); +*/ +SQLITE_PRIVATE int sqlite3VdbeAssertMayAbort(Vdbe *v, int mayAbort){ + int hasAbort = 0; + Op *pOp; + VdbeOpIter sIter; + memset(&sIter, 0, sizeof(sIter)); + sIter.v = v; + + while( (pOp = opIterNext(&sIter))!=0 ){ + int opcode = pOp->opcode; + if( opcode==OP_Destroy || opcode==OP_VUpdate || opcode==OP_VRename +#ifndef SQLITE_OMIT_FOREIGN_KEY + || (opcode==OP_FkCounter && pOp->p1==0 && pOp->p2==1) +#endif + || ((opcode==OP_Halt || opcode==OP_HaltIfNull) + && ((pOp->p1&0xff)==SQLITE_CONSTRAINT && pOp->p2==OE_Abort)) + ){ + hasAbort = 1; + break; + } + } + sqlite3DbFree(v->db, sIter.apSub); + + /* Return true if hasAbort==mayAbort. Or if a malloc failure occurred. + ** If malloc failed, then the while() loop above may not have iterated + ** through all opcodes and hasAbort may be set incorrectly. Return + ** true for this case to prevent the assert() in the callers frame + ** from failing. */ + return ( v->db->mallocFailed || hasAbort==mayAbort ); +} +#endif /* SQLITE_DEBUG - the sqlite3AssertMayAbort() function */ + +/* +** Loop through the program looking for P2 values that are negative +** on jump instructions. Each such value is a label. Resolve the +** label by setting the P2 value to its correct non-zero value. +** +** This routine is called once after all opcodes have been inserted. +** +** Variable *pMaxFuncArgs is set to the maximum value of any P2 argument +** to an OP_Function, OP_AggStep or OP_VFilter opcode. This is used by +** sqlite3VdbeMakeReady() to size the Vdbe.apArg[] array. +** +** The Op.opflags field is set on all opcodes. +*/ +static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){ + int i; + int nMaxArgs = *pMaxFuncArgs; + Op *pOp; + Parse *pParse = p->pParse; + int *aLabel = pParse->aLabel; + p->readOnly = 1; + p->bIsReader = 0; + for(pOp=p->aOp, i=p->nOp-1; i>=0; i--, pOp++){ + u8 opcode = pOp->opcode; + + /* NOTE: Be sure to update mkopcodeh.awk when adding or removing + ** cases from this switch! */ + switch( opcode ){ + case OP_Function: + case OP_AggStep: { + if( pOp->p5>nMaxArgs ) nMaxArgs = pOp->p5; + break; + } + case OP_Transaction: { + if( pOp->p2!=0 ) p->readOnly = 0; + /* fall thru */ + } + case OP_AutoCommit: + case OP_Savepoint: { + p->bIsReader = 1; + break; + } +#ifndef SQLITE_OMIT_WAL + case OP_Checkpoint: +#endif + case OP_Vacuum: + case OP_JournalMode: { + p->readOnly = 0; + p->bIsReader = 1; + break; + } +#ifndef SQLITE_OMIT_VIRTUALTABLE + case OP_VUpdate: { + if( pOp->p2>nMaxArgs ) nMaxArgs = pOp->p2; + break; + } + case OP_VFilter: { + int n; + assert( p->nOp - i >= 3 ); + assert( pOp[-1].opcode==OP_Integer ); + n = pOp[-1].p1; + if( n>nMaxArgs ) nMaxArgs = n; + break; + } +#endif + case OP_Next: + case OP_NextIfOpen: + case OP_SorterNext: { + pOp->p4.xAdvance = sqlite3BtreeNext; + pOp->p4type = P4_ADVANCE; + break; + } + case OP_Prev: + case OP_PrevIfOpen: { + pOp->p4.xAdvance = sqlite3BtreePrevious; + pOp->p4type = P4_ADVANCE; + break; + } + } + + pOp->opflags = sqlite3OpcodeProperty[opcode]; + if( (pOp->opflags & OPFLG_JUMP)!=0 && pOp->p2<0 ){ + assert( -1-pOp->p2nLabel ); + pOp->p2 = aLabel[-1-pOp->p2]; + } + } + sqlite3DbFree(p->db, pParse->aLabel); + pParse->aLabel = 0; + pParse->nLabel = 0; + *pMaxFuncArgs = nMaxArgs; + assert( p->bIsReader!=0 || p->btreeMask==0 ); +} + +/* +** Return the address of the next instruction to be inserted. +*/ +SQLITE_PRIVATE int sqlite3VdbeCurrentAddr(Vdbe *p){ + assert( p->magic==VDBE_MAGIC_INIT ); + return p->nOp; +} + +/* +** This function returns a pointer to the array of opcodes associated with +** the Vdbe passed as the first argument. It is the callers responsibility +** to arrange for the returned array to be eventually freed using the +** vdbeFreeOpArray() function. +** +** Before returning, *pnOp is set to the number of entries in the returned +** array. Also, *pnMaxArg is set to the larger of its current value and +** the number of entries in the Vdbe.apArg[] array required to execute the +** returned program. +*/ +SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){ + VdbeOp *aOp = p->aOp; + assert( aOp && !p->db->mallocFailed ); + + /* Check that sqlite3VdbeUsesBtree() was not called on this VM */ + assert( p->btreeMask==0 ); + + resolveP2Values(p, pnMaxArg); + *pnOp = p->nOp; + p->aOp = 0; + return aOp; +} + +/* +** Add a whole list of operations to the operation stack. Return the +** address of the first operation added. +*/ +SQLITE_PRIVATE int sqlite3VdbeAddOpList(Vdbe *p, int nOp, VdbeOpList const *aOp, int iLineno){ + int addr; + assert( p->magic==VDBE_MAGIC_INIT ); + if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p) ){ + return 0; + } + addr = p->nOp; + if( ALWAYS(nOp>0) ){ + int i; + VdbeOpList const *pIn = aOp; + for(i=0; ip2; + VdbeOp *pOut = &p->aOp[i+addr]; + pOut->opcode = pIn->opcode; + pOut->p1 = pIn->p1; + if( p2<0 ){ + assert( sqlite3OpcodeProperty[pOut->opcode] & OPFLG_JUMP ); + pOut->p2 = addr + ADDR(p2); + }else{ + pOut->p2 = p2; + } + pOut->p3 = pIn->p3; + pOut->p4type = P4_NOTUSED; + pOut->p4.p = 0; + pOut->p5 = 0; +#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS + pOut->zComment = 0; +#endif +#ifdef SQLITE_VDBE_COVERAGE + pOut->iSrcLine = iLineno+i; +#else + (void)iLineno; +#endif +#ifdef SQLITE_DEBUG + if( p->db->flags & SQLITE_VdbeAddopTrace ){ + sqlite3VdbePrintOp(0, i+addr, &p->aOp[i+addr]); + } +#endif + } + p->nOp += nOp; + } + return addr; +} + +/* +** Change the value of the P1 operand for a specific instruction. +** This routine is useful when a large program is loaded from a +** static array using sqlite3VdbeAddOpList but we want to make a +** few minor changes to the program. +*/ +SQLITE_PRIVATE void sqlite3VdbeChangeP1(Vdbe *p, u32 addr, int val){ + assert( p!=0 ); + if( ((u32)p->nOp)>addr ){ + p->aOp[addr].p1 = val; + } +} + +/* +** Change the value of the P2 operand for a specific instruction. +** This routine is useful for setting a jump destination. +*/ +SQLITE_PRIVATE void sqlite3VdbeChangeP2(Vdbe *p, u32 addr, int val){ + assert( p!=0 ); + if( ((u32)p->nOp)>addr ){ + p->aOp[addr].p2 = val; + } +} + +/* +** Change the value of the P3 operand for a specific instruction. +*/ +SQLITE_PRIVATE void sqlite3VdbeChangeP3(Vdbe *p, u32 addr, int val){ + assert( p!=0 ); + if( ((u32)p->nOp)>addr ){ + p->aOp[addr].p3 = val; + } +} + +/* +** Change the value of the P5 operand for the most recently +** added operation. +*/ +SQLITE_PRIVATE void sqlite3VdbeChangeP5(Vdbe *p, u8 val){ + assert( p!=0 ); + if( p->aOp ){ + assert( p->nOp>0 ); + p->aOp[p->nOp-1].p5 = val; + } +} + +/* +** Change the P2 operand of instruction addr so that it points to +** the address of the next instruction to be coded. +*/ +SQLITE_PRIVATE void sqlite3VdbeJumpHere(Vdbe *p, int addr){ + sqlite3VdbeChangeP2(p, addr, p->nOp); + p->pParse->iFixedOp = p->nOp - 1; +} + + +/* +** If the input FuncDef structure is ephemeral, then free it. If +** the FuncDef is not ephermal, then do nothing. +*/ +static void freeEphemeralFunction(sqlite3 *db, FuncDef *pDef){ + if( ALWAYS(pDef) && (pDef->funcFlags & SQLITE_FUNC_EPHEM)!=0 ){ + sqlite3DbFree(db, pDef); + } +} + +static void vdbeFreeOpArray(sqlite3 *, Op *, int); + +/* +** Delete a P4 value if necessary. +*/ +static void freeP4(sqlite3 *db, int p4type, void *p4){ + if( p4 ){ + assert( db ); + switch( p4type ){ + case P4_REAL: + case P4_INT64: + case P4_DYNAMIC: + case P4_INTARRAY: { + sqlite3DbFree(db, p4); + break; + } + case P4_KEYINFO: { + if( db->pnBytesFreed==0 ) sqlite3KeyInfoUnref((KeyInfo*)p4); + break; + } + case P4_MPRINTF: { + if( db->pnBytesFreed==0 ) sqlite3_free(p4); + break; + } + case P4_FUNCDEF: { + freeEphemeralFunction(db, (FuncDef*)p4); + break; + } + case P4_MEM: { + if( db->pnBytesFreed==0 ){ + sqlite3ValueFree((sqlite3_value*)p4); + }else{ + Mem *p = (Mem*)p4; + sqlite3DbFree(db, p->zMalloc); + sqlite3DbFree(db, p); + } + break; + } + case P4_VTAB : { + if( db->pnBytesFreed==0 ) sqlite3VtabUnlock((VTable *)p4); + break; + } + } + } +} + +/* +** Free the space allocated for aOp and any p4 values allocated for the +** opcodes contained within. If aOp is not NULL it is assumed to contain +** nOp entries. +*/ +static void vdbeFreeOpArray(sqlite3 *db, Op *aOp, int nOp){ + if( aOp ){ + Op *pOp; + for(pOp=aOp; pOp<&aOp[nOp]; pOp++){ + freeP4(db, pOp->p4type, pOp->p4.p); +#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS + sqlite3DbFree(db, pOp->zComment); +#endif + } + } + sqlite3DbFree(db, aOp); +} + +/* +** Link the SubProgram object passed as the second argument into the linked +** list at Vdbe.pSubProgram. This list is used to delete all sub-program +** objects when the VM is no longer required. +*/ +SQLITE_PRIVATE void sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p){ + p->pNext = pVdbe->pProgram; + pVdbe->pProgram = p; +} + +/* +** Change the opcode at addr into OP_Noop +*/ +SQLITE_PRIVATE void sqlite3VdbeChangeToNoop(Vdbe *p, int addr){ + if( p->aOp ){ + VdbeOp *pOp = &p->aOp[addr]; + sqlite3 *db = p->db; + freeP4(db, pOp->p4type, pOp->p4.p); + memset(pOp, 0, sizeof(pOp[0])); + pOp->opcode = OP_Noop; + if( addr==p->nOp-1 ) p->nOp--; + } +} + +/* +** Remove the last opcode inserted +*/ +SQLITE_PRIVATE int sqlite3VdbeDeletePriorOpcode(Vdbe *p, u8 op){ + if( (p->nOp-1)>(p->pParse->iFixedOp) && p->aOp[p->nOp-1].opcode==op ){ + sqlite3VdbeChangeToNoop(p, p->nOp-1); + return 1; + }else{ + return 0; + } +} + +/* +** Change the value of the P4 operand for a specific instruction. +** This routine is useful when a large program is loaded from a +** static array using sqlite3VdbeAddOpList but we want to make a +** few minor changes to the program. +** +** If n>=0 then the P4 operand is dynamic, meaning that a copy of +** the string is made into memory obtained from sqlite3_malloc(). +** A value of n==0 means copy bytes of zP4 up to and including the +** first null byte. If n>0 then copy n+1 bytes of zP4. +** +** Other values of n (P4_STATIC, P4_COLLSEQ etc.) indicate that zP4 points +** to a string or structure that is guaranteed to exist for the lifetime of +** the Vdbe. In these cases we can just copy the pointer. +** +** If addr<0 then change P4 on the most recently inserted instruction. +*/ +SQLITE_PRIVATE void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *zP4, int n){ + Op *pOp; + sqlite3 *db; + assert( p!=0 ); + db = p->db; + assert( p->magic==VDBE_MAGIC_INIT ); + if( p->aOp==0 || db->mallocFailed ){ + if( n!=P4_VTAB ){ + freeP4(db, n, (void*)*(char**)&zP4); + } + return; + } + assert( p->nOp>0 ); + assert( addrnOp ); + if( addr<0 ){ + addr = p->nOp - 1; + } + pOp = &p->aOp[addr]; + assert( pOp->p4type==P4_NOTUSED + || pOp->p4type==P4_INT32 + || pOp->p4type==P4_KEYINFO ); + freeP4(db, pOp->p4type, pOp->p4.p); + pOp->p4.p = 0; + if( n==P4_INT32 ){ + /* Note: this cast is safe, because the origin data point was an int + ** that was cast to a (const char *). */ + pOp->p4.i = SQLITE_PTR_TO_INT(zP4); + pOp->p4type = P4_INT32; + }else if( zP4==0 ){ + pOp->p4.p = 0; + pOp->p4type = P4_NOTUSED; + }else if( n==P4_KEYINFO ){ + pOp->p4.p = (void*)zP4; + pOp->p4type = P4_KEYINFO; + }else if( n==P4_VTAB ){ + pOp->p4.p = (void*)zP4; + pOp->p4type = P4_VTAB; + sqlite3VtabLock((VTable *)zP4); + assert( ((VTable *)zP4)->db==p->db ); + }else if( n<0 ){ + pOp->p4.p = (void*)zP4; + pOp->p4type = (signed char)n; + }else{ + if( n==0 ) n = sqlite3Strlen30(zP4); + pOp->p4.z = sqlite3DbStrNDup(p->db, zP4, n); + pOp->p4type = P4_DYNAMIC; + } +} + +/* +** Set the P4 on the most recently added opcode to the KeyInfo for the +** index given. +*/ +SQLITE_PRIVATE void sqlite3VdbeSetP4KeyInfo(Parse *pParse, Index *pIdx){ + Vdbe *v = pParse->pVdbe; + assert( v!=0 ); + assert( pIdx!=0 ); + sqlite3VdbeChangeP4(v, -1, (char*)sqlite3KeyInfoOfIndex(pParse, pIdx), + P4_KEYINFO); +} + +#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS +/* +** Change the comment on the most recently coded instruction. Or +** insert a No-op and add the comment to that new instruction. This +** makes the code easier to read during debugging. None of this happens +** in a production build. +*/ +static void vdbeVComment(Vdbe *p, const char *zFormat, va_list ap){ + assert( p->nOp>0 || p->aOp==0 ); + assert( p->aOp==0 || p->aOp[p->nOp-1].zComment==0 || p->db->mallocFailed ); + if( p->nOp ){ + assert( p->aOp ); + sqlite3DbFree(p->db, p->aOp[p->nOp-1].zComment); + p->aOp[p->nOp-1].zComment = sqlite3VMPrintf(p->db, zFormat, ap); + } +} +SQLITE_PRIVATE void sqlite3VdbeComment(Vdbe *p, const char *zFormat, ...){ + va_list ap; + if( p ){ + va_start(ap, zFormat); + vdbeVComment(p, zFormat, ap); + va_end(ap); + } +} +SQLITE_PRIVATE void sqlite3VdbeNoopComment(Vdbe *p, const char *zFormat, ...){ + va_list ap; + if( p ){ + sqlite3VdbeAddOp0(p, OP_Noop); + va_start(ap, zFormat); + vdbeVComment(p, zFormat, ap); + va_end(ap); + } +} +#endif /* NDEBUG */ + +#ifdef SQLITE_VDBE_COVERAGE +/* +** Set the value if the iSrcLine field for the previously coded instruction. +*/ +SQLITE_PRIVATE void sqlite3VdbeSetLineNumber(Vdbe *v, int iLine){ + sqlite3VdbeGetOp(v,-1)->iSrcLine = iLine; +} +#endif /* SQLITE_VDBE_COVERAGE */ + +/* +** Return the opcode for a given address. If the address is -1, then +** return the most recently inserted opcode. +** +** If a memory allocation error has occurred prior to the calling of this +** routine, then a pointer to a dummy VdbeOp will be returned. That opcode +** is readable but not writable, though it is cast to a writable value. +** The return of a dummy opcode allows the call to continue functioning +** after a OOM fault without having to check to see if the return from +** this routine is a valid pointer. But because the dummy.opcode is 0, +** dummy will never be written to. This is verified by code inspection and +** by running with Valgrind. +*/ +SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){ + /* C89 specifies that the constant "dummy" will be initialized to all + ** zeros, which is correct. MSVC generates a warning, nevertheless. */ + static VdbeOp dummy; /* Ignore the MSVC warning about no initializer */ + assert( p->magic==VDBE_MAGIC_INIT ); + if( addr<0 ){ + addr = p->nOp - 1; + } + assert( (addr>=0 && addrnOp) || p->db->mallocFailed ); + if( p->db->mallocFailed ){ + return (VdbeOp*)&dummy; + }else{ + return &p->aOp[addr]; + } +} + +#if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) +/* +** Return an integer value for one of the parameters to the opcode pOp +** determined by character c. +*/ +static int translateP(char c, const Op *pOp){ + if( c=='1' ) return pOp->p1; + if( c=='2' ) return pOp->p2; + if( c=='3' ) return pOp->p3; + if( c=='4' ) return pOp->p4.i; + return pOp->p5; +} + +/* +** Compute a string for the "comment" field of a VDBE opcode listing. +** +** The Synopsis: field in comments in the vdbe.c source file gets converted +** to an extra string that is appended to the sqlite3OpcodeName(). In the +** absence of other comments, this synopsis becomes the comment on the opcode. +** Some translation occurs: +** +** "PX" -> "r[X]" +** "PX@PY" -> "r[X..X+Y-1]" or "r[x]" if y is 0 or 1 +** "PX@PY+1" -> "r[X..X+Y]" or "r[x]" if y is 0 +** "PY..PY" -> "r[X..Y]" or "r[x]" if y<=x +*/ +static int displayComment( + const Op *pOp, /* The opcode to be commented */ + const char *zP4, /* Previously obtained value for P4 */ + char *zTemp, /* Write result here */ + int nTemp /* Space available in zTemp[] */ +){ + const char *zOpName; + const char *zSynopsis; + int nOpName; + int ii, jj; + zOpName = sqlite3OpcodeName(pOp->opcode); + nOpName = sqlite3Strlen30(zOpName); + if( zOpName[nOpName+1] ){ + int seenCom = 0; + char c; + zSynopsis = zOpName += nOpName + 1; + for(ii=jj=0; jjzComment); + seenCom = 1; + }else{ + int v1 = translateP(c, pOp); + int v2; + sqlite3_snprintf(nTemp-jj, zTemp+jj, "%d", v1); + if( strncmp(zSynopsis+ii+1, "@P", 2)==0 ){ + ii += 3; + jj += sqlite3Strlen30(zTemp+jj); + v2 = translateP(zSynopsis[ii], pOp); + if( strncmp(zSynopsis+ii+1,"+1",2)==0 ){ + ii += 2; + v2++; + } + if( v2>1 ){ + sqlite3_snprintf(nTemp-jj, zTemp+jj, "..%d", v1+v2-1); + } + }else if( strncmp(zSynopsis+ii+1, "..P3", 4)==0 && pOp->p3==0 ){ + ii += 4; + } + } + jj += sqlite3Strlen30(zTemp+jj); + }else{ + zTemp[jj++] = c; + } + } + if( !seenCom && jjzComment ){ + sqlite3_snprintf(nTemp-jj, zTemp+jj, "; %s", pOp->zComment); + jj += sqlite3Strlen30(zTemp+jj); + } + if( jjzComment ){ + sqlite3_snprintf(nTemp, zTemp, "%s", pOp->zComment); + jj = sqlite3Strlen30(zTemp); + }else{ + zTemp[0] = 0; + jj = 0; + } + return jj; +} +#endif /* SQLITE_DEBUG */ + + +#if !defined(SQLITE_OMIT_EXPLAIN) || !defined(NDEBUG) \ + || defined(VDBE_PROFILE) || defined(SQLITE_DEBUG) +/* +** Compute a string that describes the P4 parameter for an opcode. +** Use zTemp for any required temporary buffer space. +*/ +static char *displayP4(Op *pOp, char *zTemp, int nTemp){ + char *zP4 = zTemp; + assert( nTemp>=20 ); + switch( pOp->p4type ){ + case P4_KEYINFO: { + int i, j; + KeyInfo *pKeyInfo = pOp->p4.pKeyInfo; + assert( pKeyInfo->aSortOrder!=0 ); + sqlite3_snprintf(nTemp, zTemp, "k(%d", pKeyInfo->nField); + i = sqlite3Strlen30(zTemp); + for(j=0; jnField; j++){ + CollSeq *pColl = pKeyInfo->aColl[j]; + const char *zColl = pColl ? pColl->zName : "nil"; + int n = sqlite3Strlen30(zColl); + if( n==6 && memcmp(zColl,"BINARY",6)==0 ){ + zColl = "B"; + n = 1; + } + if( i+n>nTemp-6 ){ + memcpy(&zTemp[i],",...",4); + break; + } + zTemp[i++] = ','; + if( pKeyInfo->aSortOrder[j] ){ + zTemp[i++] = '-'; + } + memcpy(&zTemp[i], zColl, n+1); + i += n; + } + zTemp[i++] = ')'; + zTemp[i] = 0; + assert( ip4.pColl; + sqlite3_snprintf(nTemp, zTemp, "(%.20s)", pColl->zName); + break; + } + case P4_FUNCDEF: { + FuncDef *pDef = pOp->p4.pFunc; + sqlite3_snprintf(nTemp, zTemp, "%s(%d)", pDef->zName, pDef->nArg); + break; + } + case P4_INT64: { + sqlite3_snprintf(nTemp, zTemp, "%lld", *pOp->p4.pI64); + break; + } + case P4_INT32: { + sqlite3_snprintf(nTemp, zTemp, "%d", pOp->p4.i); + break; + } + case P4_REAL: { + sqlite3_snprintf(nTemp, zTemp, "%.16g", *pOp->p4.pReal); + break; + } + case P4_MEM: { + Mem *pMem = pOp->p4.pMem; + if( pMem->flags & MEM_Str ){ + zP4 = pMem->z; + }else if( pMem->flags & MEM_Int ){ + sqlite3_snprintf(nTemp, zTemp, "%lld", pMem->u.i); + }else if( pMem->flags & MEM_Real ){ + sqlite3_snprintf(nTemp, zTemp, "%.16g", pMem->r); + }else if( pMem->flags & MEM_Null ){ + sqlite3_snprintf(nTemp, zTemp, "NULL"); + }else{ + assert( pMem->flags & MEM_Blob ); + zP4 = "(blob)"; + } + break; + } +#ifndef SQLITE_OMIT_VIRTUALTABLE + case P4_VTAB: { + sqlite3_vtab *pVtab = pOp->p4.pVtab->pVtab; + sqlite3_snprintf(nTemp, zTemp, "vtab:%p:%p", pVtab, pVtab->pModule); + break; + } +#endif + case P4_INTARRAY: { + sqlite3_snprintf(nTemp, zTemp, "intarray"); + break; + } + case P4_SUBPROGRAM: { + sqlite3_snprintf(nTemp, zTemp, "program"); + break; + } + case P4_ADVANCE: { + zTemp[0] = 0; + break; + } + default: { + zP4 = pOp->p4.z; + if( zP4==0 ){ + zP4 = zTemp; + zTemp[0] = 0; + } + } + } + assert( zP4!=0 ); + return zP4; +} +#endif + +/* +** Declare to the Vdbe that the BTree object at db->aDb[i] is used. +** +** The prepared statements need to know in advance the complete set of +** attached databases that will be use. A mask of these databases +** is maintained in p->btreeMask. The p->lockMask value is the subset of +** p->btreeMask of databases that will require a lock. +*/ +SQLITE_PRIVATE void sqlite3VdbeUsesBtree(Vdbe *p, int i){ + assert( i>=0 && idb->nDb && i<(int)sizeof(yDbMask)*8 ); + assert( i<(int)sizeof(p->btreeMask)*8 ); + p->btreeMask |= ((yDbMask)1)<db->aDb[i].pBt) ){ + p->lockMask |= ((yDbMask)1)<0 +/* +** If SQLite is compiled to support shared-cache mode and to be threadsafe, +** this routine obtains the mutex associated with each BtShared structure +** that may be accessed by the VM passed as an argument. In doing so it also +** sets the BtShared.db member of each of the BtShared structures, ensuring +** that the correct busy-handler callback is invoked if required. +** +** If SQLite is not threadsafe but does support shared-cache mode, then +** sqlite3BtreeEnter() is invoked to set the BtShared.db variables +** of all of BtShared structures accessible via the database handle +** associated with the VM. +** +** If SQLite is not threadsafe and does not support shared-cache mode, this +** function is a no-op. +** +** The p->btreeMask field is a bitmask of all btrees that the prepared +** statement p will ever use. Let N be the number of bits in p->btreeMask +** corresponding to btrees that use shared cache. Then the runtime of +** this routine is N*N. But as N is rarely more than 1, this should not +** be a problem. +*/ +SQLITE_PRIVATE void sqlite3VdbeEnter(Vdbe *p){ + int i; + yDbMask mask; + sqlite3 *db; + Db *aDb; + int nDb; + if( p->lockMask==0 ) return; /* The common case */ + db = p->db; + aDb = db->aDb; + nDb = db->nDb; + for(i=0, mask=1; ilockMask)!=0 && ALWAYS(aDb[i].pBt!=0) ){ + sqlite3BtreeEnter(aDb[i].pBt); + } + } +} +#endif + +#if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE>0 +/* +** Unlock all of the btrees previously locked by a call to sqlite3VdbeEnter(). +*/ +SQLITE_PRIVATE void sqlite3VdbeLeave(Vdbe *p){ + int i; + yDbMask mask; + sqlite3 *db; + Db *aDb; + int nDb; + if( p->lockMask==0 ) return; /* The common case */ + db = p->db; + aDb = db->aDb; + nDb = db->nDb; + for(i=0, mask=1; ilockMask)!=0 && ALWAYS(aDb[i].pBt!=0) ){ + sqlite3BtreeLeave(aDb[i].pBt); + } + } +} +#endif + +#if defined(VDBE_PROFILE) || defined(SQLITE_DEBUG) +/* +** Print a single opcode. This routine is used for debugging only. +*/ +SQLITE_PRIVATE void sqlite3VdbePrintOp(FILE *pOut, int pc, Op *pOp){ + char *zP4; + char zPtr[50]; + char zCom[100]; + static const char *zFormat1 = "%4d %-13s %4d %4d %4d %-13s %.2X %s\n"; + if( pOut==0 ) pOut = stdout; + zP4 = displayP4(pOp, zPtr, sizeof(zPtr)); +#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS + displayComment(pOp, zP4, zCom, sizeof(zCom)); +#else + zCom[0] = 0; +#endif + /* NB: The sqlite3OpcodeName() function is implemented by code created + ** by the mkopcodeh.awk and mkopcodec.awk scripts which extract the + ** information from the vdbe.c source text */ + fprintf(pOut, zFormat1, pc, + sqlite3OpcodeName(pOp->opcode), pOp->p1, pOp->p2, pOp->p3, zP4, pOp->p5, + zCom + ); + fflush(pOut); +} +#endif + +/* +** Release an array of N Mem elements +*/ +static void releaseMemArray(Mem *p, int N){ + if( p && N ){ + Mem *pEnd; + sqlite3 *db = p->db; + u8 malloc_failed = db->mallocFailed; + if( db->pnBytesFreed ){ + for(pEnd=&p[N]; pzMalloc); + } + return; + } + for(pEnd=&p[N]; pflags & MEM_Agg ); + testcase( p->flags & MEM_Dyn ); + testcase( p->flags & MEM_Frame ); + testcase( p->flags & MEM_RowSet ); + if( p->flags&(MEM_Agg|MEM_Dyn|MEM_Frame|MEM_RowSet) ){ + sqlite3VdbeMemRelease(p); + }else if( p->zMalloc ){ + sqlite3DbFree(db, p->zMalloc); + p->zMalloc = 0; + } + + p->flags = MEM_Undefined; + } + db->mallocFailed = malloc_failed; + } +} + +/* +** Delete a VdbeFrame object and its contents. VdbeFrame objects are +** allocated by the OP_Program opcode in sqlite3VdbeExec(). +*/ +SQLITE_PRIVATE void sqlite3VdbeFrameDelete(VdbeFrame *p){ + int i; + Mem *aMem = VdbeFrameMem(p); + VdbeCursor **apCsr = (VdbeCursor **)&aMem[p->nChildMem]; + for(i=0; inChildCsr; i++){ + sqlite3VdbeFreeCursor(p->v, apCsr[i]); + } + releaseMemArray(aMem, p->nChildMem); + sqlite3DbFree(p->v->db, p); +} + +#ifndef SQLITE_OMIT_EXPLAIN +/* +** Give a listing of the program in the virtual machine. +** +** The interface is the same as sqlite3VdbeExec(). But instead of +** running the code, it invokes the callback once for each instruction. +** This feature is used to implement "EXPLAIN". +** +** When p->explain==1, each instruction is listed. When +** p->explain==2, only OP_Explain instructions are listed and these +** are shown in a different format. p->explain==2 is used to implement +** EXPLAIN QUERY PLAN. +** +** When p->explain==1, first the main program is listed, then each of +** the trigger subprograms are listed one by one. +*/ +SQLITE_PRIVATE int sqlite3VdbeList( + Vdbe *p /* The VDBE */ +){ + int nRow; /* Stop when row count reaches this */ + int nSub = 0; /* Number of sub-vdbes seen so far */ + SubProgram **apSub = 0; /* Array of sub-vdbes */ + Mem *pSub = 0; /* Memory cell hold array of subprogs */ + sqlite3 *db = p->db; /* The database connection */ + int i; /* Loop counter */ + int rc = SQLITE_OK; /* Return code */ + Mem *pMem = &p->aMem[1]; /* First Mem of result set */ + + assert( p->explain ); + assert( p->magic==VDBE_MAGIC_RUN ); + assert( p->rc==SQLITE_OK || p->rc==SQLITE_BUSY || p->rc==SQLITE_NOMEM ); + + /* Even though this opcode does not use dynamic strings for + ** the result, result columns may become dynamic if the user calls + ** sqlite3_column_text16(), causing a translation to UTF-16 encoding. + */ + releaseMemArray(pMem, 8); + p->pResultSet = 0; + + if( p->rc==SQLITE_NOMEM ){ + /* This happens if a malloc() inside a call to sqlite3_column_text() or + ** sqlite3_column_text16() failed. */ + db->mallocFailed = 1; + return SQLITE_ERROR; + } + + /* When the number of output rows reaches nRow, that means the + ** listing has finished and sqlite3_step() should return SQLITE_DONE. + ** nRow is the sum of the number of rows in the main program, plus + ** the sum of the number of rows in all trigger subprograms encountered + ** so far. The nRow value will increase as new trigger subprograms are + ** encountered, but p->pc will eventually catch up to nRow. + */ + nRow = p->nOp; + if( p->explain==1 ){ + /* The first 8 memory cells are used for the result set. So we will + ** commandeer the 9th cell to use as storage for an array of pointers + ** to trigger subprograms. The VDBE is guaranteed to have at least 9 + ** cells. */ + assert( p->nMem>9 ); + pSub = &p->aMem[9]; + if( pSub->flags&MEM_Blob ){ + /* On the first call to sqlite3_step(), pSub will hold a NULL. It is + ** initialized to a BLOB by the P4_SUBPROGRAM processing logic below */ + nSub = pSub->n/sizeof(Vdbe*); + apSub = (SubProgram **)pSub->z; + } + for(i=0; inOp; + } + } + + do{ + i = p->pc++; + }while( iexplain==2 && p->aOp[i].opcode!=OP_Explain ); + if( i>=nRow ){ + p->rc = SQLITE_OK; + rc = SQLITE_DONE; + }else if( db->u1.isInterrupted ){ + p->rc = SQLITE_INTERRUPT; + rc = SQLITE_ERROR; + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3ErrStr(p->rc)); + }else{ + char *zP4; + Op *pOp; + if( inOp ){ + /* The output line number is small enough that we are still in the + ** main program. */ + pOp = &p->aOp[i]; + }else{ + /* We are currently listing subprograms. Figure out which one and + ** pick up the appropriate opcode. */ + int j; + i -= p->nOp; + for(j=0; i>=apSub[j]->nOp; j++){ + i -= apSub[j]->nOp; + } + pOp = &apSub[j]->aOp[i]; + } + if( p->explain==1 ){ + pMem->flags = MEM_Int; + pMem->u.i = i; /* Program counter */ + pMem++; + + pMem->flags = MEM_Static|MEM_Str|MEM_Term; + pMem->z = (char*)sqlite3OpcodeName(pOp->opcode); /* Opcode */ + assert( pMem->z!=0 ); + pMem->n = sqlite3Strlen30(pMem->z); + pMem->enc = SQLITE_UTF8; + pMem++; + + /* When an OP_Program opcode is encounter (the only opcode that has + ** a P4_SUBPROGRAM argument), expand the size of the array of subprograms + ** kept in p->aMem[9].z to hold the new program - assuming this subprogram + ** has not already been seen. + */ + if( pOp->p4type==P4_SUBPROGRAM ){ + int nByte = (nSub+1)*sizeof(SubProgram*); + int j; + for(j=0; jp4.pProgram ) break; + } + if( j==nSub && SQLITE_OK==sqlite3VdbeMemGrow(pSub, nByte, nSub!=0) ){ + apSub = (SubProgram **)pSub->z; + apSub[nSub++] = pOp->p4.pProgram; + pSub->flags |= MEM_Blob; + pSub->n = nSub*sizeof(SubProgram*); + } + } + } + + pMem->flags = MEM_Int; + pMem->u.i = pOp->p1; /* P1 */ + pMem++; + + pMem->flags = MEM_Int; + pMem->u.i = pOp->p2; /* P2 */ + pMem++; + + pMem->flags = MEM_Int; + pMem->u.i = pOp->p3; /* P3 */ + pMem++; + + if( sqlite3VdbeMemGrow(pMem, 32, 0) ){ /* P4 */ + assert( p->db->mallocFailed ); + return SQLITE_ERROR; + } + pMem->flags = MEM_Str|MEM_Term; + zP4 = displayP4(pOp, pMem->z, 32); + if( zP4!=pMem->z ){ + sqlite3VdbeMemSetStr(pMem, zP4, -1, SQLITE_UTF8, 0); + }else{ + assert( pMem->z!=0 ); + pMem->n = sqlite3Strlen30(pMem->z); + pMem->enc = SQLITE_UTF8; + } + pMem++; + + if( p->explain==1 ){ + if( sqlite3VdbeMemGrow(pMem, 4, 0) ){ + assert( p->db->mallocFailed ); + return SQLITE_ERROR; + } + pMem->flags = MEM_Str|MEM_Term; + pMem->n = 2; + sqlite3_snprintf(3, pMem->z, "%.2x", pOp->p5); /* P5 */ + pMem->enc = SQLITE_UTF8; + pMem++; + +#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS + if( sqlite3VdbeMemGrow(pMem, 500, 0) ){ + assert( p->db->mallocFailed ); + return SQLITE_ERROR; + } + pMem->flags = MEM_Str|MEM_Term; + pMem->n = displayComment(pOp, zP4, pMem->z, 500); + pMem->enc = SQLITE_UTF8; +#else + pMem->flags = MEM_Null; /* Comment */ +#endif + } + + p->nResColumn = 8 - 4*(p->explain-1); + p->pResultSet = &p->aMem[1]; + p->rc = SQLITE_OK; + rc = SQLITE_ROW; + } + return rc; +} +#endif /* SQLITE_OMIT_EXPLAIN */ + +#ifdef SQLITE_DEBUG +/* +** Print the SQL that was used to generate a VDBE program. +*/ +SQLITE_PRIVATE void sqlite3VdbePrintSql(Vdbe *p){ + const char *z = 0; + if( p->zSql ){ + z = p->zSql; + }else if( p->nOp>=1 ){ + const VdbeOp *pOp = &p->aOp[0]; + if( pOp->opcode==OP_Init && pOp->p4.z!=0 ){ + z = pOp->p4.z; + while( sqlite3Isspace(*z) ) z++; + } + } + if( z ) printf("SQL: [%s]\n", z); +} +#endif + +#if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE) +/* +** Print an IOTRACE message showing SQL content. +*/ +SQLITE_PRIVATE void sqlite3VdbeIOTraceSql(Vdbe *p){ + int nOp = p->nOp; + VdbeOp *pOp; + if( sqlite3IoTrace==0 ) return; + if( nOp<1 ) return; + pOp = &p->aOp[0]; + if( pOp->opcode==OP_Init && pOp->p4.z!=0 ){ + int i, j; + char z[1000]; + sqlite3_snprintf(sizeof(z), z, "%s", pOp->p4.z); + for(i=0; sqlite3Isspace(z[i]); i++){} + for(j=0; z[i]; i++){ + if( sqlite3Isspace(z[i]) ){ + if( z[i-1]!=' ' ){ + z[j++] = ' '; + } + }else{ + z[j++] = z[i]; + } + } + z[j] = 0; + sqlite3IoTrace("SQL %s\n", z); + } +} +#endif /* !SQLITE_OMIT_TRACE && SQLITE_ENABLE_IOTRACE */ + +/* +** Allocate space from a fixed size buffer and return a pointer to +** that space. If insufficient space is available, return NULL. +** +** The pBuf parameter is the initial value of a pointer which will +** receive the new memory. pBuf is normally NULL. If pBuf is not +** NULL, it means that memory space has already been allocated and that +** this routine should not allocate any new memory. When pBuf is not +** NULL simply return pBuf. Only allocate new memory space when pBuf +** is NULL. +** +** nByte is the number of bytes of space needed. +** +** *ppFrom points to available space and pEnd points to the end of the +** available space. When space is allocated, *ppFrom is advanced past +** the end of the allocated space. +** +** *pnByte is a counter of the number of bytes of space that have failed +** to allocate. If there is insufficient space in *ppFrom to satisfy the +** request, then increment *pnByte by the amount of the request. +*/ +static void *allocSpace( + void *pBuf, /* Where return pointer will be stored */ + int nByte, /* Number of bytes to allocate */ + u8 **ppFrom, /* IN/OUT: Allocate from *ppFrom */ + u8 *pEnd, /* Pointer to 1 byte past the end of *ppFrom buffer */ + int *pnByte /* If allocation cannot be made, increment *pnByte */ +){ + assert( EIGHT_BYTE_ALIGNMENT(*ppFrom) ); + if( pBuf ) return pBuf; + nByte = ROUND8(nByte); + if( &(*ppFrom)[nByte] <= pEnd ){ + pBuf = (void*)*ppFrom; + *ppFrom += nByte; + }else{ + *pnByte += nByte; + } + return pBuf; +} + +/* +** Rewind the VDBE back to the beginning in preparation for +** running it. +*/ +SQLITE_PRIVATE void sqlite3VdbeRewind(Vdbe *p){ +#if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) + int i; +#endif + assert( p!=0 ); + assert( p->magic==VDBE_MAGIC_INIT ); + + /* There should be at least one opcode. + */ + assert( p->nOp>0 ); + + /* Set the magic to VDBE_MAGIC_RUN sooner rather than later. */ + p->magic = VDBE_MAGIC_RUN; + +#ifdef SQLITE_DEBUG + for(i=1; inMem; i++){ + assert( p->aMem[i].db==p->db ); + } +#endif + p->pc = -1; + p->rc = SQLITE_OK; + p->errorAction = OE_Abort; + p->magic = VDBE_MAGIC_RUN; + p->nChange = 0; + p->cacheCtr = 1; + p->minWriteFileFormat = 255; + p->iStatement = 0; + p->nFkConstraint = 0; +#ifdef VDBE_PROFILE + for(i=0; inOp; i++){ + p->aOp[i].cnt = 0; + p->aOp[i].cycles = 0; + } +#endif +} + +/* +** Prepare a virtual machine for execution for the first time after +** creating the virtual machine. This involves things such +** as allocating stack space and initializing the program counter. +** After the VDBE has be prepped, it can be executed by one or more +** calls to sqlite3VdbeExec(). +** +** This function may be called exact once on a each virtual machine. +** After this routine is called the VM has been "packaged" and is ready +** to run. After this routine is called, futher calls to +** sqlite3VdbeAddOp() functions are prohibited. This routine disconnects +** the Vdbe from the Parse object that helped generate it so that the +** the Vdbe becomes an independent entity and the Parse object can be +** destroyed. +** +** Use the sqlite3VdbeRewind() procedure to restore a virtual machine back +** to its initial state after it has been run. +*/ +SQLITE_PRIVATE void sqlite3VdbeMakeReady( + Vdbe *p, /* The VDBE */ + Parse *pParse /* Parsing context */ +){ + sqlite3 *db; /* The database connection */ + int nVar; /* Number of parameters */ + int nMem; /* Number of VM memory registers */ + int nCursor; /* Number of cursors required */ + int nArg; /* Number of arguments in subprograms */ + int nOnce; /* Number of OP_Once instructions */ + int n; /* Loop counter */ + u8 *zCsr; /* Memory available for allocation */ + u8 *zEnd; /* First byte past allocated memory */ + int nByte; /* How much extra memory is needed */ + + assert( p!=0 ); + assert( p->nOp>0 ); + assert( pParse!=0 ); + assert( p->magic==VDBE_MAGIC_INIT ); + assert( pParse==p->pParse ); + db = p->db; + assert( db->mallocFailed==0 ); + nVar = pParse->nVar; + nMem = pParse->nMem; + nCursor = pParse->nTab; + nArg = pParse->nMaxArg; + nOnce = pParse->nOnce; + if( nOnce==0 ) nOnce = 1; /* Ensure at least one byte in p->aOnceFlag[] */ + + /* For each cursor required, also allocate a memory cell. Memory + ** cells (nMem+1-nCursor)..nMem, inclusive, will never be used by + ** the vdbe program. Instead they are used to allocate space for + ** VdbeCursor/BtCursor structures. The blob of memory associated with + ** cursor 0 is stored in memory cell nMem. Memory cell (nMem-1) + ** stores the blob of memory associated with cursor 1, etc. + ** + ** See also: allocateCursor(). + */ + nMem += nCursor; + + /* Allocate space for memory registers, SQL variables, VDBE cursors and + ** an array to marshal SQL function arguments in. + */ + zCsr = (u8*)&p->aOp[p->nOp]; /* Memory avaliable for allocation */ + zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */ + + resolveP2Values(p, &nArg); + p->usesStmtJournal = (u8)(pParse->isMultiWrite && pParse->mayAbort); + if( pParse->explain && nMem<10 ){ + nMem = 10; + } + memset(zCsr, 0, zEnd-zCsr); + zCsr += (zCsr - (u8*)0)&7; + assert( EIGHT_BYTE_ALIGNMENT(zCsr) ); + p->expired = 0; + + /* Memory for registers, parameters, cursor, etc, is allocated in two + ** passes. On the first pass, we try to reuse unused space at the + ** end of the opcode array. If we are unable to satisfy all memory + ** requirements by reusing the opcode array tail, then the second + ** pass will fill in the rest using a fresh allocation. + ** + ** This two-pass approach that reuses as much memory as possible from + ** the leftover space at the end of the opcode array can significantly + ** reduce the amount of memory held by a prepared statement. + */ + do { + nByte = 0; + p->aMem = allocSpace(p->aMem, nMem*sizeof(Mem), &zCsr, zEnd, &nByte); + p->aVar = allocSpace(p->aVar, nVar*sizeof(Mem), &zCsr, zEnd, &nByte); + p->apArg = allocSpace(p->apArg, nArg*sizeof(Mem*), &zCsr, zEnd, &nByte); + p->azVar = allocSpace(p->azVar, nVar*sizeof(char*), &zCsr, zEnd, &nByte); + p->apCsr = allocSpace(p->apCsr, nCursor*sizeof(VdbeCursor*), + &zCsr, zEnd, &nByte); + p->aOnceFlag = allocSpace(p->aOnceFlag, nOnce, &zCsr, zEnd, &nByte); + if( nByte ){ + p->pFree = sqlite3DbMallocZero(db, nByte); + } + zCsr = p->pFree; + zEnd = &zCsr[nByte]; + }while( nByte && !db->mallocFailed ); + + p->nCursor = nCursor; + p->nOnceFlag = nOnce; + if( p->aVar ){ + p->nVar = (ynVar)nVar; + for(n=0; naVar[n].flags = MEM_Null; + p->aVar[n].db = db; + } + } + if( p->azVar ){ + p->nzVar = pParse->nzVar; + memcpy(p->azVar, pParse->azVar, p->nzVar*sizeof(p->azVar[0])); + memset(pParse->azVar, 0, pParse->nzVar*sizeof(pParse->azVar[0])); + } + if( p->aMem ){ + p->aMem--; /* aMem[] goes from 1..nMem */ + p->nMem = nMem; /* not from 0..nMem-1 */ + for(n=1; n<=nMem; n++){ + p->aMem[n].flags = MEM_Undefined; + p->aMem[n].db = db; + } + } + p->explain = pParse->explain; + sqlite3VdbeRewind(p); +} + +/* +** Close a VDBE cursor and release all the resources that cursor +** happens to hold. +*/ +SQLITE_PRIVATE void sqlite3VdbeFreeCursor(Vdbe *p, VdbeCursor *pCx){ + if( pCx==0 ){ + return; + } + sqlite3VdbeSorterClose(p->db, pCx); + if( pCx->pBt ){ + sqlite3BtreeClose(pCx->pBt); + /* The pCx->pCursor will be close automatically, if it exists, by + ** the call above. */ + }else if( pCx->pCursor ){ + sqlite3BtreeCloseCursor(pCx->pCursor); + } +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( pCx->pVtabCursor ){ + sqlite3_vtab_cursor *pVtabCursor = pCx->pVtabCursor; + const sqlite3_module *pModule = pVtabCursor->pVtab->pModule; + p->inVtabMethod = 1; + pModule->xClose(pVtabCursor); + p->inVtabMethod = 0; + } +#endif +} + +/* +** Copy the values stored in the VdbeFrame structure to its Vdbe. This +** is used, for example, when a trigger sub-program is halted to restore +** control to the main program. +*/ +SQLITE_PRIVATE int sqlite3VdbeFrameRestore(VdbeFrame *pFrame){ + Vdbe *v = pFrame->v; + v->aOnceFlag = pFrame->aOnceFlag; + v->nOnceFlag = pFrame->nOnceFlag; + v->aOp = pFrame->aOp; + v->nOp = pFrame->nOp; + v->aMem = pFrame->aMem; + v->nMem = pFrame->nMem; + v->apCsr = pFrame->apCsr; + v->nCursor = pFrame->nCursor; + v->db->lastRowid = pFrame->lastRowid; + v->nChange = pFrame->nChange; + return pFrame->pc; +} + +/* +** Close all cursors. +** +** Also release any dynamic memory held by the VM in the Vdbe.aMem memory +** cell array. This is necessary as the memory cell array may contain +** pointers to VdbeFrame objects, which may in turn contain pointers to +** open cursors. +*/ +static void closeAllCursors(Vdbe *p){ + if( p->pFrame ){ + VdbeFrame *pFrame; + for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent); + sqlite3VdbeFrameRestore(pFrame); + } + p->pFrame = 0; + p->nFrame = 0; + + if( p->apCsr ){ + int i; + for(i=0; inCursor; i++){ + VdbeCursor *pC = p->apCsr[i]; + if( pC ){ + sqlite3VdbeFreeCursor(p, pC); + p->apCsr[i] = 0; + } + } + } + if( p->aMem ){ + releaseMemArray(&p->aMem[1], p->nMem); + } + while( p->pDelFrame ){ + VdbeFrame *pDel = p->pDelFrame; + p->pDelFrame = pDel->pParent; + sqlite3VdbeFrameDelete(pDel); + } + + /* Delete any auxdata allocations made by the VM */ + sqlite3VdbeDeleteAuxData(p, -1, 0); + assert( p->pAuxData==0 ); +} + +/* +** Clean up the VM after execution. +** +** This routine will automatically close any cursors, lists, and/or +** sorters that were left open. It also deletes the values of +** variables in the aVar[] array. +*/ +static void Cleanup(Vdbe *p){ + sqlite3 *db = p->db; + +#ifdef SQLITE_DEBUG + /* Execute assert() statements to ensure that the Vdbe.apCsr[] and + ** Vdbe.aMem[] arrays have already been cleaned up. */ + int i; + if( p->apCsr ) for(i=0; inCursor; i++) assert( p->apCsr[i]==0 ); + if( p->aMem ){ + for(i=1; i<=p->nMem; i++) assert( p->aMem[i].flags==MEM_Undefined ); + } +#endif + + sqlite3DbFree(db, p->zErrMsg); + p->zErrMsg = 0; + p->pResultSet = 0; +} + +/* +** Set the number of result columns that will be returned by this SQL +** statement. This is now set at compile time, rather than during +** execution of the vdbe program so that sqlite3_column_count() can +** be called on an SQL statement before sqlite3_step(). +*/ +SQLITE_PRIVATE void sqlite3VdbeSetNumCols(Vdbe *p, int nResColumn){ + Mem *pColName; + int n; + sqlite3 *db = p->db; + + releaseMemArray(p->aColName, p->nResColumn*COLNAME_N); + sqlite3DbFree(db, p->aColName); + n = nResColumn*COLNAME_N; + p->nResColumn = (u16)nResColumn; + p->aColName = pColName = (Mem*)sqlite3DbMallocZero(db, sizeof(Mem)*n ); + if( p->aColName==0 ) return; + while( n-- > 0 ){ + pColName->flags = MEM_Null; + pColName->db = p->db; + pColName++; + } +} + +/* +** Set the name of the idx'th column to be returned by the SQL statement. +** zName must be a pointer to a nul terminated string. +** +** This call must be made after a call to sqlite3VdbeSetNumCols(). +** +** The final parameter, xDel, must be one of SQLITE_DYNAMIC, SQLITE_STATIC +** or SQLITE_TRANSIENT. If it is SQLITE_DYNAMIC, then the buffer pointed +** to by zName will be freed by sqlite3DbFree() when the vdbe is destroyed. +*/ +SQLITE_PRIVATE int sqlite3VdbeSetColName( + Vdbe *p, /* Vdbe being configured */ + int idx, /* Index of column zName applies to */ + int var, /* One of the COLNAME_* constants */ + const char *zName, /* Pointer to buffer containing name */ + void (*xDel)(void*) /* Memory management strategy for zName */ +){ + int rc; + Mem *pColName; + assert( idxnResColumn ); + assert( vardb->mallocFailed ){ + assert( !zName || xDel!=SQLITE_DYNAMIC ); + return SQLITE_NOMEM; + } + assert( p->aColName!=0 ); + pColName = &(p->aColName[idx+var*p->nResColumn]); + rc = sqlite3VdbeMemSetStr(pColName, zName, -1, SQLITE_UTF8, xDel); + assert( rc!=0 || !zName || (pColName->flags&MEM_Term)!=0 ); + return rc; +} + +/* +** A read or write transaction may or may not be active on database handle +** db. If a transaction is active, commit it. If there is a +** write-transaction spanning more than one database file, this routine +** takes care of the master journal trickery. +*/ +static int vdbeCommit(sqlite3 *db, Vdbe *p){ + int i; + int nTrans = 0; /* Number of databases with an active write-transaction */ + int rc = SQLITE_OK; + int needXcommit = 0; + +#ifdef SQLITE_OMIT_VIRTUALTABLE + /* With this option, sqlite3VtabSync() is defined to be simply + ** SQLITE_OK so p is not used. + */ + UNUSED_PARAMETER(p); +#endif + + /* Before doing anything else, call the xSync() callback for any + ** virtual module tables written in this transaction. This has to + ** be done before determining whether a master journal file is + ** required, as an xSync() callback may add an attached database + ** to the transaction. + */ + rc = sqlite3VtabSync(db, p); + + /* This loop determines (a) if the commit hook should be invoked and + ** (b) how many database files have open write transactions, not + ** including the temp database. (b) is important because if more than + ** one database file has an open write transaction, a master journal + ** file is required for an atomic commit. + */ + for(i=0; rc==SQLITE_OK && inDb; i++){ + Btree *pBt = db->aDb[i].pBt; + if( sqlite3BtreeIsInTrans(pBt) ){ + needXcommit = 1; + if( i!=1 ) nTrans++; + sqlite3BtreeEnter(pBt); + rc = sqlite3PagerExclusiveLock(sqlite3BtreePager(pBt)); + sqlite3BtreeLeave(pBt); + } + } + if( rc!=SQLITE_OK ){ + return rc; + } + + /* If there are any write-transactions at all, invoke the commit hook */ + if( needXcommit && db->xCommitCallback ){ + rc = db->xCommitCallback(db->pCommitArg); + if( rc ){ + return SQLITE_CONSTRAINT_COMMITHOOK; + } + } + + /* The simple case - no more than one database file (not counting the + ** TEMP database) has a transaction active. There is no need for the + ** master-journal. + ** + ** If the return value of sqlite3BtreeGetFilename() is a zero length + ** string, it means the main database is :memory: or a temp file. In + ** that case we do not support atomic multi-file commits, so use the + ** simple case then too. + */ + if( 0==sqlite3Strlen30(sqlite3BtreeGetFilename(db->aDb[0].pBt)) + || nTrans<=1 + ){ + for(i=0; rc==SQLITE_OK && inDb; i++){ + Btree *pBt = db->aDb[i].pBt; + if( pBt ){ + rc = sqlite3BtreeCommitPhaseOne(pBt, 0); + } + } + + /* Do the commit only if all databases successfully complete phase 1. + ** If one of the BtreeCommitPhaseOne() calls fails, this indicates an + ** IO error while deleting or truncating a journal file. It is unlikely, + ** but could happen. In this case abandon processing and return the error. + */ + for(i=0; rc==SQLITE_OK && inDb; i++){ + Btree *pBt = db->aDb[i].pBt; + if( pBt ){ + rc = sqlite3BtreeCommitPhaseTwo(pBt, 0); + } + } + if( rc==SQLITE_OK ){ + sqlite3VtabCommit(db); + } + } + + /* The complex case - There is a multi-file write-transaction active. + ** This requires a master journal file to ensure the transaction is + ** committed atomicly. + */ +#ifndef SQLITE_OMIT_DISKIO + else{ + sqlite3_vfs *pVfs = db->pVfs; + int needSync = 0; + char *zMaster = 0; /* File-name for the master journal */ + char const *zMainFile = sqlite3BtreeGetFilename(db->aDb[0].pBt); + sqlite3_file *pMaster = 0; + i64 offset = 0; + int res; + int retryCount = 0; + int nMainFile; + + /* Select a master journal file name */ + nMainFile = sqlite3Strlen30(zMainFile); + zMaster = sqlite3MPrintf(db, "%s-mjXXXXXX9XXz", zMainFile); + if( zMaster==0 ) return SQLITE_NOMEM; + do { + u32 iRandom; + if( retryCount ){ + if( retryCount>100 ){ + sqlite3_log(SQLITE_FULL, "MJ delete: %s", zMaster); + sqlite3OsDelete(pVfs, zMaster, 0); + break; + }else if( retryCount==1 ){ + sqlite3_log(SQLITE_FULL, "MJ collide: %s", zMaster); + } + } + retryCount++; + sqlite3_randomness(sizeof(iRandom), &iRandom); + sqlite3_snprintf(13, &zMaster[nMainFile], "-mj%06X9%02X", + (iRandom>>8)&0xffffff, iRandom&0xff); + /* The antipenultimate character of the master journal name must + ** be "9" to avoid name collisions when using 8+3 filenames. */ + assert( zMaster[sqlite3Strlen30(zMaster)-3]=='9' ); + sqlite3FileSuffix3(zMainFile, zMaster); + rc = sqlite3OsAccess(pVfs, zMaster, SQLITE_ACCESS_EXISTS, &res); + }while( rc==SQLITE_OK && res ); + if( rc==SQLITE_OK ){ + /* Open the master journal. */ + rc = sqlite3OsOpenMalloc(pVfs, zMaster, &pMaster, + SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE| + SQLITE_OPEN_EXCLUSIVE|SQLITE_OPEN_MASTER_JOURNAL, 0 + ); + } + if( rc!=SQLITE_OK ){ + sqlite3DbFree(db, zMaster); + return rc; + } + + /* Write the name of each database file in the transaction into the new + ** master journal file. If an error occurs at this point close + ** and delete the master journal file. All the individual journal files + ** still have 'null' as the master journal pointer, so they will roll + ** back independently if a failure occurs. + */ + for(i=0; inDb; i++){ + Btree *pBt = db->aDb[i].pBt; + if( sqlite3BtreeIsInTrans(pBt) ){ + char const *zFile = sqlite3BtreeGetJournalname(pBt); + if( zFile==0 ){ + continue; /* Ignore TEMP and :memory: databases */ + } + assert( zFile[0]!=0 ); + if( !needSync && !sqlite3BtreeSyncDisabled(pBt) ){ + needSync = 1; + } + rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset); + offset += sqlite3Strlen30(zFile)+1; + if( rc!=SQLITE_OK ){ + sqlite3OsCloseFree(pMaster); + sqlite3OsDelete(pVfs, zMaster, 0); + sqlite3DbFree(db, zMaster); + return rc; + } + } + } + + /* Sync the master journal file. If the IOCAP_SEQUENTIAL device + ** flag is set this is not required. + */ + if( needSync + && 0==(sqlite3OsDeviceCharacteristics(pMaster)&SQLITE_IOCAP_SEQUENTIAL) + && SQLITE_OK!=(rc = sqlite3OsSync(pMaster, SQLITE_SYNC_NORMAL)) + ){ + sqlite3OsCloseFree(pMaster); + sqlite3OsDelete(pVfs, zMaster, 0); + sqlite3DbFree(db, zMaster); + return rc; + } + + /* Sync all the db files involved in the transaction. The same call + ** sets the master journal pointer in each individual journal. If + ** an error occurs here, do not delete the master journal file. + ** + ** If the error occurs during the first call to + ** sqlite3BtreeCommitPhaseOne(), then there is a chance that the + ** master journal file will be orphaned. But we cannot delete it, + ** in case the master journal file name was written into the journal + ** file before the failure occurred. + */ + for(i=0; rc==SQLITE_OK && inDb; i++){ + Btree *pBt = db->aDb[i].pBt; + if( pBt ){ + rc = sqlite3BtreeCommitPhaseOne(pBt, zMaster); + } + } + sqlite3OsCloseFree(pMaster); + assert( rc!=SQLITE_BUSY ); + if( rc!=SQLITE_OK ){ + sqlite3DbFree(db, zMaster); + return rc; + } + + /* Delete the master journal file. This commits the transaction. After + ** doing this the directory is synced again before any individual + ** transaction files are deleted. + */ + rc = sqlite3OsDelete(pVfs, zMaster, 1); + sqlite3DbFree(db, zMaster); + zMaster = 0; + if( rc ){ + return rc; + } + + /* All files and directories have already been synced, so the following + ** calls to sqlite3BtreeCommitPhaseTwo() are only closing files and + ** deleting or truncating journals. If something goes wrong while + ** this is happening we don't really care. The integrity of the + ** transaction is already guaranteed, but some stray 'cold' journals + ** may be lying around. Returning an error code won't help matters. + */ + disable_simulated_io_errors(); + sqlite3BeginBenignMalloc(); + for(i=0; inDb; i++){ + Btree *pBt = db->aDb[i].pBt; + if( pBt ){ + sqlite3BtreeCommitPhaseTwo(pBt, 1); + } + } + sqlite3EndBenignMalloc(); + enable_simulated_io_errors(); + + sqlite3VtabCommit(db); + } +#endif + + return rc; +} + +/* +** This routine checks that the sqlite3.nVdbeActive count variable +** matches the number of vdbe's in the list sqlite3.pVdbe that are +** currently active. An assertion fails if the two counts do not match. +** This is an internal self-check only - it is not an essential processing +** step. +** +** This is a no-op if NDEBUG is defined. +*/ +#ifndef NDEBUG +static void checkActiveVdbeCnt(sqlite3 *db){ + Vdbe *p; + int cnt = 0; + int nWrite = 0; + int nRead = 0; + p = db->pVdbe; + while( p ){ + if( p->magic==VDBE_MAGIC_RUN && p->pc>=0 ){ + cnt++; + if( p->readOnly==0 ) nWrite++; + if( p->bIsReader ) nRead++; + } + p = p->pNext; + } + assert( cnt==db->nVdbeActive ); + assert( nWrite==db->nVdbeWrite ); + assert( nRead==db->nVdbeRead ); +} +#else +#define checkActiveVdbeCnt(x) +#endif + +/* +** If the Vdbe passed as the first argument opened a statement-transaction, +** close it now. Argument eOp must be either SAVEPOINT_ROLLBACK or +** SAVEPOINT_RELEASE. If it is SAVEPOINT_ROLLBACK, then the statement +** transaction is rolled back. If eOp is SAVEPOINT_RELEASE, then the +** statement transaction is committed. +** +** If an IO error occurs, an SQLITE_IOERR_XXX error code is returned. +** Otherwise SQLITE_OK. +*/ +SQLITE_PRIVATE int sqlite3VdbeCloseStatement(Vdbe *p, int eOp){ + sqlite3 *const db = p->db; + int rc = SQLITE_OK; + + /* If p->iStatement is greater than zero, then this Vdbe opened a + ** statement transaction that should be closed here. The only exception + ** is that an IO error may have occurred, causing an emergency rollback. + ** In this case (db->nStatement==0), and there is nothing to do. + */ + if( db->nStatement && p->iStatement ){ + int i; + const int iSavepoint = p->iStatement-1; + + assert( eOp==SAVEPOINT_ROLLBACK || eOp==SAVEPOINT_RELEASE); + assert( db->nStatement>0 ); + assert( p->iStatement==(db->nStatement+db->nSavepoint) ); + + for(i=0; inDb; i++){ + int rc2 = SQLITE_OK; + Btree *pBt = db->aDb[i].pBt; + if( pBt ){ + if( eOp==SAVEPOINT_ROLLBACK ){ + rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint); + } + if( rc2==SQLITE_OK ){ + rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint); + } + if( rc==SQLITE_OK ){ + rc = rc2; + } + } + } + db->nStatement--; + p->iStatement = 0; + + if( rc==SQLITE_OK ){ + if( eOp==SAVEPOINT_ROLLBACK ){ + rc = sqlite3VtabSavepoint(db, SAVEPOINT_ROLLBACK, iSavepoint); + } + if( rc==SQLITE_OK ){ + rc = sqlite3VtabSavepoint(db, SAVEPOINT_RELEASE, iSavepoint); + } + } + + /* If the statement transaction is being rolled back, also restore the + ** database handles deferred constraint counter to the value it had when + ** the statement transaction was opened. */ + if( eOp==SAVEPOINT_ROLLBACK ){ + db->nDeferredCons = p->nStmtDefCons; + db->nDeferredImmCons = p->nStmtDefImmCons; + } + } + return rc; +} + +/* +** This function is called when a transaction opened by the database +** handle associated with the VM passed as an argument is about to be +** committed. If there are outstanding deferred foreign key constraint +** violations, return SQLITE_ERROR. Otherwise, SQLITE_OK. +** +** If there are outstanding FK violations and this function returns +** SQLITE_ERROR, set the result of the VM to SQLITE_CONSTRAINT_FOREIGNKEY +** and write an error message to it. Then return SQLITE_ERROR. +*/ +#ifndef SQLITE_OMIT_FOREIGN_KEY +SQLITE_PRIVATE int sqlite3VdbeCheckFk(Vdbe *p, int deferred){ + sqlite3 *db = p->db; + if( (deferred && (db->nDeferredCons+db->nDeferredImmCons)>0) + || (!deferred && p->nFkConstraint>0) + ){ + p->rc = SQLITE_CONSTRAINT_FOREIGNKEY; + p->errorAction = OE_Abort; + sqlite3SetString(&p->zErrMsg, db, "FOREIGN KEY constraint failed"); + return SQLITE_ERROR; + } + return SQLITE_OK; +} +#endif + +/* +** This routine is called the when a VDBE tries to halt. If the VDBE +** has made changes and is in autocommit mode, then commit those +** changes. If a rollback is needed, then do the rollback. +** +** This routine is the only way to move the state of a VM from +** SQLITE_MAGIC_RUN to SQLITE_MAGIC_HALT. It is harmless to +** call this on a VM that is in the SQLITE_MAGIC_HALT state. +** +** Return an error code. If the commit could not complete because of +** lock contention, return SQLITE_BUSY. If SQLITE_BUSY is returned, it +** means the close did not happen and needs to be repeated. +*/ +SQLITE_PRIVATE int sqlite3VdbeHalt(Vdbe *p){ + int rc; /* Used to store transient return codes */ + sqlite3 *db = p->db; + + /* This function contains the logic that determines if a statement or + ** transaction will be committed or rolled back as a result of the + ** execution of this virtual machine. + ** + ** If any of the following errors occur: + ** + ** SQLITE_NOMEM + ** SQLITE_IOERR + ** SQLITE_FULL + ** SQLITE_INTERRUPT + ** + ** Then the internal cache might have been left in an inconsistent + ** state. We need to rollback the statement transaction, if there is + ** one, or the complete transaction if there is no statement transaction. + */ + + if( p->db->mallocFailed ){ + p->rc = SQLITE_NOMEM; + } + if( p->aOnceFlag ) memset(p->aOnceFlag, 0, p->nOnceFlag); + closeAllCursors(p); + if( p->magic!=VDBE_MAGIC_RUN ){ + return SQLITE_OK; + } + checkActiveVdbeCnt(db); + + /* No commit or rollback needed if the program never started or if the + ** SQL statement does not read or write a database file. */ + if( p->pc>=0 && p->bIsReader ){ + int mrc; /* Primary error code from p->rc */ + int eStatementOp = 0; + int isSpecialError; /* Set to true if a 'special' error */ + + /* Lock all btrees used by the statement */ + sqlite3VdbeEnter(p); + + /* Check for one of the special errors */ + mrc = p->rc & 0xff; + assert( p->rc!=SQLITE_IOERR_BLOCKED ); /* This error no longer exists */ + isSpecialError = mrc==SQLITE_NOMEM || mrc==SQLITE_IOERR + || mrc==SQLITE_INTERRUPT || mrc==SQLITE_FULL; + if( isSpecialError ){ + /* If the query was read-only and the error code is SQLITE_INTERRUPT, + ** no rollback is necessary. Otherwise, at least a savepoint + ** transaction must be rolled back to restore the database to a + ** consistent state. + ** + ** Even if the statement is read-only, it is important to perform + ** a statement or transaction rollback operation. If the error + ** occurred while writing to the journal, sub-journal or database + ** file as part of an effort to free up cache space (see function + ** pagerStress() in pager.c), the rollback is required to restore + ** the pager to a consistent state. + */ + if( !p->readOnly || mrc!=SQLITE_INTERRUPT ){ + if( (mrc==SQLITE_NOMEM || mrc==SQLITE_FULL) && p->usesStmtJournal ){ + eStatementOp = SAVEPOINT_ROLLBACK; + }else{ + /* We are forced to roll back the active transaction. Before doing + ** so, abort any other statements this handle currently has active. + */ + sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); + sqlite3CloseSavepoints(db); + db->autoCommit = 1; + } + } + } + + /* Check for immediate foreign key violations. */ + if( p->rc==SQLITE_OK ){ + sqlite3VdbeCheckFk(p, 0); + } + + /* If the auto-commit flag is set and this is the only active writer + ** VM, then we do either a commit or rollback of the current transaction. + ** + ** Note: This block also runs if one of the special errors handled + ** above has occurred. + */ + if( !sqlite3VtabInSync(db) + && db->autoCommit + && db->nVdbeWrite==(p->readOnly==0) + ){ + if( p->rc==SQLITE_OK || (p->errorAction==OE_Fail && !isSpecialError) ){ + rc = sqlite3VdbeCheckFk(p, 1); + if( rc!=SQLITE_OK ){ + if( NEVER(p->readOnly) ){ + sqlite3VdbeLeave(p); + return SQLITE_ERROR; + } + rc = SQLITE_CONSTRAINT_FOREIGNKEY; + }else{ + /* The auto-commit flag is true, the vdbe program was successful + ** or hit an 'OR FAIL' constraint and there are no deferred foreign + ** key constraints to hold up the transaction. This means a commit + ** is required. */ + rc = vdbeCommit(db, p); + } + if( rc==SQLITE_BUSY && p->readOnly ){ + sqlite3VdbeLeave(p); + return SQLITE_BUSY; + }else if( rc!=SQLITE_OK ){ + p->rc = rc; + sqlite3RollbackAll(db, SQLITE_OK); + }else{ + db->nDeferredCons = 0; + db->nDeferredImmCons = 0; + db->flags &= ~SQLITE_DeferFKs; + sqlite3CommitInternalChanges(db); + } + }else{ + sqlite3RollbackAll(db, SQLITE_OK); + } + db->nStatement = 0; + }else if( eStatementOp==0 ){ + if( p->rc==SQLITE_OK || p->errorAction==OE_Fail ){ + eStatementOp = SAVEPOINT_RELEASE; + }else if( p->errorAction==OE_Abort ){ + eStatementOp = SAVEPOINT_ROLLBACK; + }else{ + sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); + sqlite3CloseSavepoints(db); + db->autoCommit = 1; + } + } + + /* If eStatementOp is non-zero, then a statement transaction needs to + ** be committed or rolled back. Call sqlite3VdbeCloseStatement() to + ** do so. If this operation returns an error, and the current statement + ** error code is SQLITE_OK or SQLITE_CONSTRAINT, then promote the + ** current statement error code. + */ + if( eStatementOp ){ + rc = sqlite3VdbeCloseStatement(p, eStatementOp); + if( rc ){ + if( p->rc==SQLITE_OK || (p->rc&0xff)==SQLITE_CONSTRAINT ){ + p->rc = rc; + sqlite3DbFree(db, p->zErrMsg); + p->zErrMsg = 0; + } + sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); + sqlite3CloseSavepoints(db); + db->autoCommit = 1; + } + } + + /* If this was an INSERT, UPDATE or DELETE and no statement transaction + ** has been rolled back, update the database connection change-counter. + */ + if( p->changeCntOn ){ + if( eStatementOp!=SAVEPOINT_ROLLBACK ){ + sqlite3VdbeSetChanges(db, p->nChange); + }else{ + sqlite3VdbeSetChanges(db, 0); + } + p->nChange = 0; + } + + /* Release the locks */ + sqlite3VdbeLeave(p); + } + + /* We have successfully halted and closed the VM. Record this fact. */ + if( p->pc>=0 ){ + db->nVdbeActive--; + if( !p->readOnly ) db->nVdbeWrite--; + if( p->bIsReader ) db->nVdbeRead--; + assert( db->nVdbeActive>=db->nVdbeRead ); + assert( db->nVdbeRead>=db->nVdbeWrite ); + assert( db->nVdbeWrite>=0 ); + } + p->magic = VDBE_MAGIC_HALT; + checkActiveVdbeCnt(db); + if( p->db->mallocFailed ){ + p->rc = SQLITE_NOMEM; + } + + /* If the auto-commit flag is set to true, then any locks that were held + ** by connection db have now been released. Call sqlite3ConnectionUnlocked() + ** to invoke any required unlock-notify callbacks. + */ + if( db->autoCommit ){ + sqlite3ConnectionUnlocked(db); + } + + assert( db->nVdbeActive>0 || db->autoCommit==0 || db->nStatement==0 ); + return (p->rc==SQLITE_BUSY ? SQLITE_BUSY : SQLITE_OK); +} + + +/* +** Each VDBE holds the result of the most recent sqlite3_step() call +** in p->rc. This routine sets that result back to SQLITE_OK. +*/ +SQLITE_PRIVATE void sqlite3VdbeResetStepResult(Vdbe *p){ + p->rc = SQLITE_OK; +} + +/* +** Copy the error code and error message belonging to the VDBE passed +** as the first argument to its database handle (so that they will be +** returned by calls to sqlite3_errcode() and sqlite3_errmsg()). +** +** This function does not clear the VDBE error code or message, just +** copies them to the database handle. +*/ +SQLITE_PRIVATE int sqlite3VdbeTransferError(Vdbe *p){ + sqlite3 *db = p->db; + int rc = p->rc; + if( p->zErrMsg ){ + u8 mallocFailed = db->mallocFailed; + sqlite3BeginBenignMalloc(); + if( db->pErr==0 ) db->pErr = sqlite3ValueNew(db); + sqlite3ValueSetStr(db->pErr, -1, p->zErrMsg, SQLITE_UTF8, SQLITE_TRANSIENT); + sqlite3EndBenignMalloc(); + db->mallocFailed = mallocFailed; + db->errCode = rc; + }else{ + sqlite3Error(db, rc, 0); + } + return rc; +} + +#ifdef SQLITE_ENABLE_SQLLOG +/* +** If an SQLITE_CONFIG_SQLLOG hook is registered and the VM has been run, +** invoke it. +*/ +static void vdbeInvokeSqllog(Vdbe *v){ + if( sqlite3GlobalConfig.xSqllog && v->rc==SQLITE_OK && v->zSql && v->pc>=0 ){ + char *zExpanded = sqlite3VdbeExpandSql(v, v->zSql); + assert( v->db->init.busy==0 ); + if( zExpanded ){ + sqlite3GlobalConfig.xSqllog( + sqlite3GlobalConfig.pSqllogArg, v->db, zExpanded, 1 + ); + sqlite3DbFree(v->db, zExpanded); + } + } +} +#else +# define vdbeInvokeSqllog(x) +#endif + +/* +** Clean up a VDBE after execution but do not delete the VDBE just yet. +** Write any error messages into *pzErrMsg. Return the result code. +** +** After this routine is run, the VDBE should be ready to be executed +** again. +** +** To look at it another way, this routine resets the state of the +** virtual machine from VDBE_MAGIC_RUN or VDBE_MAGIC_HALT back to +** VDBE_MAGIC_INIT. +*/ +SQLITE_PRIVATE int sqlite3VdbeReset(Vdbe *p){ + sqlite3 *db; + db = p->db; + + /* If the VM did not run to completion or if it encountered an + ** error, then it might not have been halted properly. So halt + ** it now. + */ + sqlite3VdbeHalt(p); + + /* If the VDBE has be run even partially, then transfer the error code + ** and error message from the VDBE into the main database structure. But + ** if the VDBE has just been set to run but has not actually executed any + ** instructions yet, leave the main database error information unchanged. + */ + if( p->pc>=0 ){ + vdbeInvokeSqllog(p); + sqlite3VdbeTransferError(p); + sqlite3DbFree(db, p->zErrMsg); + p->zErrMsg = 0; + if( p->runOnlyOnce ) p->expired = 1; + }else if( p->rc && p->expired ){ + /* The expired flag was set on the VDBE before the first call + ** to sqlite3_step(). For consistency (since sqlite3_step() was + ** called), set the database error in this case as well. + */ + sqlite3Error(db, p->rc, p->zErrMsg ? "%s" : 0, p->zErrMsg); + sqlite3DbFree(db, p->zErrMsg); + p->zErrMsg = 0; + } + + /* Reclaim all memory used by the VDBE + */ + Cleanup(p); + + /* Save profiling information from this VDBE run. + */ +#ifdef VDBE_PROFILE + { + FILE *out = fopen("vdbe_profile.out", "a"); + if( out ){ + int i; + fprintf(out, "---- "); + for(i=0; inOp; i++){ + fprintf(out, "%02x", p->aOp[i].opcode); + } + fprintf(out, "\n"); + if( p->zSql ){ + char c, pc = 0; + fprintf(out, "-- "); + for(i=0; (c = p->zSql[i])!=0; i++){ + if( pc=='\n' ) fprintf(out, "-- "); + putc(c, out); + pc = c; + } + if( pc!='\n' ) fprintf(out, "\n"); + } + for(i=0; inOp; i++){ + char zHdr[100]; + sqlite3_snprintf(sizeof(zHdr), zHdr, "%6u %12llu %8llu ", + p->aOp[i].cnt, + p->aOp[i].cycles, + p->aOp[i].cnt>0 ? p->aOp[i].cycles/p->aOp[i].cnt : 0 + ); + fprintf(out, "%s", zHdr); + sqlite3VdbePrintOp(out, i, &p->aOp[i]); + } + fclose(out); + } + } +#endif + p->iCurrentTime = 0; + p->magic = VDBE_MAGIC_INIT; + return p->rc & db->errMask; +} + +/* +** Clean up and delete a VDBE after execution. Return an integer which is +** the result code. Write any error message text into *pzErrMsg. +*/ +SQLITE_PRIVATE int sqlite3VdbeFinalize(Vdbe *p){ + int rc = SQLITE_OK; + if( p->magic==VDBE_MAGIC_RUN || p->magic==VDBE_MAGIC_HALT ){ + rc = sqlite3VdbeReset(p); + assert( (rc & p->db->errMask)==rc ); + } + sqlite3VdbeDelete(p); + return rc; +} + +/* +** If parameter iOp is less than zero, then invoke the destructor for +** all auxiliary data pointers currently cached by the VM passed as +** the first argument. +** +** Or, if iOp is greater than or equal to zero, then the destructor is +** only invoked for those auxiliary data pointers created by the user +** function invoked by the OP_Function opcode at instruction iOp of +** VM pVdbe, and only then if: +** +** * the associated function parameter is the 32nd or later (counting +** from left to right), or +** +** * the corresponding bit in argument mask is clear (where the first +** function parameter corrsponds to bit 0 etc.). +*/ +SQLITE_PRIVATE void sqlite3VdbeDeleteAuxData(Vdbe *pVdbe, int iOp, int mask){ + AuxData **pp = &pVdbe->pAuxData; + while( *pp ){ + AuxData *pAux = *pp; + if( (iOp<0) + || (pAux->iOp==iOp && (pAux->iArg>31 || !(mask & MASKBIT32(pAux->iArg)))) + ){ + testcase( pAux->iArg==31 ); + if( pAux->xDelete ){ + pAux->xDelete(pAux->pAux); + } + *pp = pAux->pNext; + sqlite3DbFree(pVdbe->db, pAux); + }else{ + pp= &pAux->pNext; + } + } +} + +/* +** Free all memory associated with the Vdbe passed as the second argument, +** except for object itself, which is preserved. +** +** The difference between this function and sqlite3VdbeDelete() is that +** VdbeDelete() also unlinks the Vdbe from the list of VMs associated with +** the database connection and frees the object itself. +*/ +SQLITE_PRIVATE void sqlite3VdbeClearObject(sqlite3 *db, Vdbe *p){ + SubProgram *pSub, *pNext; + int i; + assert( p->db==0 || p->db==db ); + releaseMemArray(p->aVar, p->nVar); + releaseMemArray(p->aColName, p->nResColumn*COLNAME_N); + for(pSub=p->pProgram; pSub; pSub=pNext){ + pNext = pSub->pNext; + vdbeFreeOpArray(db, pSub->aOp, pSub->nOp); + sqlite3DbFree(db, pSub); + } + for(i=p->nzVar-1; i>=0; i--) sqlite3DbFree(db, p->azVar[i]); + vdbeFreeOpArray(db, p->aOp, p->nOp); + sqlite3DbFree(db, p->aColName); + sqlite3DbFree(db, p->zSql); + sqlite3DbFree(db, p->pFree); +#if defined(SQLITE_ENABLE_TREE_EXPLAIN) + sqlite3DbFree(db, p->zExplain); + sqlite3DbFree(db, p->pExplain); +#endif +} + +/* +** Delete an entire VDBE. +*/ +SQLITE_PRIVATE void sqlite3VdbeDelete(Vdbe *p){ + sqlite3 *db; + + if( NEVER(p==0) ) return; + db = p->db; + assert( sqlite3_mutex_held(db->mutex) ); + sqlite3VdbeClearObject(db, p); + if( p->pPrev ){ + p->pPrev->pNext = p->pNext; + }else{ + assert( db->pVdbe==p ); + db->pVdbe = p->pNext; + } + if( p->pNext ){ + p->pNext->pPrev = p->pPrev; + } + p->magic = VDBE_MAGIC_DEAD; + p->db = 0; + sqlite3DbFree(db, p); +} + +/* +** Make sure the cursor p is ready to read or write the row to which it +** was last positioned. Return an error code if an OOM fault or I/O error +** prevents us from positioning the cursor to its correct position. +** +** If a MoveTo operation is pending on the given cursor, then do that +** MoveTo now. If no move is pending, check to see if the row has been +** deleted out from under the cursor and if it has, mark the row as +** a NULL row. +** +** If the cursor is already pointing to the correct row and that row has +** not been deleted out from under the cursor, then this routine is a no-op. +*/ +SQLITE_PRIVATE int sqlite3VdbeCursorMoveto(VdbeCursor *p){ + if( p->deferredMoveto ){ + int res, rc; +#ifdef SQLITE_TEST + extern int sqlite3_search_count; +#endif + assert( p->isTable ); + rc = sqlite3BtreeMovetoUnpacked(p->pCursor, 0, p->movetoTarget, 0, &res); + if( rc ) return rc; + p->lastRowid = p->movetoTarget; + if( res!=0 ) return SQLITE_CORRUPT_BKPT; + p->rowidIsValid = 1; +#ifdef SQLITE_TEST + sqlite3_search_count++; +#endif + p->deferredMoveto = 0; + p->cacheStatus = CACHE_STALE; + }else if( p->pCursor ){ + int hasMoved; + int rc = sqlite3BtreeCursorHasMoved(p->pCursor, &hasMoved); + if( rc ) return rc; + if( hasMoved ){ + p->cacheStatus = CACHE_STALE; + if( hasMoved==2 ) p->nullRow = 1; + } + } + return SQLITE_OK; +} + +/* +** The following functions: +** +** sqlite3VdbeSerialType() +** sqlite3VdbeSerialTypeLen() +** sqlite3VdbeSerialLen() +** sqlite3VdbeSerialPut() +** sqlite3VdbeSerialGet() +** +** encapsulate the code that serializes values for storage in SQLite +** data and index records. Each serialized value consists of a +** 'serial-type' and a blob of data. The serial type is an 8-byte unsigned +** integer, stored as a varint. +** +** In an SQLite index record, the serial type is stored directly before +** the blob of data that it corresponds to. In a table record, all serial +** types are stored at the start of the record, and the blobs of data at +** the end. Hence these functions allow the caller to handle the +** serial-type and data blob separately. +** +** The following table describes the various storage classes for data: +** +** serial type bytes of data type +** -------------- --------------- --------------- +** 0 0 NULL +** 1 1 signed integer +** 2 2 signed integer +** 3 3 signed integer +** 4 4 signed integer +** 5 6 signed integer +** 6 8 signed integer +** 7 8 IEEE float +** 8 0 Integer constant 0 +** 9 0 Integer constant 1 +** 10,11 reserved for expansion +** N>=12 and even (N-12)/2 BLOB +** N>=13 and odd (N-13)/2 text +** +** The 8 and 9 types were added in 3.3.0, file format 4. Prior versions +** of SQLite will not understand those serial types. +*/ + +/* +** Return the serial-type for the value stored in pMem. +*/ +SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format){ + int flags = pMem->flags; + int n; + + if( flags&MEM_Null ){ + return 0; + } + if( flags&MEM_Int ){ + /* Figure out whether to use 1, 2, 4, 6 or 8 bytes. */ +# define MAX_6BYTE ((((i64)0x00008000)<<32)-1) + i64 i = pMem->u.i; + u64 u; + if( i<0 ){ + if( i<(-MAX_6BYTE) ) return 6; + /* Previous test prevents: u = -(-9223372036854775808) */ + u = -i; + }else{ + u = i; + } + if( u<=127 ){ + return ((i&1)==i && file_format>=4) ? 8+(u32)u : 1; + } + if( u<=32767 ) return 2; + if( u<=8388607 ) return 3; + if( u<=2147483647 ) return 4; + if( u<=MAX_6BYTE ) return 5; + return 6; + } + if( flags&MEM_Real ){ + return 7; + } + assert( pMem->db->mallocFailed || flags&(MEM_Str|MEM_Blob) ); + n = pMem->n; + if( flags & MEM_Zero ){ + n += pMem->u.nZero; + } + assert( n>=0 ); + return ((n*2) + 12 + ((flags&MEM_Str)!=0)); +} + +/* +** Return the length of the data corresponding to the supplied serial-type. +*/ +SQLITE_PRIVATE u32 sqlite3VdbeSerialTypeLen(u32 serial_type){ + if( serial_type>=12 ){ + return (serial_type-12)/2; + }else{ + static const u8 aSize[] = { 0, 1, 2, 3, 4, 6, 8, 8, 0, 0, 0, 0 }; + return aSize[serial_type]; + } +} + +/* +** If we are on an architecture with mixed-endian floating +** points (ex: ARM7) then swap the lower 4 bytes with the +** upper 4 bytes. Return the result. +** +** For most architectures, this is a no-op. +** +** (later): It is reported to me that the mixed-endian problem +** on ARM7 is an issue with GCC, not with the ARM7 chip. It seems +** that early versions of GCC stored the two words of a 64-bit +** float in the wrong order. And that error has been propagated +** ever since. The blame is not necessarily with GCC, though. +** GCC might have just copying the problem from a prior compiler. +** I am also told that newer versions of GCC that follow a different +** ABI get the byte order right. +** +** Developers using SQLite on an ARM7 should compile and run their +** application using -DSQLITE_DEBUG=1 at least once. With DEBUG +** enabled, some asserts below will ensure that the byte order of +** floating point values is correct. +** +** (2007-08-30) Frank van Vugt has studied this problem closely +** and has send his findings to the SQLite developers. Frank +** writes that some Linux kernels offer floating point hardware +** emulation that uses only 32-bit mantissas instead of a full +** 48-bits as required by the IEEE standard. (This is the +** CONFIG_FPE_FASTFPE option.) On such systems, floating point +** byte swapping becomes very complicated. To avoid problems, +** the necessary byte swapping is carried out using a 64-bit integer +** rather than a 64-bit float. Frank assures us that the code here +** works for him. We, the developers, have no way to independently +** verify this, but Frank seems to know what he is talking about +** so we trust him. +*/ +#ifdef SQLITE_MIXED_ENDIAN_64BIT_FLOAT +static u64 floatSwap(u64 in){ + union { + u64 r; + u32 i[2]; + } u; + u32 t; + + u.r = in; + t = u.i[0]; + u.i[0] = u.i[1]; + u.i[1] = t; + return u.r; +} +# define swapMixedEndianFloat(X) X = floatSwap(X) +#else +# define swapMixedEndianFloat(X) +#endif + +/* +** Write the serialized data blob for the value stored in pMem into +** buf. It is assumed that the caller has allocated sufficient space. +** Return the number of bytes written. +** +** nBuf is the amount of space left in buf[]. The caller is responsible +** for allocating enough space to buf[] to hold the entire field, exclusive +** of the pMem->u.nZero bytes for a MEM_Zero value. +** +** Return the number of bytes actually written into buf[]. The number +** of bytes in the zero-filled tail is included in the return value only +** if those bytes were zeroed in buf[]. +*/ +SQLITE_PRIVATE u32 sqlite3VdbeSerialPut(u8 *buf, Mem *pMem, u32 serial_type){ + u32 len; + + /* Integer and Real */ + if( serial_type<=7 && serial_type>0 ){ + u64 v; + u32 i; + if( serial_type==7 ){ + assert( sizeof(v)==sizeof(pMem->r) ); + memcpy(&v, &pMem->r, sizeof(v)); + swapMixedEndianFloat(v); + }else{ + v = pMem->u.i; + } + len = i = sqlite3VdbeSerialTypeLen(serial_type); + while( i-- ){ + buf[i] = (u8)(v&0xFF); + v >>= 8; + } + return len; + } + + /* String or blob */ + if( serial_type>=12 ){ + assert( pMem->n + ((pMem->flags & MEM_Zero)?pMem->u.nZero:0) + == (int)sqlite3VdbeSerialTypeLen(serial_type) ); + len = pMem->n; + memcpy(buf, pMem->z, len); + return len; + } + + /* NULL or constants 0 or 1 */ + return 0; +} + +/* Input "x" is a sequence of unsigned characters that represent a +** big-endian integer. Return the equivalent native integer +*/ +#define ONE_BYTE_INT(x) ((i8)(x)[0]) +#define TWO_BYTE_INT(x) (256*(i8)((x)[0])|(x)[1]) +#define THREE_BYTE_INT(x) (65536*(i8)((x)[0])|((x)[1]<<8)|(x)[2]) +#define FOUR_BYTE_UINT(x) (((u32)(x)[0]<<24)|((x)[1]<<16)|((x)[2]<<8)|(x)[3]) + +/* +** Deserialize the data blob pointed to by buf as serial type serial_type +** and store the result in pMem. Return the number of bytes read. +*/ +SQLITE_PRIVATE u32 sqlite3VdbeSerialGet( + const unsigned char *buf, /* Buffer to deserialize from */ + u32 serial_type, /* Serial type to deserialize */ + Mem *pMem /* Memory cell to write value into */ +){ + u64 x; + u32 y; + switch( serial_type ){ + case 10: /* Reserved for future use */ + case 11: /* Reserved for future use */ + case 0: { /* NULL */ + pMem->flags = MEM_Null; + break; + } + case 1: { /* 1-byte signed integer */ + pMem->u.i = ONE_BYTE_INT(buf); + pMem->flags = MEM_Int; + testcase( pMem->u.i<0 ); + return 1; + } + case 2: { /* 2-byte signed integer */ + pMem->u.i = TWO_BYTE_INT(buf); + pMem->flags = MEM_Int; + testcase( pMem->u.i<0 ); + return 2; + } + case 3: { /* 3-byte signed integer */ + pMem->u.i = THREE_BYTE_INT(buf); + pMem->flags = MEM_Int; + testcase( pMem->u.i<0 ); + return 3; + } + case 4: { /* 4-byte signed integer */ + y = FOUR_BYTE_UINT(buf); + pMem->u.i = (i64)*(int*)&y; + pMem->flags = MEM_Int; + testcase( pMem->u.i<0 ); + return 4; + } + case 5: { /* 6-byte signed integer */ + pMem->u.i = FOUR_BYTE_UINT(buf+2) + (((i64)1)<<32)*TWO_BYTE_INT(buf); + pMem->flags = MEM_Int; + testcase( pMem->u.i<0 ); + return 6; + } + case 6: /* 8-byte signed integer */ + case 7: { /* IEEE floating point */ +#if !defined(NDEBUG) && !defined(SQLITE_OMIT_FLOATING_POINT) + /* Verify that integers and floating point values use the same + ** byte order. Or, that if SQLITE_MIXED_ENDIAN_64BIT_FLOAT is + ** defined that 64-bit floating point values really are mixed + ** endian. + */ + static const u64 t1 = ((u64)0x3ff00000)<<32; + static const double r1 = 1.0; + u64 t2 = t1; + swapMixedEndianFloat(t2); + assert( sizeof(r1)==sizeof(t2) && memcmp(&r1, &t2, sizeof(r1))==0 ); +#endif + x = FOUR_BYTE_UINT(buf); + y = FOUR_BYTE_UINT(buf+4); + x = (x<<32) | y; + if( serial_type==6 ){ + pMem->u.i = *(i64*)&x; + pMem->flags = MEM_Int; + testcase( pMem->u.i<0 ); + }else{ + assert( sizeof(x)==8 && sizeof(pMem->r)==8 ); + swapMixedEndianFloat(x); + memcpy(&pMem->r, &x, sizeof(x)); + pMem->flags = sqlite3IsNaN(pMem->r) ? MEM_Null : MEM_Real; + } + return 8; + } + case 8: /* Integer 0 */ + case 9: { /* Integer 1 */ + pMem->u.i = serial_type-8; + pMem->flags = MEM_Int; + return 0; + } + default: { + static const u16 aFlag[] = { MEM_Blob|MEM_Ephem, MEM_Str|MEM_Ephem }; + u32 len = (serial_type-12)/2; + pMem->z = (char *)buf; + pMem->n = len; + pMem->xDel = 0; + pMem->flags = aFlag[serial_type&1]; + return len; + } + } + return 0; +} + +/* +** This routine is used to allocate sufficient space for an UnpackedRecord +** structure large enough to be used with sqlite3VdbeRecordUnpack() if +** the first argument is a pointer to KeyInfo structure pKeyInfo. +** +** The space is either allocated using sqlite3DbMallocRaw() or from within +** the unaligned buffer passed via the second and third arguments (presumably +** stack space). If the former, then *ppFree is set to a pointer that should +** be eventually freed by the caller using sqlite3DbFree(). Or, if the +** allocation comes from the pSpace/szSpace buffer, *ppFree is set to NULL +** before returning. +** +** If an OOM error occurs, NULL is returned. +*/ +SQLITE_PRIVATE UnpackedRecord *sqlite3VdbeAllocUnpackedRecord( + KeyInfo *pKeyInfo, /* Description of the record */ + char *pSpace, /* Unaligned space available */ + int szSpace, /* Size of pSpace[] in bytes */ + char **ppFree /* OUT: Caller should free this pointer */ +){ + UnpackedRecord *p; /* Unpacked record to return */ + int nOff; /* Increment pSpace by nOff to align it */ + int nByte; /* Number of bytes required for *p */ + + /* We want to shift the pointer pSpace up such that it is 8-byte aligned. + ** Thus, we need to calculate a value, nOff, between 0 and 7, to shift + ** it by. If pSpace is already 8-byte aligned, nOff should be zero. + */ + nOff = (8 - (SQLITE_PTR_TO_INT(pSpace) & 7)) & 7; + nByte = ROUND8(sizeof(UnpackedRecord)) + sizeof(Mem)*(pKeyInfo->nField+1); + if( nByte>szSpace+nOff ){ + p = (UnpackedRecord *)sqlite3DbMallocRaw(pKeyInfo->db, nByte); + *ppFree = (char *)p; + if( !p ) return 0; + }else{ + p = (UnpackedRecord*)&pSpace[nOff]; + *ppFree = 0; + } + + p->aMem = (Mem*)&((char*)p)[ROUND8(sizeof(UnpackedRecord))]; + assert( pKeyInfo->aSortOrder!=0 ); + p->pKeyInfo = pKeyInfo; + p->nField = pKeyInfo->nField + 1; + return p; +} + +/* +** Given the nKey-byte encoding of a record in pKey[], populate the +** UnpackedRecord structure indicated by the fourth argument with the +** contents of the decoded record. +*/ +SQLITE_PRIVATE void sqlite3VdbeRecordUnpack( + KeyInfo *pKeyInfo, /* Information about the record format */ + int nKey, /* Size of the binary record */ + const void *pKey, /* The binary record */ + UnpackedRecord *p /* Populate this structure before returning. */ +){ + const unsigned char *aKey = (const unsigned char *)pKey; + int d; + u32 idx; /* Offset in aKey[] to read from */ + u16 u; /* Unsigned loop counter */ + u32 szHdr; + Mem *pMem = p->aMem; + + p->default_rc = 0; + assert( EIGHT_BYTE_ALIGNMENT(pMem) ); + idx = getVarint32(aKey, szHdr); + d = szHdr; + u = 0; + while( idxnField && d<=nKey ){ + u32 serial_type; + + idx += getVarint32(&aKey[idx], serial_type); + pMem->enc = pKeyInfo->enc; + pMem->db = pKeyInfo->db; + /* pMem->flags = 0; // sqlite3VdbeSerialGet() will set this for us */ + pMem->zMalloc = 0; + d += sqlite3VdbeSerialGet(&aKey[d], serial_type, pMem); + pMem++; + u++; + } + assert( u<=pKeyInfo->nField + 1 ); + p->nField = u; +} + +#if SQLITE_DEBUG +/* +** This function compares two index or table record keys in the same way +** as the sqlite3VdbeRecordCompare() routine. Unlike VdbeRecordCompare(), +** this function deserializes and compares values using the +** sqlite3VdbeSerialGet() and sqlite3MemCompare() functions. It is used +** in assert() statements to ensure that the optimized code in +** sqlite3VdbeRecordCompare() returns results with these two primitives. +*/ +static int vdbeRecordCompareDebug( + int nKey1, const void *pKey1, /* Left key */ + const UnpackedRecord *pPKey2 /* Right key */ +){ + u32 d1; /* Offset into aKey[] of next data element */ + u32 idx1; /* Offset into aKey[] of next header element */ + u32 szHdr1; /* Number of bytes in header */ + int i = 0; + int rc = 0; + const unsigned char *aKey1 = (const unsigned char *)pKey1; + KeyInfo *pKeyInfo; + Mem mem1; + + pKeyInfo = pPKey2->pKeyInfo; + mem1.enc = pKeyInfo->enc; + mem1.db = pKeyInfo->db; + /* mem1.flags = 0; // Will be initialized by sqlite3VdbeSerialGet() */ + VVA_ONLY( mem1.zMalloc = 0; ) /* Only needed by assert() statements */ + + /* Compilers may complain that mem1.u.i is potentially uninitialized. + ** We could initialize it, as shown here, to silence those complaints. + ** But in fact, mem1.u.i will never actually be used uninitialized, and doing + ** the unnecessary initialization has a measurable negative performance + ** impact, since this routine is a very high runner. And so, we choose + ** to ignore the compiler warnings and leave this variable uninitialized. + */ + /* mem1.u.i = 0; // not needed, here to silence compiler warning */ + + idx1 = getVarint32(aKey1, szHdr1); + d1 = szHdr1; + assert( pKeyInfo->nField+pKeyInfo->nXField>=pPKey2->nField || CORRUPT_DB ); + assert( pKeyInfo->aSortOrder!=0 ); + assert( pKeyInfo->nField>0 ); + assert( idx1<=szHdr1 || CORRUPT_DB ); + do{ + u32 serial_type1; + + /* Read the serial types for the next element in each key. */ + idx1 += getVarint32( aKey1+idx1, serial_type1 ); + + /* Verify that there is enough key space remaining to avoid + ** a buffer overread. The "d1+serial_type1+2" subexpression will + ** always be greater than or equal to the amount of required key space. + ** Use that approximation to avoid the more expensive call to + ** sqlite3VdbeSerialTypeLen() in the common case. + */ + if( d1+serial_type1+2>(u32)nKey1 + && d1+sqlite3VdbeSerialTypeLen(serial_type1)>(u32)nKey1 + ){ + break; + } + + /* Extract the values to be compared. + */ + d1 += sqlite3VdbeSerialGet(&aKey1[d1], serial_type1, &mem1); + + /* Do the comparison + */ + rc = sqlite3MemCompare(&mem1, &pPKey2->aMem[i], pKeyInfo->aColl[i]); + if( rc!=0 ){ + assert( mem1.zMalloc==0 ); /* See comment below */ + if( pKeyInfo->aSortOrder[i] ){ + rc = -rc; /* Invert the result for DESC sort order. */ + } + return rc; + } + i++; + }while( idx1nField ); + + /* No memory allocation is ever used on mem1. Prove this using + ** the following assert(). If the assert() fails, it indicates a + ** memory leak and a need to call sqlite3VdbeMemRelease(&mem1). + */ + assert( mem1.zMalloc==0 ); + + /* rc==0 here means that one of the keys ran out of fields and + ** all the fields up to that point were equal. Return the the default_rc + ** value. */ + return pPKey2->default_rc; +} +#endif + +/* +** Both *pMem1 and *pMem2 contain string values. Compare the two values +** using the collation sequence pColl. As usual, return a negative , zero +** or positive value if *pMem1 is less than, equal to or greater than +** *pMem2, respectively. Similar in spirit to "rc = (*pMem1) - (*pMem2);". +*/ +static int vdbeCompareMemString( + const Mem *pMem1, + const Mem *pMem2, + const CollSeq *pColl +){ + if( pMem1->enc==pColl->enc ){ + /* The strings are already in the correct encoding. Call the + ** comparison function directly */ + return pColl->xCmp(pColl->pUser,pMem1->n,pMem1->z,pMem2->n,pMem2->z); + }else{ + int rc; + const void *v1, *v2; + int n1, n2; + Mem c1; + Mem c2; + memset(&c1, 0, sizeof(c1)); + memset(&c2, 0, sizeof(c2)); + sqlite3VdbeMemShallowCopy(&c1, pMem1, MEM_Ephem); + sqlite3VdbeMemShallowCopy(&c2, pMem2, MEM_Ephem); + v1 = sqlite3ValueText((sqlite3_value*)&c1, pColl->enc); + n1 = v1==0 ? 0 : c1.n; + v2 = sqlite3ValueText((sqlite3_value*)&c2, pColl->enc); + n2 = v2==0 ? 0 : c2.n; + rc = pColl->xCmp(pColl->pUser, n1, v1, n2, v2); + sqlite3VdbeMemRelease(&c1); + sqlite3VdbeMemRelease(&c2); + return rc; + } +} + +/* +** Compare the values contained by the two memory cells, returning +** negative, zero or positive if pMem1 is less than, equal to, or greater +** than pMem2. Sorting order is NULL's first, followed by numbers (integers +** and reals) sorted numerically, followed by text ordered by the collating +** sequence pColl and finally blob's ordered by memcmp(). +** +** Two NULL values are considered equal by this function. +*/ +SQLITE_PRIVATE int sqlite3MemCompare(const Mem *pMem1, const Mem *pMem2, const CollSeq *pColl){ + int rc; + int f1, f2; + int combined_flags; + + f1 = pMem1->flags; + f2 = pMem2->flags; + combined_flags = f1|f2; + assert( (combined_flags & MEM_RowSet)==0 ); + + /* If one value is NULL, it is less than the other. If both values + ** are NULL, return 0. + */ + if( combined_flags&MEM_Null ){ + return (f2&MEM_Null) - (f1&MEM_Null); + } + + /* If one value is a number and the other is not, the number is less. + ** If both are numbers, compare as reals if one is a real, or as integers + ** if both values are integers. + */ + if( combined_flags&(MEM_Int|MEM_Real) ){ + double r1, r2; + if( (f1 & f2 & MEM_Int)!=0 ){ + if( pMem1->u.i < pMem2->u.i ) return -1; + if( pMem1->u.i > pMem2->u.i ) return 1; + return 0; + } + if( (f1&MEM_Real)!=0 ){ + r1 = pMem1->r; + }else if( (f1&MEM_Int)!=0 ){ + r1 = (double)pMem1->u.i; + }else{ + return 1; + } + if( (f2&MEM_Real)!=0 ){ + r2 = pMem2->r; + }else if( (f2&MEM_Int)!=0 ){ + r2 = (double)pMem2->u.i; + }else{ + return -1; + } + if( r1r2 ) return 1; + return 0; + } + + /* If one value is a string and the other is a blob, the string is less. + ** If both are strings, compare using the collating functions. + */ + if( combined_flags&MEM_Str ){ + if( (f1 & MEM_Str)==0 ){ + return 1; + } + if( (f2 & MEM_Str)==0 ){ + return -1; + } + + assert( pMem1->enc==pMem2->enc ); + assert( pMem1->enc==SQLITE_UTF8 || + pMem1->enc==SQLITE_UTF16LE || pMem1->enc==SQLITE_UTF16BE ); + + /* The collation sequence must be defined at this point, even if + ** the user deletes the collation sequence after the vdbe program is + ** compiled (this was not always the case). + */ + assert( !pColl || pColl->xCmp ); + + if( pColl ){ + return vdbeCompareMemString(pMem1, pMem2, pColl); + } + /* If a NULL pointer was passed as the collate function, fall through + ** to the blob case and use memcmp(). */ + } + + /* Both values must be blobs. Compare using memcmp(). */ + rc = memcmp(pMem1->z, pMem2->z, (pMem1->n>pMem2->n)?pMem2->n:pMem1->n); + if( rc==0 ){ + rc = pMem1->n - pMem2->n; + } + return rc; +} + + +/* +** The first argument passed to this function is a serial-type that +** corresponds to an integer - all values between 1 and 9 inclusive +** except 7. The second points to a buffer containing an integer value +** serialized according to serial_type. This function deserializes +** and returns the value. +*/ +static i64 vdbeRecordDecodeInt(u32 serial_type, const u8 *aKey){ + u32 y; + assert( CORRUPT_DB || (serial_type>=1 && serial_type<=9 && serial_type!=7) ); + switch( serial_type ){ + case 0: + case 1: + testcase( aKey[0]&0x80 ); + return ONE_BYTE_INT(aKey); + case 2: + testcase( aKey[0]&0x80 ); + return TWO_BYTE_INT(aKey); + case 3: + testcase( aKey[0]&0x80 ); + return THREE_BYTE_INT(aKey); + case 4: { + testcase( aKey[0]&0x80 ); + y = FOUR_BYTE_UINT(aKey); + return (i64)*(int*)&y; + } + case 5: { + testcase( aKey[0]&0x80 ); + return FOUR_BYTE_UINT(aKey+2) + (((i64)1)<<32)*TWO_BYTE_INT(aKey); + } + case 6: { + u64 x = FOUR_BYTE_UINT(aKey); + testcase( aKey[0]&0x80 ); + x = (x<<32) | FOUR_BYTE_UINT(aKey+4); + return (i64)*(i64*)&x; + } + } + + return (serial_type - 8); +} + +/* +** This function compares the two table rows or index records +** specified by {nKey1, pKey1} and pPKey2. It returns a negative, zero +** or positive integer if key1 is less than, equal to or +** greater than key2. The {nKey1, pKey1} key must be a blob +** created by th OP_MakeRecord opcode of the VDBE. The pPKey2 +** key must be a parsed key such as obtained from +** sqlite3VdbeParseRecord. +** +** If argument bSkip is non-zero, it is assumed that the caller has already +** determined that the first fields of the keys are equal. +** +** Key1 and Key2 do not have to contain the same number of fields. If all +** fields that appear in both keys are equal, then pPKey2->default_rc is +** returned. +** +** If database corruption is discovered, set pPKey2->isCorrupt to non-zero +** and return 0. +*/ +SQLITE_PRIVATE int sqlite3VdbeRecordCompare( + int nKey1, const void *pKey1, /* Left key */ + UnpackedRecord *pPKey2, /* Right key */ + int bSkip /* If true, skip the first field */ +){ + u32 d1; /* Offset into aKey[] of next data element */ + int i; /* Index of next field to compare */ + u32 szHdr1; /* Size of record header in bytes */ + u32 idx1; /* Offset of first type in header */ + int rc = 0; /* Return value */ + Mem *pRhs = pPKey2->aMem; /* Next field of pPKey2 to compare */ + KeyInfo *pKeyInfo = pPKey2->pKeyInfo; + const unsigned char *aKey1 = (const unsigned char *)pKey1; + Mem mem1; + + /* If bSkip is true, then the caller has already determined that the first + ** two elements in the keys are equal. Fix the various stack variables so + ** that this routine begins comparing at the second field. */ + if( bSkip ){ + u32 s1; + idx1 = 1 + getVarint32(&aKey1[1], s1); + szHdr1 = aKey1[0]; + d1 = szHdr1 + sqlite3VdbeSerialTypeLen(s1); + i = 1; + pRhs++; + }else{ + idx1 = getVarint32(aKey1, szHdr1); + d1 = szHdr1; + if( d1>(unsigned)nKey1 ){ + pPKey2->isCorrupt = (u8)SQLITE_CORRUPT_BKPT; + return 0; /* Corruption */ + } + i = 0; + } + + VVA_ONLY( mem1.zMalloc = 0; ) /* Only needed by assert() statements */ + assert( pPKey2->pKeyInfo->nField+pPKey2->pKeyInfo->nXField>=pPKey2->nField + || CORRUPT_DB ); + assert( pPKey2->pKeyInfo->aSortOrder!=0 ); + assert( pPKey2->pKeyInfo->nField>0 ); + assert( idx1<=szHdr1 || CORRUPT_DB ); + do{ + u32 serial_type; + + /* RHS is an integer */ + if( pRhs->flags & MEM_Int ){ + serial_type = aKey1[idx1]; + testcase( serial_type==12 ); + if( serial_type>=12 ){ + rc = +1; + }else if( serial_type==0 ){ + rc = -1; + }else if( serial_type==7 ){ + double rhs = (double)pRhs->u.i; + sqlite3VdbeSerialGet(&aKey1[d1], serial_type, &mem1); + if( mem1.rrhs ){ + rc = +1; + } + }else{ + i64 lhs = vdbeRecordDecodeInt(serial_type, &aKey1[d1]); + i64 rhs = pRhs->u.i; + if( lhsrhs ){ + rc = +1; + } + } + } + + /* RHS is real */ + else if( pRhs->flags & MEM_Real ){ + serial_type = aKey1[idx1]; + if( serial_type>=12 ){ + rc = +1; + }else if( serial_type==0 ){ + rc = -1; + }else{ + double rhs = pRhs->r; + double lhs; + sqlite3VdbeSerialGet(&aKey1[d1], serial_type, &mem1); + if( serial_type==7 ){ + lhs = mem1.r; + }else{ + lhs = (double)mem1.u.i; + } + if( lhsrhs ){ + rc = +1; + } + } + } + + /* RHS is a string */ + else if( pRhs->flags & MEM_Str ){ + getVarint32(&aKey1[idx1], serial_type); + testcase( serial_type==12 ); + if( serial_type<12 ){ + rc = -1; + }else if( !(serial_type & 0x01) ){ + rc = +1; + }else{ + mem1.n = (serial_type - 12) / 2; + testcase( (d1+mem1.n)==(unsigned)nKey1 ); + testcase( (d1+mem1.n+1)==(unsigned)nKey1 ); + if( (d1+mem1.n) > (unsigned)nKey1 ){ + pPKey2->isCorrupt = (u8)SQLITE_CORRUPT_BKPT; + return 0; /* Corruption */ + }else if( pKeyInfo->aColl[i] ){ + mem1.enc = pKeyInfo->enc; + mem1.db = pKeyInfo->db; + mem1.flags = MEM_Str; + mem1.z = (char*)&aKey1[d1]; + rc = vdbeCompareMemString(&mem1, pRhs, pKeyInfo->aColl[i]); + }else{ + int nCmp = MIN(mem1.n, pRhs->n); + rc = memcmp(&aKey1[d1], pRhs->z, nCmp); + if( rc==0 ) rc = mem1.n - pRhs->n; + } + } + } + + /* RHS is a blob */ + else if( pRhs->flags & MEM_Blob ){ + getVarint32(&aKey1[idx1], serial_type); + testcase( serial_type==12 ); + if( serial_type<12 || (serial_type & 0x01) ){ + rc = -1; + }else{ + int nStr = (serial_type - 12) / 2; + testcase( (d1+nStr)==(unsigned)nKey1 ); + testcase( (d1+nStr+1)==(unsigned)nKey1 ); + if( (d1+nStr) > (unsigned)nKey1 ){ + pPKey2->isCorrupt = (u8)SQLITE_CORRUPT_BKPT; + return 0; /* Corruption */ + }else{ + int nCmp = MIN(nStr, pRhs->n); + rc = memcmp(&aKey1[d1], pRhs->z, nCmp); + if( rc==0 ) rc = nStr - pRhs->n; + } + } + } + + /* RHS is null */ + else{ + serial_type = aKey1[idx1]; + rc = (serial_type!=0); + } + + if( rc!=0 ){ + if( pKeyInfo->aSortOrder[i] ){ + rc = -rc; + } + assert( CORRUPT_DB + || (rc<0 && vdbeRecordCompareDebug(nKey1, pKey1, pPKey2)<0) + || (rc>0 && vdbeRecordCompareDebug(nKey1, pKey1, pPKey2)>0) + || pKeyInfo->db->mallocFailed + ); + assert( mem1.zMalloc==0 ); /* See comment below */ + return rc; + } + + i++; + pRhs++; + d1 += sqlite3VdbeSerialTypeLen(serial_type); + idx1 += sqlite3VarintLen(serial_type); + }while( idx1<(unsigned)szHdr1 && inField && d1<=(unsigned)nKey1 ); + + /* No memory allocation is ever used on mem1. Prove this using + ** the following assert(). If the assert() fails, it indicates a + ** memory leak and a need to call sqlite3VdbeMemRelease(&mem1). */ + assert( mem1.zMalloc==0 ); + + /* rc==0 here means that one or both of the keys ran out of fields and + ** all the fields up to that point were equal. Return the the default_rc + ** value. */ + assert( CORRUPT_DB + || pPKey2->default_rc==vdbeRecordCompareDebug(nKey1, pKey1, pPKey2) + ); + return pPKey2->default_rc; +} + +/* +** This function is an optimized version of sqlite3VdbeRecordCompare() +** that (a) the first field of pPKey2 is an integer, and (b) the +** size-of-header varint at the start of (pKey1/nKey1) fits in a single +** byte (i.e. is less than 128). +** +** To avoid concerns about buffer overreads, this routine is only used +** on schemas where the maximum valid header size is 63 bytes or less. +*/ +static int vdbeRecordCompareInt( + int nKey1, const void *pKey1, /* Left key */ + UnpackedRecord *pPKey2, /* Right key */ + int bSkip /* Ignored */ +){ + const u8 *aKey = &((const u8*)pKey1)[*(const u8*)pKey1 & 0x3F]; + int serial_type = ((const u8*)pKey1)[1]; + int res; + u32 y; + u64 x; + i64 v = pPKey2->aMem[0].u.i; + i64 lhs; + UNUSED_PARAMETER(bSkip); + + assert( bSkip==0 ); + assert( (*(u8*)pKey1)<=0x3F || CORRUPT_DB ); + switch( serial_type ){ + case 1: { /* 1-byte signed integer */ + lhs = ONE_BYTE_INT(aKey); + testcase( lhs<0 ); + break; + } + case 2: { /* 2-byte signed integer */ + lhs = TWO_BYTE_INT(aKey); + testcase( lhs<0 ); + break; + } + case 3: { /* 3-byte signed integer */ + lhs = THREE_BYTE_INT(aKey); + testcase( lhs<0 ); + break; + } + case 4: { /* 4-byte signed integer */ + y = FOUR_BYTE_UINT(aKey); + lhs = (i64)*(int*)&y; + testcase( lhs<0 ); + break; + } + case 5: { /* 6-byte signed integer */ + lhs = FOUR_BYTE_UINT(aKey+2) + (((i64)1)<<32)*TWO_BYTE_INT(aKey); + testcase( lhs<0 ); + break; + } + case 6: { /* 8-byte signed integer */ + x = FOUR_BYTE_UINT(aKey); + x = (x<<32) | FOUR_BYTE_UINT(aKey+4); + lhs = *(i64*)&x; + testcase( lhs<0 ); + break; + } + case 8: + lhs = 0; + break; + case 9: + lhs = 1; + break; + + /* This case could be removed without changing the results of running + ** this code. Including it causes gcc to generate a faster switch + ** statement (since the range of switch targets now starts at zero and + ** is contiguous) but does not cause any duplicate code to be generated + ** (as gcc is clever enough to combine the two like cases). Other + ** compilers might be similar. */ + case 0: case 7: + return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2, 0); + + default: + return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2, 0); + } + + if( v>lhs ){ + res = pPKey2->r1; + }else if( vr2; + }else if( pPKey2->nField>1 ){ + /* The first fields of the two keys are equal. Compare the trailing + ** fields. */ + res = sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2, 1); + }else{ + /* The first fields of the two keys are equal and there are no trailing + ** fields. Return pPKey2->default_rc in this case. */ + res = pPKey2->default_rc; + } + + assert( (res==0 && vdbeRecordCompareDebug(nKey1, pKey1, pPKey2)==0) + || (res<0 && vdbeRecordCompareDebug(nKey1, pKey1, pPKey2)<0) + || (res>0 && vdbeRecordCompareDebug(nKey1, pKey1, pPKey2)>0) + || CORRUPT_DB + ); + return res; +} + +/* +** This function is an optimized version of sqlite3VdbeRecordCompare() +** that (a) the first field of pPKey2 is a string, that (b) the first field +** uses the collation sequence BINARY and (c) that the size-of-header varint +** at the start of (pKey1/nKey1) fits in a single byte. +*/ +static int vdbeRecordCompareString( + int nKey1, const void *pKey1, /* Left key */ + UnpackedRecord *pPKey2, /* Right key */ + int bSkip +){ + const u8 *aKey1 = (const u8*)pKey1; + int serial_type; + int res; + UNUSED_PARAMETER(bSkip); + + assert( bSkip==0 ); + getVarint32(&aKey1[1], serial_type); + + if( serial_type<12 ){ + res = pPKey2->r1; /* (pKey1/nKey1) is a number or a null */ + }else if( !(serial_type & 0x01) ){ + res = pPKey2->r2; /* (pKey1/nKey1) is a blob */ + }else{ + int nCmp; + int nStr; + int szHdr = aKey1[0]; + + nStr = (serial_type-12) / 2; + if( (szHdr + nStr) > nKey1 ){ + pPKey2->isCorrupt = (u8)SQLITE_CORRUPT_BKPT; + return 0; /* Corruption */ + } + nCmp = MIN( pPKey2->aMem[0].n, nStr ); + res = memcmp(&aKey1[szHdr], pPKey2->aMem[0].z, nCmp); + + if( res==0 ){ + res = nStr - pPKey2->aMem[0].n; + if( res==0 ){ + if( pPKey2->nField>1 ){ + res = sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2, 1); + }else{ + res = pPKey2->default_rc; + } + }else if( res>0 ){ + res = pPKey2->r2; + }else{ + res = pPKey2->r1; + } + }else if( res>0 ){ + res = pPKey2->r2; + }else{ + res = pPKey2->r1; + } + } + + assert( (res==0 && vdbeRecordCompareDebug(nKey1, pKey1, pPKey2)==0) + || (res<0 && vdbeRecordCompareDebug(nKey1, pKey1, pPKey2)<0) + || (res>0 && vdbeRecordCompareDebug(nKey1, pKey1, pPKey2)>0) + || CORRUPT_DB + ); + return res; +} + +/* +** Return a pointer to an sqlite3VdbeRecordCompare() compatible function +** suitable for comparing serialized records to the unpacked record passed +** as the only argument. +*/ +SQLITE_PRIVATE RecordCompare sqlite3VdbeFindCompare(UnpackedRecord *p){ + /* varintRecordCompareInt() and varintRecordCompareString() both assume + ** that the size-of-header varint that occurs at the start of each record + ** fits in a single byte (i.e. is 127 or less). varintRecordCompareInt() + ** also assumes that it is safe to overread a buffer by at least the + ** maximum possible legal header size plus 8 bytes. Because there is + ** guaranteed to be at least 74 (but not 136) bytes of padding following each + ** buffer passed to varintRecordCompareInt() this makes it convenient to + ** limit the size of the header to 64 bytes in cases where the first field + ** is an integer. + ** + ** The easiest way to enforce this limit is to consider only records with + ** 13 fields or less. If the first field is an integer, the maximum legal + ** header size is (12*5 + 1 + 1) bytes. */ + if( (p->pKeyInfo->nField + p->pKeyInfo->nXField)<=13 ){ + int flags = p->aMem[0].flags; + if( p->pKeyInfo->aSortOrder[0] ){ + p->r1 = 1; + p->r2 = -1; + }else{ + p->r1 = -1; + p->r2 = 1; + } + if( (flags & MEM_Int) ){ + return vdbeRecordCompareInt; + } + testcase( flags & MEM_Real ); + testcase( flags & MEM_Null ); + testcase( flags & MEM_Blob ); + if( (flags & (MEM_Real|MEM_Null|MEM_Blob))==0 && p->pKeyInfo->aColl[0]==0 ){ + assert( flags & MEM_Str ); + return vdbeRecordCompareString; + } + } + + return sqlite3VdbeRecordCompare; +} + +/* +** pCur points at an index entry created using the OP_MakeRecord opcode. +** Read the rowid (the last field in the record) and store it in *rowid. +** Return SQLITE_OK if everything works, or an error code otherwise. +** +** pCur might be pointing to text obtained from a corrupt database file. +** So the content cannot be trusted. Do appropriate checks on the content. +*/ +SQLITE_PRIVATE int sqlite3VdbeIdxRowid(sqlite3 *db, BtCursor *pCur, i64 *rowid){ + i64 nCellKey = 0; + int rc; + u32 szHdr; /* Size of the header */ + u32 typeRowid; /* Serial type of the rowid */ + u32 lenRowid; /* Size of the rowid */ + Mem m, v; + + UNUSED_PARAMETER(db); + + /* Get the size of the index entry. Only indices entries of less + ** than 2GiB are support - anything large must be database corruption. + ** Any corruption is detected in sqlite3BtreeParseCellPtr(), though, so + ** this code can safely assume that nCellKey is 32-bits + */ + assert( sqlite3BtreeCursorIsValid(pCur) ); + VVA_ONLY(rc =) sqlite3BtreeKeySize(pCur, &nCellKey); + assert( rc==SQLITE_OK ); /* pCur is always valid so KeySize cannot fail */ + assert( (nCellKey & SQLITE_MAX_U32)==(u64)nCellKey ); + + /* Read in the complete content of the index entry */ + memset(&m, 0, sizeof(m)); + rc = sqlite3VdbeMemFromBtree(pCur, 0, (u32)nCellKey, 1, &m); + if( rc ){ + return rc; + } + + /* The index entry must begin with a header size */ + (void)getVarint32((u8*)m.z, szHdr); + testcase( szHdr==3 ); + testcase( szHdr==m.n ); + if( unlikely(szHdr<3 || (int)szHdr>m.n) ){ + goto idx_rowid_corruption; + } + + /* The last field of the index should be an integer - the ROWID. + ** Verify that the last entry really is an integer. */ + (void)getVarint32((u8*)&m.z[szHdr-1], typeRowid); + testcase( typeRowid==1 ); + testcase( typeRowid==2 ); + testcase( typeRowid==3 ); + testcase( typeRowid==4 ); + testcase( typeRowid==5 ); + testcase( typeRowid==6 ); + testcase( typeRowid==8 ); + testcase( typeRowid==9 ); + if( unlikely(typeRowid<1 || typeRowid>9 || typeRowid==7) ){ + goto idx_rowid_corruption; + } + lenRowid = sqlite3VdbeSerialTypeLen(typeRowid); + testcase( (u32)m.n==szHdr+lenRowid ); + if( unlikely((u32)m.npCursor; + Mem m; + + assert( sqlite3BtreeCursorIsValid(pCur) ); + VVA_ONLY(rc =) sqlite3BtreeKeySize(pCur, &nCellKey); + assert( rc==SQLITE_OK ); /* pCur is always valid so KeySize cannot fail */ + /* nCellKey will always be between 0 and 0xffffffff because of the way + ** that btreeParseCellPtr() and sqlite3GetVarint32() are implemented */ + if( nCellKey<=0 || nCellKey>0x7fffffff ){ + *res = 0; + return SQLITE_CORRUPT_BKPT; + } + memset(&m, 0, sizeof(m)); + rc = sqlite3VdbeMemFromBtree(pC->pCursor, 0, (u32)nCellKey, 1, &m); + if( rc ){ + return rc; + } + *res = sqlite3VdbeRecordCompare(m.n, m.z, pUnpacked, 0); + sqlite3VdbeMemRelease(&m); + return SQLITE_OK; +} + +/* +** This routine sets the value to be returned by subsequent calls to +** sqlite3_changes() on the database handle 'db'. +*/ +SQLITE_PRIVATE void sqlite3VdbeSetChanges(sqlite3 *db, int nChange){ + assert( sqlite3_mutex_held(db->mutex) ); + db->nChange = nChange; + db->nTotalChange += nChange; +} + +/* +** Set a flag in the vdbe to update the change counter when it is finalised +** or reset. +*/ +SQLITE_PRIVATE void sqlite3VdbeCountChanges(Vdbe *v){ + v->changeCntOn = 1; +} + +/* +** Mark every prepared statement associated with a database connection +** as expired. +** +** An expired statement means that recompilation of the statement is +** recommend. Statements expire when things happen that make their +** programs obsolete. Removing user-defined functions or collating +** sequences, or changing an authorization function are the types of +** things that make prepared statements obsolete. +*/ +SQLITE_PRIVATE void sqlite3ExpirePreparedStatements(sqlite3 *db){ + Vdbe *p; + for(p = db->pVdbe; p; p=p->pNext){ + p->expired = 1; + } +} + +/* +** Return the database associated with the Vdbe. +*/ +SQLITE_PRIVATE sqlite3 *sqlite3VdbeDb(Vdbe *v){ + return v->db; +} + +/* +** Return a pointer to an sqlite3_value structure containing the value bound +** parameter iVar of VM v. Except, if the value is an SQL NULL, return +** 0 instead. Unless it is NULL, apply affinity aff (one of the SQLITE_AFF_* +** constants) to the value before returning it. +** +** The returned value must be freed by the caller using sqlite3ValueFree(). +*/ +SQLITE_PRIVATE sqlite3_value *sqlite3VdbeGetBoundValue(Vdbe *v, int iVar, u8 aff){ + assert( iVar>0 ); + if( v ){ + Mem *pMem = &v->aVar[iVar-1]; + if( 0==(pMem->flags & MEM_Null) ){ + sqlite3_value *pRet = sqlite3ValueNew(v->db); + if( pRet ){ + sqlite3VdbeMemCopy((Mem *)pRet, pMem); + sqlite3ValueApplyAffinity(pRet, aff, SQLITE_UTF8); + } + return pRet; + } + } + return 0; +} + +/* +** Configure SQL variable iVar so that binding a new value to it signals +** to sqlite3_reoptimize() that re-preparing the statement may result +** in a better query plan. +*/ +SQLITE_PRIVATE void sqlite3VdbeSetVarmask(Vdbe *v, int iVar){ + assert( iVar>0 ); + if( iVar>32 ){ + v->expmask = 0xffffffff; + }else{ + v->expmask |= ((u32)1 << (iVar-1)); + } +} + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* +** Transfer error message text from an sqlite3_vtab.zErrMsg (text stored +** in memory obtained from sqlite3_malloc) into a Vdbe.zErrMsg (text stored +** in memory obtained from sqlite3DbMalloc). +*/ +SQLITE_PRIVATE void sqlite3VtabImportErrmsg(Vdbe *p, sqlite3_vtab *pVtab){ + sqlite3 *db = p->db; + sqlite3DbFree(db, p->zErrMsg); + p->zErrMsg = sqlite3DbStrDup(db, pVtab->zErrMsg); + sqlite3_free(pVtab->zErrMsg); + pVtab->zErrMsg = 0; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +/************** End of vdbeaux.c *********************************************/ +/************** Begin file vdbeapi.c *****************************************/ +/* +** 2004 May 26 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains code use to implement APIs that are part of the +** VDBE. +*/ + +#ifndef SQLITE_OMIT_DEPRECATED +/* +** Return TRUE (non-zero) of the statement supplied as an argument needs +** to be recompiled. A statement needs to be recompiled whenever the +** execution environment changes in a way that would alter the program +** that sqlite3_prepare() generates. For example, if new functions or +** collating sequences are registered or if an authorizer function is +** added or changed. +*/ +SQLITE_API int sqlite3_expired(sqlite3_stmt *pStmt){ + Vdbe *p = (Vdbe*)pStmt; + return p==0 || p->expired; +} +#endif + +/* +** Check on a Vdbe to make sure it has not been finalized. Log +** an error and return true if it has been finalized (or is otherwise +** invalid). Return false if it is ok. +*/ +static int vdbeSafety(Vdbe *p){ + if( p->db==0 ){ + sqlite3_log(SQLITE_MISUSE, "API called with finalized prepared statement"); + return 1; + }else{ + return 0; + } +} +static int vdbeSafetyNotNull(Vdbe *p){ + if( p==0 ){ + sqlite3_log(SQLITE_MISUSE, "API called with NULL prepared statement"); + return 1; + }else{ + return vdbeSafety(p); + } +} + +/* +** The following routine destroys a virtual machine that is created by +** the sqlite3_compile() routine. The integer returned is an SQLITE_ +** success/failure code that describes the result of executing the virtual +** machine. +** +** This routine sets the error code and string returned by +** sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16(). +*/ +SQLITE_API int sqlite3_finalize(sqlite3_stmt *pStmt){ + int rc; + if( pStmt==0 ){ + /* IMPLEMENTATION-OF: R-57228-12904 Invoking sqlite3_finalize() on a NULL + ** pointer is a harmless no-op. */ + rc = SQLITE_OK; + }else{ + Vdbe *v = (Vdbe*)pStmt; + sqlite3 *db = v->db; + if( vdbeSafety(v) ) return SQLITE_MISUSE_BKPT; + sqlite3_mutex_enter(db->mutex); + rc = sqlite3VdbeFinalize(v); + rc = sqlite3ApiExit(db, rc); + sqlite3LeaveMutexAndCloseZombie(db); + } + return rc; +} + +/* +** Terminate the current execution of an SQL statement and reset it +** back to its starting state so that it can be reused. A success code from +** the prior execution is returned. +** +** This routine sets the error code and string returned by +** sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16(). +*/ +SQLITE_API int sqlite3_reset(sqlite3_stmt *pStmt){ + int rc; + if( pStmt==0 ){ + rc = SQLITE_OK; + }else{ + Vdbe *v = (Vdbe*)pStmt; + sqlite3_mutex_enter(v->db->mutex); + rc = sqlite3VdbeReset(v); + sqlite3VdbeRewind(v); + assert( (rc & (v->db->errMask))==rc ); + rc = sqlite3ApiExit(v->db, rc); + sqlite3_mutex_leave(v->db->mutex); + } + return rc; +} + +/* +** Set all the parameters in the compiled SQL statement to NULL. +*/ +SQLITE_API int sqlite3_clear_bindings(sqlite3_stmt *pStmt){ + int i; + int rc = SQLITE_OK; + Vdbe *p = (Vdbe*)pStmt; +#if SQLITE_THREADSAFE + sqlite3_mutex *mutex = ((Vdbe*)pStmt)->db->mutex; +#endif + sqlite3_mutex_enter(mutex); + for(i=0; inVar; i++){ + sqlite3VdbeMemRelease(&p->aVar[i]); + p->aVar[i].flags = MEM_Null; + } + if( p->isPrepareV2 && p->expmask ){ + p->expired = 1; + } + sqlite3_mutex_leave(mutex); + return rc; +} + + +/**************************** sqlite3_value_ ******************************* +** The following routines extract information from a Mem or sqlite3_value +** structure. +*/ +SQLITE_API const void *sqlite3_value_blob(sqlite3_value *pVal){ + Mem *p = (Mem*)pVal; + if( p->flags & (MEM_Blob|MEM_Str) ){ + sqlite3VdbeMemExpandBlob(p); + p->flags |= MEM_Blob; + return p->n ? p->z : 0; + }else{ + return sqlite3_value_text(pVal); + } +} +SQLITE_API int sqlite3_value_bytes(sqlite3_value *pVal){ + return sqlite3ValueBytes(pVal, SQLITE_UTF8); +} +SQLITE_API int sqlite3_value_bytes16(sqlite3_value *pVal){ + return sqlite3ValueBytes(pVal, SQLITE_UTF16NATIVE); +} +SQLITE_API double sqlite3_value_double(sqlite3_value *pVal){ + return sqlite3VdbeRealValue((Mem*)pVal); +} +SQLITE_API int sqlite3_value_int(sqlite3_value *pVal){ + return (int)sqlite3VdbeIntValue((Mem*)pVal); +} +SQLITE_API sqlite_int64 sqlite3_value_int64(sqlite3_value *pVal){ + return sqlite3VdbeIntValue((Mem*)pVal); +} +SQLITE_API const unsigned char *sqlite3_value_text(sqlite3_value *pVal){ + return (const unsigned char *)sqlite3ValueText(pVal, SQLITE_UTF8); +} +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API const void *sqlite3_value_text16(sqlite3_value* pVal){ + return sqlite3ValueText(pVal, SQLITE_UTF16NATIVE); +} +SQLITE_API const void *sqlite3_value_text16be(sqlite3_value *pVal){ + return sqlite3ValueText(pVal, SQLITE_UTF16BE); +} +SQLITE_API const void *sqlite3_value_text16le(sqlite3_value *pVal){ + return sqlite3ValueText(pVal, SQLITE_UTF16LE); +} +#endif /* SQLITE_OMIT_UTF16 */ +SQLITE_API int sqlite3_value_type(sqlite3_value* pVal){ + static const u8 aType[] = { + SQLITE_BLOB, /* 0x00 */ + SQLITE_NULL, /* 0x01 */ + SQLITE_TEXT, /* 0x02 */ + SQLITE_NULL, /* 0x03 */ + SQLITE_INTEGER, /* 0x04 */ + SQLITE_NULL, /* 0x05 */ + SQLITE_INTEGER, /* 0x06 */ + SQLITE_NULL, /* 0x07 */ + SQLITE_FLOAT, /* 0x08 */ + SQLITE_NULL, /* 0x09 */ + SQLITE_FLOAT, /* 0x0a */ + SQLITE_NULL, /* 0x0b */ + SQLITE_INTEGER, /* 0x0c */ + SQLITE_NULL, /* 0x0d */ + SQLITE_INTEGER, /* 0x0e */ + SQLITE_NULL, /* 0x0f */ + SQLITE_BLOB, /* 0x10 */ + SQLITE_NULL, /* 0x11 */ + SQLITE_TEXT, /* 0x12 */ + SQLITE_NULL, /* 0x13 */ + SQLITE_INTEGER, /* 0x14 */ + SQLITE_NULL, /* 0x15 */ + SQLITE_INTEGER, /* 0x16 */ + SQLITE_NULL, /* 0x17 */ + SQLITE_FLOAT, /* 0x18 */ + SQLITE_NULL, /* 0x19 */ + SQLITE_FLOAT, /* 0x1a */ + SQLITE_NULL, /* 0x1b */ + SQLITE_INTEGER, /* 0x1c */ + SQLITE_NULL, /* 0x1d */ + SQLITE_INTEGER, /* 0x1e */ + SQLITE_NULL, /* 0x1f */ + }; + return aType[pVal->flags&MEM_AffMask]; +} + +/**************************** sqlite3_result_ ******************************* +** The following routines are used by user-defined functions to specify +** the function result. +** +** The setStrOrError() funtion calls sqlite3VdbeMemSetStr() to store the +** result as a string or blob but if the string or blob is too large, it +** then sets the error code to SQLITE_TOOBIG +*/ +static void setResultStrOrError( + sqlite3_context *pCtx, /* Function context */ + const char *z, /* String pointer */ + int n, /* Bytes in string, or negative */ + u8 enc, /* Encoding of z. 0 for BLOBs */ + void (*xDel)(void*) /* Destructor function */ +){ + if( sqlite3VdbeMemSetStr(&pCtx->s, z, n, enc, xDel)==SQLITE_TOOBIG ){ + sqlite3_result_error_toobig(pCtx); + } +} +SQLITE_API void sqlite3_result_blob( + sqlite3_context *pCtx, + const void *z, + int n, + void (*xDel)(void *) +){ + assert( n>=0 ); + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + setResultStrOrError(pCtx, z, n, 0, xDel); +} +SQLITE_API void sqlite3_result_double(sqlite3_context *pCtx, double rVal){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + sqlite3VdbeMemSetDouble(&pCtx->s, rVal); +} +SQLITE_API void sqlite3_result_error(sqlite3_context *pCtx, const char *z, int n){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + pCtx->isError = SQLITE_ERROR; + pCtx->fErrorOrAux = 1; + sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF8, SQLITE_TRANSIENT); +} +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API void sqlite3_result_error16(sqlite3_context *pCtx, const void *z, int n){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + pCtx->isError = SQLITE_ERROR; + pCtx->fErrorOrAux = 1; + sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF16NATIVE, SQLITE_TRANSIENT); +} +#endif +SQLITE_API void sqlite3_result_int(sqlite3_context *pCtx, int iVal){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + sqlite3VdbeMemSetInt64(&pCtx->s, (i64)iVal); +} +SQLITE_API void sqlite3_result_int64(sqlite3_context *pCtx, i64 iVal){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + sqlite3VdbeMemSetInt64(&pCtx->s, iVal); +} +SQLITE_API void sqlite3_result_null(sqlite3_context *pCtx){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + sqlite3VdbeMemSetNull(&pCtx->s); +} +SQLITE_API void sqlite3_result_text( + sqlite3_context *pCtx, + const char *z, + int n, + void (*xDel)(void *) +){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + setResultStrOrError(pCtx, z, n, SQLITE_UTF8, xDel); +} +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API void sqlite3_result_text16( + sqlite3_context *pCtx, + const void *z, + int n, + void (*xDel)(void *) +){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + setResultStrOrError(pCtx, z, n, SQLITE_UTF16NATIVE, xDel); +} +SQLITE_API void sqlite3_result_text16be( + sqlite3_context *pCtx, + const void *z, + int n, + void (*xDel)(void *) +){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + setResultStrOrError(pCtx, z, n, SQLITE_UTF16BE, xDel); +} +SQLITE_API void sqlite3_result_text16le( + sqlite3_context *pCtx, + const void *z, + int n, + void (*xDel)(void *) +){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + setResultStrOrError(pCtx, z, n, SQLITE_UTF16LE, xDel); +} +#endif /* SQLITE_OMIT_UTF16 */ +SQLITE_API void sqlite3_result_value(sqlite3_context *pCtx, sqlite3_value *pValue){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + sqlite3VdbeMemCopy(&pCtx->s, pValue); +} +SQLITE_API void sqlite3_result_zeroblob(sqlite3_context *pCtx, int n){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + sqlite3VdbeMemSetZeroBlob(&pCtx->s, n); +} +SQLITE_API void sqlite3_result_error_code(sqlite3_context *pCtx, int errCode){ + pCtx->isError = errCode; + pCtx->fErrorOrAux = 1; + if( pCtx->s.flags & MEM_Null ){ + sqlite3VdbeMemSetStr(&pCtx->s, sqlite3ErrStr(errCode), -1, + SQLITE_UTF8, SQLITE_STATIC); + } +} + +/* Force an SQLITE_TOOBIG error. */ +SQLITE_API void sqlite3_result_error_toobig(sqlite3_context *pCtx){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + pCtx->isError = SQLITE_TOOBIG; + pCtx->fErrorOrAux = 1; + sqlite3VdbeMemSetStr(&pCtx->s, "string or blob too big", -1, + SQLITE_UTF8, SQLITE_STATIC); +} + +/* An SQLITE_NOMEM error. */ +SQLITE_API void sqlite3_result_error_nomem(sqlite3_context *pCtx){ + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + sqlite3VdbeMemSetNull(&pCtx->s); + pCtx->isError = SQLITE_NOMEM; + pCtx->fErrorOrAux = 1; + pCtx->s.db->mallocFailed = 1; +} + +/* +** This function is called after a transaction has been committed. It +** invokes callbacks registered with sqlite3_wal_hook() as required. +*/ +static int doWalCallbacks(sqlite3 *db){ + int rc = SQLITE_OK; +#ifndef SQLITE_OMIT_WAL + int i; + for(i=0; inDb; i++){ + Btree *pBt = db->aDb[i].pBt; + if( pBt ){ + int nEntry = sqlite3PagerWalCallback(sqlite3BtreePager(pBt)); + if( db->xWalCallback && nEntry>0 && rc==SQLITE_OK ){ + rc = db->xWalCallback(db->pWalArg, db, db->aDb[i].zName, nEntry); + } + } + } +#endif + return rc; +} + +/* +** Execute the statement pStmt, either until a row of data is ready, the +** statement is completely executed or an error occurs. +** +** This routine implements the bulk of the logic behind the sqlite_step() +** API. The only thing omitted is the automatic recompile if a +** schema change has occurred. That detail is handled by the +** outer sqlite3_step() wrapper procedure. +*/ +static int sqlite3Step(Vdbe *p){ + sqlite3 *db; + int rc; + + assert(p); + if( p->magic!=VDBE_MAGIC_RUN ){ + /* We used to require that sqlite3_reset() be called before retrying + ** sqlite3_step() after any error or after SQLITE_DONE. But beginning + ** with version 3.7.0, we changed this so that sqlite3_reset() would + ** be called automatically instead of throwing the SQLITE_MISUSE error. + ** This "automatic-reset" change is not technically an incompatibility, + ** since any application that receives an SQLITE_MISUSE is broken by + ** definition. + ** + ** Nevertheless, some published applications that were originally written + ** for version 3.6.23 or earlier do in fact depend on SQLITE_MISUSE + ** returns, and those were broken by the automatic-reset change. As a + ** a work-around, the SQLITE_OMIT_AUTORESET compile-time restores the + ** legacy behavior of returning SQLITE_MISUSE for cases where the + ** previous sqlite3_step() returned something other than a SQLITE_LOCKED + ** or SQLITE_BUSY error. + */ +#ifdef SQLITE_OMIT_AUTORESET + if( p->rc==SQLITE_BUSY || p->rc==SQLITE_LOCKED ){ + sqlite3_reset((sqlite3_stmt*)p); + }else{ + return SQLITE_MISUSE_BKPT; + } +#else + sqlite3_reset((sqlite3_stmt*)p); +#endif + } + + /* Check that malloc() has not failed. If it has, return early. */ + db = p->db; + if( db->mallocFailed ){ + p->rc = SQLITE_NOMEM; + return SQLITE_NOMEM; + } + + if( p->pc<=0 && p->expired ){ + p->rc = SQLITE_SCHEMA; + rc = SQLITE_ERROR; + goto end_of_step; + } + if( p->pc<0 ){ + /* If there are no other statements currently running, then + ** reset the interrupt flag. This prevents a call to sqlite3_interrupt + ** from interrupting a statement that has not yet started. + */ + if( db->nVdbeActive==0 ){ + db->u1.isInterrupted = 0; + } + + assert( db->nVdbeWrite>0 || db->autoCommit==0 + || (db->nDeferredCons==0 && db->nDeferredImmCons==0) + ); + +#ifndef SQLITE_OMIT_TRACE + if( db->xProfile && !db->init.busy ){ + sqlite3OsCurrentTimeInt64(db->pVfs, &p->startTime); + } +#endif + + db->nVdbeActive++; + if( p->readOnly==0 ) db->nVdbeWrite++; + if( p->bIsReader ) db->nVdbeRead++; + p->pc = 0; + } +#ifndef SQLITE_OMIT_EXPLAIN + if( p->explain ){ + rc = sqlite3VdbeList(p); + }else +#endif /* SQLITE_OMIT_EXPLAIN */ + { + db->nVdbeExec++; + rc = sqlite3VdbeExec(p); + db->nVdbeExec--; + } + +#ifndef SQLITE_OMIT_TRACE + /* Invoke the profile callback if there is one + */ + if( rc!=SQLITE_ROW && db->xProfile && !db->init.busy && p->zSql ){ + sqlite3_int64 iNow; + sqlite3OsCurrentTimeInt64(db->pVfs, &iNow); + db->xProfile(db->pProfileArg, p->zSql, (iNow - p->startTime)*1000000); + } +#endif + + if( rc==SQLITE_DONE ){ + assert( p->rc==SQLITE_OK ); + p->rc = doWalCallbacks(db); + if( p->rc!=SQLITE_OK ){ + rc = SQLITE_ERROR; + } + } + + db->errCode = rc; + if( SQLITE_NOMEM==sqlite3ApiExit(p->db, p->rc) ){ + p->rc = SQLITE_NOMEM; + } +end_of_step: + /* At this point local variable rc holds the value that should be + ** returned if this statement was compiled using the legacy + ** sqlite3_prepare() interface. According to the docs, this can only + ** be one of the values in the first assert() below. Variable p->rc + ** contains the value that would be returned if sqlite3_finalize() + ** were called on statement p. + */ + assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR + || rc==SQLITE_BUSY || rc==SQLITE_MISUSE + ); + assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE ); + if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){ + /* If this statement was prepared using sqlite3_prepare_v2(), and an + ** error has occurred, then return the error code in p->rc to the + ** caller. Set the error code in the database handle to the same value. + */ + rc = sqlite3VdbeTransferError(p); + } + return (rc&db->errMask); +} + +/* +** This is the top-level implementation of sqlite3_step(). Call +** sqlite3Step() to do most of the work. If a schema error occurs, +** call sqlite3Reprepare() and try again. +*/ +SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){ + int rc = SQLITE_OK; /* Result from sqlite3Step() */ + int rc2 = SQLITE_OK; /* Result from sqlite3Reprepare() */ + Vdbe *v = (Vdbe*)pStmt; /* the prepared statement */ + int cnt = 0; /* Counter to prevent infinite loop of reprepares */ + sqlite3 *db; /* The database connection */ + + if( vdbeSafetyNotNull(v) ){ + return SQLITE_MISUSE_BKPT; + } + db = v->db; + sqlite3_mutex_enter(db->mutex); + v->doingRerun = 0; + while( (rc = sqlite3Step(v))==SQLITE_SCHEMA + && cnt++ < SQLITE_MAX_SCHEMA_RETRY + && (rc2 = rc = sqlite3Reprepare(v))==SQLITE_OK ){ + sqlite3_reset(pStmt); + v->doingRerun = 1; + assert( v->expired==0 ); + } + if( rc2!=SQLITE_OK ){ + /* This case occurs after failing to recompile an sql statement. + ** The error message from the SQL compiler has already been loaded + ** into the database handle. This block copies the error message + ** from the database handle into the statement and sets the statement + ** program counter to 0 to ensure that when the statement is + ** finalized or reset the parser error message is available via + ** sqlite3_errmsg() and sqlite3_errcode(). + */ + const char *zErr = (const char *)sqlite3_value_text(db->pErr); + assert( zErr!=0 || db->mallocFailed ); + sqlite3DbFree(db, v->zErrMsg); + if( !db->mallocFailed ){ + v->zErrMsg = sqlite3DbStrDup(db, zErr); + v->rc = rc2; + } else { + v->zErrMsg = 0; + v->rc = rc = SQLITE_NOMEM; + } + } + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} + + +/* +** Extract the user data from a sqlite3_context structure and return a +** pointer to it. +*/ +SQLITE_API void *sqlite3_user_data(sqlite3_context *p){ + assert( p && p->pFunc ); + return p->pFunc->pUserData; +} + +/* +** Extract the user data from a sqlite3_context structure and return a +** pointer to it. +** +** IMPLEMENTATION-OF: R-46798-50301 The sqlite3_context_db_handle() interface +** returns a copy of the pointer to the database connection (the 1st +** parameter) of the sqlite3_create_function() and +** sqlite3_create_function16() routines that originally registered the +** application defined function. +*/ +SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context *p){ + assert( p && p->pFunc ); + return p->s.db; +} + +/* +** Return the current time for a statement +*/ +SQLITE_PRIVATE sqlite3_int64 sqlite3StmtCurrentTime(sqlite3_context *p){ + Vdbe *v = p->pVdbe; + int rc; + if( v->iCurrentTime==0 ){ + rc = sqlite3OsCurrentTimeInt64(p->s.db->pVfs, &v->iCurrentTime); + if( rc ) v->iCurrentTime = 0; + } + return v->iCurrentTime; +} + +/* +** The following is the implementation of an SQL function that always +** fails with an error message stating that the function is used in the +** wrong context. The sqlite3_overload_function() API might construct +** SQL function that use this routine so that the functions will exist +** for name resolution but are actually overloaded by the xFindFunction +** method of virtual tables. +*/ +SQLITE_PRIVATE void sqlite3InvalidFunction( + sqlite3_context *context, /* The function calling context */ + int NotUsed, /* Number of arguments to the function */ + sqlite3_value **NotUsed2 /* Value of each argument */ +){ + const char *zName = context->pFunc->zName; + char *zErr; + UNUSED_PARAMETER2(NotUsed, NotUsed2); + zErr = sqlite3_mprintf( + "unable to use function %s in the requested context", zName); + sqlite3_result_error(context, zErr, -1); + sqlite3_free(zErr); +} + +/* +** Allocate or return the aggregate context for a user function. A new +** context is allocated on the first call. Subsequent calls return the +** same context that was returned on prior calls. +*/ +SQLITE_API void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){ + Mem *pMem; + assert( p && p->pFunc && p->pFunc->xStep ); + assert( sqlite3_mutex_held(p->s.db->mutex) ); + pMem = p->pMem; + testcase( nByte<0 ); + if( (pMem->flags & MEM_Agg)==0 ){ + if( nByte<=0 ){ + sqlite3VdbeMemReleaseExternal(pMem); + pMem->flags = MEM_Null; + pMem->z = 0; + }else{ + sqlite3VdbeMemGrow(pMem, nByte, 0); + pMem->flags = MEM_Agg; + pMem->u.pDef = p->pFunc; + if( pMem->z ){ + memset(pMem->z, 0, nByte); + } + } + } + return (void*)pMem->z; +} + +/* +** Return the auxilary data pointer, if any, for the iArg'th argument to +** the user-function defined by pCtx. +*/ +SQLITE_API void *sqlite3_get_auxdata(sqlite3_context *pCtx, int iArg){ + AuxData *pAuxData; + + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + for(pAuxData=pCtx->pVdbe->pAuxData; pAuxData; pAuxData=pAuxData->pNext){ + if( pAuxData->iOp==pCtx->iOp && pAuxData->iArg==iArg ) break; + } + + return (pAuxData ? pAuxData->pAux : 0); +} + +/* +** Set the auxilary data pointer and delete function, for the iArg'th +** argument to the user-function defined by pCtx. Any previous value is +** deleted by calling the delete function specified when it was set. +*/ +SQLITE_API void sqlite3_set_auxdata( + sqlite3_context *pCtx, + int iArg, + void *pAux, + void (*xDelete)(void*) +){ + AuxData *pAuxData; + Vdbe *pVdbe = pCtx->pVdbe; + + assert( sqlite3_mutex_held(pCtx->s.db->mutex) ); + if( iArg<0 ) goto failed; + + for(pAuxData=pVdbe->pAuxData; pAuxData; pAuxData=pAuxData->pNext){ + if( pAuxData->iOp==pCtx->iOp && pAuxData->iArg==iArg ) break; + } + if( pAuxData==0 ){ + pAuxData = sqlite3DbMallocZero(pVdbe->db, sizeof(AuxData)); + if( !pAuxData ) goto failed; + pAuxData->iOp = pCtx->iOp; + pAuxData->iArg = iArg; + pAuxData->pNext = pVdbe->pAuxData; + pVdbe->pAuxData = pAuxData; + if( pCtx->fErrorOrAux==0 ){ + pCtx->isError = 0; + pCtx->fErrorOrAux = 1; + } + }else if( pAuxData->xDelete ){ + pAuxData->xDelete(pAuxData->pAux); + } + + pAuxData->pAux = pAux; + pAuxData->xDelete = xDelete; + return; + +failed: + if( xDelete ){ + xDelete(pAux); + } +} + +#ifndef SQLITE_OMIT_DEPRECATED +/* +** Return the number of times the Step function of a aggregate has been +** called. +** +** This function is deprecated. Do not use it for new code. It is +** provide only to avoid breaking legacy code. New aggregate function +** implementations should keep their own counts within their aggregate +** context. +*/ +SQLITE_API int sqlite3_aggregate_count(sqlite3_context *p){ + assert( p && p->pMem && p->pFunc && p->pFunc->xStep ); + return p->pMem->n; +} +#endif + +/* +** Return the number of columns in the result set for the statement pStmt. +*/ +SQLITE_API int sqlite3_column_count(sqlite3_stmt *pStmt){ + Vdbe *pVm = (Vdbe *)pStmt; + return pVm ? pVm->nResColumn : 0; +} + +/* +** Return the number of values available from the current row of the +** currently executing statement pStmt. +*/ +SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt){ + Vdbe *pVm = (Vdbe *)pStmt; + if( pVm==0 || pVm->pResultSet==0 ) return 0; + return pVm->nResColumn; +} + +/* +** Return a pointer to static memory containing an SQL NULL value. +*/ +static const Mem *columnNullValue(void){ + /* Even though the Mem structure contains an element + ** of type i64, on certain architectures (x86) with certain compiler + ** switches (-Os), gcc may align this Mem object on a 4-byte boundary + ** instead of an 8-byte one. This all works fine, except that when + ** running with SQLITE_DEBUG defined the SQLite code sometimes assert()s + ** that a Mem structure is located on an 8-byte boundary. To prevent + ** these assert()s from failing, when building with SQLITE_DEBUG defined + ** using gcc, we force nullMem to be 8-byte aligned using the magical + ** __attribute__((aligned(8))) macro. */ + static const Mem nullMem +#if defined(SQLITE_DEBUG) && defined(__GNUC__) + __attribute__((aligned(8))) +#endif + = {0, "", (double)0, {0}, 0, MEM_Null, 0, +#ifdef SQLITE_DEBUG + 0, 0, /* pScopyFrom, pFiller */ +#endif + 0, 0 }; + return &nullMem; +} + +/* +** Check to see if column iCol of the given statement is valid. If +** it is, return a pointer to the Mem for the value of that column. +** If iCol is not valid, return a pointer to a Mem which has a value +** of NULL. +*/ +static Mem *columnMem(sqlite3_stmt *pStmt, int i){ + Vdbe *pVm; + Mem *pOut; + + pVm = (Vdbe *)pStmt; + if( pVm && pVm->pResultSet!=0 && inResColumn && i>=0 ){ + sqlite3_mutex_enter(pVm->db->mutex); + pOut = &pVm->pResultSet[i]; + }else{ + if( pVm && ALWAYS(pVm->db) ){ + sqlite3_mutex_enter(pVm->db->mutex); + sqlite3Error(pVm->db, SQLITE_RANGE, 0); + } + pOut = (Mem*)columnNullValue(); + } + return pOut; +} + +/* +** This function is called after invoking an sqlite3_value_XXX function on a +** column value (i.e. a value returned by evaluating an SQL expression in the +** select list of a SELECT statement) that may cause a malloc() failure. If +** malloc() has failed, the threads mallocFailed flag is cleared and the result +** code of statement pStmt set to SQLITE_NOMEM. +** +** Specifically, this is called from within: +** +** sqlite3_column_int() +** sqlite3_column_int64() +** sqlite3_column_text() +** sqlite3_column_text16() +** sqlite3_column_real() +** sqlite3_column_bytes() +** sqlite3_column_bytes16() +** sqiite3_column_blob() +*/ +static void columnMallocFailure(sqlite3_stmt *pStmt) +{ + /* If malloc() failed during an encoding conversion within an + ** sqlite3_column_XXX API, then set the return code of the statement to + ** SQLITE_NOMEM. The next call to _step() (if any) will return SQLITE_ERROR + ** and _finalize() will return NOMEM. + */ + Vdbe *p = (Vdbe *)pStmt; + if( p ){ + p->rc = sqlite3ApiExit(p->db, p->rc); + sqlite3_mutex_leave(p->db->mutex); + } +} + +/**************************** sqlite3_column_ ******************************* +** The following routines are used to access elements of the current row +** in the result set. +*/ +SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt *pStmt, int i){ + const void *val; + val = sqlite3_value_blob( columnMem(pStmt,i) ); + /* Even though there is no encoding conversion, value_blob() might + ** need to call malloc() to expand the result of a zeroblob() + ** expression. + */ + columnMallocFailure(pStmt); + return val; +} +SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){ + int val = sqlite3_value_bytes( columnMem(pStmt,i) ); + columnMallocFailure(pStmt); + return val; +} +SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt *pStmt, int i){ + int val = sqlite3_value_bytes16( columnMem(pStmt,i) ); + columnMallocFailure(pStmt); + return val; +} +SQLITE_API double sqlite3_column_double(sqlite3_stmt *pStmt, int i){ + double val = sqlite3_value_double( columnMem(pStmt,i) ); + columnMallocFailure(pStmt); + return val; +} +SQLITE_API int sqlite3_column_int(sqlite3_stmt *pStmt, int i){ + int val = sqlite3_value_int( columnMem(pStmt,i) ); + columnMallocFailure(pStmt); + return val; +} +SQLITE_API sqlite_int64 sqlite3_column_int64(sqlite3_stmt *pStmt, int i){ + sqlite_int64 val = sqlite3_value_int64( columnMem(pStmt,i) ); + columnMallocFailure(pStmt); + return val; +} +SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){ + const unsigned char *val = sqlite3_value_text( columnMem(pStmt,i) ); + columnMallocFailure(pStmt); + return val; +} +SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt *pStmt, int i){ + Mem *pOut = columnMem(pStmt, i); + if( pOut->flags&MEM_Static ){ + pOut->flags &= ~MEM_Static; + pOut->flags |= MEM_Ephem; + } + columnMallocFailure(pStmt); + return (sqlite3_value *)pOut; +} +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt *pStmt, int i){ + const void *val = sqlite3_value_text16( columnMem(pStmt,i) ); + columnMallocFailure(pStmt); + return val; +} +#endif /* SQLITE_OMIT_UTF16 */ +SQLITE_API int sqlite3_column_type(sqlite3_stmt *pStmt, int i){ + int iType = sqlite3_value_type( columnMem(pStmt,i) ); + columnMallocFailure(pStmt); + return iType; +} + +/* +** Convert the N-th element of pStmt->pColName[] into a string using +** xFunc() then return that string. If N is out of range, return 0. +** +** There are up to 5 names for each column. useType determines which +** name is returned. Here are the names: +** +** 0 The column name as it should be displayed for output +** 1 The datatype name for the column +** 2 The name of the database that the column derives from +** 3 The name of the table that the column derives from +** 4 The name of the table column that the result column derives from +** +** If the result is not a simple column reference (if it is an expression +** or a constant) then useTypes 2, 3, and 4 return NULL. +*/ +static const void *columnName( + sqlite3_stmt *pStmt, + int N, + const void *(*xFunc)(Mem*), + int useType +){ + const void *ret = 0; + Vdbe *p = (Vdbe *)pStmt; + int n; + sqlite3 *db = p->db; + + assert( db!=0 ); + n = sqlite3_column_count(pStmt); + if( N=0 ){ + N += useType*n; + sqlite3_mutex_enter(db->mutex); + assert( db->mallocFailed==0 ); + ret = xFunc(&p->aColName[N]); + /* A malloc may have failed inside of the xFunc() call. If this + ** is the case, clear the mallocFailed flag and return NULL. + */ + if( db->mallocFailed ){ + db->mallocFailed = 0; + ret = 0; + } + sqlite3_mutex_leave(db->mutex); + } + return ret; +} + +/* +** Return the name of the Nth column of the result set returned by SQL +** statement pStmt. +*/ +SQLITE_API const char *sqlite3_column_name(sqlite3_stmt *pStmt, int N){ + return columnName( + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_NAME); +} +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API const void *sqlite3_column_name16(sqlite3_stmt *pStmt, int N){ + return columnName( + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_NAME); +} +#endif + +/* +** Constraint: If you have ENABLE_COLUMN_METADATA then you must +** not define OMIT_DECLTYPE. +*/ +#if defined(SQLITE_OMIT_DECLTYPE) && defined(SQLITE_ENABLE_COLUMN_METADATA) +# error "Must not define both SQLITE_OMIT_DECLTYPE \ + and SQLITE_ENABLE_COLUMN_METADATA" +#endif + +#ifndef SQLITE_OMIT_DECLTYPE +/* +** Return the column declaration type (if applicable) of the 'i'th column +** of the result set of SQL statement pStmt. +*/ +SQLITE_API const char *sqlite3_column_decltype(sqlite3_stmt *pStmt, int N){ + return columnName( + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_DECLTYPE); +} +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API const void *sqlite3_column_decltype16(sqlite3_stmt *pStmt, int N){ + return columnName( + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_DECLTYPE); +} +#endif /* SQLITE_OMIT_UTF16 */ +#endif /* SQLITE_OMIT_DECLTYPE */ + +#ifdef SQLITE_ENABLE_COLUMN_METADATA +/* +** Return the name of the database from which a result column derives. +** NULL is returned if the result column is an expression or constant or +** anything else which is not an unabiguous reference to a database column. +*/ +SQLITE_API const char *sqlite3_column_database_name(sqlite3_stmt *pStmt, int N){ + return columnName( + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_DATABASE); +} +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API const void *sqlite3_column_database_name16(sqlite3_stmt *pStmt, int N){ + return columnName( + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_DATABASE); +} +#endif /* SQLITE_OMIT_UTF16 */ + +/* +** Return the name of the table from which a result column derives. +** NULL is returned if the result column is an expression or constant or +** anything else which is not an unabiguous reference to a database column. +*/ +SQLITE_API const char *sqlite3_column_table_name(sqlite3_stmt *pStmt, int N){ + return columnName( + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_TABLE); +} +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API const void *sqlite3_column_table_name16(sqlite3_stmt *pStmt, int N){ + return columnName( + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_TABLE); +} +#endif /* SQLITE_OMIT_UTF16 */ + +/* +** Return the name of the table column from which a result column derives. +** NULL is returned if the result column is an expression or constant or +** anything else which is not an unabiguous reference to a database column. +*/ +SQLITE_API const char *sqlite3_column_origin_name(sqlite3_stmt *pStmt, int N){ + return columnName( + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_COLUMN); +} +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API const void *sqlite3_column_origin_name16(sqlite3_stmt *pStmt, int N){ + return columnName( + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_COLUMN); +} +#endif /* SQLITE_OMIT_UTF16 */ +#endif /* SQLITE_ENABLE_COLUMN_METADATA */ + + +/******************************* sqlite3_bind_ *************************** +** +** Routines used to attach values to wildcards in a compiled SQL statement. +*/ +/* +** Unbind the value bound to variable i in virtual machine p. This is the +** the same as binding a NULL value to the column. If the "i" parameter is +** out of range, then SQLITE_RANGE is returned. Othewise SQLITE_OK. +** +** A successful evaluation of this routine acquires the mutex on p. +** the mutex is released if any kind of error occurs. +** +** The error code stored in database p->db is overwritten with the return +** value in any case. +*/ +static int vdbeUnbind(Vdbe *p, int i){ + Mem *pVar; + if( vdbeSafetyNotNull(p) ){ + return SQLITE_MISUSE_BKPT; + } + sqlite3_mutex_enter(p->db->mutex); + if( p->magic!=VDBE_MAGIC_RUN || p->pc>=0 ){ + sqlite3Error(p->db, SQLITE_MISUSE, 0); + sqlite3_mutex_leave(p->db->mutex); + sqlite3_log(SQLITE_MISUSE, + "bind on a busy prepared statement: [%s]", p->zSql); + return SQLITE_MISUSE_BKPT; + } + if( i<1 || i>p->nVar ){ + sqlite3Error(p->db, SQLITE_RANGE, 0); + sqlite3_mutex_leave(p->db->mutex); + return SQLITE_RANGE; + } + i--; + pVar = &p->aVar[i]; + sqlite3VdbeMemRelease(pVar); + pVar->flags = MEM_Null; + sqlite3Error(p->db, SQLITE_OK, 0); + + /* If the bit corresponding to this variable in Vdbe.expmask is set, then + ** binding a new value to this variable invalidates the current query plan. + ** + ** IMPLEMENTATION-OF: R-48440-37595 If the specific value bound to host + ** parameter in the WHERE clause might influence the choice of query plan + ** for a statement, then the statement will be automatically recompiled, + ** as if there had been a schema change, on the first sqlite3_step() call + ** following any change to the bindings of that parameter. + */ + if( p->isPrepareV2 && + ((i<32 && p->expmask & ((u32)1 << i)) || p->expmask==0xffffffff) + ){ + p->expired = 1; + } + return SQLITE_OK; +} + +/* +** Bind a text or BLOB value. +*/ +static int bindText( + sqlite3_stmt *pStmt, /* The statement to bind against */ + int i, /* Index of the parameter to bind */ + const void *zData, /* Pointer to the data to be bound */ + int nData, /* Number of bytes of data to be bound */ + void (*xDel)(void*), /* Destructor for the data */ + u8 encoding /* Encoding for the data */ +){ + Vdbe *p = (Vdbe *)pStmt; + Mem *pVar; + int rc; + + rc = vdbeUnbind(p, i); + if( rc==SQLITE_OK ){ + if( zData!=0 ){ + pVar = &p->aVar[i-1]; + rc = sqlite3VdbeMemSetStr(pVar, zData, nData, encoding, xDel); + if( rc==SQLITE_OK && encoding!=0 ){ + rc = sqlite3VdbeChangeEncoding(pVar, ENC(p->db)); + } + sqlite3Error(p->db, rc, 0); + rc = sqlite3ApiExit(p->db, rc); + } + sqlite3_mutex_leave(p->db->mutex); + }else if( xDel!=SQLITE_STATIC && xDel!=SQLITE_TRANSIENT ){ + xDel((void*)zData); + } + return rc; +} + + +/* +** Bind a blob value to an SQL statement variable. +*/ +SQLITE_API int sqlite3_bind_blob( + sqlite3_stmt *pStmt, + int i, + const void *zData, + int nData, + void (*xDel)(void*) +){ + return bindText(pStmt, i, zData, nData, xDel, 0); +} +SQLITE_API int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){ + int rc; + Vdbe *p = (Vdbe *)pStmt; + rc = vdbeUnbind(p, i); + if( rc==SQLITE_OK ){ + sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue); + sqlite3_mutex_leave(p->db->mutex); + } + return rc; +} +SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){ + return sqlite3_bind_int64(p, i, (i64)iValue); +} +SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){ + int rc; + Vdbe *p = (Vdbe *)pStmt; + rc = vdbeUnbind(p, i); + if( rc==SQLITE_OK ){ + sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue); + sqlite3_mutex_leave(p->db->mutex); + } + return rc; +} +SQLITE_API int sqlite3_bind_null(sqlite3_stmt *pStmt, int i){ + int rc; + Vdbe *p = (Vdbe*)pStmt; + rc = vdbeUnbind(p, i); + if( rc==SQLITE_OK ){ + sqlite3_mutex_leave(p->db->mutex); + } + return rc; +} +SQLITE_API int sqlite3_bind_text( + sqlite3_stmt *pStmt, + int i, + const char *zData, + int nData, + void (*xDel)(void*) +){ + return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF8); +} +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API int sqlite3_bind_text16( + sqlite3_stmt *pStmt, + int i, + const void *zData, + int nData, + void (*xDel)(void*) +){ + return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF16NATIVE); +} +#endif /* SQLITE_OMIT_UTF16 */ +SQLITE_API int sqlite3_bind_value(sqlite3_stmt *pStmt, int i, const sqlite3_value *pValue){ + int rc; + switch( sqlite3_value_type((sqlite3_value*)pValue) ){ + case SQLITE_INTEGER: { + rc = sqlite3_bind_int64(pStmt, i, pValue->u.i); + break; + } + case SQLITE_FLOAT: { + rc = sqlite3_bind_double(pStmt, i, pValue->r); + break; + } + case SQLITE_BLOB: { + if( pValue->flags & MEM_Zero ){ + rc = sqlite3_bind_zeroblob(pStmt, i, pValue->u.nZero); + }else{ + rc = sqlite3_bind_blob(pStmt, i, pValue->z, pValue->n,SQLITE_TRANSIENT); + } + break; + } + case SQLITE_TEXT: { + rc = bindText(pStmt,i, pValue->z, pValue->n, SQLITE_TRANSIENT, + pValue->enc); + break; + } + default: { + rc = sqlite3_bind_null(pStmt, i); + break; + } + } + return rc; +} +SQLITE_API int sqlite3_bind_zeroblob(sqlite3_stmt *pStmt, int i, int n){ + int rc; + Vdbe *p = (Vdbe *)pStmt; + rc = vdbeUnbind(p, i); + if( rc==SQLITE_OK ){ + sqlite3VdbeMemSetZeroBlob(&p->aVar[i-1], n); + sqlite3_mutex_leave(p->db->mutex); + } + return rc; +} + +/* +** Return the number of wildcards that can be potentially bound to. +** This routine is added to support DBD::SQLite. +*/ +SQLITE_API int sqlite3_bind_parameter_count(sqlite3_stmt *pStmt){ + Vdbe *p = (Vdbe*)pStmt; + return p ? p->nVar : 0; +} + +/* +** Return the name of a wildcard parameter. Return NULL if the index +** is out of range or if the wildcard is unnamed. +** +** The result is always UTF-8. +*/ +SQLITE_API const char *sqlite3_bind_parameter_name(sqlite3_stmt *pStmt, int i){ + Vdbe *p = (Vdbe*)pStmt; + if( p==0 || i<1 || i>p->nzVar ){ + return 0; + } + return p->azVar[i-1]; +} + +/* +** Given a wildcard parameter name, return the index of the variable +** with that name. If there is no variable with the given name, +** return 0. +*/ +SQLITE_PRIVATE int sqlite3VdbeParameterIndex(Vdbe *p, const char *zName, int nName){ + int i; + if( p==0 ){ + return 0; + } + if( zName ){ + for(i=0; inzVar; i++){ + const char *z = p->azVar[i]; + if( z && strncmp(z,zName,nName)==0 && z[nName]==0 ){ + return i+1; + } + } + } + return 0; +} +SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt *pStmt, const char *zName){ + return sqlite3VdbeParameterIndex((Vdbe*)pStmt, zName, sqlite3Strlen30(zName)); +} + +/* +** Transfer all bindings from the first statement over to the second. +*/ +SQLITE_PRIVATE int sqlite3TransferBindings(sqlite3_stmt *pFromStmt, sqlite3_stmt *pToStmt){ + Vdbe *pFrom = (Vdbe*)pFromStmt; + Vdbe *pTo = (Vdbe*)pToStmt; + int i; + assert( pTo->db==pFrom->db ); + assert( pTo->nVar==pFrom->nVar ); + sqlite3_mutex_enter(pTo->db->mutex); + for(i=0; inVar; i++){ + sqlite3VdbeMemMove(&pTo->aVar[i], &pFrom->aVar[i]); + } + sqlite3_mutex_leave(pTo->db->mutex); + return SQLITE_OK; +} + +#ifndef SQLITE_OMIT_DEPRECATED +/* +** Deprecated external interface. Internal/core SQLite code +** should call sqlite3TransferBindings. +** +** Is is misuse to call this routine with statements from different +** database connections. But as this is a deprecated interface, we +** will not bother to check for that condition. +** +** If the two statements contain a different number of bindings, then +** an SQLITE_ERROR is returned. Nothing else can go wrong, so otherwise +** SQLITE_OK is returned. +*/ +SQLITE_API int sqlite3_transfer_bindings(sqlite3_stmt *pFromStmt, sqlite3_stmt *pToStmt){ + Vdbe *pFrom = (Vdbe*)pFromStmt; + Vdbe *pTo = (Vdbe*)pToStmt; + if( pFrom->nVar!=pTo->nVar ){ + return SQLITE_ERROR; + } + if( pTo->isPrepareV2 && pTo->expmask ){ + pTo->expired = 1; + } + if( pFrom->isPrepareV2 && pFrom->expmask ){ + pFrom->expired = 1; + } + return sqlite3TransferBindings(pFromStmt, pToStmt); +} +#endif + +/* +** Return the sqlite3* database handle to which the prepared statement given +** in the argument belongs. This is the same database handle that was +** the first argument to the sqlite3_prepare() that was used to create +** the statement in the first place. +*/ +SQLITE_API sqlite3 *sqlite3_db_handle(sqlite3_stmt *pStmt){ + return pStmt ? ((Vdbe*)pStmt)->db : 0; +} + +/* +** Return true if the prepared statement is guaranteed to not modify the +** database. +*/ +SQLITE_API int sqlite3_stmt_readonly(sqlite3_stmt *pStmt){ + return pStmt ? ((Vdbe*)pStmt)->readOnly : 1; +} + +/* +** Return true if the prepared statement is in need of being reset. +*/ +SQLITE_API int sqlite3_stmt_busy(sqlite3_stmt *pStmt){ + Vdbe *v = (Vdbe*)pStmt; + return v!=0 && v->pc>0 && v->magic==VDBE_MAGIC_RUN; +} + +/* +** Return a pointer to the next prepared statement after pStmt associated +** with database connection pDb. If pStmt is NULL, return the first +** prepared statement for the database connection. Return NULL if there +** are no more. +*/ +SQLITE_API sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt){ + sqlite3_stmt *pNext; + sqlite3_mutex_enter(pDb->mutex); + if( pStmt==0 ){ + pNext = (sqlite3_stmt*)pDb->pVdbe; + }else{ + pNext = (sqlite3_stmt*)((Vdbe*)pStmt)->pNext; + } + sqlite3_mutex_leave(pDb->mutex); + return pNext; +} + +/* +** Return the value of a status counter for a prepared statement +*/ +SQLITE_API int sqlite3_stmt_status(sqlite3_stmt *pStmt, int op, int resetFlag){ + Vdbe *pVdbe = (Vdbe*)pStmt; + u32 v = pVdbe->aCounter[op]; + if( resetFlag ) pVdbe->aCounter[op] = 0; + return (int)v; +} + +/************** End of vdbeapi.c *********************************************/ +/************** Begin file vdbetrace.c ***************************************/ +/* +** 2009 November 25 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains code used to insert the values of host parameters +** (aka "wildcards") into the SQL text output by sqlite3_trace(). +** +** The Vdbe parse-tree explainer is also found here. +*/ + +#ifndef SQLITE_OMIT_TRACE + +/* +** zSql is a zero-terminated string of UTF-8 SQL text. Return the number of +** bytes in this text up to but excluding the first character in +** a host parameter. If the text contains no host parameters, return +** the total number of bytes in the text. +*/ +static int findNextHostParameter(const char *zSql, int *pnToken){ + int tokenType; + int nTotal = 0; + int n; + + *pnToken = 0; + while( zSql[0] ){ + n = sqlite3GetToken((u8*)zSql, &tokenType); + assert( n>0 && tokenType!=TK_ILLEGAL ); + if( tokenType==TK_VARIABLE ){ + *pnToken = n; + break; + } + nTotal += n; + zSql += n; + } + return nTotal; +} + +/* +** This function returns a pointer to a nul-terminated string in memory +** obtained from sqlite3DbMalloc(). If sqlite3.nVdbeExec is 1, then the +** string contains a copy of zRawSql but with host parameters expanded to +** their current bindings. Or, if sqlite3.nVdbeExec is greater than 1, +** then the returned string holds a copy of zRawSql with "-- " prepended +** to each line of text. +** +** If the SQLITE_TRACE_SIZE_LIMIT macro is defined to an integer, then +** then long strings and blobs are truncated to that many bytes. This +** can be used to prevent unreasonably large trace strings when dealing +** with large (multi-megabyte) strings and blobs. +** +** The calling function is responsible for making sure the memory returned +** is eventually freed. +** +** ALGORITHM: Scan the input string looking for host parameters in any of +** these forms: ?, ?N, $A, @A, :A. Take care to avoid text within +** string literals, quoted identifier names, and comments. For text forms, +** the host parameter index is found by scanning the perpared +** statement for the corresponding OP_Variable opcode. Once the host +** parameter index is known, locate the value in p->aVar[]. Then render +** the value as a literal in place of the host parameter name. +*/ +SQLITE_PRIVATE char *sqlite3VdbeExpandSql( + Vdbe *p, /* The prepared statement being evaluated */ + const char *zRawSql /* Raw text of the SQL statement */ +){ + sqlite3 *db; /* The database connection */ + int idx = 0; /* Index of a host parameter */ + int nextIndex = 1; /* Index of next ? host parameter */ + int n; /* Length of a token prefix */ + int nToken; /* Length of the parameter token */ + int i; /* Loop counter */ + Mem *pVar; /* Value of a host parameter */ + StrAccum out; /* Accumulate the output here */ + char zBase[100]; /* Initial working space */ + + db = p->db; + sqlite3StrAccumInit(&out, zBase, sizeof(zBase), + db->aLimit[SQLITE_LIMIT_LENGTH]); + out.db = db; + if( db->nVdbeExec>1 ){ + while( *zRawSql ){ + const char *zStart = zRawSql; + while( *(zRawSql++)!='\n' && *zRawSql ); + sqlite3StrAccumAppend(&out, "-- ", 3); + assert( (zRawSql - zStart) > 0 ); + sqlite3StrAccumAppend(&out, zStart, (int)(zRawSql-zStart)); + } + }else{ + while( zRawSql[0] ){ + n = findNextHostParameter(zRawSql, &nToken); + assert( n>0 ); + sqlite3StrAccumAppend(&out, zRawSql, n); + zRawSql += n; + assert( zRawSql[0] || nToken==0 ); + if( nToken==0 ) break; + if( zRawSql[0]=='?' ){ + if( nToken>1 ){ + assert( sqlite3Isdigit(zRawSql[1]) ); + sqlite3GetInt32(&zRawSql[1], &idx); + }else{ + idx = nextIndex; + } + }else{ + assert( zRawSql[0]==':' || zRawSql[0]=='$' || zRawSql[0]=='@' ); + testcase( zRawSql[0]==':' ); + testcase( zRawSql[0]=='$' ); + testcase( zRawSql[0]=='@' ); + idx = sqlite3VdbeParameterIndex(p, zRawSql, nToken); + assert( idx>0 ); + } + zRawSql += nToken; + nextIndex = idx + 1; + assert( idx>0 && idx<=p->nVar ); + pVar = &p->aVar[idx-1]; + if( pVar->flags & MEM_Null ){ + sqlite3StrAccumAppend(&out, "NULL", 4); + }else if( pVar->flags & MEM_Int ){ + sqlite3XPrintf(&out, 0, "%lld", pVar->u.i); + }else if( pVar->flags & MEM_Real ){ + sqlite3XPrintf(&out, 0, "%!.15g", pVar->r); + }else if( pVar->flags & MEM_Str ){ + int nOut; /* Number of bytes of the string text to include in output */ +#ifndef SQLITE_OMIT_UTF16 + u8 enc = ENC(db); + Mem utf8; + if( enc!=SQLITE_UTF8 ){ + memset(&utf8, 0, sizeof(utf8)); + utf8.db = db; + sqlite3VdbeMemSetStr(&utf8, pVar->z, pVar->n, enc, SQLITE_STATIC); + sqlite3VdbeChangeEncoding(&utf8, SQLITE_UTF8); + pVar = &utf8; + } +#endif + nOut = pVar->n; +#ifdef SQLITE_TRACE_SIZE_LIMIT + if( nOut>SQLITE_TRACE_SIZE_LIMIT ){ + nOut = SQLITE_TRACE_SIZE_LIMIT; + while( nOutn && (pVar->z[nOut]&0xc0)==0x80 ){ nOut++; } + } +#endif + sqlite3XPrintf(&out, 0, "'%.*q'", nOut, pVar->z); +#ifdef SQLITE_TRACE_SIZE_LIMIT + if( nOutn ){ + sqlite3XPrintf(&out, 0, "/*+%d bytes*/", pVar->n-nOut); + } +#endif +#ifndef SQLITE_OMIT_UTF16 + if( enc!=SQLITE_UTF8 ) sqlite3VdbeMemRelease(&utf8); +#endif + }else if( pVar->flags & MEM_Zero ){ + sqlite3XPrintf(&out, 0, "zeroblob(%d)", pVar->u.nZero); + }else{ + int nOut; /* Number of bytes of the blob to include in output */ + assert( pVar->flags & MEM_Blob ); + sqlite3StrAccumAppend(&out, "x'", 2); + nOut = pVar->n; +#ifdef SQLITE_TRACE_SIZE_LIMIT + if( nOut>SQLITE_TRACE_SIZE_LIMIT ) nOut = SQLITE_TRACE_SIZE_LIMIT; +#endif + for(i=0; iz[i]&0xff); + } + sqlite3StrAccumAppend(&out, "'", 1); +#ifdef SQLITE_TRACE_SIZE_LIMIT + if( nOutn ){ + sqlite3XPrintf(&out, 0, "/*+%d bytes*/", pVar->n-nOut); + } +#endif + } + } + } + return sqlite3StrAccumFinish(&out); +} + +#endif /* #ifndef SQLITE_OMIT_TRACE */ + +/***************************************************************************** +** The following code implements the data-structure explaining logic +** for the Vdbe. +*/ + +#if defined(SQLITE_ENABLE_TREE_EXPLAIN) + +/* +** Allocate a new Explain object +*/ +SQLITE_PRIVATE void sqlite3ExplainBegin(Vdbe *pVdbe){ + if( pVdbe ){ + Explain *p; + sqlite3BeginBenignMalloc(); + p = (Explain *)sqlite3MallocZero( sizeof(Explain) ); + if( p ){ + p->pVdbe = pVdbe; + sqlite3_free(pVdbe->pExplain); + pVdbe->pExplain = p; + sqlite3StrAccumInit(&p->str, p->zBase, sizeof(p->zBase), + SQLITE_MAX_LENGTH); + p->str.useMalloc = 2; + }else{ + sqlite3EndBenignMalloc(); + } + } +} + +/* +** Return true if the Explain ends with a new-line. +*/ +static int endsWithNL(Explain *p){ + return p && p->str.zText && p->str.nChar + && p->str.zText[p->str.nChar-1]=='\n'; +} + +/* +** Append text to the indentation +*/ +SQLITE_PRIVATE void sqlite3ExplainPrintf(Vdbe *pVdbe, const char *zFormat, ...){ + Explain *p; + if( pVdbe && (p = pVdbe->pExplain)!=0 ){ + va_list ap; + if( p->nIndent && endsWithNL(p) ){ + int n = p->nIndent; + if( n>ArraySize(p->aIndent) ) n = ArraySize(p->aIndent); + sqlite3AppendSpace(&p->str, p->aIndent[n-1]); + } + va_start(ap, zFormat); + sqlite3VXPrintf(&p->str, SQLITE_PRINTF_INTERNAL, zFormat, ap); + va_end(ap); + } +} + +/* +** Append a '\n' if there is not already one. +*/ +SQLITE_PRIVATE void sqlite3ExplainNL(Vdbe *pVdbe){ + Explain *p; + if( pVdbe && (p = pVdbe->pExplain)!=0 && !endsWithNL(p) ){ + sqlite3StrAccumAppend(&p->str, "\n", 1); + } +} + +/* +** Push a new indentation level. Subsequent lines will be indented +** so that they begin at the current cursor position. +*/ +SQLITE_PRIVATE void sqlite3ExplainPush(Vdbe *pVdbe){ + Explain *p; + if( pVdbe && (p = pVdbe->pExplain)!=0 ){ + if( p->str.zText && p->nIndentaIndent) ){ + const char *z = p->str.zText; + int i = p->str.nChar-1; + int x; + while( i>=0 && z[i]!='\n' ){ i--; } + x = (p->str.nChar - 1) - i; + if( p->nIndent && xaIndent[p->nIndent-1] ){ + x = p->aIndent[p->nIndent-1]; + } + p->aIndent[p->nIndent] = x; + } + p->nIndent++; + } +} + +/* +** Pop the indentation stack by one level. +*/ +SQLITE_PRIVATE void sqlite3ExplainPop(Vdbe *p){ + if( p && p->pExplain ) p->pExplain->nIndent--; +} + +/* +** Free the indentation structure +*/ +SQLITE_PRIVATE void sqlite3ExplainFinish(Vdbe *pVdbe){ + if( pVdbe && pVdbe->pExplain ){ + sqlite3_free(pVdbe->zExplain); + sqlite3ExplainNL(pVdbe); + pVdbe->zExplain = sqlite3StrAccumFinish(&pVdbe->pExplain->str); + sqlite3_free(pVdbe->pExplain); + pVdbe->pExplain = 0; + sqlite3EndBenignMalloc(); + } +} + +/* +** Return the explanation of a virtual machine. +*/ +SQLITE_PRIVATE const char *sqlite3VdbeExplanation(Vdbe *pVdbe){ + return (pVdbe && pVdbe->zExplain) ? pVdbe->zExplain : 0; +} +#endif /* defined(SQLITE_DEBUG) */ + +/************** End of vdbetrace.c *******************************************/ +/************** Begin file vdbe.c ********************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** The code in this file implements the function that runs the +** bytecode of a prepared statement. +** +** Various scripts scan this source file in order to generate HTML +** documentation, headers files, or other derived files. The formatting +** of the code in this file is, therefore, important. See other comments +** in this file for details. If in doubt, do not deviate from existing +** commenting and indentation practices when changing or adding code. +*/ + +/* +** Invoke this macro on memory cells just prior to changing the +** value of the cell. This macro verifies that shallow copies are +** not misused. A shallow copy of a string or blob just copies a +** pointer to the string or blob, not the content. If the original +** is changed while the copy is still in use, the string or blob might +** be changed out from under the copy. This macro verifies that nothing +** like that ever happens. +*/ +#ifdef SQLITE_DEBUG +# define memAboutToChange(P,M) sqlite3VdbeMemAboutToChange(P,M) +#else +# define memAboutToChange(P,M) +#endif + +/* +** The following global variable is incremented every time a cursor +** moves, either by the OP_SeekXX, OP_Next, or OP_Prev opcodes. The test +** procedures use this information to make sure that indices are +** working correctly. This variable has no function other than to +** help verify the correct operation of the library. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_search_count = 0; +#endif + +/* +** When this global variable is positive, it gets decremented once before +** each instruction in the VDBE. When it reaches zero, the u1.isInterrupted +** field of the sqlite3 structure is set in order to simulate an interrupt. +** +** This facility is used for testing purposes only. It does not function +** in an ordinary build. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_interrupt_count = 0; +#endif + +/* +** The next global variable is incremented each type the OP_Sort opcode +** is executed. The test procedures use this information to make sure that +** sorting is occurring or not occurring at appropriate times. This variable +** has no function other than to help verify the correct operation of the +** library. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_sort_count = 0; +#endif + +/* +** The next global variable records the size of the largest MEM_Blob +** or MEM_Str that has been used by a VDBE opcode. The test procedures +** use this information to make sure that the zero-blob functionality +** is working correctly. This variable has no function other than to +** help verify the correct operation of the library. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_max_blobsize = 0; +static void updateMaxBlobsize(Mem *p){ + if( (p->flags & (MEM_Str|MEM_Blob))!=0 && p->n>sqlite3_max_blobsize ){ + sqlite3_max_blobsize = p->n; + } +} +#endif + +/* +** The next global variable is incremented each time the OP_Found opcode +** is executed. This is used to test whether or not the foreign key +** operation implemented using OP_FkIsZero is working. This variable +** has no function other than to help verify the correct operation of the +** library. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_found_count = 0; +#endif + +/* +** Test a register to see if it exceeds the current maximum blob size. +** If it does, record the new maximum blob size. +*/ +#if defined(SQLITE_TEST) && !defined(SQLITE_OMIT_BUILTIN_TEST) +# define UPDATE_MAX_BLOBSIZE(P) updateMaxBlobsize(P) +#else +# define UPDATE_MAX_BLOBSIZE(P) +#endif + +/* +** Invoke the VDBE coverage callback, if that callback is defined. This +** feature is used for test suite validation only and does not appear an +** production builds. +** +** M is an integer, 2 or 3, that indices how many different ways the +** branch can go. It is usually 2. "I" is the direction the branch +** goes. 0 means falls through. 1 means branch is taken. 2 means the +** second alternative branch is taken. +*/ +#if !defined(SQLITE_VDBE_COVERAGE) +# define VdbeBranchTaken(I,M) +#else +# define VdbeBranchTaken(I,M) vdbeTakeBranch(pOp->iSrcLine,I,M) + static void vdbeTakeBranch(int iSrcLine, u8 I, u8 M){ + if( iSrcLine<=2 && ALWAYS(iSrcLine>0) ){ + M = iSrcLine; + /* Assert the truth of VdbeCoverageAlwaysTaken() and + ** VdbeCoverageNeverTaken() */ + assert( (M & I)==I ); + }else{ + if( sqlite3GlobalConfig.xVdbeBranch==0 ) return; /*NO_TEST*/ + sqlite3GlobalConfig.xVdbeBranch(sqlite3GlobalConfig.pVdbeBranchArg, + iSrcLine,I,M); + } + } +#endif + +/* +** Convert the given register into a string if it isn't one +** already. Return non-zero if a malloc() fails. +*/ +#define Stringify(P, enc) \ + if(((P)->flags&(MEM_Str|MEM_Blob))==0 && sqlite3VdbeMemStringify(P,enc)) \ + { goto no_mem; } + +/* +** An ephemeral string value (signified by the MEM_Ephem flag) contains +** a pointer to a dynamically allocated string where some other entity +** is responsible for deallocating that string. Because the register +** does not control the string, it might be deleted without the register +** knowing it. +** +** This routine converts an ephemeral string into a dynamically allocated +** string that the register itself controls. In other words, it +** converts an MEM_Ephem string into a string with P.z==P.zMalloc. +*/ +#define Deephemeralize(P) \ + if( ((P)->flags&MEM_Ephem)!=0 \ + && sqlite3VdbeMemMakeWriteable(P) ){ goto no_mem;} + +/* Return true if the cursor was opened using the OP_OpenSorter opcode. */ +#define isSorter(x) ((x)->pSorter!=0) + +/* +** Allocate VdbeCursor number iCur. Return a pointer to it. Return NULL +** if we run out of memory. +*/ +static VdbeCursor *allocateCursor( + Vdbe *p, /* The virtual machine */ + int iCur, /* Index of the new VdbeCursor */ + int nField, /* Number of fields in the table or index */ + int iDb, /* Database the cursor belongs to, or -1 */ + int isBtreeCursor /* True for B-Tree. False for pseudo-table or vtab */ +){ + /* Find the memory cell that will be used to store the blob of memory + ** required for this VdbeCursor structure. It is convenient to use a + ** vdbe memory cell to manage the memory allocation required for a + ** VdbeCursor structure for the following reasons: + ** + ** * Sometimes cursor numbers are used for a couple of different + ** purposes in a vdbe program. The different uses might require + ** different sized allocations. Memory cells provide growable + ** allocations. + ** + ** * When using ENABLE_MEMORY_MANAGEMENT, memory cell buffers can + ** be freed lazily via the sqlite3_release_memory() API. This + ** minimizes the number of malloc calls made by the system. + ** + ** Memory cells for cursors are allocated at the top of the address + ** space. Memory cell (p->nMem) corresponds to cursor 0. Space for + ** cursor 1 is managed by memory cell (p->nMem-1), etc. + */ + Mem *pMem = &p->aMem[p->nMem-iCur]; + + int nByte; + VdbeCursor *pCx = 0; + nByte = + ROUND8(sizeof(VdbeCursor)) + 2*sizeof(u32)*nField + + (isBtreeCursor?sqlite3BtreeCursorSize():0); + + assert( iCurnCursor ); + if( p->apCsr[iCur] ){ + sqlite3VdbeFreeCursor(p, p->apCsr[iCur]); + p->apCsr[iCur] = 0; + } + if( SQLITE_OK==sqlite3VdbeMemGrow(pMem, nByte, 0) ){ + p->apCsr[iCur] = pCx = (VdbeCursor*)pMem->z; + memset(pCx, 0, sizeof(VdbeCursor)); + pCx->iDb = iDb; + pCx->nField = nField; + if( isBtreeCursor ){ + pCx->pCursor = (BtCursor*) + &pMem->z[ROUND8(sizeof(VdbeCursor))+2*sizeof(u32)*nField]; + sqlite3BtreeCursorZero(pCx->pCursor); + } + } + return pCx; +} + +/* +** Try to convert a value into a numeric representation if we can +** do so without loss of information. In other words, if the string +** looks like a number, convert it into a number. If it does not +** look like a number, leave it alone. +*/ +static void applyNumericAffinity(Mem *pRec){ + if( (pRec->flags & (MEM_Real|MEM_Int))==0 ){ + double rValue; + i64 iValue; + u8 enc = pRec->enc; + if( (pRec->flags&MEM_Str)==0 ) return; + if( sqlite3AtoF(pRec->z, &rValue, pRec->n, enc)==0 ) return; + if( 0==sqlite3Atoi64(pRec->z, &iValue, pRec->n, enc) ){ + pRec->u.i = iValue; + pRec->flags |= MEM_Int; + }else{ + pRec->r = rValue; + pRec->flags |= MEM_Real; + } + } +} + +/* +** Processing is determine by the affinity parameter: +** +** SQLITE_AFF_INTEGER: +** SQLITE_AFF_REAL: +** SQLITE_AFF_NUMERIC: +** Try to convert pRec to an integer representation or a +** floating-point representation if an integer representation +** is not possible. Note that the integer representation is +** always preferred, even if the affinity is REAL, because +** an integer representation is more space efficient on disk. +** +** SQLITE_AFF_TEXT: +** Convert pRec to a text representation. +** +** SQLITE_AFF_NONE: +** No-op. pRec is unchanged. +*/ +static void applyAffinity( + Mem *pRec, /* The value to apply affinity to */ + char affinity, /* The affinity to be applied */ + u8 enc /* Use this text encoding */ +){ + if( affinity==SQLITE_AFF_TEXT ){ + /* Only attempt the conversion to TEXT if there is an integer or real + ** representation (blob and NULL do not get converted) but no string + ** representation. + */ + if( 0==(pRec->flags&MEM_Str) && (pRec->flags&(MEM_Real|MEM_Int)) ){ + sqlite3VdbeMemStringify(pRec, enc); + } + pRec->flags &= ~(MEM_Real|MEM_Int); + }else if( affinity!=SQLITE_AFF_NONE ){ + assert( affinity==SQLITE_AFF_INTEGER || affinity==SQLITE_AFF_REAL + || affinity==SQLITE_AFF_NUMERIC ); + applyNumericAffinity(pRec); + if( pRec->flags & MEM_Real ){ + sqlite3VdbeIntegerAffinity(pRec); + } + } +} + +/* +** Try to convert the type of a function argument or a result column +** into a numeric representation. Use either INTEGER or REAL whichever +** is appropriate. But only do the conversion if it is possible without +** loss of information and return the revised type of the argument. +*/ +SQLITE_API int sqlite3_value_numeric_type(sqlite3_value *pVal){ + int eType = sqlite3_value_type(pVal); + if( eType==SQLITE_TEXT ){ + Mem *pMem = (Mem*)pVal; + applyNumericAffinity(pMem); + eType = sqlite3_value_type(pVal); + } + return eType; +} + +/* +** Exported version of applyAffinity(). This one works on sqlite3_value*, +** not the internal Mem* type. +*/ +SQLITE_PRIVATE void sqlite3ValueApplyAffinity( + sqlite3_value *pVal, + u8 affinity, + u8 enc +){ + applyAffinity((Mem *)pVal, affinity, enc); +} + +/* +** Return the numeric type for pMem, either MEM_Int or MEM_Real or both or +** none. +** +** Unlike applyNumericAffinity(), this routine does not modify pMem->flags. +** But it does set pMem->r and pMem->u.i appropriately. +*/ +static u16 numericType(Mem *pMem){ + if( pMem->flags & (MEM_Int|MEM_Real) ){ + return pMem->flags & (MEM_Int|MEM_Real); + } + if( pMem->flags & (MEM_Str|MEM_Blob) ){ + if( sqlite3AtoF(pMem->z, &pMem->r, pMem->n, pMem->enc)==0 ){ + return 0; + } + if( sqlite3Atoi64(pMem->z, &pMem->u.i, pMem->n, pMem->enc)==SQLITE_OK ){ + return MEM_Int; + } + return MEM_Real; + } + return 0; +} + +#ifdef SQLITE_DEBUG +/* +** Write a nice string representation of the contents of cell pMem +** into buffer zBuf, length nBuf. +*/ +SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf){ + char *zCsr = zBuf; + int f = pMem->flags; + + static const char *const encnames[] = {"(X)", "(8)", "(16LE)", "(16BE)"}; + + if( f&MEM_Blob ){ + int i; + char c; + if( f & MEM_Dyn ){ + c = 'z'; + assert( (f & (MEM_Static|MEM_Ephem))==0 ); + }else if( f & MEM_Static ){ + c = 't'; + assert( (f & (MEM_Dyn|MEM_Ephem))==0 ); + }else if( f & MEM_Ephem ){ + c = 'e'; + assert( (f & (MEM_Static|MEM_Dyn))==0 ); + }else{ + c = 's'; + } + + sqlite3_snprintf(100, zCsr, "%c", c); + zCsr += sqlite3Strlen30(zCsr); + sqlite3_snprintf(100, zCsr, "%d[", pMem->n); + zCsr += sqlite3Strlen30(zCsr); + for(i=0; i<16 && in; i++){ + sqlite3_snprintf(100, zCsr, "%02X", ((int)pMem->z[i] & 0xFF)); + zCsr += sqlite3Strlen30(zCsr); + } + for(i=0; i<16 && in; i++){ + char z = pMem->z[i]; + if( z<32 || z>126 ) *zCsr++ = '.'; + else *zCsr++ = z; + } + + sqlite3_snprintf(100, zCsr, "]%s", encnames[pMem->enc]); + zCsr += sqlite3Strlen30(zCsr); + if( f & MEM_Zero ){ + sqlite3_snprintf(100, zCsr,"+%dz",pMem->u.nZero); + zCsr += sqlite3Strlen30(zCsr); + } + *zCsr = '\0'; + }else if( f & MEM_Str ){ + int j, k; + zBuf[0] = ' '; + if( f & MEM_Dyn ){ + zBuf[1] = 'z'; + assert( (f & (MEM_Static|MEM_Ephem))==0 ); + }else if( f & MEM_Static ){ + zBuf[1] = 't'; + assert( (f & (MEM_Dyn|MEM_Ephem))==0 ); + }else if( f & MEM_Ephem ){ + zBuf[1] = 'e'; + assert( (f & (MEM_Static|MEM_Dyn))==0 ); + }else{ + zBuf[1] = 's'; + } + k = 2; + sqlite3_snprintf(100, &zBuf[k], "%d", pMem->n); + k += sqlite3Strlen30(&zBuf[k]); + zBuf[k++] = '['; + for(j=0; j<15 && jn; j++){ + u8 c = pMem->z[j]; + if( c>=0x20 && c<0x7f ){ + zBuf[k++] = c; + }else{ + zBuf[k++] = '.'; + } + } + zBuf[k++] = ']'; + sqlite3_snprintf(100,&zBuf[k], encnames[pMem->enc]); + k += sqlite3Strlen30(&zBuf[k]); + zBuf[k++] = 0; + } +} +#endif + +#ifdef SQLITE_DEBUG +/* +** Print the value of a register for tracing purposes: +*/ +static void memTracePrint(Mem *p){ + if( p->flags & MEM_Undefined ){ + printf(" undefined"); + }else if( p->flags & MEM_Null ){ + printf(" NULL"); + }else if( (p->flags & (MEM_Int|MEM_Str))==(MEM_Int|MEM_Str) ){ + printf(" si:%lld", p->u.i); + }else if( p->flags & MEM_Int ){ + printf(" i:%lld", p->u.i); +#ifndef SQLITE_OMIT_FLOATING_POINT + }else if( p->flags & MEM_Real ){ + printf(" r:%g", p->r); +#endif + }else if( p->flags & MEM_RowSet ){ + printf(" (rowset)"); + }else{ + char zBuf[200]; + sqlite3VdbeMemPrettyPrint(p, zBuf); + printf(" %s", zBuf); + } +} +static void registerTrace(int iReg, Mem *p){ + printf("REG[%d] = ", iReg); + memTracePrint(p); + printf("\n"); +} +#endif + +#ifdef SQLITE_DEBUG +# define REGISTER_TRACE(R,M) if(db->flags&SQLITE_VdbeTrace)registerTrace(R,M) +#else +# define REGISTER_TRACE(R,M) +#endif + + +#ifdef VDBE_PROFILE + +/* +** hwtime.h contains inline assembler code for implementing +** high-performance timing routines. +*/ +/************** Include hwtime.h in the middle of vdbe.c *********************/ +/************** Begin file hwtime.h ******************************************/ +/* +** 2008 May 27 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This file contains inline asm code for retrieving "high-performance" +** counters for x86 class CPUs. +*/ +#ifndef _HWTIME_H_ +#define _HWTIME_H_ + +/* +** The following routine only works on pentium-class (or newer) processors. +** It uses the RDTSC opcode to read the cycle count value out of the +** processor and returns that value. This can be used for high-res +** profiling. +*/ +#if (defined(__GNUC__) || defined(_MSC_VER)) && \ + (defined(i386) || defined(__i386__) || defined(_M_IX86)) + + #if defined(__GNUC__) + + __inline__ sqlite_uint64 sqlite3Hwtime(void){ + unsigned int lo, hi; + __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi)); + return (sqlite_uint64)hi << 32 | lo; + } + + #elif defined(_MSC_VER) + + __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ + __asm { + rdtsc + ret ; return value at EDX:EAX + } + } + + #endif + +#elif (defined(__GNUC__) && defined(__x86_64__)) + + __inline__ sqlite_uint64 sqlite3Hwtime(void){ + unsigned long val; + __asm__ __volatile__ ("rdtsc" : "=A" (val)); + return val; + } + +#elif (defined(__GNUC__) && defined(__ppc__)) + + __inline__ sqlite_uint64 sqlite3Hwtime(void){ + unsigned long long retval; + unsigned long junk; + __asm__ __volatile__ ("\n\ + 1: mftbu %1\n\ + mftb %L0\n\ + mftbu %0\n\ + cmpw %0,%1\n\ + bne 1b" + : "=r" (retval), "=r" (junk)); + return retval; + } + +#else + + #error Need implementation of sqlite3Hwtime() for your platform. + + /* + ** To compile without implementing sqlite3Hwtime() for your platform, + ** you can remove the above #error and use the following + ** stub function. You will lose timing support for many + ** of the debugging and testing utilities, but it should at + ** least compile and run. + */ +SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); } + +#endif + +#endif /* !defined(_HWTIME_H_) */ + +/************** End of hwtime.h **********************************************/ +/************** Continuing where we left off in vdbe.c ***********************/ + +#endif + +#ifndef NDEBUG +/* +** This function is only called from within an assert() expression. It +** checks that the sqlite3.nTransaction variable is correctly set to +** the number of non-transaction savepoints currently in the +** linked list starting at sqlite3.pSavepoint. +** +** Usage: +** +** assert( checkSavepointCount(db) ); +*/ +static int checkSavepointCount(sqlite3 *db){ + int n = 0; + Savepoint *p; + for(p=db->pSavepoint; p; p=p->pNext) n++; + assert( n==(db->nSavepoint + db->isTransactionSavepoint) ); + return 1; +} +#endif + + +/* +** Execute as much of a VDBE program as we can. +** This is the core of sqlite3_step(). +*/ +SQLITE_PRIVATE int sqlite3VdbeExec( + Vdbe *p /* The VDBE */ +){ + int pc=0; /* The program counter */ + Op *aOp = p->aOp; /* Copy of p->aOp */ + Op *pOp; /* Current operation */ + int rc = SQLITE_OK; /* Value to return */ + sqlite3 *db = p->db; /* The database */ + u8 resetSchemaOnFault = 0; /* Reset schema after an error if positive */ + u8 encoding = ENC(db); /* The database encoding */ + int iCompare = 0; /* Result of last OP_Compare operation */ + unsigned nVmStep = 0; /* Number of virtual machine steps */ +#ifndef SQLITE_OMIT_PROGRESS_CALLBACK + unsigned nProgressLimit = 0;/* Invoke xProgress() when nVmStep reaches this */ +#endif + Mem *aMem = p->aMem; /* Copy of p->aMem */ + Mem *pIn1 = 0; /* 1st input operand */ + Mem *pIn2 = 0; /* 2nd input operand */ + Mem *pIn3 = 0; /* 3rd input operand */ + Mem *pOut = 0; /* Output operand */ + int *aPermute = 0; /* Permutation of columns for OP_Compare */ + i64 lastRowid = db->lastRowid; /* Saved value of the last insert ROWID */ +#ifdef VDBE_PROFILE + u64 start; /* CPU clock count at start of opcode */ +#endif + /*** INSERT STACK UNION HERE ***/ + + assert( p->magic==VDBE_MAGIC_RUN ); /* sqlite3_step() verifies this */ + sqlite3VdbeEnter(p); + if( p->rc==SQLITE_NOMEM ){ + /* This happens if a malloc() inside a call to sqlite3_column_text() or + ** sqlite3_column_text16() failed. */ + goto no_mem; + } + assert( p->rc==SQLITE_OK || p->rc==SQLITE_BUSY ); + assert( p->bIsReader || p->readOnly!=0 ); + p->rc = SQLITE_OK; + p->iCurrentTime = 0; + assert( p->explain==0 ); + p->pResultSet = 0; + db->busyHandler.nBusy = 0; + if( db->u1.isInterrupted ) goto abort_due_to_interrupt; + sqlite3VdbeIOTraceSql(p); +#ifndef SQLITE_OMIT_PROGRESS_CALLBACK + if( db->xProgress ){ + assert( 0 < db->nProgressOps ); + nProgressLimit = (unsigned)p->aCounter[SQLITE_STMTSTATUS_VM_STEP]; + if( nProgressLimit==0 ){ + nProgressLimit = db->nProgressOps; + }else{ + nProgressLimit %= (unsigned)db->nProgressOps; + } + } +#endif +#ifdef SQLITE_DEBUG + sqlite3BeginBenignMalloc(); + if( p->pc==0 + && (p->db->flags & (SQLITE_VdbeListing|SQLITE_VdbeEQP|SQLITE_VdbeTrace))!=0 + ){ + int i; + int once = 1; + sqlite3VdbePrintSql(p); + if( p->db->flags & SQLITE_VdbeListing ){ + printf("VDBE Program Listing:\n"); + for(i=0; inOp; i++){ + sqlite3VdbePrintOp(stdout, i, &aOp[i]); + } + } + if( p->db->flags & SQLITE_VdbeEQP ){ + for(i=0; inOp; i++){ + if( aOp[i].opcode==OP_Explain ){ + if( once ) printf("VDBE Query Plan:\n"); + printf("%s\n", aOp[i].p4.z); + once = 0; + } + } + } + if( p->db->flags & SQLITE_VdbeTrace ) printf("VDBE Trace:\n"); + } + sqlite3EndBenignMalloc(); +#endif + for(pc=p->pc; rc==SQLITE_OK; pc++){ + assert( pc>=0 && pcnOp ); + if( db->mallocFailed ) goto no_mem; +#ifdef VDBE_PROFILE + start = sqlite3Hwtime(); +#endif + nVmStep++; + pOp = &aOp[pc]; + + /* Only allow tracing if SQLITE_DEBUG is defined. + */ +#ifdef SQLITE_DEBUG + if( db->flags & SQLITE_VdbeTrace ){ + sqlite3VdbePrintOp(stdout, pc, pOp); + } +#endif + + + /* Check to see if we need to simulate an interrupt. This only happens + ** if we have a special test build. + */ +#ifdef SQLITE_TEST + if( sqlite3_interrupt_count>0 ){ + sqlite3_interrupt_count--; + if( sqlite3_interrupt_count==0 ){ + sqlite3_interrupt(db); + } + } +#endif + + /* On any opcode with the "out2-prerelease" tag, free any + ** external allocations out of mem[p2] and set mem[p2] to be + ** an undefined integer. Opcodes will either fill in the integer + ** value or convert mem[p2] to a different type. + */ + assert( pOp->opflags==sqlite3OpcodeProperty[pOp->opcode] ); + if( pOp->opflags & OPFLG_OUT2_PRERELEASE ){ + assert( pOp->p2>0 ); + assert( pOp->p2<=(p->nMem-p->nCursor) ); + pOut = &aMem[pOp->p2]; + memAboutToChange(p, pOut); + VdbeMemRelease(pOut); + pOut->flags = MEM_Int; + } + + /* Sanity checking on other operands */ +#ifdef SQLITE_DEBUG + if( (pOp->opflags & OPFLG_IN1)!=0 ){ + assert( pOp->p1>0 ); + assert( pOp->p1<=(p->nMem-p->nCursor) ); + assert( memIsValid(&aMem[pOp->p1]) ); + assert( sqlite3VdbeCheckMemInvariants(&aMem[pOp->p1]) ); + REGISTER_TRACE(pOp->p1, &aMem[pOp->p1]); + } + if( (pOp->opflags & OPFLG_IN2)!=0 ){ + assert( pOp->p2>0 ); + assert( pOp->p2<=(p->nMem-p->nCursor) ); + assert( memIsValid(&aMem[pOp->p2]) ); + assert( sqlite3VdbeCheckMemInvariants(&aMem[pOp->p2]) ); + REGISTER_TRACE(pOp->p2, &aMem[pOp->p2]); + } + if( (pOp->opflags & OPFLG_IN3)!=0 ){ + assert( pOp->p3>0 ); + assert( pOp->p3<=(p->nMem-p->nCursor) ); + assert( memIsValid(&aMem[pOp->p3]) ); + assert( sqlite3VdbeCheckMemInvariants(&aMem[pOp->p3]) ); + REGISTER_TRACE(pOp->p3, &aMem[pOp->p3]); + } + if( (pOp->opflags & OPFLG_OUT2)!=0 ){ + assert( pOp->p2>0 ); + assert( pOp->p2<=(p->nMem-p->nCursor) ); + memAboutToChange(p, &aMem[pOp->p2]); + } + if( (pOp->opflags & OPFLG_OUT3)!=0 ){ + assert( pOp->p3>0 ); + assert( pOp->p3<=(p->nMem-p->nCursor) ); + memAboutToChange(p, &aMem[pOp->p3]); + } +#endif + + switch( pOp->opcode ){ + +/***************************************************************************** +** What follows is a massive switch statement where each case implements a +** separate instruction in the virtual machine. If we follow the usual +** indentation conventions, each case should be indented by 6 spaces. But +** that is a lot of wasted space on the left margin. So the code within +** the switch statement will break with convention and be flush-left. Another +** big comment (similar to this one) will mark the point in the code where +** we transition back to normal indentation. +** +** The formatting of each case is important. The makefile for SQLite +** generates two C files "opcodes.h" and "opcodes.c" by scanning this +** file looking for lines that begin with "case OP_". The opcodes.h files +** will be filled with #defines that give unique integer values to each +** opcode and the opcodes.c file is filled with an array of strings where +** each string is the symbolic name for the corresponding opcode. If the +** case statement is followed by a comment of the form "/# same as ... #/" +** that comment is used to determine the particular value of the opcode. +** +** Other keywords in the comment that follows each case are used to +** construct the OPFLG_INITIALIZER value that initializes opcodeProperty[]. +** Keywords include: in1, in2, in3, out2_prerelease, out2, out3. See +** the mkopcodeh.awk script for additional information. +** +** Documentation about VDBE opcodes is generated by scanning this file +** for lines of that contain "Opcode:". That line and all subsequent +** comment lines are used in the generation of the opcode.html documentation +** file. +** +** SUMMARY: +** +** Formatting is important to scripts that scan this file. +** Do not deviate from the formatting style currently in use. +** +*****************************************************************************/ + +/* Opcode: Goto * P2 * * * +** +** An unconditional jump to address P2. +** The next instruction executed will be +** the one at index P2 from the beginning of +** the program. +** +** The P1 parameter is not actually used by this opcode. However, it +** is sometimes set to 1 instead of 0 as a hint to the command-line shell +** that this Goto is the bottom of a loop and that the lines from P2 down +** to the current line should be indented for EXPLAIN output. +*/ +case OP_Goto: { /* jump */ + pc = pOp->p2 - 1; + + /* Opcodes that are used as the bottom of a loop (OP_Next, OP_Prev, + ** OP_VNext, OP_RowSetNext, or OP_SorterNext) all jump here upon + ** completion. Check to see if sqlite3_interrupt() has been called + ** or if the progress callback needs to be invoked. + ** + ** This code uses unstructured "goto" statements and does not look clean. + ** But that is not due to sloppy coding habits. The code is written this + ** way for performance, to avoid having to run the interrupt and progress + ** checks on every opcode. This helps sqlite3_step() to run about 1.5% + ** faster according to "valgrind --tool=cachegrind" */ +check_for_interrupt: + if( db->u1.isInterrupted ) goto abort_due_to_interrupt; +#ifndef SQLITE_OMIT_PROGRESS_CALLBACK + /* Call the progress callback if it is configured and the required number + ** of VDBE ops have been executed (either since this invocation of + ** sqlite3VdbeExec() or since last time the progress callback was called). + ** If the progress callback returns non-zero, exit the virtual machine with + ** a return code SQLITE_ABORT. + */ + if( db->xProgress!=0 && nVmStep>=nProgressLimit ){ + assert( db->nProgressOps!=0 ); + nProgressLimit = nVmStep + db->nProgressOps - (nVmStep%db->nProgressOps); + if( db->xProgress(db->pProgressArg) ){ + rc = SQLITE_INTERRUPT; + goto vdbe_error_halt; + } + } +#endif + + break; +} + +/* Opcode: Gosub P1 P2 * * * +** +** Write the current address onto register P1 +** and then jump to address P2. +*/ +case OP_Gosub: { /* jump */ + assert( pOp->p1>0 && pOp->p1<=(p->nMem-p->nCursor) ); + pIn1 = &aMem[pOp->p1]; + assert( VdbeMemDynamic(pIn1)==0 ); + memAboutToChange(p, pIn1); + pIn1->flags = MEM_Int; + pIn1->u.i = pc; + REGISTER_TRACE(pOp->p1, pIn1); + pc = pOp->p2 - 1; + break; +} + +/* Opcode: Return P1 * * * * +** +** Jump to the next instruction after the address in register P1. After +** the jump, register P1 becomes undefined. +*/ +case OP_Return: { /* in1 */ + pIn1 = &aMem[pOp->p1]; + assert( pIn1->flags==MEM_Int ); + pc = (int)pIn1->u.i; + pIn1->flags = MEM_Undefined; + break; +} + +/* Opcode: InitCoroutine P1 P2 P3 * * +** +** Set up register P1 so that it will OP_Yield to the co-routine +** located at address P3. +** +** If P2!=0 then the co-routine implementation immediately follows +** this opcode. So jump over the co-routine implementation to +** address P2. +*/ +case OP_InitCoroutine: { /* jump */ + assert( pOp->p1>0 && pOp->p1<=(p->nMem-p->nCursor) ); + assert( pOp->p2>=0 && pOp->p2nOp ); + assert( pOp->p3>=0 && pOp->p3nOp ); + pOut = &aMem[pOp->p1]; + assert( !VdbeMemDynamic(pOut) ); + pOut->u.i = pOp->p3 - 1; + pOut->flags = MEM_Int; + if( pOp->p2 ) pc = pOp->p2 - 1; + break; +} + +/* Opcode: EndCoroutine P1 * * * * +** +** The instruction at the address in register P1 is an OP_Yield. +** Jump to the P2 parameter of that OP_Yield. +** After the jump, register P1 becomes undefined. +*/ +case OP_EndCoroutine: { /* in1 */ + VdbeOp *pCaller; + pIn1 = &aMem[pOp->p1]; + assert( pIn1->flags==MEM_Int ); + assert( pIn1->u.i>=0 && pIn1->u.inOp ); + pCaller = &aOp[pIn1->u.i]; + assert( pCaller->opcode==OP_Yield ); + assert( pCaller->p2>=0 && pCaller->p2nOp ); + pc = pCaller->p2 - 1; + pIn1->flags = MEM_Undefined; + break; +} + +/* Opcode: Yield P1 P2 * * * +** +** Swap the program counter with the value in register P1. +** +** If the co-routine ends with OP_Yield or OP_Return then continue +** to the next instruction. But if the co-routine ends with +** OP_EndCoroutine, jump immediately to P2. +*/ +case OP_Yield: { /* in1, jump */ + int pcDest; + pIn1 = &aMem[pOp->p1]; + assert( VdbeMemDynamic(pIn1)==0 ); + pIn1->flags = MEM_Int; + pcDest = (int)pIn1->u.i; + pIn1->u.i = pc; + REGISTER_TRACE(pOp->p1, pIn1); + pc = pcDest; + break; +} + +/* Opcode: HaltIfNull P1 P2 P3 P4 P5 +** Synopsis: if r[P3]=null halt +** +** Check the value in register P3. If it is NULL then Halt using +** parameter P1, P2, and P4 as if this were a Halt instruction. If the +** value in register P3 is not NULL, then this routine is a no-op. +** The P5 parameter should be 1. +*/ +case OP_HaltIfNull: { /* in3 */ + pIn3 = &aMem[pOp->p3]; + if( (pIn3->flags & MEM_Null)==0 ) break; + /* Fall through into OP_Halt */ +} + +/* Opcode: Halt P1 P2 * P4 P5 +** +** Exit immediately. All open cursors, etc are closed +** automatically. +** +** P1 is the result code returned by sqlite3_exec(), sqlite3_reset(), +** or sqlite3_finalize(). For a normal halt, this should be SQLITE_OK (0). +** For errors, it can be some other value. If P1!=0 then P2 will determine +** whether or not to rollback the current transaction. Do not rollback +** if P2==OE_Fail. Do the rollback if P2==OE_Rollback. If P2==OE_Abort, +** then back out all changes that have occurred during this execution of the +** VDBE, but do not rollback the transaction. +** +** If P4 is not null then it is an error message string. +** +** P5 is a value between 0 and 4, inclusive, that modifies the P4 string. +** +** 0: (no change) +** 1: NOT NULL contraint failed: P4 +** 2: UNIQUE constraint failed: P4 +** 3: CHECK constraint failed: P4 +** 4: FOREIGN KEY constraint failed: P4 +** +** If P5 is not zero and P4 is NULL, then everything after the ":" is +** omitted. +** +** There is an implied "Halt 0 0 0" instruction inserted at the very end of +** every program. So a jump past the last instruction of the program +** is the same as executing Halt. +*/ +case OP_Halt: { + const char *zType; + const char *zLogFmt; + + if( pOp->p1==SQLITE_OK && p->pFrame ){ + /* Halt the sub-program. Return control to the parent frame. */ + VdbeFrame *pFrame = p->pFrame; + p->pFrame = pFrame->pParent; + p->nFrame--; + sqlite3VdbeSetChanges(db, p->nChange); + pc = sqlite3VdbeFrameRestore(pFrame); + lastRowid = db->lastRowid; + if( pOp->p2==OE_Ignore ){ + /* Instruction pc is the OP_Program that invoked the sub-program + ** currently being halted. If the p2 instruction of this OP_Halt + ** instruction is set to OE_Ignore, then the sub-program is throwing + ** an IGNORE exception. In this case jump to the address specified + ** as the p2 of the calling OP_Program. */ + pc = p->aOp[pc].p2-1; + } + aOp = p->aOp; + aMem = p->aMem; + break; + } + p->rc = pOp->p1; + p->errorAction = (u8)pOp->p2; + p->pc = pc; + if( p->rc ){ + if( pOp->p5 ){ + static const char * const azType[] = { "NOT NULL", "UNIQUE", "CHECK", + "FOREIGN KEY" }; + assert( pOp->p5>=1 && pOp->p5<=4 ); + testcase( pOp->p5==1 ); + testcase( pOp->p5==2 ); + testcase( pOp->p5==3 ); + testcase( pOp->p5==4 ); + zType = azType[pOp->p5-1]; + }else{ + zType = 0; + } + assert( zType!=0 || pOp->p4.z!=0 ); + zLogFmt = "abort at %d in [%s]: %s"; + if( zType && pOp->p4.z ){ + sqlite3SetString(&p->zErrMsg, db, "%s constraint failed: %s", + zType, pOp->p4.z); + }else if( pOp->p4.z ){ + sqlite3SetString(&p->zErrMsg, db, "%s", pOp->p4.z); + }else{ + sqlite3SetString(&p->zErrMsg, db, "%s constraint failed", zType); + } + sqlite3_log(pOp->p1, zLogFmt, pc, p->zSql, p->zErrMsg); + } + rc = sqlite3VdbeHalt(p); + assert( rc==SQLITE_BUSY || rc==SQLITE_OK || rc==SQLITE_ERROR ); + if( rc==SQLITE_BUSY ){ + p->rc = rc = SQLITE_BUSY; + }else{ + assert( rc==SQLITE_OK || (p->rc&0xff)==SQLITE_CONSTRAINT ); + assert( rc==SQLITE_OK || db->nDeferredCons>0 || db->nDeferredImmCons>0 ); + rc = p->rc ? SQLITE_ERROR : SQLITE_DONE; + } + goto vdbe_return; +} + +/* Opcode: Integer P1 P2 * * * +** Synopsis: r[P2]=P1 +** +** The 32-bit integer value P1 is written into register P2. +*/ +case OP_Integer: { /* out2-prerelease */ + pOut->u.i = pOp->p1; + break; +} + +/* Opcode: Int64 * P2 * P4 * +** Synopsis: r[P2]=P4 +** +** P4 is a pointer to a 64-bit integer value. +** Write that value into register P2. +*/ +case OP_Int64: { /* out2-prerelease */ + assert( pOp->p4.pI64!=0 ); + pOut->u.i = *pOp->p4.pI64; + break; +} + +#ifndef SQLITE_OMIT_FLOATING_POINT +/* Opcode: Real * P2 * P4 * +** Synopsis: r[P2]=P4 +** +** P4 is a pointer to a 64-bit floating point value. +** Write that value into register P2. +*/ +case OP_Real: { /* same as TK_FLOAT, out2-prerelease */ + pOut->flags = MEM_Real; + assert( !sqlite3IsNaN(*pOp->p4.pReal) ); + pOut->r = *pOp->p4.pReal; + break; +} +#endif + +/* Opcode: String8 * P2 * P4 * +** Synopsis: r[P2]='P4' +** +** P4 points to a nul terminated UTF-8 string. This opcode is transformed +** into an OP_String before it is executed for the first time. During +** this transformation, the length of string P4 is computed and stored +** as the P1 parameter. +*/ +case OP_String8: { /* same as TK_STRING, out2-prerelease */ + assert( pOp->p4.z!=0 ); + pOp->opcode = OP_String; + pOp->p1 = sqlite3Strlen30(pOp->p4.z); + +#ifndef SQLITE_OMIT_UTF16 + if( encoding!=SQLITE_UTF8 ){ + rc = sqlite3VdbeMemSetStr(pOut, pOp->p4.z, -1, SQLITE_UTF8, SQLITE_STATIC); + if( rc==SQLITE_TOOBIG ) goto too_big; + if( SQLITE_OK!=sqlite3VdbeChangeEncoding(pOut, encoding) ) goto no_mem; + assert( pOut->zMalloc==pOut->z ); + assert( VdbeMemDynamic(pOut)==0 ); + pOut->zMalloc = 0; + pOut->flags |= MEM_Static; + if( pOp->p4type==P4_DYNAMIC ){ + sqlite3DbFree(db, pOp->p4.z); + } + pOp->p4type = P4_DYNAMIC; + pOp->p4.z = pOut->z; + pOp->p1 = pOut->n; + } +#endif + if( pOp->p1>db->aLimit[SQLITE_LIMIT_LENGTH] ){ + goto too_big; + } + /* Fall through to the next case, OP_String */ +} + +/* Opcode: String P1 P2 * P4 * +** Synopsis: r[P2]='P4' (len=P1) +** +** The string value P4 of length P1 (bytes) is stored in register P2. +*/ +case OP_String: { /* out2-prerelease */ + assert( pOp->p4.z!=0 ); + pOut->flags = MEM_Str|MEM_Static|MEM_Term; + pOut->z = pOp->p4.z; + pOut->n = pOp->p1; + pOut->enc = encoding; + UPDATE_MAX_BLOBSIZE(pOut); + break; +} + +/* Opcode: Null P1 P2 P3 * * +** Synopsis: r[P2..P3]=NULL +** +** Write a NULL into registers P2. If P3 greater than P2, then also write +** NULL into register P3 and every register in between P2 and P3. If P3 +** is less than P2 (typically P3 is zero) then only register P2 is +** set to NULL. +** +** If the P1 value is non-zero, then also set the MEM_Cleared flag so that +** NULL values will not compare equal even if SQLITE_NULLEQ is set on +** OP_Ne or OP_Eq. +*/ +case OP_Null: { /* out2-prerelease */ + int cnt; + u16 nullFlag; + cnt = pOp->p3-pOp->p2; + assert( pOp->p3<=(p->nMem-p->nCursor) ); + pOut->flags = nullFlag = pOp->p1 ? (MEM_Null|MEM_Cleared) : MEM_Null; + while( cnt>0 ){ + pOut++; + memAboutToChange(p, pOut); + VdbeMemRelease(pOut); + pOut->flags = nullFlag; + cnt--; + } + break; +} + +/* Opcode: SoftNull P1 * * * * +** Synopsis: r[P1]=NULL +** +** Set register P1 to have the value NULL as seen by the OP_MakeRecord +** instruction, but do not free any string or blob memory associated with +** the register, so that if the value was a string or blob that was +** previously copied using OP_SCopy, the copies will continue to be valid. +*/ +case OP_SoftNull: { + assert( pOp->p1>0 && pOp->p1<=(p->nMem-p->nCursor) ); + pOut = &aMem[pOp->p1]; + pOut->flags = (pOut->flags|MEM_Null)&~MEM_Undefined; + break; +} + +/* Opcode: Blob P1 P2 * P4 * +** Synopsis: r[P2]=P4 (len=P1) +** +** P4 points to a blob of data P1 bytes long. Store this +** blob in register P2. +*/ +case OP_Blob: { /* out2-prerelease */ + assert( pOp->p1 <= SQLITE_MAX_LENGTH ); + sqlite3VdbeMemSetStr(pOut, pOp->p4.z, pOp->p1, 0, 0); + pOut->enc = encoding; + UPDATE_MAX_BLOBSIZE(pOut); + break; +} + +/* Opcode: Variable P1 P2 * P4 * +** Synopsis: r[P2]=parameter(P1,P4) +** +** Transfer the values of bound parameter P1 into register P2 +** +** If the parameter is named, then its name appears in P4. +** The P4 value is used by sqlite3_bind_parameter_name(). +*/ +case OP_Variable: { /* out2-prerelease */ + Mem *pVar; /* Value being transferred */ + + assert( pOp->p1>0 && pOp->p1<=p->nVar ); + assert( pOp->p4.z==0 || pOp->p4.z==p->azVar[pOp->p1-1] ); + pVar = &p->aVar[pOp->p1 - 1]; + if( sqlite3VdbeMemTooBig(pVar) ){ + goto too_big; + } + sqlite3VdbeMemShallowCopy(pOut, pVar, MEM_Static); + UPDATE_MAX_BLOBSIZE(pOut); + break; +} + +/* Opcode: Move P1 P2 P3 * * +** Synopsis: r[P2@P3]=r[P1@P3] +** +** Move the P3 values in register P1..P1+P3-1 over into +** registers P2..P2+P3-1. Registers P1..P1+P3-1 are +** left holding a NULL. It is an error for register ranges +** P1..P1+P3-1 and P2..P2+P3-1 to overlap. It is an error +** for P3 to be less than 1. +*/ +case OP_Move: { + char *zMalloc; /* Holding variable for allocated memory */ + int n; /* Number of registers left to copy */ + int p1; /* Register to copy from */ + int p2; /* Register to copy to */ + + n = pOp->p3; + p1 = pOp->p1; + p2 = pOp->p2; + assert( n>0 && p1>0 && p2>0 ); + assert( p1+n<=p2 || p2+n<=p1 ); + + pIn1 = &aMem[p1]; + pOut = &aMem[p2]; + do{ + assert( pOut<=&aMem[(p->nMem-p->nCursor)] ); + assert( pIn1<=&aMem[(p->nMem-p->nCursor)] ); + assert( memIsValid(pIn1) ); + memAboutToChange(p, pOut); + VdbeMemRelease(pOut); + zMalloc = pOut->zMalloc; + memcpy(pOut, pIn1, sizeof(Mem)); +#ifdef SQLITE_DEBUG + if( pOut->pScopyFrom>=&aMem[p1] && pOut->pScopyFrom<&aMem[p1+pOp->p3] ){ + pOut->pScopyFrom += p1 - pOp->p2; + } +#endif + pIn1->flags = MEM_Undefined; + pIn1->xDel = 0; + pIn1->zMalloc = zMalloc; + REGISTER_TRACE(p2++, pOut); + pIn1++; + pOut++; + }while( --n ); + break; +} + +/* Opcode: Copy P1 P2 P3 * * +** Synopsis: r[P2@P3+1]=r[P1@P3+1] +** +** Make a copy of registers P1..P1+P3 into registers P2..P2+P3. +** +** This instruction makes a deep copy of the value. A duplicate +** is made of any string or blob constant. See also OP_SCopy. +*/ +case OP_Copy: { + int n; + + n = pOp->p3; + pIn1 = &aMem[pOp->p1]; + pOut = &aMem[pOp->p2]; + assert( pOut!=pIn1 ); + while( 1 ){ + sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem); + Deephemeralize(pOut); +#ifdef SQLITE_DEBUG + pOut->pScopyFrom = 0; +#endif + REGISTER_TRACE(pOp->p2+pOp->p3-n, pOut); + if( (n--)==0 ) break; + pOut++; + pIn1++; + } + break; +} + +/* Opcode: SCopy P1 P2 * * * +** Synopsis: r[P2]=r[P1] +** +** Make a shallow copy of register P1 into register P2. +** +** This instruction makes a shallow copy of the value. If the value +** is a string or blob, then the copy is only a pointer to the +** original and hence if the original changes so will the copy. +** Worse, if the original is deallocated, the copy becomes invalid. +** Thus the program must guarantee that the original will not change +** during the lifetime of the copy. Use OP_Copy to make a complete +** copy. +*/ +case OP_SCopy: { /* out2 */ + pIn1 = &aMem[pOp->p1]; + pOut = &aMem[pOp->p2]; + assert( pOut!=pIn1 ); + sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem); +#ifdef SQLITE_DEBUG + if( pOut->pScopyFrom==0 ) pOut->pScopyFrom = pIn1; +#endif + break; +} + +/* Opcode: ResultRow P1 P2 * * * +** Synopsis: output=r[P1@P2] +** +** The registers P1 through P1+P2-1 contain a single row of +** results. This opcode causes the sqlite3_step() call to terminate +** with an SQLITE_ROW return code and it sets up the sqlite3_stmt +** structure to provide access to the r(P1)..r(P1+P2-1) values as +** the result row. +*/ +case OP_ResultRow: { + Mem *pMem; + int i; + assert( p->nResColumn==pOp->p2 ); + assert( pOp->p1>0 ); + assert( pOp->p1+pOp->p2<=(p->nMem-p->nCursor)+1 ); + +#ifndef SQLITE_OMIT_PROGRESS_CALLBACK + /* Run the progress counter just before returning. + */ + if( db->xProgress!=0 + && nVmStep>=nProgressLimit + && db->xProgress(db->pProgressArg)!=0 + ){ + rc = SQLITE_INTERRUPT; + goto vdbe_error_halt; + } +#endif + + /* If this statement has violated immediate foreign key constraints, do + ** not return the number of rows modified. And do not RELEASE the statement + ** transaction. It needs to be rolled back. */ + if( SQLITE_OK!=(rc = sqlite3VdbeCheckFk(p, 0)) ){ + assert( db->flags&SQLITE_CountRows ); + assert( p->usesStmtJournal ); + break; + } + + /* If the SQLITE_CountRows flag is set in sqlite3.flags mask, then + ** DML statements invoke this opcode to return the number of rows + ** modified to the user. This is the only way that a VM that + ** opens a statement transaction may invoke this opcode. + ** + ** In case this is such a statement, close any statement transaction + ** opened by this VM before returning control to the user. This is to + ** ensure that statement-transactions are always nested, not overlapping. + ** If the open statement-transaction is not closed here, then the user + ** may step another VM that opens its own statement transaction. This + ** may lead to overlapping statement transactions. + ** + ** The statement transaction is never a top-level transaction. Hence + ** the RELEASE call below can never fail. + */ + assert( p->iStatement==0 || db->flags&SQLITE_CountRows ); + rc = sqlite3VdbeCloseStatement(p, SAVEPOINT_RELEASE); + if( NEVER(rc!=SQLITE_OK) ){ + break; + } + + /* Invalidate all ephemeral cursor row caches */ + p->cacheCtr = (p->cacheCtr + 2)|1; + + /* Make sure the results of the current row are \000 terminated + ** and have an assigned type. The results are de-ephemeralized as + ** a side effect. + */ + pMem = p->pResultSet = &aMem[pOp->p1]; + for(i=0; ip2; i++){ + assert( memIsValid(&pMem[i]) ); + Deephemeralize(&pMem[i]); + assert( (pMem[i].flags & MEM_Ephem)==0 + || (pMem[i].flags & (MEM_Str|MEM_Blob))==0 ); + sqlite3VdbeMemNulTerminate(&pMem[i]); + REGISTER_TRACE(pOp->p1+i, &pMem[i]); + } + if( db->mallocFailed ) goto no_mem; + + /* Return SQLITE_ROW + */ + p->pc = pc + 1; + rc = SQLITE_ROW; + goto vdbe_return; +} + +/* Opcode: Concat P1 P2 P3 * * +** Synopsis: r[P3]=r[P2]+r[P1] +** +** Add the text in register P1 onto the end of the text in +** register P2 and store the result in register P3. +** If either the P1 or P2 text are NULL then store NULL in P3. +** +** P3 = P2 || P1 +** +** It is illegal for P1 and P3 to be the same register. Sometimes, +** if P3 is the same register as P2, the implementation is able +** to avoid a memcpy(). +*/ +case OP_Concat: { /* same as TK_CONCAT, in1, in2, out3 */ + i64 nByte; + + pIn1 = &aMem[pOp->p1]; + pIn2 = &aMem[pOp->p2]; + pOut = &aMem[pOp->p3]; + assert( pIn1!=pOut ); + if( (pIn1->flags | pIn2->flags) & MEM_Null ){ + sqlite3VdbeMemSetNull(pOut); + break; + } + if( ExpandBlob(pIn1) || ExpandBlob(pIn2) ) goto no_mem; + Stringify(pIn1, encoding); + Stringify(pIn2, encoding); + nByte = pIn1->n + pIn2->n; + if( nByte>db->aLimit[SQLITE_LIMIT_LENGTH] ){ + goto too_big; + } + if( sqlite3VdbeMemGrow(pOut, (int)nByte+2, pOut==pIn2) ){ + goto no_mem; + } + MemSetTypeFlag(pOut, MEM_Str); + if( pOut!=pIn2 ){ + memcpy(pOut->z, pIn2->z, pIn2->n); + } + memcpy(&pOut->z[pIn2->n], pIn1->z, pIn1->n); + pOut->z[nByte]=0; + pOut->z[nByte+1] = 0; + pOut->flags |= MEM_Term; + pOut->n = (int)nByte; + pOut->enc = encoding; + UPDATE_MAX_BLOBSIZE(pOut); + break; +} + +/* Opcode: Add P1 P2 P3 * * +** Synopsis: r[P3]=r[P1]+r[P2] +** +** Add the value in register P1 to the value in register P2 +** and store the result in register P3. +** If either input is NULL, the result is NULL. +*/ +/* Opcode: Multiply P1 P2 P3 * * +** Synopsis: r[P3]=r[P1]*r[P2] +** +** +** Multiply the value in register P1 by the value in register P2 +** and store the result in register P3. +** If either input is NULL, the result is NULL. +*/ +/* Opcode: Subtract P1 P2 P3 * * +** Synopsis: r[P3]=r[P2]-r[P1] +** +** Subtract the value in register P1 from the value in register P2 +** and store the result in register P3. +** If either input is NULL, the result is NULL. +*/ +/* Opcode: Divide P1 P2 P3 * * +** Synopsis: r[P3]=r[P2]/r[P1] +** +** Divide the value in register P1 by the value in register P2 +** and store the result in register P3 (P3=P2/P1). If the value in +** register P1 is zero, then the result is NULL. If either input is +** NULL, the result is NULL. +*/ +/* Opcode: Remainder P1 P2 P3 * * +** Synopsis: r[P3]=r[P2]%r[P1] +** +** Compute the remainder after integer register P2 is divided by +** register P1 and store the result in register P3. +** If the value in register P1 is zero the result is NULL. +** If either operand is NULL, the result is NULL. +*/ +case OP_Add: /* same as TK_PLUS, in1, in2, out3 */ +case OP_Subtract: /* same as TK_MINUS, in1, in2, out3 */ +case OP_Multiply: /* same as TK_STAR, in1, in2, out3 */ +case OP_Divide: /* same as TK_SLASH, in1, in2, out3 */ +case OP_Remainder: { /* same as TK_REM, in1, in2, out3 */ + char bIntint; /* Started out as two integer operands */ + u16 flags; /* Combined MEM_* flags from both inputs */ + u16 type1; /* Numeric type of left operand */ + u16 type2; /* Numeric type of right operand */ + i64 iA; /* Integer value of left operand */ + i64 iB; /* Integer value of right operand */ + double rA; /* Real value of left operand */ + double rB; /* Real value of right operand */ + + pIn1 = &aMem[pOp->p1]; + type1 = numericType(pIn1); + pIn2 = &aMem[pOp->p2]; + type2 = numericType(pIn2); + pOut = &aMem[pOp->p3]; + flags = pIn1->flags | pIn2->flags; + if( (flags & MEM_Null)!=0 ) goto arithmetic_result_is_null; + if( (type1 & type2 & MEM_Int)!=0 ){ + iA = pIn1->u.i; + iB = pIn2->u.i; + bIntint = 1; + switch( pOp->opcode ){ + case OP_Add: if( sqlite3AddInt64(&iB,iA) ) goto fp_math; break; + case OP_Subtract: if( sqlite3SubInt64(&iB,iA) ) goto fp_math; break; + case OP_Multiply: if( sqlite3MulInt64(&iB,iA) ) goto fp_math; break; + case OP_Divide: { + if( iA==0 ) goto arithmetic_result_is_null; + if( iA==-1 && iB==SMALLEST_INT64 ) goto fp_math; + iB /= iA; + break; + } + default: { + if( iA==0 ) goto arithmetic_result_is_null; + if( iA==-1 ) iA = 1; + iB %= iA; + break; + } + } + pOut->u.i = iB; + MemSetTypeFlag(pOut, MEM_Int); + }else{ + bIntint = 0; +fp_math: + rA = sqlite3VdbeRealValue(pIn1); + rB = sqlite3VdbeRealValue(pIn2); + switch( pOp->opcode ){ + case OP_Add: rB += rA; break; + case OP_Subtract: rB -= rA; break; + case OP_Multiply: rB *= rA; break; + case OP_Divide: { + /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ + if( rA==(double)0 ) goto arithmetic_result_is_null; + rB /= rA; + break; + } + default: { + iA = (i64)rA; + iB = (i64)rB; + if( iA==0 ) goto arithmetic_result_is_null; + if( iA==-1 ) iA = 1; + rB = (double)(iB % iA); + break; + } + } +#ifdef SQLITE_OMIT_FLOATING_POINT + pOut->u.i = rB; + MemSetTypeFlag(pOut, MEM_Int); +#else + if( sqlite3IsNaN(rB) ){ + goto arithmetic_result_is_null; + } + pOut->r = rB; + MemSetTypeFlag(pOut, MEM_Real); + if( ((type1|type2)&MEM_Real)==0 && !bIntint ){ + sqlite3VdbeIntegerAffinity(pOut); + } +#endif + } + break; + +arithmetic_result_is_null: + sqlite3VdbeMemSetNull(pOut); + break; +} + +/* Opcode: CollSeq P1 * * P4 +** +** P4 is a pointer to a CollSeq struct. If the next call to a user function +** or aggregate calls sqlite3GetFuncCollSeq(), this collation sequence will +** be returned. This is used by the built-in min(), max() and nullif() +** functions. +** +** If P1 is not zero, then it is a register that a subsequent min() or +** max() aggregate will set to 1 if the current row is not the minimum or +** maximum. The P1 register is initialized to 0 by this instruction. +** +** The interface used by the implementation of the aforementioned functions +** to retrieve the collation sequence set by this opcode is not available +** publicly, only to user functions defined in func.c. +*/ +case OP_CollSeq: { + assert( pOp->p4type==P4_COLLSEQ ); + if( pOp->p1 ){ + sqlite3VdbeMemSetInt64(&aMem[pOp->p1], 0); + } + break; +} + +/* Opcode: Function P1 P2 P3 P4 P5 +** Synopsis: r[P3]=func(r[P2@P5]) +** +** Invoke a user function (P4 is a pointer to a Function structure that +** defines the function) with P5 arguments taken from register P2 and +** successors. The result of the function is stored in register P3. +** Register P3 must not be one of the function inputs. +** +** P1 is a 32-bit bitmask indicating whether or not each argument to the +** function was determined to be constant at compile time. If the first +** argument was constant then bit 0 of P1 is set. This is used to determine +** whether meta data associated with a user function argument using the +** sqlite3_set_auxdata() API may be safely retained until the next +** invocation of this opcode. +** +** See also: AggStep and AggFinal +*/ +case OP_Function: { + int i; + Mem *pArg; + sqlite3_context ctx; + sqlite3_value **apVal; + int n; + + n = pOp->p5; + apVal = p->apArg; + assert( apVal || n==0 ); + assert( pOp->p3>0 && pOp->p3<=(p->nMem-p->nCursor) ); + pOut = &aMem[pOp->p3]; + memAboutToChange(p, pOut); + + assert( n==0 || (pOp->p2>0 && pOp->p2+n<=(p->nMem-p->nCursor)+1) ); + assert( pOp->p3p2 || pOp->p3>=pOp->p2+n ); + pArg = &aMem[pOp->p2]; + for(i=0; ip2+i, pArg); + } + + assert( pOp->p4type==P4_FUNCDEF ); + ctx.pFunc = pOp->p4.pFunc; + ctx.iOp = pc; + ctx.pVdbe = p; + + /* The output cell may already have a buffer allocated. Move + ** the pointer to ctx.s so in case the user-function can use + ** the already allocated buffer instead of allocating a new one. + */ + memcpy(&ctx.s, pOut, sizeof(Mem)); + pOut->flags = MEM_Null; + pOut->xDel = 0; + pOut->zMalloc = 0; + MemSetTypeFlag(&ctx.s, MEM_Null); + + ctx.fErrorOrAux = 0; + if( ctx.pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL ){ + assert( pOp>aOp ); + assert( pOp[-1].p4type==P4_COLLSEQ ); + assert( pOp[-1].opcode==OP_CollSeq ); + ctx.pColl = pOp[-1].p4.pColl; + } + db->lastRowid = lastRowid; + (*ctx.pFunc->xFunc)(&ctx, n, apVal); /* IMP: R-24505-23230 */ + lastRowid = db->lastRowid; + + if( db->mallocFailed ){ + /* Even though a malloc() has failed, the implementation of the + ** user function may have called an sqlite3_result_XXX() function + ** to return a value. The following call releases any resources + ** associated with such a value. + */ + sqlite3VdbeMemRelease(&ctx.s); + goto no_mem; + } + + /* If the function returned an error, throw an exception */ + if( ctx.fErrorOrAux ){ + if( ctx.isError ){ + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3_value_text(&ctx.s)); + rc = ctx.isError; + } + sqlite3VdbeDeleteAuxData(p, pc, pOp->p1); + } + + /* Copy the result of the function into register P3 */ + sqlite3VdbeChangeEncoding(&ctx.s, encoding); + assert( pOut->flags==MEM_Null ); + memcpy(pOut, &ctx.s, sizeof(Mem)); + if( sqlite3VdbeMemTooBig(pOut) ){ + goto too_big; + } + +#if 0 + /* The app-defined function has done something that as caused this + ** statement to expire. (Perhaps the function called sqlite3_exec() + ** with a CREATE TABLE statement.) + */ + if( p->expired ) rc = SQLITE_ABORT; +#endif + + REGISTER_TRACE(pOp->p3, pOut); + UPDATE_MAX_BLOBSIZE(pOut); + break; +} + +/* Opcode: BitAnd P1 P2 P3 * * +** Synopsis: r[P3]=r[P1]&r[P2] +** +** Take the bit-wise AND of the values in register P1 and P2 and +** store the result in register P3. +** If either input is NULL, the result is NULL. +*/ +/* Opcode: BitOr P1 P2 P3 * * +** Synopsis: r[P3]=r[P1]|r[P2] +** +** Take the bit-wise OR of the values in register P1 and P2 and +** store the result in register P3. +** If either input is NULL, the result is NULL. +*/ +/* Opcode: ShiftLeft P1 P2 P3 * * +** Synopsis: r[P3]=r[P2]<>r[P1] +** +** Shift the integer value in register P2 to the right by the +** number of bits specified by the integer in register P1. +** Store the result in register P3. +** If either input is NULL, the result is NULL. +*/ +case OP_BitAnd: /* same as TK_BITAND, in1, in2, out3 */ +case OP_BitOr: /* same as TK_BITOR, in1, in2, out3 */ +case OP_ShiftLeft: /* same as TK_LSHIFT, in1, in2, out3 */ +case OP_ShiftRight: { /* same as TK_RSHIFT, in1, in2, out3 */ + i64 iA; + u64 uA; + i64 iB; + u8 op; + + pIn1 = &aMem[pOp->p1]; + pIn2 = &aMem[pOp->p2]; + pOut = &aMem[pOp->p3]; + if( (pIn1->flags | pIn2->flags) & MEM_Null ){ + sqlite3VdbeMemSetNull(pOut); + break; + } + iA = sqlite3VdbeIntValue(pIn2); + iB = sqlite3VdbeIntValue(pIn1); + op = pOp->opcode; + if( op==OP_BitAnd ){ + iA &= iB; + }else if( op==OP_BitOr ){ + iA |= iB; + }else if( iB!=0 ){ + assert( op==OP_ShiftRight || op==OP_ShiftLeft ); + + /* If shifting by a negative amount, shift in the other direction */ + if( iB<0 ){ + assert( OP_ShiftRight==OP_ShiftLeft+1 ); + op = 2*OP_ShiftLeft + 1 - op; + iB = iB>(-64) ? -iB : 64; + } + + if( iB>=64 ){ + iA = (iA>=0 || op==OP_ShiftLeft) ? 0 : -1; + }else{ + memcpy(&uA, &iA, sizeof(uA)); + if( op==OP_ShiftLeft ){ + uA <<= iB; + }else{ + uA >>= iB; + /* Sign-extend on a right shift of a negative number */ + if( iA<0 ) uA |= ((((u64)0xffffffff)<<32)|0xffffffff) << (64-iB); + } + memcpy(&iA, &uA, sizeof(iA)); + } + } + pOut->u.i = iA; + MemSetTypeFlag(pOut, MEM_Int); + break; +} + +/* Opcode: AddImm P1 P2 * * * +** Synopsis: r[P1]=r[P1]+P2 +** +** Add the constant P2 to the value in register P1. +** The result is always an integer. +** +** To force any register to be an integer, just add 0. +*/ +case OP_AddImm: { /* in1 */ + pIn1 = &aMem[pOp->p1]; + memAboutToChange(p, pIn1); + sqlite3VdbeMemIntegerify(pIn1); + pIn1->u.i += pOp->p2; + break; +} + +/* Opcode: MustBeInt P1 P2 * * * +** +** Force the value in register P1 to be an integer. If the value +** in P1 is not an integer and cannot be converted into an integer +** without data loss, then jump immediately to P2, or if P2==0 +** raise an SQLITE_MISMATCH exception. +*/ +case OP_MustBeInt: { /* jump, in1 */ + pIn1 = &aMem[pOp->p1]; + if( (pIn1->flags & MEM_Int)==0 ){ + applyAffinity(pIn1, SQLITE_AFF_NUMERIC, encoding); + VdbeBranchTaken((pIn1->flags&MEM_Int)==0, 2); + if( (pIn1->flags & MEM_Int)==0 ){ + if( pOp->p2==0 ){ + rc = SQLITE_MISMATCH; + goto abort_due_to_error; + }else{ + pc = pOp->p2 - 1; + break; + } + } + } + MemSetTypeFlag(pIn1, MEM_Int); + break; +} + +#ifndef SQLITE_OMIT_FLOATING_POINT +/* Opcode: RealAffinity P1 * * * * +** +** If register P1 holds an integer convert it to a real value. +** +** This opcode is used when extracting information from a column that +** has REAL affinity. Such column values may still be stored as +** integers, for space efficiency, but after extraction we want them +** to have only a real value. +*/ +case OP_RealAffinity: { /* in1 */ + pIn1 = &aMem[pOp->p1]; + if( pIn1->flags & MEM_Int ){ + sqlite3VdbeMemRealify(pIn1); + } + break; +} +#endif + +#ifndef SQLITE_OMIT_CAST +/* Opcode: ToText P1 * * * * +** +** Force the value in register P1 to be text. +** If the value is numeric, convert it to a string using the +** equivalent of sprintf(). Blob values are unchanged and +** are afterwards simply interpreted as text. +** +** A NULL value is not changed by this routine. It remains NULL. +*/ +case OP_ToText: { /* same as TK_TO_TEXT, in1 */ + pIn1 = &aMem[pOp->p1]; + memAboutToChange(p, pIn1); + if( pIn1->flags & MEM_Null ) break; + assert( MEM_Str==(MEM_Blob>>3) ); + pIn1->flags |= (pIn1->flags&MEM_Blob)>>3; + applyAffinity(pIn1, SQLITE_AFF_TEXT, encoding); + rc = ExpandBlob(pIn1); + assert( pIn1->flags & MEM_Str || db->mallocFailed ); + pIn1->flags &= ~(MEM_Int|MEM_Real|MEM_Blob|MEM_Zero); + UPDATE_MAX_BLOBSIZE(pIn1); + break; +} + +/* Opcode: ToBlob P1 * * * * +** +** Force the value in register P1 to be a BLOB. +** If the value is numeric, convert it to a string first. +** Strings are simply reinterpreted as blobs with no change +** to the underlying data. +** +** A NULL value is not changed by this routine. It remains NULL. +*/ +case OP_ToBlob: { /* same as TK_TO_BLOB, in1 */ + pIn1 = &aMem[pOp->p1]; + if( pIn1->flags & MEM_Null ) break; + if( (pIn1->flags & MEM_Blob)==0 ){ + applyAffinity(pIn1, SQLITE_AFF_TEXT, encoding); + assert( pIn1->flags & MEM_Str || db->mallocFailed ); + MemSetTypeFlag(pIn1, MEM_Blob); + }else{ + pIn1->flags &= ~(MEM_TypeMask&~MEM_Blob); + } + UPDATE_MAX_BLOBSIZE(pIn1); + break; +} + +/* Opcode: ToNumeric P1 * * * * +** +** Force the value in register P1 to be numeric (either an +** integer or a floating-point number.) +** If the value is text or blob, try to convert it to an using the +** equivalent of atoi() or atof() and store 0 if no such conversion +** is possible. +** +** A NULL value is not changed by this routine. It remains NULL. +*/ +case OP_ToNumeric: { /* same as TK_TO_NUMERIC, in1 */ + pIn1 = &aMem[pOp->p1]; + sqlite3VdbeMemNumerify(pIn1); + break; +} +#endif /* SQLITE_OMIT_CAST */ + +/* Opcode: ToInt P1 * * * * +** +** Force the value in register P1 to be an integer. If +** The value is currently a real number, drop its fractional part. +** If the value is text or blob, try to convert it to an integer using the +** equivalent of atoi() and store 0 if no such conversion is possible. +** +** A NULL value is not changed by this routine. It remains NULL. +*/ +case OP_ToInt: { /* same as TK_TO_INT, in1 */ + pIn1 = &aMem[pOp->p1]; + if( (pIn1->flags & MEM_Null)==0 ){ + sqlite3VdbeMemIntegerify(pIn1); + } + break; +} + +#if !defined(SQLITE_OMIT_CAST) && !defined(SQLITE_OMIT_FLOATING_POINT) +/* Opcode: ToReal P1 * * * * +** +** Force the value in register P1 to be a floating point number. +** If The value is currently an integer, convert it. +** If the value is text or blob, try to convert it to an integer using the +** equivalent of atoi() and store 0.0 if no such conversion is possible. +** +** A NULL value is not changed by this routine. It remains NULL. +*/ +case OP_ToReal: { /* same as TK_TO_REAL, in1 */ + pIn1 = &aMem[pOp->p1]; + memAboutToChange(p, pIn1); + if( (pIn1->flags & MEM_Null)==0 ){ + sqlite3VdbeMemRealify(pIn1); + } + break; +} +#endif /* !defined(SQLITE_OMIT_CAST) && !defined(SQLITE_OMIT_FLOATING_POINT) */ + +/* Opcode: Lt P1 P2 P3 P4 P5 +** Synopsis: if r[P1]r[P3] goto P2 +** +** This works just like the Lt opcode except that the jump is taken if +** the content of register P3 is greater than the content of +** register P1. See the Lt opcode for additional information. +*/ +/* Opcode: Ge P1 P2 P3 P4 P5 +** Synopsis: if r[P1]>=r[P3] goto P2 +** +** This works just like the Lt opcode except that the jump is taken if +** the content of register P3 is greater than or equal to the content of +** register P1. See the Lt opcode for additional information. +*/ +case OP_Eq: /* same as TK_EQ, jump, in1, in3 */ +case OP_Ne: /* same as TK_NE, jump, in1, in3 */ +case OP_Lt: /* same as TK_LT, jump, in1, in3 */ +case OP_Le: /* same as TK_LE, jump, in1, in3 */ +case OP_Gt: /* same as TK_GT, jump, in1, in3 */ +case OP_Ge: { /* same as TK_GE, jump, in1, in3 */ + int res; /* Result of the comparison of pIn1 against pIn3 */ + char affinity; /* Affinity to use for comparison */ + u16 flags1; /* Copy of initial value of pIn1->flags */ + u16 flags3; /* Copy of initial value of pIn3->flags */ + + pIn1 = &aMem[pOp->p1]; + pIn3 = &aMem[pOp->p3]; + flags1 = pIn1->flags; + flags3 = pIn3->flags; + if( (flags1 | flags3)&MEM_Null ){ + /* One or both operands are NULL */ + if( pOp->p5 & SQLITE_NULLEQ ){ + /* If SQLITE_NULLEQ is set (which will only happen if the operator is + ** OP_Eq or OP_Ne) then take the jump or not depending on whether + ** or not both operands are null. + */ + assert( pOp->opcode==OP_Eq || pOp->opcode==OP_Ne ); + assert( (flags1 & MEM_Cleared)==0 ); + assert( (pOp->p5 & SQLITE_JUMPIFNULL)==0 ); + if( (flags1&MEM_Null)!=0 + && (flags3&MEM_Null)!=0 + && (flags3&MEM_Cleared)==0 + ){ + res = 0; /* Results are equal */ + }else{ + res = 1; /* Results are not equal */ + } + }else{ + /* SQLITE_NULLEQ is clear and at least one operand is NULL, + ** then the result is always NULL. + ** The jump is taken if the SQLITE_JUMPIFNULL bit is set. + */ + if( pOp->p5 & SQLITE_STOREP2 ){ + pOut = &aMem[pOp->p2]; + MemSetTypeFlag(pOut, MEM_Null); + REGISTER_TRACE(pOp->p2, pOut); + }else{ + VdbeBranchTaken(2,3); + if( pOp->p5 & SQLITE_JUMPIFNULL ){ + pc = pOp->p2-1; + } + } + break; + } + }else{ + /* Neither operand is NULL. Do a comparison. */ + affinity = pOp->p5 & SQLITE_AFF_MASK; + if( affinity ){ + applyAffinity(pIn1, affinity, encoding); + applyAffinity(pIn3, affinity, encoding); + if( db->mallocFailed ) goto no_mem; + } + + assert( pOp->p4type==P4_COLLSEQ || pOp->p4.pColl==0 ); + ExpandBlob(pIn1); + ExpandBlob(pIn3); + res = sqlite3MemCompare(pIn3, pIn1, pOp->p4.pColl); + } + switch( pOp->opcode ){ + case OP_Eq: res = res==0; break; + case OP_Ne: res = res!=0; break; + case OP_Lt: res = res<0; break; + case OP_Le: res = res<=0; break; + case OP_Gt: res = res>0; break; + default: res = res>=0; break; + } + + if( pOp->p5 & SQLITE_STOREP2 ){ + pOut = &aMem[pOp->p2]; + memAboutToChange(p, pOut); + MemSetTypeFlag(pOut, MEM_Int); + pOut->u.i = res; + REGISTER_TRACE(pOp->p2, pOut); + }else{ + VdbeBranchTaken(res!=0, (pOp->p5 & SQLITE_NULLEQ)?2:3); + if( res ){ + pc = pOp->p2-1; + } + } + /* Undo any changes made by applyAffinity() to the input registers. */ + pIn1->flags = (pIn1->flags&~MEM_TypeMask) | (flags1&MEM_TypeMask); + pIn3->flags = (pIn3->flags&~MEM_TypeMask) | (flags3&MEM_TypeMask); + break; +} + +/* Opcode: Permutation * * * P4 * +** +** Set the permutation used by the OP_Compare operator to be the array +** of integers in P4. +** +** The permutation is only valid until the next OP_Compare that has +** the OPFLAG_PERMUTE bit set in P5. Typically the OP_Permutation should +** occur immediately prior to the OP_Compare. +*/ +case OP_Permutation: { + assert( pOp->p4type==P4_INTARRAY ); + assert( pOp->p4.ai ); + aPermute = pOp->p4.ai; + break; +} + +/* Opcode: Compare P1 P2 P3 P4 P5 +** Synopsis: r[P1@P3] <-> r[P2@P3] +** +** Compare two vectors of registers in reg(P1)..reg(P1+P3-1) (call this +** vector "A") and in reg(P2)..reg(P2+P3-1) ("B"). Save the result of +** the comparison for use by the next OP_Jump instruct. +** +** If P5 has the OPFLAG_PERMUTE bit set, then the order of comparison is +** determined by the most recent OP_Permutation operator. If the +** OPFLAG_PERMUTE bit is clear, then register are compared in sequential +** order. +** +** P4 is a KeyInfo structure that defines collating sequences and sort +** orders for the comparison. The permutation applies to registers +** only. The KeyInfo elements are used sequentially. +** +** The comparison is a sort comparison, so NULLs compare equal, +** NULLs are less than numbers, numbers are less than strings, +** and strings are less than blobs. +*/ +case OP_Compare: { + int n; + int i; + int p1; + int p2; + const KeyInfo *pKeyInfo; + int idx; + CollSeq *pColl; /* Collating sequence to use on this term */ + int bRev; /* True for DESCENDING sort order */ + + if( (pOp->p5 & OPFLAG_PERMUTE)==0 ) aPermute = 0; + n = pOp->p3; + pKeyInfo = pOp->p4.pKeyInfo; + assert( n>0 ); + assert( pKeyInfo!=0 ); + p1 = pOp->p1; + p2 = pOp->p2; +#if SQLITE_DEBUG + if( aPermute ){ + int k, mx = 0; + for(k=0; kmx ) mx = aPermute[k]; + assert( p1>0 && p1+mx<=(p->nMem-p->nCursor)+1 ); + assert( p2>0 && p2+mx<=(p->nMem-p->nCursor)+1 ); + }else{ + assert( p1>0 && p1+n<=(p->nMem-p->nCursor)+1 ); + assert( p2>0 && p2+n<=(p->nMem-p->nCursor)+1 ); + } +#endif /* SQLITE_DEBUG */ + for(i=0; inField ); + pColl = pKeyInfo->aColl[i]; + bRev = pKeyInfo->aSortOrder[i]; + iCompare = sqlite3MemCompare(&aMem[p1+idx], &aMem[p2+idx], pColl); + if( iCompare ){ + if( bRev ) iCompare = -iCompare; + break; + } + } + aPermute = 0; + break; +} + +/* Opcode: Jump P1 P2 P3 * * +** +** Jump to the instruction at address P1, P2, or P3 depending on whether +** in the most recent OP_Compare instruction the P1 vector was less than +** equal to, or greater than the P2 vector, respectively. +*/ +case OP_Jump: { /* jump */ + if( iCompare<0 ){ + pc = pOp->p1 - 1; VdbeBranchTaken(0,3); + }else if( iCompare==0 ){ + pc = pOp->p2 - 1; VdbeBranchTaken(1,3); + }else{ + pc = pOp->p3 - 1; VdbeBranchTaken(2,3); + } + break; +} + +/* Opcode: And P1 P2 P3 * * +** Synopsis: r[P3]=(r[P1] && r[P2]) +** +** Take the logical AND of the values in registers P1 and P2 and +** write the result into register P3. +** +** If either P1 or P2 is 0 (false) then the result is 0 even if +** the other input is NULL. A NULL and true or two NULLs give +** a NULL output. +*/ +/* Opcode: Or P1 P2 P3 * * +** Synopsis: r[P3]=(r[P1] || r[P2]) +** +** Take the logical OR of the values in register P1 and P2 and +** store the answer in register P3. +** +** If either P1 or P2 is nonzero (true) then the result is 1 (true) +** even if the other input is NULL. A NULL and false or two NULLs +** give a NULL output. +*/ +case OP_And: /* same as TK_AND, in1, in2, out3 */ +case OP_Or: { /* same as TK_OR, in1, in2, out3 */ + int v1; /* Left operand: 0==FALSE, 1==TRUE, 2==UNKNOWN or NULL */ + int v2; /* Right operand: 0==FALSE, 1==TRUE, 2==UNKNOWN or NULL */ + + pIn1 = &aMem[pOp->p1]; + if( pIn1->flags & MEM_Null ){ + v1 = 2; + }else{ + v1 = sqlite3VdbeIntValue(pIn1)!=0; + } + pIn2 = &aMem[pOp->p2]; + if( pIn2->flags & MEM_Null ){ + v2 = 2; + }else{ + v2 = sqlite3VdbeIntValue(pIn2)!=0; + } + if( pOp->opcode==OP_And ){ + static const unsigned char and_logic[] = { 0, 0, 0, 0, 1, 2, 0, 2, 2 }; + v1 = and_logic[v1*3+v2]; + }else{ + static const unsigned char or_logic[] = { 0, 1, 2, 1, 1, 1, 2, 1, 2 }; + v1 = or_logic[v1*3+v2]; + } + pOut = &aMem[pOp->p3]; + if( v1==2 ){ + MemSetTypeFlag(pOut, MEM_Null); + }else{ + pOut->u.i = v1; + MemSetTypeFlag(pOut, MEM_Int); + } + break; +} + +/* Opcode: Not P1 P2 * * * +** Synopsis: r[P2]= !r[P1] +** +** Interpret the value in register P1 as a boolean value. Store the +** boolean complement in register P2. If the value in register P1 is +** NULL, then a NULL is stored in P2. +*/ +case OP_Not: { /* same as TK_NOT, in1, out2 */ + pIn1 = &aMem[pOp->p1]; + pOut = &aMem[pOp->p2]; + if( pIn1->flags & MEM_Null ){ + sqlite3VdbeMemSetNull(pOut); + }else{ + sqlite3VdbeMemSetInt64(pOut, !sqlite3VdbeIntValue(pIn1)); + } + break; +} + +/* Opcode: BitNot P1 P2 * * * +** Synopsis: r[P1]= ~r[P1] +** +** Interpret the content of register P1 as an integer. Store the +** ones-complement of the P1 value into register P2. If P1 holds +** a NULL then store a NULL in P2. +*/ +case OP_BitNot: { /* same as TK_BITNOT, in1, out2 */ + pIn1 = &aMem[pOp->p1]; + pOut = &aMem[pOp->p2]; + if( pIn1->flags & MEM_Null ){ + sqlite3VdbeMemSetNull(pOut); + }else{ + sqlite3VdbeMemSetInt64(pOut, ~sqlite3VdbeIntValue(pIn1)); + } + break; +} + +/* Opcode: Once P1 P2 * * * +** +** Check if OP_Once flag P1 is set. If so, jump to instruction P2. Otherwise, +** set the flag and fall through to the next instruction. In other words, +** this opcode causes all following opcodes up through P2 (but not including +** P2) to run just once and to be skipped on subsequent times through the loop. +*/ +case OP_Once: { /* jump */ + assert( pOp->p1nOnceFlag ); + VdbeBranchTaken(p->aOnceFlag[pOp->p1]!=0, 2); + if( p->aOnceFlag[pOp->p1] ){ + pc = pOp->p2-1; + }else{ + p->aOnceFlag[pOp->p1] = 1; + } + break; +} + +/* Opcode: If P1 P2 P3 * * +** +** Jump to P2 if the value in register P1 is true. The value +** is considered true if it is numeric and non-zero. If the value +** in P1 is NULL then take the jump if P3 is non-zero. +*/ +/* Opcode: IfNot P1 P2 P3 * * +** +** Jump to P2 if the value in register P1 is False. The value +** is considered false if it has a numeric value of zero. If the value +** in P1 is NULL then take the jump if P3 is zero. +*/ +case OP_If: /* jump, in1 */ +case OP_IfNot: { /* jump, in1 */ + int c; + pIn1 = &aMem[pOp->p1]; + if( pIn1->flags & MEM_Null ){ + c = pOp->p3; + }else{ +#ifdef SQLITE_OMIT_FLOATING_POINT + c = sqlite3VdbeIntValue(pIn1)!=0; +#else + c = sqlite3VdbeRealValue(pIn1)!=0.0; +#endif + if( pOp->opcode==OP_IfNot ) c = !c; + } + VdbeBranchTaken(c!=0, 2); + if( c ){ + pc = pOp->p2-1; + } + break; +} + +/* Opcode: IsNull P1 P2 * * * +** Synopsis: if r[P1]==NULL goto P2 +** +** Jump to P2 if the value in register P1 is NULL. +*/ +case OP_IsNull: { /* same as TK_ISNULL, jump, in1 */ + pIn1 = &aMem[pOp->p1]; + VdbeBranchTaken( (pIn1->flags & MEM_Null)!=0, 2); + if( (pIn1->flags & MEM_Null)!=0 ){ + pc = pOp->p2 - 1; + } + break; +} + +/* Opcode: NotNull P1 P2 * * * +** Synopsis: if r[P1]!=NULL goto P2 +** +** Jump to P2 if the value in register P1 is not NULL. +*/ +case OP_NotNull: { /* same as TK_NOTNULL, jump, in1 */ + pIn1 = &aMem[pOp->p1]; + VdbeBranchTaken( (pIn1->flags & MEM_Null)==0, 2); + if( (pIn1->flags & MEM_Null)==0 ){ + pc = pOp->p2 - 1; + } + break; +} + +/* Opcode: Column P1 P2 P3 P4 P5 +** Synopsis: r[P3]=PX +** +** Interpret the data that cursor P1 points to as a structure built using +** the MakeRecord instruction. (See the MakeRecord opcode for additional +** information about the format of the data.) Extract the P2-th column +** from this record. If there are less that (P2+1) +** values in the record, extract a NULL. +** +** The value extracted is stored in register P3. +** +** If the column contains fewer than P2 fields, then extract a NULL. Or, +** if the P4 argument is a P4_MEM use the value of the P4 argument as +** the result. +** +** If the OPFLAG_CLEARCACHE bit is set on P5 and P1 is a pseudo-table cursor, +** then the cache of the cursor is reset prior to extracting the column. +** The first OP_Column against a pseudo-table after the value of the content +** register has changed should have this bit set. +** +** If the OPFLAG_LENGTHARG and OPFLAG_TYPEOFARG bits are set on P5 when +** the result is guaranteed to only be used as the argument of a length() +** or typeof() function, respectively. The loading of large blobs can be +** skipped for length() and all content loading can be skipped for typeof(). +*/ +case OP_Column: { + i64 payloadSize64; /* Number of bytes in the record */ + int p2; /* column number to retrieve */ + VdbeCursor *pC; /* The VDBE cursor */ + BtCursor *pCrsr; /* The BTree cursor */ + u32 *aType; /* aType[i] holds the numeric type of the i-th column */ + u32 *aOffset; /* aOffset[i] is offset to start of data for i-th column */ + int len; /* The length of the serialized data for the column */ + int i; /* Loop counter */ + Mem *pDest; /* Where to write the extracted value */ + Mem sMem; /* For storing the record being decoded */ + const u8 *zData; /* Part of the record being decoded */ + const u8 *zHdr; /* Next unparsed byte of the header */ + const u8 *zEndHdr; /* Pointer to first byte after the header */ + u32 offset; /* Offset into the data */ + u32 szField; /* Number of bytes in the content of a field */ + u32 avail; /* Number of bytes of available data */ + u32 t; /* A type code from the record header */ + Mem *pReg; /* PseudoTable input register */ + + p2 = pOp->p2; + assert( pOp->p3>0 && pOp->p3<=(p->nMem-p->nCursor) ); + pDest = &aMem[pOp->p3]; + memAboutToChange(p, pDest); + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + assert( p2nField ); + aType = pC->aType; + aOffset = aType + pC->nField; +#ifndef SQLITE_OMIT_VIRTUALTABLE + assert( pC->pVtabCursor==0 ); /* OP_Column never called on virtual table */ +#endif + pCrsr = pC->pCursor; + assert( pCrsr!=0 || pC->pseudoTableReg>0 ); /* pCrsr NULL on PseudoTables */ + assert( pCrsr!=0 || pC->nullRow ); /* pC->nullRow on PseudoTables */ + + /* If the cursor cache is stale, bring it up-to-date */ + rc = sqlite3VdbeCursorMoveto(pC); + if( rc ) goto abort_due_to_error; + if( pC->cacheStatus!=p->cacheCtr || (pOp->p5&OPFLAG_CLEARCACHE)!=0 ){ + if( pC->nullRow ){ + if( pCrsr==0 ){ + assert( pC->pseudoTableReg>0 ); + pReg = &aMem[pC->pseudoTableReg]; + assert( pReg->flags & MEM_Blob ); + assert( memIsValid(pReg) ); + pC->payloadSize = pC->szRow = avail = pReg->n; + pC->aRow = (u8*)pReg->z; + }else{ + MemSetTypeFlag(pDest, MEM_Null); + goto op_column_out; + } + }else{ + assert( pCrsr ); + if( pC->isTable==0 ){ + assert( sqlite3BtreeCursorIsValid(pCrsr) ); + VVA_ONLY(rc =) sqlite3BtreeKeySize(pCrsr, &payloadSize64); + assert( rc==SQLITE_OK ); /* True because of CursorMoveto() call above */ + /* sqlite3BtreeParseCellPtr() uses getVarint32() to extract the + ** payload size, so it is impossible for payloadSize64 to be + ** larger than 32 bits. */ + assert( (payloadSize64 & SQLITE_MAX_U32)==(u64)payloadSize64 ); + pC->aRow = sqlite3BtreeKeyFetch(pCrsr, &avail); + pC->payloadSize = (u32)payloadSize64; + }else{ + assert( sqlite3BtreeCursorIsValid(pCrsr) ); + VVA_ONLY(rc =) sqlite3BtreeDataSize(pCrsr, &pC->payloadSize); + assert( rc==SQLITE_OK ); /* DataSize() cannot fail */ + pC->aRow = sqlite3BtreeDataFetch(pCrsr, &avail); + } + assert( avail<=65536 ); /* Maximum page size is 64KiB */ + if( pC->payloadSize <= (u32)avail ){ + pC->szRow = pC->payloadSize; + }else{ + pC->szRow = avail; + } + if( pC->payloadSize > (u32)db->aLimit[SQLITE_LIMIT_LENGTH] ){ + goto too_big; + } + } + pC->cacheStatus = p->cacheCtr; + pC->iHdrOffset = getVarint32(pC->aRow, offset); + pC->nHdrParsed = 0; + aOffset[0] = offset; + if( availaRow does not have to hold the entire row, but it does at least + ** need to cover the header of the record. If pC->aRow does not contain + ** the complete header, then set it to zero, forcing the header to be + ** dynamically allocated. */ + pC->aRow = 0; + pC->szRow = 0; + } + + /* Make sure a corrupt database has not given us an oversize header. + ** Do this now to avoid an oversize memory allocation. + ** + ** Type entries can be between 1 and 5 bytes each. But 4 and 5 byte + ** types use so much data space that there can only be 4096 and 32 of + ** them, respectively. So the maximum header length results from a + ** 3-byte type for each of the maximum of 32768 columns plus three + ** extra bytes for the header length itself. 32768*3 + 3 = 98307. + */ + if( offset > 98307 || offset > pC->payloadSize ){ + rc = SQLITE_CORRUPT_BKPT; + goto op_column_error; + } + } + + /* Make sure at least the first p2+1 entries of the header have been + ** parsed and valid information is in aOffset[] and aType[]. + */ + if( pC->nHdrParsed<=p2 ){ + /* If there is more header available for parsing in the record, try + ** to extract additional fields up through the p2+1-th field + */ + if( pC->iHdrOffsetaRow==0 ){ + memset(&sMem, 0, sizeof(sMem)); + rc = sqlite3VdbeMemFromBtree(pCrsr, 0, aOffset[0], + !pC->isTable, &sMem); + if( rc!=SQLITE_OK ){ + goto op_column_error; + } + zData = (u8*)sMem.z; + }else{ + zData = pC->aRow; + } + + /* Fill in aType[i] and aOffset[i] values through the p2-th field. */ + i = pC->nHdrParsed; + offset = aOffset[i]; + zHdr = zData + pC->iHdrOffset; + zEndHdr = zData + aOffset[0]; + assert( i<=p2 && zHdrnHdrParsed = i; + pC->iHdrOffset = (u32)(zHdr - zData); + if( pC->aRow==0 ){ + sqlite3VdbeMemRelease(&sMem); + sMem.flags = MEM_Null; + } + + /* If we have read more header data than was contained in the header, + ** or if the end of the last field appears to be past the end of the + ** record, or if the end of the last field appears to be before the end + ** of the record (when all fields present), then we must be dealing + ** with a corrupt database. + */ + if( (zHdr > zEndHdr) + || (offset > pC->payloadSize) + || (zHdr==zEndHdr && offset!=pC->payloadSize) + ){ + rc = SQLITE_CORRUPT_BKPT; + goto op_column_error; + } + } + + /* If after trying to extra new entries from the header, nHdrParsed is + ** still not up to p2, that means that the record has fewer than p2 + ** columns. So the result will be either the default value or a NULL. + */ + if( pC->nHdrParsed<=p2 ){ + if( pOp->p4type==P4_MEM ){ + sqlite3VdbeMemShallowCopy(pDest, pOp->p4.pMem, MEM_Static); + }else{ + MemSetTypeFlag(pDest, MEM_Null); + } + goto op_column_out; + } + } + + /* Extract the content for the p2+1-th column. Control can only + ** reach this point if aOffset[p2], aOffset[p2+1], and aType[p2] are + ** all valid. + */ + assert( p2nHdrParsed ); + assert( rc==SQLITE_OK ); + assert( sqlite3VdbeCheckMemInvariants(pDest) ); + if( pC->szRow>=aOffset[p2+1] ){ + /* This is the common case where the desired content fits on the original + ** page - where the content is not on an overflow page */ + VdbeMemRelease(pDest); + sqlite3VdbeSerialGet(pC->aRow+aOffset[p2], aType[p2], pDest); + }else{ + /* This branch happens only when content is on overflow pages */ + t = aType[p2]; + if( ((pOp->p5 & (OPFLAG_LENGTHARG|OPFLAG_TYPEOFARG))!=0 + && ((t>=12 && (t&1)==0) || (pOp->p5 & OPFLAG_TYPEOFARG)!=0)) + || (len = sqlite3VdbeSerialTypeLen(t))==0 + ){ + /* Content is irrelevant for the typeof() function and for + ** the length(X) function if X is a blob. So we might as well use + ** bogus content rather than reading content from disk. NULL works + ** for text and blob and whatever is in the payloadSize64 variable + ** will work for everything else. Content is also irrelevant if + ** the content length is 0. */ + zData = t<=13 ? (u8*)&payloadSize64 : 0; + sMem.zMalloc = 0; + }else{ + memset(&sMem, 0, sizeof(sMem)); + sqlite3VdbeMemMove(&sMem, pDest); + rc = sqlite3VdbeMemFromBtree(pCrsr, aOffset[p2], len, !pC->isTable, + &sMem); + if( rc!=SQLITE_OK ){ + goto op_column_error; + } + zData = (u8*)sMem.z; + } + sqlite3VdbeSerialGet(zData, t, pDest); + /* If we dynamically allocated space to hold the data (in the + ** sqlite3VdbeMemFromBtree() call above) then transfer control of that + ** dynamically allocated space over to the pDest structure. + ** This prevents a memory copy. */ + if( sMem.zMalloc ){ + assert( sMem.z==sMem.zMalloc ); + assert( VdbeMemDynamic(pDest)==0 ); + assert( (pDest->flags & (MEM_Blob|MEM_Str))==0 || pDest->z==sMem.z ); + pDest->flags &= ~(MEM_Ephem|MEM_Static); + pDest->flags |= MEM_Term; + pDest->z = sMem.z; + pDest->zMalloc = sMem.zMalloc; + } + } + pDest->enc = encoding; + +op_column_out: + Deephemeralize(pDest); +op_column_error: + UPDATE_MAX_BLOBSIZE(pDest); + REGISTER_TRACE(pOp->p3, pDest); + break; +} + +/* Opcode: Affinity P1 P2 * P4 * +** Synopsis: affinity(r[P1@P2]) +** +** Apply affinities to a range of P2 registers starting with P1. +** +** P4 is a string that is P2 characters long. The nth character of the +** string indicates the column affinity that should be used for the nth +** memory cell in the range. +*/ +case OP_Affinity: { + const char *zAffinity; /* The affinity to be applied */ + char cAff; /* A single character of affinity */ + + zAffinity = pOp->p4.z; + assert( zAffinity!=0 ); + assert( zAffinity[pOp->p2]==0 ); + pIn1 = &aMem[pOp->p1]; + while( (cAff = *(zAffinity++))!=0 ){ + assert( pIn1 <= &p->aMem[(p->nMem-p->nCursor)] ); + assert( memIsValid(pIn1) ); + applyAffinity(pIn1, cAff, encoding); + pIn1++; + } + break; +} + +/* Opcode: MakeRecord P1 P2 P3 P4 * +** Synopsis: r[P3]=mkrec(r[P1@P2]) +** +** Convert P2 registers beginning with P1 into the [record format] +** use as a data record in a database table or as a key +** in an index. The OP_Column opcode can decode the record later. +** +** P4 may be a string that is P2 characters long. The nth character of the +** string indicates the column affinity that should be used for the nth +** field of the index key. +** +** The mapping from character to affinity is given by the SQLITE_AFF_ +** macros defined in sqliteInt.h. +** +** If P4 is NULL then all index fields have the affinity NONE. +*/ +case OP_MakeRecord: { + u8 *zNewRecord; /* A buffer to hold the data for the new record */ + Mem *pRec; /* The new record */ + u64 nData; /* Number of bytes of data space */ + int nHdr; /* Number of bytes of header space */ + i64 nByte; /* Data space required for this record */ + int nZero; /* Number of zero bytes at the end of the record */ + int nVarint; /* Number of bytes in a varint */ + u32 serial_type; /* Type field */ + Mem *pData0; /* First field to be combined into the record */ + Mem *pLast; /* Last field of the record */ + int nField; /* Number of fields in the record */ + char *zAffinity; /* The affinity string for the record */ + int file_format; /* File format to use for encoding */ + int i; /* Space used in zNewRecord[] header */ + int j; /* Space used in zNewRecord[] content */ + int len; /* Length of a field */ + + /* Assuming the record contains N fields, the record format looks + ** like this: + ** + ** ------------------------------------------------------------------------ + ** | hdr-size | type 0 | type 1 | ... | type N-1 | data0 | ... | data N-1 | + ** ------------------------------------------------------------------------ + ** + ** Data(0) is taken from register P1. Data(1) comes from register P1+1 + ** and so froth. + ** + ** Each type field is a varint representing the serial type of the + ** corresponding data element (see sqlite3VdbeSerialType()). The + ** hdr-size field is also a varint which is the offset from the beginning + ** of the record to data0. + */ + nData = 0; /* Number of bytes of data space */ + nHdr = 0; /* Number of bytes of header space */ + nZero = 0; /* Number of zero bytes at the end of the record */ + nField = pOp->p1; + zAffinity = pOp->p4.z; + assert( nField>0 && pOp->p2>0 && pOp->p2+nField<=(p->nMem-p->nCursor)+1 ); + pData0 = &aMem[nField]; + nField = pOp->p2; + pLast = &pData0[nField-1]; + file_format = p->minWriteFileFormat; + + /* Identify the output register */ + assert( pOp->p3p1 || pOp->p3>=pOp->p1+pOp->p2 ); + pOut = &aMem[pOp->p3]; + memAboutToChange(p, pOut); + + /* Apply the requested affinity to all inputs + */ + assert( pData0<=pLast ); + if( zAffinity ){ + pRec = pData0; + do{ + applyAffinity(pRec++, *(zAffinity++), encoding); + assert( zAffinity[0]==0 || pRec<=pLast ); + }while( zAffinity[0] ); + } + + /* Loop through the elements that will make up the record to figure + ** out how much space is required for the new record. + */ + pRec = pLast; + do{ + assert( memIsValid(pRec) ); + serial_type = sqlite3VdbeSerialType(pRec, file_format); + len = sqlite3VdbeSerialTypeLen(serial_type); + if( pRec->flags & MEM_Zero ){ + if( nData ){ + sqlite3VdbeMemExpandBlob(pRec); + }else{ + nZero += pRec->u.nZero; + len -= pRec->u.nZero; + } + } + nData += len; + testcase( serial_type==127 ); + testcase( serial_type==128 ); + nHdr += serial_type<=127 ? 1 : sqlite3VarintLen(serial_type); + }while( (--pRec)>=pData0 ); + + /* Add the initial header varint and total the size */ + testcase( nHdr==126 ); + testcase( nHdr==127 ); + if( nHdr<=126 ){ + /* The common case */ + nHdr += 1; + }else{ + /* Rare case of a really large header */ + nVarint = sqlite3VarintLen(nHdr); + nHdr += nVarint; + if( nVarintdb->aLimit[SQLITE_LIMIT_LENGTH] ){ + goto too_big; + } + + /* Make sure the output register has a buffer large enough to store + ** the new record. The output register (pOp->p3) is not allowed to + ** be one of the input registers (because the following call to + ** sqlite3VdbeMemGrow() could clobber the value before it is used). + */ + if( sqlite3VdbeMemGrow(pOut, (int)nByte, 0) ){ + goto no_mem; + } + zNewRecord = (u8 *)pOut->z; + + /* Write the record */ + i = putVarint32(zNewRecord, nHdr); + j = nHdr; + assert( pData0<=pLast ); + pRec = pData0; + do{ + serial_type = sqlite3VdbeSerialType(pRec, file_format); + i += putVarint32(&zNewRecord[i], serial_type); /* serial type */ + j += sqlite3VdbeSerialPut(&zNewRecord[j], pRec, serial_type); /* content */ + }while( (++pRec)<=pLast ); + assert( i==nHdr ); + assert( j==nByte ); + + assert( pOp->p3>0 && pOp->p3<=(p->nMem-p->nCursor) ); + pOut->n = (int)nByte; + pOut->flags = MEM_Blob; + pOut->xDel = 0; + if( nZero ){ + pOut->u.nZero = nZero; + pOut->flags |= MEM_Zero; + } + pOut->enc = SQLITE_UTF8; /* In case the blob is ever converted to text */ + REGISTER_TRACE(pOp->p3, pOut); + UPDATE_MAX_BLOBSIZE(pOut); + break; +} + +/* Opcode: Count P1 P2 * * * +** Synopsis: r[P2]=count() +** +** Store the number of entries (an integer value) in the table or index +** opened by cursor P1 in register P2 +*/ +#ifndef SQLITE_OMIT_BTREECOUNT +case OP_Count: { /* out2-prerelease */ + i64 nEntry; + BtCursor *pCrsr; + + pCrsr = p->apCsr[pOp->p1]->pCursor; + assert( pCrsr ); + nEntry = 0; /* Not needed. Only used to silence a warning. */ + rc = sqlite3BtreeCount(pCrsr, &nEntry); + pOut->u.i = nEntry; + break; +} +#endif + +/* Opcode: Savepoint P1 * * P4 * +** +** Open, release or rollback the savepoint named by parameter P4, depending +** on the value of P1. To open a new savepoint, P1==0. To release (commit) an +** existing savepoint, P1==1, or to rollback an existing savepoint P1==2. +*/ +case OP_Savepoint: { + int p1; /* Value of P1 operand */ + char *zName; /* Name of savepoint */ + int nName; + Savepoint *pNew; + Savepoint *pSavepoint; + Savepoint *pTmp; + int iSavepoint; + int ii; + + p1 = pOp->p1; + zName = pOp->p4.z; + + /* Assert that the p1 parameter is valid. Also that if there is no open + ** transaction, then there cannot be any savepoints. + */ + assert( db->pSavepoint==0 || db->autoCommit==0 ); + assert( p1==SAVEPOINT_BEGIN||p1==SAVEPOINT_RELEASE||p1==SAVEPOINT_ROLLBACK ); + assert( db->pSavepoint || db->isTransactionSavepoint==0 ); + assert( checkSavepointCount(db) ); + assert( p->bIsReader ); + + if( p1==SAVEPOINT_BEGIN ){ + if( db->nVdbeWrite>0 ){ + /* A new savepoint cannot be created if there are active write + ** statements (i.e. open read/write incremental blob handles). + */ + sqlite3SetString(&p->zErrMsg, db, "cannot open savepoint - " + "SQL statements in progress"); + rc = SQLITE_BUSY; + }else{ + nName = sqlite3Strlen30(zName); + +#ifndef SQLITE_OMIT_VIRTUALTABLE + /* This call is Ok even if this savepoint is actually a transaction + ** savepoint (and therefore should not prompt xSavepoint()) callbacks. + ** If this is a transaction savepoint being opened, it is guaranteed + ** that the db->aVTrans[] array is empty. */ + assert( db->autoCommit==0 || db->nVTrans==0 ); + rc = sqlite3VtabSavepoint(db, SAVEPOINT_BEGIN, + db->nStatement+db->nSavepoint); + if( rc!=SQLITE_OK ) goto abort_due_to_error; +#endif + + /* Create a new savepoint structure. */ + pNew = sqlite3DbMallocRaw(db, sizeof(Savepoint)+nName+1); + if( pNew ){ + pNew->zName = (char *)&pNew[1]; + memcpy(pNew->zName, zName, nName+1); + + /* If there is no open transaction, then mark this as a special + ** "transaction savepoint". */ + if( db->autoCommit ){ + db->autoCommit = 0; + db->isTransactionSavepoint = 1; + }else{ + db->nSavepoint++; + } + + /* Link the new savepoint into the database handle's list. */ + pNew->pNext = db->pSavepoint; + db->pSavepoint = pNew; + pNew->nDeferredCons = db->nDeferredCons; + pNew->nDeferredImmCons = db->nDeferredImmCons; + } + } + }else{ + iSavepoint = 0; + + /* Find the named savepoint. If there is no such savepoint, then an + ** an error is returned to the user. */ + for( + pSavepoint = db->pSavepoint; + pSavepoint && sqlite3StrICmp(pSavepoint->zName, zName); + pSavepoint = pSavepoint->pNext + ){ + iSavepoint++; + } + if( !pSavepoint ){ + sqlite3SetString(&p->zErrMsg, db, "no such savepoint: %s", zName); + rc = SQLITE_ERROR; + }else if( db->nVdbeWrite>0 && p1==SAVEPOINT_RELEASE ){ + /* It is not possible to release (commit) a savepoint if there are + ** active write statements. + */ + sqlite3SetString(&p->zErrMsg, db, + "cannot release savepoint - SQL statements in progress" + ); + rc = SQLITE_BUSY; + }else{ + + /* Determine whether or not this is a transaction savepoint. If so, + ** and this is a RELEASE command, then the current transaction + ** is committed. + */ + int isTransaction = pSavepoint->pNext==0 && db->isTransactionSavepoint; + if( isTransaction && p1==SAVEPOINT_RELEASE ){ + if( (rc = sqlite3VdbeCheckFk(p, 1))!=SQLITE_OK ){ + goto vdbe_return; + } + db->autoCommit = 1; + if( sqlite3VdbeHalt(p)==SQLITE_BUSY ){ + p->pc = pc; + db->autoCommit = 0; + p->rc = rc = SQLITE_BUSY; + goto vdbe_return; + } + db->isTransactionSavepoint = 0; + rc = p->rc; + }else{ + iSavepoint = db->nSavepoint - iSavepoint - 1; + if( p1==SAVEPOINT_ROLLBACK ){ + for(ii=0; iinDb; ii++){ + sqlite3BtreeTripAllCursors(db->aDb[ii].pBt, SQLITE_ABORT); + } + } + for(ii=0; iinDb; ii++){ + rc = sqlite3BtreeSavepoint(db->aDb[ii].pBt, p1, iSavepoint); + if( rc!=SQLITE_OK ){ + goto abort_due_to_error; + } + } + if( p1==SAVEPOINT_ROLLBACK && (db->flags&SQLITE_InternChanges)!=0 ){ + sqlite3ExpirePreparedStatements(db); + sqlite3ResetAllSchemasOfConnection(db); + db->flags = (db->flags | SQLITE_InternChanges); + } + } + + /* Regardless of whether this is a RELEASE or ROLLBACK, destroy all + ** savepoints nested inside of the savepoint being operated on. */ + while( db->pSavepoint!=pSavepoint ){ + pTmp = db->pSavepoint; + db->pSavepoint = pTmp->pNext; + sqlite3DbFree(db, pTmp); + db->nSavepoint--; + } + + /* If it is a RELEASE, then destroy the savepoint being operated on + ** too. If it is a ROLLBACK TO, then set the number of deferred + ** constraint violations present in the database to the value stored + ** when the savepoint was created. */ + if( p1==SAVEPOINT_RELEASE ){ + assert( pSavepoint==db->pSavepoint ); + db->pSavepoint = pSavepoint->pNext; + sqlite3DbFree(db, pSavepoint); + if( !isTransaction ){ + db->nSavepoint--; + } + }else{ + db->nDeferredCons = pSavepoint->nDeferredCons; + db->nDeferredImmCons = pSavepoint->nDeferredImmCons; + } + + if( !isTransaction ){ + rc = sqlite3VtabSavepoint(db, p1, iSavepoint); + if( rc!=SQLITE_OK ) goto abort_due_to_error; + } + } + } + + break; +} + +/* Opcode: AutoCommit P1 P2 * * * +** +** Set the database auto-commit flag to P1 (1 or 0). If P2 is true, roll +** back any currently active btree transactions. If there are any active +** VMs (apart from this one), then a ROLLBACK fails. A COMMIT fails if +** there are active writing VMs or active VMs that use shared cache. +** +** This instruction causes the VM to halt. +*/ +case OP_AutoCommit: { + int desiredAutoCommit; + int iRollback; + int turnOnAC; + + desiredAutoCommit = pOp->p1; + iRollback = pOp->p2; + turnOnAC = desiredAutoCommit && !db->autoCommit; + assert( desiredAutoCommit==1 || desiredAutoCommit==0 ); + assert( desiredAutoCommit==1 || iRollback==0 ); + assert( db->nVdbeActive>0 ); /* At least this one VM is active */ + assert( p->bIsReader ); + +#if 0 + if( turnOnAC && iRollback && db->nVdbeActive>1 ){ + /* If this instruction implements a ROLLBACK and other VMs are + ** still running, and a transaction is active, return an error indicating + ** that the other VMs must complete first. + */ + sqlite3SetString(&p->zErrMsg, db, "cannot rollback transaction - " + "SQL statements in progress"); + rc = SQLITE_BUSY; + }else +#endif + if( turnOnAC && !iRollback && db->nVdbeWrite>0 ){ + /* If this instruction implements a COMMIT and other VMs are writing + ** return an error indicating that the other VMs must complete first. + */ + sqlite3SetString(&p->zErrMsg, db, "cannot commit transaction - " + "SQL statements in progress"); + rc = SQLITE_BUSY; + }else if( desiredAutoCommit!=db->autoCommit ){ + if( iRollback ){ + assert( desiredAutoCommit==1 ); + sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); + db->autoCommit = 1; + }else if( (rc = sqlite3VdbeCheckFk(p, 1))!=SQLITE_OK ){ + goto vdbe_return; + }else{ + db->autoCommit = (u8)desiredAutoCommit; + if( sqlite3VdbeHalt(p)==SQLITE_BUSY ){ + p->pc = pc; + db->autoCommit = (u8)(1-desiredAutoCommit); + p->rc = rc = SQLITE_BUSY; + goto vdbe_return; + } + } + assert( db->nStatement==0 ); + sqlite3CloseSavepoints(db); + if( p->rc==SQLITE_OK ){ + rc = SQLITE_DONE; + }else{ + rc = SQLITE_ERROR; + } + goto vdbe_return; + }else{ + sqlite3SetString(&p->zErrMsg, db, + (!desiredAutoCommit)?"cannot start a transaction within a transaction":( + (iRollback)?"cannot rollback - no transaction is active": + "cannot commit - no transaction is active")); + + rc = SQLITE_ERROR; + } + break; +} + +/* Opcode: Transaction P1 P2 P3 P4 P5 +** +** Begin a transaction on database P1 if a transaction is not already +** active. +** If P2 is non-zero, then a write-transaction is started, or if a +** read-transaction is already active, it is upgraded to a write-transaction. +** If P2 is zero, then a read-transaction is started. +** +** P1 is the index of the database file on which the transaction is +** started. Index 0 is the main database file and index 1 is the +** file used for temporary tables. Indices of 2 or more are used for +** attached databases. +** +** If a write-transaction is started and the Vdbe.usesStmtJournal flag is +** true (this flag is set if the Vdbe may modify more than one row and may +** throw an ABORT exception), a statement transaction may also be opened. +** More specifically, a statement transaction is opened iff the database +** connection is currently not in autocommit mode, or if there are other +** active statements. A statement transaction allows the changes made by this +** VDBE to be rolled back after an error without having to roll back the +** entire transaction. If no error is encountered, the statement transaction +** will automatically commit when the VDBE halts. +** +** If P5!=0 then this opcode also checks the schema cookie against P3 +** and the schema generation counter against P4. +** The cookie changes its value whenever the database schema changes. +** This operation is used to detect when that the cookie has changed +** and that the current process needs to reread the schema. If the schema +** cookie in P3 differs from the schema cookie in the database header or +** if the schema generation counter in P4 differs from the current +** generation counter, then an SQLITE_SCHEMA error is raised and execution +** halts. The sqlite3_step() wrapper function might then reprepare the +** statement and rerun it from the beginning. +*/ +case OP_Transaction: { + Btree *pBt; + int iMeta; + int iGen; + + assert( p->bIsReader ); + assert( p->readOnly==0 || pOp->p2==0 ); + assert( pOp->p1>=0 && pOp->p1nDb ); + assert( (p->btreeMask & (((yDbMask)1)<p1))!=0 ); + if( pOp->p2 && (db->flags & SQLITE_QueryOnly)!=0 ){ + rc = SQLITE_READONLY; + goto abort_due_to_error; + } + pBt = db->aDb[pOp->p1].pBt; + + if( pBt ){ + rc = sqlite3BtreeBeginTrans(pBt, pOp->p2); + if( rc==SQLITE_BUSY ){ + p->pc = pc; + p->rc = rc = SQLITE_BUSY; + goto vdbe_return; + } + if( rc!=SQLITE_OK ){ + goto abort_due_to_error; + } + + if( pOp->p2 && p->usesStmtJournal + && (db->autoCommit==0 || db->nVdbeRead>1) + ){ + assert( sqlite3BtreeIsInTrans(pBt) ); + if( p->iStatement==0 ){ + assert( db->nStatement>=0 && db->nSavepoint>=0 ); + db->nStatement++; + p->iStatement = db->nSavepoint + db->nStatement; + } + + rc = sqlite3VtabSavepoint(db, SAVEPOINT_BEGIN, p->iStatement-1); + if( rc==SQLITE_OK ){ + rc = sqlite3BtreeBeginStmt(pBt, p->iStatement); + } + + /* Store the current value of the database handles deferred constraint + ** counter. If the statement transaction needs to be rolled back, + ** the value of this counter needs to be restored too. */ + p->nStmtDefCons = db->nDeferredCons; + p->nStmtDefImmCons = db->nDeferredImmCons; + } + + /* Gather the schema version number for checking */ + sqlite3BtreeGetMeta(pBt, BTREE_SCHEMA_VERSION, (u32 *)&iMeta); + iGen = db->aDb[pOp->p1].pSchema->iGeneration; + }else{ + iGen = iMeta = 0; + } + assert( pOp->p5==0 || pOp->p4type==P4_INT32 ); + if( pOp->p5 && (iMeta!=pOp->p3 || iGen!=pOp->p4.i) ){ + sqlite3DbFree(db, p->zErrMsg); + p->zErrMsg = sqlite3DbStrDup(db, "database schema has changed"); + /* If the schema-cookie from the database file matches the cookie + ** stored with the in-memory representation of the schema, do + ** not reload the schema from the database file. + ** + ** If virtual-tables are in use, this is not just an optimization. + ** Often, v-tables store their data in other SQLite tables, which + ** are queried from within xNext() and other v-table methods using + ** prepared queries. If such a query is out-of-date, we do not want to + ** discard the database schema, as the user code implementing the + ** v-table would have to be ready for the sqlite3_vtab structure itself + ** to be invalidated whenever sqlite3_step() is called from within + ** a v-table method. + */ + if( db->aDb[pOp->p1].pSchema->schema_cookie!=iMeta ){ + sqlite3ResetOneSchema(db, pOp->p1); + } + p->expired = 1; + rc = SQLITE_SCHEMA; + } + break; +} + +/* Opcode: ReadCookie P1 P2 P3 * * +** +** Read cookie number P3 from database P1 and write it into register P2. +** P3==1 is the schema version. P3==2 is the database format. +** P3==3 is the recommended pager cache size, and so forth. P1==0 is +** the main database file and P1==1 is the database file used to store +** temporary tables. +** +** There must be a read-lock on the database (either a transaction +** must be started or there must be an open cursor) before +** executing this instruction. +*/ +case OP_ReadCookie: { /* out2-prerelease */ + int iMeta; + int iDb; + int iCookie; + + assert( p->bIsReader ); + iDb = pOp->p1; + iCookie = pOp->p3; + assert( pOp->p3=0 && iDbnDb ); + assert( db->aDb[iDb].pBt!=0 ); + assert( (p->btreeMask & (((yDbMask)1)<aDb[iDb].pBt, iCookie, (u32 *)&iMeta); + pOut->u.i = iMeta; + break; +} + +/* Opcode: SetCookie P1 P2 P3 * * +** +** Write the content of register P3 (interpreted as an integer) +** into cookie number P2 of database P1. P2==1 is the schema version. +** P2==2 is the database format. P2==3 is the recommended pager cache +** size, and so forth. P1==0 is the main database file and P1==1 is the +** database file used to store temporary tables. +** +** A transaction must be started before executing this opcode. +*/ +case OP_SetCookie: { /* in3 */ + Db *pDb; + assert( pOp->p2p1>=0 && pOp->p1nDb ); + assert( (p->btreeMask & (((yDbMask)1)<p1))!=0 ); + assert( p->readOnly==0 ); + pDb = &db->aDb[pOp->p1]; + assert( pDb->pBt!=0 ); + assert( sqlite3SchemaMutexHeld(db, pOp->p1, 0) ); + pIn3 = &aMem[pOp->p3]; + sqlite3VdbeMemIntegerify(pIn3); + /* See note about index shifting on OP_ReadCookie */ + rc = sqlite3BtreeUpdateMeta(pDb->pBt, pOp->p2, (int)pIn3->u.i); + if( pOp->p2==BTREE_SCHEMA_VERSION ){ + /* When the schema cookie changes, record the new cookie internally */ + pDb->pSchema->schema_cookie = (int)pIn3->u.i; + db->flags |= SQLITE_InternChanges; + }else if( pOp->p2==BTREE_FILE_FORMAT ){ + /* Record changes in the file format */ + pDb->pSchema->file_format = (u8)pIn3->u.i; + } + if( pOp->p1==1 ){ + /* Invalidate all prepared statements whenever the TEMP database + ** schema is changed. Ticket #1644 */ + sqlite3ExpirePreparedStatements(db); + p->expired = 0; + } + break; +} + +/* Opcode: OpenRead P1 P2 P3 P4 P5 +** Synopsis: root=P2 iDb=P3 +** +** Open a read-only cursor for the database table whose root page is +** P2 in a database file. The database file is determined by P3. +** P3==0 means the main database, P3==1 means the database used for +** temporary tables, and P3>1 means used the corresponding attached +** database. Give the new cursor an identifier of P1. The P1 +** values need not be contiguous but all P1 values should be small integers. +** It is an error for P1 to be negative. +** +** If P5!=0 then use the content of register P2 as the root page, not +** the value of P2 itself. +** +** There will be a read lock on the database whenever there is an +** open cursor. If the database was unlocked prior to this instruction +** then a read lock is acquired as part of this instruction. A read +** lock allows other processes to read the database but prohibits +** any other process from modifying the database. The read lock is +** released when all cursors are closed. If this instruction attempts +** to get a read lock but fails, the script terminates with an +** SQLITE_BUSY error code. +** +** The P4 value may be either an integer (P4_INT32) or a pointer to +** a KeyInfo structure (P4_KEYINFO). If it is a pointer to a KeyInfo +** structure, then said structure defines the content and collating +** sequence of the index being opened. Otherwise, if P4 is an integer +** value, it is set to the number of columns in the table. +** +** See also OpenWrite. +*/ +/* Opcode: OpenWrite P1 P2 P3 P4 P5 +** Synopsis: root=P2 iDb=P3 +** +** Open a read/write cursor named P1 on the table or index whose root +** page is P2. Or if P5!=0 use the content of register P2 to find the +** root page. +** +** The P4 value may be either an integer (P4_INT32) or a pointer to +** a KeyInfo structure (P4_KEYINFO). If it is a pointer to a KeyInfo +** structure, then said structure defines the content and collating +** sequence of the index being opened. Otherwise, if P4 is an integer +** value, it is set to the number of columns in the table, or to the +** largest index of any column of the table that is actually used. +** +** This instruction works just like OpenRead except that it opens the cursor +** in read/write mode. For a given table, there can be one or more read-only +** cursors or a single read/write cursor but not both. +** +** See also OpenRead. +*/ +case OP_OpenRead: +case OP_OpenWrite: { + int nField; + KeyInfo *pKeyInfo; + int p2; + int iDb; + int wrFlag; + Btree *pX; + VdbeCursor *pCur; + Db *pDb; + + assert( (pOp->p5&(OPFLAG_P2ISREG|OPFLAG_BULKCSR))==pOp->p5 ); + assert( pOp->opcode==OP_OpenWrite || pOp->p5==0 ); + assert( p->bIsReader ); + assert( pOp->opcode==OP_OpenRead || p->readOnly==0 ); + + if( p->expired ){ + rc = SQLITE_ABORT; + break; + } + + nField = 0; + pKeyInfo = 0; + p2 = pOp->p2; + iDb = pOp->p3; + assert( iDb>=0 && iDbnDb ); + assert( (p->btreeMask & (((yDbMask)1)<aDb[iDb]; + pX = pDb->pBt; + assert( pX!=0 ); + if( pOp->opcode==OP_OpenWrite ){ + wrFlag = 1; + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + if( pDb->pSchema->file_format < p->minWriteFileFormat ){ + p->minWriteFileFormat = pDb->pSchema->file_format; + } + }else{ + wrFlag = 0; + } + if( pOp->p5 & OPFLAG_P2ISREG ){ + assert( p2>0 ); + assert( p2<=(p->nMem-p->nCursor) ); + pIn2 = &aMem[p2]; + assert( memIsValid(pIn2) ); + assert( (pIn2->flags & MEM_Int)!=0 ); + sqlite3VdbeMemIntegerify(pIn2); + p2 = (int)pIn2->u.i; + /* The p2 value always comes from a prior OP_CreateTable opcode and + ** that opcode will always set the p2 value to 2 or more or else fail. + ** If there were a failure, the prepared statement would have halted + ** before reaching this instruction. */ + if( NEVER(p2<2) ) { + rc = SQLITE_CORRUPT_BKPT; + goto abort_due_to_error; + } + } + if( pOp->p4type==P4_KEYINFO ){ + pKeyInfo = pOp->p4.pKeyInfo; + assert( pKeyInfo->enc==ENC(db) ); + assert( pKeyInfo->db==db ); + nField = pKeyInfo->nField+pKeyInfo->nXField; + }else if( pOp->p4type==P4_INT32 ){ + nField = pOp->p4.i; + } + assert( pOp->p1>=0 ); + assert( nField>=0 ); + testcase( nField==0 ); /* Table with INTEGER PRIMARY KEY and nothing else */ + pCur = allocateCursor(p, pOp->p1, nField, iDb, 1); + if( pCur==0 ) goto no_mem; + pCur->nullRow = 1; + pCur->isOrdered = 1; + rc = sqlite3BtreeCursor(pX, p2, wrFlag, pKeyInfo, pCur->pCursor); + pCur->pKeyInfo = pKeyInfo; + assert( OPFLAG_BULKCSR==BTREE_BULKLOAD ); + sqlite3BtreeCursorHints(pCur->pCursor, (pOp->p5 & OPFLAG_BULKCSR)); + + /* Since it performs no memory allocation or IO, the only value that + ** sqlite3BtreeCursor() may return is SQLITE_OK. */ + assert( rc==SQLITE_OK ); + + /* Set the VdbeCursor.isTable variable. Previous versions of + ** SQLite used to check if the root-page flags were sane at this point + ** and report database corruption if they were not, but this check has + ** since moved into the btree layer. */ + pCur->isTable = pOp->p4type!=P4_KEYINFO; + break; +} + +/* Opcode: OpenEphemeral P1 P2 * P4 P5 +** Synopsis: nColumn=P2 +** +** Open a new cursor P1 to a transient table. +** The cursor is always opened read/write even if +** the main database is read-only. The ephemeral +** table is deleted automatically when the cursor is closed. +** +** P2 is the number of columns in the ephemeral table. +** The cursor points to a BTree table if P4==0 and to a BTree index +** if P4 is not 0. If P4 is not NULL, it points to a KeyInfo structure +** that defines the format of keys in the index. +** +** The P5 parameter can be a mask of the BTREE_* flags defined +** in btree.h. These flags control aspects of the operation of +** the btree. The BTREE_OMIT_JOURNAL and BTREE_SINGLE flags are +** added automatically. +*/ +/* Opcode: OpenAutoindex P1 P2 * P4 * +** Synopsis: nColumn=P2 +** +** This opcode works the same as OP_OpenEphemeral. It has a +** different name to distinguish its use. Tables created using +** by this opcode will be used for automatically created transient +** indices in joins. +*/ +case OP_OpenAutoindex: +case OP_OpenEphemeral: { + VdbeCursor *pCx; + KeyInfo *pKeyInfo; + + static const int vfsFlags = + SQLITE_OPEN_READWRITE | + SQLITE_OPEN_CREATE | + SQLITE_OPEN_EXCLUSIVE | + SQLITE_OPEN_DELETEONCLOSE | + SQLITE_OPEN_TRANSIENT_DB; + assert( pOp->p1>=0 ); + assert( pOp->p2>=0 ); + pCx = allocateCursor(p, pOp->p1, pOp->p2, -1, 1); + if( pCx==0 ) goto no_mem; + pCx->nullRow = 1; + pCx->isEphemeral = 1; + rc = sqlite3BtreeOpen(db->pVfs, 0, db, &pCx->pBt, + BTREE_OMIT_JOURNAL | BTREE_SINGLE | pOp->p5, vfsFlags); + if( rc==SQLITE_OK ){ + rc = sqlite3BtreeBeginTrans(pCx->pBt, 1); + } + if( rc==SQLITE_OK ){ + /* If a transient index is required, create it by calling + ** sqlite3BtreeCreateTable() with the BTREE_BLOBKEY flag before + ** opening it. If a transient table is required, just use the + ** automatically created table with root-page 1 (an BLOB_INTKEY table). + */ + if( (pKeyInfo = pOp->p4.pKeyInfo)!=0 ){ + int pgno; + assert( pOp->p4type==P4_KEYINFO ); + rc = sqlite3BtreeCreateTable(pCx->pBt, &pgno, BTREE_BLOBKEY | pOp->p5); + if( rc==SQLITE_OK ){ + assert( pgno==MASTER_ROOT+1 ); + assert( pKeyInfo->db==db ); + assert( pKeyInfo->enc==ENC(db) ); + pCx->pKeyInfo = pKeyInfo; + rc = sqlite3BtreeCursor(pCx->pBt, pgno, 1, pKeyInfo, pCx->pCursor); + } + pCx->isTable = 0; + }else{ + rc = sqlite3BtreeCursor(pCx->pBt, MASTER_ROOT, 1, 0, pCx->pCursor); + pCx->isTable = 1; + } + } + pCx->isOrdered = (pOp->p5!=BTREE_UNORDERED); + break; +} + +/* Opcode: SorterOpen P1 P2 * P4 * +** +** This opcode works like OP_OpenEphemeral except that it opens +** a transient index that is specifically designed to sort large +** tables using an external merge-sort algorithm. +*/ +case OP_SorterOpen: { + VdbeCursor *pCx; + + assert( pOp->p1>=0 ); + assert( pOp->p2>=0 ); + pCx = allocateCursor(p, pOp->p1, pOp->p2, -1, 1); + if( pCx==0 ) goto no_mem; + pCx->pKeyInfo = pOp->p4.pKeyInfo; + assert( pCx->pKeyInfo->db==db ); + assert( pCx->pKeyInfo->enc==ENC(db) ); + rc = sqlite3VdbeSorterInit(db, pCx); + break; +} + +/* Opcode: OpenPseudo P1 P2 P3 * * +** Synopsis: P3 columns in r[P2] +** +** Open a new cursor that points to a fake table that contains a single +** row of data. The content of that one row is the content of memory +** register P2. In other words, cursor P1 becomes an alias for the +** MEM_Blob content contained in register P2. +** +** A pseudo-table created by this opcode is used to hold a single +** row output from the sorter so that the row can be decomposed into +** individual columns using the OP_Column opcode. The OP_Column opcode +** is the only cursor opcode that works with a pseudo-table. +** +** P3 is the number of fields in the records that will be stored by +** the pseudo-table. +*/ +case OP_OpenPseudo: { + VdbeCursor *pCx; + + assert( pOp->p1>=0 ); + assert( pOp->p3>=0 ); + pCx = allocateCursor(p, pOp->p1, pOp->p3, -1, 0); + if( pCx==0 ) goto no_mem; + pCx->nullRow = 1; + pCx->pseudoTableReg = pOp->p2; + pCx->isTable = 1; + assert( pOp->p5==0 ); + break; +} + +/* Opcode: Close P1 * * * * +** +** Close a cursor previously opened as P1. If P1 is not +** currently open, this instruction is a no-op. +*/ +case OP_Close: { + assert( pOp->p1>=0 && pOp->p1nCursor ); + sqlite3VdbeFreeCursor(p, p->apCsr[pOp->p1]); + p->apCsr[pOp->p1] = 0; + break; +} + +/* Opcode: SeekGe P1 P2 P3 P4 * +** Synopsis: key=r[P3@P4] +** +** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), +** use the value in register P3 as the key. If cursor P1 refers +** to an SQL index, then P3 is the first in an array of P4 registers +** that are used as an unpacked index key. +** +** Reposition cursor P1 so that it points to the smallest entry that +** is greater than or equal to the key value. If there are no records +** greater than or equal to the key and P2 is not zero, then jump to P2. +** +** See also: Found, NotFound, SeekLt, SeekGt, SeekLe +*/ +/* Opcode: SeekGt P1 P2 P3 P4 * +** Synopsis: key=r[P3@P4] +** +** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), +** use the value in register P3 as a key. If cursor P1 refers +** to an SQL index, then P3 is the first in an array of P4 registers +** that are used as an unpacked index key. +** +** Reposition cursor P1 so that it points to the smallest entry that +** is greater than the key value. If there are no records greater than +** the key and P2 is not zero, then jump to P2. +** +** See also: Found, NotFound, SeekLt, SeekGe, SeekLe +*/ +/* Opcode: SeekLt P1 P2 P3 P4 * +** Synopsis: key=r[P3@P4] +** +** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), +** use the value in register P3 as a key. If cursor P1 refers +** to an SQL index, then P3 is the first in an array of P4 registers +** that are used as an unpacked index key. +** +** Reposition cursor P1 so that it points to the largest entry that +** is less than the key value. If there are no records less than +** the key and P2 is not zero, then jump to P2. +** +** See also: Found, NotFound, SeekGt, SeekGe, SeekLe +*/ +/* Opcode: SeekLe P1 P2 P3 P4 * +** Synopsis: key=r[P3@P4] +** +** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), +** use the value in register P3 as a key. If cursor P1 refers +** to an SQL index, then P3 is the first in an array of P4 registers +** that are used as an unpacked index key. +** +** Reposition cursor P1 so that it points to the largest entry that +** is less than or equal to the key value. If there are no records +** less than or equal to the key and P2 is not zero, then jump to P2. +** +** See also: Found, NotFound, SeekGt, SeekGe, SeekLt +*/ +case OP_SeekLT: /* jump, in3 */ +case OP_SeekLE: /* jump, in3 */ +case OP_SeekGE: /* jump, in3 */ +case OP_SeekGT: { /* jump, in3 */ + int res; + int oc; + VdbeCursor *pC; + UnpackedRecord r; + int nField; + i64 iKey; /* The rowid we are to seek to */ + + assert( pOp->p1>=0 && pOp->p1nCursor ); + assert( pOp->p2!=0 ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + assert( pC->pseudoTableReg==0 ); + assert( OP_SeekLE == OP_SeekLT+1 ); + assert( OP_SeekGE == OP_SeekLT+2 ); + assert( OP_SeekGT == OP_SeekLT+3 ); + assert( pC->isOrdered ); + assert( pC->pCursor!=0 ); + oc = pOp->opcode; + pC->nullRow = 0; + if( pC->isTable ){ + /* The input value in P3 might be of any type: integer, real, string, + ** blob, or NULL. But it needs to be an integer before we can do + ** the seek, so covert it. */ + pIn3 = &aMem[pOp->p3]; + applyNumericAffinity(pIn3); + iKey = sqlite3VdbeIntValue(pIn3); + pC->rowidIsValid = 0; + + /* If the P3 value could not be converted into an integer without + ** loss of information, then special processing is required... */ + if( (pIn3->flags & MEM_Int)==0 ){ + if( (pIn3->flags & MEM_Real)==0 ){ + /* If the P3 value cannot be converted into any kind of a number, + ** then the seek is not possible, so jump to P2 */ + pc = pOp->p2 - 1; VdbeBranchTaken(1,2); + break; + } + + /* If the approximation iKey is larger than the actual real search + ** term, substitute >= for > and < for <=. e.g. if the search term + ** is 4.9 and the integer approximation 5: + ** + ** (x > 4.9) -> (x >= 5) + ** (x <= 4.9) -> (x < 5) + */ + if( pIn3->r<(double)iKey ){ + assert( OP_SeekGE==(OP_SeekGT-1) ); + assert( OP_SeekLT==(OP_SeekLE-1) ); + assert( (OP_SeekLE & 0x0001)==(OP_SeekGT & 0x0001) ); + if( (oc & 0x0001)==(OP_SeekGT & 0x0001) ) oc--; + } + + /* If the approximation iKey is smaller than the actual real search + ** term, substitute <= for < and > for >=. */ + else if( pIn3->r>(double)iKey ){ + assert( OP_SeekLE==(OP_SeekLT+1) ); + assert( OP_SeekGT==(OP_SeekGE+1) ); + assert( (OP_SeekLT & 0x0001)==(OP_SeekGE & 0x0001) ); + if( (oc & 0x0001)==(OP_SeekLT & 0x0001) ) oc++; + } + } + rc = sqlite3BtreeMovetoUnpacked(pC->pCursor, 0, (u64)iKey, 0, &res); + if( rc!=SQLITE_OK ){ + goto abort_due_to_error; + } + if( res==0 ){ + pC->rowidIsValid = 1; + pC->lastRowid = iKey; + } + }else{ + nField = pOp->p4.i; + assert( pOp->p4type==P4_INT32 ); + assert( nField>0 ); + r.pKeyInfo = pC->pKeyInfo; + r.nField = (u16)nField; + + /* The next line of code computes as follows, only faster: + ** if( oc==OP_SeekGT || oc==OP_SeekLE ){ + ** r.default_rc = -1; + ** }else{ + ** r.default_rc = +1; + ** } + */ + r.default_rc = ((1 & (oc - OP_SeekLT)) ? -1 : +1); + assert( oc!=OP_SeekGT || r.default_rc==-1 ); + assert( oc!=OP_SeekLE || r.default_rc==-1 ); + assert( oc!=OP_SeekGE || r.default_rc==+1 ); + assert( oc!=OP_SeekLT || r.default_rc==+1 ); + + r.aMem = &aMem[pOp->p3]; +#ifdef SQLITE_DEBUG + { int i; for(i=0; ipCursor, &r, 0, 0, &res); + if( rc!=SQLITE_OK ){ + goto abort_due_to_error; + } + pC->rowidIsValid = 0; + } + pC->deferredMoveto = 0; + pC->cacheStatus = CACHE_STALE; +#ifdef SQLITE_TEST + sqlite3_search_count++; +#endif + if( oc>=OP_SeekGE ){ assert( oc==OP_SeekGE || oc==OP_SeekGT ); + if( res<0 || (res==0 && oc==OP_SeekGT) ){ + res = 0; + rc = sqlite3BtreeNext(pC->pCursor, &res); + if( rc!=SQLITE_OK ) goto abort_due_to_error; + pC->rowidIsValid = 0; + }else{ + res = 0; + } + }else{ + assert( oc==OP_SeekLT || oc==OP_SeekLE ); + if( res>0 || (res==0 && oc==OP_SeekLT) ){ + res = 0; + rc = sqlite3BtreePrevious(pC->pCursor, &res); + if( rc!=SQLITE_OK ) goto abort_due_to_error; + pC->rowidIsValid = 0; + }else{ + /* res might be negative because the table is empty. Check to + ** see if this is the case. + */ + res = sqlite3BtreeEof(pC->pCursor); + } + } + assert( pOp->p2>0 ); + VdbeBranchTaken(res!=0,2); + if( res ){ + pc = pOp->p2 - 1; + } + break; +} + +/* Opcode: Seek P1 P2 * * * +** Synopsis: intkey=r[P2] +** +** P1 is an open table cursor and P2 is a rowid integer. Arrange +** for P1 to move so that it points to the rowid given by P2. +** +** This is actually a deferred seek. Nothing actually happens until +** the cursor is used to read a record. That way, if no reads +** occur, no unnecessary I/O happens. +*/ +case OP_Seek: { /* in2 */ + VdbeCursor *pC; + + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + assert( pC->pCursor!=0 ); + assert( pC->isTable ); + pC->nullRow = 0; + pIn2 = &aMem[pOp->p2]; + pC->movetoTarget = sqlite3VdbeIntValue(pIn2); + pC->rowidIsValid = 0; + pC->deferredMoveto = 1; + break; +} + + +/* Opcode: Found P1 P2 P3 P4 * +** Synopsis: key=r[P3@P4] +** +** If P4==0 then register P3 holds a blob constructed by MakeRecord. If +** P4>0 then register P3 is the first of P4 registers that form an unpacked +** record. +** +** Cursor P1 is on an index btree. If the record identified by P3 and P4 +** is a prefix of any entry in P1 then a jump is made to P2 and +** P1 is left pointing at the matching entry. +** +** See also: NotFound, NoConflict, NotExists. SeekGe +*/ +/* Opcode: NotFound P1 P2 P3 P4 * +** Synopsis: key=r[P3@P4] +** +** If P4==0 then register P3 holds a blob constructed by MakeRecord. If +** P4>0 then register P3 is the first of P4 registers that form an unpacked +** record. +** +** Cursor P1 is on an index btree. If the record identified by P3 and P4 +** is not the prefix of any entry in P1 then a jump is made to P2. If P1 +** does contain an entry whose prefix matches the P3/P4 record then control +** falls through to the next instruction and P1 is left pointing at the +** matching entry. +** +** See also: Found, NotExists, NoConflict +*/ +/* Opcode: NoConflict P1 P2 P3 P4 * +** Synopsis: key=r[P3@P4] +** +** If P4==0 then register P3 holds a blob constructed by MakeRecord. If +** P4>0 then register P3 is the first of P4 registers that form an unpacked +** record. +** +** Cursor P1 is on an index btree. If the record identified by P3 and P4 +** contains any NULL value, jump immediately to P2. If all terms of the +** record are not-NULL then a check is done to determine if any row in the +** P1 index btree has a matching key prefix. If there are no matches, jump +** immediately to P2. If there is a match, fall through and leave the P1 +** cursor pointing to the matching row. +** +** This opcode is similar to OP_NotFound with the exceptions that the +** branch is always taken if any part of the search key input is NULL. +** +** See also: NotFound, Found, NotExists +*/ +case OP_NoConflict: /* jump, in3 */ +case OP_NotFound: /* jump, in3 */ +case OP_Found: { /* jump, in3 */ + int alreadyExists; + int ii; + VdbeCursor *pC; + int res; + char *pFree; + UnpackedRecord *pIdxKey; + UnpackedRecord r; + char aTempRec[ROUND8(sizeof(UnpackedRecord)) + sizeof(Mem)*4 + 7]; + +#ifdef SQLITE_TEST + if( pOp->opcode!=OP_NoConflict ) sqlite3_found_count++; +#endif + + assert( pOp->p1>=0 && pOp->p1nCursor ); + assert( pOp->p4type==P4_INT32 ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + pIn3 = &aMem[pOp->p3]; + assert( pC->pCursor!=0 ); + assert( pC->isTable==0 ); + pFree = 0; /* Not needed. Only used to suppress a compiler warning. */ + if( pOp->p4.i>0 ){ + r.pKeyInfo = pC->pKeyInfo; + r.nField = (u16)pOp->p4.i; + r.aMem = pIn3; + for(ii=0; iip3+ii, &r.aMem[ii]); +#endif + } + pIdxKey = &r; + }else{ + pIdxKey = sqlite3VdbeAllocUnpackedRecord( + pC->pKeyInfo, aTempRec, sizeof(aTempRec), &pFree + ); + if( pIdxKey==0 ) goto no_mem; + assert( pIn3->flags & MEM_Blob ); + assert( (pIn3->flags & MEM_Zero)==0 ); /* zeroblobs already expanded */ + sqlite3VdbeRecordUnpack(pC->pKeyInfo, pIn3->n, pIn3->z, pIdxKey); + } + pIdxKey->default_rc = 0; + if( pOp->opcode==OP_NoConflict ){ + /* For the OP_NoConflict opcode, take the jump if any of the + ** input fields are NULL, since any key with a NULL will not + ** conflict */ + for(ii=0; iip2 - 1; VdbeBranchTaken(1,2); + break; + } + } + } + rc = sqlite3BtreeMovetoUnpacked(pC->pCursor, pIdxKey, 0, 0, &res); + if( pOp->p4.i==0 ){ + sqlite3DbFree(db, pFree); + } + if( rc!=SQLITE_OK ){ + break; + } + pC->seekResult = res; + alreadyExists = (res==0); + pC->nullRow = 1-alreadyExists; + pC->deferredMoveto = 0; + pC->cacheStatus = CACHE_STALE; + if( pOp->opcode==OP_Found ){ + VdbeBranchTaken(alreadyExists!=0,2); + if( alreadyExists ) pc = pOp->p2 - 1; + }else{ + VdbeBranchTaken(alreadyExists==0,2); + if( !alreadyExists ) pc = pOp->p2 - 1; + } + break; +} + +/* Opcode: NotExists P1 P2 P3 * * +** Synopsis: intkey=r[P3] +** +** P1 is the index of a cursor open on an SQL table btree (with integer +** keys). P3 is an integer rowid. If P1 does not contain a record with +** rowid P3 then jump immediately to P2. If P1 does contain a record +** with rowid P3 then leave the cursor pointing at that record and fall +** through to the next instruction. +** +** The OP_NotFound opcode performs the same operation on index btrees +** (with arbitrary multi-value keys). +** +** See also: Found, NotFound, NoConflict +*/ +case OP_NotExists: { /* jump, in3 */ + VdbeCursor *pC; + BtCursor *pCrsr; + int res; + u64 iKey; + + pIn3 = &aMem[pOp->p3]; + assert( pIn3->flags & MEM_Int ); + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + assert( pC->isTable ); + assert( pC->pseudoTableReg==0 ); + pCrsr = pC->pCursor; + assert( pCrsr!=0 ); + res = 0; + iKey = pIn3->u.i; + rc = sqlite3BtreeMovetoUnpacked(pCrsr, 0, iKey, 0, &res); + pC->lastRowid = pIn3->u.i; + pC->rowidIsValid = res==0 ?1:0; + pC->nullRow = 0; + pC->cacheStatus = CACHE_STALE; + pC->deferredMoveto = 0; + VdbeBranchTaken(res!=0,2); + if( res!=0 ){ + pc = pOp->p2 - 1; + assert( pC->rowidIsValid==0 ); + } + pC->seekResult = res; + break; +} + +/* Opcode: Sequence P1 P2 * * * +** Synopsis: r[P2]=cursor[P1].ctr++ +** +** Find the next available sequence number for cursor P1. +** Write the sequence number into register P2. +** The sequence number on the cursor is incremented after this +** instruction. +*/ +case OP_Sequence: { /* out2-prerelease */ + assert( pOp->p1>=0 && pOp->p1nCursor ); + assert( p->apCsr[pOp->p1]!=0 ); + pOut->u.i = p->apCsr[pOp->p1]->seqCount++; + break; +} + + +/* Opcode: NewRowid P1 P2 P3 * * +** Synopsis: r[P2]=rowid +** +** Get a new integer record number (a.k.a "rowid") used as the key to a table. +** The record number is not previously used as a key in the database +** table that cursor P1 points to. The new record number is written +** written to register P2. +** +** If P3>0 then P3 is a register in the root frame of this VDBE that holds +** the largest previously generated record number. No new record numbers are +** allowed to be less than this value. When this value reaches its maximum, +** an SQLITE_FULL error is generated. The P3 register is updated with the ' +** generated record number. This P3 mechanism is used to help implement the +** AUTOINCREMENT feature. +*/ +case OP_NewRowid: { /* out2-prerelease */ + i64 v; /* The new rowid */ + VdbeCursor *pC; /* Cursor of table to get the new rowid */ + int res; /* Result of an sqlite3BtreeLast() */ + int cnt; /* Counter to limit the number of searches */ + Mem *pMem; /* Register holding largest rowid for AUTOINCREMENT */ + VdbeFrame *pFrame; /* Root frame of VDBE */ + + v = 0; + res = 0; + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + if( NEVER(pC->pCursor==0) ){ + /* The zero initialization above is all that is needed */ + }else{ + /* The next rowid or record number (different terms for the same + ** thing) is obtained in a two-step algorithm. + ** + ** First we attempt to find the largest existing rowid and add one + ** to that. But if the largest existing rowid is already the maximum + ** positive integer, we have to fall through to the second + ** probabilistic algorithm + ** + ** The second algorithm is to select a rowid at random and see if + ** it already exists in the table. If it does not exist, we have + ** succeeded. If the random rowid does exist, we select a new one + ** and try again, up to 100 times. + */ + assert( pC->isTable ); + +#ifdef SQLITE_32BIT_ROWID +# define MAX_ROWID 0x7fffffff +#else + /* Some compilers complain about constants of the form 0x7fffffffffffffff. + ** Others complain about 0x7ffffffffffffffffLL. The following macro seems + ** to provide the constant while making all compilers happy. + */ +# define MAX_ROWID (i64)( (((u64)0x7fffffff)<<32) | (u64)0xffffffff ) +#endif + + if( !pC->useRandomRowid ){ + rc = sqlite3BtreeLast(pC->pCursor, &res); + if( rc!=SQLITE_OK ){ + goto abort_due_to_error; + } + if( res ){ + v = 1; /* IMP: R-61914-48074 */ + }else{ + assert( sqlite3BtreeCursorIsValid(pC->pCursor) ); + rc = sqlite3BtreeKeySize(pC->pCursor, &v); + assert( rc==SQLITE_OK ); /* Cannot fail following BtreeLast() */ + if( v>=MAX_ROWID ){ + pC->useRandomRowid = 1; + }else{ + v++; /* IMP: R-29538-34987 */ + } + } + } + +#ifndef SQLITE_OMIT_AUTOINCREMENT + if( pOp->p3 ){ + /* Assert that P3 is a valid memory cell. */ + assert( pOp->p3>0 ); + if( p->pFrame ){ + for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent); + /* Assert that P3 is a valid memory cell. */ + assert( pOp->p3<=pFrame->nMem ); + pMem = &pFrame->aMem[pOp->p3]; + }else{ + /* Assert that P3 is a valid memory cell. */ + assert( pOp->p3<=(p->nMem-p->nCursor) ); + pMem = &aMem[pOp->p3]; + memAboutToChange(p, pMem); + } + assert( memIsValid(pMem) ); + + REGISTER_TRACE(pOp->p3, pMem); + sqlite3VdbeMemIntegerify(pMem); + assert( (pMem->flags & MEM_Int)!=0 ); /* mem(P3) holds an integer */ + if( pMem->u.i==MAX_ROWID || pC->useRandomRowid ){ + rc = SQLITE_FULL; /* IMP: R-12275-61338 */ + goto abort_due_to_error; + } + if( vu.i+1 ){ + v = pMem->u.i + 1; + } + pMem->u.i = v; + } +#endif + if( pC->useRandomRowid ){ + /* IMPLEMENTATION-OF: R-07677-41881 If the largest ROWID is equal to the + ** largest possible integer (9223372036854775807) then the database + ** engine starts picking positive candidate ROWIDs at random until + ** it finds one that is not previously used. */ + assert( pOp->p3==0 ); /* We cannot be in random rowid mode if this is + ** an AUTOINCREMENT table. */ + /* on the first attempt, simply do one more than previous */ + v = lastRowid; + v &= (MAX_ROWID>>1); /* ensure doesn't go negative */ + v++; /* ensure non-zero */ + cnt = 0; + while( ((rc = sqlite3BtreeMovetoUnpacked(pC->pCursor, 0, (u64)v, + 0, &res))==SQLITE_OK) + && (res==0) + && (++cnt<100)){ + /* collision - try another random rowid */ + sqlite3_randomness(sizeof(v), &v); + if( cnt<5 ){ + /* try "small" random rowids for the initial attempts */ + v &= 0xffffff; + }else{ + v &= (MAX_ROWID>>1); /* ensure doesn't go negative */ + } + v++; /* ensure non-zero */ + } + if( rc==SQLITE_OK && res==0 ){ + rc = SQLITE_FULL; /* IMP: R-38219-53002 */ + goto abort_due_to_error; + } + assert( v>0 ); /* EV: R-40812-03570 */ + } + pC->rowidIsValid = 0; + pC->deferredMoveto = 0; + pC->cacheStatus = CACHE_STALE; + } + pOut->u.i = v; + break; +} + +/* Opcode: Insert P1 P2 P3 P4 P5 +** Synopsis: intkey=r[P3] data=r[P2] +** +** Write an entry into the table of cursor P1. A new entry is +** created if it doesn't already exist or the data for an existing +** entry is overwritten. The data is the value MEM_Blob stored in register +** number P2. The key is stored in register P3. The key must +** be a MEM_Int. +** +** If the OPFLAG_NCHANGE flag of P5 is set, then the row change count is +** incremented (otherwise not). If the OPFLAG_LASTROWID flag of P5 is set, +** then rowid is stored for subsequent return by the +** sqlite3_last_insert_rowid() function (otherwise it is unmodified). +** +** If the OPFLAG_USESEEKRESULT flag of P5 is set and if the result of +** the last seek operation (OP_NotExists) was a success, then this +** operation will not attempt to find the appropriate row before doing +** the insert but will instead overwrite the row that the cursor is +** currently pointing to. Presumably, the prior OP_NotExists opcode +** has already positioned the cursor correctly. This is an optimization +** that boosts performance by avoiding redundant seeks. +** +** If the OPFLAG_ISUPDATE flag is set, then this opcode is part of an +** UPDATE operation. Otherwise (if the flag is clear) then this opcode +** is part of an INSERT operation. The difference is only important to +** the update hook. +** +** Parameter P4 may point to a string containing the table-name, or +** may be NULL. If it is not NULL, then the update-hook +** (sqlite3.xUpdateCallback) is invoked following a successful insert. +** +** (WARNING/TODO: If P1 is a pseudo-cursor and P2 is dynamically +** allocated, then ownership of P2 is transferred to the pseudo-cursor +** and register P2 becomes ephemeral. If the cursor is changed, the +** value of register P2 will then change. Make sure this does not +** cause any problems.) +** +** This instruction only works on tables. The equivalent instruction +** for indices is OP_IdxInsert. +*/ +/* Opcode: InsertInt P1 P2 P3 P4 P5 +** Synopsis: intkey=P3 data=r[P2] +** +** This works exactly like OP_Insert except that the key is the +** integer value P3, not the value of the integer stored in register P3. +*/ +case OP_Insert: +case OP_InsertInt: { + Mem *pData; /* MEM cell holding data for the record to be inserted */ + Mem *pKey; /* MEM cell holding key for the record */ + i64 iKey; /* The integer ROWID or key for the record to be inserted */ + VdbeCursor *pC; /* Cursor to table into which insert is written */ + int nZero; /* Number of zero-bytes to append */ + int seekResult; /* Result of prior seek or 0 if no USESEEKRESULT flag */ + const char *zDb; /* database name - used by the update hook */ + const char *zTbl; /* Table name - used by the opdate hook */ + int op; /* Opcode for update hook: SQLITE_UPDATE or SQLITE_INSERT */ + + pData = &aMem[pOp->p2]; + assert( pOp->p1>=0 && pOp->p1nCursor ); + assert( memIsValid(pData) ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + assert( pC->pCursor!=0 ); + assert( pC->pseudoTableReg==0 ); + assert( pC->isTable ); + REGISTER_TRACE(pOp->p2, pData); + + if( pOp->opcode==OP_Insert ){ + pKey = &aMem[pOp->p3]; + assert( pKey->flags & MEM_Int ); + assert( memIsValid(pKey) ); + REGISTER_TRACE(pOp->p3, pKey); + iKey = pKey->u.i; + }else{ + assert( pOp->opcode==OP_InsertInt ); + iKey = pOp->p3; + } + + if( pOp->p5 & OPFLAG_NCHANGE ) p->nChange++; + if( pOp->p5 & OPFLAG_LASTROWID ) db->lastRowid = lastRowid = iKey; + if( pData->flags & MEM_Null ){ + pData->z = 0; + pData->n = 0; + }else{ + assert( pData->flags & (MEM_Blob|MEM_Str) ); + } + seekResult = ((pOp->p5 & OPFLAG_USESEEKRESULT) ? pC->seekResult : 0); + if( pData->flags & MEM_Zero ){ + nZero = pData->u.nZero; + }else{ + nZero = 0; + } + rc = sqlite3BtreeInsert(pC->pCursor, 0, iKey, + pData->z, pData->n, nZero, + (pOp->p5 & OPFLAG_APPEND)!=0, seekResult + ); + pC->rowidIsValid = 0; + pC->deferredMoveto = 0; + pC->cacheStatus = CACHE_STALE; + + /* Invoke the update-hook if required. */ + if( rc==SQLITE_OK && db->xUpdateCallback && pOp->p4.z ){ + zDb = db->aDb[pC->iDb].zName; + zTbl = pOp->p4.z; + op = ((pOp->p5 & OPFLAG_ISUPDATE) ? SQLITE_UPDATE : SQLITE_INSERT); + assert( pC->isTable ); + db->xUpdateCallback(db->pUpdateArg, op, zDb, zTbl, iKey); + assert( pC->iDb>=0 ); + } + break; +} + +/* Opcode: Delete P1 P2 * P4 * +** +** Delete the record at which the P1 cursor is currently pointing. +** +** The cursor will be left pointing at either the next or the previous +** record in the table. If it is left pointing at the next record, then +** the next Next instruction will be a no-op. Hence it is OK to delete +** a record from within an Next loop. +** +** If the OPFLAG_NCHANGE flag of P2 is set, then the row change count is +** incremented (otherwise not). +** +** P1 must not be pseudo-table. It has to be a real table with +** multiple rows. +** +** If P4 is not NULL, then it is the name of the table that P1 is +** pointing to. The update hook will be invoked, if it exists. +** If P4 is not NULL then the P1 cursor must have been positioned +** using OP_NotFound prior to invoking this opcode. +*/ +case OP_Delete: { + i64 iKey; + VdbeCursor *pC; + + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + assert( pC->pCursor!=0 ); /* Only valid for real tables, no pseudotables */ + iKey = pC->lastRowid; /* Only used for the update hook */ + + /* The OP_Delete opcode always follows an OP_NotExists or OP_Last or + ** OP_Column on the same table without any intervening operations that + ** might move or invalidate the cursor. Hence cursor pC is always pointing + ** to the row to be deleted and the sqlite3VdbeCursorMoveto() operation + ** below is always a no-op and cannot fail. We will run it anyhow, though, + ** to guard against future changes to the code generator. + **/ + assert( pC->deferredMoveto==0 ); + rc = sqlite3VdbeCursorMoveto(pC); + if( NEVER(rc!=SQLITE_OK) ) goto abort_due_to_error; + + rc = sqlite3BtreeDelete(pC->pCursor); + pC->cacheStatus = CACHE_STALE; + + /* Invoke the update-hook if required. */ + if( rc==SQLITE_OK && db->xUpdateCallback && pOp->p4.z && pC->isTable ){ + db->xUpdateCallback(db->pUpdateArg, SQLITE_DELETE, + db->aDb[pC->iDb].zName, pOp->p4.z, iKey); + assert( pC->iDb>=0 ); + } + if( pOp->p2 & OPFLAG_NCHANGE ) p->nChange++; + break; +} +/* Opcode: ResetCount * * * * * +** +** The value of the change counter is copied to the database handle +** change counter (returned by subsequent calls to sqlite3_changes()). +** Then the VMs internal change counter resets to 0. +** This is used by trigger programs. +*/ +case OP_ResetCount: { + sqlite3VdbeSetChanges(db, p->nChange); + p->nChange = 0; + break; +} + +/* Opcode: SorterCompare P1 P2 P3 P4 +** Synopsis: if key(P1)!=rtrim(r[P3],P4) goto P2 +** +** P1 is a sorter cursor. This instruction compares a prefix of the +** the record blob in register P3 against a prefix of the entry that +** the sorter cursor currently points to. The final P4 fields of both +** the P3 and sorter record are ignored. +** +** If either P3 or the sorter contains a NULL in one of their significant +** fields (not counting the P4 fields at the end which are ignored) then +** the comparison is assumed to be equal. +** +** Fall through to next instruction if the two records compare equal to +** each other. Jump to P2 if they are different. +*/ +case OP_SorterCompare: { + VdbeCursor *pC; + int res; + int nIgnore; + + pC = p->apCsr[pOp->p1]; + assert( isSorter(pC) ); + assert( pOp->p4type==P4_INT32 ); + pIn3 = &aMem[pOp->p3]; + nIgnore = pOp->p4.i; + rc = sqlite3VdbeSorterCompare(pC, pIn3, nIgnore, &res); + VdbeBranchTaken(res!=0,2); + if( res ){ + pc = pOp->p2-1; + } + break; +}; + +/* Opcode: SorterData P1 P2 * * * +** Synopsis: r[P2]=data +** +** Write into register P2 the current sorter data for sorter cursor P1. +*/ +case OP_SorterData: { + VdbeCursor *pC; + + pOut = &aMem[pOp->p2]; + pC = p->apCsr[pOp->p1]; + assert( isSorter(pC) ); + rc = sqlite3VdbeSorterRowkey(pC, pOut); + assert( rc!=SQLITE_OK || (pOut->flags & MEM_Blob) ); + break; +} + +/* Opcode: RowData P1 P2 * * * +** Synopsis: r[P2]=data +** +** Write into register P2 the complete row data for cursor P1. +** There is no interpretation of the data. +** It is just copied onto the P2 register exactly as +** it is found in the database file. +** +** If the P1 cursor must be pointing to a valid row (not a NULL row) +** of a real table, not a pseudo-table. +*/ +/* Opcode: RowKey P1 P2 * * * +** Synopsis: r[P2]=key +** +** Write into register P2 the complete row key for cursor P1. +** There is no interpretation of the data. +** The key is copied onto the P2 register exactly as +** it is found in the database file. +** +** If the P1 cursor must be pointing to a valid row (not a NULL row) +** of a real table, not a pseudo-table. +*/ +case OP_RowKey: +case OP_RowData: { + VdbeCursor *pC; + BtCursor *pCrsr; + u32 n; + i64 n64; + + pOut = &aMem[pOp->p2]; + memAboutToChange(p, pOut); + + /* Note that RowKey and RowData are really exactly the same instruction */ + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( isSorter(pC)==0 ); + assert( pC->isTable || pOp->opcode!=OP_RowData ); + assert( pC->isTable==0 || pOp->opcode==OP_RowData ); + assert( pC!=0 ); + assert( pC->nullRow==0 ); + assert( pC->pseudoTableReg==0 ); + assert( pC->pCursor!=0 ); + pCrsr = pC->pCursor; + assert( sqlite3BtreeCursorIsValid(pCrsr) ); + + /* The OP_RowKey and OP_RowData opcodes always follow OP_NotExists or + ** OP_Rewind/Op_Next with no intervening instructions that might invalidate + ** the cursor. Hence the following sqlite3VdbeCursorMoveto() call is always + ** a no-op and can never fail. But we leave it in place as a safety. + */ + assert( pC->deferredMoveto==0 ); + rc = sqlite3VdbeCursorMoveto(pC); + if( NEVER(rc!=SQLITE_OK) ) goto abort_due_to_error; + + if( pC->isTable==0 ){ + assert( !pC->isTable ); + VVA_ONLY(rc =) sqlite3BtreeKeySize(pCrsr, &n64); + assert( rc==SQLITE_OK ); /* True because of CursorMoveto() call above */ + if( n64>db->aLimit[SQLITE_LIMIT_LENGTH] ){ + goto too_big; + } + n = (u32)n64; + }else{ + VVA_ONLY(rc =) sqlite3BtreeDataSize(pCrsr, &n); + assert( rc==SQLITE_OK ); /* DataSize() cannot fail */ + if( n>(u32)db->aLimit[SQLITE_LIMIT_LENGTH] ){ + goto too_big; + } + } + if( sqlite3VdbeMemGrow(pOut, n, 0) ){ + goto no_mem; + } + pOut->n = n; + MemSetTypeFlag(pOut, MEM_Blob); + if( pC->isTable==0 ){ + rc = sqlite3BtreeKey(pCrsr, 0, n, pOut->z); + }else{ + rc = sqlite3BtreeData(pCrsr, 0, n, pOut->z); + } + pOut->enc = SQLITE_UTF8; /* In case the blob is ever cast to text */ + UPDATE_MAX_BLOBSIZE(pOut); + REGISTER_TRACE(pOp->p2, pOut); + break; +} + +/* Opcode: Rowid P1 P2 * * * +** Synopsis: r[P2]=rowid +** +** Store in register P2 an integer which is the key of the table entry that +** P1 is currently point to. +** +** P1 can be either an ordinary table or a virtual table. There used to +** be a separate OP_VRowid opcode for use with virtual tables, but this +** one opcode now works for both table types. +*/ +case OP_Rowid: { /* out2-prerelease */ + VdbeCursor *pC; + i64 v; + sqlite3_vtab *pVtab; + const sqlite3_module *pModule; + + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + assert( pC->pseudoTableReg==0 || pC->nullRow ); + if( pC->nullRow ){ + pOut->flags = MEM_Null; + break; + }else if( pC->deferredMoveto ){ + v = pC->movetoTarget; +#ifndef SQLITE_OMIT_VIRTUALTABLE + }else if( pC->pVtabCursor ){ + pVtab = pC->pVtabCursor->pVtab; + pModule = pVtab->pModule; + assert( pModule->xRowid ); + rc = pModule->xRowid(pC->pVtabCursor, &v); + sqlite3VtabImportErrmsg(p, pVtab); +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + }else{ + assert( pC->pCursor!=0 ); + rc = sqlite3VdbeCursorMoveto(pC); + if( rc ) goto abort_due_to_error; + if( pC->rowidIsValid ){ + v = pC->lastRowid; + }else{ + rc = sqlite3BtreeKeySize(pC->pCursor, &v); + assert( rc==SQLITE_OK ); /* Always so because of CursorMoveto() above */ + } + } + pOut->u.i = v; + break; +} + +/* Opcode: NullRow P1 * * * * +** +** Move the cursor P1 to a null row. Any OP_Column operations +** that occur while the cursor is on the null row will always +** write a NULL. +*/ +case OP_NullRow: { + VdbeCursor *pC; + + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + pC->nullRow = 1; + pC->rowidIsValid = 0; + pC->cacheStatus = CACHE_STALE; + if( pC->pCursor ){ + sqlite3BtreeClearCursor(pC->pCursor); + } + break; +} + +/* Opcode: Last P1 P2 * * * +** +** The next use of the Rowid or Column or Next instruction for P1 +** will refer to the last entry in the database table or index. +** If the table or index is empty and P2>0, then jump immediately to P2. +** If P2 is 0 or if the table or index is not empty, fall through +** to the following instruction. +*/ +case OP_Last: { /* jump */ + VdbeCursor *pC; + BtCursor *pCrsr; + int res; + + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + pCrsr = pC->pCursor; + res = 0; + assert( pCrsr!=0 ); + rc = sqlite3BtreeLast(pCrsr, &res); + pC->nullRow = (u8)res; + pC->deferredMoveto = 0; + pC->rowidIsValid = 0; + pC->cacheStatus = CACHE_STALE; + if( pOp->p2>0 ){ + VdbeBranchTaken(res!=0,2); + if( res ) pc = pOp->p2 - 1; + } + break; +} + + +/* Opcode: Sort P1 P2 * * * +** +** This opcode does exactly the same thing as OP_Rewind except that +** it increments an undocumented global variable used for testing. +** +** Sorting is accomplished by writing records into a sorting index, +** then rewinding that index and playing it back from beginning to +** end. We use the OP_Sort opcode instead of OP_Rewind to do the +** rewinding so that the global variable will be incremented and +** regression tests can determine whether or not the optimizer is +** correctly optimizing out sorts. +*/ +case OP_SorterSort: /* jump */ +case OP_Sort: { /* jump */ +#ifdef SQLITE_TEST + sqlite3_sort_count++; + sqlite3_search_count--; +#endif + p->aCounter[SQLITE_STMTSTATUS_SORT]++; + /* Fall through into OP_Rewind */ +} +/* Opcode: Rewind P1 P2 * * * +** +** The next use of the Rowid or Column or Next instruction for P1 +** will refer to the first entry in the database table or index. +** If the table or index is empty and P2>0, then jump immediately to P2. +** If P2 is 0 or if the table or index is not empty, fall through +** to the following instruction. +*/ +case OP_Rewind: { /* jump */ + VdbeCursor *pC; + BtCursor *pCrsr; + int res; + + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + assert( isSorter(pC)==(pOp->opcode==OP_SorterSort) ); + res = 1; + if( isSorter(pC) ){ + rc = sqlite3VdbeSorterRewind(db, pC, &res); + }else{ + pCrsr = pC->pCursor; + assert( pCrsr ); + rc = sqlite3BtreeFirst(pCrsr, &res); + pC->deferredMoveto = 0; + pC->cacheStatus = CACHE_STALE; + pC->rowidIsValid = 0; + } + pC->nullRow = (u8)res; + assert( pOp->p2>0 && pOp->p2nOp ); + VdbeBranchTaken(res!=0,2); + if( res ){ + pc = pOp->p2 - 1; + } + break; +} + +/* Opcode: Next P1 P2 P3 P4 P5 +** +** Advance cursor P1 so that it points to the next key/data pair in its +** table or index. If there are no more key/value pairs then fall through +** to the following instruction. But if the cursor advance was successful, +** jump immediately to P2. +** +** The P1 cursor must be for a real table, not a pseudo-table. P1 must have +** been opened prior to this opcode or the program will segfault. +** +** The P3 value is a hint to the btree implementation. If P3==1, that +** means P1 is an SQL index and that this instruction could have been +** omitted if that index had been unique. P3 is usually 0. P3 is +** always either 0 or 1. +** +** P4 is always of type P4_ADVANCE. The function pointer points to +** sqlite3BtreeNext(). +** +** If P5 is positive and the jump is taken, then event counter +** number P5-1 in the prepared statement is incremented. +** +** See also: Prev, NextIfOpen +*/ +/* Opcode: NextIfOpen P1 P2 P3 P4 P5 +** +** This opcode works just like OP_Next except that if cursor P1 is not +** open it behaves a no-op. +*/ +/* Opcode: Prev P1 P2 P3 P4 P5 +** +** Back up cursor P1 so that it points to the previous key/data pair in its +** table or index. If there is no previous key/value pairs then fall through +** to the following instruction. But if the cursor backup was successful, +** jump immediately to P2. +** +** The P1 cursor must be for a real table, not a pseudo-table. If P1 is +** not open then the behavior is undefined. +** +** The P3 value is a hint to the btree implementation. If P3==1, that +** means P1 is an SQL index and that this instruction could have been +** omitted if that index had been unique. P3 is usually 0. P3 is +** always either 0 or 1. +** +** P4 is always of type P4_ADVANCE. The function pointer points to +** sqlite3BtreePrevious(). +** +** If P5 is positive and the jump is taken, then event counter +** number P5-1 in the prepared statement is incremented. +*/ +/* Opcode: PrevIfOpen P1 P2 P3 P4 P5 +** +** This opcode works just like OP_Prev except that if cursor P1 is not +** open it behaves a no-op. +*/ +case OP_SorterNext: { /* jump */ + VdbeCursor *pC; + int res; + + pC = p->apCsr[pOp->p1]; + assert( isSorter(pC) ); + res = 0; + rc = sqlite3VdbeSorterNext(db, pC, &res); + goto next_tail; +case OP_PrevIfOpen: /* jump */ +case OP_NextIfOpen: /* jump */ + if( p->apCsr[pOp->p1]==0 ) break; + /* Fall through */ +case OP_Prev: /* jump */ +case OP_Next: /* jump */ + assert( pOp->p1>=0 && pOp->p1nCursor ); + assert( pOp->p5aCounter) ); + pC = p->apCsr[pOp->p1]; + res = pOp->p3; + assert( pC!=0 ); + assert( pC->deferredMoveto==0 ); + assert( pC->pCursor ); + assert( res==0 || (res==1 && pC->isTable==0) ); + testcase( res==1 ); + assert( pOp->opcode!=OP_Next || pOp->p4.xAdvance==sqlite3BtreeNext ); + assert( pOp->opcode!=OP_Prev || pOp->p4.xAdvance==sqlite3BtreePrevious ); + assert( pOp->opcode!=OP_NextIfOpen || pOp->p4.xAdvance==sqlite3BtreeNext ); + assert( pOp->opcode!=OP_PrevIfOpen || pOp->p4.xAdvance==sqlite3BtreePrevious); + rc = pOp->p4.xAdvance(pC->pCursor, &res); +next_tail: + pC->cacheStatus = CACHE_STALE; + VdbeBranchTaken(res==0,2); + if( res==0 ){ + pC->nullRow = 0; + pc = pOp->p2 - 1; + p->aCounter[pOp->p5]++; +#ifdef SQLITE_TEST + sqlite3_search_count++; +#endif + }else{ + pC->nullRow = 1; + } + pC->rowidIsValid = 0; + goto check_for_interrupt; +} + +/* Opcode: IdxInsert P1 P2 P3 * P5 +** Synopsis: key=r[P2] +** +** Register P2 holds an SQL index key made using the +** MakeRecord instructions. This opcode writes that key +** into the index P1. Data for the entry is nil. +** +** P3 is a flag that provides a hint to the b-tree layer that this +** insert is likely to be an append. +** +** If P5 has the OPFLAG_NCHANGE bit set, then the change counter is +** incremented by this instruction. If the OPFLAG_NCHANGE bit is clear, +** then the change counter is unchanged. +** +** If P5 has the OPFLAG_USESEEKRESULT bit set, then the cursor must have +** just done a seek to the spot where the new entry is to be inserted. +** This flag avoids doing an extra seek. +** +** This instruction only works for indices. The equivalent instruction +** for tables is OP_Insert. +*/ +case OP_SorterInsert: /* in2 */ +case OP_IdxInsert: { /* in2 */ + VdbeCursor *pC; + BtCursor *pCrsr; + int nKey; + const char *zKey; + + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + assert( isSorter(pC)==(pOp->opcode==OP_SorterInsert) ); + pIn2 = &aMem[pOp->p2]; + assert( pIn2->flags & MEM_Blob ); + pCrsr = pC->pCursor; + if( pOp->p5 & OPFLAG_NCHANGE ) p->nChange++; + assert( pCrsr!=0 ); + assert( pC->isTable==0 ); + rc = ExpandBlob(pIn2); + if( rc==SQLITE_OK ){ + if( isSorter(pC) ){ + rc = sqlite3VdbeSorterWrite(db, pC, pIn2); + }else{ + nKey = pIn2->n; + zKey = pIn2->z; + rc = sqlite3BtreeInsert(pCrsr, zKey, nKey, "", 0, 0, pOp->p3, + ((pOp->p5 & OPFLAG_USESEEKRESULT) ? pC->seekResult : 0) + ); + assert( pC->deferredMoveto==0 ); + pC->cacheStatus = CACHE_STALE; + } + } + break; +} + +/* Opcode: IdxDelete P1 P2 P3 * * +** Synopsis: key=r[P2@P3] +** +** The content of P3 registers starting at register P2 form +** an unpacked index key. This opcode removes that entry from the +** index opened by cursor P1. +*/ +case OP_IdxDelete: { + VdbeCursor *pC; + BtCursor *pCrsr; + int res; + UnpackedRecord r; + + assert( pOp->p3>0 ); + assert( pOp->p2>0 && pOp->p2+pOp->p3<=(p->nMem-p->nCursor)+1 ); + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + pCrsr = pC->pCursor; + assert( pCrsr!=0 ); + assert( pOp->p5==0 ); + r.pKeyInfo = pC->pKeyInfo; + r.nField = (u16)pOp->p3; + r.default_rc = 0; + r.aMem = &aMem[pOp->p2]; +#ifdef SQLITE_DEBUG + { int i; for(i=0; ideferredMoveto==0 ); + pC->cacheStatus = CACHE_STALE; + break; +} + +/* Opcode: IdxRowid P1 P2 * * * +** Synopsis: r[P2]=rowid +** +** Write into register P2 an integer which is the last entry in the record at +** the end of the index key pointed to by cursor P1. This integer should be +** the rowid of the table entry to which this index entry points. +** +** See also: Rowid, MakeRecord. +*/ +case OP_IdxRowid: { /* out2-prerelease */ + BtCursor *pCrsr; + VdbeCursor *pC; + i64 rowid; + + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + pCrsr = pC->pCursor; + assert( pCrsr!=0 ); + pOut->flags = MEM_Null; + rc = sqlite3VdbeCursorMoveto(pC); + if( NEVER(rc) ) goto abort_due_to_error; + assert( pC->deferredMoveto==0 ); + assert( pC->isTable==0 ); + if( !pC->nullRow ){ + rowid = 0; /* Not needed. Only used to silence a warning. */ + rc = sqlite3VdbeIdxRowid(db, pCrsr, &rowid); + if( rc!=SQLITE_OK ){ + goto abort_due_to_error; + } + pOut->u.i = rowid; + pOut->flags = MEM_Int; + } + break; +} + +/* Opcode: IdxGE P1 P2 P3 P4 P5 +** Synopsis: key=r[P3@P4] +** +** The P4 register values beginning with P3 form an unpacked index +** key that omits the PRIMARY KEY. Compare this key value against the index +** that P1 is currently pointing to, ignoring the PRIMARY KEY or ROWID +** fields at the end. +** +** If the P1 index entry is greater than or equal to the key value +** then jump to P2. Otherwise fall through to the next instruction. +*/ +/* Opcode: IdxGT P1 P2 P3 P4 P5 +** Synopsis: key=r[P3@P4] +** +** The P4 register values beginning with P3 form an unpacked index +** key that omits the PRIMARY KEY. Compare this key value against the index +** that P1 is currently pointing to, ignoring the PRIMARY KEY or ROWID +** fields at the end. +** +** If the P1 index entry is greater than the key value +** then jump to P2. Otherwise fall through to the next instruction. +*/ +/* Opcode: IdxLT P1 P2 P3 P4 P5 +** Synopsis: key=r[P3@P4] +** +** The P4 register values beginning with P3 form an unpacked index +** key that omits the PRIMARY KEY or ROWID. Compare this key value against +** the index that P1 is currently pointing to, ignoring the PRIMARY KEY or +** ROWID on the P1 index. +** +** If the P1 index entry is less than the key value then jump to P2. +** Otherwise fall through to the next instruction. +*/ +/* Opcode: IdxLE P1 P2 P3 P4 P5 +** Synopsis: key=r[P3@P4] +** +** The P4 register values beginning with P3 form an unpacked index +** key that omits the PRIMARY KEY or ROWID. Compare this key value against +** the index that P1 is currently pointing to, ignoring the PRIMARY KEY or +** ROWID on the P1 index. +** +** If the P1 index entry is less than or equal to the key value then jump +** to P2. Otherwise fall through to the next instruction. +*/ +case OP_IdxLE: /* jump */ +case OP_IdxGT: /* jump */ +case OP_IdxLT: /* jump */ +case OP_IdxGE: { /* jump */ + VdbeCursor *pC; + int res; + UnpackedRecord r; + + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + assert( pC->isOrdered ); + assert( pC->pCursor!=0); + assert( pC->deferredMoveto==0 ); + assert( pOp->p5==0 || pOp->p5==1 ); + assert( pOp->p4type==P4_INT32 ); + r.pKeyInfo = pC->pKeyInfo; + r.nField = (u16)pOp->p4.i; + if( pOp->opcodeopcode==OP_IdxLE || pOp->opcode==OP_IdxGT ); + r.default_rc = -1; + }else{ + assert( pOp->opcode==OP_IdxGE || pOp->opcode==OP_IdxLT ); + r.default_rc = 0; + } + r.aMem = &aMem[pOp->p3]; +#ifdef SQLITE_DEBUG + { int i; for(i=0; iopcode&1)==(OP_IdxLT&1) ){ + assert( pOp->opcode==OP_IdxLE || pOp->opcode==OP_IdxLT ); + res = -res; + }else{ + assert( pOp->opcode==OP_IdxGE || pOp->opcode==OP_IdxGT ); + res++; + } + VdbeBranchTaken(res>0,2); + if( res>0 ){ + pc = pOp->p2 - 1 ; + } + break; +} + +/* Opcode: Destroy P1 P2 P3 * * +** +** Delete an entire database table or index whose root page in the database +** file is given by P1. +** +** The table being destroyed is in the main database file if P3==0. If +** P3==1 then the table to be clear is in the auxiliary database file +** that is used to store tables create using CREATE TEMPORARY TABLE. +** +** If AUTOVACUUM is enabled then it is possible that another root page +** might be moved into the newly deleted root page in order to keep all +** root pages contiguous at the beginning of the database. The former +** value of the root page that moved - its value before the move occurred - +** is stored in register P2. If no page +** movement was required (because the table being dropped was already +** the last one in the database) then a zero is stored in register P2. +** If AUTOVACUUM is disabled then a zero is stored in register P2. +** +** See also: Clear +*/ +case OP_Destroy: { /* out2-prerelease */ + int iMoved; + int iCnt; + Vdbe *pVdbe; + int iDb; + + assert( p->readOnly==0 ); +#ifndef SQLITE_OMIT_VIRTUALTABLE + iCnt = 0; + for(pVdbe=db->pVdbe; pVdbe; pVdbe = pVdbe->pNext){ + if( pVdbe->magic==VDBE_MAGIC_RUN && pVdbe->bIsReader + && pVdbe->inVtabMethod<2 && pVdbe->pc>=0 + ){ + iCnt++; + } + } +#else + iCnt = db->nVdbeRead; +#endif + pOut->flags = MEM_Null; + if( iCnt>1 ){ + rc = SQLITE_LOCKED; + p->errorAction = OE_Abort; + }else{ + iDb = pOp->p3; + assert( iCnt==1 ); + assert( (p->btreeMask & (((yDbMask)1)<aDb[iDb].pBt, pOp->p1, &iMoved); + pOut->flags = MEM_Int; + pOut->u.i = iMoved; +#ifndef SQLITE_OMIT_AUTOVACUUM + if( rc==SQLITE_OK && iMoved!=0 ){ + sqlite3RootPageMoved(db, iDb, iMoved, pOp->p1); + /* All OP_Destroy operations occur on the same btree */ + assert( resetSchemaOnFault==0 || resetSchemaOnFault==iDb+1 ); + resetSchemaOnFault = iDb+1; + } +#endif + } + break; +} + +/* Opcode: Clear P1 P2 P3 +** +** Delete all contents of the database table or index whose root page +** in the database file is given by P1. But, unlike Destroy, do not +** remove the table or index from the database file. +** +** The table being clear is in the main database file if P2==0. If +** P2==1 then the table to be clear is in the auxiliary database file +** that is used to store tables create using CREATE TEMPORARY TABLE. +** +** If the P3 value is non-zero, then the table referred to must be an +** intkey table (an SQL table, not an index). In this case the row change +** count is incremented by the number of rows in the table being cleared. +** If P3 is greater than zero, then the value stored in register P3 is +** also incremented by the number of rows in the table being cleared. +** +** See also: Destroy +*/ +case OP_Clear: { + int nChange; + + nChange = 0; + assert( p->readOnly==0 ); + assert( (p->btreeMask & (((yDbMask)1)<p2))!=0 ); + rc = sqlite3BtreeClearTable( + db->aDb[pOp->p2].pBt, pOp->p1, (pOp->p3 ? &nChange : 0) + ); + if( pOp->p3 ){ + p->nChange += nChange; + if( pOp->p3>0 ){ + assert( memIsValid(&aMem[pOp->p3]) ); + memAboutToChange(p, &aMem[pOp->p3]); + aMem[pOp->p3].u.i += nChange; + } + } + break; +} + +/* Opcode: ResetSorter P1 * * * * +** +** Delete all contents from the ephemeral table or sorter +** that is open on cursor P1. +** +** This opcode only works for cursors used for sorting and +** opened with OP_OpenEphemeral or OP_SorterOpen. +*/ +case OP_ResetSorter: { + VdbeCursor *pC; + + assert( pOp->p1>=0 && pOp->p1nCursor ); + pC = p->apCsr[pOp->p1]; + assert( pC!=0 ); + if( pC->pSorter ){ + sqlite3VdbeSorterReset(db, pC->pSorter); + }else{ + assert( pC->isEphemeral ); + rc = sqlite3BtreeClearTableOfCursor(pC->pCursor); + } + break; +} + +/* Opcode: CreateTable P1 P2 * * * +** Synopsis: r[P2]=root iDb=P1 +** +** Allocate a new table in the main database file if P1==0 or in the +** auxiliary database file if P1==1 or in an attached database if +** P1>1. Write the root page number of the new table into +** register P2 +** +** The difference between a table and an index is this: A table must +** have a 4-byte integer key and can have arbitrary data. An index +** has an arbitrary key but no data. +** +** See also: CreateIndex +*/ +/* Opcode: CreateIndex P1 P2 * * * +** Synopsis: r[P2]=root iDb=P1 +** +** Allocate a new index in the main database file if P1==0 or in the +** auxiliary database file if P1==1 or in an attached database if +** P1>1. Write the root page number of the new table into +** register P2. +** +** See documentation on OP_CreateTable for additional information. +*/ +case OP_CreateIndex: /* out2-prerelease */ +case OP_CreateTable: { /* out2-prerelease */ + int pgno; + int flags; + Db *pDb; + + pgno = 0; + assert( pOp->p1>=0 && pOp->p1nDb ); + assert( (p->btreeMask & (((yDbMask)1)<p1))!=0 ); + assert( p->readOnly==0 ); + pDb = &db->aDb[pOp->p1]; + assert( pDb->pBt!=0 ); + if( pOp->opcode==OP_CreateTable ){ + /* flags = BTREE_INTKEY; */ + flags = BTREE_INTKEY; + }else{ + flags = BTREE_BLOBKEY; + } + rc = sqlite3BtreeCreateTable(pDb->pBt, &pgno, flags); + pOut->u.i = pgno; + break; +} + +/* Opcode: ParseSchema P1 * * P4 * +** +** Read and parse all entries from the SQLITE_MASTER table of database P1 +** that match the WHERE clause P4. +** +** This opcode invokes the parser to create a new virtual machine, +** then runs the new virtual machine. It is thus a re-entrant opcode. +*/ +case OP_ParseSchema: { + int iDb; + const char *zMaster; + char *zSql; + InitData initData; + + /* Any prepared statement that invokes this opcode will hold mutexes + ** on every btree. This is a prerequisite for invoking + ** sqlite3InitCallback(). + */ +#ifdef SQLITE_DEBUG + for(iDb=0; iDbnDb; iDb++){ + assert( iDb==1 || sqlite3BtreeHoldsMutex(db->aDb[iDb].pBt) ); + } +#endif + + iDb = pOp->p1; + assert( iDb>=0 && iDbnDb ); + assert( DbHasProperty(db, iDb, DB_SchemaLoaded) ); + /* Used to be a conditional */ { + zMaster = SCHEMA_TABLE(iDb); + initData.db = db; + initData.iDb = pOp->p1; + initData.pzErrMsg = &p->zErrMsg; + zSql = sqlite3MPrintf(db, + "SELECT name, rootpage, sql FROM '%q'.%s WHERE %s ORDER BY rowid", + db->aDb[iDb].zName, zMaster, pOp->p4.z); + if( zSql==0 ){ + rc = SQLITE_NOMEM; + }else{ + assert( db->init.busy==0 ); + db->init.busy = 1; + initData.rc = SQLITE_OK; + assert( !db->mallocFailed ); + rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0); + if( rc==SQLITE_OK ) rc = initData.rc; + sqlite3DbFree(db, zSql); + db->init.busy = 0; + } + } + if( rc ) sqlite3ResetAllSchemasOfConnection(db); + if( rc==SQLITE_NOMEM ){ + goto no_mem; + } + break; +} + +#if !defined(SQLITE_OMIT_ANALYZE) +/* Opcode: LoadAnalysis P1 * * * * +** +** Read the sqlite_stat1 table for database P1 and load the content +** of that table into the internal index hash table. This will cause +** the analysis to be used when preparing all subsequent queries. +*/ +case OP_LoadAnalysis: { + assert( pOp->p1>=0 && pOp->p1nDb ); + rc = sqlite3AnalysisLoad(db, pOp->p1); + break; +} +#endif /* !defined(SQLITE_OMIT_ANALYZE) */ + +/* Opcode: DropTable P1 * * P4 * +** +** Remove the internal (in-memory) data structures that describe +** the table named P4 in database P1. This is called after a table +** is dropped in order to keep the internal representation of the +** schema consistent with what is on disk. +*/ +case OP_DropTable: { + sqlite3UnlinkAndDeleteTable(db, pOp->p1, pOp->p4.z); + break; +} + +/* Opcode: DropIndex P1 * * P4 * +** +** Remove the internal (in-memory) data structures that describe +** the index named P4 in database P1. This is called after an index +** is dropped in order to keep the internal representation of the +** schema consistent with what is on disk. +*/ +case OP_DropIndex: { + sqlite3UnlinkAndDeleteIndex(db, pOp->p1, pOp->p4.z); + break; +} + +/* Opcode: DropTrigger P1 * * P4 * +** +** Remove the internal (in-memory) data structures that describe +** the trigger named P4 in database P1. This is called after a trigger +** is dropped in order to keep the internal representation of the +** schema consistent with what is on disk. +*/ +case OP_DropTrigger: { + sqlite3UnlinkAndDeleteTrigger(db, pOp->p1, pOp->p4.z); + break; +} + + +#ifndef SQLITE_OMIT_INTEGRITY_CHECK +/* Opcode: IntegrityCk P1 P2 P3 * P5 +** +** Do an analysis of the currently open database. Store in +** register P1 the text of an error message describing any problems. +** If no problems are found, store a NULL in register P1. +** +** The register P3 contains the maximum number of allowed errors. +** At most reg(P3) errors will be reported. +** In other words, the analysis stops as soon as reg(P1) errors are +** seen. Reg(P1) is updated with the number of errors remaining. +** +** The root page numbers of all tables in the database are integer +** stored in reg(P1), reg(P1+1), reg(P1+2), .... There are P2 tables +** total. +** +** If P5 is not zero, the check is done on the auxiliary database +** file, not the main database file. +** +** This opcode is used to implement the integrity_check pragma. +*/ +case OP_IntegrityCk: { + int nRoot; /* Number of tables to check. (Number of root pages.) */ + int *aRoot; /* Array of rootpage numbers for tables to be checked */ + int j; /* Loop counter */ + int nErr; /* Number of errors reported */ + char *z; /* Text of the error report */ + Mem *pnErr; /* Register keeping track of errors remaining */ + + assert( p->bIsReader ); + nRoot = pOp->p2; + assert( nRoot>0 ); + aRoot = sqlite3DbMallocRaw(db, sizeof(int)*(nRoot+1) ); + if( aRoot==0 ) goto no_mem; + assert( pOp->p3>0 && pOp->p3<=(p->nMem-p->nCursor) ); + pnErr = &aMem[pOp->p3]; + assert( (pnErr->flags & MEM_Int)!=0 ); + assert( (pnErr->flags & (MEM_Str|MEM_Blob))==0 ); + pIn1 = &aMem[pOp->p1]; + for(j=0; jp5nDb ); + assert( (p->btreeMask & (((yDbMask)1)<p5))!=0 ); + z = sqlite3BtreeIntegrityCheck(db->aDb[pOp->p5].pBt, aRoot, nRoot, + (int)pnErr->u.i, &nErr); + sqlite3DbFree(db, aRoot); + pnErr->u.i -= nErr; + sqlite3VdbeMemSetNull(pIn1); + if( nErr==0 ){ + assert( z==0 ); + }else if( z==0 ){ + goto no_mem; + }else{ + sqlite3VdbeMemSetStr(pIn1, z, -1, SQLITE_UTF8, sqlite3_free); + } + UPDATE_MAX_BLOBSIZE(pIn1); + sqlite3VdbeChangeEncoding(pIn1, encoding); + break; +} +#endif /* SQLITE_OMIT_INTEGRITY_CHECK */ + +/* Opcode: RowSetAdd P1 P2 * * * +** Synopsis: rowset(P1)=r[P2] +** +** Insert the integer value held by register P2 into a boolean index +** held in register P1. +** +** An assertion fails if P2 is not an integer. +*/ +case OP_RowSetAdd: { /* in1, in2 */ + pIn1 = &aMem[pOp->p1]; + pIn2 = &aMem[pOp->p2]; + assert( (pIn2->flags & MEM_Int)!=0 ); + if( (pIn1->flags & MEM_RowSet)==0 ){ + sqlite3VdbeMemSetRowSet(pIn1); + if( (pIn1->flags & MEM_RowSet)==0 ) goto no_mem; + } + sqlite3RowSetInsert(pIn1->u.pRowSet, pIn2->u.i); + break; +} + +/* Opcode: RowSetRead P1 P2 P3 * * +** Synopsis: r[P3]=rowset(P1) +** +** Extract the smallest value from boolean index P1 and put that value into +** register P3. Or, if boolean index P1 is initially empty, leave P3 +** unchanged and jump to instruction P2. +*/ +case OP_RowSetRead: { /* jump, in1, out3 */ + i64 val; + + pIn1 = &aMem[pOp->p1]; + if( (pIn1->flags & MEM_RowSet)==0 + || sqlite3RowSetNext(pIn1->u.pRowSet, &val)==0 + ){ + /* The boolean index is empty */ + sqlite3VdbeMemSetNull(pIn1); + pc = pOp->p2 - 1; + VdbeBranchTaken(1,2); + }else{ + /* A value was pulled from the index */ + sqlite3VdbeMemSetInt64(&aMem[pOp->p3], val); + VdbeBranchTaken(0,2); + } + goto check_for_interrupt; +} + +/* Opcode: RowSetTest P1 P2 P3 P4 +** Synopsis: if r[P3] in rowset(P1) goto P2 +** +** Register P3 is assumed to hold a 64-bit integer value. If register P1 +** contains a RowSet object and that RowSet object contains +** the value held in P3, jump to register P2. Otherwise, insert the +** integer in P3 into the RowSet and continue on to the +** next opcode. +** +** The RowSet object is optimized for the case where successive sets +** of integers, where each set contains no duplicates. Each set +** of values is identified by a unique P4 value. The first set +** must have P4==0, the final set P4=-1. P4 must be either -1 or +** non-negative. For non-negative values of P4 only the lower 4 +** bits are significant. +** +** This allows optimizations: (a) when P4==0 there is no need to test +** the rowset object for P3, as it is guaranteed not to contain it, +** (b) when P4==-1 there is no need to insert the value, as it will +** never be tested for, and (c) when a value that is part of set X is +** inserted, there is no need to search to see if the same value was +** previously inserted as part of set X (only if it was previously +** inserted as part of some other set). +*/ +case OP_RowSetTest: { /* jump, in1, in3 */ + int iSet; + int exists; + + pIn1 = &aMem[pOp->p1]; + pIn3 = &aMem[pOp->p3]; + iSet = pOp->p4.i; + assert( pIn3->flags&MEM_Int ); + + /* If there is anything other than a rowset object in memory cell P1, + ** delete it now and initialize P1 with an empty rowset + */ + if( (pIn1->flags & MEM_RowSet)==0 ){ + sqlite3VdbeMemSetRowSet(pIn1); + if( (pIn1->flags & MEM_RowSet)==0 ) goto no_mem; + } + + assert( pOp->p4type==P4_INT32 ); + assert( iSet==-1 || iSet>=0 ); + if( iSet ){ + exists = sqlite3RowSetTest(pIn1->u.pRowSet, iSet, pIn3->u.i); + VdbeBranchTaken(exists!=0,2); + if( exists ){ + pc = pOp->p2 - 1; + break; + } + } + if( iSet>=0 ){ + sqlite3RowSetInsert(pIn1->u.pRowSet, pIn3->u.i); + } + break; +} + + +#ifndef SQLITE_OMIT_TRIGGER + +/* Opcode: Program P1 P2 P3 P4 P5 +** +** Execute the trigger program passed as P4 (type P4_SUBPROGRAM). +** +** P1 contains the address of the memory cell that contains the first memory +** cell in an array of values used as arguments to the sub-program. P2 +** contains the address to jump to if the sub-program throws an IGNORE +** exception using the RAISE() function. Register P3 contains the address +** of a memory cell in this (the parent) VM that is used to allocate the +** memory required by the sub-vdbe at runtime. +** +** P4 is a pointer to the VM containing the trigger program. +** +** If P5 is non-zero, then recursive program invocation is enabled. +*/ +case OP_Program: { /* jump */ + int nMem; /* Number of memory registers for sub-program */ + int nByte; /* Bytes of runtime space required for sub-program */ + Mem *pRt; /* Register to allocate runtime space */ + Mem *pMem; /* Used to iterate through memory cells */ + Mem *pEnd; /* Last memory cell in new array */ + VdbeFrame *pFrame; /* New vdbe frame to execute in */ + SubProgram *pProgram; /* Sub-program to execute */ + void *t; /* Token identifying trigger */ + + pProgram = pOp->p4.pProgram; + pRt = &aMem[pOp->p3]; + assert( pProgram->nOp>0 ); + + /* If the p5 flag is clear, then recursive invocation of triggers is + ** disabled for backwards compatibility (p5 is set if this sub-program + ** is really a trigger, not a foreign key action, and the flag set + ** and cleared by the "PRAGMA recursive_triggers" command is clear). + ** + ** It is recursive invocation of triggers, at the SQL level, that is + ** disabled. In some cases a single trigger may generate more than one + ** SubProgram (if the trigger may be executed with more than one different + ** ON CONFLICT algorithm). SubProgram structures associated with a + ** single trigger all have the same value for the SubProgram.token + ** variable. */ + if( pOp->p5 ){ + t = pProgram->token; + for(pFrame=p->pFrame; pFrame && pFrame->token!=t; pFrame=pFrame->pParent); + if( pFrame ) break; + } + + if( p->nFrame>=db->aLimit[SQLITE_LIMIT_TRIGGER_DEPTH] ){ + rc = SQLITE_ERROR; + sqlite3SetString(&p->zErrMsg, db, "too many levels of trigger recursion"); + break; + } + + /* Register pRt is used to store the memory required to save the state + ** of the current program, and the memory required at runtime to execute + ** the trigger program. If this trigger has been fired before, then pRt + ** is already allocated. Otherwise, it must be initialized. */ + if( (pRt->flags&MEM_Frame)==0 ){ + /* SubProgram.nMem is set to the number of memory cells used by the + ** program stored in SubProgram.aOp. As well as these, one memory + ** cell is required for each cursor used by the program. Set local + ** variable nMem (and later, VdbeFrame.nChildMem) to this value. + */ + nMem = pProgram->nMem + pProgram->nCsr; + nByte = ROUND8(sizeof(VdbeFrame)) + + nMem * sizeof(Mem) + + pProgram->nCsr * sizeof(VdbeCursor *) + + pProgram->nOnce * sizeof(u8); + pFrame = sqlite3DbMallocZero(db, nByte); + if( !pFrame ){ + goto no_mem; + } + sqlite3VdbeMemRelease(pRt); + pRt->flags = MEM_Frame; + pRt->u.pFrame = pFrame; + + pFrame->v = p; + pFrame->nChildMem = nMem; + pFrame->nChildCsr = pProgram->nCsr; + pFrame->pc = pc; + pFrame->aMem = p->aMem; + pFrame->nMem = p->nMem; + pFrame->apCsr = p->apCsr; + pFrame->nCursor = p->nCursor; + pFrame->aOp = p->aOp; + pFrame->nOp = p->nOp; + pFrame->token = pProgram->token; + pFrame->aOnceFlag = p->aOnceFlag; + pFrame->nOnceFlag = p->nOnceFlag; + + pEnd = &VdbeFrameMem(pFrame)[pFrame->nChildMem]; + for(pMem=VdbeFrameMem(pFrame); pMem!=pEnd; pMem++){ + pMem->flags = MEM_Undefined; + pMem->db = db; + } + }else{ + pFrame = pRt->u.pFrame; + assert( pProgram->nMem+pProgram->nCsr==pFrame->nChildMem ); + assert( pProgram->nCsr==pFrame->nChildCsr ); + assert( pc==pFrame->pc ); + } + + p->nFrame++; + pFrame->pParent = p->pFrame; + pFrame->lastRowid = lastRowid; + pFrame->nChange = p->nChange; + p->nChange = 0; + p->pFrame = pFrame; + p->aMem = aMem = &VdbeFrameMem(pFrame)[-1]; + p->nMem = pFrame->nChildMem; + p->nCursor = (u16)pFrame->nChildCsr; + p->apCsr = (VdbeCursor **)&aMem[p->nMem+1]; + p->aOp = aOp = pProgram->aOp; + p->nOp = pProgram->nOp; + p->aOnceFlag = (u8 *)&p->apCsr[p->nCursor]; + p->nOnceFlag = pProgram->nOnce; + pc = -1; + memset(p->aOnceFlag, 0, p->nOnceFlag); + + break; +} + +/* Opcode: Param P1 P2 * * * +** +** This opcode is only ever present in sub-programs called via the +** OP_Program instruction. Copy a value currently stored in a memory +** cell of the calling (parent) frame to cell P2 in the current frames +** address space. This is used by trigger programs to access the new.* +** and old.* values. +** +** The address of the cell in the parent frame is determined by adding +** the value of the P1 argument to the value of the P1 argument to the +** calling OP_Program instruction. +*/ +case OP_Param: { /* out2-prerelease */ + VdbeFrame *pFrame; + Mem *pIn; + pFrame = p->pFrame; + pIn = &pFrame->aMem[pOp->p1 + pFrame->aOp[pFrame->pc].p1]; + sqlite3VdbeMemShallowCopy(pOut, pIn, MEM_Ephem); + break; +} + +#endif /* #ifndef SQLITE_OMIT_TRIGGER */ + +#ifndef SQLITE_OMIT_FOREIGN_KEY +/* Opcode: FkCounter P1 P2 * * * +** Synopsis: fkctr[P1]+=P2 +** +** Increment a "constraint counter" by P2 (P2 may be negative or positive). +** If P1 is non-zero, the database constraint counter is incremented +** (deferred foreign key constraints). Otherwise, if P1 is zero, the +** statement counter is incremented (immediate foreign key constraints). +*/ +case OP_FkCounter: { + if( db->flags & SQLITE_DeferFKs ){ + db->nDeferredImmCons += pOp->p2; + }else if( pOp->p1 ){ + db->nDeferredCons += pOp->p2; + }else{ + p->nFkConstraint += pOp->p2; + } + break; +} + +/* Opcode: FkIfZero P1 P2 * * * +** Synopsis: if fkctr[P1]==0 goto P2 +** +** This opcode tests if a foreign key constraint-counter is currently zero. +** If so, jump to instruction P2. Otherwise, fall through to the next +** instruction. +** +** If P1 is non-zero, then the jump is taken if the database constraint-counter +** is zero (the one that counts deferred constraint violations). If P1 is +** zero, the jump is taken if the statement constraint-counter is zero +** (immediate foreign key constraint violations). +*/ +case OP_FkIfZero: { /* jump */ + if( pOp->p1 ){ + VdbeBranchTaken(db->nDeferredCons==0 && db->nDeferredImmCons==0, 2); + if( db->nDeferredCons==0 && db->nDeferredImmCons==0 ) pc = pOp->p2-1; + }else{ + VdbeBranchTaken(p->nFkConstraint==0 && db->nDeferredImmCons==0, 2); + if( p->nFkConstraint==0 && db->nDeferredImmCons==0 ) pc = pOp->p2-1; + } + break; +} +#endif /* #ifndef SQLITE_OMIT_FOREIGN_KEY */ + +#ifndef SQLITE_OMIT_AUTOINCREMENT +/* Opcode: MemMax P1 P2 * * * +** Synopsis: r[P1]=max(r[P1],r[P2]) +** +** P1 is a register in the root frame of this VM (the root frame is +** different from the current frame if this instruction is being executed +** within a sub-program). Set the value of register P1 to the maximum of +** its current value and the value in register P2. +** +** This instruction throws an error if the memory cell is not initially +** an integer. +*/ +case OP_MemMax: { /* in2 */ + VdbeFrame *pFrame; + if( p->pFrame ){ + for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent); + pIn1 = &pFrame->aMem[pOp->p1]; + }else{ + pIn1 = &aMem[pOp->p1]; + } + assert( memIsValid(pIn1) ); + sqlite3VdbeMemIntegerify(pIn1); + pIn2 = &aMem[pOp->p2]; + sqlite3VdbeMemIntegerify(pIn2); + if( pIn1->u.iu.i){ + pIn1->u.i = pIn2->u.i; + } + break; +} +#endif /* SQLITE_OMIT_AUTOINCREMENT */ + +/* Opcode: IfPos P1 P2 * * * +** Synopsis: if r[P1]>0 goto P2 +** +** If the value of register P1 is 1 or greater, jump to P2. +** +** It is illegal to use this instruction on a register that does +** not contain an integer. An assertion fault will result if you try. +*/ +case OP_IfPos: { /* jump, in1 */ + pIn1 = &aMem[pOp->p1]; + assert( pIn1->flags&MEM_Int ); + VdbeBranchTaken( pIn1->u.i>0, 2); + if( pIn1->u.i>0 ){ + pc = pOp->p2 - 1; + } + break; +} + +/* Opcode: IfNeg P1 P2 * * * +** Synopsis: if r[P1]<0 goto P2 +** +** If the value of register P1 is less than zero, jump to P2. +** +** It is illegal to use this instruction on a register that does +** not contain an integer. An assertion fault will result if you try. +*/ +case OP_IfNeg: { /* jump, in1 */ + pIn1 = &aMem[pOp->p1]; + assert( pIn1->flags&MEM_Int ); + VdbeBranchTaken(pIn1->u.i<0, 2); + if( pIn1->u.i<0 ){ + pc = pOp->p2 - 1; + } + break; +} + +/* Opcode: IfZero P1 P2 P3 * * +** Synopsis: r[P1]+=P3, if r[P1]==0 goto P2 +** +** The register P1 must contain an integer. Add literal P3 to the +** value in register P1. If the result is exactly 0, jump to P2. +** +** It is illegal to use this instruction on a register that does +** not contain an integer. An assertion fault will result if you try. +*/ +case OP_IfZero: { /* jump, in1 */ + pIn1 = &aMem[pOp->p1]; + assert( pIn1->flags&MEM_Int ); + pIn1->u.i += pOp->p3; + VdbeBranchTaken(pIn1->u.i==0, 2); + if( pIn1->u.i==0 ){ + pc = pOp->p2 - 1; + } + break; +} + +/* Opcode: AggStep * P2 P3 P4 P5 +** Synopsis: accum=r[P3] step(r[P2@P5]) +** +** Execute the step function for an aggregate. The +** function has P5 arguments. P4 is a pointer to the FuncDef +** structure that specifies the function. Use register +** P3 as the accumulator. +** +** The P5 arguments are taken from register P2 and its +** successors. +*/ +case OP_AggStep: { + int n; + int i; + Mem *pMem; + Mem *pRec; + sqlite3_context ctx; + sqlite3_value **apVal; + + n = pOp->p5; + assert( n>=0 ); + pRec = &aMem[pOp->p2]; + apVal = p->apArg; + assert( apVal || n==0 ); + for(i=0; ip4.pFunc; + assert( pOp->p3>0 && pOp->p3<=(p->nMem-p->nCursor) ); + ctx.pMem = pMem = &aMem[pOp->p3]; + pMem->n++; + ctx.s.flags = MEM_Null; + ctx.s.z = 0; + ctx.s.zMalloc = 0; + ctx.s.xDel = 0; + ctx.s.db = db; + ctx.isError = 0; + ctx.pColl = 0; + ctx.skipFlag = 0; + if( ctx.pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL ){ + assert( pOp>p->aOp ); + assert( pOp[-1].p4type==P4_COLLSEQ ); + assert( pOp[-1].opcode==OP_CollSeq ); + ctx.pColl = pOp[-1].p4.pColl; + } + (ctx.pFunc->xStep)(&ctx, n, apVal); /* IMP: R-24505-23230 */ + if( ctx.isError ){ + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3_value_text(&ctx.s)); + rc = ctx.isError; + } + if( ctx.skipFlag ){ + assert( pOp[-1].opcode==OP_CollSeq ); + i = pOp[-1].p1; + if( i ) sqlite3VdbeMemSetInt64(&aMem[i], 1); + } + + sqlite3VdbeMemRelease(&ctx.s); + + break; +} + +/* Opcode: AggFinal P1 P2 * P4 * +** Synopsis: accum=r[P1] N=P2 +** +** Execute the finalizer function for an aggregate. P1 is +** the memory location that is the accumulator for the aggregate. +** +** P2 is the number of arguments that the step function takes and +** P4 is a pointer to the FuncDef for this function. The P2 +** argument is not used by this opcode. It is only there to disambiguate +** functions that can take varying numbers of arguments. The +** P4 argument is only needed for the degenerate case where +** the step function was not previously called. +*/ +case OP_AggFinal: { + Mem *pMem; + assert( pOp->p1>0 && pOp->p1<=(p->nMem-p->nCursor) ); + pMem = &aMem[pOp->p1]; + assert( (pMem->flags & ~(MEM_Null|MEM_Agg))==0 ); + rc = sqlite3VdbeMemFinalize(pMem, pOp->p4.pFunc); + if( rc ){ + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3_value_text(pMem)); + } + sqlite3VdbeChangeEncoding(pMem, encoding); + UPDATE_MAX_BLOBSIZE(pMem); + if( sqlite3VdbeMemTooBig(pMem) ){ + goto too_big; + } + break; +} + +#ifndef SQLITE_OMIT_WAL +/* Opcode: Checkpoint P1 P2 P3 * * +** +** Checkpoint database P1. This is a no-op if P1 is not currently in +** WAL mode. Parameter P2 is one of SQLITE_CHECKPOINT_PASSIVE, FULL +** or RESTART. Write 1 or 0 into mem[P3] if the checkpoint returns +** SQLITE_BUSY or not, respectively. Write the number of pages in the +** WAL after the checkpoint into mem[P3+1] and the number of pages +** in the WAL that have been checkpointed after the checkpoint +** completes into mem[P3+2]. However on an error, mem[P3+1] and +** mem[P3+2] are initialized to -1. +*/ +case OP_Checkpoint: { + int i; /* Loop counter */ + int aRes[3]; /* Results */ + Mem *pMem; /* Write results here */ + + assert( p->readOnly==0 ); + aRes[0] = 0; + aRes[1] = aRes[2] = -1; + assert( pOp->p2==SQLITE_CHECKPOINT_PASSIVE + || pOp->p2==SQLITE_CHECKPOINT_FULL + || pOp->p2==SQLITE_CHECKPOINT_RESTART + ); + rc = sqlite3Checkpoint(db, pOp->p1, pOp->p2, &aRes[1], &aRes[2]); + if( rc==SQLITE_BUSY ){ + rc = SQLITE_OK; + aRes[0] = 1; + } + for(i=0, pMem = &aMem[pOp->p3]; i<3; i++, pMem++){ + sqlite3VdbeMemSetInt64(pMem, (i64)aRes[i]); + } + break; +}; +#endif + +#ifndef SQLITE_OMIT_PRAGMA +/* Opcode: JournalMode P1 P2 P3 * * +** +** Change the journal mode of database P1 to P3. P3 must be one of the +** PAGER_JOURNALMODE_XXX values. If changing between the various rollback +** modes (delete, truncate, persist, off and memory), this is a simple +** operation. No IO is required. +** +** If changing into or out of WAL mode the procedure is more complicated. +** +** Write a string containing the final journal-mode to register P2. +*/ +case OP_JournalMode: { /* out2-prerelease */ + Btree *pBt; /* Btree to change journal mode of */ + Pager *pPager; /* Pager associated with pBt */ + int eNew; /* New journal mode */ + int eOld; /* The old journal mode */ +#ifndef SQLITE_OMIT_WAL + const char *zFilename; /* Name of database file for pPager */ +#endif + + eNew = pOp->p3; + assert( eNew==PAGER_JOURNALMODE_DELETE + || eNew==PAGER_JOURNALMODE_TRUNCATE + || eNew==PAGER_JOURNALMODE_PERSIST + || eNew==PAGER_JOURNALMODE_OFF + || eNew==PAGER_JOURNALMODE_MEMORY + || eNew==PAGER_JOURNALMODE_WAL + || eNew==PAGER_JOURNALMODE_QUERY + ); + assert( pOp->p1>=0 && pOp->p1nDb ); + assert( p->readOnly==0 ); + + pBt = db->aDb[pOp->p1].pBt; + pPager = sqlite3BtreePager(pBt); + eOld = sqlite3PagerGetJournalMode(pPager); + if( eNew==PAGER_JOURNALMODE_QUERY ) eNew = eOld; + if( !sqlite3PagerOkToChangeJournalMode(pPager) ) eNew = eOld; + +#ifndef SQLITE_OMIT_WAL + zFilename = sqlite3PagerFilename(pPager, 1); + + /* Do not allow a transition to journal_mode=WAL for a database + ** in temporary storage or if the VFS does not support shared memory + */ + if( eNew==PAGER_JOURNALMODE_WAL + && (sqlite3Strlen30(zFilename)==0 /* Temp file */ + || !sqlite3PagerWalSupported(pPager)) /* No shared-memory support */ + ){ + eNew = eOld; + } + + if( (eNew!=eOld) + && (eOld==PAGER_JOURNALMODE_WAL || eNew==PAGER_JOURNALMODE_WAL) + ){ + if( !db->autoCommit || db->nVdbeRead>1 ){ + rc = SQLITE_ERROR; + sqlite3SetString(&p->zErrMsg, db, + "cannot change %s wal mode from within a transaction", + (eNew==PAGER_JOURNALMODE_WAL ? "into" : "out of") + ); + break; + }else{ + + if( eOld==PAGER_JOURNALMODE_WAL ){ + /* If leaving WAL mode, close the log file. If successful, the call + ** to PagerCloseWal() checkpoints and deletes the write-ahead-log + ** file. An EXCLUSIVE lock may still be held on the database file + ** after a successful return. + */ + rc = sqlite3PagerCloseWal(pPager); + if( rc==SQLITE_OK ){ + sqlite3PagerSetJournalMode(pPager, eNew); + } + }else if( eOld==PAGER_JOURNALMODE_MEMORY ){ + /* Cannot transition directly from MEMORY to WAL. Use mode OFF + ** as an intermediate */ + sqlite3PagerSetJournalMode(pPager, PAGER_JOURNALMODE_OFF); + } + + /* Open a transaction on the database file. Regardless of the journal + ** mode, this transaction always uses a rollback journal. + */ + assert( sqlite3BtreeIsInTrans(pBt)==0 ); + if( rc==SQLITE_OK ){ + rc = sqlite3BtreeSetVersion(pBt, (eNew==PAGER_JOURNALMODE_WAL ? 2 : 1)); + } + } + } +#endif /* ifndef SQLITE_OMIT_WAL */ + + if( rc ){ + eNew = eOld; + } + eNew = sqlite3PagerSetJournalMode(pPager, eNew); + + pOut = &aMem[pOp->p2]; + pOut->flags = MEM_Str|MEM_Static|MEM_Term; + pOut->z = (char *)sqlite3JournalModename(eNew); + pOut->n = sqlite3Strlen30(pOut->z); + pOut->enc = SQLITE_UTF8; + sqlite3VdbeChangeEncoding(pOut, encoding); + break; +}; +#endif /* SQLITE_OMIT_PRAGMA */ + +#if !defined(SQLITE_OMIT_VACUUM) && !defined(SQLITE_OMIT_ATTACH) +/* Opcode: Vacuum * * * * * +** +** Vacuum the entire database. This opcode will cause other virtual +** machines to be created and run. It may not be called from within +** a transaction. +*/ +case OP_Vacuum: { + assert( p->readOnly==0 ); + rc = sqlite3RunVacuum(&p->zErrMsg, db); + break; +} +#endif + +#if !defined(SQLITE_OMIT_AUTOVACUUM) +/* Opcode: IncrVacuum P1 P2 * * * +** +** Perform a single step of the incremental vacuum procedure on +** the P1 database. If the vacuum has finished, jump to instruction +** P2. Otherwise, fall through to the next instruction. +*/ +case OP_IncrVacuum: { /* jump */ + Btree *pBt; + + assert( pOp->p1>=0 && pOp->p1nDb ); + assert( (p->btreeMask & (((yDbMask)1)<p1))!=0 ); + assert( p->readOnly==0 ); + pBt = db->aDb[pOp->p1].pBt; + rc = sqlite3BtreeIncrVacuum(pBt); + VdbeBranchTaken(rc==SQLITE_DONE,2); + if( rc==SQLITE_DONE ){ + pc = pOp->p2 - 1; + rc = SQLITE_OK; + } + break; +} +#endif + +/* Opcode: Expire P1 * * * * +** +** Cause precompiled statements to become expired. An expired statement +** fails with an error code of SQLITE_SCHEMA if it is ever executed +** (via sqlite3_step()). +** +** If P1 is 0, then all SQL statements become expired. If P1 is non-zero, +** then only the currently executing statement is affected. +*/ +case OP_Expire: { + if( !pOp->p1 ){ + sqlite3ExpirePreparedStatements(db); + }else{ + p->expired = 1; + } + break; +} + +#ifndef SQLITE_OMIT_SHARED_CACHE +/* Opcode: TableLock P1 P2 P3 P4 * +** Synopsis: iDb=P1 root=P2 write=P3 +** +** Obtain a lock on a particular table. This instruction is only used when +** the shared-cache feature is enabled. +** +** P1 is the index of the database in sqlite3.aDb[] of the database +** on which the lock is acquired. A readlock is obtained if P3==0 or +** a write lock if P3==1. +** +** P2 contains the root-page of the table to lock. +** +** P4 contains a pointer to the name of the table being locked. This is only +** used to generate an error message if the lock cannot be obtained. +*/ +case OP_TableLock: { + u8 isWriteLock = (u8)pOp->p3; + if( isWriteLock || 0==(db->flags&SQLITE_ReadUncommitted) ){ + int p1 = pOp->p1; + assert( p1>=0 && p1nDb ); + assert( (p->btreeMask & (((yDbMask)1)<aDb[p1].pBt, pOp->p2, isWriteLock); + if( (rc&0xFF)==SQLITE_LOCKED ){ + const char *z = pOp->p4.z; + sqlite3SetString(&p->zErrMsg, db, "database table is locked: %s", z); + } + } + break; +} +#endif /* SQLITE_OMIT_SHARED_CACHE */ + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* Opcode: VBegin * * * P4 * +** +** P4 may be a pointer to an sqlite3_vtab structure. If so, call the +** xBegin method for that table. +** +** Also, whether or not P4 is set, check that this is not being called from +** within a callback to a virtual table xSync() method. If it is, the error +** code will be set to SQLITE_LOCKED. +*/ +case OP_VBegin: { + VTable *pVTab; + pVTab = pOp->p4.pVtab; + rc = sqlite3VtabBegin(db, pVTab); + if( pVTab ) sqlite3VtabImportErrmsg(p, pVTab->pVtab); + break; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* Opcode: VCreate P1 * * P4 * +** +** P4 is the name of a virtual table in database P1. Call the xCreate method +** for that table. +*/ +case OP_VCreate: { + rc = sqlite3VtabCallCreate(db, pOp->p1, pOp->p4.z, &p->zErrMsg); + break; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* Opcode: VDestroy P1 * * P4 * +** +** P4 is the name of a virtual table in database P1. Call the xDestroy method +** of that table. +*/ +case OP_VDestroy: { + p->inVtabMethod = 2; + rc = sqlite3VtabCallDestroy(db, pOp->p1, pOp->p4.z); + p->inVtabMethod = 0; + break; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* Opcode: VOpen P1 * * P4 * +** +** P4 is a pointer to a virtual table object, an sqlite3_vtab structure. +** P1 is a cursor number. This opcode opens a cursor to the virtual +** table and stores that cursor in P1. +*/ +case OP_VOpen: { + VdbeCursor *pCur; + sqlite3_vtab_cursor *pVtabCursor; + sqlite3_vtab *pVtab; + sqlite3_module *pModule; + + assert( p->bIsReader ); + pCur = 0; + pVtabCursor = 0; + pVtab = pOp->p4.pVtab->pVtab; + pModule = (sqlite3_module *)pVtab->pModule; + assert(pVtab && pModule); + rc = pModule->xOpen(pVtab, &pVtabCursor); + sqlite3VtabImportErrmsg(p, pVtab); + if( SQLITE_OK==rc ){ + /* Initialize sqlite3_vtab_cursor base class */ + pVtabCursor->pVtab = pVtab; + + /* Initialize vdbe cursor object */ + pCur = allocateCursor(p, pOp->p1, 0, -1, 0); + if( pCur ){ + pCur->pVtabCursor = pVtabCursor; + }else{ + db->mallocFailed = 1; + pModule->xClose(pVtabCursor); + } + } + break; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* Opcode: VFilter P1 P2 P3 P4 * +** Synopsis: iplan=r[P3] zplan='P4' +** +** P1 is a cursor opened using VOpen. P2 is an address to jump to if +** the filtered result set is empty. +** +** P4 is either NULL or a string that was generated by the xBestIndex +** method of the module. The interpretation of the P4 string is left +** to the module implementation. +** +** This opcode invokes the xFilter method on the virtual table specified +** by P1. The integer query plan parameter to xFilter is stored in register +** P3. Register P3+1 stores the argc parameter to be passed to the +** xFilter method. Registers P3+2..P3+1+argc are the argc +** additional parameters which are passed to +** xFilter as argv. Register P3+2 becomes argv[0] when passed to xFilter. +** +** A jump is made to P2 if the result set after filtering would be empty. +*/ +case OP_VFilter: { /* jump */ + int nArg; + int iQuery; + const sqlite3_module *pModule; + Mem *pQuery; + Mem *pArgc; + sqlite3_vtab_cursor *pVtabCursor; + sqlite3_vtab *pVtab; + VdbeCursor *pCur; + int res; + int i; + Mem **apArg; + + pQuery = &aMem[pOp->p3]; + pArgc = &pQuery[1]; + pCur = p->apCsr[pOp->p1]; + assert( memIsValid(pQuery) ); + REGISTER_TRACE(pOp->p3, pQuery); + assert( pCur->pVtabCursor ); + pVtabCursor = pCur->pVtabCursor; + pVtab = pVtabCursor->pVtab; + pModule = pVtab->pModule; + + /* Grab the index number and argc parameters */ + assert( (pQuery->flags&MEM_Int)!=0 && pArgc->flags==MEM_Int ); + nArg = (int)pArgc->u.i; + iQuery = (int)pQuery->u.i; + + /* Invoke the xFilter method */ + { + res = 0; + apArg = p->apArg; + for(i = 0; iinVtabMethod = 1; + rc = pModule->xFilter(pVtabCursor, iQuery, pOp->p4.z, nArg, apArg); + p->inVtabMethod = 0; + sqlite3VtabImportErrmsg(p, pVtab); + if( rc==SQLITE_OK ){ + res = pModule->xEof(pVtabCursor); + } + VdbeBranchTaken(res!=0,2); + if( res ){ + pc = pOp->p2 - 1; + } + } + pCur->nullRow = 0; + + break; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* Opcode: VColumn P1 P2 P3 * * +** Synopsis: r[P3]=vcolumn(P2) +** +** Store the value of the P2-th column of +** the row of the virtual-table that the +** P1 cursor is pointing to into register P3. +*/ +case OP_VColumn: { + sqlite3_vtab *pVtab; + const sqlite3_module *pModule; + Mem *pDest; + sqlite3_context sContext; + + VdbeCursor *pCur = p->apCsr[pOp->p1]; + assert( pCur->pVtabCursor ); + assert( pOp->p3>0 && pOp->p3<=(p->nMem-p->nCursor) ); + pDest = &aMem[pOp->p3]; + memAboutToChange(p, pDest); + if( pCur->nullRow ){ + sqlite3VdbeMemSetNull(pDest); + break; + } + pVtab = pCur->pVtabCursor->pVtab; + pModule = pVtab->pModule; + assert( pModule->xColumn ); + memset(&sContext, 0, sizeof(sContext)); + + /* The output cell may already have a buffer allocated. Move + ** the current contents to sContext.s so in case the user-function + ** can use the already allocated buffer instead of allocating a + ** new one. + */ + sqlite3VdbeMemMove(&sContext.s, pDest); + MemSetTypeFlag(&sContext.s, MEM_Null); + + rc = pModule->xColumn(pCur->pVtabCursor, &sContext, pOp->p2); + sqlite3VtabImportErrmsg(p, pVtab); + if( sContext.isError ){ + rc = sContext.isError; + } + + /* Copy the result of the function to the P3 register. We + ** do this regardless of whether or not an error occurred to ensure any + ** dynamic allocation in sContext.s (a Mem struct) is released. + */ + sqlite3VdbeChangeEncoding(&sContext.s, encoding); + sqlite3VdbeMemMove(pDest, &sContext.s); + REGISTER_TRACE(pOp->p3, pDest); + UPDATE_MAX_BLOBSIZE(pDest); + + if( sqlite3VdbeMemTooBig(pDest) ){ + goto too_big; + } + break; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* Opcode: VNext P1 P2 * * * +** +** Advance virtual table P1 to the next row in its result set and +** jump to instruction P2. Or, if the virtual table has reached +** the end of its result set, then fall through to the next instruction. +*/ +case OP_VNext: { /* jump */ + sqlite3_vtab *pVtab; + const sqlite3_module *pModule; + int res; + VdbeCursor *pCur; + + res = 0; + pCur = p->apCsr[pOp->p1]; + assert( pCur->pVtabCursor ); + if( pCur->nullRow ){ + break; + } + pVtab = pCur->pVtabCursor->pVtab; + pModule = pVtab->pModule; + assert( pModule->xNext ); + + /* Invoke the xNext() method of the module. There is no way for the + ** underlying implementation to return an error if one occurs during + ** xNext(). Instead, if an error occurs, true is returned (indicating that + ** data is available) and the error code returned when xColumn or + ** some other method is next invoked on the save virtual table cursor. + */ + p->inVtabMethod = 1; + rc = pModule->xNext(pCur->pVtabCursor); + p->inVtabMethod = 0; + sqlite3VtabImportErrmsg(p, pVtab); + if( rc==SQLITE_OK ){ + res = pModule->xEof(pCur->pVtabCursor); + } + VdbeBranchTaken(!res,2); + if( !res ){ + /* If there is data, jump to P2 */ + pc = pOp->p2 - 1; + } + goto check_for_interrupt; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* Opcode: VRename P1 * * P4 * +** +** P4 is a pointer to a virtual table object, an sqlite3_vtab structure. +** This opcode invokes the corresponding xRename method. The value +** in register P1 is passed as the zName argument to the xRename method. +*/ +case OP_VRename: { + sqlite3_vtab *pVtab; + Mem *pName; + + pVtab = pOp->p4.pVtab->pVtab; + pName = &aMem[pOp->p1]; + assert( pVtab->pModule->xRename ); + assert( memIsValid(pName) ); + assert( p->readOnly==0 ); + REGISTER_TRACE(pOp->p1, pName); + assert( pName->flags & MEM_Str ); + testcase( pName->enc==SQLITE_UTF8 ); + testcase( pName->enc==SQLITE_UTF16BE ); + testcase( pName->enc==SQLITE_UTF16LE ); + rc = sqlite3VdbeChangeEncoding(pName, SQLITE_UTF8); + if( rc==SQLITE_OK ){ + rc = pVtab->pModule->xRename(pVtab, pName->z); + sqlite3VtabImportErrmsg(p, pVtab); + p->expired = 0; + } + break; +} +#endif + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* Opcode: VUpdate P1 P2 P3 P4 P5 +** Synopsis: data=r[P3@P2] +** +** P4 is a pointer to a virtual table object, an sqlite3_vtab structure. +** This opcode invokes the corresponding xUpdate method. P2 values +** are contiguous memory cells starting at P3 to pass to the xUpdate +** invocation. The value in register (P3+P2-1) corresponds to the +** p2th element of the argv array passed to xUpdate. +** +** The xUpdate method will do a DELETE or an INSERT or both. +** The argv[0] element (which corresponds to memory cell P3) +** is the rowid of a row to delete. If argv[0] is NULL then no +** deletion occurs. The argv[1] element is the rowid of the new +** row. This can be NULL to have the virtual table select the new +** rowid for itself. The subsequent elements in the array are +** the values of columns in the new row. +** +** If P2==1 then no insert is performed. argv[0] is the rowid of +** a row to delete. +** +** P1 is a boolean flag. If it is set to true and the xUpdate call +** is successful, then the value returned by sqlite3_last_insert_rowid() +** is set to the value of the rowid for the row just inserted. +** +** P5 is the error actions (OE_Replace, OE_Fail, OE_Ignore, etc) to +** apply in the case of a constraint failure on an insert or update. +*/ +case OP_VUpdate: { + sqlite3_vtab *pVtab; + sqlite3_module *pModule; + int nArg; + int i; + sqlite_int64 rowid; + Mem **apArg; + Mem *pX; + + assert( pOp->p2==1 || pOp->p5==OE_Fail || pOp->p5==OE_Rollback + || pOp->p5==OE_Abort || pOp->p5==OE_Ignore || pOp->p5==OE_Replace + ); + assert( p->readOnly==0 ); + pVtab = pOp->p4.pVtab->pVtab; + pModule = (sqlite3_module *)pVtab->pModule; + nArg = pOp->p2; + assert( pOp->p4type==P4_VTAB ); + if( ALWAYS(pModule->xUpdate) ){ + u8 vtabOnConflict = db->vtabOnConflict; + apArg = p->apArg; + pX = &aMem[pOp->p3]; + for(i=0; ivtabOnConflict = pOp->p5; + rc = pModule->xUpdate(pVtab, nArg, apArg, &rowid); + db->vtabOnConflict = vtabOnConflict; + sqlite3VtabImportErrmsg(p, pVtab); + if( rc==SQLITE_OK && pOp->p1 ){ + assert( nArg>1 && apArg[0] && (apArg[0]->flags&MEM_Null) ); + db->lastRowid = lastRowid = rowid; + } + if( (rc&0xff)==SQLITE_CONSTRAINT && pOp->p4.pVtab->bConstraint ){ + if( pOp->p5==OE_Ignore ){ + rc = SQLITE_OK; + }else{ + p->errorAction = ((pOp->p5==OE_Replace) ? OE_Abort : pOp->p5); + } + }else{ + p->nChange++; + } + } + break; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +#ifndef SQLITE_OMIT_PAGER_PRAGMAS +/* Opcode: Pagecount P1 P2 * * * +** +** Write the current number of pages in database P1 to memory cell P2. +*/ +case OP_Pagecount: { /* out2-prerelease */ + pOut->u.i = sqlite3BtreeLastPage(db->aDb[pOp->p1].pBt); + break; +} +#endif + + +#ifndef SQLITE_OMIT_PAGER_PRAGMAS +/* Opcode: MaxPgcnt P1 P2 P3 * * +** +** Try to set the maximum page count for database P1 to the value in P3. +** Do not let the maximum page count fall below the current page count and +** do not change the maximum page count value if P3==0. +** +** Store the maximum page count after the change in register P2. +*/ +case OP_MaxPgcnt: { /* out2-prerelease */ + unsigned int newMax; + Btree *pBt; + + pBt = db->aDb[pOp->p1].pBt; + newMax = 0; + if( pOp->p3 ){ + newMax = sqlite3BtreeLastPage(pBt); + if( newMax < (unsigned)pOp->p3 ) newMax = (unsigned)pOp->p3; + } + pOut->u.i = sqlite3BtreeMaxPageCount(pBt, newMax); + break; +} +#endif + + +/* Opcode: Init * P2 * P4 * +** Synopsis: Start at P2 +** +** Programs contain a single instance of this opcode as the very first +** opcode. +** +** If tracing is enabled (by the sqlite3_trace()) interface, then +** the UTF-8 string contained in P4 is emitted on the trace callback. +** Or if P4 is blank, use the string returned by sqlite3_sql(). +** +** If P2 is not zero, jump to instruction P2. +*/ +case OP_Init: { /* jump */ + char *zTrace; + char *z; + + if( pOp->p2 ){ + pc = pOp->p2 - 1; + } +#ifndef SQLITE_OMIT_TRACE + if( db->xTrace + && !p->doingRerun + && (zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql))!=0 + ){ + z = sqlite3VdbeExpandSql(p, zTrace); + db->xTrace(db->pTraceArg, z); + sqlite3DbFree(db, z); + } +#ifdef SQLITE_USE_FCNTL_TRACE + zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql); + if( zTrace ){ + int i; + for(i=0; inDb; i++){ + if( (MASKBIT(i) & p->btreeMask)==0 ) continue; + sqlite3_file_control(db, db->aDb[i].zName, SQLITE_FCNTL_TRACE, zTrace); + } + } +#endif /* SQLITE_USE_FCNTL_TRACE */ +#ifdef SQLITE_DEBUG + if( (db->flags & SQLITE_SqlTrace)!=0 + && (zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql))!=0 + ){ + sqlite3DebugPrintf("SQL-trace: %s\n", zTrace); + } +#endif /* SQLITE_DEBUG */ +#endif /* SQLITE_OMIT_TRACE */ + break; +} + + +/* Opcode: Noop * * * * * +** +** Do nothing. This instruction is often useful as a jump +** destination. +*/ +/* +** The magic Explain opcode are only inserted when explain==2 (which +** is to say when the EXPLAIN QUERY PLAN syntax is used.) +** This opcode records information from the optimizer. It is the +** the same as a no-op. This opcodesnever appears in a real VM program. +*/ +default: { /* This is really OP_Noop and OP_Explain */ + assert( pOp->opcode==OP_Noop || pOp->opcode==OP_Explain ); + break; +} + +/***************************************************************************** +** The cases of the switch statement above this line should all be indented +** by 6 spaces. But the left-most 6 spaces have been removed to improve the +** readability. From this point on down, the normal indentation rules are +** restored. +*****************************************************************************/ + } + +#ifdef VDBE_PROFILE + { + u64 endTime = sqlite3Hwtime(); + if( endTime>start ) pOp->cycles += endTime - start; + pOp->cnt++; + } +#endif + + /* The following code adds nothing to the actual functionality + ** of the program. It is only here for testing and debugging. + ** On the other hand, it does burn CPU cycles every time through + ** the evaluator loop. So we can leave it out when NDEBUG is defined. + */ +#ifndef NDEBUG + assert( pc>=-1 && pcnOp ); + +#ifdef SQLITE_DEBUG + if( db->flags & SQLITE_VdbeTrace ){ + if( rc!=0 ) printf("rc=%d\n",rc); + if( pOp->opflags & (OPFLG_OUT2_PRERELEASE|OPFLG_OUT2) ){ + registerTrace(pOp->p2, &aMem[pOp->p2]); + } + if( pOp->opflags & OPFLG_OUT3 ){ + registerTrace(pOp->p3, &aMem[pOp->p3]); + } + } +#endif /* SQLITE_DEBUG */ +#endif /* NDEBUG */ + } /* The end of the for(;;) loop the loops through opcodes */ + + /* If we reach this point, it means that execution is finished with + ** an error of some kind. + */ +vdbe_error_halt: + assert( rc ); + p->rc = rc; + testcase( sqlite3GlobalConfig.xLog!=0 ); + sqlite3_log(rc, "statement aborts at %d: [%s] %s", + pc, p->zSql, p->zErrMsg); + sqlite3VdbeHalt(p); + if( rc==SQLITE_IOERR_NOMEM ) db->mallocFailed = 1; + rc = SQLITE_ERROR; + if( resetSchemaOnFault>0 ){ + sqlite3ResetOneSchema(db, resetSchemaOnFault-1); + } + + /* This is the only way out of this procedure. We have to + ** release the mutexes on btrees that were acquired at the + ** top. */ +vdbe_return: + db->lastRowid = lastRowid; + testcase( nVmStep>0 ); + p->aCounter[SQLITE_STMTSTATUS_VM_STEP] += (int)nVmStep; + sqlite3VdbeLeave(p); + return rc; + + /* Jump to here if a string or blob larger than SQLITE_MAX_LENGTH + ** is encountered. + */ +too_big: + sqlite3SetString(&p->zErrMsg, db, "string or blob too big"); + rc = SQLITE_TOOBIG; + goto vdbe_error_halt; + + /* Jump to here if a malloc() fails. + */ +no_mem: + db->mallocFailed = 1; + sqlite3SetString(&p->zErrMsg, db, "out of memory"); + rc = SQLITE_NOMEM; + goto vdbe_error_halt; + + /* Jump to here for any other kind of fatal error. The "rc" variable + ** should hold the error number. + */ +abort_due_to_error: + assert( p->zErrMsg==0 ); + if( db->mallocFailed ) rc = SQLITE_NOMEM; + if( rc!=SQLITE_IOERR_NOMEM ){ + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3ErrStr(rc)); + } + goto vdbe_error_halt; + + /* Jump to here if the sqlite3_interrupt() API sets the interrupt + ** flag. + */ +abort_due_to_interrupt: + assert( db->u1.isInterrupted ); + rc = SQLITE_INTERRUPT; + p->rc = rc; + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3ErrStr(rc)); + goto vdbe_error_halt; +} + + +/************** End of vdbe.c ************************************************/ +/************** Begin file vdbeblob.c ****************************************/ +/* +** 2007 May 1 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains code used to implement incremental BLOB I/O. +*/ + + +#ifndef SQLITE_OMIT_INCRBLOB + +/* +** Valid sqlite3_blob* handles point to Incrblob structures. +*/ +typedef struct Incrblob Incrblob; +struct Incrblob { + int flags; /* Copy of "flags" passed to sqlite3_blob_open() */ + int nByte; /* Size of open blob, in bytes */ + int iOffset; /* Byte offset of blob in cursor data */ + int iCol; /* Table column this handle is open on */ + BtCursor *pCsr; /* Cursor pointing at blob row */ + sqlite3_stmt *pStmt; /* Statement holding cursor open */ + sqlite3 *db; /* The associated database */ +}; + + +/* +** This function is used by both blob_open() and blob_reopen(). It seeks +** the b-tree cursor associated with blob handle p to point to row iRow. +** If successful, SQLITE_OK is returned and subsequent calls to +** sqlite3_blob_read() or sqlite3_blob_write() access the specified row. +** +** If an error occurs, or if the specified row does not exist or does not +** contain a value of type TEXT or BLOB in the column nominated when the +** blob handle was opened, then an error code is returned and *pzErr may +** be set to point to a buffer containing an error message. It is the +** responsibility of the caller to free the error message buffer using +** sqlite3DbFree(). +** +** If an error does occur, then the b-tree cursor is closed. All subsequent +** calls to sqlite3_blob_read(), blob_write() or blob_reopen() will +** immediately return SQLITE_ABORT. +*/ +static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){ + int rc; /* Error code */ + char *zErr = 0; /* Error message */ + Vdbe *v = (Vdbe *)p->pStmt; + + /* Set the value of the SQL statements only variable to integer iRow. + ** This is done directly instead of using sqlite3_bind_int64() to avoid + ** triggering asserts related to mutexes. + */ + assert( v->aVar[0].flags&MEM_Int ); + v->aVar[0].u.i = iRow; + + rc = sqlite3_step(p->pStmt); + if( rc==SQLITE_ROW ){ + VdbeCursor *pC = v->apCsr[0]; + u32 type = pC->aType[p->iCol]; + if( type<12 ){ + zErr = sqlite3MPrintf(p->db, "cannot open value of type %s", + type==0?"null": type==7?"real": "integer" + ); + rc = SQLITE_ERROR; + sqlite3_finalize(p->pStmt); + p->pStmt = 0; + }else{ + p->iOffset = pC->aType[p->iCol + pC->nField]; + p->nByte = sqlite3VdbeSerialTypeLen(type); + p->pCsr = pC->pCursor; + sqlite3BtreeIncrblobCursor(p->pCsr); + } + } + + if( rc==SQLITE_ROW ){ + rc = SQLITE_OK; + }else if( p->pStmt ){ + rc = sqlite3_finalize(p->pStmt); + p->pStmt = 0; + if( rc==SQLITE_OK ){ + zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow); + rc = SQLITE_ERROR; + }else{ + zErr = sqlite3MPrintf(p->db, "%s", sqlite3_errmsg(p->db)); + } + } + + assert( rc!=SQLITE_OK || zErr==0 ); + assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE ); + + *pzErr = zErr; + return rc; +} + +/* +** Open a blob handle. +*/ +SQLITE_API int sqlite3_blob_open( + sqlite3* db, /* The database connection */ + const char *zDb, /* The attached database containing the blob */ + const char *zTable, /* The table containing the blob */ + const char *zColumn, /* The column containing the blob */ + sqlite_int64 iRow, /* The row containing the glob */ + int flags, /* True -> read/write access, false -> read-only */ + sqlite3_blob **ppBlob /* Handle for accessing the blob returned here */ +){ + int nAttempt = 0; + int iCol; /* Index of zColumn in row-record */ + + /* This VDBE program seeks a btree cursor to the identified + ** db/table/row entry. The reason for using a vdbe program instead + ** of writing code to use the b-tree layer directly is that the + ** vdbe program will take advantage of the various transaction, + ** locking and error handling infrastructure built into the vdbe. + ** + ** After seeking the cursor, the vdbe executes an OP_ResultRow. + ** Code external to the Vdbe then "borrows" the b-tree cursor and + ** uses it to implement the blob_read(), blob_write() and + ** blob_bytes() functions. + ** + ** The sqlite3_blob_close() function finalizes the vdbe program, + ** which closes the b-tree cursor and (possibly) commits the + ** transaction. + */ + static const int iLn = VDBE_OFFSET_LINENO(4); + static const VdbeOpList openBlob[] = { + /* {OP_Transaction, 0, 0, 0}, // 0: Inserted separately */ + {OP_TableLock, 0, 0, 0}, /* 1: Acquire a read or write lock */ + /* One of the following two instructions is replaced by an OP_Noop. */ + {OP_OpenRead, 0, 0, 0}, /* 2: Open cursor 0 for reading */ + {OP_OpenWrite, 0, 0, 0}, /* 3: Open cursor 0 for read/write */ + {OP_Variable, 1, 1, 1}, /* 4: Push the rowid to the stack */ + {OP_NotExists, 0, 10, 1}, /* 5: Seek the cursor */ + {OP_Column, 0, 0, 1}, /* 6 */ + {OP_ResultRow, 1, 0, 0}, /* 7 */ + {OP_Goto, 0, 4, 0}, /* 8 */ + {OP_Close, 0, 0, 0}, /* 9 */ + {OP_Halt, 0, 0, 0}, /* 10 */ + }; + + int rc = SQLITE_OK; + char *zErr = 0; + Table *pTab; + Parse *pParse = 0; + Incrblob *pBlob = 0; + + flags = !!flags; /* flags = (flags ? 1 : 0); */ + *ppBlob = 0; + + sqlite3_mutex_enter(db->mutex); + + pBlob = (Incrblob *)sqlite3DbMallocZero(db, sizeof(Incrblob)); + if( !pBlob ) goto blob_open_out; + pParse = sqlite3StackAllocRaw(db, sizeof(*pParse)); + if( !pParse ) goto blob_open_out; + + do { + memset(pParse, 0, sizeof(Parse)); + pParse->db = db; + sqlite3DbFree(db, zErr); + zErr = 0; + + sqlite3BtreeEnterAll(db); + pTab = sqlite3LocateTable(pParse, 0, zTable, zDb); + if( pTab && IsVirtual(pTab) ){ + pTab = 0; + sqlite3ErrorMsg(pParse, "cannot open virtual table: %s", zTable); + } + if( pTab && !HasRowid(pTab) ){ + pTab = 0; + sqlite3ErrorMsg(pParse, "cannot open table without rowid: %s", zTable); + } +#ifndef SQLITE_OMIT_VIEW + if( pTab && pTab->pSelect ){ + pTab = 0; + sqlite3ErrorMsg(pParse, "cannot open view: %s", zTable); + } +#endif + if( !pTab ){ + if( pParse->zErrMsg ){ + sqlite3DbFree(db, zErr); + zErr = pParse->zErrMsg; + pParse->zErrMsg = 0; + } + rc = SQLITE_ERROR; + sqlite3BtreeLeaveAll(db); + goto blob_open_out; + } + + /* Now search pTab for the exact column. */ + for(iCol=0; iColnCol; iCol++) { + if( sqlite3StrICmp(pTab->aCol[iCol].zName, zColumn)==0 ){ + break; + } + } + if( iCol==pTab->nCol ){ + sqlite3DbFree(db, zErr); + zErr = sqlite3MPrintf(db, "no such column: \"%s\"", zColumn); + rc = SQLITE_ERROR; + sqlite3BtreeLeaveAll(db); + goto blob_open_out; + } + + /* If the value is being opened for writing, check that the + ** column is not indexed, and that it is not part of a foreign key. + ** It is against the rules to open a column to which either of these + ** descriptions applies for writing. */ + if( flags ){ + const char *zFault = 0; + Index *pIdx; +#ifndef SQLITE_OMIT_FOREIGN_KEY + if( db->flags&SQLITE_ForeignKeys ){ + /* Check that the column is not part of an FK child key definition. It + ** is not necessary to check if it is part of a parent key, as parent + ** key columns must be indexed. The check below will pick up this + ** case. */ + FKey *pFKey; + for(pFKey=pTab->pFKey; pFKey; pFKey=pFKey->pNextFrom){ + int j; + for(j=0; jnCol; j++){ + if( pFKey->aCol[j].iFrom==iCol ){ + zFault = "foreign key"; + } + } + } + } +#endif + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + int j; + for(j=0; jnKeyCol; j++){ + if( pIdx->aiColumn[j]==iCol ){ + zFault = "indexed"; + } + } + } + if( zFault ){ + sqlite3DbFree(db, zErr); + zErr = sqlite3MPrintf(db, "cannot open %s column for writing", zFault); + rc = SQLITE_ERROR; + sqlite3BtreeLeaveAll(db); + goto blob_open_out; + } + } + + pBlob->pStmt = (sqlite3_stmt *)sqlite3VdbeCreate(pParse); + assert( pBlob->pStmt || db->mallocFailed ); + if( pBlob->pStmt ){ + Vdbe *v = (Vdbe *)pBlob->pStmt; + int iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + + + sqlite3VdbeAddOp4Int(v, OP_Transaction, iDb, flags, + pTab->pSchema->schema_cookie, + pTab->pSchema->iGeneration); + sqlite3VdbeChangeP5(v, 1); + sqlite3VdbeAddOpList(v, ArraySize(openBlob), openBlob, iLn); + + /* Make sure a mutex is held on the table to be accessed */ + sqlite3VdbeUsesBtree(v, iDb); + + /* Configure the OP_TableLock instruction */ +#ifdef SQLITE_OMIT_SHARED_CACHE + sqlite3VdbeChangeToNoop(v, 1); +#else + sqlite3VdbeChangeP1(v, 1, iDb); + sqlite3VdbeChangeP2(v, 1, pTab->tnum); + sqlite3VdbeChangeP3(v, 1, flags); + sqlite3VdbeChangeP4(v, 1, pTab->zName, P4_TRANSIENT); +#endif + + /* Remove either the OP_OpenWrite or OpenRead. Set the P2 + ** parameter of the other to pTab->tnum. */ + sqlite3VdbeChangeToNoop(v, 3 - flags); + sqlite3VdbeChangeP2(v, 2 + flags, pTab->tnum); + sqlite3VdbeChangeP3(v, 2 + flags, iDb); + + /* Configure the number of columns. Configure the cursor to + ** think that the table has one more column than it really + ** does. An OP_Column to retrieve this imaginary column will + ** always return an SQL NULL. This is useful because it means + ** we can invoke OP_Column to fill in the vdbe cursors type + ** and offset cache without causing any IO. + */ + sqlite3VdbeChangeP4(v, 2+flags, SQLITE_INT_TO_PTR(pTab->nCol+1),P4_INT32); + sqlite3VdbeChangeP2(v, 6, pTab->nCol); + if( !db->mallocFailed ){ + pParse->nVar = 1; + pParse->nMem = 1; + pParse->nTab = 1; + sqlite3VdbeMakeReady(v, pParse); + } + } + + pBlob->flags = flags; + pBlob->iCol = iCol; + pBlob->db = db; + sqlite3BtreeLeaveAll(db); + if( db->mallocFailed ){ + goto blob_open_out; + } + sqlite3_bind_int64(pBlob->pStmt, 1, iRow); + rc = blobSeekToRow(pBlob, iRow, &zErr); + } while( (++nAttempt)mallocFailed==0 ){ + *ppBlob = (sqlite3_blob *)pBlob; + }else{ + if( pBlob && pBlob->pStmt ) sqlite3VdbeFinalize((Vdbe *)pBlob->pStmt); + sqlite3DbFree(db, pBlob); + } + sqlite3Error(db, rc, (zErr ? "%s" : 0), zErr); + sqlite3DbFree(db, zErr); + sqlite3ParserReset(pParse); + sqlite3StackFree(db, pParse); + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +/* +** Close a blob handle that was previously created using +** sqlite3_blob_open(). +*/ +SQLITE_API int sqlite3_blob_close(sqlite3_blob *pBlob){ + Incrblob *p = (Incrblob *)pBlob; + int rc; + sqlite3 *db; + + if( p ){ + db = p->db; + sqlite3_mutex_enter(db->mutex); + rc = sqlite3_finalize(p->pStmt); + sqlite3DbFree(db, p); + sqlite3_mutex_leave(db->mutex); + }else{ + rc = SQLITE_OK; + } + return rc; +} + +/* +** Perform a read or write operation on a blob +*/ +static int blobReadWrite( + sqlite3_blob *pBlob, + void *z, + int n, + int iOffset, + int (*xCall)(BtCursor*, u32, u32, void*) +){ + int rc; + Incrblob *p = (Incrblob *)pBlob; + Vdbe *v; + sqlite3 *db; + + if( p==0 ) return SQLITE_MISUSE_BKPT; + db = p->db; + sqlite3_mutex_enter(db->mutex); + v = (Vdbe*)p->pStmt; + + if( n<0 || iOffset<0 || (iOffset+n)>p->nByte ){ + /* Request is out of range. Return a transient error. */ + rc = SQLITE_ERROR; + sqlite3Error(db, SQLITE_ERROR, 0); + }else if( v==0 ){ + /* If there is no statement handle, then the blob-handle has + ** already been invalidated. Return SQLITE_ABORT in this case. + */ + rc = SQLITE_ABORT; + }else{ + /* Call either BtreeData() or BtreePutData(). If SQLITE_ABORT is + ** returned, clean-up the statement handle. + */ + assert( db == v->db ); + sqlite3BtreeEnterCursor(p->pCsr); + rc = xCall(p->pCsr, iOffset+p->iOffset, n, z); + sqlite3BtreeLeaveCursor(p->pCsr); + if( rc==SQLITE_ABORT ){ + sqlite3VdbeFinalize(v); + p->pStmt = 0; + }else{ + db->errCode = rc; + v->rc = rc; + } + } + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +/* +** Read data from a blob handle. +*/ +SQLITE_API int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){ + return blobReadWrite(pBlob, z, n, iOffset, sqlite3BtreeData); +} + +/* +** Write data to a blob handle. +*/ +SQLITE_API int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){ + return blobReadWrite(pBlob, (void *)z, n, iOffset, sqlite3BtreePutData); +} + +/* +** Query a blob handle for the size of the data. +** +** The Incrblob.nByte field is fixed for the lifetime of the Incrblob +** so no mutex is required for access. +*/ +SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *pBlob){ + Incrblob *p = (Incrblob *)pBlob; + return (p && p->pStmt) ? p->nByte : 0; +} + +/* +** Move an existing blob handle to point to a different row of the same +** database table. +** +** If an error occurs, or if the specified row does not exist or does not +** contain a blob or text value, then an error code is returned and the +** database handle error code and message set. If this happens, then all +** subsequent calls to sqlite3_blob_xxx() functions (except blob_close()) +** immediately return SQLITE_ABORT. +*/ +SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){ + int rc; + Incrblob *p = (Incrblob *)pBlob; + sqlite3 *db; + + if( p==0 ) return SQLITE_MISUSE_BKPT; + db = p->db; + sqlite3_mutex_enter(db->mutex); + + if( p->pStmt==0 ){ + /* If there is no statement handle, then the blob-handle has + ** already been invalidated. Return SQLITE_ABORT in this case. + */ + rc = SQLITE_ABORT; + }else{ + char *zErr; + rc = blobSeekToRow(p, iRow, &zErr); + if( rc!=SQLITE_OK ){ + sqlite3Error(db, rc, (zErr ? "%s" : 0), zErr); + sqlite3DbFree(db, zErr); + } + assert( rc!=SQLITE_SCHEMA ); + } + + rc = sqlite3ApiExit(db, rc); + assert( rc==SQLITE_OK || p->pStmt==0 ); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +#endif /* #ifndef SQLITE_OMIT_INCRBLOB */ + +/************** End of vdbeblob.c ********************************************/ +/************** Begin file vdbesort.c ****************************************/ +/* +** 2011 July 9 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code for the VdbeSorter object, used in concert with +** a VdbeCursor to sort large numbers of keys (as may be required, for +** example, by CREATE INDEX statements on tables too large to fit in main +** memory). +*/ + + + +typedef struct VdbeSorterIter VdbeSorterIter; +typedef struct SorterRecord SorterRecord; +typedef struct FileWriter FileWriter; + +/* +** NOTES ON DATA STRUCTURE USED FOR N-WAY MERGES: +** +** As keys are added to the sorter, they are written to disk in a series +** of sorted packed-memory-arrays (PMAs). The size of each PMA is roughly +** the same as the cache-size allowed for temporary databases. In order +** to allow the caller to extract keys from the sorter in sorted order, +** all PMAs currently stored on disk must be merged together. This comment +** describes the data structure used to do so. The structure supports +** merging any number of arrays in a single pass with no redundant comparison +** operations. +** +** The aIter[] array contains an iterator for each of the PMAs being merged. +** An aIter[] iterator either points to a valid key or else is at EOF. For +** the purposes of the paragraphs below, we assume that the array is actually +** N elements in size, where N is the smallest power of 2 greater to or equal +** to the number of iterators being merged. The extra aIter[] elements are +** treated as if they are empty (always at EOF). +** +** The aTree[] array is also N elements in size. The value of N is stored in +** the VdbeSorter.nTree variable. +** +** The final (N/2) elements of aTree[] contain the results of comparing +** pairs of iterator keys together. Element i contains the result of +** comparing aIter[2*i-N] and aIter[2*i-N+1]. Whichever key is smaller, the +** aTree element is set to the index of it. +** +** For the purposes of this comparison, EOF is considered greater than any +** other key value. If the keys are equal (only possible with two EOF +** values), it doesn't matter which index is stored. +** +** The (N/4) elements of aTree[] that precede the final (N/2) described +** above contains the index of the smallest of each block of 4 iterators. +** And so on. So that aTree[1] contains the index of the iterator that +** currently points to the smallest key value. aTree[0] is unused. +** +** Example: +** +** aIter[0] -> Banana +** aIter[1] -> Feijoa +** aIter[2] -> Elderberry +** aIter[3] -> Currant +** aIter[4] -> Grapefruit +** aIter[5] -> Apple +** aIter[6] -> Durian +** aIter[7] -> EOF +** +** aTree[] = { X, 5 0, 5 0, 3, 5, 6 } +** +** The current element is "Apple" (the value of the key indicated by +** iterator 5). When the Next() operation is invoked, iterator 5 will +** be advanced to the next key in its segment. Say the next key is +** "Eggplant": +** +** aIter[5] -> Eggplant +** +** The contents of aTree[] are updated first by comparing the new iterator +** 5 key to the current key of iterator 4 (still "Grapefruit"). The iterator +** 5 value is still smaller, so aTree[6] is set to 5. And so on up the tree. +** The value of iterator 6 - "Durian" - is now smaller than that of iterator +** 5, so aTree[3] is set to 6. Key 0 is smaller than key 6 (BananaaAlloc); + sqlite3DbFree(db, pIter->aBuffer); + memset(pIter, 0, sizeof(VdbeSorterIter)); +} + +/* +** Read nByte bytes of data from the stream of data iterated by object p. +** If successful, set *ppOut to point to a buffer containing the data +** and return SQLITE_OK. Otherwise, if an error occurs, return an SQLite +** error code. +** +** The buffer indicated by *ppOut may only be considered valid until the +** next call to this function. +*/ +static int vdbeSorterIterRead( + sqlite3 *db, /* Database handle (for malloc) */ + VdbeSorterIter *p, /* Iterator */ + int nByte, /* Bytes of data to read */ + u8 **ppOut /* OUT: Pointer to buffer containing data */ +){ + int iBuf; /* Offset within buffer to read from */ + int nAvail; /* Bytes of data available in buffer */ + assert( p->aBuffer ); + + /* If there is no more data to be read from the buffer, read the next + ** p->nBuffer bytes of data from the file into it. Or, if there are less + ** than p->nBuffer bytes remaining in the PMA, read all remaining data. */ + iBuf = p->iReadOff % p->nBuffer; + if( iBuf==0 ){ + int nRead; /* Bytes to read from disk */ + int rc; /* sqlite3OsRead() return code */ + + /* Determine how many bytes of data to read. */ + if( (p->iEof - p->iReadOff) > (i64)p->nBuffer ){ + nRead = p->nBuffer; + }else{ + nRead = (int)(p->iEof - p->iReadOff); + } + assert( nRead>0 ); + + /* Read data from the file. Return early if an error occurs. */ + rc = sqlite3OsRead(p->pFile, p->aBuffer, nRead, p->iReadOff); + assert( rc!=SQLITE_IOERR_SHORT_READ ); + if( rc!=SQLITE_OK ) return rc; + } + nAvail = p->nBuffer - iBuf; + + if( nByte<=nAvail ){ + /* The requested data is available in the in-memory buffer. In this + ** case there is no need to make a copy of the data, just return a + ** pointer into the buffer to the caller. */ + *ppOut = &p->aBuffer[iBuf]; + p->iReadOff += nByte; + }else{ + /* The requested data is not all available in the in-memory buffer. + ** In this case, allocate space at p->aAlloc[] to copy the requested + ** range into. Then return a copy of pointer p->aAlloc to the caller. */ + int nRem; /* Bytes remaining to copy */ + + /* Extend the p->aAlloc[] allocation if required. */ + if( p->nAllocnAlloc*2; + while( nByte>nNew ) nNew = nNew*2; + p->aAlloc = sqlite3DbReallocOrFree(db, p->aAlloc, nNew); + if( !p->aAlloc ) return SQLITE_NOMEM; + p->nAlloc = nNew; + } + + /* Copy as much data as is available in the buffer into the start of + ** p->aAlloc[]. */ + memcpy(p->aAlloc, &p->aBuffer[iBuf], nAvail); + p->iReadOff += nAvail; + nRem = nByte - nAvail; + + /* The following loop copies up to p->nBuffer bytes per iteration into + ** the p->aAlloc[] buffer. */ + while( nRem>0 ){ + int rc; /* vdbeSorterIterRead() return code */ + int nCopy; /* Number of bytes to copy */ + u8 *aNext; /* Pointer to buffer to copy data from */ + + nCopy = nRem; + if( nRem>p->nBuffer ) nCopy = p->nBuffer; + rc = vdbeSorterIterRead(db, p, nCopy, &aNext); + if( rc!=SQLITE_OK ) return rc; + assert( aNext!=p->aAlloc ); + memcpy(&p->aAlloc[nByte - nRem], aNext, nCopy); + nRem -= nCopy; + } + + *ppOut = p->aAlloc; + } + + return SQLITE_OK; +} + +/* +** Read a varint from the stream of data accessed by p. Set *pnOut to +** the value read. +*/ +static int vdbeSorterIterVarint(sqlite3 *db, VdbeSorterIter *p, u64 *pnOut){ + int iBuf; + + iBuf = p->iReadOff % p->nBuffer; + if( iBuf && (p->nBuffer-iBuf)>=9 ){ + p->iReadOff += sqlite3GetVarint(&p->aBuffer[iBuf], pnOut); + }else{ + u8 aVarint[16], *a; + int i = 0, rc; + do{ + rc = vdbeSorterIterRead(db, p, 1, &a); + if( rc ) return rc; + aVarint[(i++)&0xf] = a[0]; + }while( (a[0]&0x80)!=0 ); + sqlite3GetVarint(aVarint, pnOut); + } + + return SQLITE_OK; +} + + +/* +** Advance iterator pIter to the next key in its PMA. Return SQLITE_OK if +** no error occurs, or an SQLite error code if one does. +*/ +static int vdbeSorterIterNext( + sqlite3 *db, /* Database handle (for sqlite3DbMalloc() ) */ + VdbeSorterIter *pIter /* Iterator to advance */ +){ + int rc; /* Return Code */ + u64 nRec = 0; /* Size of record in bytes */ + + if( pIter->iReadOff>=pIter->iEof ){ + /* This is an EOF condition */ + vdbeSorterIterZero(db, pIter); + return SQLITE_OK; + } + + rc = vdbeSorterIterVarint(db, pIter, &nRec); + if( rc==SQLITE_OK ){ + pIter->nKey = (int)nRec; + rc = vdbeSorterIterRead(db, pIter, (int)nRec, &pIter->aKey); + } + + return rc; +} + +/* +** Initialize iterator pIter to scan through the PMA stored in file pFile +** starting at offset iStart and ending at offset iEof-1. This function +** leaves the iterator pointing to the first key in the PMA (or EOF if the +** PMA is empty). +*/ +static int vdbeSorterIterInit( + sqlite3 *db, /* Database handle */ + const VdbeSorter *pSorter, /* Sorter object */ + i64 iStart, /* Start offset in pFile */ + VdbeSorterIter *pIter, /* Iterator to populate */ + i64 *pnByte /* IN/OUT: Increment this value by PMA size */ +){ + int rc = SQLITE_OK; + int nBuf; + + nBuf = sqlite3BtreeGetPageSize(db->aDb[0].pBt); + + assert( pSorter->iWriteOff>iStart ); + assert( pIter->aAlloc==0 ); + assert( pIter->aBuffer==0 ); + pIter->pFile = pSorter->pTemp1; + pIter->iReadOff = iStart; + pIter->nAlloc = 128; + pIter->aAlloc = (u8 *)sqlite3DbMallocRaw(db, pIter->nAlloc); + pIter->nBuffer = nBuf; + pIter->aBuffer = (u8 *)sqlite3DbMallocRaw(db, nBuf); + + if( !pIter->aBuffer ){ + rc = SQLITE_NOMEM; + }else{ + int iBuf; + + iBuf = iStart % nBuf; + if( iBuf ){ + int nRead = nBuf - iBuf; + if( (iStart + nRead) > pSorter->iWriteOff ){ + nRead = (int)(pSorter->iWriteOff - iStart); + } + rc = sqlite3OsRead( + pSorter->pTemp1, &pIter->aBuffer[iBuf], nRead, iStart + ); + } + + if( rc==SQLITE_OK ){ + u64 nByte; /* Size of PMA in bytes */ + pIter->iEof = pSorter->iWriteOff; + rc = vdbeSorterIterVarint(db, pIter, &nByte); + pIter->iEof = pIter->iReadOff + nByte; + *pnByte += nByte; + } + } + + if( rc==SQLITE_OK ){ + rc = vdbeSorterIterNext(db, pIter); + } + return rc; +} + + +/* +** Compare key1 (buffer pKey1, size nKey1 bytes) with key2 (buffer pKey2, +** size nKey2 bytes). Argument pKeyInfo supplies the collation functions +** used by the comparison. If an error occurs, return an SQLite error code. +** Otherwise, return SQLITE_OK and set *pRes to a negative, zero or positive +** value, depending on whether key1 is smaller, equal to or larger than key2. +** +** If the bOmitRowid argument is non-zero, assume both keys end in a rowid +** field. For the purposes of the comparison, ignore it. Also, if bOmitRowid +** is true and key1 contains even a single NULL value, it is considered to +** be less than key2. Even if key2 also contains NULL values. +** +** If pKey2 is passed a NULL pointer, then it is assumed that the pCsr->aSpace +** has been allocated and contains an unpacked record that is used as key2. +*/ +static void vdbeSorterCompare( + const VdbeCursor *pCsr, /* Cursor object (for pKeyInfo) */ + int nIgnore, /* Ignore the last nIgnore fields */ + const void *pKey1, int nKey1, /* Left side of comparison */ + const void *pKey2, int nKey2, /* Right side of comparison */ + int *pRes /* OUT: Result of comparison */ +){ + KeyInfo *pKeyInfo = pCsr->pKeyInfo; + VdbeSorter *pSorter = pCsr->pSorter; + UnpackedRecord *r2 = pSorter->pUnpacked; + int i; + + if( pKey2 ){ + sqlite3VdbeRecordUnpack(pKeyInfo, nKey2, pKey2, r2); + } + + if( nIgnore ){ + r2->nField = pKeyInfo->nField - nIgnore; + assert( r2->nField>0 ); + for(i=0; inField; i++){ + if( r2->aMem[i].flags & MEM_Null ){ + *pRes = -1; + return; + } + } + assert( r2->default_rc==0 ); + } + + *pRes = sqlite3VdbeRecordCompare(nKey1, pKey1, r2, 0); +} + +/* +** This function is called to compare two iterator keys when merging +** multiple b-tree segments. Parameter iOut is the index of the aTree[] +** value to recalculate. +*/ +static int vdbeSorterDoCompare(const VdbeCursor *pCsr, int iOut){ + VdbeSorter *pSorter = pCsr->pSorter; + int i1; + int i2; + int iRes; + VdbeSorterIter *p1; + VdbeSorterIter *p2; + + assert( iOutnTree && iOut>0 ); + + if( iOut>=(pSorter->nTree/2) ){ + i1 = (iOut - pSorter->nTree/2) * 2; + i2 = i1 + 1; + }else{ + i1 = pSorter->aTree[iOut*2]; + i2 = pSorter->aTree[iOut*2+1]; + } + + p1 = &pSorter->aIter[i1]; + p2 = &pSorter->aIter[i2]; + + if( p1->pFile==0 ){ + iRes = i2; + }else if( p2->pFile==0 ){ + iRes = i1; + }else{ + int res; + assert( pCsr->pSorter->pUnpacked!=0 ); /* allocated in vdbeSorterMerge() */ + vdbeSorterCompare( + pCsr, 0, p1->aKey, p1->nKey, p2->aKey, p2->nKey, &res + ); + if( res<=0 ){ + iRes = i1; + }else{ + iRes = i2; + } + } + + pSorter->aTree[iOut] = iRes; + return SQLITE_OK; +} + +/* +** Initialize the temporary index cursor just opened as a sorter cursor. +*/ +SQLITE_PRIVATE int sqlite3VdbeSorterInit(sqlite3 *db, VdbeCursor *pCsr){ + int pgsz; /* Page size of main database */ + int mxCache; /* Cache size */ + VdbeSorter *pSorter; /* The new sorter */ + char *d; /* Dummy */ + + assert( pCsr->pKeyInfo && pCsr->pBt==0 ); + pCsr->pSorter = pSorter = sqlite3DbMallocZero(db, sizeof(VdbeSorter)); + if( pSorter==0 ){ + return SQLITE_NOMEM; + } + + pSorter->pUnpacked = sqlite3VdbeAllocUnpackedRecord(pCsr->pKeyInfo, 0, 0, &d); + if( pSorter->pUnpacked==0 ) return SQLITE_NOMEM; + assert( pSorter->pUnpacked==(UnpackedRecord *)d ); + + if( !sqlite3TempInMemory(db) ){ + pgsz = sqlite3BtreeGetPageSize(db->aDb[0].pBt); + pSorter->mnPmaSize = SORTER_MIN_WORKING * pgsz; + mxCache = db->aDb[0].pSchema->cache_size; + if( mxCachemxPmaSize = mxCache * pgsz; + } + + return SQLITE_OK; +} + +/* +** Free the list of sorted records starting at pRecord. +*/ +static void vdbeSorterRecordFree(sqlite3 *db, SorterRecord *pRecord){ + SorterRecord *p; + SorterRecord *pNext; + for(p=pRecord; p; p=pNext){ + pNext = p->pNext; + sqlite3DbFree(db, p); + } +} + +/* +** Reset a sorting cursor back to its original empty state. +*/ +SQLITE_PRIVATE void sqlite3VdbeSorterReset(sqlite3 *db, VdbeSorter *pSorter){ + if( pSorter->aIter ){ + int i; + for(i=0; inTree; i++){ + vdbeSorterIterZero(db, &pSorter->aIter[i]); + } + sqlite3DbFree(db, pSorter->aIter); + pSorter->aIter = 0; + } + if( pSorter->pTemp1 ){ + sqlite3OsCloseFree(pSorter->pTemp1); + pSorter->pTemp1 = 0; + } + vdbeSorterRecordFree(db, pSorter->pRecord); + pSorter->pRecord = 0; + pSorter->iWriteOff = 0; + pSorter->iReadOff = 0; + pSorter->nInMemory = 0; + pSorter->nTree = 0; + pSorter->nPMA = 0; + pSorter->aTree = 0; +} + + +/* +** Free any cursor components allocated by sqlite3VdbeSorterXXX routines. +*/ +SQLITE_PRIVATE void sqlite3VdbeSorterClose(sqlite3 *db, VdbeCursor *pCsr){ + VdbeSorter *pSorter = pCsr->pSorter; + if( pSorter ){ + sqlite3VdbeSorterReset(db, pSorter); + sqlite3DbFree(db, pSorter->pUnpacked); + sqlite3DbFree(db, pSorter); + pCsr->pSorter = 0; + } +} + +/* +** Allocate space for a file-handle and open a temporary file. If successful, +** set *ppFile to point to the malloc'd file-handle and return SQLITE_OK. +** Otherwise, set *ppFile to 0 and return an SQLite error code. +*/ +static int vdbeSorterOpenTempFile(sqlite3 *db, sqlite3_file **ppFile){ + int dummy; + return sqlite3OsOpenMalloc(db->pVfs, 0, ppFile, + SQLITE_OPEN_TEMP_JOURNAL | + SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | + SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE, &dummy + ); +} + +/* +** Merge the two sorted lists p1 and p2 into a single list. +** Set *ppOut to the head of the new list. +*/ +static void vdbeSorterMerge( + const VdbeCursor *pCsr, /* For pKeyInfo */ + SorterRecord *p1, /* First list to merge */ + SorterRecord *p2, /* Second list to merge */ + SorterRecord **ppOut /* OUT: Head of merged list */ +){ + SorterRecord *pFinal = 0; + SorterRecord **pp = &pFinal; + void *pVal2 = p2 ? p2->pVal : 0; + + while( p1 && p2 ){ + int res; + vdbeSorterCompare(pCsr, 0, p1->pVal, p1->nVal, pVal2, p2->nVal, &res); + if( res<=0 ){ + *pp = p1; + pp = &p1->pNext; + p1 = p1->pNext; + pVal2 = 0; + }else{ + *pp = p2; + pp = &p2->pNext; + p2 = p2->pNext; + if( p2==0 ) break; + pVal2 = p2->pVal; + } + } + *pp = p1 ? p1 : p2; + *ppOut = pFinal; +} + +/* +** Sort the linked list of records headed at pCsr->pRecord. Return SQLITE_OK +** if successful, or an SQLite error code (i.e. SQLITE_NOMEM) if an error +** occurs. +*/ +static int vdbeSorterSort(const VdbeCursor *pCsr){ + int i; + SorterRecord **aSlot; + SorterRecord *p; + VdbeSorter *pSorter = pCsr->pSorter; + + aSlot = (SorterRecord **)sqlite3MallocZero(64 * sizeof(SorterRecord *)); + if( !aSlot ){ + return SQLITE_NOMEM; + } + + p = pSorter->pRecord; + while( p ){ + SorterRecord *pNext = p->pNext; + p->pNext = 0; + for(i=0; aSlot[i]; i++){ + vdbeSorterMerge(pCsr, p, aSlot[i], &p); + aSlot[i] = 0; + } + aSlot[i] = p; + p = pNext; + } + + p = 0; + for(i=0; i<64; i++){ + vdbeSorterMerge(pCsr, p, aSlot[i], &p); + } + pSorter->pRecord = p; + + sqlite3_free(aSlot); + return SQLITE_OK; +} + +/* +** Initialize a file-writer object. +*/ +static void fileWriterInit( + sqlite3 *db, /* Database (for malloc) */ + sqlite3_file *pFile, /* File to write to */ + FileWriter *p, /* Object to populate */ + i64 iStart /* Offset of pFile to begin writing at */ +){ + int nBuf = sqlite3BtreeGetPageSize(db->aDb[0].pBt); + + memset(p, 0, sizeof(FileWriter)); + p->aBuffer = (u8 *)sqlite3DbMallocRaw(db, nBuf); + if( !p->aBuffer ){ + p->eFWErr = SQLITE_NOMEM; + }else{ + p->iBufEnd = p->iBufStart = (iStart % nBuf); + p->iWriteOff = iStart - p->iBufStart; + p->nBuffer = nBuf; + p->pFile = pFile; + } +} + +/* +** Write nData bytes of data to the file-write object. Return SQLITE_OK +** if successful, or an SQLite error code if an error occurs. +*/ +static void fileWriterWrite(FileWriter *p, u8 *pData, int nData){ + int nRem = nData; + while( nRem>0 && p->eFWErr==0 ){ + int nCopy = nRem; + if( nCopy>(p->nBuffer - p->iBufEnd) ){ + nCopy = p->nBuffer - p->iBufEnd; + } + + memcpy(&p->aBuffer[p->iBufEnd], &pData[nData-nRem], nCopy); + p->iBufEnd += nCopy; + if( p->iBufEnd==p->nBuffer ){ + p->eFWErr = sqlite3OsWrite(p->pFile, + &p->aBuffer[p->iBufStart], p->iBufEnd - p->iBufStart, + p->iWriteOff + p->iBufStart + ); + p->iBufStart = p->iBufEnd = 0; + p->iWriteOff += p->nBuffer; + } + assert( p->iBufEndnBuffer ); + + nRem -= nCopy; + } +} + +/* +** Flush any buffered data to disk and clean up the file-writer object. +** The results of using the file-writer after this call are undefined. +** Return SQLITE_OK if flushing the buffered data succeeds or is not +** required. Otherwise, return an SQLite error code. +** +** Before returning, set *piEof to the offset immediately following the +** last byte written to the file. +*/ +static int fileWriterFinish(sqlite3 *db, FileWriter *p, i64 *piEof){ + int rc; + if( p->eFWErr==0 && ALWAYS(p->aBuffer) && p->iBufEnd>p->iBufStart ){ + p->eFWErr = sqlite3OsWrite(p->pFile, + &p->aBuffer[p->iBufStart], p->iBufEnd - p->iBufStart, + p->iWriteOff + p->iBufStart + ); + } + *piEof = (p->iWriteOff + p->iBufEnd); + sqlite3DbFree(db, p->aBuffer); + rc = p->eFWErr; + memset(p, 0, sizeof(FileWriter)); + return rc; +} + +/* +** Write value iVal encoded as a varint to the file-write object. Return +** SQLITE_OK if successful, or an SQLite error code if an error occurs. +*/ +static void fileWriterWriteVarint(FileWriter *p, u64 iVal){ + int nByte; + u8 aByte[10]; + nByte = sqlite3PutVarint(aByte, iVal); + fileWriterWrite(p, aByte, nByte); +} + +/* +** Write the current contents of the in-memory linked-list to a PMA. Return +** SQLITE_OK if successful, or an SQLite error code otherwise. +** +** The format of a PMA is: +** +** * A varint. This varint contains the total number of bytes of content +** in the PMA (not including the varint itself). +** +** * One or more records packed end-to-end in order of ascending keys. +** Each record consists of a varint followed by a blob of data (the +** key). The varint is the number of bytes in the blob of data. +*/ +static int vdbeSorterListToPMA(sqlite3 *db, const VdbeCursor *pCsr){ + int rc = SQLITE_OK; /* Return code */ + VdbeSorter *pSorter = pCsr->pSorter; + FileWriter writer; + + memset(&writer, 0, sizeof(FileWriter)); + + if( pSorter->nInMemory==0 ){ + assert( pSorter->pRecord==0 ); + return rc; + } + + rc = vdbeSorterSort(pCsr); + + /* If the first temporary PMA file has not been opened, open it now. */ + if( rc==SQLITE_OK && pSorter->pTemp1==0 ){ + rc = vdbeSorterOpenTempFile(db, &pSorter->pTemp1); + assert( rc!=SQLITE_OK || pSorter->pTemp1 ); + assert( pSorter->iWriteOff==0 ); + assert( pSorter->nPMA==0 ); + } + + if( rc==SQLITE_OK ){ + SorterRecord *p; + SorterRecord *pNext = 0; + + fileWriterInit(db, pSorter->pTemp1, &writer, pSorter->iWriteOff); + pSorter->nPMA++; + fileWriterWriteVarint(&writer, pSorter->nInMemory); + for(p=pSorter->pRecord; p; p=pNext){ + pNext = p->pNext; + fileWriterWriteVarint(&writer, p->nVal); + fileWriterWrite(&writer, p->pVal, p->nVal); + sqlite3DbFree(db, p); + } + pSorter->pRecord = p; + rc = fileWriterFinish(db, &writer, &pSorter->iWriteOff); + } + + return rc; +} + +/* +** Add a record to the sorter. +*/ +SQLITE_PRIVATE int sqlite3VdbeSorterWrite( + sqlite3 *db, /* Database handle */ + const VdbeCursor *pCsr, /* Sorter cursor */ + Mem *pVal /* Memory cell containing record */ +){ + VdbeSorter *pSorter = pCsr->pSorter; + int rc = SQLITE_OK; /* Return Code */ + SorterRecord *pNew; /* New list element */ + + assert( pSorter ); + pSorter->nInMemory += sqlite3VarintLen(pVal->n) + pVal->n; + + pNew = (SorterRecord *)sqlite3DbMallocRaw(db, pVal->n + sizeof(SorterRecord)); + if( pNew==0 ){ + rc = SQLITE_NOMEM; + }else{ + pNew->pVal = (void *)&pNew[1]; + memcpy(pNew->pVal, pVal->z, pVal->n); + pNew->nVal = pVal->n; + pNew->pNext = pSorter->pRecord; + pSorter->pRecord = pNew; + } + + /* See if the contents of the sorter should now be written out. They + ** are written out when either of the following are true: + ** + ** * The total memory allocated for the in-memory list is greater + ** than (page-size * cache-size), or + ** + ** * The total memory allocated for the in-memory list is greater + ** than (page-size * 10) and sqlite3HeapNearlyFull() returns true. + */ + if( rc==SQLITE_OK && pSorter->mxPmaSize>0 && ( + (pSorter->nInMemory>pSorter->mxPmaSize) + || (pSorter->nInMemory>pSorter->mnPmaSize && sqlite3HeapNearlyFull()) + )){ +#ifdef SQLITE_DEBUG + i64 nExpect = pSorter->iWriteOff + + sqlite3VarintLen(pSorter->nInMemory) + + pSorter->nInMemory; +#endif + rc = vdbeSorterListToPMA(db, pCsr); + pSorter->nInMemory = 0; + assert( rc!=SQLITE_OK || (nExpect==pSorter->iWriteOff) ); + } + + return rc; +} + +/* +** Helper function for sqlite3VdbeSorterRewind(). +*/ +static int vdbeSorterInitMerge( + sqlite3 *db, /* Database handle */ + const VdbeCursor *pCsr, /* Cursor handle for this sorter */ + i64 *pnByte /* Sum of bytes in all opened PMAs */ +){ + VdbeSorter *pSorter = pCsr->pSorter; + int rc = SQLITE_OK; /* Return code */ + int i; /* Used to iterator through aIter[] */ + i64 nByte = 0; /* Total bytes in all opened PMAs */ + + /* Initialize the iterators. */ + for(i=0; iaIter[i]; + rc = vdbeSorterIterInit(db, pSorter, pSorter->iReadOff, pIter, &nByte); + pSorter->iReadOff = pIter->iEof; + assert( rc!=SQLITE_OK || pSorter->iReadOff<=pSorter->iWriteOff ); + if( rc!=SQLITE_OK || pSorter->iReadOff>=pSorter->iWriteOff ) break; + } + + /* Initialize the aTree[] array. */ + for(i=pSorter->nTree-1; rc==SQLITE_OK && i>0; i--){ + rc = vdbeSorterDoCompare(pCsr, i); + } + + *pnByte = nByte; + return rc; +} + +/* +** Once the sorter has been populated, this function is called to prepare +** for iterating through its contents in sorted order. +*/ +SQLITE_PRIVATE int sqlite3VdbeSorterRewind(sqlite3 *db, const VdbeCursor *pCsr, int *pbEof){ + VdbeSorter *pSorter = pCsr->pSorter; + int rc; /* Return code */ + sqlite3_file *pTemp2 = 0; /* Second temp file to use */ + i64 iWrite2 = 0; /* Write offset for pTemp2 */ + int nIter; /* Number of iterators used */ + int nByte; /* Bytes of space required for aIter/aTree */ + int N = 2; /* Power of 2 >= nIter */ + + assert( pSorter ); + + /* If no data has been written to disk, then do not do so now. Instead, + ** sort the VdbeSorter.pRecord list. The vdbe layer will read data directly + ** from the in-memory list. */ + if( pSorter->nPMA==0 ){ + *pbEof = !pSorter->pRecord; + assert( pSorter->aTree==0 ); + return vdbeSorterSort(pCsr); + } + + /* Write the current in-memory list to a PMA. */ + rc = vdbeSorterListToPMA(db, pCsr); + if( rc!=SQLITE_OK ) return rc; + + /* Allocate space for aIter[] and aTree[]. */ + nIter = pSorter->nPMA; + if( nIter>SORTER_MAX_MERGE_COUNT ) nIter = SORTER_MAX_MERGE_COUNT; + assert( nIter>0 ); + while( NaIter = (VdbeSorterIter *)sqlite3DbMallocZero(db, nByte); + if( !pSorter->aIter ) return SQLITE_NOMEM; + pSorter->aTree = (int *)&pSorter->aIter[N]; + pSorter->nTree = N; + + do { + int iNew; /* Index of new, merged, PMA */ + + for(iNew=0; + rc==SQLITE_OK && iNew*SORTER_MAX_MERGE_COUNTnPMA; + iNew++ + ){ + int rc2; /* Return code from fileWriterFinish() */ + FileWriter writer; /* Object used to write to disk */ + i64 nWrite; /* Number of bytes in new PMA */ + + memset(&writer, 0, sizeof(FileWriter)); + + /* If there are SORTER_MAX_MERGE_COUNT or less PMAs in file pTemp1, + ** initialize an iterator for each of them and break out of the loop. + ** These iterators will be incrementally merged as the VDBE layer calls + ** sqlite3VdbeSorterNext(). + ** + ** Otherwise, if pTemp1 contains more than SORTER_MAX_MERGE_COUNT PMAs, + ** initialize interators for SORTER_MAX_MERGE_COUNT of them. These PMAs + ** are merged into a single PMA that is written to file pTemp2. + */ + rc = vdbeSorterInitMerge(db, pCsr, &nWrite); + assert( rc!=SQLITE_OK || pSorter->aIter[ pSorter->aTree[1] ].pFile ); + if( rc!=SQLITE_OK || pSorter->nPMA<=SORTER_MAX_MERGE_COUNT ){ + break; + } + + /* Open the second temp file, if it is not already open. */ + if( pTemp2==0 ){ + assert( iWrite2==0 ); + rc = vdbeSorterOpenTempFile(db, &pTemp2); + } + + if( rc==SQLITE_OK ){ + int bEof = 0; + fileWriterInit(db, pTemp2, &writer, iWrite2); + fileWriterWriteVarint(&writer, nWrite); + while( rc==SQLITE_OK && bEof==0 ){ + VdbeSorterIter *pIter = &pSorter->aIter[ pSorter->aTree[1] ]; + assert( pIter->pFile ); + + fileWriterWriteVarint(&writer, pIter->nKey); + fileWriterWrite(&writer, pIter->aKey, pIter->nKey); + rc = sqlite3VdbeSorterNext(db, pCsr, &bEof); + } + rc2 = fileWriterFinish(db, &writer, &iWrite2); + if( rc==SQLITE_OK ) rc = rc2; + } + } + + if( pSorter->nPMA<=SORTER_MAX_MERGE_COUNT ){ + break; + }else{ + sqlite3_file *pTmp = pSorter->pTemp1; + pSorter->nPMA = iNew; + pSorter->pTemp1 = pTemp2; + pTemp2 = pTmp; + pSorter->iWriteOff = iWrite2; + pSorter->iReadOff = 0; + iWrite2 = 0; + } + }while( rc==SQLITE_OK ); + + if( pTemp2 ){ + sqlite3OsCloseFree(pTemp2); + } + *pbEof = (pSorter->aIter[pSorter->aTree[1]].pFile==0); + return rc; +} + +/* +** Advance to the next element in the sorter. +*/ +SQLITE_PRIVATE int sqlite3VdbeSorterNext(sqlite3 *db, const VdbeCursor *pCsr, int *pbEof){ + VdbeSorter *pSorter = pCsr->pSorter; + int rc; /* Return code */ + + if( pSorter->aTree ){ + int iPrev = pSorter->aTree[1];/* Index of iterator to advance */ + rc = vdbeSorterIterNext(db, &pSorter->aIter[iPrev]); + if( rc==SQLITE_OK ){ + int i; /* Index of aTree[] to recalculate */ + VdbeSorterIter *pIter1; /* First iterator to compare */ + VdbeSorterIter *pIter2; /* Second iterator to compare */ + u8 *pKey2; /* To pIter2->aKey, or 0 if record cached */ + + /* Find the first two iterators to compare. The one that was just + ** advanced (iPrev) and the one next to it in the array. */ + pIter1 = &pSorter->aIter[(iPrev & 0xFFFE)]; + pIter2 = &pSorter->aIter[(iPrev | 0x0001)]; + pKey2 = pIter2->aKey; + + for(i=(pSorter->nTree+iPrev)/2; i>0; i=i/2){ + /* Compare pIter1 and pIter2. Store the result in variable iRes. */ + int iRes; + if( pIter1->pFile==0 ){ + iRes = +1; + }else if( pIter2->pFile==0 ){ + iRes = -1; + }else{ + vdbeSorterCompare(pCsr, 0, + pIter1->aKey, pIter1->nKey, pKey2, pIter2->nKey, &iRes + ); + } + + /* If pIter1 contained the smaller value, set aTree[i] to its index. + ** Then set pIter2 to the next iterator to compare to pIter1. In this + ** case there is no cache of pIter2 in pSorter->pUnpacked, so set + ** pKey2 to point to the record belonging to pIter2. + ** + ** Alternatively, if pIter2 contains the smaller of the two values, + ** set aTree[i] to its index and update pIter1. If vdbeSorterCompare() + ** was actually called above, then pSorter->pUnpacked now contains + ** a value equivalent to pIter2. So set pKey2 to NULL to prevent + ** vdbeSorterCompare() from decoding pIter2 again. */ + if( iRes<=0 ){ + pSorter->aTree[i] = (int)(pIter1 - pSorter->aIter); + pIter2 = &pSorter->aIter[ pSorter->aTree[i ^ 0x0001] ]; + pKey2 = pIter2->aKey; + }else{ + if( pIter1->pFile ) pKey2 = 0; + pSorter->aTree[i] = (int)(pIter2 - pSorter->aIter); + pIter1 = &pSorter->aIter[ pSorter->aTree[i ^ 0x0001] ]; + } + + } + *pbEof = (pSorter->aIter[pSorter->aTree[1]].pFile==0); + } + }else{ + SorterRecord *pFree = pSorter->pRecord; + pSorter->pRecord = pFree->pNext; + pFree->pNext = 0; + vdbeSorterRecordFree(db, pFree); + *pbEof = !pSorter->pRecord; + rc = SQLITE_OK; + } + return rc; +} + +/* +** Return a pointer to a buffer owned by the sorter that contains the +** current key. +*/ +static void *vdbeSorterRowkey( + const VdbeSorter *pSorter, /* Sorter object */ + int *pnKey /* OUT: Size of current key in bytes */ +){ + void *pKey; + if( pSorter->aTree ){ + VdbeSorterIter *pIter; + pIter = &pSorter->aIter[ pSorter->aTree[1] ]; + *pnKey = pIter->nKey; + pKey = pIter->aKey; + }else{ + *pnKey = pSorter->pRecord->nVal; + pKey = pSorter->pRecord->pVal; + } + return pKey; +} + +/* +** Copy the current sorter key into the memory cell pOut. +*/ +SQLITE_PRIVATE int sqlite3VdbeSorterRowkey(const VdbeCursor *pCsr, Mem *pOut){ + VdbeSorter *pSorter = pCsr->pSorter; + void *pKey; int nKey; /* Sorter key to copy into pOut */ + + pKey = vdbeSorterRowkey(pSorter, &nKey); + if( sqlite3VdbeMemGrow(pOut, nKey, 0) ){ + return SQLITE_NOMEM; + } + pOut->n = nKey; + MemSetTypeFlag(pOut, MEM_Blob); + memcpy(pOut->z, pKey, nKey); + + return SQLITE_OK; +} + +/* +** Compare the key in memory cell pVal with the key that the sorter cursor +** passed as the first argument currently points to. For the purposes of +** the comparison, ignore the rowid field at the end of each record. +** +** If an error occurs, return an SQLite error code (i.e. SQLITE_NOMEM). +** Otherwise, set *pRes to a negative, zero or positive value if the +** key in pVal is smaller than, equal to or larger than the current sorter +** key. +*/ +SQLITE_PRIVATE int sqlite3VdbeSorterCompare( + const VdbeCursor *pCsr, /* Sorter cursor */ + Mem *pVal, /* Value to compare to current sorter key */ + int nIgnore, /* Ignore this many fields at the end */ + int *pRes /* OUT: Result of comparison */ +){ + VdbeSorter *pSorter = pCsr->pSorter; + void *pKey; int nKey; /* Sorter key to compare pVal with */ + + pKey = vdbeSorterRowkey(pSorter, &nKey); + vdbeSorterCompare(pCsr, nIgnore, pVal->z, pVal->n, pKey, nKey, pRes); + return SQLITE_OK; +} + +/************** End of vdbesort.c ********************************************/ +/************** Begin file journal.c *****************************************/ +/* +** 2007 August 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file implements a special kind of sqlite3_file object used +** by SQLite to create journal files if the atomic-write optimization +** is enabled. +** +** The distinctive characteristic of this sqlite3_file is that the +** actual on disk file is created lazily. When the file is created, +** the caller specifies a buffer size for an in-memory buffer to +** be used to service read() and write() requests. The actual file +** on disk is not created or populated until either: +** +** 1) The in-memory representation grows too large for the allocated +** buffer, or +** 2) The sqlite3JournalCreate() function is called. +*/ +#ifdef SQLITE_ENABLE_ATOMIC_WRITE + + +/* +** A JournalFile object is a subclass of sqlite3_file used by +** as an open file handle for journal files. +*/ +struct JournalFile { + sqlite3_io_methods *pMethod; /* I/O methods on journal files */ + int nBuf; /* Size of zBuf[] in bytes */ + char *zBuf; /* Space to buffer journal writes */ + int iSize; /* Amount of zBuf[] currently used */ + int flags; /* xOpen flags */ + sqlite3_vfs *pVfs; /* The "real" underlying VFS */ + sqlite3_file *pReal; /* The "real" underlying file descriptor */ + const char *zJournal; /* Name of the journal file */ +}; +typedef struct JournalFile JournalFile; + +/* +** If it does not already exists, create and populate the on-disk file +** for JournalFile p. +*/ +static int createFile(JournalFile *p){ + int rc = SQLITE_OK; + if( !p->pReal ){ + sqlite3_file *pReal = (sqlite3_file *)&p[1]; + rc = sqlite3OsOpen(p->pVfs, p->zJournal, pReal, p->flags, 0); + if( rc==SQLITE_OK ){ + p->pReal = pReal; + if( p->iSize>0 ){ + assert(p->iSize<=p->nBuf); + rc = sqlite3OsWrite(p->pReal, p->zBuf, p->iSize, 0); + } + if( rc!=SQLITE_OK ){ + /* If an error occurred while writing to the file, close it before + ** returning. This way, SQLite uses the in-memory journal data to + ** roll back changes made to the internal page-cache before this + ** function was called. */ + sqlite3OsClose(pReal); + p->pReal = 0; + } + } + } + return rc; +} + +/* +** Close the file. +*/ +static int jrnlClose(sqlite3_file *pJfd){ + JournalFile *p = (JournalFile *)pJfd; + if( p->pReal ){ + sqlite3OsClose(p->pReal); + } + sqlite3_free(p->zBuf); + return SQLITE_OK; +} + +/* +** Read data from the file. +*/ +static int jrnlRead( + sqlite3_file *pJfd, /* The journal file from which to read */ + void *zBuf, /* Put the results here */ + int iAmt, /* Number of bytes to read */ + sqlite_int64 iOfst /* Begin reading at this offset */ +){ + int rc = SQLITE_OK; + JournalFile *p = (JournalFile *)pJfd; + if( p->pReal ){ + rc = sqlite3OsRead(p->pReal, zBuf, iAmt, iOfst); + }else if( (iAmt+iOfst)>p->iSize ){ + rc = SQLITE_IOERR_SHORT_READ; + }else{ + memcpy(zBuf, &p->zBuf[iOfst], iAmt); + } + return rc; +} + +/* +** Write data to the file. +*/ +static int jrnlWrite( + sqlite3_file *pJfd, /* The journal file into which to write */ + const void *zBuf, /* Take data to be written from here */ + int iAmt, /* Number of bytes to write */ + sqlite_int64 iOfst /* Begin writing at this offset into the file */ +){ + int rc = SQLITE_OK; + JournalFile *p = (JournalFile *)pJfd; + if( !p->pReal && (iOfst+iAmt)>p->nBuf ){ + rc = createFile(p); + } + if( rc==SQLITE_OK ){ + if( p->pReal ){ + rc = sqlite3OsWrite(p->pReal, zBuf, iAmt, iOfst); + }else{ + memcpy(&p->zBuf[iOfst], zBuf, iAmt); + if( p->iSize<(iOfst+iAmt) ){ + p->iSize = (iOfst+iAmt); + } + } + } + return rc; +} + +/* +** Truncate the file. +*/ +static int jrnlTruncate(sqlite3_file *pJfd, sqlite_int64 size){ + int rc = SQLITE_OK; + JournalFile *p = (JournalFile *)pJfd; + if( p->pReal ){ + rc = sqlite3OsTruncate(p->pReal, size); + }else if( sizeiSize ){ + p->iSize = size; + } + return rc; +} + +/* +** Sync the file. +*/ +static int jrnlSync(sqlite3_file *pJfd, int flags){ + int rc; + JournalFile *p = (JournalFile *)pJfd; + if( p->pReal ){ + rc = sqlite3OsSync(p->pReal, flags); + }else{ + rc = SQLITE_OK; + } + return rc; +} + +/* +** Query the size of the file in bytes. +*/ +static int jrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){ + int rc = SQLITE_OK; + JournalFile *p = (JournalFile *)pJfd; + if( p->pReal ){ + rc = sqlite3OsFileSize(p->pReal, pSize); + }else{ + *pSize = (sqlite_int64) p->iSize; + } + return rc; +} + +/* +** Table of methods for JournalFile sqlite3_file object. +*/ +static struct sqlite3_io_methods JournalFileMethods = { + 1, /* iVersion */ + jrnlClose, /* xClose */ + jrnlRead, /* xRead */ + jrnlWrite, /* xWrite */ + jrnlTruncate, /* xTruncate */ + jrnlSync, /* xSync */ + jrnlFileSize, /* xFileSize */ + 0, /* xLock */ + 0, /* xUnlock */ + 0, /* xCheckReservedLock */ + 0, /* xFileControl */ + 0, /* xSectorSize */ + 0, /* xDeviceCharacteristics */ + 0, /* xShmMap */ + 0, /* xShmLock */ + 0, /* xShmBarrier */ + 0 /* xShmUnmap */ +}; + +/* +** Open a journal file. +*/ +SQLITE_PRIVATE int sqlite3JournalOpen( + sqlite3_vfs *pVfs, /* The VFS to use for actual file I/O */ + const char *zName, /* Name of the journal file */ + sqlite3_file *pJfd, /* Preallocated, blank file handle */ + int flags, /* Opening flags */ + int nBuf /* Bytes buffered before opening the file */ +){ + JournalFile *p = (JournalFile *)pJfd; + memset(p, 0, sqlite3JournalSize(pVfs)); + if( nBuf>0 ){ + p->zBuf = sqlite3MallocZero(nBuf); + if( !p->zBuf ){ + return SQLITE_NOMEM; + } + }else{ + return sqlite3OsOpen(pVfs, zName, pJfd, flags, 0); + } + p->pMethod = &JournalFileMethods; + p->nBuf = nBuf; + p->flags = flags; + p->zJournal = zName; + p->pVfs = pVfs; + return SQLITE_OK; +} + +/* +** If the argument p points to a JournalFile structure, and the underlying +** file has not yet been created, create it now. +*/ +SQLITE_PRIVATE int sqlite3JournalCreate(sqlite3_file *p){ + if( p->pMethods!=&JournalFileMethods ){ + return SQLITE_OK; + } + return createFile((JournalFile *)p); +} + +/* +** The file-handle passed as the only argument is guaranteed to be an open +** file. It may or may not be of class JournalFile. If the file is a +** JournalFile, and the underlying file on disk has not yet been opened, +** return 0. Otherwise, return 1. +*/ +SQLITE_PRIVATE int sqlite3JournalExists(sqlite3_file *p){ + return (p->pMethods!=&JournalFileMethods || ((JournalFile *)p)->pReal!=0); +} + +/* +** Return the number of bytes required to store a JournalFile that uses vfs +** pVfs to create the underlying on-disk files. +*/ +SQLITE_PRIVATE int sqlite3JournalSize(sqlite3_vfs *pVfs){ + return (pVfs->szOsFile+sizeof(JournalFile)); +} +#endif + +/************** End of journal.c *********************************************/ +/************** Begin file memjournal.c **************************************/ +/* +** 2008 October 7 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains code use to implement an in-memory rollback journal. +** The in-memory rollback journal is used to journal transactions for +** ":memory:" databases and when the journal_mode=MEMORY pragma is used. +*/ + +/* Forward references to internal structures */ +typedef struct MemJournal MemJournal; +typedef struct FilePoint FilePoint; +typedef struct FileChunk FileChunk; + +/* Space to hold the rollback journal is allocated in increments of +** this many bytes. +** +** The size chosen is a little less than a power of two. That way, +** the FileChunk object will have a size that almost exactly fills +** a power-of-two allocation. This mimimizes wasted space in power-of-two +** memory allocators. +*/ +#define JOURNAL_CHUNKSIZE ((int)(1024-sizeof(FileChunk*))) + +/* +** The rollback journal is composed of a linked list of these structures. +*/ +struct FileChunk { + FileChunk *pNext; /* Next chunk in the journal */ + u8 zChunk[JOURNAL_CHUNKSIZE]; /* Content of this chunk */ +}; + +/* +** An instance of this object serves as a cursor into the rollback journal. +** The cursor can be either for reading or writing. +*/ +struct FilePoint { + sqlite3_int64 iOffset; /* Offset from the beginning of the file */ + FileChunk *pChunk; /* Specific chunk into which cursor points */ +}; + +/* +** This subclass is a subclass of sqlite3_file. Each open memory-journal +** is an instance of this class. +*/ +struct MemJournal { + sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */ + FileChunk *pFirst; /* Head of in-memory chunk-list */ + FilePoint endpoint; /* Pointer to the end of the file */ + FilePoint readpoint; /* Pointer to the end of the last xRead() */ +}; + +/* +** Read data from the in-memory journal file. This is the implementation +** of the sqlite3_vfs.xRead method. +*/ +static int memjrnlRead( + sqlite3_file *pJfd, /* The journal file from which to read */ + void *zBuf, /* Put the results here */ + int iAmt, /* Number of bytes to read */ + sqlite_int64 iOfst /* Begin reading at this offset */ +){ + MemJournal *p = (MemJournal *)pJfd; + u8 *zOut = zBuf; + int nRead = iAmt; + int iChunkOffset; + FileChunk *pChunk; + + /* SQLite never tries to read past the end of a rollback journal file */ + assert( iOfst+iAmt<=p->endpoint.iOffset ); + + if( p->readpoint.iOffset!=iOfst || iOfst==0 ){ + sqlite3_int64 iOff = 0; + for(pChunk=p->pFirst; + ALWAYS(pChunk) && (iOff+JOURNAL_CHUNKSIZE)<=iOfst; + pChunk=pChunk->pNext + ){ + iOff += JOURNAL_CHUNKSIZE; + } + }else{ + pChunk = p->readpoint.pChunk; + } + + iChunkOffset = (int)(iOfst%JOURNAL_CHUNKSIZE); + do { + int iSpace = JOURNAL_CHUNKSIZE - iChunkOffset; + int nCopy = MIN(nRead, (JOURNAL_CHUNKSIZE - iChunkOffset)); + memcpy(zOut, &pChunk->zChunk[iChunkOffset], nCopy); + zOut += nCopy; + nRead -= iSpace; + iChunkOffset = 0; + } while( nRead>=0 && (pChunk=pChunk->pNext)!=0 && nRead>0 ); + p->readpoint.iOffset = iOfst+iAmt; + p->readpoint.pChunk = pChunk; + + return SQLITE_OK; +} + +/* +** Write data to the file. +*/ +static int memjrnlWrite( + sqlite3_file *pJfd, /* The journal file into which to write */ + const void *zBuf, /* Take data to be written from here */ + int iAmt, /* Number of bytes to write */ + sqlite_int64 iOfst /* Begin writing at this offset into the file */ +){ + MemJournal *p = (MemJournal *)pJfd; + int nWrite = iAmt; + u8 *zWrite = (u8 *)zBuf; + + /* An in-memory journal file should only ever be appended to. Random + ** access writes are not required by sqlite. + */ + assert( iOfst==p->endpoint.iOffset ); + UNUSED_PARAMETER(iOfst); + + while( nWrite>0 ){ + FileChunk *pChunk = p->endpoint.pChunk; + int iChunkOffset = (int)(p->endpoint.iOffset%JOURNAL_CHUNKSIZE); + int iSpace = MIN(nWrite, JOURNAL_CHUNKSIZE - iChunkOffset); + + if( iChunkOffset==0 ){ + /* New chunk is required to extend the file. */ + FileChunk *pNew = sqlite3_malloc(sizeof(FileChunk)); + if( !pNew ){ + return SQLITE_IOERR_NOMEM; + } + pNew->pNext = 0; + if( pChunk ){ + assert( p->pFirst ); + pChunk->pNext = pNew; + }else{ + assert( !p->pFirst ); + p->pFirst = pNew; + } + p->endpoint.pChunk = pNew; + } + + memcpy(&p->endpoint.pChunk->zChunk[iChunkOffset], zWrite, iSpace); + zWrite += iSpace; + nWrite -= iSpace; + p->endpoint.iOffset += iSpace; + } + + return SQLITE_OK; +} + +/* +** Truncate the file. +*/ +static int memjrnlTruncate(sqlite3_file *pJfd, sqlite_int64 size){ + MemJournal *p = (MemJournal *)pJfd; + FileChunk *pChunk; + assert(size==0); + UNUSED_PARAMETER(size); + pChunk = p->pFirst; + while( pChunk ){ + FileChunk *pTmp = pChunk; + pChunk = pChunk->pNext; + sqlite3_free(pTmp); + } + sqlite3MemJournalOpen(pJfd); + return SQLITE_OK; +} + +/* +** Close the file. +*/ +static int memjrnlClose(sqlite3_file *pJfd){ + memjrnlTruncate(pJfd, 0); + return SQLITE_OK; +} + + +/* +** Sync the file. +** +** Syncing an in-memory journal is a no-op. And, in fact, this routine +** is never called in a working implementation. This implementation +** exists purely as a contingency, in case some malfunction in some other +** part of SQLite causes Sync to be called by mistake. +*/ +static int memjrnlSync(sqlite3_file *NotUsed, int NotUsed2){ + UNUSED_PARAMETER2(NotUsed, NotUsed2); + return SQLITE_OK; +} + +/* +** Query the size of the file in bytes. +*/ +static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){ + MemJournal *p = (MemJournal *)pJfd; + *pSize = (sqlite_int64) p->endpoint.iOffset; + return SQLITE_OK; +} + +/* +** Table of methods for MemJournal sqlite3_file object. +*/ +static const struct sqlite3_io_methods MemJournalMethods = { + 1, /* iVersion */ + memjrnlClose, /* xClose */ + memjrnlRead, /* xRead */ + memjrnlWrite, /* xWrite */ + memjrnlTruncate, /* xTruncate */ + memjrnlSync, /* xSync */ + memjrnlFileSize, /* xFileSize */ + 0, /* xLock */ + 0, /* xUnlock */ + 0, /* xCheckReservedLock */ + 0, /* xFileControl */ + 0, /* xSectorSize */ + 0, /* xDeviceCharacteristics */ + 0, /* xShmMap */ + 0, /* xShmLock */ + 0, /* xShmBarrier */ + 0, /* xShmUnmap */ + 0, /* xFetch */ + 0 /* xUnfetch */ +}; + +/* +** Open a journal file. +*/ +SQLITE_PRIVATE void sqlite3MemJournalOpen(sqlite3_file *pJfd){ + MemJournal *p = (MemJournal *)pJfd; + assert( EIGHT_BYTE_ALIGNMENT(p) ); + memset(p, 0, sqlite3MemJournalSize()); + p->pMethod = (sqlite3_io_methods*)&MemJournalMethods; +} + +/* +** Return true if the file-handle passed as an argument is +** an in-memory journal +*/ +SQLITE_PRIVATE int sqlite3IsMemJournal(sqlite3_file *pJfd){ + return pJfd->pMethods==&MemJournalMethods; +} + +/* +** Return the number of bytes required to store a MemJournal file descriptor. +*/ +SQLITE_PRIVATE int sqlite3MemJournalSize(void){ + return sizeof(MemJournal); +} + +/************** End of memjournal.c ******************************************/ +/************** Begin file walker.c ******************************************/ +/* +** 2008 August 16 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains routines used for walking the parser tree for +** an SQL statement. +*/ +/* #include */ +/* #include */ + + +/* +** Walk an expression tree. Invoke the callback once for each node +** of the expression, while decending. (In other words, the callback +** is invoked before visiting children.) +** +** The return value from the callback should be one of the WRC_* +** constants to specify how to proceed with the walk. +** +** WRC_Continue Continue descending down the tree. +** +** WRC_Prune Do not descend into child nodes. But allow +** the walk to continue with sibling nodes. +** +** WRC_Abort Do no more callbacks. Unwind the stack and +** return the top-level walk call. +** +** The return value from this routine is WRC_Abort to abandon the tree walk +** and WRC_Continue to continue. +*/ +SQLITE_PRIVATE int sqlite3WalkExpr(Walker *pWalker, Expr *pExpr){ + int rc; + if( pExpr==0 ) return WRC_Continue; + testcase( ExprHasProperty(pExpr, EP_TokenOnly) ); + testcase( ExprHasProperty(pExpr, EP_Reduced) ); + rc = pWalker->xExprCallback(pWalker, pExpr); + if( rc==WRC_Continue + && !ExprHasProperty(pExpr,EP_TokenOnly) ){ + if( sqlite3WalkExpr(pWalker, pExpr->pLeft) ) return WRC_Abort; + if( sqlite3WalkExpr(pWalker, pExpr->pRight) ) return WRC_Abort; + if( ExprHasProperty(pExpr, EP_xIsSelect) ){ + if( sqlite3WalkSelect(pWalker, pExpr->x.pSelect) ) return WRC_Abort; + }else{ + if( sqlite3WalkExprList(pWalker, pExpr->x.pList) ) return WRC_Abort; + } + } + return rc & WRC_Abort; +} + +/* +** Call sqlite3WalkExpr() for every expression in list p or until +** an abort request is seen. +*/ +SQLITE_PRIVATE int sqlite3WalkExprList(Walker *pWalker, ExprList *p){ + int i; + struct ExprList_item *pItem; + if( p ){ + for(i=p->nExpr, pItem=p->a; i>0; i--, pItem++){ + if( sqlite3WalkExpr(pWalker, pItem->pExpr) ) return WRC_Abort; + } + } + return WRC_Continue; +} + +/* +** Walk all expressions associated with SELECT statement p. Do +** not invoke the SELECT callback on p, but do (of course) invoke +** any expr callbacks and SELECT callbacks that come from subqueries. +** Return WRC_Abort or WRC_Continue. +*/ +SQLITE_PRIVATE int sqlite3WalkSelectExpr(Walker *pWalker, Select *p){ + if( sqlite3WalkExprList(pWalker, p->pEList) ) return WRC_Abort; + if( sqlite3WalkExpr(pWalker, p->pWhere) ) return WRC_Abort; + if( sqlite3WalkExprList(pWalker, p->pGroupBy) ) return WRC_Abort; + if( sqlite3WalkExpr(pWalker, p->pHaving) ) return WRC_Abort; + if( sqlite3WalkExprList(pWalker, p->pOrderBy) ) return WRC_Abort; + if( sqlite3WalkExpr(pWalker, p->pLimit) ) return WRC_Abort; + if( sqlite3WalkExpr(pWalker, p->pOffset) ) return WRC_Abort; + return WRC_Continue; +} + +/* +** Walk the parse trees associated with all subqueries in the +** FROM clause of SELECT statement p. Do not invoke the select +** callback on p, but do invoke it on each FROM clause subquery +** and on any subqueries further down in the tree. Return +** WRC_Abort or WRC_Continue; +*/ +SQLITE_PRIVATE int sqlite3WalkSelectFrom(Walker *pWalker, Select *p){ + SrcList *pSrc; + int i; + struct SrcList_item *pItem; + + pSrc = p->pSrc; + if( ALWAYS(pSrc) ){ + for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){ + if( sqlite3WalkSelect(pWalker, pItem->pSelect) ){ + return WRC_Abort; + } + } + } + return WRC_Continue; +} + +/* +** Call sqlite3WalkExpr() for every expression in Select statement p. +** Invoke sqlite3WalkSelect() for subqueries in the FROM clause and +** on the compound select chain, p->pPrior. +** +** If it is not NULL, the xSelectCallback() callback is invoked before +** the walk of the expressions and FROM clause. The xSelectCallback2() +** method, if it is not NULL, is invoked following the walk of the +** expressions and FROM clause. +** +** Return WRC_Continue under normal conditions. Return WRC_Abort if +** there is an abort request. +** +** If the Walker does not have an xSelectCallback() then this routine +** is a no-op returning WRC_Continue. +*/ +SQLITE_PRIVATE int sqlite3WalkSelect(Walker *pWalker, Select *p){ + int rc; + if( p==0 || (pWalker->xSelectCallback==0 && pWalker->xSelectCallback2==0) ){ + return WRC_Continue; + } + rc = WRC_Continue; + pWalker->walkerDepth++; + while( p ){ + if( pWalker->xSelectCallback ){ + rc = pWalker->xSelectCallback(pWalker, p); + if( rc ) break; + } + if( sqlite3WalkSelectExpr(pWalker, p) + || sqlite3WalkSelectFrom(pWalker, p) + ){ + pWalker->walkerDepth--; + return WRC_Abort; + } + if( pWalker->xSelectCallback2 ){ + pWalker->xSelectCallback2(pWalker, p); + } + p = p->pPrior; + } + pWalker->walkerDepth--; + return rc & WRC_Abort; +} + +/************** End of walker.c **********************************************/ +/************** Begin file resolve.c *****************************************/ +/* +** 2008 August 18 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains routines used for walking the parser tree and +** resolve all identifiers by associating them with a particular +** table and column. +*/ +/* #include */ +/* #include */ + +/* +** Walk the expression tree pExpr and increase the aggregate function +** depth (the Expr.op2 field) by N on every TK_AGG_FUNCTION node. +** This needs to occur when copying a TK_AGG_FUNCTION node from an +** outer query into an inner subquery. +** +** incrAggFunctionDepth(pExpr,n) is the main routine. incrAggDepth(..) +** is a helper function - a callback for the tree walker. +*/ +static int incrAggDepth(Walker *pWalker, Expr *pExpr){ + if( pExpr->op==TK_AGG_FUNCTION ) pExpr->op2 += pWalker->u.i; + return WRC_Continue; +} +static void incrAggFunctionDepth(Expr *pExpr, int N){ + if( N>0 ){ + Walker w; + memset(&w, 0, sizeof(w)); + w.xExprCallback = incrAggDepth; + w.u.i = N; + sqlite3WalkExpr(&w, pExpr); + } +} + +/* +** Turn the pExpr expression into an alias for the iCol-th column of the +** result set in pEList. +** +** If the result set column is a simple column reference, then this routine +** makes an exact copy. But for any other kind of expression, this +** routine make a copy of the result set column as the argument to the +** TK_AS operator. The TK_AS operator causes the expression to be +** evaluated just once and then reused for each alias. +** +** The reason for suppressing the TK_AS term when the expression is a simple +** column reference is so that the column reference will be recognized as +** usable by indices within the WHERE clause processing logic. +** +** The TK_AS operator is inhibited if zType[0]=='G'. This means +** that in a GROUP BY clause, the expression is evaluated twice. Hence: +** +** SELECT random()%5 AS x, count(*) FROM tab GROUP BY x +** +** Is equivalent to: +** +** SELECT random()%5 AS x, count(*) FROM tab GROUP BY random()%5 +** +** The result of random()%5 in the GROUP BY clause is probably different +** from the result in the result-set. On the other hand Standard SQL does +** not allow the GROUP BY clause to contain references to result-set columns. +** So this should never come up in well-formed queries. +** +** If the reference is followed by a COLLATE operator, then make sure +** the COLLATE operator is preserved. For example: +** +** SELECT a+b, c+d FROM t1 ORDER BY 1 COLLATE nocase; +** +** Should be transformed into: +** +** SELECT a+b, c+d FROM t1 ORDER BY (a+b) COLLATE nocase; +** +** The nSubquery parameter specifies how many levels of subquery the +** alias is removed from the original expression. The usually value is +** zero but it might be more if the alias is contained within a subquery +** of the original expression. The Expr.op2 field of TK_AGG_FUNCTION +** structures must be increased by the nSubquery amount. +*/ +static void resolveAlias( + Parse *pParse, /* Parsing context */ + ExprList *pEList, /* A result set */ + int iCol, /* A column in the result set. 0..pEList->nExpr-1 */ + Expr *pExpr, /* Transform this into an alias to the result set */ + const char *zType, /* "GROUP" or "ORDER" or "" */ + int nSubquery /* Number of subqueries that the label is moving */ +){ + Expr *pOrig; /* The iCol-th column of the result set */ + Expr *pDup; /* Copy of pOrig */ + sqlite3 *db; /* The database connection */ + + assert( iCol>=0 && iColnExpr ); + pOrig = pEList->a[iCol].pExpr; + assert( pOrig!=0 ); + assert( pOrig->flags & EP_Resolved ); + db = pParse->db; + pDup = sqlite3ExprDup(db, pOrig, 0); + if( pDup==0 ) return; + if( pOrig->op!=TK_COLUMN && zType[0]!='G' ){ + incrAggFunctionDepth(pDup, nSubquery); + pDup = sqlite3PExpr(pParse, TK_AS, pDup, 0, 0); + if( pDup==0 ) return; + ExprSetProperty(pDup, EP_Skip); + if( pEList->a[iCol].u.x.iAlias==0 ){ + pEList->a[iCol].u.x.iAlias = (u16)(++pParse->nAlias); + } + pDup->iTable = pEList->a[iCol].u.x.iAlias; + } + if( pExpr->op==TK_COLLATE ){ + pDup = sqlite3ExprAddCollateString(pParse, pDup, pExpr->u.zToken); + } + + /* Before calling sqlite3ExprDelete(), set the EP_Static flag. This + ** prevents ExprDelete() from deleting the Expr structure itself, + ** allowing it to be repopulated by the memcpy() on the following line. + ** The pExpr->u.zToken might point into memory that will be freed by the + ** sqlite3DbFree(db, pDup) on the last line of this block, so be sure to + ** make a copy of the token before doing the sqlite3DbFree(). + */ + ExprSetProperty(pExpr, EP_Static); + sqlite3ExprDelete(db, pExpr); + memcpy(pExpr, pDup, sizeof(*pExpr)); + if( !ExprHasProperty(pExpr, EP_IntValue) && pExpr->u.zToken!=0 ){ + assert( (pExpr->flags & (EP_Reduced|EP_TokenOnly))==0 ); + pExpr->u.zToken = sqlite3DbStrDup(db, pExpr->u.zToken); + pExpr->flags |= EP_MemToken; + } + sqlite3DbFree(db, pDup); +} + + +/* +** Return TRUE if the name zCol occurs anywhere in the USING clause. +** +** Return FALSE if the USING clause is NULL or if it does not contain +** zCol. +*/ +static int nameInUsingClause(IdList *pUsing, const char *zCol){ + if( pUsing ){ + int k; + for(k=0; knId; k++){ + if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ) return 1; + } + } + return 0; +} + +/* +** Subqueries stores the original database, table and column names for their +** result sets in ExprList.a[].zSpan, in the form "DATABASE.TABLE.COLUMN". +** Check to see if the zSpan given to this routine matches the zDb, zTab, +** and zCol. If any of zDb, zTab, and zCol are NULL then those fields will +** match anything. +*/ +SQLITE_PRIVATE int sqlite3MatchSpanName( + const char *zSpan, + const char *zCol, + const char *zTab, + const char *zDb +){ + int n; + for(n=0; ALWAYS(zSpan[n]) && zSpan[n]!='.'; n++){} + if( zDb && (sqlite3StrNICmp(zSpan, zDb, n)!=0 || zDb[n]!=0) ){ + return 0; + } + zSpan += n+1; + for(n=0; ALWAYS(zSpan[n]) && zSpan[n]!='.'; n++){} + if( zTab && (sqlite3StrNICmp(zSpan, zTab, n)!=0 || zTab[n]!=0) ){ + return 0; + } + zSpan += n+1; + if( zCol && sqlite3StrICmp(zSpan, zCol)!=0 ){ + return 0; + } + return 1; +} + +/* +** Given the name of a column of the form X.Y.Z or Y.Z or just Z, look up +** that name in the set of source tables in pSrcList and make the pExpr +** expression node refer back to that source column. The following changes +** are made to pExpr: +** +** pExpr->iDb Set the index in db->aDb[] of the database X +** (even if X is implied). +** pExpr->iTable Set to the cursor number for the table obtained +** from pSrcList. +** pExpr->pTab Points to the Table structure of X.Y (even if +** X and/or Y are implied.) +** pExpr->iColumn Set to the column number within the table. +** pExpr->op Set to TK_COLUMN. +** pExpr->pLeft Any expression this points to is deleted +** pExpr->pRight Any expression this points to is deleted. +** +** The zDb variable is the name of the database (the "X"). This value may be +** NULL meaning that name is of the form Y.Z or Z. Any available database +** can be used. The zTable variable is the name of the table (the "Y"). This +** value can be NULL if zDb is also NULL. If zTable is NULL it +** means that the form of the name is Z and that columns from any table +** can be used. +** +** If the name cannot be resolved unambiguously, leave an error message +** in pParse and return WRC_Abort. Return WRC_Prune on success. +*/ +static int lookupName( + Parse *pParse, /* The parsing context */ + const char *zDb, /* Name of the database containing table, or NULL */ + const char *zTab, /* Name of table containing column, or NULL */ + const char *zCol, /* Name of the column. */ + NameContext *pNC, /* The name context used to resolve the name */ + Expr *pExpr /* Make this EXPR node point to the selected column */ +){ + int i, j; /* Loop counters */ + int cnt = 0; /* Number of matching column names */ + int cntTab = 0; /* Number of matching table names */ + int nSubquery = 0; /* How many levels of subquery */ + sqlite3 *db = pParse->db; /* The database connection */ + struct SrcList_item *pItem; /* Use for looping over pSrcList items */ + struct SrcList_item *pMatch = 0; /* The matching pSrcList item */ + NameContext *pTopNC = pNC; /* First namecontext in the list */ + Schema *pSchema = 0; /* Schema of the expression */ + int isTrigger = 0; /* True if resolved to a trigger column */ + Table *pTab = 0; /* Table hold the row */ + Column *pCol; /* A column of pTab */ + + assert( pNC ); /* the name context cannot be NULL. */ + assert( zCol ); /* The Z in X.Y.Z cannot be NULL */ + assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); + + /* Initialize the node to no-match */ + pExpr->iTable = -1; + pExpr->pTab = 0; + ExprSetVVAProperty(pExpr, EP_NoReduce); + + /* Translate the schema name in zDb into a pointer to the corresponding + ** schema. If not found, pSchema will remain NULL and nothing will match + ** resulting in an appropriate error message toward the end of this routine + */ + if( zDb ){ + testcase( pNC->ncFlags & NC_PartIdx ); + testcase( pNC->ncFlags & NC_IsCheck ); + if( (pNC->ncFlags & (NC_PartIdx|NC_IsCheck))!=0 ){ + /* Silently ignore database qualifiers inside CHECK constraints and partial + ** indices. Do not raise errors because that might break legacy and + ** because it does not hurt anything to just ignore the database name. */ + zDb = 0; + }else{ + for(i=0; inDb; i++){ + assert( db->aDb[i].zName ); + if( sqlite3StrICmp(db->aDb[i].zName,zDb)==0 ){ + pSchema = db->aDb[i].pSchema; + break; + } + } + } + } + + /* Start at the inner-most context and move outward until a match is found */ + while( pNC && cnt==0 ){ + ExprList *pEList; + SrcList *pSrcList = pNC->pSrcList; + + if( pSrcList ){ + for(i=0, pItem=pSrcList->a; inSrc; i++, pItem++){ + pTab = pItem->pTab; + assert( pTab!=0 && pTab->zName!=0 ); + assert( pTab->nCol>0 ); + if( pItem->pSelect && (pItem->pSelect->selFlags & SF_NestedFrom)!=0 ){ + int hit = 0; + pEList = pItem->pSelect->pEList; + for(j=0; jnExpr; j++){ + if( sqlite3MatchSpanName(pEList->a[j].zSpan, zCol, zTab, zDb) ){ + cnt++; + cntTab = 2; + pMatch = pItem; + pExpr->iColumn = j; + hit = 1; + } + } + if( hit || zTab==0 ) continue; + } + if( zDb && pTab->pSchema!=pSchema ){ + continue; + } + if( zTab ){ + const char *zTabName = pItem->zAlias ? pItem->zAlias : pTab->zName; + assert( zTabName!=0 ); + if( sqlite3StrICmp(zTabName, zTab)!=0 ){ + continue; + } + } + if( 0==(cntTab++) ){ + pMatch = pItem; + } + for(j=0, pCol=pTab->aCol; jnCol; j++, pCol++){ + if( sqlite3StrICmp(pCol->zName, zCol)==0 ){ + /* If there has been exactly one prior match and this match + ** is for the right-hand table of a NATURAL JOIN or is in a + ** USING clause, then skip this match. + */ + if( cnt==1 ){ + if( pItem->jointype & JT_NATURAL ) continue; + if( nameInUsingClause(pItem->pUsing, zCol) ) continue; + } + cnt++; + pMatch = pItem; + /* Substitute the rowid (column -1) for the INTEGER PRIMARY KEY */ + pExpr->iColumn = j==pTab->iPKey ? -1 : (i16)j; + break; + } + } + } + if( pMatch ){ + pExpr->iTable = pMatch->iCursor; + pExpr->pTab = pMatch->pTab; + pSchema = pExpr->pTab->pSchema; + } + } /* if( pSrcList ) */ + +#ifndef SQLITE_OMIT_TRIGGER + /* If we have not already resolved the name, then maybe + ** it is a new.* or old.* trigger argument reference + */ + if( zDb==0 && zTab!=0 && cntTab==0 && pParse->pTriggerTab!=0 ){ + int op = pParse->eTriggerOp; + assert( op==TK_DELETE || op==TK_UPDATE || op==TK_INSERT ); + if( op!=TK_DELETE && sqlite3StrICmp("new",zTab) == 0 ){ + pExpr->iTable = 1; + pTab = pParse->pTriggerTab; + }else if( op!=TK_INSERT && sqlite3StrICmp("old",zTab)==0 ){ + pExpr->iTable = 0; + pTab = pParse->pTriggerTab; + }else{ + pTab = 0; + } + + if( pTab ){ + int iCol; + pSchema = pTab->pSchema; + cntTab++; + for(iCol=0, pCol=pTab->aCol; iColnCol; iCol++, pCol++){ + if( sqlite3StrICmp(pCol->zName, zCol)==0 ){ + if( iCol==pTab->iPKey ){ + iCol = -1; + } + break; + } + } + if( iCol>=pTab->nCol && sqlite3IsRowid(zCol) && HasRowid(pTab) ){ + /* IMP: R-24309-18625 */ + /* IMP: R-44911-55124 */ + iCol = -1; + } + if( iColnCol ){ + cnt++; + if( iCol<0 ){ + pExpr->affinity = SQLITE_AFF_INTEGER; + }else if( pExpr->iTable==0 ){ + testcase( iCol==31 ); + testcase( iCol==32 ); + pParse->oldmask |= (iCol>=32 ? 0xffffffff : (((u32)1)<newmask |= (iCol>=32 ? 0xffffffff : (((u32)1)<iColumn = (i16)iCol; + pExpr->pTab = pTab; + isTrigger = 1; + } + } + } +#endif /* !defined(SQLITE_OMIT_TRIGGER) */ + + /* + ** Perhaps the name is a reference to the ROWID + */ + if( cnt==0 && cntTab==1 && pMatch && sqlite3IsRowid(zCol) + && HasRowid(pMatch->pTab) ){ + cnt = 1; + pExpr->iColumn = -1; /* IMP: R-44911-55124 */ + pExpr->affinity = SQLITE_AFF_INTEGER; + } + + /* + ** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z + ** might refer to an result-set alias. This happens, for example, when + ** we are resolving names in the WHERE clause of the following command: + ** + ** SELECT a+b AS x FROM table WHERE x<10; + ** + ** In cases like this, replace pExpr with a copy of the expression that + ** forms the result set entry ("a+b" in the example) and return immediately. + ** Note that the expression in the result set should have already been + ** resolved by the time the WHERE clause is resolved. + ** + ** The ability to use an output result-set column in the WHERE, GROUP BY, + ** or HAVING clauses, or as part of a larger expression in the ORDRE BY + ** clause is not standard SQL. This is a (goofy) SQLite extension, that + ** is supported for backwards compatibility only. TO DO: Issue a warning + ** on sqlite3_log() whenever the capability is used. + */ + if( (pEList = pNC->pEList)!=0 + && zTab==0 + && cnt==0 + ){ + for(j=0; jnExpr; j++){ + char *zAs = pEList->a[j].zName; + if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){ + Expr *pOrig; + assert( pExpr->pLeft==0 && pExpr->pRight==0 ); + assert( pExpr->x.pList==0 ); + assert( pExpr->x.pSelect==0 ); + pOrig = pEList->a[j].pExpr; + if( (pNC->ncFlags&NC_AllowAgg)==0 && ExprHasProperty(pOrig, EP_Agg) ){ + sqlite3ErrorMsg(pParse, "misuse of aliased aggregate %s", zAs); + return WRC_Abort; + } + resolveAlias(pParse, pEList, j, pExpr, "", nSubquery); + cnt = 1; + pMatch = 0; + assert( zTab==0 && zDb==0 ); + goto lookupname_end; + } + } + } + + /* Advance to the next name context. The loop will exit when either + ** we have a match (cnt>0) or when we run out of name contexts. + */ + if( cnt==0 ){ + pNC = pNC->pNext; + nSubquery++; + } + } + + /* + ** If X and Y are NULL (in other words if only the column name Z is + ** supplied) and the value of Z is enclosed in double-quotes, then + ** Z is a string literal if it doesn't match any column names. In that + ** case, we need to return right away and not make any changes to + ** pExpr. + ** + ** Because no reference was made to outer contexts, the pNC->nRef + ** fields are not changed in any context. + */ + if( cnt==0 && zTab==0 && ExprHasProperty(pExpr,EP_DblQuoted) ){ + pExpr->op = TK_STRING; + pExpr->pTab = 0; + return WRC_Prune; + } + + /* + ** cnt==0 means there was not match. cnt>1 means there were two or + ** more matches. Either way, we have an error. + */ + if( cnt!=1 ){ + const char *zErr; + zErr = cnt==0 ? "no such column" : "ambiguous column name"; + if( zDb ){ + sqlite3ErrorMsg(pParse, "%s: %s.%s.%s", zErr, zDb, zTab, zCol); + }else if( zTab ){ + sqlite3ErrorMsg(pParse, "%s: %s.%s", zErr, zTab, zCol); + }else{ + sqlite3ErrorMsg(pParse, "%s: %s", zErr, zCol); + } + pParse->checkSchema = 1; + pTopNC->nErr++; + } + + /* If a column from a table in pSrcList is referenced, then record + ** this fact in the pSrcList.a[].colUsed bitmask. Column 0 causes + ** bit 0 to be set. Column 1 sets bit 1. And so forth. If the + ** column number is greater than the number of bits in the bitmask + ** then set the high-order bit of the bitmask. + */ + if( pExpr->iColumn>=0 && pMatch!=0 ){ + int n = pExpr->iColumn; + testcase( n==BMS-1 ); + if( n>=BMS ){ + n = BMS-1; + } + assert( pMatch->iCursor==pExpr->iTable ); + pMatch->colUsed |= ((Bitmask)1)<pLeft); + pExpr->pLeft = 0; + sqlite3ExprDelete(db, pExpr->pRight); + pExpr->pRight = 0; + pExpr->op = (isTrigger ? TK_TRIGGER : TK_COLUMN); +lookupname_end: + if( cnt==1 ){ + assert( pNC!=0 ); + if( pExpr->op!=TK_AS ){ + sqlite3AuthRead(pParse, pExpr, pSchema, pNC->pSrcList); + } + /* Increment the nRef value on all name contexts from TopNC up to + ** the point where the name matched. */ + for(;;){ + assert( pTopNC!=0 ); + pTopNC->nRef++; + if( pTopNC==pNC ) break; + pTopNC = pTopNC->pNext; + } + return WRC_Prune; + } else { + return WRC_Abort; + } +} + +/* +** Allocate and return a pointer to an expression to load the column iCol +** from datasource iSrc in SrcList pSrc. +*/ +SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){ + Expr *p = sqlite3ExprAlloc(db, TK_COLUMN, 0, 0); + if( p ){ + struct SrcList_item *pItem = &pSrc->a[iSrc]; + p->pTab = pItem->pTab; + p->iTable = pItem->iCursor; + if( p->pTab->iPKey==iCol ){ + p->iColumn = -1; + }else{ + p->iColumn = (ynVar)iCol; + testcase( iCol==BMS ); + testcase( iCol==BMS-1 ); + pItem->colUsed |= ((Bitmask)1)<<(iCol>=BMS ? BMS-1 : iCol); + } + ExprSetProperty(p, EP_Resolved); + } + return p; +} + +/* +** Report an error that an expression is not valid for a partial index WHERE +** clause. +*/ +static void notValidPartIdxWhere( + Parse *pParse, /* Leave error message here */ + NameContext *pNC, /* The name context */ + const char *zMsg /* Type of error */ +){ + if( (pNC->ncFlags & NC_PartIdx)!=0 ){ + sqlite3ErrorMsg(pParse, "%s prohibited in partial index WHERE clauses", + zMsg); + } +} + +#ifndef SQLITE_OMIT_CHECK +/* +** Report an error that an expression is not valid for a CHECK constraint. +*/ +static void notValidCheckConstraint( + Parse *pParse, /* Leave error message here */ + NameContext *pNC, /* The name context */ + const char *zMsg /* Type of error */ +){ + if( (pNC->ncFlags & NC_IsCheck)!=0 ){ + sqlite3ErrorMsg(pParse,"%s prohibited in CHECK constraints", zMsg); + } +} +#else +# define notValidCheckConstraint(P,N,M) +#endif + +/* +** Expression p should encode a floating point value between 1.0 and 0.0. +** Return 1024 times this value. Or return -1 if p is not a floating point +** value between 1.0 and 0.0. +*/ +static int exprProbability(Expr *p){ + double r = -1.0; + if( p->op!=TK_FLOAT ) return -1; + sqlite3AtoF(p->u.zToken, &r, sqlite3Strlen30(p->u.zToken), SQLITE_UTF8); + assert( r>=0.0 ); + if( r>1.0 ) return -1; + return (int)(r*1000.0); +} + +/* +** This routine is callback for sqlite3WalkExpr(). +** +** Resolve symbolic names into TK_COLUMN operators for the current +** node in the expression tree. Return 0 to continue the search down +** the tree or 2 to abort the tree walk. +** +** This routine also does error checking and name resolution for +** function names. The operator for aggregate functions is changed +** to TK_AGG_FUNCTION. +*/ +static int resolveExprStep(Walker *pWalker, Expr *pExpr){ + NameContext *pNC; + Parse *pParse; + + pNC = pWalker->u.pNC; + assert( pNC!=0 ); + pParse = pNC->pParse; + assert( pParse==pWalker->pParse ); + + if( ExprHasProperty(pExpr, EP_Resolved) ) return WRC_Prune; + ExprSetProperty(pExpr, EP_Resolved); +#ifndef NDEBUG + if( pNC->pSrcList && pNC->pSrcList->nAlloc>0 ){ + SrcList *pSrcList = pNC->pSrcList; + int i; + for(i=0; ipSrcList->nSrc; i++){ + assert( pSrcList->a[i].iCursor>=0 && pSrcList->a[i].iCursornTab); + } + } +#endif + switch( pExpr->op ){ + +#if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) && !defined(SQLITE_OMIT_SUBQUERY) + /* The special operator TK_ROW means use the rowid for the first + ** column in the FROM clause. This is used by the LIMIT and ORDER BY + ** clause processing on UPDATE and DELETE statements. + */ + case TK_ROW: { + SrcList *pSrcList = pNC->pSrcList; + struct SrcList_item *pItem; + assert( pSrcList && pSrcList->nSrc==1 ); + pItem = pSrcList->a; + pExpr->op = TK_COLUMN; + pExpr->pTab = pItem->pTab; + pExpr->iTable = pItem->iCursor; + pExpr->iColumn = -1; + pExpr->affinity = SQLITE_AFF_INTEGER; + break; + } +#endif /* defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) && !defined(SQLITE_OMIT_SUBQUERY) */ + + /* A lone identifier is the name of a column. + */ + case TK_ID: { + return lookupName(pParse, 0, 0, pExpr->u.zToken, pNC, pExpr); + } + + /* A table name and column name: ID.ID + ** Or a database, table and column: ID.ID.ID + */ + case TK_DOT: { + const char *zColumn; + const char *zTable; + const char *zDb; + Expr *pRight; + + /* if( pSrcList==0 ) break; */ + pRight = pExpr->pRight; + if( pRight->op==TK_ID ){ + zDb = 0; + zTable = pExpr->pLeft->u.zToken; + zColumn = pRight->u.zToken; + }else{ + assert( pRight->op==TK_DOT ); + zDb = pExpr->pLeft->u.zToken; + zTable = pRight->pLeft->u.zToken; + zColumn = pRight->pRight->u.zToken; + } + return lookupName(pParse, zDb, zTable, zColumn, pNC, pExpr); + } + + /* Resolve function names + */ + case TK_FUNCTION: { + ExprList *pList = pExpr->x.pList; /* The argument list */ + int n = pList ? pList->nExpr : 0; /* Number of arguments */ + int no_such_func = 0; /* True if no such function exists */ + int wrong_num_args = 0; /* True if wrong number of arguments */ + int is_agg = 0; /* True if is an aggregate function */ + int auth; /* Authorization to use the function */ + int nId; /* Number of characters in function name */ + const char *zId; /* The function name. */ + FuncDef *pDef; /* Information about the function */ + u8 enc = ENC(pParse->db); /* The database encoding */ + + assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); + notValidPartIdxWhere(pParse, pNC, "functions"); + zId = pExpr->u.zToken; + nId = sqlite3Strlen30(zId); + pDef = sqlite3FindFunction(pParse->db, zId, nId, n, enc, 0); + if( pDef==0 ){ + pDef = sqlite3FindFunction(pParse->db, zId, nId, -2, enc, 0); + if( pDef==0 ){ + no_such_func = 1; + }else{ + wrong_num_args = 1; + } + }else{ + is_agg = pDef->xFunc==0; + if( pDef->funcFlags & SQLITE_FUNC_UNLIKELY ){ + ExprSetProperty(pExpr, EP_Unlikely|EP_Skip); + if( n==2 ){ + pExpr->iTable = exprProbability(pList->a[1].pExpr); + if( pExpr->iTable<0 ){ + sqlite3ErrorMsg(pParse, "second argument to likelihood() must be a " + "constant between 0.0 and 1.0"); + pNC->nErr++; + } + }else{ + /* EVIDENCE-OF: R-61304-29449 The unlikely(X) function is equivalent to + ** likelihood(X, 0.0625). + ** EVIDENCE-OF: R-01283-11636 The unlikely(X) function is short-hand for + ** likelihood(X,0.0625). */ + pExpr->iTable = 62; /* TUNING: Default 2nd arg to unlikely() is 0.0625 */ + } + } + } +#ifndef SQLITE_OMIT_AUTHORIZATION + if( pDef ){ + auth = sqlite3AuthCheck(pParse, SQLITE_FUNCTION, 0, pDef->zName, 0); + if( auth!=SQLITE_OK ){ + if( auth==SQLITE_DENY ){ + sqlite3ErrorMsg(pParse, "not authorized to use function: %s", + pDef->zName); + pNC->nErr++; + } + pExpr->op = TK_NULL; + return WRC_Prune; + } + if( pDef->funcFlags & SQLITE_FUNC_CONSTANT ) ExprSetProperty(pExpr,EP_Constant); + } +#endif + if( is_agg && (pNC->ncFlags & NC_AllowAgg)==0 ){ + sqlite3ErrorMsg(pParse, "misuse of aggregate function %.*s()", nId,zId); + pNC->nErr++; + is_agg = 0; + }else if( no_such_func && pParse->db->init.busy==0 ){ + sqlite3ErrorMsg(pParse, "no such function: %.*s", nId, zId); + pNC->nErr++; + }else if( wrong_num_args ){ + sqlite3ErrorMsg(pParse,"wrong number of arguments to function %.*s()", + nId, zId); + pNC->nErr++; + } + if( is_agg ) pNC->ncFlags &= ~NC_AllowAgg; + sqlite3WalkExprList(pWalker, pList); + if( is_agg ){ + NameContext *pNC2 = pNC; + pExpr->op = TK_AGG_FUNCTION; + pExpr->op2 = 0; + while( pNC2 && !sqlite3FunctionUsesThisSrc(pExpr, pNC2->pSrcList) ){ + pExpr->op2++; + pNC2 = pNC2->pNext; + } + if( pNC2 ) pNC2->ncFlags |= NC_HasAgg; + pNC->ncFlags |= NC_AllowAgg; + } + /* FIX ME: Compute pExpr->affinity based on the expected return + ** type of the function + */ + return WRC_Prune; + } +#ifndef SQLITE_OMIT_SUBQUERY + case TK_SELECT: + case TK_EXISTS: testcase( pExpr->op==TK_EXISTS ); +#endif + case TK_IN: { + testcase( pExpr->op==TK_IN ); + if( ExprHasProperty(pExpr, EP_xIsSelect) ){ + int nRef = pNC->nRef; + notValidCheckConstraint(pParse, pNC, "subqueries"); + notValidPartIdxWhere(pParse, pNC, "subqueries"); + sqlite3WalkSelect(pWalker, pExpr->x.pSelect); + assert( pNC->nRef>=nRef ); + if( nRef!=pNC->nRef ){ + ExprSetProperty(pExpr, EP_VarSelect); + } + } + break; + } + case TK_VARIABLE: { + notValidCheckConstraint(pParse, pNC, "parameters"); + notValidPartIdxWhere(pParse, pNC, "parameters"); + break; + } + } + return (pParse->nErr || pParse->db->mallocFailed) ? WRC_Abort : WRC_Continue; +} + +/* +** pEList is a list of expressions which are really the result set of the +** a SELECT statement. pE is a term in an ORDER BY or GROUP BY clause. +** This routine checks to see if pE is a simple identifier which corresponds +** to the AS-name of one of the terms of the expression list. If it is, +** this routine return an integer between 1 and N where N is the number of +** elements in pEList, corresponding to the matching entry. If there is +** no match, or if pE is not a simple identifier, then this routine +** return 0. +** +** pEList has been resolved. pE has not. +*/ +static int resolveAsName( + Parse *pParse, /* Parsing context for error messages */ + ExprList *pEList, /* List of expressions to scan */ + Expr *pE /* Expression we are trying to match */ +){ + int i; /* Loop counter */ + + UNUSED_PARAMETER(pParse); + + if( pE->op==TK_ID ){ + char *zCol = pE->u.zToken; + for(i=0; inExpr; i++){ + char *zAs = pEList->a[i].zName; + if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){ + return i+1; + } + } + } + return 0; +} + +/* +** pE is a pointer to an expression which is a single term in the +** ORDER BY of a compound SELECT. The expression has not been +** name resolved. +** +** At the point this routine is called, we already know that the +** ORDER BY term is not an integer index into the result set. That +** case is handled by the calling routine. +** +** Attempt to match pE against result set columns in the left-most +** SELECT statement. Return the index i of the matching column, +** as an indication to the caller that it should sort by the i-th column. +** The left-most column is 1. In other words, the value returned is the +** same integer value that would be used in the SQL statement to indicate +** the column. +** +** If there is no match, return 0. Return -1 if an error occurs. +*/ +static int resolveOrderByTermToExprList( + Parse *pParse, /* Parsing context for error messages */ + Select *pSelect, /* The SELECT statement with the ORDER BY clause */ + Expr *pE /* The specific ORDER BY term */ +){ + int i; /* Loop counter */ + ExprList *pEList; /* The columns of the result set */ + NameContext nc; /* Name context for resolving pE */ + sqlite3 *db; /* Database connection */ + int rc; /* Return code from subprocedures */ + u8 savedSuppErr; /* Saved value of db->suppressErr */ + + assert( sqlite3ExprIsInteger(pE, &i)==0 ); + pEList = pSelect->pEList; + + /* Resolve all names in the ORDER BY term expression + */ + memset(&nc, 0, sizeof(nc)); + nc.pParse = pParse; + nc.pSrcList = pSelect->pSrc; + nc.pEList = pEList; + nc.ncFlags = NC_AllowAgg; + nc.nErr = 0; + db = pParse->db; + savedSuppErr = db->suppressErr; + db->suppressErr = 1; + rc = sqlite3ResolveExprNames(&nc, pE); + db->suppressErr = savedSuppErr; + if( rc ) return 0; + + /* Try to match the ORDER BY expression against an expression + ** in the result set. Return an 1-based index of the matching + ** result-set entry. + */ + for(i=0; inExpr; i++){ + if( sqlite3ExprCompare(pEList->a[i].pExpr, pE, -1)<2 ){ + return i+1; + } + } + + /* If no match, return 0. */ + return 0; +} + +/* +** Generate an ORDER BY or GROUP BY term out-of-range error. +*/ +static void resolveOutOfRangeError( + Parse *pParse, /* The error context into which to write the error */ + const char *zType, /* "ORDER" or "GROUP" */ + int i, /* The index (1-based) of the term out of range */ + int mx /* Largest permissible value of i */ +){ + sqlite3ErrorMsg(pParse, + "%r %s BY term out of range - should be " + "between 1 and %d", i, zType, mx); +} + +/* +** Analyze the ORDER BY clause in a compound SELECT statement. Modify +** each term of the ORDER BY clause is a constant integer between 1 +** and N where N is the number of columns in the compound SELECT. +** +** ORDER BY terms that are already an integer between 1 and N are +** unmodified. ORDER BY terms that are integers outside the range of +** 1 through N generate an error. ORDER BY terms that are expressions +** are matched against result set expressions of compound SELECT +** beginning with the left-most SELECT and working toward the right. +** At the first match, the ORDER BY expression is transformed into +** the integer column number. +** +** Return the number of errors seen. +*/ +static int resolveCompoundOrderBy( + Parse *pParse, /* Parsing context. Leave error messages here */ + Select *pSelect /* The SELECT statement containing the ORDER BY */ +){ + int i; + ExprList *pOrderBy; + ExprList *pEList; + sqlite3 *db; + int moreToDo = 1; + + pOrderBy = pSelect->pOrderBy; + if( pOrderBy==0 ) return 0; + db = pParse->db; +#if SQLITE_MAX_COLUMN + if( pOrderBy->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){ + sqlite3ErrorMsg(pParse, "too many terms in ORDER BY clause"); + return 1; + } +#endif + for(i=0; inExpr; i++){ + pOrderBy->a[i].done = 0; + } + pSelect->pNext = 0; + while( pSelect->pPrior ){ + pSelect->pPrior->pNext = pSelect; + pSelect = pSelect->pPrior; + } + while( pSelect && moreToDo ){ + struct ExprList_item *pItem; + moreToDo = 0; + pEList = pSelect->pEList; + assert( pEList!=0 ); + for(i=0, pItem=pOrderBy->a; inExpr; i++, pItem++){ + int iCol = -1; + Expr *pE, *pDup; + if( pItem->done ) continue; + pE = sqlite3ExprSkipCollate(pItem->pExpr); + if( sqlite3ExprIsInteger(pE, &iCol) ){ + if( iCol<=0 || iCol>pEList->nExpr ){ + resolveOutOfRangeError(pParse, "ORDER", i+1, pEList->nExpr); + return 1; + } + }else{ + iCol = resolveAsName(pParse, pEList, pE); + if( iCol==0 ){ + pDup = sqlite3ExprDup(db, pE, 0); + if( !db->mallocFailed ){ + assert(pDup); + iCol = resolveOrderByTermToExprList(pParse, pSelect, pDup); + } + sqlite3ExprDelete(db, pDup); + } + } + if( iCol>0 ){ + /* Convert the ORDER BY term into an integer column number iCol, + ** taking care to preserve the COLLATE clause if it exists */ + Expr *pNew = sqlite3Expr(db, TK_INTEGER, 0); + if( pNew==0 ) return 1; + pNew->flags |= EP_IntValue; + pNew->u.iValue = iCol; + if( pItem->pExpr==pE ){ + pItem->pExpr = pNew; + }else{ + assert( pItem->pExpr->op==TK_COLLATE ); + assert( pItem->pExpr->pLeft==pE ); + pItem->pExpr->pLeft = pNew; + } + sqlite3ExprDelete(db, pE); + pItem->u.x.iOrderByCol = (u16)iCol; + pItem->done = 1; + }else{ + moreToDo = 1; + } + } + pSelect = pSelect->pNext; + } + for(i=0; inExpr; i++){ + if( pOrderBy->a[i].done==0 ){ + sqlite3ErrorMsg(pParse, "%r ORDER BY term does not match any " + "column in the result set", i+1); + return 1; + } + } + return 0; +} + +/* +** Check every term in the ORDER BY or GROUP BY clause pOrderBy of +** the SELECT statement pSelect. If any term is reference to a +** result set expression (as determined by the ExprList.a.u.x.iOrderByCol +** field) then convert that term into a copy of the corresponding result set +** column. +** +** If any errors are detected, add an error message to pParse and +** return non-zero. Return zero if no errors are seen. +*/ +SQLITE_PRIVATE int sqlite3ResolveOrderGroupBy( + Parse *pParse, /* Parsing context. Leave error messages here */ + Select *pSelect, /* The SELECT statement containing the clause */ + ExprList *pOrderBy, /* The ORDER BY or GROUP BY clause to be processed */ + const char *zType /* "ORDER" or "GROUP" */ +){ + int i; + sqlite3 *db = pParse->db; + ExprList *pEList; + struct ExprList_item *pItem; + + if( pOrderBy==0 || pParse->db->mallocFailed ) return 0; +#if SQLITE_MAX_COLUMN + if( pOrderBy->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){ + sqlite3ErrorMsg(pParse, "too many terms in %s BY clause", zType); + return 1; + } +#endif + pEList = pSelect->pEList; + assert( pEList!=0 ); /* sqlite3SelectNew() guarantees this */ + for(i=0, pItem=pOrderBy->a; inExpr; i++, pItem++){ + if( pItem->u.x.iOrderByCol ){ + if( pItem->u.x.iOrderByCol>pEList->nExpr ){ + resolveOutOfRangeError(pParse, zType, i+1, pEList->nExpr); + return 1; + } + resolveAlias(pParse, pEList, pItem->u.x.iOrderByCol-1, pItem->pExpr, zType,0); + } + } + return 0; +} + +/* +** pOrderBy is an ORDER BY or GROUP BY clause in SELECT statement pSelect. +** The Name context of the SELECT statement is pNC. zType is either +** "ORDER" or "GROUP" depending on which type of clause pOrderBy is. +** +** This routine resolves each term of the clause into an expression. +** If the order-by term is an integer I between 1 and N (where N is the +** number of columns in the result set of the SELECT) then the expression +** in the resolution is a copy of the I-th result-set expression. If +** the order-by term is an identifier that corresponds to the AS-name of +** a result-set expression, then the term resolves to a copy of the +** result-set expression. Otherwise, the expression is resolved in +** the usual way - using sqlite3ResolveExprNames(). +** +** This routine returns the number of errors. If errors occur, then +** an appropriate error message might be left in pParse. (OOM errors +** excepted.) +*/ +static int resolveOrderGroupBy( + NameContext *pNC, /* The name context of the SELECT statement */ + Select *pSelect, /* The SELECT statement holding pOrderBy */ + ExprList *pOrderBy, /* An ORDER BY or GROUP BY clause to resolve */ + const char *zType /* Either "ORDER" or "GROUP", as appropriate */ +){ + int i, j; /* Loop counters */ + int iCol; /* Column number */ + struct ExprList_item *pItem; /* A term of the ORDER BY clause */ + Parse *pParse; /* Parsing context */ + int nResult; /* Number of terms in the result set */ + + if( pOrderBy==0 ) return 0; + nResult = pSelect->pEList->nExpr; + pParse = pNC->pParse; + for(i=0, pItem=pOrderBy->a; inExpr; i++, pItem++){ + Expr *pE = pItem->pExpr; + Expr *pE2 = sqlite3ExprSkipCollate(pE); + if( zType[0]!='G' ){ + iCol = resolveAsName(pParse, pSelect->pEList, pE2); + if( iCol>0 ){ + /* If an AS-name match is found, mark this ORDER BY column as being + ** a copy of the iCol-th result-set column. The subsequent call to + ** sqlite3ResolveOrderGroupBy() will convert the expression to a + ** copy of the iCol-th result-set expression. */ + pItem->u.x.iOrderByCol = (u16)iCol; + continue; + } + } + if( sqlite3ExprIsInteger(pE2, &iCol) ){ + /* The ORDER BY term is an integer constant. Again, set the column + ** number so that sqlite3ResolveOrderGroupBy() will convert the + ** order-by term to a copy of the result-set expression */ + if( iCol<1 || iCol>0xffff ){ + resolveOutOfRangeError(pParse, zType, i+1, nResult); + return 1; + } + pItem->u.x.iOrderByCol = (u16)iCol; + continue; + } + + /* Otherwise, treat the ORDER BY term as an ordinary expression */ + pItem->u.x.iOrderByCol = 0; + if( sqlite3ResolveExprNames(pNC, pE) ){ + return 1; + } + for(j=0; jpEList->nExpr; j++){ + if( sqlite3ExprCompare(pE, pSelect->pEList->a[j].pExpr, -1)==0 ){ + pItem->u.x.iOrderByCol = j+1; + } + } + } + return sqlite3ResolveOrderGroupBy(pParse, pSelect, pOrderBy, zType); +} + +/* +** Resolve names in the SELECT statement p and all of its descendents. +*/ +static int resolveSelectStep(Walker *pWalker, Select *p){ + NameContext *pOuterNC; /* Context that contains this SELECT */ + NameContext sNC; /* Name context of this SELECT */ + int isCompound; /* True if p is a compound select */ + int nCompound; /* Number of compound terms processed so far */ + Parse *pParse; /* Parsing context */ + ExprList *pEList; /* Result set expression list */ + int i; /* Loop counter */ + ExprList *pGroupBy; /* The GROUP BY clause */ + Select *pLeftmost; /* Left-most of SELECT of a compound */ + sqlite3 *db; /* Database connection */ + + + assert( p!=0 ); + if( p->selFlags & SF_Resolved ){ + return WRC_Prune; + } + pOuterNC = pWalker->u.pNC; + pParse = pWalker->pParse; + db = pParse->db; + + /* Normally sqlite3SelectExpand() will be called first and will have + ** already expanded this SELECT. However, if this is a subquery within + ** an expression, sqlite3ResolveExprNames() will be called without a + ** prior call to sqlite3SelectExpand(). When that happens, let + ** sqlite3SelectPrep() do all of the processing for this SELECT. + ** sqlite3SelectPrep() will invoke both sqlite3SelectExpand() and + ** this routine in the correct order. + */ + if( (p->selFlags & SF_Expanded)==0 ){ + sqlite3SelectPrep(pParse, p, pOuterNC); + return (pParse->nErr || db->mallocFailed) ? WRC_Abort : WRC_Prune; + } + + isCompound = p->pPrior!=0; + nCompound = 0; + pLeftmost = p; + while( p ){ + assert( (p->selFlags & SF_Expanded)!=0 ); + assert( (p->selFlags & SF_Resolved)==0 ); + p->selFlags |= SF_Resolved; + + /* Resolve the expressions in the LIMIT and OFFSET clauses. These + ** are not allowed to refer to any names, so pass an empty NameContext. + */ + memset(&sNC, 0, sizeof(sNC)); + sNC.pParse = pParse; + if( sqlite3ResolveExprNames(&sNC, p->pLimit) || + sqlite3ResolveExprNames(&sNC, p->pOffset) ){ + return WRC_Abort; + } + + /* Recursively resolve names in all subqueries + */ + for(i=0; ipSrc->nSrc; i++){ + struct SrcList_item *pItem = &p->pSrc->a[i]; + if( pItem->pSelect ){ + NameContext *pNC; /* Used to iterate name contexts */ + int nRef = 0; /* Refcount for pOuterNC and outer contexts */ + const char *zSavedContext = pParse->zAuthContext; + + /* Count the total number of references to pOuterNC and all of its + ** parent contexts. After resolving references to expressions in + ** pItem->pSelect, check if this value has changed. If so, then + ** SELECT statement pItem->pSelect must be correlated. Set the + ** pItem->isCorrelated flag if this is the case. */ + for(pNC=pOuterNC; pNC; pNC=pNC->pNext) nRef += pNC->nRef; + + if( pItem->zName ) pParse->zAuthContext = pItem->zName; + sqlite3ResolveSelectNames(pParse, pItem->pSelect, pOuterNC); + pParse->zAuthContext = zSavedContext; + if( pParse->nErr || db->mallocFailed ) return WRC_Abort; + + for(pNC=pOuterNC; pNC; pNC=pNC->pNext) nRef -= pNC->nRef; + assert( pItem->isCorrelated==0 && nRef<=0 ); + pItem->isCorrelated = (nRef!=0); + } + } + + /* Set up the local name-context to pass to sqlite3ResolveExprNames() to + ** resolve the result-set expression list. + */ + sNC.ncFlags = NC_AllowAgg; + sNC.pSrcList = p->pSrc; + sNC.pNext = pOuterNC; + + /* Resolve names in the result set. */ + pEList = p->pEList; + assert( pEList!=0 ); + for(i=0; inExpr; i++){ + Expr *pX = pEList->a[i].pExpr; + if( sqlite3ResolveExprNames(&sNC, pX) ){ + return WRC_Abort; + } + } + + /* If there are no aggregate functions in the result-set, and no GROUP BY + ** expression, do not allow aggregates in any of the other expressions. + */ + assert( (p->selFlags & SF_Aggregate)==0 ); + pGroupBy = p->pGroupBy; + if( pGroupBy || (sNC.ncFlags & NC_HasAgg)!=0 ){ + p->selFlags |= SF_Aggregate; + }else{ + sNC.ncFlags &= ~NC_AllowAgg; + } + + /* If a HAVING clause is present, then there must be a GROUP BY clause. + */ + if( p->pHaving && !pGroupBy ){ + sqlite3ErrorMsg(pParse, "a GROUP BY clause is required before HAVING"); + return WRC_Abort; + } + + /* Add the output column list to the name-context before parsing the + ** other expressions in the SELECT statement. This is so that + ** expressions in the WHERE clause (etc.) can refer to expressions by + ** aliases in the result set. + ** + ** Minor point: If this is the case, then the expression will be + ** re-evaluated for each reference to it. + */ + sNC.pEList = p->pEList; + if( sqlite3ResolveExprNames(&sNC, p->pHaving) ) return WRC_Abort; + if( sqlite3ResolveExprNames(&sNC, p->pWhere) ) return WRC_Abort; + + /* The ORDER BY and GROUP BY clauses may not refer to terms in + ** outer queries + */ + sNC.pNext = 0; + sNC.ncFlags |= NC_AllowAgg; + + /* Process the ORDER BY clause for singleton SELECT statements. + ** The ORDER BY clause for compounds SELECT statements is handled + ** below, after all of the result-sets for all of the elements of + ** the compound have been resolved. + */ + if( !isCompound && resolveOrderGroupBy(&sNC, p, p->pOrderBy, "ORDER") ){ + return WRC_Abort; + } + if( db->mallocFailed ){ + return WRC_Abort; + } + + /* Resolve the GROUP BY clause. At the same time, make sure + ** the GROUP BY clause does not contain aggregate functions. + */ + if( pGroupBy ){ + struct ExprList_item *pItem; + + if( resolveOrderGroupBy(&sNC, p, pGroupBy, "GROUP") || db->mallocFailed ){ + return WRC_Abort; + } + for(i=0, pItem=pGroupBy->a; inExpr; i++, pItem++){ + if( ExprHasProperty(pItem->pExpr, EP_Agg) ){ + sqlite3ErrorMsg(pParse, "aggregate functions are not allowed in " + "the GROUP BY clause"); + return WRC_Abort; + } + } + } + + /* Advance to the next term of the compound + */ + p = p->pPrior; + nCompound++; + } + + /* Resolve the ORDER BY on a compound SELECT after all terms of + ** the compound have been resolved. + */ + if( isCompound && resolveCompoundOrderBy(pParse, pLeftmost) ){ + return WRC_Abort; + } + + return WRC_Prune; +} + +/* +** This routine walks an expression tree and resolves references to +** table columns and result-set columns. At the same time, do error +** checking on function usage and set a flag if any aggregate functions +** are seen. +** +** To resolve table columns references we look for nodes (or subtrees) of the +** form X.Y.Z or Y.Z or just Z where +** +** X: The name of a database. Ex: "main" or "temp" or +** the symbolic name assigned to an ATTACH-ed database. +** +** Y: The name of a table in a FROM clause. Or in a trigger +** one of the special names "old" or "new". +** +** Z: The name of a column in table Y. +** +** The node at the root of the subtree is modified as follows: +** +** Expr.op Changed to TK_COLUMN +** Expr.pTab Points to the Table object for X.Y +** Expr.iColumn The column index in X.Y. -1 for the rowid. +** Expr.iTable The VDBE cursor number for X.Y +** +** +** To resolve result-set references, look for expression nodes of the +** form Z (with no X and Y prefix) where the Z matches the right-hand +** size of an AS clause in the result-set of a SELECT. The Z expression +** is replaced by a copy of the left-hand side of the result-set expression. +** Table-name and function resolution occurs on the substituted expression +** tree. For example, in: +** +** SELECT a+b AS x, c+d AS y FROM t1 ORDER BY x; +** +** The "x" term of the order by is replaced by "a+b" to render: +** +** SELECT a+b AS x, c+d AS y FROM t1 ORDER BY a+b; +** +** Function calls are checked to make sure that the function is +** defined and that the correct number of arguments are specified. +** If the function is an aggregate function, then the NC_HasAgg flag is +** set and the opcode is changed from TK_FUNCTION to TK_AGG_FUNCTION. +** If an expression contains aggregate functions then the EP_Agg +** property on the expression is set. +** +** An error message is left in pParse if anything is amiss. The number +** if errors is returned. +*/ +SQLITE_PRIVATE int sqlite3ResolveExprNames( + NameContext *pNC, /* Namespace to resolve expressions in. */ + Expr *pExpr /* The expression to be analyzed. */ +){ + u8 savedHasAgg; + Walker w; + + if( pExpr==0 ) return 0; +#if SQLITE_MAX_EXPR_DEPTH>0 + { + Parse *pParse = pNC->pParse; + if( sqlite3ExprCheckHeight(pParse, pExpr->nHeight+pNC->pParse->nHeight) ){ + return 1; + } + pParse->nHeight += pExpr->nHeight; + } +#endif + savedHasAgg = pNC->ncFlags & NC_HasAgg; + pNC->ncFlags &= ~NC_HasAgg; + memset(&w, 0, sizeof(w)); + w.xExprCallback = resolveExprStep; + w.xSelectCallback = resolveSelectStep; + w.pParse = pNC->pParse; + w.u.pNC = pNC; + sqlite3WalkExpr(&w, pExpr); +#if SQLITE_MAX_EXPR_DEPTH>0 + pNC->pParse->nHeight -= pExpr->nHeight; +#endif + if( pNC->nErr>0 || w.pParse->nErr>0 ){ + ExprSetProperty(pExpr, EP_Error); + } + if( pNC->ncFlags & NC_HasAgg ){ + ExprSetProperty(pExpr, EP_Agg); + }else if( savedHasAgg ){ + pNC->ncFlags |= NC_HasAgg; + } + return ExprHasProperty(pExpr, EP_Error); +} + + +/* +** Resolve all names in all expressions of a SELECT and in all +** decendents of the SELECT, including compounds off of p->pPrior, +** subqueries in expressions, and subqueries used as FROM clause +** terms. +** +** See sqlite3ResolveExprNames() for a description of the kinds of +** transformations that occur. +** +** All SELECT statements should have been expanded using +** sqlite3SelectExpand() prior to invoking this routine. +*/ +SQLITE_PRIVATE void sqlite3ResolveSelectNames( + Parse *pParse, /* The parser context */ + Select *p, /* The SELECT statement being coded. */ + NameContext *pOuterNC /* Name context for parent SELECT statement */ +){ + Walker w; + + assert( p!=0 ); + memset(&w, 0, sizeof(w)); + w.xExprCallback = resolveExprStep; + w.xSelectCallback = resolveSelectStep; + w.pParse = pParse; + w.u.pNC = pOuterNC; + sqlite3WalkSelect(&w, p); +} + +/* +** Resolve names in expressions that can only reference a single table: +** +** * CHECK constraints +** * WHERE clauses on partial indices +** +** The Expr.iTable value for Expr.op==TK_COLUMN nodes of the expression +** is set to -1 and the Expr.iColumn value is set to the column number. +** +** Any errors cause an error message to be set in pParse. +*/ +SQLITE_PRIVATE void sqlite3ResolveSelfReference( + Parse *pParse, /* Parsing context */ + Table *pTab, /* The table being referenced */ + int type, /* NC_IsCheck or NC_PartIdx */ + Expr *pExpr, /* Expression to resolve. May be NULL. */ + ExprList *pList /* Expression list to resolve. May be NUL. */ +){ + SrcList sSrc; /* Fake SrcList for pParse->pNewTable */ + NameContext sNC; /* Name context for pParse->pNewTable */ + int i; /* Loop counter */ + + assert( type==NC_IsCheck || type==NC_PartIdx ); + memset(&sNC, 0, sizeof(sNC)); + memset(&sSrc, 0, sizeof(sSrc)); + sSrc.nSrc = 1; + sSrc.a[0].zName = pTab->zName; + sSrc.a[0].pTab = pTab; + sSrc.a[0].iCursor = -1; + sNC.pParse = pParse; + sNC.pSrcList = &sSrc; + sNC.ncFlags = type; + if( sqlite3ResolveExprNames(&sNC, pExpr) ) return; + if( pList ){ + for(i=0; inExpr; i++){ + if( sqlite3ResolveExprNames(&sNC, pList->a[i].pExpr) ){ + return; + } + } + } +} + +/************** End of resolve.c *********************************************/ +/************** Begin file expr.c ********************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains routines used for analyzing expressions and +** for generating VDBE code that evaluates expressions in SQLite. +*/ + +/* +** Return the 'affinity' of the expression pExpr if any. +** +** If pExpr is a column, a reference to a column via an 'AS' alias, +** or a sub-select with a column as the return value, then the +** affinity of that column is returned. Otherwise, 0x00 is returned, +** indicating no affinity for the expression. +** +** i.e. the WHERE clause expresssions in the following statements all +** have an affinity: +** +** CREATE TABLE t1(a); +** SELECT * FROM t1 WHERE a; +** SELECT a AS b FROM t1 WHERE b; +** SELECT * FROM t1 WHERE (select a from t1); +*/ +SQLITE_PRIVATE char sqlite3ExprAffinity(Expr *pExpr){ + int op; + pExpr = sqlite3ExprSkipCollate(pExpr); + if( pExpr->flags & EP_Generic ) return SQLITE_AFF_NONE; + op = pExpr->op; + if( op==TK_SELECT ){ + assert( pExpr->flags&EP_xIsSelect ); + return sqlite3ExprAffinity(pExpr->x.pSelect->pEList->a[0].pExpr); + } +#ifndef SQLITE_OMIT_CAST + if( op==TK_CAST ){ + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + return sqlite3AffinityType(pExpr->u.zToken, 0); + } +#endif + if( (op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER) + && pExpr->pTab!=0 + ){ + /* op==TK_REGISTER && pExpr->pTab!=0 happens when pExpr was originally + ** a TK_COLUMN but was previously evaluated and cached in a register */ + int j = pExpr->iColumn; + if( j<0 ) return SQLITE_AFF_INTEGER; + assert( pExpr->pTab && jpTab->nCol ); + return pExpr->pTab->aCol[j].affinity; + } + return pExpr->affinity; +} + +/* +** Set the collating sequence for expression pExpr to be the collating +** sequence named by pToken. Return a pointer to a new Expr node that +** implements the COLLATE operator. +** +** If a memory allocation error occurs, that fact is recorded in pParse->db +** and the pExpr parameter is returned unchanged. +*/ +SQLITE_PRIVATE Expr *sqlite3ExprAddCollateToken( + Parse *pParse, /* Parsing context */ + Expr *pExpr, /* Add the "COLLATE" clause to this expression */ + const Token *pCollName /* Name of collating sequence */ +){ + if( pCollName->n>0 ){ + Expr *pNew = sqlite3ExprAlloc(pParse->db, TK_COLLATE, pCollName, 1); + if( pNew ){ + pNew->pLeft = pExpr; + pNew->flags |= EP_Collate|EP_Skip; + pExpr = pNew; + } + } + return pExpr; +} +SQLITE_PRIVATE Expr *sqlite3ExprAddCollateString(Parse *pParse, Expr *pExpr, const char *zC){ + Token s; + assert( zC!=0 ); + s.z = zC; + s.n = sqlite3Strlen30(s.z); + return sqlite3ExprAddCollateToken(pParse, pExpr, &s); +} + +/* +** Skip over any TK_COLLATE or TK_AS operators and any unlikely() +** or likelihood() function at the root of an expression. +*/ +SQLITE_PRIVATE Expr *sqlite3ExprSkipCollate(Expr *pExpr){ + while( pExpr && ExprHasProperty(pExpr, EP_Skip) ){ + if( ExprHasProperty(pExpr, EP_Unlikely) ){ + assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); + assert( pExpr->x.pList->nExpr>0 ); + assert( pExpr->op==TK_FUNCTION ); + pExpr = pExpr->x.pList->a[0].pExpr; + }else{ + assert( pExpr->op==TK_COLLATE || pExpr->op==TK_AS ); + pExpr = pExpr->pLeft; + } + } + return pExpr; +} + +/* +** Return the collation sequence for the expression pExpr. If +** there is no defined collating sequence, return NULL. +** +** The collating sequence might be determined by a COLLATE operator +** or by the presence of a column with a defined collating sequence. +** COLLATE operators take first precedence. Left operands take +** precedence over right operands. +*/ +SQLITE_PRIVATE CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){ + sqlite3 *db = pParse->db; + CollSeq *pColl = 0; + Expr *p = pExpr; + while( p ){ + int op = p->op; + if( p->flags & EP_Generic ) break; + if( op==TK_CAST || op==TK_UPLUS ){ + p = p->pLeft; + continue; + } + if( op==TK_COLLATE || (op==TK_REGISTER && p->op2==TK_COLLATE) ){ + pColl = sqlite3GetCollSeq(pParse, ENC(db), 0, p->u.zToken); + break; + } + if( p->pTab!=0 + && (op==TK_AGG_COLUMN || op==TK_COLUMN + || op==TK_REGISTER || op==TK_TRIGGER) + ){ + /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally + ** a TK_COLUMN but was previously evaluated and cached in a register */ + int j = p->iColumn; + if( j>=0 ){ + const char *zColl = p->pTab->aCol[j].zColl; + pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); + } + break; + } + if( p->flags & EP_Collate ){ + if( ALWAYS(p->pLeft) && (p->pLeft->flags & EP_Collate)!=0 ){ + p = p->pLeft; + }else{ + p = p->pRight; + } + }else{ + break; + } + } + if( sqlite3CheckCollSeq(pParse, pColl) ){ + pColl = 0; + } + return pColl; +} + +/* +** pExpr is an operand of a comparison operator. aff2 is the +** type affinity of the other operand. This routine returns the +** type affinity that should be used for the comparison operator. +*/ +SQLITE_PRIVATE char sqlite3CompareAffinity(Expr *pExpr, char aff2){ + char aff1 = sqlite3ExprAffinity(pExpr); + if( aff1 && aff2 ){ + /* Both sides of the comparison are columns. If one has numeric + ** affinity, use that. Otherwise use no affinity. + */ + if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){ + return SQLITE_AFF_NUMERIC; + }else{ + return SQLITE_AFF_NONE; + } + }else if( !aff1 && !aff2 ){ + /* Neither side of the comparison is a column. Compare the + ** results directly. + */ + return SQLITE_AFF_NONE; + }else{ + /* One side is a column, the other is not. Use the columns affinity. */ + assert( aff1==0 || aff2==0 ); + return (aff1 + aff2); + } +} + +/* +** pExpr is a comparison operator. Return the type affinity that should +** be applied to both operands prior to doing the comparison. +*/ +static char comparisonAffinity(Expr *pExpr){ + char aff; + assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT || + pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || + pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT ); + assert( pExpr->pLeft ); + aff = sqlite3ExprAffinity(pExpr->pLeft); + if( pExpr->pRight ){ + aff = sqlite3CompareAffinity(pExpr->pRight, aff); + }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){ + aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff); + }else if( !aff ){ + aff = SQLITE_AFF_NONE; + } + return aff; +} + +/* +** pExpr is a comparison expression, eg. '=', '<', IN(...) etc. +** idx_affinity is the affinity of an indexed column. Return true +** if the index with affinity idx_affinity may be used to implement +** the comparison in pExpr. +*/ +SQLITE_PRIVATE int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){ + char aff = comparisonAffinity(pExpr); + switch( aff ){ + case SQLITE_AFF_NONE: + return 1; + case SQLITE_AFF_TEXT: + return idx_affinity==SQLITE_AFF_TEXT; + default: + return sqlite3IsNumericAffinity(idx_affinity); + } +} + +/* +** Return the P5 value that should be used for a binary comparison +** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2. +*/ +static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){ + u8 aff = (char)sqlite3ExprAffinity(pExpr2); + aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull; + return aff; +} + +/* +** Return a pointer to the collation sequence that should be used by +** a binary comparison operator comparing pLeft and pRight. +** +** If the left hand expression has a collating sequence type, then it is +** used. Otherwise the collation sequence for the right hand expression +** is used, or the default (BINARY) if neither expression has a collating +** type. +** +** Argument pRight (but not pLeft) may be a null pointer. In this case, +** it is not considered. +*/ +SQLITE_PRIVATE CollSeq *sqlite3BinaryCompareCollSeq( + Parse *pParse, + Expr *pLeft, + Expr *pRight +){ + CollSeq *pColl; + assert( pLeft ); + if( pLeft->flags & EP_Collate ){ + pColl = sqlite3ExprCollSeq(pParse, pLeft); + }else if( pRight && (pRight->flags & EP_Collate)!=0 ){ + pColl = sqlite3ExprCollSeq(pParse, pRight); + }else{ + pColl = sqlite3ExprCollSeq(pParse, pLeft); + if( !pColl ){ + pColl = sqlite3ExprCollSeq(pParse, pRight); + } + } + return pColl; +} + +/* +** Generate code for a comparison operator. +*/ +static int codeCompare( + Parse *pParse, /* The parsing (and code generating) context */ + Expr *pLeft, /* The left operand */ + Expr *pRight, /* The right operand */ + int opcode, /* The comparison opcode */ + int in1, int in2, /* Register holding operands */ + int dest, /* Jump here if true. */ + int jumpIfNull /* If true, jump if either operand is NULL */ +){ + int p5; + int addr; + CollSeq *p4; + + p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight); + p5 = binaryCompareP5(pLeft, pRight, jumpIfNull); + addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, + (void*)p4, P4_COLLSEQ); + sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); + return addr; +} + +#if SQLITE_MAX_EXPR_DEPTH>0 +/* +** Check that argument nHeight is less than or equal to the maximum +** expression depth allowed. If it is not, leave an error message in +** pParse. +*/ +SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){ + int rc = SQLITE_OK; + int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH]; + if( nHeight>mxHeight ){ + sqlite3ErrorMsg(pParse, + "Expression tree is too large (maximum depth %d)", mxHeight + ); + rc = SQLITE_ERROR; + } + return rc; +} + +/* The following three functions, heightOfExpr(), heightOfExprList() +** and heightOfSelect(), are used to determine the maximum height +** of any expression tree referenced by the structure passed as the +** first argument. +** +** If this maximum height is greater than the current value pointed +** to by pnHeight, the second parameter, then set *pnHeight to that +** value. +*/ +static void heightOfExpr(Expr *p, int *pnHeight){ + if( p ){ + if( p->nHeight>*pnHeight ){ + *pnHeight = p->nHeight; + } + } +} +static void heightOfExprList(ExprList *p, int *pnHeight){ + if( p ){ + int i; + for(i=0; inExpr; i++){ + heightOfExpr(p->a[i].pExpr, pnHeight); + } + } +} +static void heightOfSelect(Select *p, int *pnHeight){ + if( p ){ + heightOfExpr(p->pWhere, pnHeight); + heightOfExpr(p->pHaving, pnHeight); + heightOfExpr(p->pLimit, pnHeight); + heightOfExpr(p->pOffset, pnHeight); + heightOfExprList(p->pEList, pnHeight); + heightOfExprList(p->pGroupBy, pnHeight); + heightOfExprList(p->pOrderBy, pnHeight); + heightOfSelect(p->pPrior, pnHeight); + } +} + +/* +** Set the Expr.nHeight variable in the structure passed as an +** argument. An expression with no children, Expr.pList or +** Expr.pSelect member has a height of 1. Any other expression +** has a height equal to the maximum height of any other +** referenced Expr plus one. +*/ +static void exprSetHeight(Expr *p){ + int nHeight = 0; + heightOfExpr(p->pLeft, &nHeight); + heightOfExpr(p->pRight, &nHeight); + if( ExprHasProperty(p, EP_xIsSelect) ){ + heightOfSelect(p->x.pSelect, &nHeight); + }else{ + heightOfExprList(p->x.pList, &nHeight); + } + p->nHeight = nHeight + 1; +} + +/* +** Set the Expr.nHeight variable using the exprSetHeight() function. If +** the height is greater than the maximum allowed expression depth, +** leave an error in pParse. +*/ +SQLITE_PRIVATE void sqlite3ExprSetHeight(Parse *pParse, Expr *p){ + exprSetHeight(p); + sqlite3ExprCheckHeight(pParse, p->nHeight); +} + +/* +** Return the maximum height of any expression tree referenced +** by the select statement passed as an argument. +*/ +SQLITE_PRIVATE int sqlite3SelectExprHeight(Select *p){ + int nHeight = 0; + heightOfSelect(p, &nHeight); + return nHeight; +} +#else + #define exprSetHeight(y) +#endif /* SQLITE_MAX_EXPR_DEPTH>0 */ + +/* +** This routine is the core allocator for Expr nodes. +** +** Construct a new expression node and return a pointer to it. Memory +** for this node and for the pToken argument is a single allocation +** obtained from sqlite3DbMalloc(). The calling function +** is responsible for making sure the node eventually gets freed. +** +** If dequote is true, then the token (if it exists) is dequoted. +** If dequote is false, no dequoting is performance. The deQuote +** parameter is ignored if pToken is NULL or if the token does not +** appear to be quoted. If the quotes were of the form "..." (double-quotes) +** then the EP_DblQuoted flag is set on the expression node. +** +** Special case: If op==TK_INTEGER and pToken points to a string that +** can be translated into a 32-bit integer, then the token is not +** stored in u.zToken. Instead, the integer values is written +** into u.iValue and the EP_IntValue flag is set. No extra storage +** is allocated to hold the integer text and the dequote flag is ignored. +*/ +SQLITE_PRIVATE Expr *sqlite3ExprAlloc( + sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ + int op, /* Expression opcode */ + const Token *pToken, /* Token argument. Might be NULL */ + int dequote /* True to dequote */ +){ + Expr *pNew; + int nExtra = 0; + int iValue = 0; + + if( pToken ){ + if( op!=TK_INTEGER || pToken->z==0 + || sqlite3GetInt32(pToken->z, &iValue)==0 ){ + nExtra = pToken->n+1; + assert( iValue>=0 ); + } + } + pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra); + if( pNew ){ + pNew->op = (u8)op; + pNew->iAgg = -1; + if( pToken ){ + if( nExtra==0 ){ + pNew->flags |= EP_IntValue; + pNew->u.iValue = iValue; + }else{ + int c; + pNew->u.zToken = (char*)&pNew[1]; + assert( pToken->z!=0 || pToken->n==0 ); + if( pToken->n ) memcpy(pNew->u.zToken, pToken->z, pToken->n); + pNew->u.zToken[pToken->n] = 0; + if( dequote && nExtra>=3 + && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){ + sqlite3Dequote(pNew->u.zToken); + if( c=='"' ) pNew->flags |= EP_DblQuoted; + } + } + } +#if SQLITE_MAX_EXPR_DEPTH>0 + pNew->nHeight = 1; +#endif + } + return pNew; +} + +/* +** Allocate a new expression node from a zero-terminated token that has +** already been dequoted. +*/ +SQLITE_PRIVATE Expr *sqlite3Expr( + sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ + int op, /* Expression opcode */ + const char *zToken /* Token argument. Might be NULL */ +){ + Token x; + x.z = zToken; + x.n = zToken ? sqlite3Strlen30(zToken) : 0; + return sqlite3ExprAlloc(db, op, &x, 0); +} + +/* +** Attach subtrees pLeft and pRight to the Expr node pRoot. +** +** If pRoot==NULL that means that a memory allocation error has occurred. +** In that case, delete the subtrees pLeft and pRight. +*/ +SQLITE_PRIVATE void sqlite3ExprAttachSubtrees( + sqlite3 *db, + Expr *pRoot, + Expr *pLeft, + Expr *pRight +){ + if( pRoot==0 ){ + assert( db->mallocFailed ); + sqlite3ExprDelete(db, pLeft); + sqlite3ExprDelete(db, pRight); + }else{ + if( pRight ){ + pRoot->pRight = pRight; + pRoot->flags |= EP_Collate & pRight->flags; + } + if( pLeft ){ + pRoot->pLeft = pLeft; + pRoot->flags |= EP_Collate & pLeft->flags; + } + exprSetHeight(pRoot); + } +} + +/* +** Allocate a Expr node which joins as many as two subtrees. +** +** One or both of the subtrees can be NULL. Return a pointer to the new +** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed, +** free the subtrees and return NULL. +*/ +SQLITE_PRIVATE Expr *sqlite3PExpr( + Parse *pParse, /* Parsing context */ + int op, /* Expression opcode */ + Expr *pLeft, /* Left operand */ + Expr *pRight, /* Right operand */ + const Token *pToken /* Argument token */ +){ + Expr *p; + if( op==TK_AND && pLeft && pRight ){ + /* Take advantage of short-circuit false optimization for AND */ + p = sqlite3ExprAnd(pParse->db, pLeft, pRight); + }else{ + p = sqlite3ExprAlloc(pParse->db, op, pToken, 1); + sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight); + } + if( p ) { + sqlite3ExprCheckHeight(pParse, p->nHeight); + } + return p; +} + +/* +** If the expression is always either TRUE or FALSE (respectively), +** then return 1. If one cannot determine the truth value of the +** expression at compile-time return 0. +** +** This is an optimization. If is OK to return 0 here even if +** the expression really is always false or false (a false negative). +** But it is a bug to return 1 if the expression might have different +** boolean values in different circumstances (a false positive.) +** +** Note that if the expression is part of conditional for a +** LEFT JOIN, then we cannot determine at compile-time whether or not +** is it true or false, so always return 0. +*/ +static int exprAlwaysTrue(Expr *p){ + int v = 0; + if( ExprHasProperty(p, EP_FromJoin) ) return 0; + if( !sqlite3ExprIsInteger(p, &v) ) return 0; + return v!=0; +} +static int exprAlwaysFalse(Expr *p){ + int v = 0; + if( ExprHasProperty(p, EP_FromJoin) ) return 0; + if( !sqlite3ExprIsInteger(p, &v) ) return 0; + return v==0; +} + +/* +** Join two expressions using an AND operator. If either expression is +** NULL, then just return the other expression. +** +** If one side or the other of the AND is known to be false, then instead +** of returning an AND expression, just return a constant expression with +** a value of false. +*/ +SQLITE_PRIVATE Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){ + if( pLeft==0 ){ + return pRight; + }else if( pRight==0 ){ + return pLeft; + }else if( exprAlwaysFalse(pLeft) || exprAlwaysFalse(pRight) ){ + sqlite3ExprDelete(db, pLeft); + sqlite3ExprDelete(db, pRight); + return sqlite3ExprAlloc(db, TK_INTEGER, &sqlite3IntTokens[0], 0); + }else{ + Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0); + sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight); + return pNew; + } +} + +/* +** Construct a new expression node for a function with multiple +** arguments. +*/ +SQLITE_PRIVATE Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){ + Expr *pNew; + sqlite3 *db = pParse->db; + assert( pToken ); + pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1); + if( pNew==0 ){ + sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */ + return 0; + } + pNew->x.pList = pList; + assert( !ExprHasProperty(pNew, EP_xIsSelect) ); + sqlite3ExprSetHeight(pParse, pNew); + return pNew; +} + +/* +** Assign a variable number to an expression that encodes a wildcard +** in the original SQL statement. +** +** Wildcards consisting of a single "?" are assigned the next sequential +** variable number. +** +** Wildcards of the form "?nnn" are assigned the number "nnn". We make +** sure "nnn" is not too be to avoid a denial of service attack when +** the SQL statement comes from an external source. +** +** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number +** as the previous instance of the same wildcard. Or if this is the first +** instance of the wildcard, the next sequenial variable number is +** assigned. +*/ +SQLITE_PRIVATE void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ + sqlite3 *db = pParse->db; + const char *z; + + if( pExpr==0 ) return; + assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) ); + z = pExpr->u.zToken; + assert( z!=0 ); + assert( z[0]!=0 ); + if( z[1]==0 ){ + /* Wildcard of the form "?". Assign the next variable number */ + assert( z[0]=='?' ); + pExpr->iColumn = (ynVar)(++pParse->nVar); + }else{ + ynVar x = 0; + u32 n = sqlite3Strlen30(z); + if( z[0]=='?' ){ + /* Wildcard of the form "?nnn". Convert "nnn" to an integer and + ** use it as the variable number */ + i64 i; + int bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8); + pExpr->iColumn = x = (ynVar)i; + testcase( i==0 ); + testcase( i==1 ); + testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 ); + testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ); + if( bOk==0 || i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ + sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", + db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); + x = 0; + } + if( i>pParse->nVar ){ + pParse->nVar = (int)i; + } + }else{ + /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable + ** number as the prior appearance of the same name, or if the name + ** has never appeared before, reuse the same variable number + */ + ynVar i; + for(i=0; inzVar; i++){ + if( pParse->azVar[i] && strcmp(pParse->azVar[i],z)==0 ){ + pExpr->iColumn = x = (ynVar)i+1; + break; + } + } + if( x==0 ) x = pExpr->iColumn = (ynVar)(++pParse->nVar); + } + if( x>0 ){ + if( x>pParse->nzVar ){ + char **a; + a = sqlite3DbRealloc(db, pParse->azVar, x*sizeof(a[0])); + if( a==0 ) return; /* Error reported through db->mallocFailed */ + pParse->azVar = a; + memset(&a[pParse->nzVar], 0, (x-pParse->nzVar)*sizeof(a[0])); + pParse->nzVar = x; + } + if( z[0]!='?' || pParse->azVar[x-1]==0 ){ + sqlite3DbFree(db, pParse->azVar[x-1]); + pParse->azVar[x-1] = sqlite3DbStrNDup(db, z, n); + } + } + } + if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ + sqlite3ErrorMsg(pParse, "too many SQL variables"); + } +} + +/* +** Recursively delete an expression tree. +*/ +SQLITE_PRIVATE void sqlite3ExprDelete(sqlite3 *db, Expr *p){ + if( p==0 ) return; + /* Sanity check: Assert that the IntValue is non-negative if it exists */ + assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 ); + if( !ExprHasProperty(p, EP_TokenOnly) ){ + /* The Expr.x union is never used at the same time as Expr.pRight */ + assert( p->x.pList==0 || p->pRight==0 ); + sqlite3ExprDelete(db, p->pLeft); + sqlite3ExprDelete(db, p->pRight); + if( ExprHasProperty(p, EP_MemToken) ) sqlite3DbFree(db, p->u.zToken); + if( ExprHasProperty(p, EP_xIsSelect) ){ + sqlite3SelectDelete(db, p->x.pSelect); + }else{ + sqlite3ExprListDelete(db, p->x.pList); + } + } + if( !ExprHasProperty(p, EP_Static) ){ + sqlite3DbFree(db, p); + } +} + +/* +** Return the number of bytes allocated for the expression structure +** passed as the first argument. This is always one of EXPR_FULLSIZE, +** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE. +*/ +static int exprStructSize(Expr *p){ + if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE; + if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE; + return EXPR_FULLSIZE; +} + +/* +** The dupedExpr*Size() routines each return the number of bytes required +** to store a copy of an expression or expression tree. They differ in +** how much of the tree is measured. +** +** dupedExprStructSize() Size of only the Expr structure +** dupedExprNodeSize() Size of Expr + space for token +** dupedExprSize() Expr + token + subtree components +** +*************************************************************************** +** +** The dupedExprStructSize() function returns two values OR-ed together: +** (1) the space required for a copy of the Expr structure only and +** (2) the EP_xxx flags that indicate what the structure size should be. +** The return values is always one of: +** +** EXPR_FULLSIZE +** EXPR_REDUCEDSIZE | EP_Reduced +** EXPR_TOKENONLYSIZE | EP_TokenOnly +** +** The size of the structure can be found by masking the return value +** of this routine with 0xfff. The flags can be found by masking the +** return value with EP_Reduced|EP_TokenOnly. +** +** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size +** (unreduced) Expr objects as they or originally constructed by the parser. +** During expression analysis, extra information is computed and moved into +** later parts of teh Expr object and that extra information might get chopped +** off if the expression is reduced. Note also that it does not work to +** make a EXPRDUP_REDUCE copy of a reduced expression. It is only legal +** to reduce a pristine expression tree from the parser. The implementation +** of dupedExprStructSize() contain multiple assert() statements that attempt +** to enforce this constraint. +*/ +static int dupedExprStructSize(Expr *p, int flags){ + int nSize; + assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */ + assert( EXPR_FULLSIZE<=0xfff ); + assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 ); + if( 0==(flags&EXPRDUP_REDUCE) ){ + nSize = EXPR_FULLSIZE; + }else{ + assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); + assert( !ExprHasProperty(p, EP_FromJoin) ); + assert( !ExprHasProperty(p, EP_MemToken) ); + assert( !ExprHasProperty(p, EP_NoReduce) ); + if( p->pLeft || p->x.pList ){ + nSize = EXPR_REDUCEDSIZE | EP_Reduced; + }else{ + assert( p->pRight==0 ); + nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; + } + } + return nSize; +} + +/* +** This function returns the space in bytes required to store the copy +** of the Expr structure and a copy of the Expr.u.zToken string (if that +** string is defined.) +*/ +static int dupedExprNodeSize(Expr *p, int flags){ + int nByte = dupedExprStructSize(p, flags) & 0xfff; + if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ + nByte += sqlite3Strlen30(p->u.zToken)+1; + } + return ROUND8(nByte); +} + +/* +** Return the number of bytes required to create a duplicate of the +** expression passed as the first argument. The second argument is a +** mask containing EXPRDUP_XXX flags. +** +** The value returned includes space to create a copy of the Expr struct +** itself and the buffer referred to by Expr.u.zToken, if any. +** +** If the EXPRDUP_REDUCE flag is set, then the return value includes +** space to duplicate all Expr nodes in the tree formed by Expr.pLeft +** and Expr.pRight variables (but not for any structures pointed to or +** descended from the Expr.x.pList or Expr.x.pSelect variables). +*/ +static int dupedExprSize(Expr *p, int flags){ + int nByte = 0; + if( p ){ + nByte = dupedExprNodeSize(p, flags); + if( flags&EXPRDUP_REDUCE ){ + nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags); + } + } + return nByte; +} + +/* +** This function is similar to sqlite3ExprDup(), except that if pzBuffer +** is not NULL then *pzBuffer is assumed to point to a buffer large enough +** to store the copy of expression p, the copies of p->u.zToken +** (if applicable), and the copies of the p->pLeft and p->pRight expressions, +** if any. Before returning, *pzBuffer is set to the first byte passed the +** portion of the buffer copied into by this function. +*/ +static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){ + Expr *pNew = 0; /* Value to return */ + if( p ){ + const int isReduced = (flags&EXPRDUP_REDUCE); + u8 *zAlloc; + u32 staticFlag = 0; + + assert( pzBuffer==0 || isReduced ); + + /* Figure out where to write the new Expr structure. */ + if( pzBuffer ){ + zAlloc = *pzBuffer; + staticFlag = EP_Static; + }else{ + zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags)); + } + pNew = (Expr *)zAlloc; + + if( pNew ){ + /* Set nNewSize to the size allocated for the structure pointed to + ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or + ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed + ** by the copy of the p->u.zToken string (if any). + */ + const unsigned nStructSize = dupedExprStructSize(p, flags); + const int nNewSize = nStructSize & 0xfff; + int nToken; + if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ + nToken = sqlite3Strlen30(p->u.zToken) + 1; + }else{ + nToken = 0; + } + if( isReduced ){ + assert( ExprHasProperty(p, EP_Reduced)==0 ); + memcpy(zAlloc, p, nNewSize); + }else{ + int nSize = exprStructSize(p); + memcpy(zAlloc, p, nSize); + memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize); + } + + /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */ + pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static|EP_MemToken); + pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); + pNew->flags |= staticFlag; + + /* Copy the p->u.zToken string, if any. */ + if( nToken ){ + char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize]; + memcpy(zToken, p->u.zToken, nToken); + } + + if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){ + /* Fill in the pNew->x.pSelect or pNew->x.pList member. */ + if( ExprHasProperty(p, EP_xIsSelect) ){ + pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced); + }else{ + pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced); + } + } + + /* Fill in pNew->pLeft and pNew->pRight. */ + if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly) ){ + zAlloc += dupedExprNodeSize(p, flags); + if( ExprHasProperty(pNew, EP_Reduced) ){ + pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc); + pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc); + } + if( pzBuffer ){ + *pzBuffer = zAlloc; + } + }else{ + if( !ExprHasProperty(p, EP_TokenOnly) ){ + pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0); + pNew->pRight = sqlite3ExprDup(db, p->pRight, 0); + } + } + + } + } + return pNew; +} + +/* +** Create and return a deep copy of the object passed as the second +** argument. If an OOM condition is encountered, NULL is returned +** and the db->mallocFailed flag set. +*/ +#ifndef SQLITE_OMIT_CTE +static With *withDup(sqlite3 *db, With *p){ + With *pRet = 0; + if( p ){ + int nByte = sizeof(*p) + sizeof(p->a[0]) * (p->nCte-1); + pRet = sqlite3DbMallocZero(db, nByte); + if( pRet ){ + int i; + pRet->nCte = p->nCte; + for(i=0; inCte; i++){ + pRet->a[i].pSelect = sqlite3SelectDup(db, p->a[i].pSelect, 0); + pRet->a[i].pCols = sqlite3ExprListDup(db, p->a[i].pCols, 0); + pRet->a[i].zName = sqlite3DbStrDup(db, p->a[i].zName); + } + } + } + return pRet; +} +#else +# define withDup(x,y) 0 +#endif + +/* +** The following group of routines make deep copies of expressions, +** expression lists, ID lists, and select statements. The copies can +** be deleted (by being passed to their respective ...Delete() routines) +** without effecting the originals. +** +** The expression list, ID, and source lists return by sqlite3ExprListDup(), +** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded +** by subsequent calls to sqlite*ListAppend() routines. +** +** Any tables that the SrcList might point to are not duplicated. +** +** The flags parameter contains a combination of the EXPRDUP_XXX flags. +** If the EXPRDUP_REDUCE flag is set, then the structure returned is a +** truncated version of the usual Expr structure that will be stored as +** part of the in-memory representation of the database schema. +*/ +SQLITE_PRIVATE Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){ + return exprDup(db, p, flags, 0); +} +SQLITE_PRIVATE ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){ + ExprList *pNew; + struct ExprList_item *pItem, *pOldItem; + int i; + if( p==0 ) return 0; + pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); + if( pNew==0 ) return 0; + pNew->nExpr = i = p->nExpr; + if( (flags & EXPRDUP_REDUCE)==0 ) for(i=1; inExpr; i+=i){} + pNew->a = pItem = sqlite3DbMallocRaw(db, i*sizeof(p->a[0]) ); + if( pItem==0 ){ + sqlite3DbFree(db, pNew); + return 0; + } + pOldItem = p->a; + for(i=0; inExpr; i++, pItem++, pOldItem++){ + Expr *pOldExpr = pOldItem->pExpr; + pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags); + pItem->zName = sqlite3DbStrDup(db, pOldItem->zName); + pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan); + pItem->sortOrder = pOldItem->sortOrder; + pItem->done = 0; + pItem->bSpanIsTab = pOldItem->bSpanIsTab; + pItem->u = pOldItem->u; + } + return pNew; +} + +/* +** If cursors, triggers, views and subqueries are all omitted from +** the build, then none of the following routines, except for +** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes +** called with a NULL argument. +*/ +#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ + || !defined(SQLITE_OMIT_SUBQUERY) +SQLITE_PRIVATE SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){ + SrcList *pNew; + int i; + int nByte; + if( p==0 ) return 0; + nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); + pNew = sqlite3DbMallocRaw(db, nByte ); + if( pNew==0 ) return 0; + pNew->nSrc = pNew->nAlloc = p->nSrc; + for(i=0; inSrc; i++){ + struct SrcList_item *pNewItem = &pNew->a[i]; + struct SrcList_item *pOldItem = &p->a[i]; + Table *pTab; + pNewItem->pSchema = pOldItem->pSchema; + pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase); + pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); + pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias); + pNewItem->jointype = pOldItem->jointype; + pNewItem->iCursor = pOldItem->iCursor; + pNewItem->addrFillSub = pOldItem->addrFillSub; + pNewItem->regReturn = pOldItem->regReturn; + pNewItem->isCorrelated = pOldItem->isCorrelated; + pNewItem->viaCoroutine = pOldItem->viaCoroutine; + pNewItem->isRecursive = pOldItem->isRecursive; + pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex); + pNewItem->notIndexed = pOldItem->notIndexed; + pNewItem->pIndex = pOldItem->pIndex; + pTab = pNewItem->pTab = pOldItem->pTab; + if( pTab ){ + pTab->nRef++; + } + pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags); + pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); + pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); + pNewItem->colUsed = pOldItem->colUsed; + } + return pNew; +} +SQLITE_PRIVATE IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){ + IdList *pNew; + int i; + if( p==0 ) return 0; + pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); + if( pNew==0 ) return 0; + pNew->nId = p->nId; + pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) ); + if( pNew->a==0 ){ + sqlite3DbFree(db, pNew); + return 0; + } + /* Note that because the size of the allocation for p->a[] is not + ** necessarily a power of two, sqlite3IdListAppend() may not be called + ** on the duplicate created by this function. */ + for(i=0; inId; i++){ + struct IdList_item *pNewItem = &pNew->a[i]; + struct IdList_item *pOldItem = &p->a[i]; + pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); + pNewItem->idx = pOldItem->idx; + } + return pNew; +} +SQLITE_PRIVATE Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ + Select *pNew, *pPrior; + if( p==0 ) return 0; + pNew = sqlite3DbMallocRaw(db, sizeof(*p) ); + if( pNew==0 ) return 0; + pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags); + pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags); + pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags); + pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags); + pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags); + pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags); + pNew->op = p->op; + pNew->pPrior = pPrior = sqlite3SelectDup(db, p->pPrior, flags); + if( pPrior ) pPrior->pNext = pNew; + pNew->pNext = 0; + pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags); + pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags); + pNew->iLimit = 0; + pNew->iOffset = 0; + pNew->selFlags = p->selFlags & ~SF_UsesEphemeral; + pNew->addrOpenEphm[0] = -1; + pNew->addrOpenEphm[1] = -1; + pNew->nSelectRow = p->nSelectRow; + pNew->pWith = withDup(db, p->pWith); + return pNew; +} +#else +SQLITE_PRIVATE Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ + assert( p==0 ); + return 0; +} +#endif + + +/* +** Add a new element to the end of an expression list. If pList is +** initially NULL, then create a new expression list. +** +** If a memory allocation error occurs, the entire list is freed and +** NULL is returned. If non-NULL is returned, then it is guaranteed +** that the new entry was successfully appended. +*/ +SQLITE_PRIVATE ExprList *sqlite3ExprListAppend( + Parse *pParse, /* Parsing context */ + ExprList *pList, /* List to which to append. Might be NULL */ + Expr *pExpr /* Expression to be appended. Might be NULL */ +){ + sqlite3 *db = pParse->db; + if( pList==0 ){ + pList = sqlite3DbMallocZero(db, sizeof(ExprList) ); + if( pList==0 ){ + goto no_mem; + } + pList->a = sqlite3DbMallocRaw(db, sizeof(pList->a[0])); + if( pList->a==0 ) goto no_mem; + }else if( (pList->nExpr & (pList->nExpr-1))==0 ){ + struct ExprList_item *a; + assert( pList->nExpr>0 ); + a = sqlite3DbRealloc(db, pList->a, pList->nExpr*2*sizeof(pList->a[0])); + if( a==0 ){ + goto no_mem; + } + pList->a = a; + } + assert( pList->a!=0 ); + if( 1 ){ + struct ExprList_item *pItem = &pList->a[pList->nExpr++]; + memset(pItem, 0, sizeof(*pItem)); + pItem->pExpr = pExpr; + } + return pList; + +no_mem: + /* Avoid leaking memory if malloc has failed. */ + sqlite3ExprDelete(db, pExpr); + sqlite3ExprListDelete(db, pList); + return 0; +} + +/* +** Set the ExprList.a[].zName element of the most recently added item +** on the expression list. +** +** pList might be NULL following an OOM error. But pName should never be +** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag +** is set. +*/ +SQLITE_PRIVATE void sqlite3ExprListSetName( + Parse *pParse, /* Parsing context */ + ExprList *pList, /* List to which to add the span. */ + Token *pName, /* Name to be added */ + int dequote /* True to cause the name to be dequoted */ +){ + assert( pList!=0 || pParse->db->mallocFailed!=0 ); + if( pList ){ + struct ExprList_item *pItem; + assert( pList->nExpr>0 ); + pItem = &pList->a[pList->nExpr-1]; + assert( pItem->zName==0 ); + pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n); + if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName); + } +} + +/* +** Set the ExprList.a[].zSpan element of the most recently added item +** on the expression list. +** +** pList might be NULL following an OOM error. But pSpan should never be +** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag +** is set. +*/ +SQLITE_PRIVATE void sqlite3ExprListSetSpan( + Parse *pParse, /* Parsing context */ + ExprList *pList, /* List to which to add the span. */ + ExprSpan *pSpan /* The span to be added */ +){ + sqlite3 *db = pParse->db; + assert( pList!=0 || db->mallocFailed!=0 ); + if( pList ){ + struct ExprList_item *pItem = &pList->a[pList->nExpr-1]; + assert( pList->nExpr>0 ); + assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr ); + sqlite3DbFree(db, pItem->zSpan); + pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart, + (int)(pSpan->zEnd - pSpan->zStart)); + } +} + +/* +** If the expression list pEList contains more than iLimit elements, +** leave an error message in pParse. +*/ +SQLITE_PRIVATE void sqlite3ExprListCheckLength( + Parse *pParse, + ExprList *pEList, + const char *zObject +){ + int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN]; + testcase( pEList && pEList->nExpr==mx ); + testcase( pEList && pEList->nExpr==mx+1 ); + if( pEList && pEList->nExpr>mx ){ + sqlite3ErrorMsg(pParse, "too many columns in %s", zObject); + } +} + +/* +** Delete an entire expression list. +*/ +SQLITE_PRIVATE void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){ + int i; + struct ExprList_item *pItem; + if( pList==0 ) return; + assert( pList->a!=0 || pList->nExpr==0 ); + for(pItem=pList->a, i=0; inExpr; i++, pItem++){ + sqlite3ExprDelete(db, pItem->pExpr); + sqlite3DbFree(db, pItem->zName); + sqlite3DbFree(db, pItem->zSpan); + } + sqlite3DbFree(db, pList->a); + sqlite3DbFree(db, pList); +} + +/* +** These routines are Walker callbacks. Walker.u.pi is a pointer +** to an integer. These routines are checking an expression to see +** if it is a constant. Set *Walker.u.pi to 0 if the expression is +** not constant. +** +** These callback routines are used to implement the following: +** +** sqlite3ExprIsConstant() +** sqlite3ExprIsConstantNotJoin() +** sqlite3ExprIsConstantOrFunction() +** +*/ +static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){ + + /* If pWalker->u.i is 3 then any term of the expression that comes from + ** the ON or USING clauses of a join disqualifies the expression + ** from being considered constant. */ + if( pWalker->u.i==3 && ExprHasProperty(pExpr, EP_FromJoin) ){ + pWalker->u.i = 0; + return WRC_Abort; + } + + switch( pExpr->op ){ + /* Consider functions to be constant if all their arguments are constant + ** and either pWalker->u.i==2 or the function as the SQLITE_FUNC_CONST + ** flag. */ + case TK_FUNCTION: + if( pWalker->u.i==2 || ExprHasProperty(pExpr,EP_Constant) ){ + return WRC_Continue; + } + /* Fall through */ + case TK_ID: + case TK_COLUMN: + case TK_AGG_FUNCTION: + case TK_AGG_COLUMN: + testcase( pExpr->op==TK_ID ); + testcase( pExpr->op==TK_COLUMN ); + testcase( pExpr->op==TK_AGG_FUNCTION ); + testcase( pExpr->op==TK_AGG_COLUMN ); + pWalker->u.i = 0; + return WRC_Abort; + default: + testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */ + testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */ + return WRC_Continue; + } +} +static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){ + UNUSED_PARAMETER(NotUsed); + pWalker->u.i = 0; + return WRC_Abort; +} +static int exprIsConst(Expr *p, int initFlag){ + Walker w; + memset(&w, 0, sizeof(w)); + w.u.i = initFlag; + w.xExprCallback = exprNodeIsConstant; + w.xSelectCallback = selectNodeIsConstant; + sqlite3WalkExpr(&w, p); + return w.u.i; +} + +/* +** Walk an expression tree. Return 1 if the expression is constant +** and 0 if it involves variables or function calls. +** +** For the purposes of this function, a double-quoted string (ex: "abc") +** is considered a variable but a single-quoted string (ex: 'abc') is +** a constant. +*/ +SQLITE_PRIVATE int sqlite3ExprIsConstant(Expr *p){ + return exprIsConst(p, 1); +} + +/* +** Walk an expression tree. Return 1 if the expression is constant +** that does no originate from the ON or USING clauses of a join. +** Return 0 if it involves variables or function calls or terms from +** an ON or USING clause. +*/ +SQLITE_PRIVATE int sqlite3ExprIsConstantNotJoin(Expr *p){ + return exprIsConst(p, 3); +} + +/* +** Walk an expression tree. Return 1 if the expression is constant +** or a function call with constant arguments. Return and 0 if there +** are any variables. +** +** For the purposes of this function, a double-quoted string (ex: "abc") +** is considered a variable but a single-quoted string (ex: 'abc') is +** a constant. +*/ +SQLITE_PRIVATE int sqlite3ExprIsConstantOrFunction(Expr *p){ + return exprIsConst(p, 2); +} + +/* +** If the expression p codes a constant integer that is small enough +** to fit in a 32-bit integer, return 1 and put the value of the integer +** in *pValue. If the expression is not an integer or if it is too big +** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. +*/ +SQLITE_PRIVATE int sqlite3ExprIsInteger(Expr *p, int *pValue){ + int rc = 0; + + /* If an expression is an integer literal that fits in a signed 32-bit + ** integer, then the EP_IntValue flag will have already been set */ + assert( p->op!=TK_INTEGER || (p->flags & EP_IntValue)!=0 + || sqlite3GetInt32(p->u.zToken, &rc)==0 ); + + if( p->flags & EP_IntValue ){ + *pValue = p->u.iValue; + return 1; + } + switch( p->op ){ + case TK_UPLUS: { + rc = sqlite3ExprIsInteger(p->pLeft, pValue); + break; + } + case TK_UMINUS: { + int v; + if( sqlite3ExprIsInteger(p->pLeft, &v) ){ + assert( v!=(-2147483647-1) ); + *pValue = -v; + rc = 1; + } + break; + } + default: break; + } + return rc; +} + +/* +** Return FALSE if there is no chance that the expression can be NULL. +** +** If the expression might be NULL or if the expression is too complex +** to tell return TRUE. +** +** This routine is used as an optimization, to skip OP_IsNull opcodes +** when we know that a value cannot be NULL. Hence, a false positive +** (returning TRUE when in fact the expression can never be NULL) might +** be a small performance hit but is otherwise harmless. On the other +** hand, a false negative (returning FALSE when the result could be NULL) +** will likely result in an incorrect answer. So when in doubt, return +** TRUE. +*/ +SQLITE_PRIVATE int sqlite3ExprCanBeNull(const Expr *p){ + u8 op; + while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } + op = p->op; + if( op==TK_REGISTER ) op = p->op2; + switch( op ){ + case TK_INTEGER: + case TK_STRING: + case TK_FLOAT: + case TK_BLOB: + return 0; + default: + return 1; + } +} + +/* +** Return TRUE if the given expression is a constant which would be +** unchanged by OP_Affinity with the affinity given in the second +** argument. +** +** This routine is used to determine if the OP_Affinity operation +** can be omitted. When in doubt return FALSE. A false negative +** is harmless. A false positive, however, can result in the wrong +** answer. +*/ +SQLITE_PRIVATE int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){ + u8 op; + if( aff==SQLITE_AFF_NONE ) return 1; + while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } + op = p->op; + if( op==TK_REGISTER ) op = p->op2; + switch( op ){ + case TK_INTEGER: { + return aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC; + } + case TK_FLOAT: { + return aff==SQLITE_AFF_REAL || aff==SQLITE_AFF_NUMERIC; + } + case TK_STRING: { + return aff==SQLITE_AFF_TEXT; + } + case TK_BLOB: { + return 1; + } + case TK_COLUMN: { + assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */ + return p->iColumn<0 + && (aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC); + } + default: { + return 0; + } + } +} + +/* +** Return TRUE if the given string is a row-id column name. +*/ +SQLITE_PRIVATE int sqlite3IsRowid(const char *z){ + if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; + if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; + if( sqlite3StrICmp(z, "OID")==0 ) return 1; + return 0; +} + +/* +** Return true if we are able to the IN operator optimization on a +** query of the form +** +** x IN (SELECT ...) +** +** Where the SELECT... clause is as specified by the parameter to this +** routine. +** +** The Select object passed in has already been preprocessed and no +** errors have been found. +*/ +#ifndef SQLITE_OMIT_SUBQUERY +static int isCandidateForInOpt(Select *p){ + SrcList *pSrc; + ExprList *pEList; + Table *pTab; + if( p==0 ) return 0; /* right-hand side of IN is SELECT */ + if( p->pPrior ) return 0; /* Not a compound SELECT */ + if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ + testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); + testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); + return 0; /* No DISTINCT keyword and no aggregate functions */ + } + assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ + if( p->pLimit ) return 0; /* Has no LIMIT clause */ + assert( p->pOffset==0 ); /* No LIMIT means no OFFSET */ + if( p->pWhere ) return 0; /* Has no WHERE clause */ + pSrc = p->pSrc; + assert( pSrc!=0 ); + if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */ + if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */ + pTab = pSrc->a[0].pTab; + if( NEVER(pTab==0) ) return 0; + assert( pTab->pSelect==0 ); /* FROM clause is not a view */ + if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */ + pEList = p->pEList; + if( pEList->nExpr!=1 ) return 0; /* One column in the result set */ + if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */ + return 1; +} +#endif /* SQLITE_OMIT_SUBQUERY */ + +/* +** Code an OP_Once instruction and allocate space for its flag. Return the +** address of the new instruction. +*/ +SQLITE_PRIVATE int sqlite3CodeOnce(Parse *pParse){ + Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ + return sqlite3VdbeAddOp1(v, OP_Once, pParse->nOnce++); +} + +/* +** This function is used by the implementation of the IN (...) operator. +** The pX parameter is the expression on the RHS of the IN operator, which +** might be either a list of expressions or a subquery. +** +** The job of this routine is to find or create a b-tree object that can +** be used either to test for membership in the RHS set or to iterate through +** all members of the RHS set, skipping duplicates. +** +** A cursor is opened on the b-tree object that the RHS of the IN operator +** and pX->iTable is set to the index of that cursor. +** +** The returned value of this function indicates the b-tree type, as follows: +** +** IN_INDEX_ROWID - The cursor was opened on a database table. +** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index. +** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index. +** IN_INDEX_EPH - The cursor was opened on a specially created and +** populated epheremal table. +** +** An existing b-tree might be used if the RHS expression pX is a simple +** subquery such as: +** +** SELECT FROM +** +** If the RHS of the IN operator is a list or a more complex subquery, then +** an ephemeral table might need to be generated from the RHS and then +** pX->iTable made to point to the ephermeral table instead of an +** existing table. +** +** If the prNotFound parameter is 0, then the b-tree will be used to iterate +** through the set members, skipping any duplicates. In this case an +** epheremal table must be used unless the selected is guaranteed +** to be unique - either because it is an INTEGER PRIMARY KEY or it +** has a UNIQUE constraint or UNIQUE index. +** +** If the prNotFound parameter is not 0, then the b-tree will be used +** for fast set membership tests. In this case an epheremal table must +** be used unless is an INTEGER PRIMARY KEY or an index can +** be found with as its left-most column. +** +** When the b-tree is being used for membership tests, the calling function +** needs to know whether or not the structure contains an SQL NULL +** value in order to correctly evaluate expressions like "X IN (Y, Z)". +** If there is any chance that the (...) might contain a NULL value at +** runtime, then a register is allocated and the register number written +** to *prNotFound. If there is no chance that the (...) contains a +** NULL value, then *prNotFound is left unchanged. +** +** If a register is allocated and its location stored in *prNotFound, then +** its initial value is NULL. If the (...) does not remain constant +** for the duration of the query (i.e. the SELECT within the (...) +** is a correlated subquery) then the value of the allocated register is +** reset to NULL each time the subquery is rerun. This allows the +** caller to use vdbe code equivalent to the following: +** +** if( register==NULL ){ +** has_null = +** register = 1 +** } +** +** in order to avoid running the +** test more often than is necessary. +*/ +#ifndef SQLITE_OMIT_SUBQUERY +SQLITE_PRIVATE int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){ + Select *p; /* SELECT to the right of IN operator */ + int eType = 0; /* Type of RHS table. IN_INDEX_* */ + int iTab = pParse->nTab++; /* Cursor of the RHS table */ + int mustBeUnique = (prNotFound==0); /* True if RHS must be unique */ + Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ + + assert( pX->op==TK_IN ); + + /* Check to see if an existing table or index can be used to + ** satisfy the query. This is preferable to generating a new + ** ephemeral table. + */ + p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0); + if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){ + sqlite3 *db = pParse->db; /* Database connection */ + Table *pTab; /* Table
          . */ + Expr *pExpr; /* Expression */ + i16 iCol; /* Index of column */ + i16 iDb; /* Database idx for pTab */ + + assert( p ); /* Because of isCandidateForInOpt(p) */ + assert( p->pEList!=0 ); /* Because of isCandidateForInOpt(p) */ + assert( p->pEList->a[0].pExpr!=0 ); /* Because of isCandidateForInOpt(p) */ + assert( p->pSrc!=0 ); /* Because of isCandidateForInOpt(p) */ + pTab = p->pSrc->a[0].pTab; + pExpr = p->pEList->a[0].pExpr; + iCol = (i16)pExpr->iColumn; + + /* Code an OP_Transaction and OP_TableLock for
          . */ + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + sqlite3CodeVerifySchema(pParse, iDb); + sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); + + /* This function is only called from two places. In both cases the vdbe + ** has already been allocated. So assume sqlite3GetVdbe() is always + ** successful here. + */ + assert(v); + if( iCol<0 ){ + int iAddr = sqlite3CodeOnce(pParse); + VdbeCoverage(v); + + sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); + eType = IN_INDEX_ROWID; + + sqlite3VdbeJumpHere(v, iAddr); + }else{ + Index *pIdx; /* Iterator variable */ + + /* The collation sequence used by the comparison. If an index is to + ** be used in place of a temp-table, it must be ordered according + ** to this collation sequence. */ + CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr); + + /* Check that the affinity that will be used to perform the + ** comparison is the same as the affinity of the column. If + ** it is not, it is not possible to use any index. + */ + int affinity_ok = sqlite3IndexAffinityOk(pX, pTab->aCol[iCol].affinity); + + for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){ + if( (pIdx->aiColumn[0]==iCol) + && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq + && (!mustBeUnique || (pIdx->nKeyCol==1 && pIdx->onError!=OE_None)) + ){ + int iAddr = sqlite3CodeOnce(pParse); VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_OpenRead, iTab, pIdx->tnum, iDb); + sqlite3VdbeSetP4KeyInfo(pParse, pIdx); + VdbeComment((v, "%s", pIdx->zName)); + assert( IN_INDEX_INDEX_DESC == IN_INDEX_INDEX_ASC+1 ); + eType = IN_INDEX_INDEX_ASC + pIdx->aSortOrder[0]; + + if( prNotFound && !pTab->aCol[iCol].notNull ){ + *prNotFound = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound); + } + sqlite3VdbeJumpHere(v, iAddr); + } + } + } + } + + if( eType==0 ){ + /* Could not found an existing table or index to use as the RHS b-tree. + ** We will have to generate an ephemeral table to do the job. + */ + u32 savedNQueryLoop = pParse->nQueryLoop; + int rMayHaveNull = 0; + eType = IN_INDEX_EPH; + if( prNotFound ){ + *prNotFound = rMayHaveNull = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound); + }else{ + pParse->nQueryLoop = 0; + if( pX->pLeft->iColumn<0 && !ExprHasProperty(pX, EP_xIsSelect) ){ + eType = IN_INDEX_ROWID; + } + } + sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID); + pParse->nQueryLoop = savedNQueryLoop; + }else{ + pX->iTable = iTab; + } + return eType; +} +#endif + +/* +** Generate code for scalar subqueries used as a subquery expression, EXISTS, +** or IN operators. Examples: +** +** (SELECT a FROM b) -- subquery +** EXISTS (SELECT a FROM b) -- EXISTS subquery +** x IN (4,5,11) -- IN operator with list on right-hand side +** x IN (SELECT a FROM b) -- IN operator with subquery on the right +** +** The pExpr parameter describes the expression that contains the IN +** operator or subquery. +** +** If parameter isRowid is non-zero, then expression pExpr is guaranteed +** to be of the form " IN (?, ?, ?)", where is a reference +** to some integer key column of a table B-Tree. In this case, use an +** intkey B-Tree to store the set of IN(...) values instead of the usual +** (slower) variable length keys B-Tree. +** +** If rMayHaveNull is non-zero, that means that the operation is an IN +** (not a SELECT or EXISTS) and that the RHS might contains NULLs. +** Furthermore, the IN is in a WHERE clause and that we really want +** to iterate over the RHS of the IN operator in order to quickly locate +** all corresponding LHS elements. All this routine does is initialize +** the register given by rMayHaveNull to NULL. Calling routines will take +** care of changing this register value to non-NULL if the RHS is NULL-free. +** +** If rMayHaveNull is zero, that means that the subquery is being used +** for membership testing only. There is no need to initialize any +** registers to indicate the presence or absence of NULLs on the RHS. +** +** For a SELECT or EXISTS operator, return the register that holds the +** result. For IN operators or if an error occurs, the return value is 0. +*/ +#ifndef SQLITE_OMIT_SUBQUERY +SQLITE_PRIVATE int sqlite3CodeSubselect( + Parse *pParse, /* Parsing context */ + Expr *pExpr, /* The IN, SELECT, or EXISTS operator */ + int rMayHaveNull, /* Register that records whether NULLs exist in RHS */ + int isRowid /* If true, LHS of IN operator is a rowid */ +){ + int testAddr = -1; /* One-time test address */ + int rReg = 0; /* Register storing resulting */ + Vdbe *v = sqlite3GetVdbe(pParse); + if( NEVER(v==0) ) return 0; + sqlite3ExprCachePush(pParse); + + /* This code must be run in its entirety every time it is encountered + ** if any of the following is true: + ** + ** * The right-hand side is a correlated subquery + ** * The right-hand side is an expression list containing variables + ** * We are inside a trigger + ** + ** If all of the above are false, then we can run this code just once + ** save the results, and reuse the same result on subsequent invocations. + */ + if( !ExprHasProperty(pExpr, EP_VarSelect) ){ + testAddr = sqlite3CodeOnce(pParse); VdbeCoverage(v); + } + +#ifndef SQLITE_OMIT_EXPLAIN + if( pParse->explain==2 ){ + char *zMsg = sqlite3MPrintf( + pParse->db, "EXECUTE %s%s SUBQUERY %d", testAddr>=0?"":"CORRELATED ", + pExpr->op==TK_IN?"LIST":"SCALAR", pParse->iNextSelectId + ); + sqlite3VdbeAddOp4(v, OP_Explain, pParse->iSelectId, 0, 0, zMsg, P4_DYNAMIC); + } +#endif + + switch( pExpr->op ){ + case TK_IN: { + char affinity; /* Affinity of the LHS of the IN */ + int addr; /* Address of OP_OpenEphemeral instruction */ + Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */ + KeyInfo *pKeyInfo = 0; /* Key information */ + + if( rMayHaveNull ){ + sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull); + } + + affinity = sqlite3ExprAffinity(pLeft); + + /* Whether this is an 'x IN(SELECT...)' or an 'x IN()' + ** expression it is handled the same way. An ephemeral table is + ** filled with single-field index keys representing the results + ** from the SELECT or the . + ** + ** If the 'x' expression is a column value, or the SELECT... + ** statement returns a column value, then the affinity of that + ** column is used to build the index keys. If both 'x' and the + ** SELECT... statement are columns, then numeric affinity is used + ** if either column has NUMERIC or INTEGER affinity. If neither + ** 'x' nor the SELECT... statement are columns, then numeric affinity + ** is used. + */ + pExpr->iTable = pParse->nTab++; + addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid); + pKeyInfo = isRowid ? 0 : sqlite3KeyInfoAlloc(pParse->db, 1, 1); + + if( ExprHasProperty(pExpr, EP_xIsSelect) ){ + /* Case 1: expr IN (SELECT ...) + ** + ** Generate code to write the results of the select into the temporary + ** table allocated and opened above. + */ + SelectDest dest; + ExprList *pEList; + + assert( !isRowid ); + sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable); + dest.affSdst = (u8)affinity; + assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable ); + pExpr->x.pSelect->iLimit = 0; + testcase( pKeyInfo==0 ); /* Caused by OOM in sqlite3KeyInfoAlloc() */ + if( sqlite3Select(pParse, pExpr->x.pSelect, &dest) ){ + sqlite3KeyInfoUnref(pKeyInfo); + return 0; + } + pEList = pExpr->x.pSelect->pEList; + assert( pKeyInfo!=0 ); /* OOM will cause exit after sqlite3Select() */ + assert( pEList!=0 ); + assert( pEList->nExpr>0 ); + assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); + pKeyInfo->aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft, + pEList->a[0].pExpr); + }else if( ALWAYS(pExpr->x.pList!=0) ){ + /* Case 2: expr IN (exprlist) + ** + ** For each expression, build an index key from the evaluation and + ** store it in the temporary table. If is a column, then use + ** that columns affinity when building index keys. If is not + ** a column, use numeric affinity. + */ + int i; + ExprList *pList = pExpr->x.pList; + struct ExprList_item *pItem; + int r1, r2, r3; + + if( !affinity ){ + affinity = SQLITE_AFF_NONE; + } + if( pKeyInfo ){ + assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); + pKeyInfo->aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft); + } + + /* Loop through each expression in . */ + r1 = sqlite3GetTempReg(pParse); + r2 = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp2(v, OP_Null, 0, r2); + for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){ + Expr *pE2 = pItem->pExpr; + int iValToIns; + + /* If the expression is not constant then we will need to + ** disable the test that was generated above that makes sure + ** this code only executes once. Because for a non-constant + ** expression we need to rerun this code each time. + */ + if( testAddr>=0 && !sqlite3ExprIsConstant(pE2) ){ + sqlite3VdbeChangeToNoop(v, testAddr); + testAddr = -1; + } + + /* Evaluate the expression and insert it into the temp table */ + if( isRowid && sqlite3ExprIsInteger(pE2, &iValToIns) ){ + sqlite3VdbeAddOp3(v, OP_InsertInt, pExpr->iTable, r2, iValToIns); + }else{ + r3 = sqlite3ExprCodeTarget(pParse, pE2, r1); + if( isRowid ){ + sqlite3VdbeAddOp2(v, OP_MustBeInt, r3, + sqlite3VdbeCurrentAddr(v)+2); + VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3); + }else{ + sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1); + sqlite3ExprCacheAffinityChange(pParse, r3, 1); + sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2); + } + } + } + sqlite3ReleaseTempReg(pParse, r1); + sqlite3ReleaseTempReg(pParse, r2); + } + if( pKeyInfo ){ + sqlite3VdbeChangeP4(v, addr, (void *)pKeyInfo, P4_KEYINFO); + } + break; + } + + case TK_EXISTS: + case TK_SELECT: + default: { + /* If this has to be a scalar SELECT. Generate code to put the + ** value of this select in a memory cell and record the number + ** of the memory cell in iColumn. If this is an EXISTS, write + ** an integer 0 (not exists) or 1 (exists) into a memory cell + ** and record that memory cell in iColumn. + */ + Select *pSel; /* SELECT statement to encode */ + SelectDest dest; /* How to deal with SELECt result */ + + testcase( pExpr->op==TK_EXISTS ); + testcase( pExpr->op==TK_SELECT ); + assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT ); + + assert( ExprHasProperty(pExpr, EP_xIsSelect) ); + pSel = pExpr->x.pSelect; + sqlite3SelectDestInit(&dest, 0, ++pParse->nMem); + if( pExpr->op==TK_SELECT ){ + dest.eDest = SRT_Mem; + sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iSDParm); + VdbeComment((v, "Init subquery result")); + }else{ + dest.eDest = SRT_Exists; + sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iSDParm); + VdbeComment((v, "Init EXISTS result")); + } + sqlite3ExprDelete(pParse->db, pSel->pLimit); + pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, + &sqlite3IntTokens[1]); + pSel->iLimit = 0; + if( sqlite3Select(pParse, pSel, &dest) ){ + return 0; + } + rReg = dest.iSDParm; + ExprSetVVAProperty(pExpr, EP_NoReduce); + break; + } + } + + if( testAddr>=0 ){ + sqlite3VdbeJumpHere(v, testAddr); + } + sqlite3ExprCachePop(pParse); + + return rReg; +} +#endif /* SQLITE_OMIT_SUBQUERY */ + +#ifndef SQLITE_OMIT_SUBQUERY +/* +** Generate code for an IN expression. +** +** x IN (SELECT ...) +** x IN (value, value, ...) +** +** The left-hand side (LHS) is a scalar expression. The right-hand side (RHS) +** is an array of zero or more values. The expression is true if the LHS is +** contained within the RHS. The value of the expression is unknown (NULL) +** if the LHS is NULL or if the LHS is not contained within the RHS and the +** RHS contains one or more NULL values. +** +** This routine generates code will jump to destIfFalse if the LHS is not +** contained within the RHS. If due to NULLs we cannot determine if the LHS +** is contained in the RHS then jump to destIfNull. If the LHS is contained +** within the RHS then fall through. +*/ +static void sqlite3ExprCodeIN( + Parse *pParse, /* Parsing and code generating context */ + Expr *pExpr, /* The IN expression */ + int destIfFalse, /* Jump here if LHS is not contained in the RHS */ + int destIfNull /* Jump here if the results are unknown due to NULLs */ +){ + int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */ + char affinity; /* Comparison affinity to use */ + int eType; /* Type of the RHS */ + int r1; /* Temporary use register */ + Vdbe *v; /* Statement under construction */ + + /* Compute the RHS. After this step, the table with cursor + ** pExpr->iTable will contains the values that make up the RHS. + */ + v = pParse->pVdbe; + assert( v!=0 ); /* OOM detected prior to this routine */ + VdbeNoopComment((v, "begin IN expr")); + eType = sqlite3FindInIndex(pParse, pExpr, &rRhsHasNull); + + /* Figure out the affinity to use to create a key from the results + ** of the expression. affinityStr stores a static string suitable for + ** P4 of OP_MakeRecord. + */ + affinity = comparisonAffinity(pExpr); + + /* Code the LHS, the from " IN (...)". + */ + sqlite3ExprCachePush(pParse); + r1 = sqlite3GetTempReg(pParse); + sqlite3ExprCode(pParse, pExpr->pLeft, r1); + + /* If the LHS is NULL, then the result is either false or NULL depending + ** on whether the RHS is empty or not, respectively. + */ + if( destIfNull==destIfFalse ){ + /* Shortcut for the common case where the false and NULL outcomes are + ** the same. */ + sqlite3VdbeAddOp2(v, OP_IsNull, r1, destIfNull); VdbeCoverage(v); + }else{ + int addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, r1); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Rewind, pExpr->iTable, destIfFalse); + VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfNull); + sqlite3VdbeJumpHere(v, addr1); + } + + if( eType==IN_INDEX_ROWID ){ + /* In this case, the RHS is the ROWID of table b-tree + */ + sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, destIfFalse); VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, destIfFalse, r1); + VdbeCoverage(v); + }else{ + /* In this case, the RHS is an index b-tree. + */ + sqlite3VdbeAddOp4(v, OP_Affinity, r1, 1, 0, &affinity, 1); + + /* If the set membership test fails, then the result of the + ** "x IN (...)" expression must be either 0 or NULL. If the set + ** contains no NULL values, then the result is 0. If the set + ** contains one or more NULL values, then the result of the + ** expression is also NULL. + */ + if( rRhsHasNull==0 || destIfFalse==destIfNull ){ + /* This branch runs if it is known at compile time that the RHS + ** cannot contain NULL values. This happens as the result + ** of a "NOT NULL" constraint in the database schema. + ** + ** Also run this branch if NULL is equivalent to FALSE + ** for this particular IN operator. + */ + sqlite3VdbeAddOp4Int(v, OP_NotFound, pExpr->iTable, destIfFalse, r1, 1); + VdbeCoverage(v); + }else{ + /* In this branch, the RHS of the IN might contain a NULL and + ** the presence of a NULL on the RHS makes a difference in the + ** outcome. + */ + int j1, j2; + + /* First check to see if the LHS is contained in the RHS. If so, + ** then the presence of NULLs in the RHS does not matter, so jump + ** over all of the code that follows. + */ + j1 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, r1, 1); + VdbeCoverage(v); + + /* Here we begin generating code that runs if the LHS is not + ** contained within the RHS. Generate additional code that + ** tests the RHS for NULLs. If the RHS contains a NULL then + ** jump to destIfNull. If there are no NULLs in the RHS then + ** jump to destIfFalse. + */ + sqlite3VdbeAddOp2(v, OP_If, rRhsHasNull, destIfNull); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_IfNot, rRhsHasNull, destIfFalse); VdbeCoverage(v); + j2 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, rRhsHasNull, 1); + VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Integer, 0, rRhsHasNull); + sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse); + sqlite3VdbeJumpHere(v, j2); + sqlite3VdbeAddOp2(v, OP_Integer, 1, rRhsHasNull); + sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfNull); + + /* The OP_Found at the top of this branch jumps here when true, + ** causing the overall IN expression evaluation to fall through. + */ + sqlite3VdbeJumpHere(v, j1); + } + } + sqlite3ReleaseTempReg(pParse, r1); + sqlite3ExprCachePop(pParse); + VdbeComment((v, "end IN expr")); +} +#endif /* SQLITE_OMIT_SUBQUERY */ + +/* +** Duplicate an 8-byte value +*/ +static char *dup8bytes(Vdbe *v, const char *in){ + char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8); + if( out ){ + memcpy(out, in, 8); + } + return out; +} + +#ifndef SQLITE_OMIT_FLOATING_POINT +/* +** Generate an instruction that will put the floating point +** value described by z[0..n-1] into register iMem. +** +** The z[] string will probably not be zero-terminated. But the +** z[n] character is guaranteed to be something that does not look +** like the continuation of the number. +*/ +static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ + if( ALWAYS(z!=0) ){ + double value; + char *zV; + sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); + assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */ + if( negateFlag ) value = -value; + zV = dup8bytes(v, (char*)&value); + sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL); + } +} +#endif + + +/* +** Generate an instruction that will put the integer describe by +** text z[0..n-1] into register iMem. +** +** Expr.u.zToken is always UTF8 and zero-terminated. +*/ +static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){ + Vdbe *v = pParse->pVdbe; + if( pExpr->flags & EP_IntValue ){ + int i = pExpr->u.iValue; + assert( i>=0 ); + if( negFlag ) i = -i; + sqlite3VdbeAddOp2(v, OP_Integer, i, iMem); + }else{ + int c; + i64 value; + const char *z = pExpr->u.zToken; + assert( z!=0 ); + c = sqlite3Atoi64(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); + if( c==0 || (c==2 && negFlag) ){ + char *zV; + if( negFlag ){ value = c==2 ? SMALLEST_INT64 : -value; } + zV = dup8bytes(v, (char*)&value); + sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64); + }else{ +#ifdef SQLITE_OMIT_FLOATING_POINT + sqlite3ErrorMsg(pParse, "oversized integer: %s%s", negFlag ? "-" : "", z); +#else + codeReal(v, z, negFlag, iMem); +#endif + } + } +} + +/* +** Clear a cache entry. +*/ +static void cacheEntryClear(Parse *pParse, struct yColCache *p){ + if( p->tempReg ){ + if( pParse->nTempRegaTempReg) ){ + pParse->aTempReg[pParse->nTempReg++] = p->iReg; + } + p->tempReg = 0; + } +} + + +/* +** Record in the column cache that a particular column from a +** particular table is stored in a particular register. +*/ +SQLITE_PRIVATE void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){ + int i; + int minLru; + int idxLru; + struct yColCache *p; + + assert( iReg>0 ); /* Register numbers are always positive */ + assert( iCol>=-1 && iCol<32768 ); /* Finite column numbers */ + + /* The SQLITE_ColumnCache flag disables the column cache. This is used + ** for testing only - to verify that SQLite always gets the same answer + ** with and without the column cache. + */ + if( OptimizationDisabled(pParse->db, SQLITE_ColumnCache) ) return; + + /* First replace any existing entry. + ** + ** Actually, the way the column cache is currently used, we are guaranteed + ** that the object will never already be in cache. Verify this guarantee. + */ +#ifndef NDEBUG + for(i=0, p=pParse->aColCache; iiReg==0 || p->iTable!=iTab || p->iColumn!=iCol ); + } +#endif + + /* Find an empty slot and replace it */ + for(i=0, p=pParse->aColCache; iiReg==0 ){ + p->iLevel = pParse->iCacheLevel; + p->iTable = iTab; + p->iColumn = iCol; + p->iReg = iReg; + p->tempReg = 0; + p->lru = pParse->iCacheCnt++; + return; + } + } + + /* Replace the last recently used */ + minLru = 0x7fffffff; + idxLru = -1; + for(i=0, p=pParse->aColCache; ilrulru; + } + } + if( ALWAYS(idxLru>=0) ){ + p = &pParse->aColCache[idxLru]; + p->iLevel = pParse->iCacheLevel; + p->iTable = iTab; + p->iColumn = iCol; + p->iReg = iReg; + p->tempReg = 0; + p->lru = pParse->iCacheCnt++; + return; + } +} + +/* +** Indicate that registers between iReg..iReg+nReg-1 are being overwritten. +** Purge the range of registers from the column cache. +*/ +SQLITE_PRIVATE void sqlite3ExprCacheRemove(Parse *pParse, int iReg, int nReg){ + int i; + int iLast = iReg + nReg - 1; + struct yColCache *p; + for(i=0, p=pParse->aColCache; iiReg; + if( r>=iReg && r<=iLast ){ + cacheEntryClear(pParse, p); + p->iReg = 0; + } + } +} + +/* +** Remember the current column cache context. Any new entries added +** added to the column cache after this call are removed when the +** corresponding pop occurs. +*/ +SQLITE_PRIVATE void sqlite3ExprCachePush(Parse *pParse){ + pParse->iCacheLevel++; +#ifdef SQLITE_DEBUG + if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ + printf("PUSH to %d\n", pParse->iCacheLevel); + } +#endif +} + +/* +** Remove from the column cache any entries that were added since the +** the previous sqlite3ExprCachePush operation. In other words, restore +** the cache to the state it was in prior the most recent Push. +*/ +SQLITE_PRIVATE void sqlite3ExprCachePop(Parse *pParse){ + int i; + struct yColCache *p; + assert( pParse->iCacheLevel>=1 ); + pParse->iCacheLevel--; +#ifdef SQLITE_DEBUG + if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ + printf("POP to %d\n", pParse->iCacheLevel); + } +#endif + for(i=0, p=pParse->aColCache; iiReg && p->iLevel>pParse->iCacheLevel ){ + cacheEntryClear(pParse, p); + p->iReg = 0; + } + } +} + +/* +** When a cached column is reused, make sure that its register is +** no longer available as a temp register. ticket #3879: that same +** register might be in the cache in multiple places, so be sure to +** get them all. +*/ +static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){ + int i; + struct yColCache *p; + for(i=0, p=pParse->aColCache; iiReg==iReg ){ + p->tempReg = 0; + } + } +} + +/* +** Generate code to extract the value of the iCol-th column of a table. +*/ +SQLITE_PRIVATE void sqlite3ExprCodeGetColumnOfTable( + Vdbe *v, /* The VDBE under construction */ + Table *pTab, /* The table containing the value */ + int iTabCur, /* The table cursor. Or the PK cursor for WITHOUT ROWID */ + int iCol, /* Index of the column to extract */ + int regOut /* Extract the value into this register */ +){ + if( iCol<0 || iCol==pTab->iPKey ){ + sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut); + }else{ + int op = IsVirtual(pTab) ? OP_VColumn : OP_Column; + int x = iCol; + if( !HasRowid(pTab) ){ + x = sqlite3ColumnOfIndex(sqlite3PrimaryKeyIndex(pTab), iCol); + } + sqlite3VdbeAddOp3(v, op, iTabCur, x, regOut); + } + if( iCol>=0 ){ + sqlite3ColumnDefault(v, pTab, iCol, regOut); + } +} + +/* +** Generate code that will extract the iColumn-th column from +** table pTab and store the column value in a register. An effort +** is made to store the column value in register iReg, but this is +** not guaranteed. The location of the column value is returned. +** +** There must be an open cursor to pTab in iTable when this routine +** is called. If iColumn<0 then code is generated that extracts the rowid. +*/ +SQLITE_PRIVATE int sqlite3ExprCodeGetColumn( + Parse *pParse, /* Parsing and code generating context */ + Table *pTab, /* Description of the table we are reading from */ + int iColumn, /* Index of the table column */ + int iTable, /* The cursor pointing to the table */ + int iReg, /* Store results here */ + u8 p5 /* P5 value for OP_Column */ +){ + Vdbe *v = pParse->pVdbe; + int i; + struct yColCache *p; + + for(i=0, p=pParse->aColCache; iiReg>0 && p->iTable==iTable && p->iColumn==iColumn ){ + p->lru = pParse->iCacheCnt++; + sqlite3ExprCachePinRegister(pParse, p->iReg); + return p->iReg; + } + } + assert( v!=0 ); + sqlite3ExprCodeGetColumnOfTable(v, pTab, iTable, iColumn, iReg); + if( p5 ){ + sqlite3VdbeChangeP5(v, p5); + }else{ + sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg); + } + return iReg; +} + +/* +** Clear all column cache entries. +*/ +SQLITE_PRIVATE void sqlite3ExprCacheClear(Parse *pParse){ + int i; + struct yColCache *p; + +#if SQLITE_DEBUG + if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ + printf("CLEAR\n"); + } +#endif + for(i=0, p=pParse->aColCache; iiReg ){ + cacheEntryClear(pParse, p); + p->iReg = 0; + } + } +} + +/* +** Record the fact that an affinity change has occurred on iCount +** registers starting with iStart. +*/ +SQLITE_PRIVATE void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){ + sqlite3ExprCacheRemove(pParse, iStart, iCount); +} + +/* +** Generate code to move content from registers iFrom...iFrom+nReg-1 +** over to iTo..iTo+nReg-1. Keep the column cache up-to-date. +*/ +SQLITE_PRIVATE void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){ + int i; + struct yColCache *p; + assert( iFrom>=iTo+nReg || iFrom+nReg<=iTo ); + sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg); + for(i=0, p=pParse->aColCache; iiReg; + if( x>=iFrom && xiReg += iTo-iFrom; + } + } +} + +#if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) +/* +** Return true if any register in the range iFrom..iTo (inclusive) +** is used as part of the column cache. +** +** This routine is used within assert() and testcase() macros only +** and does not appear in a normal build. +*/ +static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){ + int i; + struct yColCache *p; + for(i=0, p=pParse->aColCache; iiReg; + if( r>=iFrom && r<=iTo ) return 1; /*NO_TEST*/ + } + return 0; +} +#endif /* SQLITE_DEBUG || SQLITE_COVERAGE_TEST */ + +/* +** Convert an expression node to a TK_REGISTER +*/ +static void exprToRegister(Expr *p, int iReg){ + p->op2 = p->op; + p->op = TK_REGISTER; + p->iTable = iReg; + ExprClearProperty(p, EP_Skip); +} + +/* +** Generate code into the current Vdbe to evaluate the given +** expression. Attempt to store the results in register "target". +** Return the register where results are stored. +** +** With this routine, there is no guarantee that results will +** be stored in target. The result might be stored in some other +** register if it is convenient to do so. The calling function +** must check the return code and move the results to the desired +** register. +*/ +SQLITE_PRIVATE int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ + Vdbe *v = pParse->pVdbe; /* The VM under construction */ + int op; /* The opcode being coded */ + int inReg = target; /* Results stored in register inReg */ + int regFree1 = 0; /* If non-zero free this temporary register */ + int regFree2 = 0; /* If non-zero free this temporary register */ + int r1, r2, r3, r4; /* Various register numbers */ + sqlite3 *db = pParse->db; /* The database connection */ + Expr tempX; /* Temporary expression node */ + + assert( target>0 && target<=pParse->nMem ); + if( v==0 ){ + assert( pParse->db->mallocFailed ); + return 0; + } + + if( pExpr==0 ){ + op = TK_NULL; + }else{ + op = pExpr->op; + } + switch( op ){ + case TK_AGG_COLUMN: { + AggInfo *pAggInfo = pExpr->pAggInfo; + struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg]; + if( !pAggInfo->directMode ){ + assert( pCol->iMem>0 ); + inReg = pCol->iMem; + break; + }else if( pAggInfo->useSortingIdx ){ + sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab, + pCol->iSorterColumn, target); + break; + } + /* Otherwise, fall thru into the TK_COLUMN case */ + } + case TK_COLUMN: { + int iTab = pExpr->iTable; + if( iTab<0 ){ + if( pParse->ckBase>0 ){ + /* Generating CHECK constraints or inserting into partial index */ + inReg = pExpr->iColumn + pParse->ckBase; + break; + }else{ + /* Deleting from a partial index */ + iTab = pParse->iPartIdxTab; + } + } + inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab, + pExpr->iColumn, iTab, target, + pExpr->op2); + break; + } + case TK_INTEGER: { + codeInteger(pParse, pExpr, 0, target); + break; + } +#ifndef SQLITE_OMIT_FLOATING_POINT + case TK_FLOAT: { + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + codeReal(v, pExpr->u.zToken, 0, target); + break; + } +#endif + case TK_STRING: { + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0); + break; + } + case TK_NULL: { + sqlite3VdbeAddOp2(v, OP_Null, 0, target); + break; + } +#ifndef SQLITE_OMIT_BLOB_LITERAL + case TK_BLOB: { + int n; + const char *z; + char *zBlob; + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); + assert( pExpr->u.zToken[1]=='\'' ); + z = &pExpr->u.zToken[2]; + n = sqlite3Strlen30(z) - 1; + assert( z[n]=='\'' ); + zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n); + sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC); + break; + } +#endif + case TK_VARIABLE: { + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + assert( pExpr->u.zToken!=0 ); + assert( pExpr->u.zToken[0]!=0 ); + sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iColumn, target); + if( pExpr->u.zToken[1]!=0 ){ + assert( pExpr->u.zToken[0]=='?' + || strcmp(pExpr->u.zToken, pParse->azVar[pExpr->iColumn-1])==0 ); + sqlite3VdbeChangeP4(v, -1, pParse->azVar[pExpr->iColumn-1], P4_STATIC); + } + break; + } + case TK_REGISTER: { + inReg = pExpr->iTable; + break; + } + case TK_AS: { + inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); + break; + } +#ifndef SQLITE_OMIT_CAST + case TK_CAST: { + /* Expressions of the form: CAST(pLeft AS token) */ + int aff, to_op; + inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + aff = sqlite3AffinityType(pExpr->u.zToken, 0); + to_op = aff - SQLITE_AFF_TEXT + OP_ToText; + assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT ); + assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE ); + assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC ); + assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER ); + assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL ); + testcase( to_op==OP_ToText ); + testcase( to_op==OP_ToBlob ); + testcase( to_op==OP_ToNumeric ); + testcase( to_op==OP_ToInt ); + testcase( to_op==OP_ToReal ); + if( inReg!=target ){ + sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target); + inReg = target; + } + sqlite3VdbeAddOp1(v, to_op, inReg); + testcase( usedAsColumnCache(pParse, inReg, inReg) ); + sqlite3ExprCacheAffinityChange(pParse, inReg, 1); + break; + } +#endif /* SQLITE_OMIT_CAST */ + case TK_LT: + case TK_LE: + case TK_GT: + case TK_GE: + case TK_NE: + case TK_EQ: { + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); + codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, + r1, r2, inReg, SQLITE_STOREP2); + assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); + assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); + assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); + assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); + assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); + assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); + testcase( regFree1==0 ); + testcase( regFree2==0 ); + break; + } + case TK_IS: + case TK_ISNOT: { + testcase( op==TK_IS ); + testcase( op==TK_ISNOT ); + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); + op = (op==TK_IS) ? TK_EQ : TK_NE; + codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, + r1, r2, inReg, SQLITE_STOREP2 | SQLITE_NULLEQ); + VdbeCoverageIf(v, op==TK_EQ); + VdbeCoverageIf(v, op==TK_NE); + testcase( regFree1==0 ); + testcase( regFree2==0 ); + break; + } + case TK_AND: + case TK_OR: + case TK_PLUS: + case TK_STAR: + case TK_MINUS: + case TK_REM: + case TK_BITAND: + case TK_BITOR: + case TK_SLASH: + case TK_LSHIFT: + case TK_RSHIFT: + case TK_CONCAT: { + assert( TK_AND==OP_And ); testcase( op==TK_AND ); + assert( TK_OR==OP_Or ); testcase( op==TK_OR ); + assert( TK_PLUS==OP_Add ); testcase( op==TK_PLUS ); + assert( TK_MINUS==OP_Subtract ); testcase( op==TK_MINUS ); + assert( TK_REM==OP_Remainder ); testcase( op==TK_REM ); + assert( TK_BITAND==OP_BitAnd ); testcase( op==TK_BITAND ); + assert( TK_BITOR==OP_BitOr ); testcase( op==TK_BITOR ); + assert( TK_SLASH==OP_Divide ); testcase( op==TK_SLASH ); + assert( TK_LSHIFT==OP_ShiftLeft ); testcase( op==TK_LSHIFT ); + assert( TK_RSHIFT==OP_ShiftRight ); testcase( op==TK_RSHIFT ); + assert( TK_CONCAT==OP_Concat ); testcase( op==TK_CONCAT ); + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); + sqlite3VdbeAddOp3(v, op, r2, r1, target); + testcase( regFree1==0 ); + testcase( regFree2==0 ); + break; + } + case TK_UMINUS: { + Expr *pLeft = pExpr->pLeft; + assert( pLeft ); + if( pLeft->op==TK_INTEGER ){ + codeInteger(pParse, pLeft, 1, target); +#ifndef SQLITE_OMIT_FLOATING_POINT + }else if( pLeft->op==TK_FLOAT ){ + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + codeReal(v, pLeft->u.zToken, 1, target); +#endif + }else{ + tempX.op = TK_INTEGER; + tempX.flags = EP_IntValue|EP_TokenOnly; + tempX.u.iValue = 0; + r1 = sqlite3ExprCodeTemp(pParse, &tempX, ®Free1); + r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2); + sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target); + testcase( regFree2==0 ); + } + inReg = target; + break; + } + case TK_BITNOT: + case TK_NOT: { + assert( TK_BITNOT==OP_BitNot ); testcase( op==TK_BITNOT ); + assert( TK_NOT==OP_Not ); testcase( op==TK_NOT ); + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + testcase( regFree1==0 ); + inReg = target; + sqlite3VdbeAddOp2(v, op, r1, inReg); + break; + } + case TK_ISNULL: + case TK_NOTNULL: { + int addr; + assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL ); + assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL ); + sqlite3VdbeAddOp2(v, OP_Integer, 1, target); + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + testcase( regFree1==0 ); + addr = sqlite3VdbeAddOp1(v, op, r1); + VdbeCoverageIf(v, op==TK_ISNULL); + VdbeCoverageIf(v, op==TK_NOTNULL); + sqlite3VdbeAddOp2(v, OP_AddImm, target, -1); + sqlite3VdbeJumpHere(v, addr); + break; + } + case TK_AGG_FUNCTION: { + AggInfo *pInfo = pExpr->pAggInfo; + if( pInfo==0 ){ + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken); + }else{ + inReg = pInfo->aFunc[pExpr->iAgg].iMem; + } + break; + } + case TK_FUNCTION: { + ExprList *pFarg; /* List of function arguments */ + int nFarg; /* Number of function arguments */ + FuncDef *pDef; /* The function definition object */ + int nId; /* Length of the function name in bytes */ + const char *zId; /* The function name */ + u32 constMask = 0; /* Mask of function arguments that are constant */ + int i; /* Loop counter */ + u8 enc = ENC(db); /* The text encoding used by this database */ + CollSeq *pColl = 0; /* A collating sequence */ + + assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); + if( ExprHasProperty(pExpr, EP_TokenOnly) ){ + pFarg = 0; + }else{ + pFarg = pExpr->x.pList; + } + nFarg = pFarg ? pFarg->nExpr : 0; + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + zId = pExpr->u.zToken; + nId = sqlite3Strlen30(zId); + pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0); + if( pDef==0 ){ + sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId); + break; + } + + /* Attempt a direct implementation of the built-in COALESCE() and + ** IFNULL() functions. This avoids unnecessary evalation of + ** arguments past the first non-NULL argument. + */ + if( pDef->funcFlags & SQLITE_FUNC_COALESCE ){ + int endCoalesce = sqlite3VdbeMakeLabel(v); + assert( nFarg>=2 ); + sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); + for(i=1; ia[i].pExpr, target); + sqlite3ExprCachePop(pParse); + } + sqlite3VdbeResolveLabel(v, endCoalesce); + break; + } + + /* The UNLIKELY() function is a no-op. The result is the value + ** of the first argument. + */ + if( pDef->funcFlags & SQLITE_FUNC_UNLIKELY ){ + assert( nFarg>=1 ); + sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); + break; + } + + for(i=0; ia[i].pExpr) ){ + testcase( i==31 ); + constMask |= MASKBIT32(i); + } + if( (pDef->funcFlags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){ + pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr); + } + } + if( pFarg ){ + if( constMask ){ + r1 = pParse->nMem+1; + pParse->nMem += nFarg; + }else{ + r1 = sqlite3GetTempRange(pParse, nFarg); + } + + /* For length() and typeof() functions with a column argument, + ** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG + ** or OPFLAG_TYPEOFARG respectively, to avoid unnecessary data + ** loading. + */ + if( (pDef->funcFlags & (SQLITE_FUNC_LENGTH|SQLITE_FUNC_TYPEOF))!=0 ){ + u8 exprOp; + assert( nFarg==1 ); + assert( pFarg->a[0].pExpr!=0 ); + exprOp = pFarg->a[0].pExpr->op; + if( exprOp==TK_COLUMN || exprOp==TK_AGG_COLUMN ){ + assert( SQLITE_FUNC_LENGTH==OPFLAG_LENGTHARG ); + assert( SQLITE_FUNC_TYPEOF==OPFLAG_TYPEOFARG ); + testcase( pDef->funcFlags & OPFLAG_LENGTHARG ); + pFarg->a[0].pExpr->op2 = + pDef->funcFlags & (OPFLAG_LENGTHARG|OPFLAG_TYPEOFARG); + } + } + + sqlite3ExprCachePush(pParse); /* Ticket 2ea2425d34be */ + sqlite3ExprCodeExprList(pParse, pFarg, r1, + SQLITE_ECEL_DUP|SQLITE_ECEL_FACTOR); + sqlite3ExprCachePop(pParse); /* Ticket 2ea2425d34be */ + }else{ + r1 = 0; + } +#ifndef SQLITE_OMIT_VIRTUALTABLE + /* Possibly overload the function if the first argument is + ** a virtual table column. + ** + ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the + ** second argument, not the first, as the argument to test to + ** see if it is a column in a virtual table. This is done because + ** the left operand of infix functions (the operand we want to + ** control overloading) ends up as the second argument to the + ** function. The expression "A glob B" is equivalent to + ** "glob(B,A). We want to use the A in "A glob B" to test + ** for function overloading. But we use the B term in "glob(B,A)". + */ + if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){ + pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr); + }else if( nFarg>0 ){ + pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr); + } +#endif + if( pDef->funcFlags & SQLITE_FUNC_NEEDCOLL ){ + if( !pColl ) pColl = db->pDfltColl; + sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); + } + sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target, + (char*)pDef, P4_FUNCDEF); + sqlite3VdbeChangeP5(v, (u8)nFarg); + if( nFarg && constMask==0 ){ + sqlite3ReleaseTempRange(pParse, r1, nFarg); + } + break; + } +#ifndef SQLITE_OMIT_SUBQUERY + case TK_EXISTS: + case TK_SELECT: { + testcase( op==TK_EXISTS ); + testcase( op==TK_SELECT ); + inReg = sqlite3CodeSubselect(pParse, pExpr, 0, 0); + break; + } + case TK_IN: { + int destIfFalse = sqlite3VdbeMakeLabel(v); + int destIfNull = sqlite3VdbeMakeLabel(v); + sqlite3VdbeAddOp2(v, OP_Null, 0, target); + sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); + sqlite3VdbeAddOp2(v, OP_Integer, 1, target); + sqlite3VdbeResolveLabel(v, destIfFalse); + sqlite3VdbeAddOp2(v, OP_AddImm, target, 0); + sqlite3VdbeResolveLabel(v, destIfNull); + break; + } +#endif /* SQLITE_OMIT_SUBQUERY */ + + + /* + ** x BETWEEN y AND z + ** + ** This is equivalent to + ** + ** x>=y AND x<=z + ** + ** X is stored in pExpr->pLeft. + ** Y is stored in pExpr->pList->a[0].pExpr. + ** Z is stored in pExpr->pList->a[1].pExpr. + */ + case TK_BETWEEN: { + Expr *pLeft = pExpr->pLeft; + struct ExprList_item *pLItem = pExpr->x.pList->a; + Expr *pRight = pLItem->pExpr; + + r1 = sqlite3ExprCodeTemp(pParse, pLeft, ®Free1); + r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); + testcase( regFree1==0 ); + testcase( regFree2==0 ); + r3 = sqlite3GetTempReg(pParse); + r4 = sqlite3GetTempReg(pParse); + codeCompare(pParse, pLeft, pRight, OP_Ge, + r1, r2, r3, SQLITE_STOREP2); VdbeCoverage(v); + pLItem++; + pRight = pLItem->pExpr; + sqlite3ReleaseTempReg(pParse, regFree2); + r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); + testcase( regFree2==0 ); + codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2); + VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_And, r3, r4, target); + sqlite3ReleaseTempReg(pParse, r3); + sqlite3ReleaseTempReg(pParse, r4); + break; + } + case TK_COLLATE: + case TK_UPLUS: { + inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); + break; + } + + case TK_TRIGGER: { + /* If the opcode is TK_TRIGGER, then the expression is a reference + ** to a column in the new.* or old.* pseudo-tables available to + ** trigger programs. In this case Expr.iTable is set to 1 for the + ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn + ** is set to the column of the pseudo-table to read, or to -1 to + ** read the rowid field. + ** + ** The expression is implemented using an OP_Param opcode. The p1 + ** parameter is set to 0 for an old.rowid reference, or to (i+1) + ** to reference another column of the old.* pseudo-table, where + ** i is the index of the column. For a new.rowid reference, p1 is + ** set to (n+1), where n is the number of columns in each pseudo-table. + ** For a reference to any other column in the new.* pseudo-table, p1 + ** is set to (n+2+i), where n and i are as defined previously. For + ** example, if the table on which triggers are being fired is + ** declared as: + ** + ** CREATE TABLE t1(a, b); + ** + ** Then p1 is interpreted as follows: + ** + ** p1==0 -> old.rowid p1==3 -> new.rowid + ** p1==1 -> old.a p1==4 -> new.a + ** p1==2 -> old.b p1==5 -> new.b + */ + Table *pTab = pExpr->pTab; + int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + pExpr->iColumn; + + assert( pExpr->iTable==0 || pExpr->iTable==1 ); + assert( pExpr->iColumn>=-1 && pExpr->iColumnnCol ); + assert( pTab->iPKey<0 || pExpr->iColumn!=pTab->iPKey ); + assert( p1>=0 && p1<(pTab->nCol*2+2) ); + + sqlite3VdbeAddOp2(v, OP_Param, p1, target); + VdbeComment((v, "%s.%s -> $%d", + (pExpr->iTable ? "new" : "old"), + (pExpr->iColumn<0 ? "rowid" : pExpr->pTab->aCol[pExpr->iColumn].zName), + target + )); + +#ifndef SQLITE_OMIT_FLOATING_POINT + /* If the column has REAL affinity, it may currently be stored as an + ** integer. Use OP_RealAffinity to make sure it is really real. */ + if( pExpr->iColumn>=0 + && pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL + ){ + sqlite3VdbeAddOp1(v, OP_RealAffinity, target); + } +#endif + break; + } + + + /* + ** Form A: + ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END + ** + ** Form B: + ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END + ** + ** Form A is can be transformed into the equivalent form B as follows: + ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ... + ** WHEN x=eN THEN rN ELSE y END + ** + ** X (if it exists) is in pExpr->pLeft. + ** Y is in the last element of pExpr->x.pList if pExpr->x.pList->nExpr is + ** odd. The Y is also optional. If the number of elements in x.pList + ** is even, then Y is omitted and the "otherwise" result is NULL. + ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1]. + ** + ** The result of the expression is the Ri for the first matching Ei, + ** or if there is no matching Ei, the ELSE term Y, or if there is + ** no ELSE term, NULL. + */ + default: assert( op==TK_CASE ); { + int endLabel; /* GOTO label for end of CASE stmt */ + int nextCase; /* GOTO label for next WHEN clause */ + int nExpr; /* 2x number of WHEN terms */ + int i; /* Loop counter */ + ExprList *pEList; /* List of WHEN terms */ + struct ExprList_item *aListelem; /* Array of WHEN terms */ + Expr opCompare; /* The X==Ei expression */ + Expr *pX; /* The X expression */ + Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ + VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; ) + + assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList ); + assert(pExpr->x.pList->nExpr > 0); + pEList = pExpr->x.pList; + aListelem = pEList->a; + nExpr = pEList->nExpr; + endLabel = sqlite3VdbeMakeLabel(v); + if( (pX = pExpr->pLeft)!=0 ){ + tempX = *pX; + testcase( pX->op==TK_COLUMN ); + exprToRegister(&tempX, sqlite3ExprCodeTemp(pParse, pX, ®Free1)); + testcase( regFree1==0 ); + opCompare.op = TK_EQ; + opCompare.pLeft = &tempX; + pTest = &opCompare; + /* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001: + ** The value in regFree1 might get SCopy-ed into the file result. + ** So make sure that the regFree1 register is not reused for other + ** purposes and possibly overwritten. */ + regFree1 = 0; + } + for(i=0; iop==TK_COLUMN ); + sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); + testcase( aListelem[i+1].pExpr->op==TK_COLUMN ); + sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target); + sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel); + sqlite3ExprCachePop(pParse); + sqlite3VdbeResolveLabel(v, nextCase); + } + if( (nExpr&1)!=0 ){ + sqlite3ExprCachePush(pParse); + sqlite3ExprCode(pParse, pEList->a[nExpr-1].pExpr, target); + sqlite3ExprCachePop(pParse); + }else{ + sqlite3VdbeAddOp2(v, OP_Null, 0, target); + } + assert( db->mallocFailed || pParse->nErr>0 + || pParse->iCacheLevel==iCacheLevel ); + sqlite3VdbeResolveLabel(v, endLabel); + break; + } +#ifndef SQLITE_OMIT_TRIGGER + case TK_RAISE: { + assert( pExpr->affinity==OE_Rollback + || pExpr->affinity==OE_Abort + || pExpr->affinity==OE_Fail + || pExpr->affinity==OE_Ignore + ); + if( !pParse->pTriggerTab ){ + sqlite3ErrorMsg(pParse, + "RAISE() may only be used within a trigger-program"); + return 0; + } + if( pExpr->affinity==OE_Abort ){ + sqlite3MayAbort(pParse); + } + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + if( pExpr->affinity==OE_Ignore ){ + sqlite3VdbeAddOp4( + v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); + VdbeCoverage(v); + }else{ + sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_TRIGGER, + pExpr->affinity, pExpr->u.zToken, 0, 0); + } + + break; + } +#endif + } + sqlite3ReleaseTempReg(pParse, regFree1); + sqlite3ReleaseTempReg(pParse, regFree2); + return inReg; +} + +/* +** Factor out the code of the given expression to initialization time. +*/ +SQLITE_PRIVATE void sqlite3ExprCodeAtInit( + Parse *pParse, /* Parsing context */ + Expr *pExpr, /* The expression to code when the VDBE initializes */ + int regDest, /* Store the value in this register */ + u8 reusable /* True if this expression is reusable */ +){ + ExprList *p; + assert( ConstFactorOk(pParse) ); + p = pParse->pConstExpr; + pExpr = sqlite3ExprDup(pParse->db, pExpr, 0); + p = sqlite3ExprListAppend(pParse, p, pExpr); + if( p ){ + struct ExprList_item *pItem = &p->a[p->nExpr-1]; + pItem->u.iConstExprReg = regDest; + pItem->reusable = reusable; + } + pParse->pConstExpr = p; +} + +/* +** Generate code to evaluate an expression and store the results +** into a register. Return the register number where the results +** are stored. +** +** If the register is a temporary register that can be deallocated, +** then write its number into *pReg. If the result register is not +** a temporary, then set *pReg to zero. +** +** If pExpr is a constant, then this routine might generate this +** code to fill the register in the initialization section of the +** VDBE program, in order to factor it out of the evaluation loop. +*/ +SQLITE_PRIVATE int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){ + int r2; + pExpr = sqlite3ExprSkipCollate(pExpr); + if( ConstFactorOk(pParse) + && pExpr->op!=TK_REGISTER + && sqlite3ExprIsConstantNotJoin(pExpr) + ){ + ExprList *p = pParse->pConstExpr; + int i; + *pReg = 0; + if( p ){ + struct ExprList_item *pItem; + for(pItem=p->a, i=p->nExpr; i>0; pItem++, i--){ + if( pItem->reusable && sqlite3ExprCompare(pItem->pExpr,pExpr,-1)==0 ){ + return pItem->u.iConstExprReg; + } + } + } + r2 = ++pParse->nMem; + sqlite3ExprCodeAtInit(pParse, pExpr, r2, 1); + }else{ + int r1 = sqlite3GetTempReg(pParse); + r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); + if( r2==r1 ){ + *pReg = r1; + }else{ + sqlite3ReleaseTempReg(pParse, r1); + *pReg = 0; + } + } + return r2; +} + +/* +** Generate code that will evaluate expression pExpr and store the +** results in register target. The results are guaranteed to appear +** in register target. +*/ +SQLITE_PRIVATE void sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){ + int inReg; + + assert( target>0 && target<=pParse->nMem ); + if( pExpr && pExpr->op==TK_REGISTER ){ + sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, pExpr->iTable, target); + }else{ + inReg = sqlite3ExprCodeTarget(pParse, pExpr, target); + assert( pParse->pVdbe || pParse->db->mallocFailed ); + if( inReg!=target && pParse->pVdbe ){ + sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target); + } + } +} + +/* +** Generate code that will evaluate expression pExpr and store the +** results in register target. The results are guaranteed to appear +** in register target. If the expression is constant, then this routine +** might choose to code the expression at initialization time. +*/ +SQLITE_PRIVATE void sqlite3ExprCodeFactorable(Parse *pParse, Expr *pExpr, int target){ + if( pParse->okConstFactor && sqlite3ExprIsConstant(pExpr) ){ + sqlite3ExprCodeAtInit(pParse, pExpr, target, 0); + }else{ + sqlite3ExprCode(pParse, pExpr, target); + } +} + +/* +** Generate code that evalutes the given expression and puts the result +** in register target. +** +** Also make a copy of the expression results into another "cache" register +** and modify the expression so that the next time it is evaluated, +** the result is a copy of the cache register. +** +** This routine is used for expressions that are used multiple +** times. They are evaluated once and the results of the expression +** are reused. +*/ +SQLITE_PRIVATE void sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){ + Vdbe *v = pParse->pVdbe; + int iMem; + + assert( target>0 ); + assert( pExpr->op!=TK_REGISTER ); + sqlite3ExprCode(pParse, pExpr, target); + iMem = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Copy, target, iMem); + exprToRegister(pExpr, iMem); +} + +#if defined(SQLITE_ENABLE_TREE_EXPLAIN) +/* +** Generate a human-readable explanation of an expression tree. +*/ +SQLITE_PRIVATE void sqlite3ExplainExpr(Vdbe *pOut, Expr *pExpr){ + int op; /* The opcode being coded */ + const char *zBinOp = 0; /* Binary operator */ + const char *zUniOp = 0; /* Unary operator */ + if( pExpr==0 ){ + op = TK_NULL; + }else{ + op = pExpr->op; + } + switch( op ){ + case TK_AGG_COLUMN: { + sqlite3ExplainPrintf(pOut, "AGG{%d:%d}", + pExpr->iTable, pExpr->iColumn); + break; + } + case TK_COLUMN: { + if( pExpr->iTable<0 ){ + /* This only happens when coding check constraints */ + sqlite3ExplainPrintf(pOut, "COLUMN(%d)", pExpr->iColumn); + }else{ + sqlite3ExplainPrintf(pOut, "{%d:%d}", + pExpr->iTable, pExpr->iColumn); + } + break; + } + case TK_INTEGER: { + if( pExpr->flags & EP_IntValue ){ + sqlite3ExplainPrintf(pOut, "%d", pExpr->u.iValue); + }else{ + sqlite3ExplainPrintf(pOut, "%s", pExpr->u.zToken); + } + break; + } +#ifndef SQLITE_OMIT_FLOATING_POINT + case TK_FLOAT: { + sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken); + break; + } +#endif + case TK_STRING: { + sqlite3ExplainPrintf(pOut,"%Q", pExpr->u.zToken); + break; + } + case TK_NULL: { + sqlite3ExplainPrintf(pOut,"NULL"); + break; + } +#ifndef SQLITE_OMIT_BLOB_LITERAL + case TK_BLOB: { + sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken); + break; + } +#endif + case TK_VARIABLE: { + sqlite3ExplainPrintf(pOut,"VARIABLE(%s,%d)", + pExpr->u.zToken, pExpr->iColumn); + break; + } + case TK_REGISTER: { + sqlite3ExplainPrintf(pOut,"REGISTER(%d)", pExpr->iTable); + break; + } + case TK_AS: { + sqlite3ExplainExpr(pOut, pExpr->pLeft); + break; + } +#ifndef SQLITE_OMIT_CAST + case TK_CAST: { + /* Expressions of the form: CAST(pLeft AS token) */ + const char *zAff = "unk"; + switch( sqlite3AffinityType(pExpr->u.zToken, 0) ){ + case SQLITE_AFF_TEXT: zAff = "TEXT"; break; + case SQLITE_AFF_NONE: zAff = "NONE"; break; + case SQLITE_AFF_NUMERIC: zAff = "NUMERIC"; break; + case SQLITE_AFF_INTEGER: zAff = "INTEGER"; break; + case SQLITE_AFF_REAL: zAff = "REAL"; break; + } + sqlite3ExplainPrintf(pOut, "CAST-%s(", zAff); + sqlite3ExplainExpr(pOut, pExpr->pLeft); + sqlite3ExplainPrintf(pOut, ")"); + break; + } +#endif /* SQLITE_OMIT_CAST */ + case TK_LT: zBinOp = "LT"; break; + case TK_LE: zBinOp = "LE"; break; + case TK_GT: zBinOp = "GT"; break; + case TK_GE: zBinOp = "GE"; break; + case TK_NE: zBinOp = "NE"; break; + case TK_EQ: zBinOp = "EQ"; break; + case TK_IS: zBinOp = "IS"; break; + case TK_ISNOT: zBinOp = "ISNOT"; break; + case TK_AND: zBinOp = "AND"; break; + case TK_OR: zBinOp = "OR"; break; + case TK_PLUS: zBinOp = "ADD"; break; + case TK_STAR: zBinOp = "MUL"; break; + case TK_MINUS: zBinOp = "SUB"; break; + case TK_REM: zBinOp = "REM"; break; + case TK_BITAND: zBinOp = "BITAND"; break; + case TK_BITOR: zBinOp = "BITOR"; break; + case TK_SLASH: zBinOp = "DIV"; break; + case TK_LSHIFT: zBinOp = "LSHIFT"; break; + case TK_RSHIFT: zBinOp = "RSHIFT"; break; + case TK_CONCAT: zBinOp = "CONCAT"; break; + + case TK_UMINUS: zUniOp = "UMINUS"; break; + case TK_UPLUS: zUniOp = "UPLUS"; break; + case TK_BITNOT: zUniOp = "BITNOT"; break; + case TK_NOT: zUniOp = "NOT"; break; + case TK_ISNULL: zUniOp = "ISNULL"; break; + case TK_NOTNULL: zUniOp = "NOTNULL"; break; + + case TK_COLLATE: { + sqlite3ExplainExpr(pOut, pExpr->pLeft); + sqlite3ExplainPrintf(pOut,".COLLATE(%s)",pExpr->u.zToken); + break; + } + + case TK_AGG_FUNCTION: + case TK_FUNCTION: { + ExprList *pFarg; /* List of function arguments */ + if( ExprHasProperty(pExpr, EP_TokenOnly) ){ + pFarg = 0; + }else{ + pFarg = pExpr->x.pList; + } + if( op==TK_AGG_FUNCTION ){ + sqlite3ExplainPrintf(pOut, "AGG_FUNCTION%d:%s(", + pExpr->op2, pExpr->u.zToken); + }else{ + sqlite3ExplainPrintf(pOut, "FUNCTION:%s(", pExpr->u.zToken); + } + if( pFarg ){ + sqlite3ExplainExprList(pOut, pFarg); + } + sqlite3ExplainPrintf(pOut, ")"); + break; + } +#ifndef SQLITE_OMIT_SUBQUERY + case TK_EXISTS: { + sqlite3ExplainPrintf(pOut, "EXISTS("); + sqlite3ExplainSelect(pOut, pExpr->x.pSelect); + sqlite3ExplainPrintf(pOut,")"); + break; + } + case TK_SELECT: { + sqlite3ExplainPrintf(pOut, "("); + sqlite3ExplainSelect(pOut, pExpr->x.pSelect); + sqlite3ExplainPrintf(pOut, ")"); + break; + } + case TK_IN: { + sqlite3ExplainPrintf(pOut, "IN("); + sqlite3ExplainExpr(pOut, pExpr->pLeft); + sqlite3ExplainPrintf(pOut, ","); + if( ExprHasProperty(pExpr, EP_xIsSelect) ){ + sqlite3ExplainSelect(pOut, pExpr->x.pSelect); + }else{ + sqlite3ExplainExprList(pOut, pExpr->x.pList); + } + sqlite3ExplainPrintf(pOut, ")"); + break; + } +#endif /* SQLITE_OMIT_SUBQUERY */ + + /* + ** x BETWEEN y AND z + ** + ** This is equivalent to + ** + ** x>=y AND x<=z + ** + ** X is stored in pExpr->pLeft. + ** Y is stored in pExpr->pList->a[0].pExpr. + ** Z is stored in pExpr->pList->a[1].pExpr. + */ + case TK_BETWEEN: { + Expr *pX = pExpr->pLeft; + Expr *pY = pExpr->x.pList->a[0].pExpr; + Expr *pZ = pExpr->x.pList->a[1].pExpr; + sqlite3ExplainPrintf(pOut, "BETWEEN("); + sqlite3ExplainExpr(pOut, pX); + sqlite3ExplainPrintf(pOut, ","); + sqlite3ExplainExpr(pOut, pY); + sqlite3ExplainPrintf(pOut, ","); + sqlite3ExplainExpr(pOut, pZ); + sqlite3ExplainPrintf(pOut, ")"); + break; + } + case TK_TRIGGER: { + /* If the opcode is TK_TRIGGER, then the expression is a reference + ** to a column in the new.* or old.* pseudo-tables available to + ** trigger programs. In this case Expr.iTable is set to 1 for the + ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn + ** is set to the column of the pseudo-table to read, or to -1 to + ** read the rowid field. + */ + sqlite3ExplainPrintf(pOut, "%s(%d)", + pExpr->iTable ? "NEW" : "OLD", pExpr->iColumn); + break; + } + case TK_CASE: { + sqlite3ExplainPrintf(pOut, "CASE("); + sqlite3ExplainExpr(pOut, pExpr->pLeft); + sqlite3ExplainPrintf(pOut, ","); + sqlite3ExplainExprList(pOut, pExpr->x.pList); + break; + } +#ifndef SQLITE_OMIT_TRIGGER + case TK_RAISE: { + const char *zType = "unk"; + switch( pExpr->affinity ){ + case OE_Rollback: zType = "rollback"; break; + case OE_Abort: zType = "abort"; break; + case OE_Fail: zType = "fail"; break; + case OE_Ignore: zType = "ignore"; break; + } + sqlite3ExplainPrintf(pOut, "RAISE-%s(%s)", zType, pExpr->u.zToken); + break; + } +#endif + } + if( zBinOp ){ + sqlite3ExplainPrintf(pOut,"%s(", zBinOp); + sqlite3ExplainExpr(pOut, pExpr->pLeft); + sqlite3ExplainPrintf(pOut,","); + sqlite3ExplainExpr(pOut, pExpr->pRight); + sqlite3ExplainPrintf(pOut,")"); + }else if( zUniOp ){ + sqlite3ExplainPrintf(pOut,"%s(", zUniOp); + sqlite3ExplainExpr(pOut, pExpr->pLeft); + sqlite3ExplainPrintf(pOut,")"); + } +} +#endif /* defined(SQLITE_ENABLE_TREE_EXPLAIN) */ + +#if defined(SQLITE_ENABLE_TREE_EXPLAIN) +/* +** Generate a human-readable explanation of an expression list. +*/ +SQLITE_PRIVATE void sqlite3ExplainExprList(Vdbe *pOut, ExprList *pList){ + int i; + if( pList==0 || pList->nExpr==0 ){ + sqlite3ExplainPrintf(pOut, "(empty-list)"); + return; + }else if( pList->nExpr==1 ){ + sqlite3ExplainExpr(pOut, pList->a[0].pExpr); + }else{ + sqlite3ExplainPush(pOut); + for(i=0; inExpr; i++){ + sqlite3ExplainPrintf(pOut, "item[%d] = ", i); + sqlite3ExplainPush(pOut); + sqlite3ExplainExpr(pOut, pList->a[i].pExpr); + sqlite3ExplainPop(pOut); + if( pList->a[i].zName ){ + sqlite3ExplainPrintf(pOut, " AS %s", pList->a[i].zName); + } + if( pList->a[i].bSpanIsTab ){ + sqlite3ExplainPrintf(pOut, " (%s)", pList->a[i].zSpan); + } + if( inExpr-1 ){ + sqlite3ExplainNL(pOut); + } + } + sqlite3ExplainPop(pOut); + } +} +#endif /* SQLITE_DEBUG */ + +/* +** Generate code that pushes the value of every element of the given +** expression list into a sequence of registers beginning at target. +** +** Return the number of elements evaluated. +** +** The SQLITE_ECEL_DUP flag prevents the arguments from being +** filled using OP_SCopy. OP_Copy must be used instead. +** +** The SQLITE_ECEL_FACTOR argument allows constant arguments to be +** factored out into initialization code. +*/ +SQLITE_PRIVATE int sqlite3ExprCodeExprList( + Parse *pParse, /* Parsing context */ + ExprList *pList, /* The expression list to be coded */ + int target, /* Where to write results */ + u8 flags /* SQLITE_ECEL_* flags */ +){ + struct ExprList_item *pItem; + int i, n; + u8 copyOp = (flags & SQLITE_ECEL_DUP) ? OP_Copy : OP_SCopy; + assert( pList!=0 ); + assert( target>0 ); + assert( pParse->pVdbe!=0 ); /* Never gets this far otherwise */ + n = pList->nExpr; + if( !ConstFactorOk(pParse) ) flags &= ~SQLITE_ECEL_FACTOR; + for(pItem=pList->a, i=0; ipExpr; + if( (flags & SQLITE_ECEL_FACTOR)!=0 && sqlite3ExprIsConstant(pExpr) ){ + sqlite3ExprCodeAtInit(pParse, pExpr, target+i, 0); + }else{ + int inReg = sqlite3ExprCodeTarget(pParse, pExpr, target+i); + if( inReg!=target+i ){ + VdbeOp *pOp; + Vdbe *v = pParse->pVdbe; + if( copyOp==OP_Copy + && (pOp=sqlite3VdbeGetOp(v, -1))->opcode==OP_Copy + && pOp->p1+pOp->p3+1==inReg + && pOp->p2+pOp->p3+1==target+i + ){ + pOp->p3++; + }else{ + sqlite3VdbeAddOp2(v, copyOp, inReg, target+i); + } + } + } + } + return n; +} + +/* +** Generate code for a BETWEEN operator. +** +** x BETWEEN y AND z +** +** The above is equivalent to +** +** x>=y AND x<=z +** +** Code it as such, taking care to do the common subexpression +** elementation of x. +*/ +static void exprCodeBetween( + Parse *pParse, /* Parsing and code generating context */ + Expr *pExpr, /* The BETWEEN expression */ + int dest, /* Jump here if the jump is taken */ + int jumpIfTrue, /* Take the jump if the BETWEEN is true */ + int jumpIfNull /* Take the jump if the BETWEEN is NULL */ +){ + Expr exprAnd; /* The AND operator in x>=y AND x<=z */ + Expr compLeft; /* The x>=y term */ + Expr compRight; /* The x<=z term */ + Expr exprX; /* The x subexpression */ + int regFree1 = 0; /* Temporary use register */ + + assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); + exprX = *pExpr->pLeft; + exprAnd.op = TK_AND; + exprAnd.pLeft = &compLeft; + exprAnd.pRight = &compRight; + compLeft.op = TK_GE; + compLeft.pLeft = &exprX; + compLeft.pRight = pExpr->x.pList->a[0].pExpr; + compRight.op = TK_LE; + compRight.pLeft = &exprX; + compRight.pRight = pExpr->x.pList->a[1].pExpr; + exprToRegister(&exprX, sqlite3ExprCodeTemp(pParse, &exprX, ®Free1)); + if( jumpIfTrue ){ + sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull); + }else{ + sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull); + } + sqlite3ReleaseTempReg(pParse, regFree1); + + /* Ensure adequate test coverage */ + testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1==0 ); + testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1!=0 ); + testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1==0 ); + testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1!=0 ); + testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1==0 ); + testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1!=0 ); + testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1==0 ); + testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1!=0 ); +} + +/* +** Generate code for a boolean expression such that a jump is made +** to the label "dest" if the expression is true but execution +** continues straight thru if the expression is false. +** +** If the expression evaluates to NULL (neither true nor false), then +** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL. +** +** This code depends on the fact that certain token values (ex: TK_EQ) +** are the same as opcode values (ex: OP_Eq) that implement the corresponding +** operation. Special comments in vdbe.c and the mkopcodeh.awk script in +** the make process cause these values to align. Assert()s in the code +** below verify that the numbers are aligned correctly. +*/ +SQLITE_PRIVATE void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ + Vdbe *v = pParse->pVdbe; + int op = 0; + int regFree1 = 0; + int regFree2 = 0; + int r1, r2; + + assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); + if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ + if( NEVER(pExpr==0) ) return; /* No way this can happen */ + op = pExpr->op; + switch( op ){ + case TK_AND: { + int d2 = sqlite3VdbeMakeLabel(v); + testcase( jumpIfNull==0 ); + sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL); + sqlite3ExprCachePush(pParse); + sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); + sqlite3VdbeResolveLabel(v, d2); + sqlite3ExprCachePop(pParse); + break; + } + case TK_OR: { + testcase( jumpIfNull==0 ); + sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); + sqlite3ExprCachePush(pParse); + sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); + sqlite3ExprCachePop(pParse); + break; + } + case TK_NOT: { + testcase( jumpIfNull==0 ); + sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); + break; + } + case TK_LT: + case TK_LE: + case TK_GT: + case TK_GE: + case TK_NE: + case TK_EQ: { + testcase( jumpIfNull==0 ); + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); + codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, + r1, r2, dest, jumpIfNull); + assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); + assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); + assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); + assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); + assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); + assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); + testcase( regFree1==0 ); + testcase( regFree2==0 ); + break; + } + case TK_IS: + case TK_ISNOT: { + testcase( op==TK_IS ); + testcase( op==TK_ISNOT ); + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); + op = (op==TK_IS) ? TK_EQ : TK_NE; + codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, + r1, r2, dest, SQLITE_NULLEQ); + VdbeCoverageIf(v, op==TK_EQ); + VdbeCoverageIf(v, op==TK_NE); + testcase( regFree1==0 ); + testcase( regFree2==0 ); + break; + } + case TK_ISNULL: + case TK_NOTNULL: { + assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL ); + assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL ); + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + sqlite3VdbeAddOp2(v, op, r1, dest); + VdbeCoverageIf(v, op==TK_ISNULL); + VdbeCoverageIf(v, op==TK_NOTNULL); + testcase( regFree1==0 ); + break; + } + case TK_BETWEEN: { + testcase( jumpIfNull==0 ); + exprCodeBetween(pParse, pExpr, dest, 1, jumpIfNull); + break; + } +#ifndef SQLITE_OMIT_SUBQUERY + case TK_IN: { + int destIfFalse = sqlite3VdbeMakeLabel(v); + int destIfNull = jumpIfNull ? dest : destIfFalse; + sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); + sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); + sqlite3VdbeResolveLabel(v, destIfFalse); + break; + } +#endif + default: { + if( exprAlwaysTrue(pExpr) ){ + sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); + }else if( exprAlwaysFalse(pExpr) ){ + /* No-op */ + }else{ + r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); + sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0); + VdbeCoverage(v); + testcase( regFree1==0 ); + testcase( jumpIfNull==0 ); + } + break; + } + } + sqlite3ReleaseTempReg(pParse, regFree1); + sqlite3ReleaseTempReg(pParse, regFree2); +} + +/* +** Generate code for a boolean expression such that a jump is made +** to the label "dest" if the expression is false but execution +** continues straight thru if the expression is true. +** +** If the expression evaluates to NULL (neither true nor false) then +** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull +** is 0. +*/ +SQLITE_PRIVATE void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ + Vdbe *v = pParse->pVdbe; + int op = 0; + int regFree1 = 0; + int regFree2 = 0; + int r1, r2; + + assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); + if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ + if( pExpr==0 ) return; + + /* The value of pExpr->op and op are related as follows: + ** + ** pExpr->op op + ** --------- ---------- + ** TK_ISNULL OP_NotNull + ** TK_NOTNULL OP_IsNull + ** TK_NE OP_Eq + ** TK_EQ OP_Ne + ** TK_GT OP_Le + ** TK_LE OP_Gt + ** TK_GE OP_Lt + ** TK_LT OP_Ge + ** + ** For other values of pExpr->op, op is undefined and unused. + ** The value of TK_ and OP_ constants are arranged such that we + ** can compute the mapping above using the following expression. + ** Assert()s verify that the computation is correct. + */ + op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); + + /* Verify correct alignment of TK_ and OP_ constants + */ + assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); + assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); + assert( pExpr->op!=TK_NE || op==OP_Eq ); + assert( pExpr->op!=TK_EQ || op==OP_Ne ); + assert( pExpr->op!=TK_LT || op==OP_Ge ); + assert( pExpr->op!=TK_LE || op==OP_Gt ); + assert( pExpr->op!=TK_GT || op==OP_Le ); + assert( pExpr->op!=TK_GE || op==OP_Lt ); + + switch( pExpr->op ){ + case TK_AND: { + testcase( jumpIfNull==0 ); + sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); + sqlite3ExprCachePush(pParse); + sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); + sqlite3ExprCachePop(pParse); + break; + } + case TK_OR: { + int d2 = sqlite3VdbeMakeLabel(v); + testcase( jumpIfNull==0 ); + sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); + sqlite3ExprCachePush(pParse); + sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); + sqlite3VdbeResolveLabel(v, d2); + sqlite3ExprCachePop(pParse); + break; + } + case TK_NOT: { + testcase( jumpIfNull==0 ); + sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); + break; + } + case TK_LT: + case TK_LE: + case TK_GT: + case TK_GE: + case TK_NE: + case TK_EQ: { + testcase( jumpIfNull==0 ); + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); + codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, + r1, r2, dest, jumpIfNull); + assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); + assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); + assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); + assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); + assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); + assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); + testcase( regFree1==0 ); + testcase( regFree2==0 ); + break; + } + case TK_IS: + case TK_ISNOT: { + testcase( pExpr->op==TK_IS ); + testcase( pExpr->op==TK_ISNOT ); + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); + op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ; + codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, + r1, r2, dest, SQLITE_NULLEQ); + VdbeCoverageIf(v, op==TK_EQ); + VdbeCoverageIf(v, op==TK_NE); + testcase( regFree1==0 ); + testcase( regFree2==0 ); + break; + } + case TK_ISNULL: + case TK_NOTNULL: { + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); + sqlite3VdbeAddOp2(v, op, r1, dest); + testcase( op==TK_ISNULL ); VdbeCoverageIf(v, op==TK_ISNULL); + testcase( op==TK_NOTNULL ); VdbeCoverageIf(v, op==TK_NOTNULL); + testcase( regFree1==0 ); + break; + } + case TK_BETWEEN: { + testcase( jumpIfNull==0 ); + exprCodeBetween(pParse, pExpr, dest, 0, jumpIfNull); + break; + } +#ifndef SQLITE_OMIT_SUBQUERY + case TK_IN: { + if( jumpIfNull ){ + sqlite3ExprCodeIN(pParse, pExpr, dest, dest); + }else{ + int destIfNull = sqlite3VdbeMakeLabel(v); + sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull); + sqlite3VdbeResolveLabel(v, destIfNull); + } + break; + } +#endif + default: { + if( exprAlwaysFalse(pExpr) ){ + sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); + }else if( exprAlwaysTrue(pExpr) ){ + /* no-op */ + }else{ + r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); + sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0); + VdbeCoverage(v); + testcase( regFree1==0 ); + testcase( jumpIfNull==0 ); + } + break; + } + } + sqlite3ReleaseTempReg(pParse, regFree1); + sqlite3ReleaseTempReg(pParse, regFree2); +} + +/* +** Do a deep comparison of two expression trees. Return 0 if the two +** expressions are completely identical. Return 1 if they differ only +** by a COLLATE operator at the top level. Return 2 if there are differences +** other than the top-level COLLATE operator. +** +** If any subelement of pB has Expr.iTable==(-1) then it is allowed +** to compare equal to an equivalent element in pA with Expr.iTable==iTab. +** +** The pA side might be using TK_REGISTER. If that is the case and pB is +** not using TK_REGISTER but is otherwise equivalent, then still return 0. +** +** Sometimes this routine will return 2 even if the two expressions +** really are equivalent. If we cannot prove that the expressions are +** identical, we return 2 just to be safe. So if this routine +** returns 2, then you do not really know for certain if the two +** expressions are the same. But if you get a 0 or 1 return, then you +** can be sure the expressions are the same. In the places where +** this routine is used, it does not hurt to get an extra 2 - that +** just might result in some slightly slower code. But returning +** an incorrect 0 or 1 could lead to a malfunction. +*/ +SQLITE_PRIVATE int sqlite3ExprCompare(Expr *pA, Expr *pB, int iTab){ + u32 combinedFlags; + if( pA==0 || pB==0 ){ + return pB==pA ? 0 : 2; + } + combinedFlags = pA->flags | pB->flags; + if( combinedFlags & EP_IntValue ){ + if( (pA->flags&pB->flags&EP_IntValue)!=0 && pA->u.iValue==pB->u.iValue ){ + return 0; + } + return 2; + } + if( pA->op!=pB->op ){ + if( pA->op==TK_COLLATE && sqlite3ExprCompare(pA->pLeft, pB, iTab)<2 ){ + return 1; + } + if( pB->op==TK_COLLATE && sqlite3ExprCompare(pA, pB->pLeft, iTab)<2 ){ + return 1; + } + return 2; + } + if( pA->op!=TK_COLUMN && ALWAYS(pA->op!=TK_AGG_COLUMN) && pA->u.zToken ){ + if( strcmp(pA->u.zToken,pB->u.zToken)!=0 ){ + return pA->op==TK_COLLATE ? 1 : 2; + } + } + if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 2; + if( ALWAYS((combinedFlags & EP_TokenOnly)==0) ){ + if( combinedFlags & EP_xIsSelect ) return 2; + if( sqlite3ExprCompare(pA->pLeft, pB->pLeft, iTab) ) return 2; + if( sqlite3ExprCompare(pA->pRight, pB->pRight, iTab) ) return 2; + if( sqlite3ExprListCompare(pA->x.pList, pB->x.pList, iTab) ) return 2; + if( ALWAYS((combinedFlags & EP_Reduced)==0) ){ + if( pA->iColumn!=pB->iColumn ) return 2; + if( pA->iTable!=pB->iTable + && (pA->iTable!=iTab || NEVER(pB->iTable>=0)) ) return 2; + } + } + return 0; +} + +/* +** Compare two ExprList objects. Return 0 if they are identical and +** non-zero if they differ in any way. +** +** If any subelement of pB has Expr.iTable==(-1) then it is allowed +** to compare equal to an equivalent element in pA with Expr.iTable==iTab. +** +** This routine might return non-zero for equivalent ExprLists. The +** only consequence will be disabled optimizations. But this routine +** must never return 0 if the two ExprList objects are different, or +** a malfunction will result. +** +** Two NULL pointers are considered to be the same. But a NULL pointer +** always differs from a non-NULL pointer. +*/ +SQLITE_PRIVATE int sqlite3ExprListCompare(ExprList *pA, ExprList *pB, int iTab){ + int i; + if( pA==0 && pB==0 ) return 0; + if( pA==0 || pB==0 ) return 1; + if( pA->nExpr!=pB->nExpr ) return 1; + for(i=0; inExpr; i++){ + Expr *pExprA = pA->a[i].pExpr; + Expr *pExprB = pB->a[i].pExpr; + if( pA->a[i].sortOrder!=pB->a[i].sortOrder ) return 1; + if( sqlite3ExprCompare(pExprA, pExprB, iTab) ) return 1; + } + return 0; +} + +/* +** Return true if we can prove the pE2 will always be true if pE1 is +** true. Return false if we cannot complete the proof or if pE2 might +** be false. Examples: +** +** pE1: x==5 pE2: x==5 Result: true +** pE1: x>0 pE2: x==5 Result: false +** pE1: x=21 pE2: x=21 OR y=43 Result: true +** pE1: x!=123 pE2: x IS NOT NULL Result: true +** pE1: x!=?1 pE2: x IS NOT NULL Result: true +** pE1: x IS NULL pE2: x IS NOT NULL Result: false +** pE1: x IS ?2 pE2: x IS NOT NULL Reuslt: false +** +** When comparing TK_COLUMN nodes between pE1 and pE2, if pE2 has +** Expr.iTable<0 then assume a table number given by iTab. +** +** When in doubt, return false. Returning true might give a performance +** improvement. Returning false might cause a performance reduction, but +** it will always give the correct answer and is hence always safe. +*/ +SQLITE_PRIVATE int sqlite3ExprImpliesExpr(Expr *pE1, Expr *pE2, int iTab){ + if( sqlite3ExprCompare(pE1, pE2, iTab)==0 ){ + return 1; + } + if( pE2->op==TK_OR + && (sqlite3ExprImpliesExpr(pE1, pE2->pLeft, iTab) + || sqlite3ExprImpliesExpr(pE1, pE2->pRight, iTab) ) + ){ + return 1; + } + if( pE2->op==TK_NOTNULL + && sqlite3ExprCompare(pE1->pLeft, pE2->pLeft, iTab)==0 + && (pE1->op!=TK_ISNULL && pE1->op!=TK_IS) + ){ + return 1; + } + return 0; +} + +/* +** An instance of the following structure is used by the tree walker +** to count references to table columns in the arguments of an +** aggregate function, in order to implement the +** sqlite3FunctionThisSrc() routine. +*/ +struct SrcCount { + SrcList *pSrc; /* One particular FROM clause in a nested query */ + int nThis; /* Number of references to columns in pSrcList */ + int nOther; /* Number of references to columns in other FROM clauses */ +}; + +/* +** Count the number of references to columns. +*/ +static int exprSrcCount(Walker *pWalker, Expr *pExpr){ + /* The NEVER() on the second term is because sqlite3FunctionUsesThisSrc() + ** is always called before sqlite3ExprAnalyzeAggregates() and so the + ** TK_COLUMNs have not yet been converted into TK_AGG_COLUMN. If + ** sqlite3FunctionUsesThisSrc() is used differently in the future, the + ** NEVER() will need to be removed. */ + if( pExpr->op==TK_COLUMN || NEVER(pExpr->op==TK_AGG_COLUMN) ){ + int i; + struct SrcCount *p = pWalker->u.pSrcCount; + SrcList *pSrc = p->pSrc; + for(i=0; inSrc; i++){ + if( pExpr->iTable==pSrc->a[i].iCursor ) break; + } + if( inSrc ){ + p->nThis++; + }else{ + p->nOther++; + } + } + return WRC_Continue; +} + +/* +** Determine if any of the arguments to the pExpr Function reference +** pSrcList. Return true if they do. Also return true if the function +** has no arguments or has only constant arguments. Return false if pExpr +** references columns but not columns of tables found in pSrcList. +*/ +SQLITE_PRIVATE int sqlite3FunctionUsesThisSrc(Expr *pExpr, SrcList *pSrcList){ + Walker w; + struct SrcCount cnt; + assert( pExpr->op==TK_AGG_FUNCTION ); + memset(&w, 0, sizeof(w)); + w.xExprCallback = exprSrcCount; + w.u.pSrcCount = &cnt; + cnt.pSrc = pSrcList; + cnt.nThis = 0; + cnt.nOther = 0; + sqlite3WalkExprList(&w, pExpr->x.pList); + return cnt.nThis>0 || cnt.nOther==0; +} + +/* +** Add a new element to the pAggInfo->aCol[] array. Return the index of +** the new element. Return a negative number if malloc fails. +*/ +static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){ + int i; + pInfo->aCol = sqlite3ArrayAllocate( + db, + pInfo->aCol, + sizeof(pInfo->aCol[0]), + &pInfo->nColumn, + &i + ); + return i; +} + +/* +** Add a new element to the pAggInfo->aFunc[] array. Return the index of +** the new element. Return a negative number if malloc fails. +*/ +static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){ + int i; + pInfo->aFunc = sqlite3ArrayAllocate( + db, + pInfo->aFunc, + sizeof(pInfo->aFunc[0]), + &pInfo->nFunc, + &i + ); + return i; +} + +/* +** This is the xExprCallback for a tree walker. It is used to +** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates +** for additional information. +*/ +static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ + int i; + NameContext *pNC = pWalker->u.pNC; + Parse *pParse = pNC->pParse; + SrcList *pSrcList = pNC->pSrcList; + AggInfo *pAggInfo = pNC->pAggInfo; + + switch( pExpr->op ){ + case TK_AGG_COLUMN: + case TK_COLUMN: { + testcase( pExpr->op==TK_AGG_COLUMN ); + testcase( pExpr->op==TK_COLUMN ); + /* Check to see if the column is in one of the tables in the FROM + ** clause of the aggregate query */ + if( ALWAYS(pSrcList!=0) ){ + struct SrcList_item *pItem = pSrcList->a; + for(i=0; inSrc; i++, pItem++){ + struct AggInfo_col *pCol; + assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); + if( pExpr->iTable==pItem->iCursor ){ + /* If we reach this point, it means that pExpr refers to a table + ** that is in the FROM clause of the aggregate query. + ** + ** Make an entry for the column in pAggInfo->aCol[] if there + ** is not an entry there already. + */ + int k; + pCol = pAggInfo->aCol; + for(k=0; knColumn; k++, pCol++){ + if( pCol->iTable==pExpr->iTable && + pCol->iColumn==pExpr->iColumn ){ + break; + } + } + if( (k>=pAggInfo->nColumn) + && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0 + ){ + pCol = &pAggInfo->aCol[k]; + pCol->pTab = pExpr->pTab; + pCol->iTable = pExpr->iTable; + pCol->iColumn = pExpr->iColumn; + pCol->iMem = ++pParse->nMem; + pCol->iSorterColumn = -1; + pCol->pExpr = pExpr; + if( pAggInfo->pGroupBy ){ + int j, n; + ExprList *pGB = pAggInfo->pGroupBy; + struct ExprList_item *pTerm = pGB->a; + n = pGB->nExpr; + for(j=0; jpExpr; + if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable && + pE->iColumn==pExpr->iColumn ){ + pCol->iSorterColumn = j; + break; + } + } + } + if( pCol->iSorterColumn<0 ){ + pCol->iSorterColumn = pAggInfo->nSortingColumn++; + } + } + /* There is now an entry for pExpr in pAggInfo->aCol[] (either + ** because it was there before or because we just created it). + ** Convert the pExpr to be a TK_AGG_COLUMN referring to that + ** pAggInfo->aCol[] entry. + */ + ExprSetVVAProperty(pExpr, EP_NoReduce); + pExpr->pAggInfo = pAggInfo; + pExpr->op = TK_AGG_COLUMN; + pExpr->iAgg = (i16)k; + break; + } /* endif pExpr->iTable==pItem->iCursor */ + } /* end loop over pSrcList */ + } + return WRC_Prune; + } + case TK_AGG_FUNCTION: { + if( (pNC->ncFlags & NC_InAggFunc)==0 + && pWalker->walkerDepth==pExpr->op2 + ){ + /* Check to see if pExpr is a duplicate of another aggregate + ** function that is already in the pAggInfo structure + */ + struct AggInfo_func *pItem = pAggInfo->aFunc; + for(i=0; inFunc; i++, pItem++){ + if( sqlite3ExprCompare(pItem->pExpr, pExpr, -1)==0 ){ + break; + } + } + if( i>=pAggInfo->nFunc ){ + /* pExpr is original. Make a new entry in pAggInfo->aFunc[] + */ + u8 enc = ENC(pParse->db); + i = addAggInfoFunc(pParse->db, pAggInfo); + if( i>=0 ){ + assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); + pItem = &pAggInfo->aFunc[i]; + pItem->pExpr = pExpr; + pItem->iMem = ++pParse->nMem; + assert( !ExprHasProperty(pExpr, EP_IntValue) ); + pItem->pFunc = sqlite3FindFunction(pParse->db, + pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken), + pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0); + if( pExpr->flags & EP_Distinct ){ + pItem->iDistinct = pParse->nTab++; + }else{ + pItem->iDistinct = -1; + } + } + } + /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry + */ + assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); + ExprSetVVAProperty(pExpr, EP_NoReduce); + pExpr->iAgg = (i16)i; + pExpr->pAggInfo = pAggInfo; + return WRC_Prune; + }else{ + return WRC_Continue; + } + } + } + return WRC_Continue; +} +static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){ + UNUSED_PARAMETER(pWalker); + UNUSED_PARAMETER(pSelect); + return WRC_Continue; +} + +/* +** Analyze the pExpr expression looking for aggregate functions and +** for variables that need to be added to AggInfo object that pNC->pAggInfo +** points to. Additional entries are made on the AggInfo object as +** necessary. +** +** This routine should only be called after the expression has been +** analyzed by sqlite3ResolveExprNames(). +*/ +SQLITE_PRIVATE void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ + Walker w; + memset(&w, 0, sizeof(w)); + w.xExprCallback = analyzeAggregate; + w.xSelectCallback = analyzeAggregatesInSelect; + w.u.pNC = pNC; + assert( pNC->pSrcList!=0 ); + sqlite3WalkExpr(&w, pExpr); +} + +/* +** Call sqlite3ExprAnalyzeAggregates() for every expression in an +** expression list. Return the number of errors. +** +** If an error is found, the analysis is cut short. +*/ +SQLITE_PRIVATE void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ + struct ExprList_item *pItem; + int i; + if( pList ){ + for(pItem=pList->a, i=0; inExpr; i++, pItem++){ + sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr); + } + } +} + +/* +** Allocate a single new register for use to hold some intermediate result. +*/ +SQLITE_PRIVATE int sqlite3GetTempReg(Parse *pParse){ + if( pParse->nTempReg==0 ){ + return ++pParse->nMem; + } + return pParse->aTempReg[--pParse->nTempReg]; +} + +/* +** Deallocate a register, making available for reuse for some other +** purpose. +** +** If a register is currently being used by the column cache, then +** the dallocation is deferred until the column cache line that uses +** the register becomes stale. +*/ +SQLITE_PRIVATE void sqlite3ReleaseTempReg(Parse *pParse, int iReg){ + if( iReg && pParse->nTempRegaTempReg) ){ + int i; + struct yColCache *p; + for(i=0, p=pParse->aColCache; iiReg==iReg ){ + p->tempReg = 1; + return; + } + } + pParse->aTempReg[pParse->nTempReg++] = iReg; + } +} + +/* +** Allocate or deallocate a block of nReg consecutive registers +*/ +SQLITE_PRIVATE int sqlite3GetTempRange(Parse *pParse, int nReg){ + int i, n; + i = pParse->iRangeReg; + n = pParse->nRangeReg; + if( nReg<=n ){ + assert( !usedAsColumnCache(pParse, i, i+n-1) ); + pParse->iRangeReg += nReg; + pParse->nRangeReg -= nReg; + }else{ + i = pParse->nMem+1; + pParse->nMem += nReg; + } + return i; +} +SQLITE_PRIVATE void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){ + sqlite3ExprCacheRemove(pParse, iReg, nReg); + if( nReg>pParse->nRangeReg ){ + pParse->nRangeReg = nReg; + pParse->iRangeReg = iReg; + } +} + +/* +** Mark all temporary registers as being unavailable for reuse. +*/ +SQLITE_PRIVATE void sqlite3ClearTempRegCache(Parse *pParse){ + pParse->nTempReg = 0; + pParse->nRangeReg = 0; +} + +/************** End of expr.c ************************************************/ +/************** Begin file alter.c *******************************************/ +/* +** 2005 February 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains C code routines that used to generate VDBE code +** that implements the ALTER TABLE command. +*/ + +/* +** The code in this file only exists if we are not omitting the +** ALTER TABLE logic from the build. +*/ +#ifndef SQLITE_OMIT_ALTERTABLE + + +/* +** This function is used by SQL generated to implement the +** ALTER TABLE command. The first argument is the text of a CREATE TABLE or +** CREATE INDEX command. The second is a table name. The table name in +** the CREATE TABLE or CREATE INDEX statement is replaced with the third +** argument and the result returned. Examples: +** +** sqlite_rename_table('CREATE TABLE abc(a, b, c)', 'def') +** -> 'CREATE TABLE def(a, b, c)' +** +** sqlite_rename_table('CREATE INDEX i ON abc(a)', 'def') +** -> 'CREATE INDEX i ON def(a, b, c)' +*/ +static void renameTableFunc( + sqlite3_context *context, + int NotUsed, + sqlite3_value **argv +){ + unsigned char const *zSql = sqlite3_value_text(argv[0]); + unsigned char const *zTableName = sqlite3_value_text(argv[1]); + + int token; + Token tname; + unsigned char const *zCsr = zSql; + int len = 0; + char *zRet; + + sqlite3 *db = sqlite3_context_db_handle(context); + + UNUSED_PARAMETER(NotUsed); + + /* The principle used to locate the table name in the CREATE TABLE + ** statement is that the table name is the first non-space token that + ** is immediately followed by a TK_LP or TK_USING token. + */ + if( zSql ){ + do { + if( !*zCsr ){ + /* Ran out of input before finding an opening bracket. Return NULL. */ + return; + } + + /* Store the token that zCsr points to in tname. */ + tname.z = (char*)zCsr; + tname.n = len; + + /* Advance zCsr to the next token. Store that token type in 'token', + ** and its length in 'len' (to be used next iteration of this loop). + */ + do { + zCsr += len; + len = sqlite3GetToken(zCsr, &token); + } while( token==TK_SPACE ); + assert( len>0 ); + } while( token!=TK_LP && token!=TK_USING ); + + zRet = sqlite3MPrintf(db, "%.*s\"%w\"%s", (int)(((u8*)tname.z) - zSql), + zSql, zTableName, tname.z+tname.n); + sqlite3_result_text(context, zRet, -1, SQLITE_DYNAMIC); + } +} + +/* +** This C function implements an SQL user function that is used by SQL code +** generated by the ALTER TABLE ... RENAME command to modify the definition +** of any foreign key constraints that use the table being renamed as the +** parent table. It is passed three arguments: +** +** 1) The complete text of the CREATE TABLE statement being modified, +** 2) The old name of the table being renamed, and +** 3) The new name of the table being renamed. +** +** It returns the new CREATE TABLE statement. For example: +** +** sqlite_rename_parent('CREATE TABLE t1(a REFERENCES t2)', 't2', 't3') +** -> 'CREATE TABLE t1(a REFERENCES t3)' +*/ +#ifndef SQLITE_OMIT_FOREIGN_KEY +static void renameParentFunc( + sqlite3_context *context, + int NotUsed, + sqlite3_value **argv +){ + sqlite3 *db = sqlite3_context_db_handle(context); + char *zOutput = 0; + char *zResult; + unsigned char const *zInput = sqlite3_value_text(argv[0]); + unsigned char const *zOld = sqlite3_value_text(argv[1]); + unsigned char const *zNew = sqlite3_value_text(argv[2]); + + unsigned const char *z; /* Pointer to token */ + int n; /* Length of token z */ + int token; /* Type of token */ + + UNUSED_PARAMETER(NotUsed); + if( zInput==0 || zOld==0 ) return; + for(z=zInput; *z; z=z+n){ + n = sqlite3GetToken(z, &token); + if( token==TK_REFERENCES ){ + char *zParent; + do { + z += n; + n = sqlite3GetToken(z, &token); + }while( token==TK_SPACE ); + + zParent = sqlite3DbStrNDup(db, (const char *)z, n); + if( zParent==0 ) break; + sqlite3Dequote(zParent); + if( 0==sqlite3StrICmp((const char *)zOld, zParent) ){ + char *zOut = sqlite3MPrintf(db, "%s%.*s\"%w\"", + (zOutput?zOutput:""), (int)(z-zInput), zInput, (const char *)zNew + ); + sqlite3DbFree(db, zOutput); + zOutput = zOut; + zInput = &z[n]; + } + sqlite3DbFree(db, zParent); + } + } + + zResult = sqlite3MPrintf(db, "%s%s", (zOutput?zOutput:""), zInput), + sqlite3_result_text(context, zResult, -1, SQLITE_DYNAMIC); + sqlite3DbFree(db, zOutput); +} +#endif + +#ifndef SQLITE_OMIT_TRIGGER +/* This function is used by SQL generated to implement the +** ALTER TABLE command. The first argument is the text of a CREATE TRIGGER +** statement. The second is a table name. The table name in the CREATE +** TRIGGER statement is replaced with the third argument and the result +** returned. This is analagous to renameTableFunc() above, except for CREATE +** TRIGGER, not CREATE INDEX and CREATE TABLE. +*/ +static void renameTriggerFunc( + sqlite3_context *context, + int NotUsed, + sqlite3_value **argv +){ + unsigned char const *zSql = sqlite3_value_text(argv[0]); + unsigned char const *zTableName = sqlite3_value_text(argv[1]); + + int token; + Token tname; + int dist = 3; + unsigned char const *zCsr = zSql; + int len = 0; + char *zRet; + sqlite3 *db = sqlite3_context_db_handle(context); + + UNUSED_PARAMETER(NotUsed); + + /* The principle used to locate the table name in the CREATE TRIGGER + ** statement is that the table name is the first token that is immediatedly + ** preceded by either TK_ON or TK_DOT and immediatedly followed by one + ** of TK_WHEN, TK_BEGIN or TK_FOR. + */ + if( zSql ){ + do { + + if( !*zCsr ){ + /* Ran out of input before finding the table name. Return NULL. */ + return; + } + + /* Store the token that zCsr points to in tname. */ + tname.z = (char*)zCsr; + tname.n = len; + + /* Advance zCsr to the next token. Store that token type in 'token', + ** and its length in 'len' (to be used next iteration of this loop). + */ + do { + zCsr += len; + len = sqlite3GetToken(zCsr, &token); + }while( token==TK_SPACE ); + assert( len>0 ); + + /* Variable 'dist' stores the number of tokens read since the most + ** recent TK_DOT or TK_ON. This means that when a WHEN, FOR or BEGIN + ** token is read and 'dist' equals 2, the condition stated above + ** to be met. + ** + ** Note that ON cannot be a database, table or column name, so + ** there is no need to worry about syntax like + ** "CREATE TRIGGER ... ON ON.ON BEGIN ..." etc. + */ + dist++; + if( token==TK_DOT || token==TK_ON ){ + dist = 0; + } + } while( dist!=2 || (token!=TK_WHEN && token!=TK_FOR && token!=TK_BEGIN) ); + + /* Variable tname now contains the token that is the old table-name + ** in the CREATE TRIGGER statement. + */ + zRet = sqlite3MPrintf(db, "%.*s\"%w\"%s", (int)(((u8*)tname.z) - zSql), + zSql, zTableName, tname.z+tname.n); + sqlite3_result_text(context, zRet, -1, SQLITE_DYNAMIC); + } +} +#endif /* !SQLITE_OMIT_TRIGGER */ + +/* +** Register built-in functions used to help implement ALTER TABLE +*/ +SQLITE_PRIVATE void sqlite3AlterFunctions(void){ + static SQLITE_WSD FuncDef aAlterTableFuncs[] = { + FUNCTION(sqlite_rename_table, 2, 0, 0, renameTableFunc), +#ifndef SQLITE_OMIT_TRIGGER + FUNCTION(sqlite_rename_trigger, 2, 0, 0, renameTriggerFunc), +#endif +#ifndef SQLITE_OMIT_FOREIGN_KEY + FUNCTION(sqlite_rename_parent, 3, 0, 0, renameParentFunc), +#endif + }; + int i; + FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions); + FuncDef *aFunc = (FuncDef*)&GLOBAL(FuncDef, aAlterTableFuncs); + + for(i=0; i OR name= OR ... +** +** If argument zWhere is NULL, then a pointer string containing the text +** "name=" is returned, where is the quoted version +** of the string passed as argument zConstant. The returned buffer is +** allocated using sqlite3DbMalloc(). It is the responsibility of the +** caller to ensure that it is eventually freed. +** +** If argument zWhere is not NULL, then the string returned is +** " OR name=", where is the contents of zWhere. +** In this case zWhere is passed to sqlite3DbFree() before returning. +** +*/ +static char *whereOrName(sqlite3 *db, char *zWhere, char *zConstant){ + char *zNew; + if( !zWhere ){ + zNew = sqlite3MPrintf(db, "name=%Q", zConstant); + }else{ + zNew = sqlite3MPrintf(db, "%s OR name=%Q", zWhere, zConstant); + sqlite3DbFree(db, zWhere); + } + return zNew; +} + +#if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) +/* +** Generate the text of a WHERE expression which can be used to select all +** tables that have foreign key constraints that refer to table pTab (i.e. +** constraints for which pTab is the parent table) from the sqlite_master +** table. +*/ +static char *whereForeignKeys(Parse *pParse, Table *pTab){ + FKey *p; + char *zWhere = 0; + for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){ + zWhere = whereOrName(pParse->db, zWhere, p->pFrom->zName); + } + return zWhere; +} +#endif + +/* +** Generate the text of a WHERE expression which can be used to select all +** temporary triggers on table pTab from the sqlite_temp_master table. If +** table pTab has no temporary triggers, or is itself stored in the +** temporary database, NULL is returned. +*/ +static char *whereTempTriggers(Parse *pParse, Table *pTab){ + Trigger *pTrig; + char *zWhere = 0; + const Schema *pTempSchema = pParse->db->aDb[1].pSchema; /* Temp db schema */ + + /* If the table is not located in the temp-db (in which case NULL is + ** returned, loop through the tables list of triggers. For each trigger + ** that is not part of the temp-db schema, add a clause to the WHERE + ** expression being built up in zWhere. + */ + if( pTab->pSchema!=pTempSchema ){ + sqlite3 *db = pParse->db; + for(pTrig=sqlite3TriggerList(pParse, pTab); pTrig; pTrig=pTrig->pNext){ + if( pTrig->pSchema==pTempSchema ){ + zWhere = whereOrName(db, zWhere, pTrig->zName); + } + } + } + if( zWhere ){ + char *zNew = sqlite3MPrintf(pParse->db, "type='trigger' AND (%s)", zWhere); + sqlite3DbFree(pParse->db, zWhere); + zWhere = zNew; + } + return zWhere; +} + +/* +** Generate code to drop and reload the internal representation of table +** pTab from the database, including triggers and temporary triggers. +** Argument zName is the name of the table in the database schema at +** the time the generated code is executed. This can be different from +** pTab->zName if this function is being called to code part of an +** "ALTER TABLE RENAME TO" statement. +*/ +static void reloadTableSchema(Parse *pParse, Table *pTab, const char *zName){ + Vdbe *v; + char *zWhere; + int iDb; /* Index of database containing pTab */ +#ifndef SQLITE_OMIT_TRIGGER + Trigger *pTrig; +#endif + + v = sqlite3GetVdbe(pParse); + if( NEVER(v==0) ) return; + assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); + iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); + assert( iDb>=0 ); + +#ifndef SQLITE_OMIT_TRIGGER + /* Drop any table triggers from the internal schema. */ + for(pTrig=sqlite3TriggerList(pParse, pTab); pTrig; pTrig=pTrig->pNext){ + int iTrigDb = sqlite3SchemaToIndex(pParse->db, pTrig->pSchema); + assert( iTrigDb==iDb || iTrigDb==1 ); + sqlite3VdbeAddOp4(v, OP_DropTrigger, iTrigDb, 0, 0, pTrig->zName, 0); + } +#endif + + /* Drop the table and index from the internal schema. */ + sqlite3VdbeAddOp4(v, OP_DropTable, iDb, 0, 0, pTab->zName, 0); + + /* Reload the table, index and permanent trigger schemas. */ + zWhere = sqlite3MPrintf(pParse->db, "tbl_name=%Q", zName); + if( !zWhere ) return; + sqlite3VdbeAddParseSchemaOp(v, iDb, zWhere); + +#ifndef SQLITE_OMIT_TRIGGER + /* Now, if the table is not stored in the temp database, reload any temp + ** triggers. Don't use IN(...) in case SQLITE_OMIT_SUBQUERY is defined. + */ + if( (zWhere=whereTempTriggers(pParse, pTab))!=0 ){ + sqlite3VdbeAddParseSchemaOp(v, 1, zWhere); + } +#endif +} + +/* +** Parameter zName is the name of a table that is about to be altered +** (either with ALTER TABLE ... RENAME TO or ALTER TABLE ... ADD COLUMN). +** If the table is a system table, this function leaves an error message +** in pParse->zErr (system tables may not be altered) and returns non-zero. +** +** Or, if zName is not a system table, zero is returned. +*/ +static int isSystemTable(Parse *pParse, const char *zName){ + if( sqlite3Strlen30(zName)>6 && 0==sqlite3StrNICmp(zName, "sqlite_", 7) ){ + sqlite3ErrorMsg(pParse, "table %s may not be altered", zName); + return 1; + } + return 0; +} + +/* +** Generate code to implement the "ALTER TABLE xxx RENAME TO yyy" +** command. +*/ +SQLITE_PRIVATE void sqlite3AlterRenameTable( + Parse *pParse, /* Parser context. */ + SrcList *pSrc, /* The table to rename. */ + Token *pName /* The new table name. */ +){ + int iDb; /* Database that contains the table */ + char *zDb; /* Name of database iDb */ + Table *pTab; /* Table being renamed */ + char *zName = 0; /* NULL-terminated version of pName */ + sqlite3 *db = pParse->db; /* Database connection */ + int nTabName; /* Number of UTF-8 characters in zTabName */ + const char *zTabName; /* Original name of the table */ + Vdbe *v; +#ifndef SQLITE_OMIT_TRIGGER + char *zWhere = 0; /* Where clause to locate temp triggers */ +#endif + VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */ + int savedDbFlags; /* Saved value of db->flags */ + + savedDbFlags = db->flags; + if( NEVER(db->mallocFailed) ) goto exit_rename_table; + assert( pSrc->nSrc==1 ); + assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); + + pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]); + if( !pTab ) goto exit_rename_table; + iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); + zDb = db->aDb[iDb].zName; + db->flags |= SQLITE_PreferBuiltin; + + /* Get a NULL terminated version of the new table name. */ + zName = sqlite3NameFromToken(db, pName); + if( !zName ) goto exit_rename_table; + + /* Check that a table or index named 'zName' does not already exist + ** in database iDb. If so, this is an error. + */ + if( sqlite3FindTable(db, zName, zDb) || sqlite3FindIndex(db, zName, zDb) ){ + sqlite3ErrorMsg(pParse, + "there is already another table or index with this name: %s", zName); + goto exit_rename_table; + } + + /* Make sure it is not a system table being altered, or a reserved name + ** that the table is being renamed to. + */ + if( SQLITE_OK!=isSystemTable(pParse, pTab->zName) ){ + goto exit_rename_table; + } + if( SQLITE_OK!=sqlite3CheckObjectName(pParse, zName) ){ goto + exit_rename_table; + } + +#ifndef SQLITE_OMIT_VIEW + if( pTab->pSelect ){ + sqlite3ErrorMsg(pParse, "view %s may not be altered", pTab->zName); + goto exit_rename_table; + } +#endif + +#ifndef SQLITE_OMIT_AUTHORIZATION + /* Invoke the authorization callback. */ + if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, 0) ){ + goto exit_rename_table; + } +#endif + +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( sqlite3ViewGetColumnNames(pParse, pTab) ){ + goto exit_rename_table; + } + if( IsVirtual(pTab) ){ + pVTab = sqlite3GetVTable(db, pTab); + if( pVTab->pVtab->pModule->xRename==0 ){ + pVTab = 0; + } + } +#endif + + /* Begin a transaction for database iDb. + ** Then modify the schema cookie (since the ALTER TABLE modifies the + ** schema). Open a statement transaction if the table is a virtual + ** table. + */ + v = sqlite3GetVdbe(pParse); + if( v==0 ){ + goto exit_rename_table; + } + sqlite3BeginWriteOperation(pParse, pVTab!=0, iDb); + sqlite3ChangeCookie(pParse, iDb); + + /* If this is a virtual table, invoke the xRename() function if + ** one is defined. The xRename() callback will modify the names + ** of any resources used by the v-table implementation (including other + ** SQLite tables) that are identified by the name of the virtual table. + */ +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( pVTab ){ + int i = ++pParse->nMem; + sqlite3VdbeAddOp4(v, OP_String8, 0, i, 0, zName, 0); + sqlite3VdbeAddOp4(v, OP_VRename, i, 0, 0,(const char*)pVTab, P4_VTAB); + sqlite3MayAbort(pParse); + } +#endif + + /* figure out how many UTF-8 characters are in zName */ + zTabName = pTab->zName; + nTabName = sqlite3Utf8CharLen(zTabName, -1); + +#if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) + if( db->flags&SQLITE_ForeignKeys ){ + /* If foreign-key support is enabled, rewrite the CREATE TABLE + ** statements corresponding to all child tables of foreign key constraints + ** for which the renamed table is the parent table. */ + if( (zWhere=whereForeignKeys(pParse, pTab))!=0 ){ + sqlite3NestedParse(pParse, + "UPDATE \"%w\".%s SET " + "sql = sqlite_rename_parent(sql, %Q, %Q) " + "WHERE %s;", zDb, SCHEMA_TABLE(iDb), zTabName, zName, zWhere); + sqlite3DbFree(db, zWhere); + } + } +#endif + + /* Modify the sqlite_master table to use the new table name. */ + sqlite3NestedParse(pParse, + "UPDATE %Q.%s SET " +#ifdef SQLITE_OMIT_TRIGGER + "sql = sqlite_rename_table(sql, %Q), " +#else + "sql = CASE " + "WHEN type = 'trigger' THEN sqlite_rename_trigger(sql, %Q)" + "ELSE sqlite_rename_table(sql, %Q) END, " +#endif + "tbl_name = %Q, " + "name = CASE " + "WHEN type='table' THEN %Q " + "WHEN name LIKE 'sqlite_autoindex%%' AND type='index' THEN " + "'sqlite_autoindex_' || %Q || substr(name,%d+18) " + "ELSE name END " + "WHERE tbl_name=%Q COLLATE nocase AND " + "(type='table' OR type='index' OR type='trigger');", + zDb, SCHEMA_TABLE(iDb), zName, zName, zName, +#ifndef SQLITE_OMIT_TRIGGER + zName, +#endif + zName, nTabName, zTabName + ); + +#ifndef SQLITE_OMIT_AUTOINCREMENT + /* If the sqlite_sequence table exists in this database, then update + ** it with the new table name. + */ + if( sqlite3FindTable(db, "sqlite_sequence", zDb) ){ + sqlite3NestedParse(pParse, + "UPDATE \"%w\".sqlite_sequence set name = %Q WHERE name = %Q", + zDb, zName, pTab->zName); + } +#endif + +#ifndef SQLITE_OMIT_TRIGGER + /* If there are TEMP triggers on this table, modify the sqlite_temp_master + ** table. Don't do this if the table being ALTERed is itself located in + ** the temp database. + */ + if( (zWhere=whereTempTriggers(pParse, pTab))!=0 ){ + sqlite3NestedParse(pParse, + "UPDATE sqlite_temp_master SET " + "sql = sqlite_rename_trigger(sql, %Q), " + "tbl_name = %Q " + "WHERE %s;", zName, zName, zWhere); + sqlite3DbFree(db, zWhere); + } +#endif + +#if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) + if( db->flags&SQLITE_ForeignKeys ){ + FKey *p; + for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){ + Table *pFrom = p->pFrom; + if( pFrom!=pTab ){ + reloadTableSchema(pParse, p->pFrom, pFrom->zName); + } + } + } +#endif + + /* Drop and reload the internal table schema. */ + reloadTableSchema(pParse, pTab, zName); + +exit_rename_table: + sqlite3SrcListDelete(db, pSrc); + sqlite3DbFree(db, zName); + db->flags = savedDbFlags; +} + + +/* +** Generate code to make sure the file format number is at least minFormat. +** The generated code will increase the file format number if necessary. +*/ +SQLITE_PRIVATE void sqlite3MinimumFileFormat(Parse *pParse, int iDb, int minFormat){ + Vdbe *v; + v = sqlite3GetVdbe(pParse); + /* The VDBE should have been allocated before this routine is called. + ** If that allocation failed, we would have quit before reaching this + ** point */ + if( ALWAYS(v) ){ + int r1 = sqlite3GetTempReg(pParse); + int r2 = sqlite3GetTempReg(pParse); + int j1; + sqlite3VdbeAddOp3(v, OP_ReadCookie, iDb, r1, BTREE_FILE_FORMAT); + sqlite3VdbeUsesBtree(v, iDb); + sqlite3VdbeAddOp2(v, OP_Integer, minFormat, r2); + j1 = sqlite3VdbeAddOp3(v, OP_Ge, r2, 0, r1); + sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_FILE_FORMAT, r2); + sqlite3VdbeJumpHere(v, j1); + sqlite3ReleaseTempReg(pParse, r1); + sqlite3ReleaseTempReg(pParse, r2); + } +} + +/* +** This function is called after an "ALTER TABLE ... ADD" statement +** has been parsed. Argument pColDef contains the text of the new +** column definition. +** +** The Table structure pParse->pNewTable was extended to include +** the new column during parsing. +*/ +SQLITE_PRIVATE void sqlite3AlterFinishAddColumn(Parse *pParse, Token *pColDef){ + Table *pNew; /* Copy of pParse->pNewTable */ + Table *pTab; /* Table being altered */ + int iDb; /* Database number */ + const char *zDb; /* Database name */ + const char *zTab; /* Table name */ + char *zCol; /* Null-terminated column definition */ + Column *pCol; /* The new column */ + Expr *pDflt; /* Default value for the new column */ + sqlite3 *db; /* The database connection; */ + + db = pParse->db; + if( pParse->nErr || db->mallocFailed ) return; + pNew = pParse->pNewTable; + assert( pNew ); + + assert( sqlite3BtreeHoldsAllMutexes(db) ); + iDb = sqlite3SchemaToIndex(db, pNew->pSchema); + zDb = db->aDb[iDb].zName; + zTab = &pNew->zName[16]; /* Skip the "sqlite_altertab_" prefix on the name */ + pCol = &pNew->aCol[pNew->nCol-1]; + pDflt = pCol->pDflt; + pTab = sqlite3FindTable(db, zTab, zDb); + assert( pTab ); + +#ifndef SQLITE_OMIT_AUTHORIZATION + /* Invoke the authorization callback. */ + if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, 0) ){ + return; + } +#endif + + /* If the default value for the new column was specified with a + ** literal NULL, then set pDflt to 0. This simplifies checking + ** for an SQL NULL default below. + */ + if( pDflt && pDflt->op==TK_NULL ){ + pDflt = 0; + } + + /* Check that the new column is not specified as PRIMARY KEY or UNIQUE. + ** If there is a NOT NULL constraint, then the default value for the + ** column must not be NULL. + */ + if( pCol->colFlags & COLFLAG_PRIMKEY ){ + sqlite3ErrorMsg(pParse, "Cannot add a PRIMARY KEY column"); + return; + } + if( pNew->pIndex ){ + sqlite3ErrorMsg(pParse, "Cannot add a UNIQUE column"); + return; + } + if( (db->flags&SQLITE_ForeignKeys) && pNew->pFKey && pDflt ){ + sqlite3ErrorMsg(pParse, + "Cannot add a REFERENCES column with non-NULL default value"); + return; + } + if( pCol->notNull && !pDflt ){ + sqlite3ErrorMsg(pParse, + "Cannot add a NOT NULL column with default value NULL"); + return; + } + + /* Ensure the default expression is something that sqlite3ValueFromExpr() + ** can handle (i.e. not CURRENT_TIME etc.) + */ + if( pDflt ){ + sqlite3_value *pVal = 0; + if( sqlite3ValueFromExpr(db, pDflt, SQLITE_UTF8, SQLITE_AFF_NONE, &pVal) ){ + db->mallocFailed = 1; + return; + } + if( !pVal ){ + sqlite3ErrorMsg(pParse, "Cannot add a column with non-constant default"); + return; + } + sqlite3ValueFree(pVal); + } + + /* Modify the CREATE TABLE statement. */ + zCol = sqlite3DbStrNDup(db, (char*)pColDef->z, pColDef->n); + if( zCol ){ + char *zEnd = &zCol[pColDef->n-1]; + int savedDbFlags = db->flags; + while( zEnd>zCol && (*zEnd==';' || sqlite3Isspace(*zEnd)) ){ + *zEnd-- = '\0'; + } + db->flags |= SQLITE_PreferBuiltin; + sqlite3NestedParse(pParse, + "UPDATE \"%w\".%s SET " + "sql = substr(sql,1,%d) || ', ' || %Q || substr(sql,%d) " + "WHERE type = 'table' AND name = %Q", + zDb, SCHEMA_TABLE(iDb), pNew->addColOffset, zCol, pNew->addColOffset+1, + zTab + ); + sqlite3DbFree(db, zCol); + db->flags = savedDbFlags; + } + + /* If the default value of the new column is NULL, then set the file + ** format to 2. If the default value of the new column is not NULL, + ** the file format becomes 3. + */ + sqlite3MinimumFileFormat(pParse, iDb, pDflt ? 3 : 2); + + /* Reload the schema of the modified table. */ + reloadTableSchema(pParse, pTab, pTab->zName); +} + +/* +** This function is called by the parser after the table-name in +** an "ALTER TABLE ADD" statement is parsed. Argument +** pSrc is the full-name of the table being altered. +** +** This routine makes a (partial) copy of the Table structure +** for the table being altered and sets Parse.pNewTable to point +** to it. Routines called by the parser as the column definition +** is parsed (i.e. sqlite3AddColumn()) add the new Column data to +** the copy. The copy of the Table structure is deleted by tokenize.c +** after parsing is finished. +** +** Routine sqlite3AlterFinishAddColumn() will be called to complete +** coding the "ALTER TABLE ... ADD" statement. +*/ +SQLITE_PRIVATE void sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc){ + Table *pNew; + Table *pTab; + Vdbe *v; + int iDb; + int i; + int nAlloc; + sqlite3 *db = pParse->db; + + /* Look up the table being altered. */ + assert( pParse->pNewTable==0 ); + assert( sqlite3BtreeHoldsAllMutexes(db) ); + if( db->mallocFailed ) goto exit_begin_add_column; + pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]); + if( !pTab ) goto exit_begin_add_column; + +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( IsVirtual(pTab) ){ + sqlite3ErrorMsg(pParse, "virtual tables may not be altered"); + goto exit_begin_add_column; + } +#endif + + /* Make sure this is not an attempt to ALTER a view. */ + if( pTab->pSelect ){ + sqlite3ErrorMsg(pParse, "Cannot add a column to a view"); + goto exit_begin_add_column; + } + if( SQLITE_OK!=isSystemTable(pParse, pTab->zName) ){ + goto exit_begin_add_column; + } + + assert( pTab->addColOffset>0 ); + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + + /* Put a copy of the Table struct in Parse.pNewTable for the + ** sqlite3AddColumn() function and friends to modify. But modify + ** the name by adding an "sqlite_altertab_" prefix. By adding this + ** prefix, we insure that the name will not collide with an existing + ** table because user table are not allowed to have the "sqlite_" + ** prefix on their name. + */ + pNew = (Table*)sqlite3DbMallocZero(db, sizeof(Table)); + if( !pNew ) goto exit_begin_add_column; + pParse->pNewTable = pNew; + pNew->nRef = 1; + pNew->nCol = pTab->nCol; + assert( pNew->nCol>0 ); + nAlloc = (((pNew->nCol-1)/8)*8)+8; + assert( nAlloc>=pNew->nCol && nAlloc%8==0 && nAlloc-pNew->nCol<8 ); + pNew->aCol = (Column*)sqlite3DbMallocZero(db, sizeof(Column)*nAlloc); + pNew->zName = sqlite3MPrintf(db, "sqlite_altertab_%s", pTab->zName); + if( !pNew->aCol || !pNew->zName ){ + db->mallocFailed = 1; + goto exit_begin_add_column; + } + memcpy(pNew->aCol, pTab->aCol, sizeof(Column)*pNew->nCol); + for(i=0; inCol; i++){ + Column *pCol = &pNew->aCol[i]; + pCol->zName = sqlite3DbStrDup(db, pCol->zName); + pCol->zColl = 0; + pCol->zType = 0; + pCol->pDflt = 0; + pCol->zDflt = 0; + } + pNew->pSchema = db->aDb[iDb].pSchema; + pNew->addColOffset = pTab->addColOffset; + pNew->nRef = 1; + + /* Begin a transaction and increment the schema cookie. */ + sqlite3BeginWriteOperation(pParse, 0, iDb); + v = sqlite3GetVdbe(pParse); + if( !v ) goto exit_begin_add_column; + sqlite3ChangeCookie(pParse, iDb); + +exit_begin_add_column: + sqlite3SrcListDelete(db, pSrc); + return; +} +#endif /* SQLITE_ALTER_TABLE */ + +/************** End of alter.c ***********************************************/ +/************** Begin file analyze.c *****************************************/ +/* +** 2005-07-08 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code associated with the ANALYZE command. +** +** The ANALYZE command gather statistics about the content of tables +** and indices. These statistics are made available to the query planner +** to help it make better decisions about how to perform queries. +** +** The following system tables are or have been supported: +** +** CREATE TABLE sqlite_stat1(tbl, idx, stat); +** CREATE TABLE sqlite_stat2(tbl, idx, sampleno, sample); +** CREATE TABLE sqlite_stat3(tbl, idx, nEq, nLt, nDLt, sample); +** CREATE TABLE sqlite_stat4(tbl, idx, nEq, nLt, nDLt, sample); +** +** Additional tables might be added in future releases of SQLite. +** The sqlite_stat2 table is not created or used unless the SQLite version +** is between 3.6.18 and 3.7.8, inclusive, and unless SQLite is compiled +** with SQLITE_ENABLE_STAT2. The sqlite_stat2 table is deprecated. +** The sqlite_stat2 table is superseded by sqlite_stat3, which is only +** created and used by SQLite versions 3.7.9 and later and with +** SQLITE_ENABLE_STAT3 defined. The functionality of sqlite_stat3 +** is a superset of sqlite_stat2. The sqlite_stat4 is an enhanced +** version of sqlite_stat3 and is only available when compiled with +** SQLITE_ENABLE_STAT4 and in SQLite versions 3.8.1 and later. It is +** not possible to enable both STAT3 and STAT4 at the same time. If they +** are both enabled, then STAT4 takes precedence. +** +** For most applications, sqlite_stat1 provides all the statisics required +** for the query planner to make good choices. +** +** Format of sqlite_stat1: +** +** There is normally one row per index, with the index identified by the +** name in the idx column. The tbl column is the name of the table to +** which the index belongs. In each such row, the stat column will be +** a string consisting of a list of integers. The first integer in this +** list is the number of rows in the index. (This is the same as the +** number of rows in the table, except for partial indices.) The second +** integer is the average number of rows in the index that have the same +** value in the first column of the index. The third integer is the average +** number of rows in the index that have the same value for the first two +** columns. The N-th integer (for N>1) is the average number of rows in +** the index which have the same value for the first N-1 columns. For +** a K-column index, there will be K+1 integers in the stat column. If +** the index is unique, then the last integer will be 1. +** +** The list of integers in the stat column can optionally be followed +** by the keyword "unordered". The "unordered" keyword, if it is present, +** must be separated from the last integer by a single space. If the +** "unordered" keyword is present, then the query planner assumes that +** the index is unordered and will not use the index for a range query. +** +** If the sqlite_stat1.idx column is NULL, then the sqlite_stat1.stat +** column contains a single integer which is the (estimated) number of +** rows in the table identified by sqlite_stat1.tbl. +** +** Format of sqlite_stat2: +** +** The sqlite_stat2 is only created and is only used if SQLite is compiled +** with SQLITE_ENABLE_STAT2 and if the SQLite version number is between +** 3.6.18 and 3.7.8. The "stat2" table contains additional information +** about the distribution of keys within an index. The index is identified by +** the "idx" column and the "tbl" column is the name of the table to which +** the index belongs. There are usually 10 rows in the sqlite_stat2 +** table for each index. +** +** The sqlite_stat2 entries for an index that have sampleno between 0 and 9 +** inclusive are samples of the left-most key value in the index taken at +** evenly spaced points along the index. Let the number of samples be S +** (10 in the standard build) and let C be the number of rows in the index. +** Then the sampled rows are given by: +** +** rownumber = (i*C*2 + C)/(S*2) +** +** For i between 0 and S-1. Conceptually, the index space is divided into +** S uniform buckets and the samples are the middle row from each bucket. +** +** The format for sqlite_stat2 is recorded here for legacy reference. This +** version of SQLite does not support sqlite_stat2. It neither reads nor +** writes the sqlite_stat2 table. This version of SQLite only supports +** sqlite_stat3. +** +** Format for sqlite_stat3: +** +** The sqlite_stat3 format is a subset of sqlite_stat4. Hence, the +** sqlite_stat4 format will be described first. Further information +** about sqlite_stat3 follows the sqlite_stat4 description. +** +** Format for sqlite_stat4: +** +** As with sqlite_stat2, the sqlite_stat4 table contains histogram data +** to aid the query planner in choosing good indices based on the values +** that indexed columns are compared against in the WHERE clauses of +** queries. +** +** The sqlite_stat4 table contains multiple entries for each index. +** The idx column names the index and the tbl column is the table of the +** index. If the idx and tbl columns are the same, then the sample is +** of the INTEGER PRIMARY KEY. The sample column is a blob which is the +** binary encoding of a key from the index. The nEq column is a +** list of integers. The first integer is the approximate number +** of entries in the index whose left-most column exactly matches +** the left-most column of the sample. The second integer in nEq +** is the approximate number of entries in the index where the +** first two columns match the first two columns of the sample. +** And so forth. nLt is another list of integers that show the approximate +** number of entries that are strictly less than the sample. The first +** integer in nLt contains the number of entries in the index where the +** left-most column is less than the left-most column of the sample. +** The K-th integer in the nLt entry is the number of index entries +** where the first K columns are less than the first K columns of the +** sample. The nDLt column is like nLt except that it contains the +** number of distinct entries in the index that are less than the +** sample. +** +** There can be an arbitrary number of sqlite_stat4 entries per index. +** The ANALYZE command will typically generate sqlite_stat4 tables +** that contain between 10 and 40 samples which are distributed across +** the key space, though not uniformly, and which include samples with +** large nEq values. +** +** Format for sqlite_stat3 redux: +** +** The sqlite_stat3 table is like sqlite_stat4 except that it only +** looks at the left-most column of the index. The sqlite_stat3.sample +** column contains the actual value of the left-most column instead +** of a blob encoding of the complete index key as is found in +** sqlite_stat4.sample. The nEq, nLt, and nDLt entries of sqlite_stat3 +** all contain just a single integer which is the same as the first +** integer in the equivalent columns in sqlite_stat4. +*/ +#ifndef SQLITE_OMIT_ANALYZE + +#if defined(SQLITE_ENABLE_STAT4) +# define IsStat4 1 +# define IsStat3 0 +#elif defined(SQLITE_ENABLE_STAT3) +# define IsStat4 0 +# define IsStat3 1 +#else +# define IsStat4 0 +# define IsStat3 0 +# undef SQLITE_STAT4_SAMPLES +# define SQLITE_STAT4_SAMPLES 1 +#endif +#define IsStat34 (IsStat3+IsStat4) /* 1 for STAT3 or STAT4. 0 otherwise */ + +/* +** This routine generates code that opens the sqlite_statN tables. +** The sqlite_stat1 table is always relevant. sqlite_stat2 is now +** obsolete. sqlite_stat3 and sqlite_stat4 are only opened when +** appropriate compile-time options are provided. +** +** If the sqlite_statN tables do not previously exist, it is created. +** +** Argument zWhere may be a pointer to a buffer containing a table name, +** or it may be a NULL pointer. If it is not NULL, then all entries in +** the sqlite_statN tables associated with the named table are deleted. +** If zWhere==0, then code is generated to delete all stat table entries. +*/ +static void openStatTable( + Parse *pParse, /* Parsing context */ + int iDb, /* The database we are looking in */ + int iStatCur, /* Open the sqlite_stat1 table on this cursor */ + const char *zWhere, /* Delete entries for this table or index */ + const char *zWhereType /* Either "tbl" or "idx" */ +){ + static const struct { + const char *zName; + const char *zCols; + } aTable[] = { + { "sqlite_stat1", "tbl,idx,stat" }, +#if defined(SQLITE_ENABLE_STAT4) + { "sqlite_stat4", "tbl,idx,neq,nlt,ndlt,sample" }, + { "sqlite_stat3", 0 }, +#elif defined(SQLITE_ENABLE_STAT3) + { "sqlite_stat3", "tbl,idx,neq,nlt,ndlt,sample" }, + { "sqlite_stat4", 0 }, +#else + { "sqlite_stat3", 0 }, + { "sqlite_stat4", 0 }, +#endif + }; + int i; + sqlite3 *db = pParse->db; + Db *pDb; + Vdbe *v = sqlite3GetVdbe(pParse); + int aRoot[ArraySize(aTable)]; + u8 aCreateTbl[ArraySize(aTable)]; + + if( v==0 ) return; + assert( sqlite3BtreeHoldsAllMutexes(db) ); + assert( sqlite3VdbeDb(v)==db ); + pDb = &db->aDb[iDb]; + + /* Create new statistic tables if they do not exist, or clear them + ** if they do already exist. + */ + for(i=0; izName))==0 ){ + if( aTable[i].zCols ){ + /* The sqlite_statN table does not exist. Create it. Note that a + ** side-effect of the CREATE TABLE statement is to leave the rootpage + ** of the new table in register pParse->regRoot. This is important + ** because the OpenWrite opcode below will be needing it. */ + sqlite3NestedParse(pParse, + "CREATE TABLE %Q.%s(%s)", pDb->zName, zTab, aTable[i].zCols + ); + aRoot[i] = pParse->regRoot; + aCreateTbl[i] = OPFLAG_P2ISREG; + } + }else{ + /* The table already exists. If zWhere is not NULL, delete all entries + ** associated with the table zWhere. If zWhere is NULL, delete the + ** entire contents of the table. */ + aRoot[i] = pStat->tnum; + aCreateTbl[i] = 0; + sqlite3TableLock(pParse, iDb, aRoot[i], 1, zTab); + if( zWhere ){ + sqlite3NestedParse(pParse, + "DELETE FROM %Q.%s WHERE %s=%Q", + pDb->zName, zTab, zWhereType, zWhere + ); + }else{ + /* The sqlite_stat[134] table already exists. Delete all rows. */ + sqlite3VdbeAddOp2(v, OP_Clear, aRoot[i], iDb); + } + } + } + + /* Open the sqlite_stat[134] tables for writing. */ + for(i=0; aTable[i].zCols; i++){ + assert( inRowid ){ + sqlite3DbFree(db, p->u.aRowid); + p->nRowid = 0; + } +} +#endif + +/* Initialize the BLOB value of a ROWID +*/ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 +static void sampleSetRowid(sqlite3 *db, Stat4Sample *p, int n, const u8 *pData){ + assert( db!=0 ); + if( p->nRowid ) sqlite3DbFree(db, p->u.aRowid); + p->u.aRowid = sqlite3DbMallocRaw(db, n); + if( p->u.aRowid ){ + p->nRowid = n; + memcpy(p->u.aRowid, pData, n); + }else{ + p->nRowid = 0; + } +} +#endif + +/* Initialize the INTEGER value of a ROWID. +*/ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 +static void sampleSetRowidInt64(sqlite3 *db, Stat4Sample *p, i64 iRowid){ + assert( db!=0 ); + if( p->nRowid ) sqlite3DbFree(db, p->u.aRowid); + p->nRowid = 0; + p->u.iRowid = iRowid; +} +#endif + + +/* +** Copy the contents of object (*pFrom) into (*pTo). +*/ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 +static void sampleCopy(Stat4Accum *p, Stat4Sample *pTo, Stat4Sample *pFrom){ + pTo->isPSample = pFrom->isPSample; + pTo->iCol = pFrom->iCol; + pTo->iHash = pFrom->iHash; + memcpy(pTo->anEq, pFrom->anEq, sizeof(tRowcnt)*p->nCol); + memcpy(pTo->anLt, pFrom->anLt, sizeof(tRowcnt)*p->nCol); + memcpy(pTo->anDLt, pFrom->anDLt, sizeof(tRowcnt)*p->nCol); + if( pFrom->nRowid ){ + sampleSetRowid(p->db, pTo, pFrom->nRowid, pFrom->u.aRowid); + }else{ + sampleSetRowidInt64(p->db, pTo, pFrom->u.iRowid); + } +} +#endif + +/* +** Reclaim all memory of a Stat4Accum structure. +*/ +static void stat4Destructor(void *pOld){ + Stat4Accum *p = (Stat4Accum*)pOld; +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + int i; + for(i=0; inCol; i++) sampleClear(p->db, p->aBest+i); + for(i=0; imxSample; i++) sampleClear(p->db, p->a+i); + sampleClear(p->db, &p->current); +#endif + sqlite3DbFree(p->db, p); +} + +/* +** Implementation of the stat_init(N,C) SQL function. The two parameters +** are the number of rows in the table or index (C) and the number of columns +** in the index (N). The second argument (C) is only used for STAT3 and STAT4. +** +** This routine allocates the Stat4Accum object in heap memory. The return +** value is a pointer to the the Stat4Accum object encoded as a blob (i.e. +** the size of the blob is sizeof(void*) bytes). +*/ +static void statInit( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + Stat4Accum *p; + int nCol; /* Number of columns in index being sampled */ + int nColUp; /* nCol rounded up for alignment */ + int n; /* Bytes of space to allocate */ + sqlite3 *db; /* Database connection */ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + int mxSample = SQLITE_STAT4_SAMPLES; +#endif + + /* Decode the three function arguments */ + UNUSED_PARAMETER(argc); + nCol = sqlite3_value_int(argv[0]); + assert( nCol>1 ); /* >1 because it includes the rowid column */ + nColUp = sizeof(tRowcnt)<8 ? (nCol+1)&~1 : nCol; + + /* Allocate the space required for the Stat4Accum object */ + n = sizeof(*p) + + sizeof(tRowcnt)*nColUp /* Stat4Accum.anEq */ + + sizeof(tRowcnt)*nColUp /* Stat4Accum.anDLt */ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + + sizeof(tRowcnt)*nColUp /* Stat4Accum.anLt */ + + sizeof(Stat4Sample)*(nCol+mxSample) /* Stat4Accum.aBest[], a[] */ + + sizeof(tRowcnt)*3*nColUp*(nCol+mxSample) +#endif + ; + db = sqlite3_context_db_handle(context); + p = sqlite3DbMallocZero(db, n); + if( p==0 ){ + sqlite3_result_error_nomem(context); + return; + } + + p->db = db; + p->nRow = 0; + p->nCol = nCol; + p->current.anDLt = (tRowcnt*)&p[1]; + p->current.anEq = &p->current.anDLt[nColUp]; + +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + { + u8 *pSpace; /* Allocated space not yet assigned */ + int i; /* Used to iterate through p->aSample[] */ + + p->iGet = -1; + p->mxSample = mxSample; + p->nPSample = (tRowcnt)(sqlite3_value_int64(argv[1])/(mxSample/3+1) + 1); + p->current.anLt = &p->current.anEq[nColUp]; + p->iPrn = nCol*0x689e962d ^ sqlite3_value_int(argv[1])*0xd0944565; + + /* Set up the Stat4Accum.a[] and aBest[] arrays */ + p->a = (struct Stat4Sample*)&p->current.anLt[nColUp]; + p->aBest = &p->a[mxSample]; + pSpace = (u8*)(&p->a[mxSample+nCol]); + for(i=0; i<(mxSample+nCol); i++){ + p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); + p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); + p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); + } + assert( (pSpace - (u8*)p)==n ); + + for(i=0; iaBest[i].iCol = i; + } + } +#endif + + /* Return a pointer to the allocated object to the caller */ + sqlite3_result_blob(context, p, sizeof(p), stat4Destructor); +} +static const FuncDef statInitFuncdef = { + 1+IsStat34, /* nArg */ + SQLITE_UTF8, /* funcFlags */ + 0, /* pUserData */ + 0, /* pNext */ + statInit, /* xFunc */ + 0, /* xStep */ + 0, /* xFinalize */ + "stat_init", /* zName */ + 0, /* pHash */ + 0 /* pDestructor */ +}; + +#ifdef SQLITE_ENABLE_STAT4 +/* +** pNew and pOld are both candidate non-periodic samples selected for +** the same column (pNew->iCol==pOld->iCol). Ignoring this column and +** considering only any trailing columns and the sample hash value, this +** function returns true if sample pNew is to be preferred over pOld. +** In other words, if we assume that the cardinalities of the selected +** column for pNew and pOld are equal, is pNew to be preferred over pOld. +** +** This function assumes that for each argument sample, the contents of +** the anEq[] array from pSample->anEq[pSample->iCol+1] onwards are valid. +*/ +static int sampleIsBetterPost( + Stat4Accum *pAccum, + Stat4Sample *pNew, + Stat4Sample *pOld +){ + int nCol = pAccum->nCol; + int i; + assert( pNew->iCol==pOld->iCol ); + for(i=pNew->iCol+1; ianEq[i]>pOld->anEq[i] ) return 1; + if( pNew->anEq[i]anEq[i] ) return 0; + } + if( pNew->iHash>pOld->iHash ) return 1; + return 0; +} +#endif + +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 +/* +** Return true if pNew is to be preferred over pOld. +** +** This function assumes that for each argument sample, the contents of +** the anEq[] array from pSample->anEq[pSample->iCol] onwards are valid. +*/ +static int sampleIsBetter( + Stat4Accum *pAccum, + Stat4Sample *pNew, + Stat4Sample *pOld +){ + tRowcnt nEqNew = pNew->anEq[pNew->iCol]; + tRowcnt nEqOld = pOld->anEq[pOld->iCol]; + + assert( pOld->isPSample==0 && pNew->isPSample==0 ); + assert( IsStat4 || (pNew->iCol==0 && pOld->iCol==0) ); + + if( (nEqNew>nEqOld) ) return 1; +#ifdef SQLITE_ENABLE_STAT4 + if( nEqNew==nEqOld ){ + if( pNew->iColiCol ) return 1; + return (pNew->iCol==pOld->iCol && sampleIsBetterPost(pAccum, pNew, pOld)); + } + return 0; +#else + return (nEqNew==nEqOld && pNew->iHash>pOld->iHash); +#endif +} + +/* +** Copy the contents of sample *pNew into the p->a[] array. If necessary, +** remove the least desirable sample from p->a[] to make room. +*/ +static void sampleInsert(Stat4Accum *p, Stat4Sample *pNew, int nEqZero){ + Stat4Sample *pSample = 0; + int i; + + assert( IsStat4 || nEqZero==0 ); + +#ifdef SQLITE_ENABLE_STAT4 + if( pNew->isPSample==0 ){ + Stat4Sample *pUpgrade = 0; + assert( pNew->anEq[pNew->iCol]>0 ); + + /* This sample is being added because the prefix that ends in column + ** iCol occurs many times in the table. However, if we have already + ** added a sample that shares this prefix, there is no need to add + ** this one. Instead, upgrade the priority of the highest priority + ** existing sample that shares this prefix. */ + for(i=p->nSample-1; i>=0; i--){ + Stat4Sample *pOld = &p->a[i]; + if( pOld->anEq[pNew->iCol]==0 ){ + if( pOld->isPSample ) return; + assert( pOld->iCol>pNew->iCol ); + assert( sampleIsBetter(p, pNew, pOld) ); + if( pUpgrade==0 || sampleIsBetter(p, pOld, pUpgrade) ){ + pUpgrade = pOld; + } + } + } + if( pUpgrade ){ + pUpgrade->iCol = pNew->iCol; + pUpgrade->anEq[pUpgrade->iCol] = pNew->anEq[pUpgrade->iCol]; + goto find_new_min; + } + } +#endif + + /* If necessary, remove sample iMin to make room for the new sample. */ + if( p->nSample>=p->mxSample ){ + Stat4Sample *pMin = &p->a[p->iMin]; + tRowcnt *anEq = pMin->anEq; + tRowcnt *anLt = pMin->anLt; + tRowcnt *anDLt = pMin->anDLt; + sampleClear(p->db, pMin); + memmove(pMin, &pMin[1], sizeof(p->a[0])*(p->nSample-p->iMin-1)); + pSample = &p->a[p->nSample-1]; + pSample->nRowid = 0; + pSample->anEq = anEq; + pSample->anDLt = anDLt; + pSample->anLt = anLt; + p->nSample = p->mxSample-1; + } + + /* The "rows less-than" for the rowid column must be greater than that + ** for the last sample in the p->a[] array. Otherwise, the samples would + ** be out of order. */ +#ifdef SQLITE_ENABLE_STAT4 + assert( p->nSample==0 + || pNew->anLt[p->nCol-1] > p->a[p->nSample-1].anLt[p->nCol-1] ); +#endif + + /* Insert the new sample */ + pSample = &p->a[p->nSample]; + sampleCopy(p, pSample, pNew); + p->nSample++; + + /* Zero the first nEqZero entries in the anEq[] array. */ + memset(pSample->anEq, 0, sizeof(tRowcnt)*nEqZero); + +#ifdef SQLITE_ENABLE_STAT4 + find_new_min: +#endif + if( p->nSample>=p->mxSample ){ + int iMin = -1; + for(i=0; imxSample; i++){ + if( p->a[i].isPSample ) continue; + if( iMin<0 || sampleIsBetter(p, &p->a[iMin], &p->a[i]) ){ + iMin = i; + } + } + assert( iMin>=0 ); + p->iMin = iMin; + } +} +#endif /* SQLITE_ENABLE_STAT3_OR_STAT4 */ + +/* +** Field iChng of the index being scanned has changed. So at this point +** p->current contains a sample that reflects the previous row of the +** index. The value of anEq[iChng] and subsequent anEq[] elements are +** correct at this point. +*/ +static void samplePushPrevious(Stat4Accum *p, int iChng){ +#ifdef SQLITE_ENABLE_STAT4 + int i; + + /* Check if any samples from the aBest[] array should be pushed + ** into IndexSample.a[] at this point. */ + for(i=(p->nCol-2); i>=iChng; i--){ + Stat4Sample *pBest = &p->aBest[i]; + pBest->anEq[i] = p->current.anEq[i]; + if( p->nSamplemxSample || sampleIsBetter(p, pBest, &p->a[p->iMin]) ){ + sampleInsert(p, pBest, i); + } + } + + /* Update the anEq[] fields of any samples already collected. */ + for(i=p->nSample-1; i>=0; i--){ + int j; + for(j=iChng; jnCol; j++){ + if( p->a[i].anEq[j]==0 ) p->a[i].anEq[j] = p->current.anEq[j]; + } + } +#endif + +#if defined(SQLITE_ENABLE_STAT3) && !defined(SQLITE_ENABLE_STAT4) + if( iChng==0 ){ + tRowcnt nLt = p->current.anLt[0]; + tRowcnt nEq = p->current.anEq[0]; + + /* Check if this is to be a periodic sample. If so, add it. */ + if( (nLt/p->nPSample)!=(nLt+nEq)/p->nPSample ){ + p->current.isPSample = 1; + sampleInsert(p, &p->current, 0); + p->current.isPSample = 0; + }else + + /* Or if it is a non-periodic sample. Add it in this case too. */ + if( p->nSamplemxSample + || sampleIsBetter(p, &p->current, &p->a[p->iMin]) + ){ + sampleInsert(p, &p->current, 0); + } + } +#endif + +#ifndef SQLITE_ENABLE_STAT3_OR_STAT4 + UNUSED_PARAMETER( p ); + UNUSED_PARAMETER( iChng ); +#endif +} + +/* +** Implementation of the stat_push SQL function: stat_push(P,C,R) +** Arguments: +** +** P Pointer to the Stat4Accum object created by stat_init() +** C Index of left-most column to differ from previous row +** R Rowid for the current row. Might be a key record for +** WITHOUT ROWID tables. +** +** The SQL function always returns NULL. +** +** The R parameter is only used for STAT3 and STAT4 +*/ +static void statPush( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + int i; + + /* The three function arguments */ + Stat4Accum *p = (Stat4Accum*)sqlite3_value_blob(argv[0]); + int iChng = sqlite3_value_int(argv[1]); + + UNUSED_PARAMETER( argc ); + UNUSED_PARAMETER( context ); + assert( p->nCol>1 ); /* Includes rowid field */ + assert( iChngnCol ); + + if( p->nRow==0 ){ + /* This is the first call to this function. Do initialization. */ + for(i=0; inCol; i++) p->current.anEq[i] = 1; + }else{ + /* Second and subsequent calls get processed here */ + samplePushPrevious(p, iChng); + + /* Update anDLt[], anLt[] and anEq[] to reflect the values that apply + ** to the current row of the index. */ + for(i=0; icurrent.anEq[i]++; + } + for(i=iChng; inCol; i++){ + p->current.anDLt[i]++; +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + p->current.anLt[i] += p->current.anEq[i]; +#endif + p->current.anEq[i] = 1; + } + } + p->nRow++; +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + if( sqlite3_value_type(argv[2])==SQLITE_INTEGER ){ + sampleSetRowidInt64(p->db, &p->current, sqlite3_value_int64(argv[2])); + }else{ + sampleSetRowid(p->db, &p->current, sqlite3_value_bytes(argv[2]), + sqlite3_value_blob(argv[2])); + } + p->current.iHash = p->iPrn = p->iPrn*1103515245 + 12345; +#endif + +#ifdef SQLITE_ENABLE_STAT4 + { + tRowcnt nLt = p->current.anLt[p->nCol-1]; + + /* Check if this is to be a periodic sample. If so, add it. */ + if( (nLt/p->nPSample)!=(nLt+1)/p->nPSample ){ + p->current.isPSample = 1; + p->current.iCol = 0; + sampleInsert(p, &p->current, p->nCol-1); + p->current.isPSample = 0; + } + + /* Update the aBest[] array. */ + for(i=0; i<(p->nCol-1); i++){ + p->current.iCol = i; + if( i>=iChng || sampleIsBetterPost(p, &p->current, &p->aBest[i]) ){ + sampleCopy(p, &p->aBest[i], &p->current); + } + } + } +#endif +} +static const FuncDef statPushFuncdef = { + 2+IsStat34, /* nArg */ + SQLITE_UTF8, /* funcFlags */ + 0, /* pUserData */ + 0, /* pNext */ + statPush, /* xFunc */ + 0, /* xStep */ + 0, /* xFinalize */ + "stat_push", /* zName */ + 0, /* pHash */ + 0 /* pDestructor */ +}; + +#define STAT_GET_STAT1 0 /* "stat" column of stat1 table */ +#define STAT_GET_ROWID 1 /* "rowid" column of stat[34] entry */ +#define STAT_GET_NEQ 2 /* "neq" column of stat[34] entry */ +#define STAT_GET_NLT 3 /* "nlt" column of stat[34] entry */ +#define STAT_GET_NDLT 4 /* "ndlt" column of stat[34] entry */ + +/* +** Implementation of the stat_get(P,J) SQL function. This routine is +** used to query the results. Content is returned for parameter J +** which is one of the STAT_GET_xxxx values defined above. +** +** If neither STAT3 nor STAT4 are enabled, then J is always +** STAT_GET_STAT1 and is hence omitted and this routine becomes +** a one-parameter function, stat_get(P), that always returns the +** stat1 table entry information. +*/ +static void statGet( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + Stat4Accum *p = (Stat4Accum*)sqlite3_value_blob(argv[0]); +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + /* STAT3 and STAT4 have a parameter on this routine. */ + int eCall = sqlite3_value_int(argv[1]); + assert( argc==2 ); + assert( eCall==STAT_GET_STAT1 || eCall==STAT_GET_NEQ + || eCall==STAT_GET_ROWID || eCall==STAT_GET_NLT + || eCall==STAT_GET_NDLT + ); + if( eCall==STAT_GET_STAT1 ) +#else + assert( argc==1 ); +#endif + { + /* Return the value to store in the "stat" column of the sqlite_stat1 + ** table for this index. + ** + ** The value is a string composed of a list of integers describing + ** the index. The first integer in the list is the total number of + ** entries in the index. There is one additional integer in the list + ** for each indexed column. This additional integer is an estimate of + ** the number of rows matched by a stabbing query on the index using + ** a key with the corresponding number of fields. In other words, + ** if the index is on columns (a,b) and the sqlite_stat1 value is + ** "100 10 2", then SQLite estimates that: + ** + ** * the index contains 100 rows, + ** * "WHERE a=?" matches 10 rows, and + ** * "WHERE a=? AND b=?" matches 2 rows. + ** + ** If D is the count of distinct values and K is the total number of + ** rows, then each estimate is computed as: + ** + ** I = (K+D-1)/D + */ + char *z; + int i; + + char *zRet = sqlite3MallocZero(p->nCol * 25); + if( zRet==0 ){ + sqlite3_result_error_nomem(context); + return; + } + + sqlite3_snprintf(24, zRet, "%llu", (u64)p->nRow); + z = zRet + sqlite3Strlen30(zRet); + for(i=0; i<(p->nCol-1); i++){ + u64 nDistinct = p->current.anDLt[i] + 1; + u64 iVal = (p->nRow + nDistinct - 1) / nDistinct; + sqlite3_snprintf(24, z, " %llu", iVal); + z += sqlite3Strlen30(z); + assert( p->current.anEq[i] ); + } + assert( z[0]=='\0' && z>zRet ); + + sqlite3_result_text(context, zRet, -1, sqlite3_free); + } +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + else if( eCall==STAT_GET_ROWID ){ + if( p->iGet<0 ){ + samplePushPrevious(p, 0); + p->iGet = 0; + } + if( p->iGetnSample ){ + Stat4Sample *pS = p->a + p->iGet; + if( pS->nRowid==0 ){ + sqlite3_result_int64(context, pS->u.iRowid); + }else{ + sqlite3_result_blob(context, pS->u.aRowid, pS->nRowid, + SQLITE_TRANSIENT); + } + } + }else{ + tRowcnt *aCnt = 0; + + assert( p->iGetnSample ); + switch( eCall ){ + case STAT_GET_NEQ: aCnt = p->a[p->iGet].anEq; break; + case STAT_GET_NLT: aCnt = p->a[p->iGet].anLt; break; + default: { + aCnt = p->a[p->iGet].anDLt; + p->iGet++; + break; + } + } + + if( IsStat3 ){ + sqlite3_result_int64(context, (i64)aCnt[0]); + }else{ + char *zRet = sqlite3MallocZero(p->nCol * 25); + if( zRet==0 ){ + sqlite3_result_error_nomem(context); + }else{ + int i; + char *z = zRet; + for(i=0; inCol; i++){ + sqlite3_snprintf(24, z, "%llu ", (u64)aCnt[i]); + z += sqlite3Strlen30(z); + } + assert( z[0]=='\0' && z>zRet ); + z[-1] = '\0'; + sqlite3_result_text(context, zRet, -1, sqlite3_free); + } + } + } +#endif /* SQLITE_ENABLE_STAT3_OR_STAT4 */ +#ifndef SQLITE_DEBUG + UNUSED_PARAMETER( argc ); +#endif +} +static const FuncDef statGetFuncdef = { + 1+IsStat34, /* nArg */ + SQLITE_UTF8, /* funcFlags */ + 0, /* pUserData */ + 0, /* pNext */ + statGet, /* xFunc */ + 0, /* xStep */ + 0, /* xFinalize */ + "stat_get", /* zName */ + 0, /* pHash */ + 0 /* pDestructor */ +}; + +static void callStatGet(Vdbe *v, int regStat4, int iParam, int regOut){ + assert( regOut!=regStat4 && regOut!=regStat4+1 ); +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + sqlite3VdbeAddOp2(v, OP_Integer, iParam, regStat4+1); +#elif SQLITE_DEBUG + assert( iParam==STAT_GET_STAT1 ); +#else + UNUSED_PARAMETER( iParam ); +#endif + sqlite3VdbeAddOp3(v, OP_Function, 0, regStat4, regOut); + sqlite3VdbeChangeP4(v, -1, (char*)&statGetFuncdef, P4_FUNCDEF); + sqlite3VdbeChangeP5(v, 1 + IsStat34); +} + +/* +** Generate code to do an analysis of all indices associated with +** a single table. +*/ +static void analyzeOneTable( + Parse *pParse, /* Parser context */ + Table *pTab, /* Table whose indices are to be analyzed */ + Index *pOnlyIdx, /* If not NULL, only analyze this one index */ + int iStatCur, /* Index of VdbeCursor that writes the sqlite_stat1 table */ + int iMem, /* Available memory locations begin here */ + int iTab /* Next available cursor */ +){ + sqlite3 *db = pParse->db; /* Database handle */ + Index *pIdx; /* An index to being analyzed */ + int iIdxCur; /* Cursor open on index being analyzed */ + int iTabCur; /* Table cursor */ + Vdbe *v; /* The virtual machine being built up */ + int i; /* Loop counter */ + int jZeroRows = -1; /* Jump from here if number of rows is zero */ + int iDb; /* Index of database containing pTab */ + u8 needTableCnt = 1; /* True to count the table */ + int regNewRowid = iMem++; /* Rowid for the inserted record */ + int regStat4 = iMem++; /* Register to hold Stat4Accum object */ + int regChng = iMem++; /* Index of changed index field */ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + int regRowid = iMem++; /* Rowid argument passed to stat_push() */ +#endif + int regTemp = iMem++; /* Temporary use register */ + int regTabname = iMem++; /* Register containing table name */ + int regIdxname = iMem++; /* Register containing index name */ + int regStat1 = iMem++; /* Value for the stat column of sqlite_stat1 */ + int regPrev = iMem; /* MUST BE LAST (see below) */ + + pParse->nMem = MAX(pParse->nMem, iMem); + v = sqlite3GetVdbe(pParse); + if( v==0 || NEVER(pTab==0) ){ + return; + } + if( pTab->tnum==0 ){ + /* Do not gather statistics on views or virtual tables */ + return; + } + if( sqlite3_strnicmp(pTab->zName, "sqlite_", 7)==0 ){ + /* Do not gather statistics on system tables */ + return; + } + assert( sqlite3BtreeHoldsAllMutexes(db) ); + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + assert( iDb>=0 ); + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); +#ifndef SQLITE_OMIT_AUTHORIZATION + if( sqlite3AuthCheck(pParse, SQLITE_ANALYZE, pTab->zName, 0, + db->aDb[iDb].zName ) ){ + return; + } +#endif + + /* Establish a read-lock on the table at the shared-cache level. + ** Open a read-only cursor on the table. Also allocate a cursor number + ** to use for scanning indexes (iIdxCur). No index cursor is opened at + ** this time though. */ + sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); + iTabCur = iTab++; + iIdxCur = iTab++; + pParse->nTab = MAX(pParse->nTab, iTab); + sqlite3OpenTable(pParse, iTabCur, iDb, pTab, OP_OpenRead); + sqlite3VdbeAddOp4(v, OP_String8, 0, regTabname, 0, pTab->zName, 0); + + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + int nCol; /* Number of columns indexed by pIdx */ + int *aGotoChng; /* Array of jump instruction addresses */ + int addrRewind; /* Address of "OP_Rewind iIdxCur" */ + int addrGotoChng0; /* Address of "Goto addr_chng_0" */ + int addrNextRow; /* Address of "next_row:" */ + const char *zIdxName; /* Name of the index */ + + if( pOnlyIdx && pOnlyIdx!=pIdx ) continue; + if( pIdx->pPartIdxWhere==0 ) needTableCnt = 0; + VdbeNoopComment((v, "Begin analysis of %s", pIdx->zName)); + nCol = pIdx->nKeyCol; + aGotoChng = sqlite3DbMallocRaw(db, sizeof(int)*(nCol+1)); + if( aGotoChng==0 ) continue; + + /* Populate the register containing the index name. */ + if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){ + zIdxName = pTab->zName; + }else{ + zIdxName = pIdx->zName; + } + sqlite3VdbeAddOp4(v, OP_String8, 0, regIdxname, 0, zIdxName, 0); + + /* + ** Pseudo-code for loop that calls stat_push(): + ** + ** Rewind csr + ** if eof(csr) goto end_of_scan; + ** regChng = 0 + ** goto chng_addr_0; + ** + ** next_row: + ** regChng = 0 + ** if( idx(0) != regPrev(0) ) goto chng_addr_0 + ** regChng = 1 + ** if( idx(1) != regPrev(1) ) goto chng_addr_1 + ** ... + ** regChng = N + ** goto chng_addr_N + ** + ** chng_addr_0: + ** regPrev(0) = idx(0) + ** chng_addr_1: + ** regPrev(1) = idx(1) + ** ... + ** + ** chng_addr_N: + ** regRowid = idx(rowid) + ** stat_push(P, regChng, regRowid) + ** Next csr + ** if !eof(csr) goto next_row; + ** + ** end_of_scan: + */ + + /* Make sure there are enough memory cells allocated to accommodate + ** the regPrev array and a trailing rowid (the rowid slot is required + ** when building a record to insert into the sample column of + ** the sqlite_stat4 table. */ + pParse->nMem = MAX(pParse->nMem, regPrev+nCol); + + /* Open a read-only cursor on the index being analyzed. */ + assert( iDb==sqlite3SchemaToIndex(db, pIdx->pSchema) ); + sqlite3VdbeAddOp3(v, OP_OpenRead, iIdxCur, pIdx->tnum, iDb); + sqlite3VdbeSetP4KeyInfo(pParse, pIdx); + VdbeComment((v, "%s", pIdx->zName)); + + /* Invoke the stat_init() function. The arguments are: + ** + ** (1) the number of columns in the index including the rowid, + ** (2) the number of rows in the index, + ** + ** The second argument is only used for STAT3 and STAT4 + */ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + sqlite3VdbeAddOp2(v, OP_Count, iIdxCur, regStat4+2); +#endif + sqlite3VdbeAddOp2(v, OP_Integer, nCol+1, regStat4+1); + sqlite3VdbeAddOp3(v, OP_Function, 0, regStat4+1, regStat4); + sqlite3VdbeChangeP4(v, -1, (char*)&statInitFuncdef, P4_FUNCDEF); + sqlite3VdbeChangeP5(v, 1+IsStat34); + + /* Implementation of the following: + ** + ** Rewind csr + ** if eof(csr) goto end_of_scan; + ** regChng = 0 + ** goto next_push_0; + ** + */ + addrRewind = sqlite3VdbeAddOp1(v, OP_Rewind, iIdxCur); + VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Integer, 0, regChng); + addrGotoChng0 = sqlite3VdbeAddOp0(v, OP_Goto); + + /* + ** next_row: + ** regChng = 0 + ** if( idx(0) != regPrev(0) ) goto chng_addr_0 + ** regChng = 1 + ** if( idx(1) != regPrev(1) ) goto chng_addr_1 + ** ... + ** regChng = N + ** goto chng_addr_N + */ + addrNextRow = sqlite3VdbeCurrentAddr(v); + for(i=0; iazColl[i]); + sqlite3VdbeAddOp2(v, OP_Integer, i, regChng); + sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, i, regTemp); + aGotoChng[i] = + sqlite3VdbeAddOp4(v, OP_Ne, regTemp, 0, regPrev+i, pColl, P4_COLLSEQ); + sqlite3VdbeChangeP5(v, SQLITE_NULLEQ); + VdbeCoverage(v); + } + sqlite3VdbeAddOp2(v, OP_Integer, nCol, regChng); + aGotoChng[nCol] = sqlite3VdbeAddOp0(v, OP_Goto); + + /* + ** chng_addr_0: + ** regPrev(0) = idx(0) + ** chng_addr_1: + ** regPrev(1) = idx(1) + ** ... + */ + sqlite3VdbeJumpHere(v, addrGotoChng0); + for(i=0; ipTable); + int j, k, regKey; + regKey = sqlite3GetTempRange(pParse, pPk->nKeyCol); + for(j=0; jnKeyCol; j++){ + k = sqlite3ColumnOfIndex(pIdx, pPk->aiColumn[j]); + sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, k, regKey+j); + VdbeComment((v, "%s", pTab->aCol[pPk->aiColumn[j]].zName)); + } + sqlite3VdbeAddOp3(v, OP_MakeRecord, regKey, pPk->nKeyCol, regRowid); + sqlite3ReleaseTempRange(pParse, regKey, pPk->nKeyCol); + } +#endif + assert( regChng==(regStat4+1) ); + sqlite3VdbeAddOp3(v, OP_Function, 1, regStat4, regTemp); + sqlite3VdbeChangeP4(v, -1, (char*)&statPushFuncdef, P4_FUNCDEF); + sqlite3VdbeChangeP5(v, 2+IsStat34); + sqlite3VdbeAddOp2(v, OP_Next, iIdxCur, addrNextRow); VdbeCoverage(v); + + /* Add the entry to the stat1 table. */ + callStatGet(v, regStat4, STAT_GET_STAT1, regStat1); + sqlite3VdbeAddOp4(v, OP_MakeRecord, regTabname, 3, regTemp, "aaa", 0); + sqlite3VdbeAddOp2(v, OP_NewRowid, iStatCur, regNewRowid); + sqlite3VdbeAddOp3(v, OP_Insert, iStatCur, regTemp, regNewRowid); + sqlite3VdbeChangeP5(v, OPFLAG_APPEND); + + /* Add the entries to the stat3 or stat4 table. */ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + { + int regEq = regStat1; + int regLt = regStat1+1; + int regDLt = regStat1+2; + int regSample = regStat1+3; + int regCol = regStat1+4; + int regSampleRowid = regCol + nCol; + int addrNext; + int addrIsNull; + u8 seekOp = HasRowid(pTab) ? OP_NotExists : OP_NotFound; + + pParse->nMem = MAX(pParse->nMem, regCol+nCol+1); + + addrNext = sqlite3VdbeCurrentAddr(v); + callStatGet(v, regStat4, STAT_GET_ROWID, regSampleRowid); + addrIsNull = sqlite3VdbeAddOp1(v, OP_IsNull, regSampleRowid); + VdbeCoverage(v); + callStatGet(v, regStat4, STAT_GET_NEQ, regEq); + callStatGet(v, regStat4, STAT_GET_NLT, regLt); + callStatGet(v, regStat4, STAT_GET_NDLT, regDLt); + sqlite3VdbeAddOp4Int(v, seekOp, iTabCur, addrNext, regSampleRowid, 0); + /* We know that the regSampleRowid row exists because it was read by + ** the previous loop. Thus the not-found jump of seekOp will never + ** be taken */ + VdbeCoverageNeverTaken(v); +#ifdef SQLITE_ENABLE_STAT3 + sqlite3ExprCodeGetColumnOfTable(v, pTab, iTabCur, + pIdx->aiColumn[0], regSample); +#else + for(i=0; iaiColumn[i]; + sqlite3ExprCodeGetColumnOfTable(v, pTab, iTabCur, iCol, regCol+i); + } + sqlite3VdbeAddOp3(v, OP_MakeRecord, regCol, nCol+1, regSample); +#endif + sqlite3VdbeAddOp3(v, OP_MakeRecord, regTabname, 6, regTemp); + sqlite3VdbeAddOp2(v, OP_NewRowid, iStatCur+1, regNewRowid); + sqlite3VdbeAddOp3(v, OP_Insert, iStatCur+1, regTemp, regNewRowid); + sqlite3VdbeAddOp2(v, OP_Goto, 1, addrNext); /* P1==1 for end-of-loop */ + sqlite3VdbeJumpHere(v, addrIsNull); + } +#endif /* SQLITE_ENABLE_STAT3_OR_STAT4 */ + + /* End of analysis */ + sqlite3VdbeJumpHere(v, addrRewind); + sqlite3DbFree(db, aGotoChng); + } + + + /* Create a single sqlite_stat1 entry containing NULL as the index + ** name and the row count as the content. + */ + if( pOnlyIdx==0 && needTableCnt ){ + VdbeComment((v, "%s", pTab->zName)); + sqlite3VdbeAddOp2(v, OP_Count, iTabCur, regStat1); + jZeroRows = sqlite3VdbeAddOp1(v, OP_IfNot, regStat1); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Null, 0, regIdxname); + sqlite3VdbeAddOp4(v, OP_MakeRecord, regTabname, 3, regTemp, "aaa", 0); + sqlite3VdbeAddOp2(v, OP_NewRowid, iStatCur, regNewRowid); + sqlite3VdbeAddOp3(v, OP_Insert, iStatCur, regTemp, regNewRowid); + sqlite3VdbeChangeP5(v, OPFLAG_APPEND); + sqlite3VdbeJumpHere(v, jZeroRows); + } +} + + +/* +** Generate code that will cause the most recent index analysis to +** be loaded into internal hash tables where is can be used. +*/ +static void loadAnalysis(Parse *pParse, int iDb){ + Vdbe *v = sqlite3GetVdbe(pParse); + if( v ){ + sqlite3VdbeAddOp1(v, OP_LoadAnalysis, iDb); + } +} + +/* +** Generate code that will do an analysis of an entire database +*/ +static void analyzeDatabase(Parse *pParse, int iDb){ + sqlite3 *db = pParse->db; + Schema *pSchema = db->aDb[iDb].pSchema; /* Schema of database iDb */ + HashElem *k; + int iStatCur; + int iMem; + int iTab; + + sqlite3BeginWriteOperation(pParse, 0, iDb); + iStatCur = pParse->nTab; + pParse->nTab += 3; + openStatTable(pParse, iDb, iStatCur, 0, 0); + iMem = pParse->nMem+1; + iTab = pParse->nTab; + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + for(k=sqliteHashFirst(&pSchema->tblHash); k; k=sqliteHashNext(k)){ + Table *pTab = (Table*)sqliteHashData(k); + analyzeOneTable(pParse, pTab, 0, iStatCur, iMem, iTab); + } + loadAnalysis(pParse, iDb); +} + +/* +** Generate code that will do an analysis of a single table in +** a database. If pOnlyIdx is not NULL then it is a single index +** in pTab that should be analyzed. +*/ +static void analyzeTable(Parse *pParse, Table *pTab, Index *pOnlyIdx){ + int iDb; + int iStatCur; + + assert( pTab!=0 ); + assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); + iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); + sqlite3BeginWriteOperation(pParse, 0, iDb); + iStatCur = pParse->nTab; + pParse->nTab += 3; + if( pOnlyIdx ){ + openStatTable(pParse, iDb, iStatCur, pOnlyIdx->zName, "idx"); + }else{ + openStatTable(pParse, iDb, iStatCur, pTab->zName, "tbl"); + } + analyzeOneTable(pParse, pTab, pOnlyIdx, iStatCur,pParse->nMem+1,pParse->nTab); + loadAnalysis(pParse, iDb); +} + +/* +** Generate code for the ANALYZE command. The parser calls this routine +** when it recognizes an ANALYZE command. +** +** ANALYZE -- 1 +** ANALYZE -- 2 +** ANALYZE ?.? -- 3 +** +** Form 1 causes all indices in all attached databases to be analyzed. +** Form 2 analyzes all indices the single database named. +** Form 3 analyzes all indices associated with the named table. +*/ +SQLITE_PRIVATE void sqlite3Analyze(Parse *pParse, Token *pName1, Token *pName2){ + sqlite3 *db = pParse->db; + int iDb; + int i; + char *z, *zDb; + Table *pTab; + Index *pIdx; + Token *pTableName; + + /* Read the database schema. If an error occurs, leave an error message + ** and code in pParse and return NULL. */ + assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); + if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ + return; + } + + assert( pName2!=0 || pName1==0 ); + if( pName1==0 ){ + /* Form 1: Analyze everything */ + for(i=0; inDb; i++){ + if( i==1 ) continue; /* Do not analyze the TEMP database */ + analyzeDatabase(pParse, i); + } + }else if( pName2->n==0 ){ + /* Form 2: Analyze the database or table named */ + iDb = sqlite3FindDb(db, pName1); + if( iDb>=0 ){ + analyzeDatabase(pParse, iDb); + }else{ + z = sqlite3NameFromToken(db, pName1); + if( z ){ + if( (pIdx = sqlite3FindIndex(db, z, 0))!=0 ){ + analyzeTable(pParse, pIdx->pTable, pIdx); + }else if( (pTab = sqlite3LocateTable(pParse, 0, z, 0))!=0 ){ + analyzeTable(pParse, pTab, 0); + } + sqlite3DbFree(db, z); + } + } + }else{ + /* Form 3: Analyze the fully qualified table name */ + iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pTableName); + if( iDb>=0 ){ + zDb = db->aDb[iDb].zName; + z = sqlite3NameFromToken(db, pTableName); + if( z ){ + if( (pIdx = sqlite3FindIndex(db, z, zDb))!=0 ){ + analyzeTable(pParse, pIdx->pTable, pIdx); + }else if( (pTab = sqlite3LocateTable(pParse, 0, z, zDb))!=0 ){ + analyzeTable(pParse, pTab, 0); + } + sqlite3DbFree(db, z); + } + } + } +} + +/* +** Used to pass information from the analyzer reader through to the +** callback routine. +*/ +typedef struct analysisInfo analysisInfo; +struct analysisInfo { + sqlite3 *db; + const char *zDatabase; +}; + +/* +** The first argument points to a nul-terminated string containing a +** list of space separated integers. Read the first nOut of these into +** the array aOut[]. +*/ +static void decodeIntArray( + char *zIntArray, /* String containing int array to decode */ + int nOut, /* Number of slots in aOut[] */ + tRowcnt *aOut, /* Store integers here */ + LogEst *aLog, /* Or, if aOut==0, here */ + Index *pIndex /* Handle extra flags for this index, if not NULL */ +){ + char *z = zIntArray; + int c; + int i; + tRowcnt v; + +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + if( z==0 ) z = ""; +#else + if( NEVER(z==0) ) z = ""; +#endif + for(i=0; *z && i='0' && c<='9' ){ + v = v*10 + c - '0'; + z++; + } +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + if( aOut ){ + aOut[i] = v; + }else +#else + assert( aOut==0 ); + UNUSED_PARAMETER(aOut); +#endif + { + aLog[i] = sqlite3LogEst(v); + } + if( *z==' ' ) z++; + } +#ifndef SQLITE_ENABLE_STAT3_OR_STAT4 + assert( pIndex!=0 ); +#else + if( pIndex ) +#endif + { + if( strcmp(z, "unordered")==0 ){ + pIndex->bUnordered = 1; + }else if( sqlite3_strglob("sz=[0-9]*", z)==0 ){ + int v32 = 0; + sqlite3GetInt32(z+3, &v32); + pIndex->szIdxRow = sqlite3LogEst(v32); + } + } +} + +/* +** This callback is invoked once for each index when reading the +** sqlite_stat1 table. +** +** argv[0] = name of the table +** argv[1] = name of the index (might be NULL) +** argv[2] = results of analysis - on integer for each column +** +** Entries for which argv[1]==NULL simply record the number of rows in +** the table. +*/ +static int analysisLoader(void *pData, int argc, char **argv, char **NotUsed){ + analysisInfo *pInfo = (analysisInfo*)pData; + Index *pIndex; + Table *pTable; + const char *z; + + assert( argc==3 ); + UNUSED_PARAMETER2(NotUsed, argc); + + if( argv==0 || argv[0]==0 || argv[2]==0 ){ + return 0; + } + pTable = sqlite3FindTable(pInfo->db, argv[0], pInfo->zDatabase); + if( pTable==0 ){ + return 0; + } + if( argv[1]==0 ){ + pIndex = 0; + }else if( sqlite3_stricmp(argv[0],argv[1])==0 ){ + pIndex = sqlite3PrimaryKeyIndex(pTable); + }else{ + pIndex = sqlite3FindIndex(pInfo->db, argv[1], pInfo->zDatabase); + } + z = argv[2]; + + if( pIndex ){ + decodeIntArray((char*)z, pIndex->nKeyCol+1, 0, pIndex->aiRowLogEst, pIndex); + if( pIndex->pPartIdxWhere==0 ) pTable->nRowLogEst = pIndex->aiRowLogEst[0]; + }else{ + Index fakeIdx; + fakeIdx.szIdxRow = pTable->szTabRow; + decodeIntArray((char*)z, 1, 0, &pTable->nRowLogEst, &fakeIdx); + pTable->szTabRow = fakeIdx.szIdxRow; + } + + return 0; +} + +/* +** If the Index.aSample variable is not NULL, delete the aSample[] array +** and its contents. +*/ +SQLITE_PRIVATE void sqlite3DeleteIndexSamples(sqlite3 *db, Index *pIdx){ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + if( pIdx->aSample ){ + int j; + for(j=0; jnSample; j++){ + IndexSample *p = &pIdx->aSample[j]; + sqlite3DbFree(db, p->p); + } + sqlite3DbFree(db, pIdx->aSample); + } + if( db && db->pnBytesFreed==0 ){ + pIdx->nSample = 0; + pIdx->aSample = 0; + } +#else + UNUSED_PARAMETER(db); + UNUSED_PARAMETER(pIdx); +#endif /* SQLITE_ENABLE_STAT3_OR_STAT4 */ +} + +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 +/* +** Populate the pIdx->aAvgEq[] array based on the samples currently +** stored in pIdx->aSample[]. +*/ +static void initAvgEq(Index *pIdx){ + if( pIdx ){ + IndexSample *aSample = pIdx->aSample; + IndexSample *pFinal = &aSample[pIdx->nSample-1]; + int iCol; + for(iCol=0; iColnKeyCol; iCol++){ + int i; /* Used to iterate through samples */ + tRowcnt sumEq = 0; /* Sum of the nEq values */ + tRowcnt nSum = 0; /* Number of terms contributing to sumEq */ + tRowcnt avgEq = 0; + tRowcnt nDLt = pFinal->anDLt[iCol]; + + /* Set nSum to the number of distinct (iCol+1) field prefixes that + ** occur in the stat4 table for this index before pFinal. Set + ** sumEq to the sum of the nEq values for column iCol for the same + ** set (adding the value only once where there exist dupicate + ** prefixes). */ + for(i=0; i<(pIdx->nSample-1); i++){ + if( aSample[i].anDLt[iCol]!=aSample[i+1].anDLt[iCol] ){ + sumEq += aSample[i].anEq[iCol]; + nSum++; + } + } + if( nDLt>nSum ){ + avgEq = (pFinal->anLt[iCol] - sumEq)/(nDLt - nSum); + } + if( avgEq==0 ) avgEq = 1; + pIdx->aAvgEq[iCol] = avgEq; + if( pIdx->nSampleCol==1 ) break; + } + } +} + +/* +** Look up an index by name. Or, if the name of a WITHOUT ROWID table +** is supplied instead, find the PRIMARY KEY index for that table. +*/ +static Index *findIndexOrPrimaryKey( + sqlite3 *db, + const char *zName, + const char *zDb +){ + Index *pIdx = sqlite3FindIndex(db, zName, zDb); + if( pIdx==0 ){ + Table *pTab = sqlite3FindTable(db, zName, zDb); + if( pTab && !HasRowid(pTab) ) pIdx = sqlite3PrimaryKeyIndex(pTab); + } + return pIdx; +} + +/* +** Load the content from either the sqlite_stat4 or sqlite_stat3 table +** into the relevant Index.aSample[] arrays. +** +** Arguments zSql1 and zSql2 must point to SQL statements that return +** data equivalent to the following (statements are different for stat3, +** see the caller of this function for details): +** +** zSql1: SELECT idx,count(*) FROM %Q.sqlite_stat4 GROUP BY idx +** zSql2: SELECT idx,neq,nlt,ndlt,sample FROM %Q.sqlite_stat4 +** +** where %Q is replaced with the database name before the SQL is executed. +*/ +static int loadStatTbl( + sqlite3 *db, /* Database handle */ + int bStat3, /* Assume single column records only */ + const char *zSql1, /* SQL statement 1 (see above) */ + const char *zSql2, /* SQL statement 2 (see above) */ + const char *zDb /* Database name (e.g. "main") */ +){ + int rc; /* Result codes from subroutines */ + sqlite3_stmt *pStmt = 0; /* An SQL statement being run */ + char *zSql; /* Text of the SQL statement */ + Index *pPrevIdx = 0; /* Previous index in the loop */ + IndexSample *pSample; /* A slot in pIdx->aSample[] */ + + assert( db->lookaside.bEnabled==0 ); + zSql = sqlite3MPrintf(db, zSql1, zDb); + if( !zSql ){ + return SQLITE_NOMEM; + } + rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0); + sqlite3DbFree(db, zSql); + if( rc ) return rc; + + while( sqlite3_step(pStmt)==SQLITE_ROW ){ + int nIdxCol = 1; /* Number of columns in stat4 records */ + int nAvgCol = 1; /* Number of entries in Index.aAvgEq */ + + char *zIndex; /* Index name */ + Index *pIdx; /* Pointer to the index object */ + int nSample; /* Number of samples */ + int nByte; /* Bytes of space required */ + int i; /* Bytes of space required */ + tRowcnt *pSpace; + + zIndex = (char *)sqlite3_column_text(pStmt, 0); + if( zIndex==0 ) continue; + nSample = sqlite3_column_int(pStmt, 1); + pIdx = findIndexOrPrimaryKey(db, zIndex, zDb); + assert( pIdx==0 || bStat3 || pIdx->nSample==0 ); + /* Index.nSample is non-zero at this point if data has already been + ** loaded from the stat4 table. In this case ignore stat3 data. */ + if( pIdx==0 || pIdx->nSample ) continue; + if( bStat3==0 ){ + nIdxCol = pIdx->nKeyCol+1; + nAvgCol = pIdx->nKeyCol; + } + pIdx->nSampleCol = nIdxCol; + nByte = sizeof(IndexSample) * nSample; + nByte += sizeof(tRowcnt) * nIdxCol * 3 * nSample; + nByte += nAvgCol * sizeof(tRowcnt); /* Space for Index.aAvgEq[] */ + + pIdx->aSample = sqlite3DbMallocZero(db, nByte); + if( pIdx->aSample==0 ){ + sqlite3_finalize(pStmt); + return SQLITE_NOMEM; + } + pSpace = (tRowcnt*)&pIdx->aSample[nSample]; + pIdx->aAvgEq = pSpace; pSpace += nAvgCol; + for(i=0; iaSample[i].anEq = pSpace; pSpace += nIdxCol; + pIdx->aSample[i].anLt = pSpace; pSpace += nIdxCol; + pIdx->aSample[i].anDLt = pSpace; pSpace += nIdxCol; + } + assert( ((u8*)pSpace)-nByte==(u8*)(pIdx->aSample) ); + } + rc = sqlite3_finalize(pStmt); + if( rc ) return rc; + + zSql = sqlite3MPrintf(db, zSql2, zDb); + if( !zSql ){ + return SQLITE_NOMEM; + } + rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0); + sqlite3DbFree(db, zSql); + if( rc ) return rc; + + while( sqlite3_step(pStmt)==SQLITE_ROW ){ + char *zIndex; /* Index name */ + Index *pIdx; /* Pointer to the index object */ + int nCol = 1; /* Number of columns in index */ + + zIndex = (char *)sqlite3_column_text(pStmt, 0); + if( zIndex==0 ) continue; + pIdx = findIndexOrPrimaryKey(db, zIndex, zDb); + if( pIdx==0 ) continue; + /* This next condition is true if data has already been loaded from + ** the sqlite_stat4 table. In this case ignore stat3 data. */ + nCol = pIdx->nSampleCol; + if( bStat3 && nCol>1 ) continue; + if( pIdx!=pPrevIdx ){ + initAvgEq(pPrevIdx); + pPrevIdx = pIdx; + } + pSample = &pIdx->aSample[pIdx->nSample]; + decodeIntArray((char*)sqlite3_column_text(pStmt,1),nCol,pSample->anEq,0,0); + decodeIntArray((char*)sqlite3_column_text(pStmt,2),nCol,pSample->anLt,0,0); + decodeIntArray((char*)sqlite3_column_text(pStmt,3),nCol,pSample->anDLt,0,0); + + /* Take a copy of the sample. Add two 0x00 bytes the end of the buffer. + ** This is in case the sample record is corrupted. In that case, the + ** sqlite3VdbeRecordCompare() may read up to two varints past the + ** end of the allocated buffer before it realizes it is dealing with + ** a corrupt record. Adding the two 0x00 bytes prevents this from causing + ** a buffer overread. */ + pSample->n = sqlite3_column_bytes(pStmt, 4); + pSample->p = sqlite3DbMallocZero(db, pSample->n + 2); + if( pSample->p==0 ){ + sqlite3_finalize(pStmt); + return SQLITE_NOMEM; + } + memcpy(pSample->p, sqlite3_column_blob(pStmt, 4), pSample->n); + pIdx->nSample++; + } + rc = sqlite3_finalize(pStmt); + if( rc==SQLITE_OK ) initAvgEq(pPrevIdx); + return rc; +} + +/* +** Load content from the sqlite_stat4 and sqlite_stat3 tables into +** the Index.aSample[] arrays of all indices. +*/ +static int loadStat4(sqlite3 *db, const char *zDb){ + int rc = SQLITE_OK; /* Result codes from subroutines */ + + assert( db->lookaside.bEnabled==0 ); + if( sqlite3FindTable(db, "sqlite_stat4", zDb) ){ + rc = loadStatTbl(db, 0, + "SELECT idx,count(*) FROM %Q.sqlite_stat4 GROUP BY idx", + "SELECT idx,neq,nlt,ndlt,sample FROM %Q.sqlite_stat4", + zDb + ); + } + + if( rc==SQLITE_OK && sqlite3FindTable(db, "sqlite_stat3", zDb) ){ + rc = loadStatTbl(db, 1, + "SELECT idx,count(*) FROM %Q.sqlite_stat3 GROUP BY idx", + "SELECT idx,neq,nlt,ndlt,sqlite_record(sample) FROM %Q.sqlite_stat3", + zDb + ); + } + + return rc; +} +#endif /* SQLITE_ENABLE_STAT3_OR_STAT4 */ + +/* +** Load the content of the sqlite_stat1 and sqlite_stat3/4 tables. The +** contents of sqlite_stat1 are used to populate the Index.aiRowEst[] +** arrays. The contents of sqlite_stat3/4 are used to populate the +** Index.aSample[] arrays. +** +** If the sqlite_stat1 table is not present in the database, SQLITE_ERROR +** is returned. In this case, even if SQLITE_ENABLE_STAT3/4 was defined +** during compilation and the sqlite_stat3/4 table is present, no data is +** read from it. +** +** If SQLITE_ENABLE_STAT3/4 was defined during compilation and the +** sqlite_stat4 table is not present in the database, SQLITE_ERROR is +** returned. However, in this case, data is read from the sqlite_stat1 +** table (if it is present) before returning. +** +** If an OOM error occurs, this function always sets db->mallocFailed. +** This means if the caller does not care about other errors, the return +** code may be ignored. +*/ +SQLITE_PRIVATE int sqlite3AnalysisLoad(sqlite3 *db, int iDb){ + analysisInfo sInfo; + HashElem *i; + char *zSql; + int rc; + + assert( iDb>=0 && iDbnDb ); + assert( db->aDb[iDb].pBt!=0 ); + + /* Clear any prior statistics */ + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + for(i=sqliteHashFirst(&db->aDb[iDb].pSchema->idxHash);i;i=sqliteHashNext(i)){ + Index *pIdx = sqliteHashData(i); + sqlite3DefaultRowEst(pIdx); +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + sqlite3DeleteIndexSamples(db, pIdx); + pIdx->aSample = 0; +#endif + } + + /* Check to make sure the sqlite_stat1 table exists */ + sInfo.db = db; + sInfo.zDatabase = db->aDb[iDb].zName; + if( sqlite3FindTable(db, "sqlite_stat1", sInfo.zDatabase)==0 ){ + return SQLITE_ERROR; + } + + /* Load new statistics out of the sqlite_stat1 table */ + zSql = sqlite3MPrintf(db, + "SELECT tbl,idx,stat FROM %Q.sqlite_stat1", sInfo.zDatabase); + if( zSql==0 ){ + rc = SQLITE_NOMEM; + }else{ + rc = sqlite3_exec(db, zSql, analysisLoader, &sInfo, 0); + sqlite3DbFree(db, zSql); + } + + + /* Load the statistics from the sqlite_stat4 table. */ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + if( rc==SQLITE_OK ){ + int lookasideEnabled = db->lookaside.bEnabled; + db->lookaside.bEnabled = 0; + rc = loadStat4(db, sInfo.zDatabase); + db->lookaside.bEnabled = lookasideEnabled; + } +#endif + + if( rc==SQLITE_NOMEM ){ + db->mallocFailed = 1; + } + return rc; +} + + +#endif /* SQLITE_OMIT_ANALYZE */ + +/************** End of analyze.c *********************************************/ +/************** Begin file attach.c ******************************************/ +/* +** 2003 April 6 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code used to implement the ATTACH and DETACH commands. +*/ + +#ifndef SQLITE_OMIT_ATTACH +/* +** Resolve an expression that was part of an ATTACH or DETACH statement. This +** is slightly different from resolving a normal SQL expression, because simple +** identifiers are treated as strings, not possible column names or aliases. +** +** i.e. if the parser sees: +** +** ATTACH DATABASE abc AS def +** +** it treats the two expressions as literal strings 'abc' and 'def' instead of +** looking for columns of the same name. +** +** This only applies to the root node of pExpr, so the statement: +** +** ATTACH DATABASE abc||def AS 'db2' +** +** will fail because neither abc or def can be resolved. +*/ +static int resolveAttachExpr(NameContext *pName, Expr *pExpr) +{ + int rc = SQLITE_OK; + if( pExpr ){ + if( pExpr->op!=TK_ID ){ + rc = sqlite3ResolveExprNames(pName, pExpr); + }else{ + pExpr->op = TK_STRING; + } + } + return rc; +} + +/* +** An SQL user-function registered to do the work of an ATTACH statement. The +** three arguments to the function come directly from an attach statement: +** +** ATTACH DATABASE x AS y KEY z +** +** SELECT sqlite_attach(x, y, z) +** +** If the optional "KEY z" syntax is omitted, an SQL NULL is passed as the +** third argument. +*/ +static void attachFunc( + sqlite3_context *context, + int NotUsed, + sqlite3_value **argv +){ + int i; + int rc = 0; + sqlite3 *db = sqlite3_context_db_handle(context); + const char *zName; + const char *zFile; + char *zPath = 0; + char *zErr = 0; + unsigned int flags; + Db *aNew; + char *zErrDyn = 0; + sqlite3_vfs *pVfs; + + UNUSED_PARAMETER(NotUsed); + + zFile = (const char *)sqlite3_value_text(argv[0]); + zName = (const char *)sqlite3_value_text(argv[1]); + if( zFile==0 ) zFile = ""; + if( zName==0 ) zName = ""; + + /* Check for the following errors: + ** + ** * Too many attached databases, + ** * Transaction currently open + ** * Specified database name already being used. + */ + if( db->nDb>=db->aLimit[SQLITE_LIMIT_ATTACHED]+2 ){ + zErrDyn = sqlite3MPrintf(db, "too many attached databases - max %d", + db->aLimit[SQLITE_LIMIT_ATTACHED] + ); + goto attach_error; + } + if( !db->autoCommit ){ + zErrDyn = sqlite3MPrintf(db, "cannot ATTACH database within transaction"); + goto attach_error; + } + for(i=0; inDb; i++){ + char *z = db->aDb[i].zName; + assert( z && zName ); + if( sqlite3StrICmp(z, zName)==0 ){ + zErrDyn = sqlite3MPrintf(db, "database %s is already in use", zName); + goto attach_error; + } + } + + /* Allocate the new entry in the db->aDb[] array and initialize the schema + ** hash tables. + */ + if( db->aDb==db->aDbStatic ){ + aNew = sqlite3DbMallocRaw(db, sizeof(db->aDb[0])*3 ); + if( aNew==0 ) return; + memcpy(aNew, db->aDb, sizeof(db->aDb[0])*2); + }else{ + aNew = sqlite3DbRealloc(db, db->aDb, sizeof(db->aDb[0])*(db->nDb+1) ); + if( aNew==0 ) return; + } + db->aDb = aNew; + aNew = &db->aDb[db->nDb]; + memset(aNew, 0, sizeof(*aNew)); + + /* Open the database file. If the btree is successfully opened, use + ** it to obtain the database schema. At this point the schema may + ** or may not be initialized. + */ + flags = db->openFlags; + rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr); + if( rc!=SQLITE_OK ){ + if( rc==SQLITE_NOMEM ) db->mallocFailed = 1; + sqlite3_result_error(context, zErr, -1); + sqlite3_free(zErr); + return; + } + assert( pVfs ); + flags |= SQLITE_OPEN_MAIN_DB; + rc = sqlite3BtreeOpen(pVfs, zPath, db, &aNew->pBt, 0, flags); + sqlite3_free( zPath ); + db->nDb++; + if( rc==SQLITE_CONSTRAINT ){ + rc = SQLITE_ERROR; + zErrDyn = sqlite3MPrintf(db, "database is already attached"); + }else if( rc==SQLITE_OK ){ + Pager *pPager; + aNew->pSchema = sqlite3SchemaGet(db, aNew->pBt); + if( !aNew->pSchema ){ + rc = SQLITE_NOMEM; + }else if( aNew->pSchema->file_format && aNew->pSchema->enc!=ENC(db) ){ + zErrDyn = sqlite3MPrintf(db, + "attached databases must use the same text encoding as main database"); + rc = SQLITE_ERROR; + } + pPager = sqlite3BtreePager(aNew->pBt); + sqlite3PagerLockingMode(pPager, db->dfltLockMode); + sqlite3BtreeSecureDelete(aNew->pBt, + sqlite3BtreeSecureDelete(db->aDb[0].pBt,-1) ); +#ifndef SQLITE_OMIT_PAGER_PRAGMAS + sqlite3BtreeSetPagerFlags(aNew->pBt, 3 | (db->flags & PAGER_FLAGS_MASK)); +#endif + } + aNew->safety_level = 3; + aNew->zName = sqlite3DbStrDup(db, zName); + if( rc==SQLITE_OK && aNew->zName==0 ){ + rc = SQLITE_NOMEM; + } + + +#ifdef SQLITE_HAS_CODEC + if( rc==SQLITE_OK ){ + extern int sqlite3CodecAttach(sqlite3*, int, const void*, int); + extern void sqlite3CodecGetKey(sqlite3*, int, void**, int*); + int nKey; + char *zKey; + int t = sqlite3_value_type(argv[2]); + switch( t ){ + case SQLITE_INTEGER: + case SQLITE_FLOAT: + zErrDyn = sqlite3DbStrDup(db, "Invalid key value"); + rc = SQLITE_ERROR; + break; + + case SQLITE_TEXT: + case SQLITE_BLOB: + nKey = sqlite3_value_bytes(argv[2]); + zKey = (char *)sqlite3_value_blob(argv[2]); + rc = sqlite3CodecAttach(db, db->nDb-1, zKey, nKey); + break; + + case SQLITE_NULL: + /* No key specified. Use the key from the main database */ + sqlite3CodecGetKey(db, 0, (void**)&zKey, &nKey); + if( nKey>0 || sqlite3BtreeGetReserve(db->aDb[0].pBt)>0 ){ + rc = sqlite3CodecAttach(db, db->nDb-1, zKey, nKey); + } + break; + } + } +#endif + + /* If the file was opened successfully, read the schema for the new database. + ** If this fails, or if opening the file failed, then close the file and + ** remove the entry from the db->aDb[] array. i.e. put everything back the way + ** we found it. + */ + if( rc==SQLITE_OK ){ + sqlite3BtreeEnterAll(db); + rc = sqlite3Init(db, &zErrDyn); + sqlite3BtreeLeaveAll(db); + } + if( rc ){ + int iDb = db->nDb - 1; + assert( iDb>=2 ); + if( db->aDb[iDb].pBt ){ + sqlite3BtreeClose(db->aDb[iDb].pBt); + db->aDb[iDb].pBt = 0; + db->aDb[iDb].pSchema = 0; + } + sqlite3ResetAllSchemasOfConnection(db); + db->nDb = iDb; + if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){ + db->mallocFailed = 1; + sqlite3DbFree(db, zErrDyn); + zErrDyn = sqlite3MPrintf(db, "out of memory"); + }else if( zErrDyn==0 ){ + zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile); + } + goto attach_error; + } + + return; + +attach_error: + /* Return an error if we get here */ + if( zErrDyn ){ + sqlite3_result_error(context, zErrDyn, -1); + sqlite3DbFree(db, zErrDyn); + } + if( rc ) sqlite3_result_error_code(context, rc); +} + +/* +** An SQL user-function registered to do the work of an DETACH statement. The +** three arguments to the function come directly from a detach statement: +** +** DETACH DATABASE x +** +** SELECT sqlite_detach(x) +*/ +static void detachFunc( + sqlite3_context *context, + int NotUsed, + sqlite3_value **argv +){ + const char *zName = (const char *)sqlite3_value_text(argv[0]); + sqlite3 *db = sqlite3_context_db_handle(context); + int i; + Db *pDb = 0; + char zErr[128]; + + UNUSED_PARAMETER(NotUsed); + + if( zName==0 ) zName = ""; + for(i=0; inDb; i++){ + pDb = &db->aDb[i]; + if( pDb->pBt==0 ) continue; + if( sqlite3StrICmp(pDb->zName, zName)==0 ) break; + } + + if( i>=db->nDb ){ + sqlite3_snprintf(sizeof(zErr),zErr, "no such database: %s", zName); + goto detach_error; + } + if( i<2 ){ + sqlite3_snprintf(sizeof(zErr),zErr, "cannot detach database %s", zName); + goto detach_error; + } + if( !db->autoCommit ){ + sqlite3_snprintf(sizeof(zErr), zErr, + "cannot DETACH database within transaction"); + goto detach_error; + } + if( sqlite3BtreeIsInReadTrans(pDb->pBt) || sqlite3BtreeIsInBackup(pDb->pBt) ){ + sqlite3_snprintf(sizeof(zErr),zErr, "database %s is locked", zName); + goto detach_error; + } + + sqlite3BtreeClose(pDb->pBt); + pDb->pBt = 0; + pDb->pSchema = 0; + sqlite3ResetAllSchemasOfConnection(db); + return; + +detach_error: + sqlite3_result_error(context, zErr, -1); +} + +/* +** This procedure generates VDBE code for a single invocation of either the +** sqlite_detach() or sqlite_attach() SQL user functions. +*/ +static void codeAttach( + Parse *pParse, /* The parser context */ + int type, /* Either SQLITE_ATTACH or SQLITE_DETACH */ + FuncDef const *pFunc,/* FuncDef wrapper for detachFunc() or attachFunc() */ + Expr *pAuthArg, /* Expression to pass to authorization callback */ + Expr *pFilename, /* Name of database file */ + Expr *pDbname, /* Name of the database to use internally */ + Expr *pKey /* Database key for encryption extension */ +){ + int rc; + NameContext sName; + Vdbe *v; + sqlite3* db = pParse->db; + int regArgs; + + memset(&sName, 0, sizeof(NameContext)); + sName.pParse = pParse; + + if( + SQLITE_OK!=(rc = resolveAttachExpr(&sName, pFilename)) || + SQLITE_OK!=(rc = resolveAttachExpr(&sName, pDbname)) || + SQLITE_OK!=(rc = resolveAttachExpr(&sName, pKey)) + ){ + pParse->nErr++; + goto attach_end; + } + +#ifndef SQLITE_OMIT_AUTHORIZATION + if( pAuthArg ){ + char *zAuthArg; + if( pAuthArg->op==TK_STRING ){ + zAuthArg = pAuthArg->u.zToken; + }else{ + zAuthArg = 0; + } + rc = sqlite3AuthCheck(pParse, type, zAuthArg, 0, 0); + if(rc!=SQLITE_OK ){ + goto attach_end; + } + } +#endif /* SQLITE_OMIT_AUTHORIZATION */ + + + v = sqlite3GetVdbe(pParse); + regArgs = sqlite3GetTempRange(pParse, 4); + sqlite3ExprCode(pParse, pFilename, regArgs); + sqlite3ExprCode(pParse, pDbname, regArgs+1); + sqlite3ExprCode(pParse, pKey, regArgs+2); + + assert( v || db->mallocFailed ); + if( v ){ + sqlite3VdbeAddOp3(v, OP_Function, 0, regArgs+3-pFunc->nArg, regArgs+3); + assert( pFunc->nArg==-1 || (pFunc->nArg&0xff)==pFunc->nArg ); + sqlite3VdbeChangeP5(v, (u8)(pFunc->nArg)); + sqlite3VdbeChangeP4(v, -1, (char *)pFunc, P4_FUNCDEF); + + /* Code an OP_Expire. For an ATTACH statement, set P1 to true (expire this + ** statement only). For DETACH, set it to false (expire all existing + ** statements). + */ + sqlite3VdbeAddOp1(v, OP_Expire, (type==SQLITE_ATTACH)); + } + +attach_end: + sqlite3ExprDelete(db, pFilename); + sqlite3ExprDelete(db, pDbname); + sqlite3ExprDelete(db, pKey); +} + +/* +** Called by the parser to compile a DETACH statement. +** +** DETACH pDbname +*/ +SQLITE_PRIVATE void sqlite3Detach(Parse *pParse, Expr *pDbname){ + static const FuncDef detach_func = { + 1, /* nArg */ + SQLITE_UTF8, /* funcFlags */ + 0, /* pUserData */ + 0, /* pNext */ + detachFunc, /* xFunc */ + 0, /* xStep */ + 0, /* xFinalize */ + "sqlite_detach", /* zName */ + 0, /* pHash */ + 0 /* pDestructor */ + }; + codeAttach(pParse, SQLITE_DETACH, &detach_func, pDbname, 0, 0, pDbname); +} + +/* +** Called by the parser to compile an ATTACH statement. +** +** ATTACH p AS pDbname KEY pKey +*/ +SQLITE_PRIVATE void sqlite3Attach(Parse *pParse, Expr *p, Expr *pDbname, Expr *pKey){ + static const FuncDef attach_func = { + 3, /* nArg */ + SQLITE_UTF8, /* funcFlags */ + 0, /* pUserData */ + 0, /* pNext */ + attachFunc, /* xFunc */ + 0, /* xStep */ + 0, /* xFinalize */ + "sqlite_attach", /* zName */ + 0, /* pHash */ + 0 /* pDestructor */ + }; + codeAttach(pParse, SQLITE_ATTACH, &attach_func, p, p, pDbname, pKey); +} +#endif /* SQLITE_OMIT_ATTACH */ + +/* +** Initialize a DbFixer structure. This routine must be called prior +** to passing the structure to one of the sqliteFixAAAA() routines below. +*/ +SQLITE_PRIVATE void sqlite3FixInit( + DbFixer *pFix, /* The fixer to be initialized */ + Parse *pParse, /* Error messages will be written here */ + int iDb, /* This is the database that must be used */ + const char *zType, /* "view", "trigger", or "index" */ + const Token *pName /* Name of the view, trigger, or index */ +){ + sqlite3 *db; + + db = pParse->db; + assert( db->nDb>iDb ); + pFix->pParse = pParse; + pFix->zDb = db->aDb[iDb].zName; + pFix->pSchema = db->aDb[iDb].pSchema; + pFix->zType = zType; + pFix->pName = pName; + pFix->bVarOnly = (iDb==1); +} + +/* +** The following set of routines walk through the parse tree and assign +** a specific database to all table references where the database name +** was left unspecified in the original SQL statement. The pFix structure +** must have been initialized by a prior call to sqlite3FixInit(). +** +** These routines are used to make sure that an index, trigger, or +** view in one database does not refer to objects in a different database. +** (Exception: indices, triggers, and views in the TEMP database are +** allowed to refer to anything.) If a reference is explicitly made +** to an object in a different database, an error message is added to +** pParse->zErrMsg and these routines return non-zero. If everything +** checks out, these routines return 0. +*/ +SQLITE_PRIVATE int sqlite3FixSrcList( + DbFixer *pFix, /* Context of the fixation */ + SrcList *pList /* The Source list to check and modify */ +){ + int i; + const char *zDb; + struct SrcList_item *pItem; + + if( NEVER(pList==0) ) return 0; + zDb = pFix->zDb; + for(i=0, pItem=pList->a; inSrc; i++, pItem++){ + if( pFix->bVarOnly==0 ){ + if( pItem->zDatabase && sqlite3StrICmp(pItem->zDatabase, zDb) ){ + sqlite3ErrorMsg(pFix->pParse, + "%s %T cannot reference objects in database %s", + pFix->zType, pFix->pName, pItem->zDatabase); + return 1; + } + sqlite3DbFree(pFix->pParse->db, pItem->zDatabase); + pItem->zDatabase = 0; + pItem->pSchema = pFix->pSchema; + } +#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) + if( sqlite3FixSelect(pFix, pItem->pSelect) ) return 1; + if( sqlite3FixExpr(pFix, pItem->pOn) ) return 1; +#endif + } + return 0; +} +#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) +SQLITE_PRIVATE int sqlite3FixSelect( + DbFixer *pFix, /* Context of the fixation */ + Select *pSelect /* The SELECT statement to be fixed to one database */ +){ + while( pSelect ){ + if( sqlite3FixExprList(pFix, pSelect->pEList) ){ + return 1; + } + if( sqlite3FixSrcList(pFix, pSelect->pSrc) ){ + return 1; + } + if( sqlite3FixExpr(pFix, pSelect->pWhere) ){ + return 1; + } + if( sqlite3FixExprList(pFix, pSelect->pGroupBy) ){ + return 1; + } + if( sqlite3FixExpr(pFix, pSelect->pHaving) ){ + return 1; + } + if( sqlite3FixExprList(pFix, pSelect->pOrderBy) ){ + return 1; + } + if( sqlite3FixExpr(pFix, pSelect->pLimit) ){ + return 1; + } + if( sqlite3FixExpr(pFix, pSelect->pOffset) ){ + return 1; + } + pSelect = pSelect->pPrior; + } + return 0; +} +SQLITE_PRIVATE int sqlite3FixExpr( + DbFixer *pFix, /* Context of the fixation */ + Expr *pExpr /* The expression to be fixed to one database */ +){ + while( pExpr ){ + if( pExpr->op==TK_VARIABLE ){ + if( pFix->pParse->db->init.busy ){ + pExpr->op = TK_NULL; + }else{ + sqlite3ErrorMsg(pFix->pParse, "%s cannot use variables", pFix->zType); + return 1; + } + } + if( ExprHasProperty(pExpr, EP_TokenOnly) ) break; + if( ExprHasProperty(pExpr, EP_xIsSelect) ){ + if( sqlite3FixSelect(pFix, pExpr->x.pSelect) ) return 1; + }else{ + if( sqlite3FixExprList(pFix, pExpr->x.pList) ) return 1; + } + if( sqlite3FixExpr(pFix, pExpr->pRight) ){ + return 1; + } + pExpr = pExpr->pLeft; + } + return 0; +} +SQLITE_PRIVATE int sqlite3FixExprList( + DbFixer *pFix, /* Context of the fixation */ + ExprList *pList /* The expression to be fixed to one database */ +){ + int i; + struct ExprList_item *pItem; + if( pList==0 ) return 0; + for(i=0, pItem=pList->a; inExpr; i++, pItem++){ + if( sqlite3FixExpr(pFix, pItem->pExpr) ){ + return 1; + } + } + return 0; +} +#endif + +#ifndef SQLITE_OMIT_TRIGGER +SQLITE_PRIVATE int sqlite3FixTriggerStep( + DbFixer *pFix, /* Context of the fixation */ + TriggerStep *pStep /* The trigger step be fixed to one database */ +){ + while( pStep ){ + if( sqlite3FixSelect(pFix, pStep->pSelect) ){ + return 1; + } + if( sqlite3FixExpr(pFix, pStep->pWhere) ){ + return 1; + } + if( sqlite3FixExprList(pFix, pStep->pExprList) ){ + return 1; + } + pStep = pStep->pNext; + } + return 0; +} +#endif + +/************** End of attach.c **********************************************/ +/************** Begin file auth.c ********************************************/ +/* +** 2003 January 11 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code used to implement the sqlite3_set_authorizer() +** API. This facility is an optional feature of the library. Embedded +** systems that do not need this facility may omit it by recompiling +** the library with -DSQLITE_OMIT_AUTHORIZATION=1 +*/ + +/* +** All of the code in this file may be omitted by defining a single +** macro. +*/ +#ifndef SQLITE_OMIT_AUTHORIZATION + +/* +** Set or clear the access authorization function. +** +** The access authorization function is be called during the compilation +** phase to verify that the user has read and/or write access permission on +** various fields of the database. The first argument to the auth function +** is a copy of the 3rd argument to this routine. The second argument +** to the auth function is one of these constants: +** +** SQLITE_CREATE_INDEX +** SQLITE_CREATE_TABLE +** SQLITE_CREATE_TEMP_INDEX +** SQLITE_CREATE_TEMP_TABLE +** SQLITE_CREATE_TEMP_TRIGGER +** SQLITE_CREATE_TEMP_VIEW +** SQLITE_CREATE_TRIGGER +** SQLITE_CREATE_VIEW +** SQLITE_DELETE +** SQLITE_DROP_INDEX +** SQLITE_DROP_TABLE +** SQLITE_DROP_TEMP_INDEX +** SQLITE_DROP_TEMP_TABLE +** SQLITE_DROP_TEMP_TRIGGER +** SQLITE_DROP_TEMP_VIEW +** SQLITE_DROP_TRIGGER +** SQLITE_DROP_VIEW +** SQLITE_INSERT +** SQLITE_PRAGMA +** SQLITE_READ +** SQLITE_SELECT +** SQLITE_TRANSACTION +** SQLITE_UPDATE +** +** The third and fourth arguments to the auth function are the name of +** the table and the column that are being accessed. The auth function +** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If +** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY +** means that the SQL statement will never-run - the sqlite3_exec() call +** will return with an error. SQLITE_IGNORE means that the SQL statement +** should run but attempts to read the specified column will return NULL +** and attempts to write the column will be ignored. +** +** Setting the auth function to NULL disables this hook. The default +** setting of the auth function is NULL. +*/ +SQLITE_API int sqlite3_set_authorizer( + sqlite3 *db, + int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), + void *pArg +){ + sqlite3_mutex_enter(db->mutex); + db->xAuth = xAuth; + db->pAuthArg = pArg; + sqlite3ExpirePreparedStatements(db); + sqlite3_mutex_leave(db->mutex); + return SQLITE_OK; +} + +/* +** Write an error message into pParse->zErrMsg that explains that the +** user-supplied authorization function returned an illegal value. +*/ +static void sqliteAuthBadReturnCode(Parse *pParse){ + sqlite3ErrorMsg(pParse, "authorizer malfunction"); + pParse->rc = SQLITE_ERROR; +} + +/* +** Invoke the authorization callback for permission to read column zCol from +** table zTab in database zDb. This function assumes that an authorization +** callback has been registered (i.e. that sqlite3.xAuth is not NULL). +** +** If SQLITE_IGNORE is returned and pExpr is not NULL, then pExpr is changed +** to an SQL NULL expression. Otherwise, if pExpr is NULL, then SQLITE_IGNORE +** is treated as SQLITE_DENY. In this case an error is left in pParse. +*/ +SQLITE_PRIVATE int sqlite3AuthReadCol( + Parse *pParse, /* The parser context */ + const char *zTab, /* Table name */ + const char *zCol, /* Column name */ + int iDb /* Index of containing database. */ +){ + sqlite3 *db = pParse->db; /* Database handle */ + char *zDb = db->aDb[iDb].zName; /* Name of attached database */ + int rc; /* Auth callback return code */ + + rc = db->xAuth(db->pAuthArg, SQLITE_READ, zTab,zCol,zDb,pParse->zAuthContext); + if( rc==SQLITE_DENY ){ + if( db->nDb>2 || iDb!=0 ){ + sqlite3ErrorMsg(pParse, "access to %s.%s.%s is prohibited",zDb,zTab,zCol); + }else{ + sqlite3ErrorMsg(pParse, "access to %s.%s is prohibited", zTab, zCol); + } + pParse->rc = SQLITE_AUTH; + }else if( rc!=SQLITE_IGNORE && rc!=SQLITE_OK ){ + sqliteAuthBadReturnCode(pParse); + } + return rc; +} + +/* +** The pExpr should be a TK_COLUMN expression. The table referred to +** is in pTabList or else it is the NEW or OLD table of a trigger. +** Check to see if it is OK to read this particular column. +** +** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN +** instruction into a TK_NULL. If the auth function returns SQLITE_DENY, +** then generate an error. +*/ +SQLITE_PRIVATE void sqlite3AuthRead( + Parse *pParse, /* The parser context */ + Expr *pExpr, /* The expression to check authorization on */ + Schema *pSchema, /* The schema of the expression */ + SrcList *pTabList /* All table that pExpr might refer to */ +){ + sqlite3 *db = pParse->db; + Table *pTab = 0; /* The table being read */ + const char *zCol; /* Name of the column of the table */ + int iSrc; /* Index in pTabList->a[] of table being read */ + int iDb; /* The index of the database the expression refers to */ + int iCol; /* Index of column in table */ + + if( db->xAuth==0 ) return; + iDb = sqlite3SchemaToIndex(pParse->db, pSchema); + if( iDb<0 ){ + /* An attempt to read a column out of a subquery or other + ** temporary table. */ + return; + } + + assert( pExpr->op==TK_COLUMN || pExpr->op==TK_TRIGGER ); + if( pExpr->op==TK_TRIGGER ){ + pTab = pParse->pTriggerTab; + }else{ + assert( pTabList ); + for(iSrc=0; ALWAYS(iSrcnSrc); iSrc++){ + if( pExpr->iTable==pTabList->a[iSrc].iCursor ){ + pTab = pTabList->a[iSrc].pTab; + break; + } + } + } + iCol = pExpr->iColumn; + if( NEVER(pTab==0) ) return; + + if( iCol>=0 ){ + assert( iColnCol ); + zCol = pTab->aCol[iCol].zName; + }else if( pTab->iPKey>=0 ){ + assert( pTab->iPKeynCol ); + zCol = pTab->aCol[pTab->iPKey].zName; + }else{ + zCol = "ROWID"; + } + assert( iDb>=0 && iDbnDb ); + if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) ){ + pExpr->op = TK_NULL; + } +} + +/* +** Do an authorization check using the code and arguments given. Return +** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY +** is returned, then the error count and error message in pParse are +** modified appropriately. +*/ +SQLITE_PRIVATE int sqlite3AuthCheck( + Parse *pParse, + int code, + const char *zArg1, + const char *zArg2, + const char *zArg3 +){ + sqlite3 *db = pParse->db; + int rc; + + /* Don't do any authorization checks if the database is initialising + ** or if the parser is being invoked from within sqlite3_declare_vtab. + */ + if( db->init.busy || IN_DECLARE_VTAB ){ + return SQLITE_OK; + } + + if( db->xAuth==0 ){ + return SQLITE_OK; + } + rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext); + if( rc==SQLITE_DENY ){ + sqlite3ErrorMsg(pParse, "not authorized"); + pParse->rc = SQLITE_AUTH; + }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){ + rc = SQLITE_DENY; + sqliteAuthBadReturnCode(pParse); + } + return rc; +} + +/* +** Push an authorization context. After this routine is called, the +** zArg3 argument to authorization callbacks will be zContext until +** popped. Or if pParse==0, this routine is a no-op. +*/ +SQLITE_PRIVATE void sqlite3AuthContextPush( + Parse *pParse, + AuthContext *pContext, + const char *zContext +){ + assert( pParse ); + pContext->pParse = pParse; + pContext->zAuthContext = pParse->zAuthContext; + pParse->zAuthContext = zContext; +} + +/* +** Pop an authorization context that was previously pushed +** by sqlite3AuthContextPush +*/ +SQLITE_PRIVATE void sqlite3AuthContextPop(AuthContext *pContext){ + if( pContext->pParse ){ + pContext->pParse->zAuthContext = pContext->zAuthContext; + pContext->pParse = 0; + } +} + +#endif /* SQLITE_OMIT_AUTHORIZATION */ + +/************** End of auth.c ************************************************/ +/************** Begin file build.c *******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains C code routines that are called by the SQLite parser +** when syntax rules are reduced. The routines in this file handle the +** following kinds of SQL syntax: +** +** CREATE TABLE +** DROP TABLE +** CREATE INDEX +** DROP INDEX +** creating ID lists +** BEGIN TRANSACTION +** COMMIT +** ROLLBACK +*/ + +/* +** This routine is called when a new SQL statement is beginning to +** be parsed. Initialize the pParse structure as needed. +*/ +SQLITE_PRIVATE void sqlite3BeginParse(Parse *pParse, int explainFlag){ + pParse->explain = (u8)explainFlag; + pParse->nVar = 0; +} + +#ifndef SQLITE_OMIT_SHARED_CACHE +/* +** The TableLock structure is only used by the sqlite3TableLock() and +** codeTableLocks() functions. +*/ +struct TableLock { + int iDb; /* The database containing the table to be locked */ + int iTab; /* The root page of the table to be locked */ + u8 isWriteLock; /* True for write lock. False for a read lock */ + const char *zName; /* Name of the table */ +}; + +/* +** Record the fact that we want to lock a table at run-time. +** +** The table to be locked has root page iTab and is found in database iDb. +** A read or a write lock can be taken depending on isWritelock. +** +** This routine just records the fact that the lock is desired. The +** code to make the lock occur is generated by a later call to +** codeTableLocks() which occurs during sqlite3FinishCoding(). +*/ +SQLITE_PRIVATE void sqlite3TableLock( + Parse *pParse, /* Parsing context */ + int iDb, /* Index of the database containing the table to lock */ + int iTab, /* Root page number of the table to be locked */ + u8 isWriteLock, /* True for a write lock */ + const char *zName /* Name of the table to be locked */ +){ + Parse *pToplevel = sqlite3ParseToplevel(pParse); + int i; + int nBytes; + TableLock *p; + assert( iDb>=0 ); + + for(i=0; inTableLock; i++){ + p = &pToplevel->aTableLock[i]; + if( p->iDb==iDb && p->iTab==iTab ){ + p->isWriteLock = (p->isWriteLock || isWriteLock); + return; + } + } + + nBytes = sizeof(TableLock) * (pToplevel->nTableLock+1); + pToplevel->aTableLock = + sqlite3DbReallocOrFree(pToplevel->db, pToplevel->aTableLock, nBytes); + if( pToplevel->aTableLock ){ + p = &pToplevel->aTableLock[pToplevel->nTableLock++]; + p->iDb = iDb; + p->iTab = iTab; + p->isWriteLock = isWriteLock; + p->zName = zName; + }else{ + pToplevel->nTableLock = 0; + pToplevel->db->mallocFailed = 1; + } +} + +/* +** Code an OP_TableLock instruction for each table locked by the +** statement (configured by calls to sqlite3TableLock()). +*/ +static void codeTableLocks(Parse *pParse){ + int i; + Vdbe *pVdbe; + + pVdbe = sqlite3GetVdbe(pParse); + assert( pVdbe!=0 ); /* sqlite3GetVdbe cannot fail: VDBE already allocated */ + + for(i=0; inTableLock; i++){ + TableLock *p = &pParse->aTableLock[i]; + int p1 = p->iDb; + sqlite3VdbeAddOp4(pVdbe, OP_TableLock, p1, p->iTab, p->isWriteLock, + p->zName, P4_STATIC); + } +} +#else + #define codeTableLocks(x) +#endif + +/* +** This routine is called after a single SQL statement has been +** parsed and a VDBE program to execute that statement has been +** prepared. This routine puts the finishing touches on the +** VDBE program and resets the pParse structure for the next +** parse. +** +** Note that if an error occurred, it might be the case that +** no VDBE code was generated. +*/ +SQLITE_PRIVATE void sqlite3FinishCoding(Parse *pParse){ + sqlite3 *db; + Vdbe *v; + + assert( pParse->pToplevel==0 ); + db = pParse->db; + if( db->mallocFailed ) return; + if( pParse->nested ) return; + if( pParse->nErr ) return; + + /* Begin by generating some termination code at the end of the + ** vdbe program + */ + v = sqlite3GetVdbe(pParse); + assert( !pParse->isMultiWrite + || sqlite3VdbeAssertMayAbort(v, pParse->mayAbort)); + if( v ){ + while( sqlite3VdbeDeletePriorOpcode(v, OP_Close) ){} + sqlite3VdbeAddOp0(v, OP_Halt); + + /* The cookie mask contains one bit for each database file open. + ** (Bit 0 is for main, bit 1 is for temp, and so forth.) Bits are + ** set for each database that is used. Generate code to start a + ** transaction on each used database and to verify the schema cookie + ** on each used database. + */ + if( db->mallocFailed==0 && (pParse->cookieMask || pParse->pConstExpr) ){ + yDbMask mask; + int iDb, i; + assert( sqlite3VdbeGetOp(v, 0)->opcode==OP_Init ); + sqlite3VdbeJumpHere(v, 0); + for(iDb=0, mask=1; iDbnDb; mask<<=1, iDb++){ + if( (mask & pParse->cookieMask)==0 ) continue; + sqlite3VdbeUsesBtree(v, iDb); + sqlite3VdbeAddOp4Int(v, + OP_Transaction, /* Opcode */ + iDb, /* P1 */ + (mask & pParse->writeMask)!=0, /* P2 */ + pParse->cookieValue[iDb], /* P3 */ + db->aDb[iDb].pSchema->iGeneration /* P4 */ + ); + if( db->init.busy==0 ) sqlite3VdbeChangeP5(v, 1); + } +#ifndef SQLITE_OMIT_VIRTUALTABLE + for(i=0; inVtabLock; i++){ + char *vtab = (char *)sqlite3GetVTable(db, pParse->apVtabLock[i]); + sqlite3VdbeAddOp4(v, OP_VBegin, 0, 0, 0, vtab, P4_VTAB); + } + pParse->nVtabLock = 0; +#endif + + /* Once all the cookies have been verified and transactions opened, + ** obtain the required table-locks. This is a no-op unless the + ** shared-cache feature is enabled. + */ + codeTableLocks(pParse); + + /* Initialize any AUTOINCREMENT data structures required. + */ + sqlite3AutoincrementBegin(pParse); + + /* Code constant expressions that where factored out of inner loops */ + if( pParse->pConstExpr ){ + ExprList *pEL = pParse->pConstExpr; + pParse->okConstFactor = 0; + for(i=0; inExpr; i++){ + sqlite3ExprCode(pParse, pEL->a[i].pExpr, pEL->a[i].u.iConstExprReg); + } + } + + /* Finally, jump back to the beginning of the executable code. */ + sqlite3VdbeAddOp2(v, OP_Goto, 0, 1); + } + } + + + /* Get the VDBE program ready for execution + */ + if( v && ALWAYS(pParse->nErr==0) && !db->mallocFailed ){ + assert( pParse->iCacheLevel==0 ); /* Disables and re-enables match */ + /* A minimum of one cursor is required if autoincrement is used + * See ticket [a696379c1f08866] */ + if( pParse->pAinc!=0 && pParse->nTab==0 ) pParse->nTab = 1; + sqlite3VdbeMakeReady(v, pParse); + pParse->rc = SQLITE_DONE; + pParse->colNamesSet = 0; + }else{ + pParse->rc = SQLITE_ERROR; + } + pParse->nTab = 0; + pParse->nMem = 0; + pParse->nSet = 0; + pParse->nVar = 0; + pParse->cookieMask = 0; +} + +/* +** Run the parser and code generator recursively in order to generate +** code for the SQL statement given onto the end of the pParse context +** currently under construction. When the parser is run recursively +** this way, the final OP_Halt is not appended and other initialization +** and finalization steps are omitted because those are handling by the +** outermost parser. +** +** Not everything is nestable. This facility is designed to permit +** INSERT, UPDATE, and DELETE operations against SQLITE_MASTER. Use +** care if you decide to try to use this routine for some other purposes. +*/ +SQLITE_PRIVATE void sqlite3NestedParse(Parse *pParse, const char *zFormat, ...){ + va_list ap; + char *zSql; + char *zErrMsg = 0; + sqlite3 *db = pParse->db; +# define SAVE_SZ (sizeof(Parse) - offsetof(Parse,nVar)) + char saveBuf[SAVE_SZ]; + + if( pParse->nErr ) return; + assert( pParse->nested<10 ); /* Nesting should only be of limited depth */ + va_start(ap, zFormat); + zSql = sqlite3VMPrintf(db, zFormat, ap); + va_end(ap); + if( zSql==0 ){ + return; /* A malloc must have failed */ + } + pParse->nested++; + memcpy(saveBuf, &pParse->nVar, SAVE_SZ); + memset(&pParse->nVar, 0, SAVE_SZ); + sqlite3RunParser(pParse, zSql, &zErrMsg); + sqlite3DbFree(db, zErrMsg); + sqlite3DbFree(db, zSql); + memcpy(&pParse->nVar, saveBuf, SAVE_SZ); + pParse->nested--; +} + +/* +** Locate the in-memory structure that describes a particular database +** table given the name of that table and (optionally) the name of the +** database containing the table. Return NULL if not found. +** +** If zDatabase is 0, all databases are searched for the table and the +** first matching table is returned. (No checking for duplicate table +** names is done.) The search order is TEMP first, then MAIN, then any +** auxiliary databases added using the ATTACH command. +** +** See also sqlite3LocateTable(). +*/ +SQLITE_PRIVATE Table *sqlite3FindTable(sqlite3 *db, const char *zName, const char *zDatabase){ + Table *p = 0; + int i; + int nName; + assert( zName!=0 ); + nName = sqlite3Strlen30(zName); + /* All mutexes are required for schema access. Make sure we hold them. */ + assert( zDatabase!=0 || sqlite3BtreeHoldsAllMutexes(db) ); + for(i=OMIT_TEMPDB; inDb; i++){ + int j = (i<2) ? i^1 : i; /* Search TEMP before MAIN */ + if( zDatabase!=0 && sqlite3StrICmp(zDatabase, db->aDb[j].zName) ) continue; + assert( sqlite3SchemaMutexHeld(db, j, 0) ); + p = sqlite3HashFind(&db->aDb[j].pSchema->tblHash, zName, nName); + if( p ) break; + } + return p; +} + +/* +** Locate the in-memory structure that describes a particular database +** table given the name of that table and (optionally) the name of the +** database containing the table. Return NULL if not found. Also leave an +** error message in pParse->zErrMsg. +** +** The difference between this routine and sqlite3FindTable() is that this +** routine leaves an error message in pParse->zErrMsg where +** sqlite3FindTable() does not. +*/ +SQLITE_PRIVATE Table *sqlite3LocateTable( + Parse *pParse, /* context in which to report errors */ + int isView, /* True if looking for a VIEW rather than a TABLE */ + const char *zName, /* Name of the table we are looking for */ + const char *zDbase /* Name of the database. Might be NULL */ +){ + Table *p; + + /* Read the database schema. If an error occurs, leave an error message + ** and code in pParse and return NULL. */ + if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ + return 0; + } + + p = sqlite3FindTable(pParse->db, zName, zDbase); + if( p==0 ){ + const char *zMsg = isView ? "no such view" : "no such table"; + if( zDbase ){ + sqlite3ErrorMsg(pParse, "%s: %s.%s", zMsg, zDbase, zName); + }else{ + sqlite3ErrorMsg(pParse, "%s: %s", zMsg, zName); + } + pParse->checkSchema = 1; + } + return p; +} + +/* +** Locate the table identified by *p. +** +** This is a wrapper around sqlite3LocateTable(). The difference between +** sqlite3LocateTable() and this function is that this function restricts +** the search to schema (p->pSchema) if it is not NULL. p->pSchema may be +** non-NULL if it is part of a view or trigger program definition. See +** sqlite3FixSrcList() for details. +*/ +SQLITE_PRIVATE Table *sqlite3LocateTableItem( + Parse *pParse, + int isView, + struct SrcList_item *p +){ + const char *zDb; + assert( p->pSchema==0 || p->zDatabase==0 ); + if( p->pSchema ){ + int iDb = sqlite3SchemaToIndex(pParse->db, p->pSchema); + zDb = pParse->db->aDb[iDb].zName; + }else{ + zDb = p->zDatabase; + } + return sqlite3LocateTable(pParse, isView, p->zName, zDb); +} + +/* +** Locate the in-memory structure that describes +** a particular index given the name of that index +** and the name of the database that contains the index. +** Return NULL if not found. +** +** If zDatabase is 0, all databases are searched for the +** table and the first matching index is returned. (No checking +** for duplicate index names is done.) The search order is +** TEMP first, then MAIN, then any auxiliary databases added +** using the ATTACH command. +*/ +SQLITE_PRIVATE Index *sqlite3FindIndex(sqlite3 *db, const char *zName, const char *zDb){ + Index *p = 0; + int i; + int nName = sqlite3Strlen30(zName); + /* All mutexes are required for schema access. Make sure we hold them. */ + assert( zDb!=0 || sqlite3BtreeHoldsAllMutexes(db) ); + for(i=OMIT_TEMPDB; inDb; i++){ + int j = (i<2) ? i^1 : i; /* Search TEMP before MAIN */ + Schema *pSchema = db->aDb[j].pSchema; + assert( pSchema ); + if( zDb && sqlite3StrICmp(zDb, db->aDb[j].zName) ) continue; + assert( sqlite3SchemaMutexHeld(db, j, 0) ); + p = sqlite3HashFind(&pSchema->idxHash, zName, nName); + if( p ) break; + } + return p; +} + +/* +** Reclaim the memory used by an index +*/ +static void freeIndex(sqlite3 *db, Index *p){ +#ifndef SQLITE_OMIT_ANALYZE + sqlite3DeleteIndexSamples(db, p); +#endif + if( db==0 || db->pnBytesFreed==0 ) sqlite3KeyInfoUnref(p->pKeyInfo); + sqlite3ExprDelete(db, p->pPartIdxWhere); + sqlite3DbFree(db, p->zColAff); + if( p->isResized ) sqlite3DbFree(db, p->azColl); + sqlite3DbFree(db, p); +} + +/* +** For the index called zIdxName which is found in the database iDb, +** unlike that index from its Table then remove the index from +** the index hash table and free all memory structures associated +** with the index. +*/ +SQLITE_PRIVATE void sqlite3UnlinkAndDeleteIndex(sqlite3 *db, int iDb, const char *zIdxName){ + Index *pIndex; + int len; + Hash *pHash; + + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + pHash = &db->aDb[iDb].pSchema->idxHash; + len = sqlite3Strlen30(zIdxName); + pIndex = sqlite3HashInsert(pHash, zIdxName, len, 0); + if( ALWAYS(pIndex) ){ + if( pIndex->pTable->pIndex==pIndex ){ + pIndex->pTable->pIndex = pIndex->pNext; + }else{ + Index *p; + /* Justification of ALWAYS(); The index must be on the list of + ** indices. */ + p = pIndex->pTable->pIndex; + while( ALWAYS(p) && p->pNext!=pIndex ){ p = p->pNext; } + if( ALWAYS(p && p->pNext==pIndex) ){ + p->pNext = pIndex->pNext; + } + } + freeIndex(db, pIndex); + } + db->flags |= SQLITE_InternChanges; +} + +/* +** Look through the list of open database files in db->aDb[] and if +** any have been closed, remove them from the list. Reallocate the +** db->aDb[] structure to a smaller size, if possible. +** +** Entry 0 (the "main" database) and entry 1 (the "temp" database) +** are never candidates for being collapsed. +*/ +SQLITE_PRIVATE void sqlite3CollapseDatabaseArray(sqlite3 *db){ + int i, j; + for(i=j=2; inDb; i++){ + struct Db *pDb = &db->aDb[i]; + if( pDb->pBt==0 ){ + sqlite3DbFree(db, pDb->zName); + pDb->zName = 0; + continue; + } + if( jaDb[j] = db->aDb[i]; + } + j++; + } + memset(&db->aDb[j], 0, (db->nDb-j)*sizeof(db->aDb[j])); + db->nDb = j; + if( db->nDb<=2 && db->aDb!=db->aDbStatic ){ + memcpy(db->aDbStatic, db->aDb, 2*sizeof(db->aDb[0])); + sqlite3DbFree(db, db->aDb); + db->aDb = db->aDbStatic; + } +} + +/* +** Reset the schema for the database at index iDb. Also reset the +** TEMP schema. +*/ +SQLITE_PRIVATE void sqlite3ResetOneSchema(sqlite3 *db, int iDb){ + Db *pDb; + assert( iDbnDb ); + + /* Case 1: Reset the single schema identified by iDb */ + pDb = &db->aDb[iDb]; + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + assert( pDb->pSchema!=0 ); + sqlite3SchemaClear(pDb->pSchema); + + /* If any database other than TEMP is reset, then also reset TEMP + ** since TEMP might be holding triggers that reference tables in the + ** other database. + */ + if( iDb!=1 ){ + pDb = &db->aDb[1]; + assert( pDb->pSchema!=0 ); + sqlite3SchemaClear(pDb->pSchema); + } + return; +} + +/* +** Erase all schema information from all attached databases (including +** "main" and "temp") for a single database connection. +*/ +SQLITE_PRIVATE void sqlite3ResetAllSchemasOfConnection(sqlite3 *db){ + int i; + sqlite3BtreeEnterAll(db); + for(i=0; inDb; i++){ + Db *pDb = &db->aDb[i]; + if( pDb->pSchema ){ + sqlite3SchemaClear(pDb->pSchema); + } + } + db->flags &= ~SQLITE_InternChanges; + sqlite3VtabUnlockList(db); + sqlite3BtreeLeaveAll(db); + sqlite3CollapseDatabaseArray(db); +} + +/* +** This routine is called when a commit occurs. +*/ +SQLITE_PRIVATE void sqlite3CommitInternalChanges(sqlite3 *db){ + db->flags &= ~SQLITE_InternChanges; +} + +/* +** Delete memory allocated for the column names of a table or view (the +** Table.aCol[] array). +*/ +static void sqliteDeleteColumnNames(sqlite3 *db, Table *pTable){ + int i; + Column *pCol; + assert( pTable!=0 ); + if( (pCol = pTable->aCol)!=0 ){ + for(i=0; inCol; i++, pCol++){ + sqlite3DbFree(db, pCol->zName); + sqlite3ExprDelete(db, pCol->pDflt); + sqlite3DbFree(db, pCol->zDflt); + sqlite3DbFree(db, pCol->zType); + sqlite3DbFree(db, pCol->zColl); + } + sqlite3DbFree(db, pTable->aCol); + } +} + +/* +** Remove the memory data structures associated with the given +** Table. No changes are made to disk by this routine. +** +** This routine just deletes the data structure. It does not unlink +** the table data structure from the hash table. But it does destroy +** memory structures of the indices and foreign keys associated with +** the table. +** +** The db parameter is optional. It is needed if the Table object +** contains lookaside memory. (Table objects in the schema do not use +** lookaside memory, but some ephemeral Table objects do.) Or the +** db parameter can be used with db->pnBytesFreed to measure the memory +** used by the Table object. +*/ +SQLITE_PRIVATE void sqlite3DeleteTable(sqlite3 *db, Table *pTable){ + Index *pIndex, *pNext; + TESTONLY( int nLookaside; ) /* Used to verify lookaside not used for schema */ + + assert( !pTable || pTable->nRef>0 ); + + /* Do not delete the table until the reference count reaches zero. */ + if( !pTable ) return; + if( ((!db || db->pnBytesFreed==0) && (--pTable->nRef)>0) ) return; + + /* Record the number of outstanding lookaside allocations in schema Tables + ** prior to doing any free() operations. Since schema Tables do not use + ** lookaside, this number should not change. */ + TESTONLY( nLookaside = (db && (pTable->tabFlags & TF_Ephemeral)==0) ? + db->lookaside.nOut : 0 ); + + /* Delete all indices associated with this table. */ + for(pIndex = pTable->pIndex; pIndex; pIndex=pNext){ + pNext = pIndex->pNext; + assert( pIndex->pSchema==pTable->pSchema ); + if( !db || db->pnBytesFreed==0 ){ + char *zName = pIndex->zName; + TESTONLY ( Index *pOld = ) sqlite3HashInsert( + &pIndex->pSchema->idxHash, zName, sqlite3Strlen30(zName), 0 + ); + assert( db==0 || sqlite3SchemaMutexHeld(db, 0, pIndex->pSchema) ); + assert( pOld==pIndex || pOld==0 ); + } + freeIndex(db, pIndex); + } + + /* Delete any foreign keys attached to this table. */ + sqlite3FkDelete(db, pTable); + + /* Delete the Table structure itself. + */ + sqliteDeleteColumnNames(db, pTable); + sqlite3DbFree(db, pTable->zName); + sqlite3DbFree(db, pTable->zColAff); + sqlite3SelectDelete(db, pTable->pSelect); +#ifndef SQLITE_OMIT_CHECK + sqlite3ExprListDelete(db, pTable->pCheck); +#endif +#ifndef SQLITE_OMIT_VIRTUALTABLE + sqlite3VtabClear(db, pTable); +#endif + sqlite3DbFree(db, pTable); + + /* Verify that no lookaside memory was used by schema tables */ + assert( nLookaside==0 || nLookaside==db->lookaside.nOut ); +} + +/* +** Unlink the given table from the hash tables and the delete the +** table structure with all its indices and foreign keys. +*/ +SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTable(sqlite3 *db, int iDb, const char *zTabName){ + Table *p; + Db *pDb; + + assert( db!=0 ); + assert( iDb>=0 && iDbnDb ); + assert( zTabName ); + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + testcase( zTabName[0]==0 ); /* Zero-length table names are allowed */ + pDb = &db->aDb[iDb]; + p = sqlite3HashInsert(&pDb->pSchema->tblHash, zTabName, + sqlite3Strlen30(zTabName),0); + sqlite3DeleteTable(db, p); + db->flags |= SQLITE_InternChanges; +} + +/* +** Given a token, return a string that consists of the text of that +** token. Space to hold the returned string +** is obtained from sqliteMalloc() and must be freed by the calling +** function. +** +** Any quotation marks (ex: "name", 'name', [name], or `name`) that +** surround the body of the token are removed. +** +** Tokens are often just pointers into the original SQL text and so +** are not \000 terminated and are not persistent. The returned string +** is \000 terminated and is persistent. +*/ +SQLITE_PRIVATE char *sqlite3NameFromToken(sqlite3 *db, Token *pName){ + char *zName; + if( pName ){ + zName = sqlite3DbStrNDup(db, (char*)pName->z, pName->n); + sqlite3Dequote(zName); + }else{ + zName = 0; + } + return zName; +} + +/* +** Open the sqlite_master table stored in database number iDb for +** writing. The table is opened using cursor 0. +*/ +SQLITE_PRIVATE void sqlite3OpenMasterTable(Parse *p, int iDb){ + Vdbe *v = sqlite3GetVdbe(p); + sqlite3TableLock(p, iDb, MASTER_ROOT, 1, SCHEMA_TABLE(iDb)); + sqlite3VdbeAddOp4Int(v, OP_OpenWrite, 0, MASTER_ROOT, iDb, 5); + if( p->nTab==0 ){ + p->nTab = 1; + } +} + +/* +** Parameter zName points to a nul-terminated buffer containing the name +** of a database ("main", "temp" or the name of an attached db). This +** function returns the index of the named database in db->aDb[], or +** -1 if the named db cannot be found. +*/ +SQLITE_PRIVATE int sqlite3FindDbName(sqlite3 *db, const char *zName){ + int i = -1; /* Database number */ + if( zName ){ + Db *pDb; + int n = sqlite3Strlen30(zName); + for(i=(db->nDb-1), pDb=&db->aDb[i]; i>=0; i--, pDb--){ + if( (!OMIT_TEMPDB || i!=1 ) && n==sqlite3Strlen30(pDb->zName) && + 0==sqlite3StrICmp(pDb->zName, zName) ){ + break; + } + } + } + return i; +} + +/* +** The token *pName contains the name of a database (either "main" or +** "temp" or the name of an attached db). This routine returns the +** index of the named database in db->aDb[], or -1 if the named db +** does not exist. +*/ +SQLITE_PRIVATE int sqlite3FindDb(sqlite3 *db, Token *pName){ + int i; /* Database number */ + char *zName; /* Name we are searching for */ + zName = sqlite3NameFromToken(db, pName); + i = sqlite3FindDbName(db, zName); + sqlite3DbFree(db, zName); + return i; +} + +/* The table or view or trigger name is passed to this routine via tokens +** pName1 and pName2. If the table name was fully qualified, for example: +** +** CREATE TABLE xxx.yyy (...); +** +** Then pName1 is set to "xxx" and pName2 "yyy". On the other hand if +** the table name is not fully qualified, i.e.: +** +** CREATE TABLE yyy(...); +** +** Then pName1 is set to "yyy" and pName2 is "". +** +** This routine sets the *ppUnqual pointer to point at the token (pName1 or +** pName2) that stores the unqualified table name. The index of the +** database "xxx" is returned. +*/ +SQLITE_PRIVATE int sqlite3TwoPartName( + Parse *pParse, /* Parsing and code generating context */ + Token *pName1, /* The "xxx" in the name "xxx.yyy" or "xxx" */ + Token *pName2, /* The "yyy" in the name "xxx.yyy" */ + Token **pUnqual /* Write the unqualified object name here */ +){ + int iDb; /* Database holding the object */ + sqlite3 *db = pParse->db; + + if( ALWAYS(pName2!=0) && pName2->n>0 ){ + if( db->init.busy ) { + sqlite3ErrorMsg(pParse, "corrupt database"); + pParse->nErr++; + return -1; + } + *pUnqual = pName2; + iDb = sqlite3FindDb(db, pName1); + if( iDb<0 ){ + sqlite3ErrorMsg(pParse, "unknown database %T", pName1); + pParse->nErr++; + return -1; + } + }else{ + assert( db->init.iDb==0 || db->init.busy ); + iDb = db->init.iDb; + *pUnqual = pName1; + } + return iDb; +} + +/* +** This routine is used to check if the UTF-8 string zName is a legal +** unqualified name for a new schema object (table, index, view or +** trigger). All names are legal except those that begin with the string +** "sqlite_" (in upper, lower or mixed case). This portion of the namespace +** is reserved for internal use. +*/ +SQLITE_PRIVATE int sqlite3CheckObjectName(Parse *pParse, const char *zName){ + if( !pParse->db->init.busy && pParse->nested==0 + && (pParse->db->flags & SQLITE_WriteSchema)==0 + && 0==sqlite3StrNICmp(zName, "sqlite_", 7) ){ + sqlite3ErrorMsg(pParse, "object name reserved for internal use: %s", zName); + return SQLITE_ERROR; + } + return SQLITE_OK; +} + +/* +** Return the PRIMARY KEY index of a table +*/ +SQLITE_PRIVATE Index *sqlite3PrimaryKeyIndex(Table *pTab){ + Index *p; + for(p=pTab->pIndex; p && !IsPrimaryKeyIndex(p); p=p->pNext){} + return p; +} + +/* +** Return the column of index pIdx that corresponds to table +** column iCol. Return -1 if not found. +*/ +SQLITE_PRIVATE i16 sqlite3ColumnOfIndex(Index *pIdx, i16 iCol){ + int i; + for(i=0; inColumn; i++){ + if( iCol==pIdx->aiColumn[i] ) return i; + } + return -1; +} + +/* +** Begin constructing a new table representation in memory. This is +** the first of several action routines that get called in response +** to a CREATE TABLE statement. In particular, this routine is called +** after seeing tokens "CREATE" and "TABLE" and the table name. The isTemp +** flag is true if the table should be stored in the auxiliary database +** file instead of in the main database file. This is normally the case +** when the "TEMP" or "TEMPORARY" keyword occurs in between +** CREATE and TABLE. +** +** The new table record is initialized and put in pParse->pNewTable. +** As more of the CREATE TABLE statement is parsed, additional action +** routines will be called to add more information to this record. +** At the end of the CREATE TABLE statement, the sqlite3EndTable() routine +** is called to complete the construction of the new table record. +*/ +SQLITE_PRIVATE void sqlite3StartTable( + Parse *pParse, /* Parser context */ + Token *pName1, /* First part of the name of the table or view */ + Token *pName2, /* Second part of the name of the table or view */ + int isTemp, /* True if this is a TEMP table */ + int isView, /* True if this is a VIEW */ + int isVirtual, /* True if this is a VIRTUAL table */ + int noErr /* Do nothing if table already exists */ +){ + Table *pTable; + char *zName = 0; /* The name of the new table */ + sqlite3 *db = pParse->db; + Vdbe *v; + int iDb; /* Database number to create the table in */ + Token *pName; /* Unqualified name of the table to create */ + + /* The table or view name to create is passed to this routine via tokens + ** pName1 and pName2. If the table name was fully qualified, for example: + ** + ** CREATE TABLE xxx.yyy (...); + ** + ** Then pName1 is set to "xxx" and pName2 "yyy". On the other hand if + ** the table name is not fully qualified, i.e.: + ** + ** CREATE TABLE yyy(...); + ** + ** Then pName1 is set to "yyy" and pName2 is "". + ** + ** The call below sets the pName pointer to point at the token (pName1 or + ** pName2) that stores the unqualified table name. The variable iDb is + ** set to the index of the database that the table or view is to be + ** created in. + */ + iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName); + if( iDb<0 ) return; + if( !OMIT_TEMPDB && isTemp && pName2->n>0 && iDb!=1 ){ + /* If creating a temp table, the name may not be qualified. Unless + ** the database name is "temp" anyway. */ + sqlite3ErrorMsg(pParse, "temporary table name must be unqualified"); + return; + } + if( !OMIT_TEMPDB && isTemp ) iDb = 1; + + pParse->sNameToken = *pName; + zName = sqlite3NameFromToken(db, pName); + if( zName==0 ) return; + if( SQLITE_OK!=sqlite3CheckObjectName(pParse, zName) ){ + goto begin_table_error; + } + if( db->init.iDb==1 ) isTemp = 1; +#ifndef SQLITE_OMIT_AUTHORIZATION + assert( (isTemp & 1)==isTemp ); + { + int code; + char *zDb = db->aDb[iDb].zName; + if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(isTemp), 0, zDb) ){ + goto begin_table_error; + } + if( isView ){ + if( !OMIT_TEMPDB && isTemp ){ + code = SQLITE_CREATE_TEMP_VIEW; + }else{ + code = SQLITE_CREATE_VIEW; + } + }else{ + if( !OMIT_TEMPDB && isTemp ){ + code = SQLITE_CREATE_TEMP_TABLE; + }else{ + code = SQLITE_CREATE_TABLE; + } + } + if( !isVirtual && sqlite3AuthCheck(pParse, code, zName, 0, zDb) ){ + goto begin_table_error; + } + } +#endif + + /* Make sure the new table name does not collide with an existing + ** index or table name in the same database. Issue an error message if + ** it does. The exception is if the statement being parsed was passed + ** to an sqlite3_declare_vtab() call. In that case only the column names + ** and types will be used, so there is no need to test for namespace + ** collisions. + */ + if( !IN_DECLARE_VTAB ){ + char *zDb = db->aDb[iDb].zName; + if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ + goto begin_table_error; + } + pTable = sqlite3FindTable(db, zName, zDb); + if( pTable ){ + if( !noErr ){ + sqlite3ErrorMsg(pParse, "table %T already exists", pName); + }else{ + assert( !db->init.busy ); + sqlite3CodeVerifySchema(pParse, iDb); + } + goto begin_table_error; + } + if( sqlite3FindIndex(db, zName, zDb)!=0 ){ + sqlite3ErrorMsg(pParse, "there is already an index named %s", zName); + goto begin_table_error; + } + } + + pTable = sqlite3DbMallocZero(db, sizeof(Table)); + if( pTable==0 ){ + db->mallocFailed = 1; + pParse->rc = SQLITE_NOMEM; + pParse->nErr++; + goto begin_table_error; + } + pTable->zName = zName; + pTable->iPKey = -1; + pTable->pSchema = db->aDb[iDb].pSchema; + pTable->nRef = 1; + pTable->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); + assert( pParse->pNewTable==0 ); + pParse->pNewTable = pTable; + + /* If this is the magic sqlite_sequence table used by autoincrement, + ** then record a pointer to this table in the main database structure + ** so that INSERT can find the table easily. + */ +#ifndef SQLITE_OMIT_AUTOINCREMENT + if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){ + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + pTable->pSchema->pSeqTab = pTable; + } +#endif + + /* Begin generating the code that will insert the table record into + ** the SQLITE_MASTER table. Note in particular that we must go ahead + ** and allocate the record number for the table entry now. Before any + ** PRIMARY KEY or UNIQUE keywords are parsed. Those keywords will cause + ** indices to be created and the table record must come before the + ** indices. Hence, the record number for the table must be allocated + ** now. + */ + if( !db->init.busy && (v = sqlite3GetVdbe(pParse))!=0 ){ + int j1; + int fileFormat; + int reg1, reg2, reg3; + sqlite3BeginWriteOperation(pParse, 0, iDb); + +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( isVirtual ){ + sqlite3VdbeAddOp0(v, OP_VBegin); + } +#endif + + /* If the file format and encoding in the database have not been set, + ** set them now. + */ + reg1 = pParse->regRowid = ++pParse->nMem; + reg2 = pParse->regRoot = ++pParse->nMem; + reg3 = ++pParse->nMem; + sqlite3VdbeAddOp3(v, OP_ReadCookie, iDb, reg3, BTREE_FILE_FORMAT); + sqlite3VdbeUsesBtree(v, iDb); + j1 = sqlite3VdbeAddOp1(v, OP_If, reg3); VdbeCoverage(v); + fileFormat = (db->flags & SQLITE_LegacyFileFmt)!=0 ? + 1 : SQLITE_MAX_FILE_FORMAT; + sqlite3VdbeAddOp2(v, OP_Integer, fileFormat, reg3); + sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_FILE_FORMAT, reg3); + sqlite3VdbeAddOp2(v, OP_Integer, ENC(db), reg3); + sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_TEXT_ENCODING, reg3); + sqlite3VdbeJumpHere(v, j1); + + /* This just creates a place-holder record in the sqlite_master table. + ** The record created does not contain anything yet. It will be replaced + ** by the real entry in code generated at sqlite3EndTable(). + ** + ** The rowid for the new entry is left in register pParse->regRowid. + ** The root page number of the new table is left in reg pParse->regRoot. + ** The rowid and root page number values are needed by the code that + ** sqlite3EndTable will generate. + */ +#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) + if( isView || isVirtual ){ + sqlite3VdbeAddOp2(v, OP_Integer, 0, reg2); + }else +#endif + { + pParse->addrCrTab = sqlite3VdbeAddOp2(v, OP_CreateTable, iDb, reg2); + } + sqlite3OpenMasterTable(pParse, iDb); + sqlite3VdbeAddOp2(v, OP_NewRowid, 0, reg1); + sqlite3VdbeAddOp2(v, OP_Null, 0, reg3); + sqlite3VdbeAddOp3(v, OP_Insert, 0, reg3, reg1); + sqlite3VdbeChangeP5(v, OPFLAG_APPEND); + sqlite3VdbeAddOp0(v, OP_Close); + } + + /* Normal (non-error) return. */ + return; + + /* If an error occurs, we jump here */ +begin_table_error: + sqlite3DbFree(db, zName); + return; +} + +/* +** This macro is used to compare two strings in a case-insensitive manner. +** It is slightly faster than calling sqlite3StrICmp() directly, but +** produces larger code. +** +** WARNING: This macro is not compatible with the strcmp() family. It +** returns true if the two strings are equal, otherwise false. +*/ +#define STRICMP(x, y) (\ +sqlite3UpperToLower[*(unsigned char *)(x)]== \ +sqlite3UpperToLower[*(unsigned char *)(y)] \ +&& sqlite3StrICmp((x)+1,(y)+1)==0 ) + +/* +** Add a new column to the table currently being constructed. +** +** The parser calls this routine once for each column declaration +** in a CREATE TABLE statement. sqlite3StartTable() gets called +** first to get things going. Then this routine is called for each +** column. +*/ +SQLITE_PRIVATE void sqlite3AddColumn(Parse *pParse, Token *pName){ + Table *p; + int i; + char *z; + Column *pCol; + sqlite3 *db = pParse->db; + if( (p = pParse->pNewTable)==0 ) return; +#if SQLITE_MAX_COLUMN + if( p->nCol+1>db->aLimit[SQLITE_LIMIT_COLUMN] ){ + sqlite3ErrorMsg(pParse, "too many columns on %s", p->zName); + return; + } +#endif + z = sqlite3NameFromToken(db, pName); + if( z==0 ) return; + for(i=0; inCol; i++){ + if( STRICMP(z, p->aCol[i].zName) ){ + sqlite3ErrorMsg(pParse, "duplicate column name: %s", z); + sqlite3DbFree(db, z); + return; + } + } + if( (p->nCol & 0x7)==0 ){ + Column *aNew; + aNew = sqlite3DbRealloc(db,p->aCol,(p->nCol+8)*sizeof(p->aCol[0])); + if( aNew==0 ){ + sqlite3DbFree(db, z); + return; + } + p->aCol = aNew; + } + pCol = &p->aCol[p->nCol]; + memset(pCol, 0, sizeof(p->aCol[0])); + pCol->zName = z; + + /* If there is no type specified, columns have the default affinity + ** 'NONE'. If there is a type specified, then sqlite3AddColumnType() will + ** be called next to set pCol->affinity correctly. + */ + pCol->affinity = SQLITE_AFF_NONE; + pCol->szEst = 1; + p->nCol++; +} + +/* +** This routine is called by the parser while in the middle of +** parsing a CREATE TABLE statement. A "NOT NULL" constraint has +** been seen on a column. This routine sets the notNull flag on +** the column currently under construction. +*/ +SQLITE_PRIVATE void sqlite3AddNotNull(Parse *pParse, int onError){ + Table *p; + p = pParse->pNewTable; + if( p==0 || NEVER(p->nCol<1) ) return; + p->aCol[p->nCol-1].notNull = (u8)onError; +} + +/* +** Scan the column type name zType (length nType) and return the +** associated affinity type. +** +** This routine does a case-independent search of zType for the +** substrings in the following table. If one of the substrings is +** found, the corresponding affinity is returned. If zType contains +** more than one of the substrings, entries toward the top of +** the table take priority. For example, if zType is 'BLOBINT', +** SQLITE_AFF_INTEGER is returned. +** +** Substring | Affinity +** -------------------------------- +** 'INT' | SQLITE_AFF_INTEGER +** 'CHAR' | SQLITE_AFF_TEXT +** 'CLOB' | SQLITE_AFF_TEXT +** 'TEXT' | SQLITE_AFF_TEXT +** 'BLOB' | SQLITE_AFF_NONE +** 'REAL' | SQLITE_AFF_REAL +** 'FLOA' | SQLITE_AFF_REAL +** 'DOUB' | SQLITE_AFF_REAL +** +** If none of the substrings in the above table are found, +** SQLITE_AFF_NUMERIC is returned. +*/ +SQLITE_PRIVATE char sqlite3AffinityType(const char *zIn, u8 *pszEst){ + u32 h = 0; + char aff = SQLITE_AFF_NUMERIC; + const char *zChar = 0; + + if( zIn==0 ) return aff; + while( zIn[0] ){ + h = (h<<8) + sqlite3UpperToLower[(*zIn)&0xff]; + zIn++; + if( h==(('c'<<24)+('h'<<16)+('a'<<8)+'r') ){ /* CHAR */ + aff = SQLITE_AFF_TEXT; + zChar = zIn; + }else if( h==(('c'<<24)+('l'<<16)+('o'<<8)+'b') ){ /* CLOB */ + aff = SQLITE_AFF_TEXT; + }else if( h==(('t'<<24)+('e'<<16)+('x'<<8)+'t') ){ /* TEXT */ + aff = SQLITE_AFF_TEXT; + }else if( h==(('b'<<24)+('l'<<16)+('o'<<8)+'b') /* BLOB */ + && (aff==SQLITE_AFF_NUMERIC || aff==SQLITE_AFF_REAL) ){ + aff = SQLITE_AFF_NONE; + if( zIn[0]=='(' ) zChar = zIn; +#ifndef SQLITE_OMIT_FLOATING_POINT + }else if( h==(('r'<<24)+('e'<<16)+('a'<<8)+'l') /* REAL */ + && aff==SQLITE_AFF_NUMERIC ){ + aff = SQLITE_AFF_REAL; + }else if( h==(('f'<<24)+('l'<<16)+('o'<<8)+'a') /* FLOA */ + && aff==SQLITE_AFF_NUMERIC ){ + aff = SQLITE_AFF_REAL; + }else if( h==(('d'<<24)+('o'<<16)+('u'<<8)+'b') /* DOUB */ + && aff==SQLITE_AFF_NUMERIC ){ + aff = SQLITE_AFF_REAL; +#endif + }else if( (h&0x00FFFFFF)==(('i'<<16)+('n'<<8)+'t') ){ /* INT */ + aff = SQLITE_AFF_INTEGER; + break; + } + } + + /* If pszEst is not NULL, store an estimate of the field size. The + ** estimate is scaled so that the size of an integer is 1. */ + if( pszEst ){ + *pszEst = 1; /* default size is approx 4 bytes */ + if( aff<=SQLITE_AFF_NONE ){ + if( zChar ){ + while( zChar[0] ){ + if( sqlite3Isdigit(zChar[0]) ){ + int v = 0; + sqlite3GetInt32(zChar, &v); + v = v/4 + 1; + if( v>255 ) v = 255; + *pszEst = v; /* BLOB(k), VARCHAR(k), CHAR(k) -> r=(k/4+1) */ + break; + } + zChar++; + } + }else{ + *pszEst = 5; /* BLOB, TEXT, CLOB -> r=5 (approx 20 bytes)*/ + } + } + } + return aff; +} + +/* +** This routine is called by the parser while in the middle of +** parsing a CREATE TABLE statement. The pFirst token is the first +** token in the sequence of tokens that describe the type of the +** column currently under construction. pLast is the last token +** in the sequence. Use this information to construct a string +** that contains the typename of the column and store that string +** in zType. +*/ +SQLITE_PRIVATE void sqlite3AddColumnType(Parse *pParse, Token *pType){ + Table *p; + Column *pCol; + + p = pParse->pNewTable; + if( p==0 || NEVER(p->nCol<1) ) return; + pCol = &p->aCol[p->nCol-1]; + assert( pCol->zType==0 ); + pCol->zType = sqlite3NameFromToken(pParse->db, pType); + pCol->affinity = sqlite3AffinityType(pCol->zType, &pCol->szEst); +} + +/* +** The expression is the default value for the most recently added column +** of the table currently under construction. +** +** Default value expressions must be constant. Raise an exception if this +** is not the case. +** +** This routine is called by the parser while in the middle of +** parsing a CREATE TABLE statement. +*/ +SQLITE_PRIVATE void sqlite3AddDefaultValue(Parse *pParse, ExprSpan *pSpan){ + Table *p; + Column *pCol; + sqlite3 *db = pParse->db; + p = pParse->pNewTable; + if( p!=0 ){ + pCol = &(p->aCol[p->nCol-1]); + if( !sqlite3ExprIsConstantOrFunction(pSpan->pExpr) ){ + sqlite3ErrorMsg(pParse, "default value of column [%s] is not constant", + pCol->zName); + }else{ + /* A copy of pExpr is used instead of the original, as pExpr contains + ** tokens that point to volatile memory. The 'span' of the expression + ** is required by pragma table_info. + */ + sqlite3ExprDelete(db, pCol->pDflt); + pCol->pDflt = sqlite3ExprDup(db, pSpan->pExpr, EXPRDUP_REDUCE); + sqlite3DbFree(db, pCol->zDflt); + pCol->zDflt = sqlite3DbStrNDup(db, (char*)pSpan->zStart, + (int)(pSpan->zEnd - pSpan->zStart)); + } + } + sqlite3ExprDelete(db, pSpan->pExpr); +} + +/* +** Designate the PRIMARY KEY for the table. pList is a list of names +** of columns that form the primary key. If pList is NULL, then the +** most recently added column of the table is the primary key. +** +** A table can have at most one primary key. If the table already has +** a primary key (and this is the second primary key) then create an +** error. +** +** If the PRIMARY KEY is on a single column whose datatype is INTEGER, +** then we will try to use that column as the rowid. Set the Table.iPKey +** field of the table under construction to be the index of the +** INTEGER PRIMARY KEY column. Table.iPKey is set to -1 if there is +** no INTEGER PRIMARY KEY. +** +** If the key is not an INTEGER PRIMARY KEY, then create a unique +** index for the key. No index is created for INTEGER PRIMARY KEYs. +*/ +SQLITE_PRIVATE void sqlite3AddPrimaryKey( + Parse *pParse, /* Parsing context */ + ExprList *pList, /* List of field names to be indexed */ + int onError, /* What to do with a uniqueness conflict */ + int autoInc, /* True if the AUTOINCREMENT keyword is present */ + int sortOrder /* SQLITE_SO_ASC or SQLITE_SO_DESC */ +){ + Table *pTab = pParse->pNewTable; + char *zType = 0; + int iCol = -1, i; + int nTerm; + if( pTab==0 || IN_DECLARE_VTAB ) goto primary_key_exit; + if( pTab->tabFlags & TF_HasPrimaryKey ){ + sqlite3ErrorMsg(pParse, + "table \"%s\" has more than one primary key", pTab->zName); + goto primary_key_exit; + } + pTab->tabFlags |= TF_HasPrimaryKey; + if( pList==0 ){ + iCol = pTab->nCol - 1; + pTab->aCol[iCol].colFlags |= COLFLAG_PRIMKEY; + zType = pTab->aCol[iCol].zType; + nTerm = 1; + }else{ + nTerm = pList->nExpr; + for(i=0; inCol; iCol++){ + if( sqlite3StrICmp(pList->a[i].zName, pTab->aCol[iCol].zName)==0 ){ + pTab->aCol[iCol].colFlags |= COLFLAG_PRIMKEY; + zType = pTab->aCol[iCol].zType; + break; + } + } + } + } + if( nTerm==1 + && zType && sqlite3StrICmp(zType, "INTEGER")==0 + && sortOrder==SQLITE_SO_ASC + ){ + pTab->iPKey = iCol; + pTab->keyConf = (u8)onError; + assert( autoInc==0 || autoInc==1 ); + pTab->tabFlags |= autoInc*TF_Autoincrement; + if( pList ) pParse->iPkSortOrder = pList->a[0].sortOrder; + }else if( autoInc ){ +#ifndef SQLITE_OMIT_AUTOINCREMENT + sqlite3ErrorMsg(pParse, "AUTOINCREMENT is only allowed on an " + "INTEGER PRIMARY KEY"); +#endif + }else{ + Vdbe *v = pParse->pVdbe; + Index *p; + if( v ) pParse->addrSkipPK = sqlite3VdbeAddOp0(v, OP_Noop); + p = sqlite3CreateIndex(pParse, 0, 0, 0, pList, onError, 0, + 0, sortOrder, 0); + if( p ){ + p->idxType = SQLITE_IDXTYPE_PRIMARYKEY; + if( v ) sqlite3VdbeJumpHere(v, pParse->addrSkipPK); + } + pList = 0; + } + +primary_key_exit: + sqlite3ExprListDelete(pParse->db, pList); + return; +} + +/* +** Add a new CHECK constraint to the table currently under construction. +*/ +SQLITE_PRIVATE void sqlite3AddCheckConstraint( + Parse *pParse, /* Parsing context */ + Expr *pCheckExpr /* The check expression */ +){ +#ifndef SQLITE_OMIT_CHECK + Table *pTab = pParse->pNewTable; + sqlite3 *db = pParse->db; + if( pTab && !IN_DECLARE_VTAB + && !sqlite3BtreeIsReadonly(db->aDb[db->init.iDb].pBt) + ){ + pTab->pCheck = sqlite3ExprListAppend(pParse, pTab->pCheck, pCheckExpr); + if( pParse->constraintName.n ){ + sqlite3ExprListSetName(pParse, pTab->pCheck, &pParse->constraintName, 1); + } + }else +#endif + { + sqlite3ExprDelete(pParse->db, pCheckExpr); + } +} + +/* +** Set the collation function of the most recently parsed table column +** to the CollSeq given. +*/ +SQLITE_PRIVATE void sqlite3AddCollateType(Parse *pParse, Token *pToken){ + Table *p; + int i; + char *zColl; /* Dequoted name of collation sequence */ + sqlite3 *db; + + if( (p = pParse->pNewTable)==0 ) return; + i = p->nCol-1; + db = pParse->db; + zColl = sqlite3NameFromToken(db, pToken); + if( !zColl ) return; + + if( sqlite3LocateCollSeq(pParse, zColl) ){ + Index *pIdx; + sqlite3DbFree(db, p->aCol[i].zColl); + p->aCol[i].zColl = zColl; + + /* If the column is declared as " PRIMARY KEY COLLATE ", + ** then an index may have been created on this column before the + ** collation type was added. Correct this if it is the case. + */ + for(pIdx=p->pIndex; pIdx; pIdx=pIdx->pNext){ + assert( pIdx->nKeyCol==1 ); + if( pIdx->aiColumn[0]==i ){ + pIdx->azColl[0] = p->aCol[i].zColl; + } + } + }else{ + sqlite3DbFree(db, zColl); + } +} + +/* +** This function returns the collation sequence for database native text +** encoding identified by the string zName, length nName. +** +** If the requested collation sequence is not available, or not available +** in the database native encoding, the collation factory is invoked to +** request it. If the collation factory does not supply such a sequence, +** and the sequence is available in another text encoding, then that is +** returned instead. +** +** If no versions of the requested collations sequence are available, or +** another error occurs, NULL is returned and an error message written into +** pParse. +** +** This routine is a wrapper around sqlite3FindCollSeq(). This routine +** invokes the collation factory if the named collation cannot be found +** and generates an error message. +** +** See also: sqlite3FindCollSeq(), sqlite3GetCollSeq() +*/ +SQLITE_PRIVATE CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char *zName){ + sqlite3 *db = pParse->db; + u8 enc = ENC(db); + u8 initbusy = db->init.busy; + CollSeq *pColl; + + pColl = sqlite3FindCollSeq(db, enc, zName, initbusy); + if( !initbusy && (!pColl || !pColl->xCmp) ){ + pColl = sqlite3GetCollSeq(pParse, enc, pColl, zName); + } + + return pColl; +} + + +/* +** Generate code that will increment the schema cookie. +** +** The schema cookie is used to determine when the schema for the +** database changes. After each schema change, the cookie value +** changes. When a process first reads the schema it records the +** cookie. Thereafter, whenever it goes to access the database, +** it checks the cookie to make sure the schema has not changed +** since it was last read. +** +** This plan is not completely bullet-proof. It is possible for +** the schema to change multiple times and for the cookie to be +** set back to prior value. But schema changes are infrequent +** and the probability of hitting the same cookie value is only +** 1 chance in 2^32. So we're safe enough. +*/ +SQLITE_PRIVATE void sqlite3ChangeCookie(Parse *pParse, int iDb){ + int r1 = sqlite3GetTempReg(pParse); + sqlite3 *db = pParse->db; + Vdbe *v = pParse->pVdbe; + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + sqlite3VdbeAddOp2(v, OP_Integer, db->aDb[iDb].pSchema->schema_cookie+1, r1); + sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_SCHEMA_VERSION, r1); + sqlite3ReleaseTempReg(pParse, r1); +} + +/* +** Measure the number of characters needed to output the given +** identifier. The number returned includes any quotes used +** but does not include the null terminator. +** +** The estimate is conservative. It might be larger that what is +** really needed. +*/ +static int identLength(const char *z){ + int n; + for(n=0; *z; n++, z++){ + if( *z=='"' ){ n++; } + } + return n + 2; +} + +/* +** The first parameter is a pointer to an output buffer. The second +** parameter is a pointer to an integer that contains the offset at +** which to write into the output buffer. This function copies the +** nul-terminated string pointed to by the third parameter, zSignedIdent, +** to the specified offset in the buffer and updates *pIdx to refer +** to the first byte after the last byte written before returning. +** +** If the string zSignedIdent consists entirely of alpha-numeric +** characters, does not begin with a digit and is not an SQL keyword, +** then it is copied to the output buffer exactly as it is. Otherwise, +** it is quoted using double-quotes. +*/ +static void identPut(char *z, int *pIdx, char *zSignedIdent){ + unsigned char *zIdent = (unsigned char*)zSignedIdent; + int i, j, needQuote; + i = *pIdx; + + for(j=0; zIdent[j]; j++){ + if( !sqlite3Isalnum(zIdent[j]) && zIdent[j]!='_' ) break; + } + needQuote = sqlite3Isdigit(zIdent[0]) + || sqlite3KeywordCode(zIdent, j)!=TK_ID + || zIdent[j]!=0 + || j==0; + + if( needQuote ) z[i++] = '"'; + for(j=0; zIdent[j]; j++){ + z[i++] = zIdent[j]; + if( zIdent[j]=='"' ) z[i++] = '"'; + } + if( needQuote ) z[i++] = '"'; + z[i] = 0; + *pIdx = i; +} + +/* +** Generate a CREATE TABLE statement appropriate for the given +** table. Memory to hold the text of the statement is obtained +** from sqliteMalloc() and must be freed by the calling function. +*/ +static char *createTableStmt(sqlite3 *db, Table *p){ + int i, k, n; + char *zStmt; + char *zSep, *zSep2, *zEnd; + Column *pCol; + n = 0; + for(pCol = p->aCol, i=0; inCol; i++, pCol++){ + n += identLength(pCol->zName) + 5; + } + n += identLength(p->zName); + if( n<50 ){ + zSep = ""; + zSep2 = ","; + zEnd = ")"; + }else{ + zSep = "\n "; + zSep2 = ",\n "; + zEnd = "\n)"; + } + n += 35 + 6*p->nCol; + zStmt = sqlite3DbMallocRaw(0, n); + if( zStmt==0 ){ + db->mallocFailed = 1; + return 0; + } + sqlite3_snprintf(n, zStmt, "CREATE TABLE "); + k = sqlite3Strlen30(zStmt); + identPut(zStmt, &k, p->zName); + zStmt[k++] = '('; + for(pCol=p->aCol, i=0; inCol; i++, pCol++){ + static const char * const azType[] = { + /* SQLITE_AFF_TEXT */ " TEXT", + /* SQLITE_AFF_NONE */ "", + /* SQLITE_AFF_NUMERIC */ " NUM", + /* SQLITE_AFF_INTEGER */ " INT", + /* SQLITE_AFF_REAL */ " REAL" + }; + int len; + const char *zType; + + sqlite3_snprintf(n-k, &zStmt[k], zSep); + k += sqlite3Strlen30(&zStmt[k]); + zSep = zSep2; + identPut(zStmt, &k, pCol->zName); + assert( pCol->affinity-SQLITE_AFF_TEXT >= 0 ); + assert( pCol->affinity-SQLITE_AFF_TEXT < ArraySize(azType) ); + testcase( pCol->affinity==SQLITE_AFF_TEXT ); + testcase( pCol->affinity==SQLITE_AFF_NONE ); + testcase( pCol->affinity==SQLITE_AFF_NUMERIC ); + testcase( pCol->affinity==SQLITE_AFF_INTEGER ); + testcase( pCol->affinity==SQLITE_AFF_REAL ); + + zType = azType[pCol->affinity - SQLITE_AFF_TEXT]; + len = sqlite3Strlen30(zType); + assert( pCol->affinity==SQLITE_AFF_NONE + || pCol->affinity==sqlite3AffinityType(zType, 0) ); + memcpy(&zStmt[k], zType, len); + k += len; + assert( k<=n ); + } + sqlite3_snprintf(n-k, &zStmt[k], "%s", zEnd); + return zStmt; +} + +/* +** Resize an Index object to hold N columns total. Return SQLITE_OK +** on success and SQLITE_NOMEM on an OOM error. +*/ +static int resizeIndexObject(sqlite3 *db, Index *pIdx, int N){ + char *zExtra; + int nByte; + if( pIdx->nColumn>=N ) return SQLITE_OK; + assert( pIdx->isResized==0 ); + nByte = (sizeof(char*) + sizeof(i16) + 1)*N; + zExtra = sqlite3DbMallocZero(db, nByte); + if( zExtra==0 ) return SQLITE_NOMEM; + memcpy(zExtra, pIdx->azColl, sizeof(char*)*pIdx->nColumn); + pIdx->azColl = (char**)zExtra; + zExtra += sizeof(char*)*N; + memcpy(zExtra, pIdx->aiColumn, sizeof(i16)*pIdx->nColumn); + pIdx->aiColumn = (i16*)zExtra; + zExtra += sizeof(i16)*N; + memcpy(zExtra, pIdx->aSortOrder, pIdx->nColumn); + pIdx->aSortOrder = (u8*)zExtra; + pIdx->nColumn = N; + pIdx->isResized = 1; + return SQLITE_OK; +} + +/* +** Estimate the total row width for a table. +*/ +static void estimateTableWidth(Table *pTab){ + unsigned wTable = 0; + const Column *pTabCol; + int i; + for(i=pTab->nCol, pTabCol=pTab->aCol; i>0; i--, pTabCol++){ + wTable += pTabCol->szEst; + } + if( pTab->iPKey<0 ) wTable++; + pTab->szTabRow = sqlite3LogEst(wTable*4); +} + +/* +** Estimate the average size of a row for an index. +*/ +static void estimateIndexWidth(Index *pIdx){ + unsigned wIndex = 0; + int i; + const Column *aCol = pIdx->pTable->aCol; + for(i=0; inColumn; i++){ + i16 x = pIdx->aiColumn[i]; + assert( xpTable->nCol ); + wIndex += x<0 ? 1 : aCol[pIdx->aiColumn[i]].szEst; + } + pIdx->szIdxRow = sqlite3LogEst(wIndex*4); +} + +/* Return true if value x is found any of the first nCol entries of aiCol[] +*/ +static int hasColumn(const i16 *aiCol, int nCol, int x){ + while( nCol-- > 0 ) if( x==*(aiCol++) ) return 1; + return 0; +} + +/* +** This routine runs at the end of parsing a CREATE TABLE statement that +** has a WITHOUT ROWID clause. The job of this routine is to convert both +** internal schema data structures and the generated VDBE code so that they +** are appropriate for a WITHOUT ROWID table instead of a rowid table. +** Changes include: +** +** (1) Convert the OP_CreateTable into an OP_CreateIndex. There is +** no rowid btree for a WITHOUT ROWID. Instead, the canonical +** data storage is a covering index btree. +** (2) Bypass the creation of the sqlite_master table entry +** for the PRIMARY KEY as the the primary key index is now +** identified by the sqlite_master table entry of the table itself. +** (3) Set the Index.tnum of the PRIMARY KEY Index object in the +** schema to the rootpage from the main table. +** (4) Set all columns of the PRIMARY KEY schema object to be NOT NULL. +** (5) Add all table columns to the PRIMARY KEY Index object +** so that the PRIMARY KEY is a covering index. The surplus +** columns are part of KeyInfo.nXField and are not used for +** sorting or lookup or uniqueness checks. +** (6) Replace the rowid tail on all automatically generated UNIQUE +** indices with the PRIMARY KEY columns. +*/ +static void convertToWithoutRowidTable(Parse *pParse, Table *pTab){ + Index *pIdx; + Index *pPk; + int nPk; + int i, j; + sqlite3 *db = pParse->db; + Vdbe *v = pParse->pVdbe; + + /* Convert the OP_CreateTable opcode that would normally create the + ** root-page for the table into a OP_CreateIndex opcode. The index + ** created will become the PRIMARY KEY index. + */ + if( pParse->addrCrTab ){ + assert( v ); + sqlite3VdbeGetOp(v, pParse->addrCrTab)->opcode = OP_CreateIndex; + } + + /* Bypass the creation of the PRIMARY KEY btree and the sqlite_master + ** table entry. + */ + if( pParse->addrSkipPK ){ + assert( v ); + sqlite3VdbeGetOp(v, pParse->addrSkipPK)->opcode = OP_Goto; + } + + /* Locate the PRIMARY KEY index. Or, if this table was originally + ** an INTEGER PRIMARY KEY table, create a new PRIMARY KEY index. + */ + if( pTab->iPKey>=0 ){ + ExprList *pList; + pList = sqlite3ExprListAppend(pParse, 0, 0); + if( pList==0 ) return; + pList->a[0].zName = sqlite3DbStrDup(pParse->db, + pTab->aCol[pTab->iPKey].zName); + pList->a[0].sortOrder = pParse->iPkSortOrder; + assert( pParse->pNewTable==pTab ); + pPk = sqlite3CreateIndex(pParse, 0, 0, 0, pList, pTab->keyConf, 0, 0, 0, 0); + if( pPk==0 ) return; + pPk->idxType = SQLITE_IDXTYPE_PRIMARYKEY; + pTab->iPKey = -1; + }else{ + pPk = sqlite3PrimaryKeyIndex(pTab); + } + pPk->isCovering = 1; + assert( pPk!=0 ); + nPk = pPk->nKeyCol; + + /* Make sure every column of the PRIMARY KEY is NOT NULL */ + for(i=0; iaCol[pPk->aiColumn[i]].notNull = 1; + } + pPk->uniqNotNull = 1; + + /* The root page of the PRIMARY KEY is the table root page */ + pPk->tnum = pTab->tnum; + + /* Update the in-memory representation of all UNIQUE indices by converting + ** the final rowid column into one or more columns of the PRIMARY KEY. + */ + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + int n; + if( IsPrimaryKeyIndex(pIdx) ) continue; + for(i=n=0; iaiColumn, pIdx->nKeyCol, pPk->aiColumn[i]) ) n++; + } + if( n==0 ){ + /* This index is a superset of the primary key */ + pIdx->nColumn = pIdx->nKeyCol; + continue; + } + if( resizeIndexObject(db, pIdx, pIdx->nKeyCol+n) ) return; + for(i=0, j=pIdx->nKeyCol; iaiColumn, pIdx->nKeyCol, pPk->aiColumn[i]) ){ + pIdx->aiColumn[j] = pPk->aiColumn[i]; + pIdx->azColl[j] = pPk->azColl[i]; + j++; + } + } + assert( pIdx->nColumn>=pIdx->nKeyCol+n ); + assert( pIdx->nColumn>=j ); + } + + /* Add all table columns to the PRIMARY KEY index + */ + if( nPknCol ){ + if( resizeIndexObject(db, pPk, pTab->nCol) ) return; + for(i=0, j=nPk; inCol; i++){ + if( !hasColumn(pPk->aiColumn, j, i) ){ + assert( jnColumn ); + pPk->aiColumn[j] = i; + pPk->azColl[j] = "BINARY"; + j++; + } + } + assert( pPk->nColumn==j ); + assert( pTab->nCol==j ); + }else{ + pPk->nColumn = pTab->nCol; + } +} + +/* +** This routine is called to report the final ")" that terminates +** a CREATE TABLE statement. +** +** The table structure that other action routines have been building +** is added to the internal hash tables, assuming no errors have +** occurred. +** +** An entry for the table is made in the master table on disk, unless +** this is a temporary table or db->init.busy==1. When db->init.busy==1 +** it means we are reading the sqlite_master table because we just +** connected to the database or because the sqlite_master table has +** recently changed, so the entry for this table already exists in +** the sqlite_master table. We do not want to create it again. +** +** If the pSelect argument is not NULL, it means that this routine +** was called to create a table generated from a +** "CREATE TABLE ... AS SELECT ..." statement. The column names of +** the new table will match the result set of the SELECT. +*/ +SQLITE_PRIVATE void sqlite3EndTable( + Parse *pParse, /* Parse context */ + Token *pCons, /* The ',' token after the last column defn. */ + Token *pEnd, /* The ')' before options in the CREATE TABLE */ + u8 tabOpts, /* Extra table options. Usually 0. */ + Select *pSelect /* Select from a "CREATE ... AS SELECT" */ +){ + Table *p; /* The new table */ + sqlite3 *db = pParse->db; /* The database connection */ + int iDb; /* Database in which the table lives */ + Index *pIdx; /* An implied index of the table */ + + if( (pEnd==0 && pSelect==0) || db->mallocFailed ){ + return; + } + p = pParse->pNewTable; + if( p==0 ) return; + + assert( !db->init.busy || !pSelect ); + + /* If the db->init.busy is 1 it means we are reading the SQL off the + ** "sqlite_master" or "sqlite_temp_master" table on the disk. + ** So do not write to the disk again. Extract the root page number + ** for the table from the db->init.newTnum field. (The page number + ** should have been put there by the sqliteOpenCb routine.) + */ + if( db->init.busy ){ + p->tnum = db->init.newTnum; + } + + /* Special processing for WITHOUT ROWID Tables */ + if( tabOpts & TF_WithoutRowid ){ + if( (p->tabFlags & TF_Autoincrement) ){ + sqlite3ErrorMsg(pParse, + "AUTOINCREMENT not allowed on WITHOUT ROWID tables"); + return; + } + if( (p->tabFlags & TF_HasPrimaryKey)==0 ){ + sqlite3ErrorMsg(pParse, "PRIMARY KEY missing on table %s", p->zName); + }else{ + p->tabFlags |= TF_WithoutRowid; + convertToWithoutRowidTable(pParse, p); + } + } + + iDb = sqlite3SchemaToIndex(db, p->pSchema); + +#ifndef SQLITE_OMIT_CHECK + /* Resolve names in all CHECK constraint expressions. + */ + if( p->pCheck ){ + sqlite3ResolveSelfReference(pParse, p, NC_IsCheck, 0, p->pCheck); + } +#endif /* !defined(SQLITE_OMIT_CHECK) */ + + /* Estimate the average row size for the table and for all implied indices */ + estimateTableWidth(p); + for(pIdx=p->pIndex; pIdx; pIdx=pIdx->pNext){ + estimateIndexWidth(pIdx); + } + + /* If not initializing, then create a record for the new table + ** in the SQLITE_MASTER table of the database. + ** + ** If this is a TEMPORARY table, write the entry into the auxiliary + ** file instead of into the main database file. + */ + if( !db->init.busy ){ + int n; + Vdbe *v; + char *zType; /* "view" or "table" */ + char *zType2; /* "VIEW" or "TABLE" */ + char *zStmt; /* Text of the CREATE TABLE or CREATE VIEW statement */ + + v = sqlite3GetVdbe(pParse); + if( NEVER(v==0) ) return; + + sqlite3VdbeAddOp1(v, OP_Close, 0); + + /* + ** Initialize zType for the new view or table. + */ + if( p->pSelect==0 ){ + /* A regular table */ + zType = "table"; + zType2 = "TABLE"; +#ifndef SQLITE_OMIT_VIEW + }else{ + /* A view */ + zType = "view"; + zType2 = "VIEW"; +#endif + } + + /* If this is a CREATE TABLE xx AS SELECT ..., execute the SELECT + ** statement to populate the new table. The root-page number for the + ** new table is in register pParse->regRoot. + ** + ** Once the SELECT has been coded by sqlite3Select(), it is in a + ** suitable state to query for the column names and types to be used + ** by the new table. + ** + ** A shared-cache write-lock is not required to write to the new table, + ** as a schema-lock must have already been obtained to create it. Since + ** a schema-lock excludes all other database users, the write-lock would + ** be redundant. + */ + if( pSelect ){ + SelectDest dest; + Table *pSelTab; + + assert(pParse->nTab==1); + sqlite3VdbeAddOp3(v, OP_OpenWrite, 1, pParse->regRoot, iDb); + sqlite3VdbeChangeP5(v, OPFLAG_P2ISREG); + pParse->nTab = 2; + sqlite3SelectDestInit(&dest, SRT_Table, 1); + sqlite3Select(pParse, pSelect, &dest); + sqlite3VdbeAddOp1(v, OP_Close, 1); + if( pParse->nErr==0 ){ + pSelTab = sqlite3ResultSetOfSelect(pParse, pSelect); + if( pSelTab==0 ) return; + assert( p->aCol==0 ); + p->nCol = pSelTab->nCol; + p->aCol = pSelTab->aCol; + pSelTab->nCol = 0; + pSelTab->aCol = 0; + sqlite3DeleteTable(db, pSelTab); + } + } + + /* Compute the complete text of the CREATE statement */ + if( pSelect ){ + zStmt = createTableStmt(db, p); + }else{ + Token *pEnd2 = tabOpts ? &pParse->sLastToken : pEnd; + n = (int)(pEnd2->z - pParse->sNameToken.z); + if( pEnd2->z[0]!=';' ) n += pEnd2->n; + zStmt = sqlite3MPrintf(db, + "CREATE %s %.*s", zType2, n, pParse->sNameToken.z + ); + } + + /* A slot for the record has already been allocated in the + ** SQLITE_MASTER table. We just need to update that slot with all + ** the information we've collected. + */ + sqlite3NestedParse(pParse, + "UPDATE %Q.%s " + "SET type='%s', name=%Q, tbl_name=%Q, rootpage=#%d, sql=%Q " + "WHERE rowid=#%d", + db->aDb[iDb].zName, SCHEMA_TABLE(iDb), + zType, + p->zName, + p->zName, + pParse->regRoot, + zStmt, + pParse->regRowid + ); + sqlite3DbFree(db, zStmt); + sqlite3ChangeCookie(pParse, iDb); + +#ifndef SQLITE_OMIT_AUTOINCREMENT + /* Check to see if we need to create an sqlite_sequence table for + ** keeping track of autoincrement keys. + */ + if( p->tabFlags & TF_Autoincrement ){ + Db *pDb = &db->aDb[iDb]; + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + if( pDb->pSchema->pSeqTab==0 ){ + sqlite3NestedParse(pParse, + "CREATE TABLE %Q.sqlite_sequence(name,seq)", + pDb->zName + ); + } + } +#endif + + /* Reparse everything to update our internal data structures */ + sqlite3VdbeAddParseSchemaOp(v, iDb, + sqlite3MPrintf(db, "tbl_name='%q' AND type!='trigger'", p->zName)); + } + + + /* Add the table to the in-memory representation of the database. + */ + if( db->init.busy ){ + Table *pOld; + Schema *pSchema = p->pSchema; + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + pOld = sqlite3HashInsert(&pSchema->tblHash, p->zName, + sqlite3Strlen30(p->zName),p); + if( pOld ){ + assert( p==pOld ); /* Malloc must have failed inside HashInsert() */ + db->mallocFailed = 1; + return; + } + pParse->pNewTable = 0; + db->flags |= SQLITE_InternChanges; + +#ifndef SQLITE_OMIT_ALTERTABLE + if( !p->pSelect ){ + const char *zName = (const char *)pParse->sNameToken.z; + int nName; + assert( !pSelect && pCons && pEnd ); + if( pCons->z==0 ){ + pCons = pEnd; + } + nName = (int)((const char *)pCons->z - zName); + p->addColOffset = 13 + sqlite3Utf8CharLen(zName, nName); + } +#endif + } +} + +#ifndef SQLITE_OMIT_VIEW +/* +** The parser calls this routine in order to create a new VIEW +*/ +SQLITE_PRIVATE void sqlite3CreateView( + Parse *pParse, /* The parsing context */ + Token *pBegin, /* The CREATE token that begins the statement */ + Token *pName1, /* The token that holds the name of the view */ + Token *pName2, /* The token that holds the name of the view */ + Select *pSelect, /* A SELECT statement that will become the new view */ + int isTemp, /* TRUE for a TEMPORARY view */ + int noErr /* Suppress error messages if VIEW already exists */ +){ + Table *p; + int n; + const char *z; + Token sEnd; + DbFixer sFix; + Token *pName = 0; + int iDb; + sqlite3 *db = pParse->db; + + if( pParse->nVar>0 ){ + sqlite3ErrorMsg(pParse, "parameters are not allowed in views"); + sqlite3SelectDelete(db, pSelect); + return; + } + sqlite3StartTable(pParse, pName1, pName2, isTemp, 1, 0, noErr); + p = pParse->pNewTable; + if( p==0 || pParse->nErr ){ + sqlite3SelectDelete(db, pSelect); + return; + } + sqlite3TwoPartName(pParse, pName1, pName2, &pName); + iDb = sqlite3SchemaToIndex(db, p->pSchema); + sqlite3FixInit(&sFix, pParse, iDb, "view", pName); + if( sqlite3FixSelect(&sFix, pSelect) ){ + sqlite3SelectDelete(db, pSelect); + return; + } + + /* Make a copy of the entire SELECT statement that defines the view. + ** This will force all the Expr.token.z values to be dynamically + ** allocated rather than point to the input string - which means that + ** they will persist after the current sqlite3_exec() call returns. + */ + p->pSelect = sqlite3SelectDup(db, pSelect, EXPRDUP_REDUCE); + sqlite3SelectDelete(db, pSelect); + if( db->mallocFailed ){ + return; + } + if( !db->init.busy ){ + sqlite3ViewGetColumnNames(pParse, p); + } + + /* Locate the end of the CREATE VIEW statement. Make sEnd point to + ** the end. + */ + sEnd = pParse->sLastToken; + if( ALWAYS(sEnd.z[0]!=0) && sEnd.z[0]!=';' ){ + sEnd.z += sEnd.n; + } + sEnd.n = 0; + n = (int)(sEnd.z - pBegin->z); + z = pBegin->z; + while( ALWAYS(n>0) && sqlite3Isspace(z[n-1]) ){ n--; } + sEnd.z = &z[n-1]; + sEnd.n = 1; + + /* Use sqlite3EndTable() to add the view to the SQLITE_MASTER table */ + sqlite3EndTable(pParse, 0, &sEnd, 0, 0); + return; +} +#endif /* SQLITE_OMIT_VIEW */ + +#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) +/* +** The Table structure pTable is really a VIEW. Fill in the names of +** the columns of the view in the pTable structure. Return the number +** of errors. If an error is seen leave an error message in pParse->zErrMsg. +*/ +SQLITE_PRIVATE int sqlite3ViewGetColumnNames(Parse *pParse, Table *pTable){ + Table *pSelTab; /* A fake table from which we get the result set */ + Select *pSel; /* Copy of the SELECT that implements the view */ + int nErr = 0; /* Number of errors encountered */ + int n; /* Temporarily holds the number of cursors assigned */ + sqlite3 *db = pParse->db; /* Database connection for malloc errors */ + int (*xAuth)(void*,int,const char*,const char*,const char*,const char*); + + assert( pTable ); + +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( sqlite3VtabCallConnect(pParse, pTable) ){ + return SQLITE_ERROR; + } + if( IsVirtual(pTable) ) return 0; +#endif + +#ifndef SQLITE_OMIT_VIEW + /* A positive nCol means the columns names for this view are + ** already known. + */ + if( pTable->nCol>0 ) return 0; + + /* A negative nCol is a special marker meaning that we are currently + ** trying to compute the column names. If we enter this routine with + ** a negative nCol, it means two or more views form a loop, like this: + ** + ** CREATE VIEW one AS SELECT * FROM two; + ** CREATE VIEW two AS SELECT * FROM one; + ** + ** Actually, the error above is now caught prior to reaching this point. + ** But the following test is still important as it does come up + ** in the following: + ** + ** CREATE TABLE main.ex1(a); + ** CREATE TEMP VIEW ex1 AS SELECT a FROM ex1; + ** SELECT * FROM temp.ex1; + */ + if( pTable->nCol<0 ){ + sqlite3ErrorMsg(pParse, "view %s is circularly defined", pTable->zName); + return 1; + } + assert( pTable->nCol>=0 ); + + /* If we get this far, it means we need to compute the table names. + ** Note that the call to sqlite3ResultSetOfSelect() will expand any + ** "*" elements in the results set of the view and will assign cursors + ** to the elements of the FROM clause. But we do not want these changes + ** to be permanent. So the computation is done on a copy of the SELECT + ** statement that defines the view. + */ + assert( pTable->pSelect ); + pSel = sqlite3SelectDup(db, pTable->pSelect, 0); + if( pSel ){ + u8 enableLookaside = db->lookaside.bEnabled; + n = pParse->nTab; + sqlite3SrcListAssignCursors(pParse, pSel->pSrc); + pTable->nCol = -1; + db->lookaside.bEnabled = 0; +#ifndef SQLITE_OMIT_AUTHORIZATION + xAuth = db->xAuth; + db->xAuth = 0; + pSelTab = sqlite3ResultSetOfSelect(pParse, pSel); + db->xAuth = xAuth; +#else + pSelTab = sqlite3ResultSetOfSelect(pParse, pSel); +#endif + db->lookaside.bEnabled = enableLookaside; + pParse->nTab = n; + if( pSelTab ){ + assert( pTable->aCol==0 ); + pTable->nCol = pSelTab->nCol; + pTable->aCol = pSelTab->aCol; + pSelTab->nCol = 0; + pSelTab->aCol = 0; + sqlite3DeleteTable(db, pSelTab); + assert( sqlite3SchemaMutexHeld(db, 0, pTable->pSchema) ); + pTable->pSchema->flags |= DB_UnresetViews; + }else{ + pTable->nCol = 0; + nErr++; + } + sqlite3SelectDelete(db, pSel); + } else { + nErr++; + } +#endif /* SQLITE_OMIT_VIEW */ + return nErr; +} +#endif /* !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) */ + +#ifndef SQLITE_OMIT_VIEW +/* +** Clear the column names from every VIEW in database idx. +*/ +static void sqliteViewResetAll(sqlite3 *db, int idx){ + HashElem *i; + assert( sqlite3SchemaMutexHeld(db, idx, 0) ); + if( !DbHasProperty(db, idx, DB_UnresetViews) ) return; + for(i=sqliteHashFirst(&db->aDb[idx].pSchema->tblHash); i;i=sqliteHashNext(i)){ + Table *pTab = sqliteHashData(i); + if( pTab->pSelect ){ + sqliteDeleteColumnNames(db, pTab); + pTab->aCol = 0; + pTab->nCol = 0; + } + } + DbClearProperty(db, idx, DB_UnresetViews); +} +#else +# define sqliteViewResetAll(A,B) +#endif /* SQLITE_OMIT_VIEW */ + +/* +** This function is called by the VDBE to adjust the internal schema +** used by SQLite when the btree layer moves a table root page. The +** root-page of a table or index in database iDb has changed from iFrom +** to iTo. +** +** Ticket #1728: The symbol table might still contain information +** on tables and/or indices that are the process of being deleted. +** If you are unlucky, one of those deleted indices or tables might +** have the same rootpage number as the real table or index that is +** being moved. So we cannot stop searching after the first match +** because the first match might be for one of the deleted indices +** or tables and not the table/index that is actually being moved. +** We must continue looping until all tables and indices with +** rootpage==iFrom have been converted to have a rootpage of iTo +** in order to be certain that we got the right one. +*/ +#ifndef SQLITE_OMIT_AUTOVACUUM +SQLITE_PRIVATE void sqlite3RootPageMoved(sqlite3 *db, int iDb, int iFrom, int iTo){ + HashElem *pElem; + Hash *pHash; + Db *pDb; + + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + pDb = &db->aDb[iDb]; + pHash = &pDb->pSchema->tblHash; + for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){ + Table *pTab = sqliteHashData(pElem); + if( pTab->tnum==iFrom ){ + pTab->tnum = iTo; + } + } + pHash = &pDb->pSchema->idxHash; + for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){ + Index *pIdx = sqliteHashData(pElem); + if( pIdx->tnum==iFrom ){ + pIdx->tnum = iTo; + } + } +} +#endif + +/* +** Write code to erase the table with root-page iTable from database iDb. +** Also write code to modify the sqlite_master table and internal schema +** if a root-page of another table is moved by the btree-layer whilst +** erasing iTable (this can happen with an auto-vacuum database). +*/ +static void destroyRootPage(Parse *pParse, int iTable, int iDb){ + Vdbe *v = sqlite3GetVdbe(pParse); + int r1 = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp3(v, OP_Destroy, iTable, r1, iDb); + sqlite3MayAbort(pParse); +#ifndef SQLITE_OMIT_AUTOVACUUM + /* OP_Destroy stores an in integer r1. If this integer + ** is non-zero, then it is the root page number of a table moved to + ** location iTable. The following code modifies the sqlite_master table to + ** reflect this. + ** + ** The "#NNN" in the SQL is a special constant that means whatever value + ** is in register NNN. See grammar rules associated with the TK_REGISTER + ** token for additional information. + */ + sqlite3NestedParse(pParse, + "UPDATE %Q.%s SET rootpage=%d WHERE #%d AND rootpage=#%d", + pParse->db->aDb[iDb].zName, SCHEMA_TABLE(iDb), iTable, r1, r1); +#endif + sqlite3ReleaseTempReg(pParse, r1); +} + +/* +** Write VDBE code to erase table pTab and all associated indices on disk. +** Code to update the sqlite_master tables and internal schema definitions +** in case a root-page belonging to another table is moved by the btree layer +** is also added (this can happen with an auto-vacuum database). +*/ +static void destroyTable(Parse *pParse, Table *pTab){ +#ifdef SQLITE_OMIT_AUTOVACUUM + Index *pIdx; + int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); + destroyRootPage(pParse, pTab->tnum, iDb); + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + destroyRootPage(pParse, pIdx->tnum, iDb); + } +#else + /* If the database may be auto-vacuum capable (if SQLITE_OMIT_AUTOVACUUM + ** is not defined), then it is important to call OP_Destroy on the + ** table and index root-pages in order, starting with the numerically + ** largest root-page number. This guarantees that none of the root-pages + ** to be destroyed is relocated by an earlier OP_Destroy. i.e. if the + ** following were coded: + ** + ** OP_Destroy 4 0 + ** ... + ** OP_Destroy 5 0 + ** + ** and root page 5 happened to be the largest root-page number in the + ** database, then root page 5 would be moved to page 4 by the + ** "OP_Destroy 4 0" opcode. The subsequent "OP_Destroy 5 0" would hit + ** a free-list page. + */ + int iTab = pTab->tnum; + int iDestroyed = 0; + + while( 1 ){ + Index *pIdx; + int iLargest = 0; + + if( iDestroyed==0 || iTabpIndex; pIdx; pIdx=pIdx->pNext){ + int iIdx = pIdx->tnum; + assert( pIdx->pSchema==pTab->pSchema ); + if( (iDestroyed==0 || (iIdxiLargest ){ + iLargest = iIdx; + } + } + if( iLargest==0 ){ + return; + }else{ + int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); + assert( iDb>=0 && iDbdb->nDb ); + destroyRootPage(pParse, iLargest, iDb); + iDestroyed = iLargest; + } + } +#endif +} + +/* +** Remove entries from the sqlite_statN tables (for N in (1,2,3)) +** after a DROP INDEX or DROP TABLE command. +*/ +static void sqlite3ClearStatTables( + Parse *pParse, /* The parsing context */ + int iDb, /* The database number */ + const char *zType, /* "idx" or "tbl" */ + const char *zName /* Name of index or table */ +){ + int i; + const char *zDbName = pParse->db->aDb[iDb].zName; + for(i=1; i<=4; i++){ + char zTab[24]; + sqlite3_snprintf(sizeof(zTab),zTab,"sqlite_stat%d",i); + if( sqlite3FindTable(pParse->db, zTab, zDbName) ){ + sqlite3NestedParse(pParse, + "DELETE FROM %Q.%s WHERE %s=%Q", + zDbName, zTab, zType, zName + ); + } + } +} + +/* +** Generate code to drop a table. +*/ +SQLITE_PRIVATE void sqlite3CodeDropTable(Parse *pParse, Table *pTab, int iDb, int isView){ + Vdbe *v; + sqlite3 *db = pParse->db; + Trigger *pTrigger; + Db *pDb = &db->aDb[iDb]; + + v = sqlite3GetVdbe(pParse); + assert( v!=0 ); + sqlite3BeginWriteOperation(pParse, 1, iDb); + +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( IsVirtual(pTab) ){ + sqlite3VdbeAddOp0(v, OP_VBegin); + } +#endif + + /* Drop all triggers associated with the table being dropped. Code + ** is generated to remove entries from sqlite_master and/or + ** sqlite_temp_master if required. + */ + pTrigger = sqlite3TriggerList(pParse, pTab); + while( pTrigger ){ + assert( pTrigger->pSchema==pTab->pSchema || + pTrigger->pSchema==db->aDb[1].pSchema ); + sqlite3DropTriggerPtr(pParse, pTrigger); + pTrigger = pTrigger->pNext; + } + +#ifndef SQLITE_OMIT_AUTOINCREMENT + /* Remove any entries of the sqlite_sequence table associated with + ** the table being dropped. This is done before the table is dropped + ** at the btree level, in case the sqlite_sequence table needs to + ** move as a result of the drop (can happen in auto-vacuum mode). + */ + if( pTab->tabFlags & TF_Autoincrement ){ + sqlite3NestedParse(pParse, + "DELETE FROM %Q.sqlite_sequence WHERE name=%Q", + pDb->zName, pTab->zName + ); + } +#endif + + /* Drop all SQLITE_MASTER table and index entries that refer to the + ** table. The program name loops through the master table and deletes + ** every row that refers to a table of the same name as the one being + ** dropped. Triggers are handled separately because a trigger can be + ** created in the temp database that refers to a table in another + ** database. + */ + sqlite3NestedParse(pParse, + "DELETE FROM %Q.%s WHERE tbl_name=%Q and type!='trigger'", + pDb->zName, SCHEMA_TABLE(iDb), pTab->zName); + if( !isView && !IsVirtual(pTab) ){ + destroyTable(pParse, pTab); + } + + /* Remove the table entry from SQLite's internal schema and modify + ** the schema cookie. + */ + if( IsVirtual(pTab) ){ + sqlite3VdbeAddOp4(v, OP_VDestroy, iDb, 0, 0, pTab->zName, 0); + } + sqlite3VdbeAddOp4(v, OP_DropTable, iDb, 0, 0, pTab->zName, 0); + sqlite3ChangeCookie(pParse, iDb); + sqliteViewResetAll(db, iDb); +} + +/* +** This routine is called to do the work of a DROP TABLE statement. +** pName is the name of the table to be dropped. +*/ +SQLITE_PRIVATE void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){ + Table *pTab; + Vdbe *v; + sqlite3 *db = pParse->db; + int iDb; + + if( db->mallocFailed ){ + goto exit_drop_table; + } + assert( pParse->nErr==0 ); + assert( pName->nSrc==1 ); + if( noErr ) db->suppressErr++; + pTab = sqlite3LocateTableItem(pParse, isView, &pName->a[0]); + if( noErr ) db->suppressErr--; + + if( pTab==0 ){ + if( noErr ) sqlite3CodeVerifyNamedSchema(pParse, pName->a[0].zDatabase); + goto exit_drop_table; + } + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + assert( iDb>=0 && iDbnDb ); + + /* If pTab is a virtual table, call ViewGetColumnNames() to ensure + ** it is initialized. + */ + if( IsVirtual(pTab) && sqlite3ViewGetColumnNames(pParse, pTab) ){ + goto exit_drop_table; + } +#ifndef SQLITE_OMIT_AUTHORIZATION + { + int code; + const char *zTab = SCHEMA_TABLE(iDb); + const char *zDb = db->aDb[iDb].zName; + const char *zArg2 = 0; + if( sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb)){ + goto exit_drop_table; + } + if( isView ){ + if( !OMIT_TEMPDB && iDb==1 ){ + code = SQLITE_DROP_TEMP_VIEW; + }else{ + code = SQLITE_DROP_VIEW; + } +#ifndef SQLITE_OMIT_VIRTUALTABLE + }else if( IsVirtual(pTab) ){ + code = SQLITE_DROP_VTABLE; + zArg2 = sqlite3GetVTable(db, pTab)->pMod->zName; +#endif + }else{ + if( !OMIT_TEMPDB && iDb==1 ){ + code = SQLITE_DROP_TEMP_TABLE; + }else{ + code = SQLITE_DROP_TABLE; + } + } + if( sqlite3AuthCheck(pParse, code, pTab->zName, zArg2, zDb) ){ + goto exit_drop_table; + } + if( sqlite3AuthCheck(pParse, SQLITE_DELETE, pTab->zName, 0, zDb) ){ + goto exit_drop_table; + } + } +#endif + if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 + && sqlite3StrNICmp(pTab->zName, "sqlite_stat", 11)!=0 ){ + sqlite3ErrorMsg(pParse, "table %s may not be dropped", pTab->zName); + goto exit_drop_table; + } + +#ifndef SQLITE_OMIT_VIEW + /* Ensure DROP TABLE is not used on a view, and DROP VIEW is not used + ** on a table. + */ + if( isView && pTab->pSelect==0 ){ + sqlite3ErrorMsg(pParse, "use DROP TABLE to delete table %s", pTab->zName); + goto exit_drop_table; + } + if( !isView && pTab->pSelect ){ + sqlite3ErrorMsg(pParse, "use DROP VIEW to delete view %s", pTab->zName); + goto exit_drop_table; + } +#endif + + /* Generate code to remove the table from the master table + ** on disk. + */ + v = sqlite3GetVdbe(pParse); + if( v ){ + sqlite3BeginWriteOperation(pParse, 1, iDb); + sqlite3ClearStatTables(pParse, iDb, "tbl", pTab->zName); + sqlite3FkDropTable(pParse, pName, pTab); + sqlite3CodeDropTable(pParse, pTab, iDb, isView); + } + +exit_drop_table: + sqlite3SrcListDelete(db, pName); +} + +/* +** This routine is called to create a new foreign key on the table +** currently under construction. pFromCol determines which columns +** in the current table point to the foreign key. If pFromCol==0 then +** connect the key to the last column inserted. pTo is the name of +** the table referred to (a.k.a the "parent" table). pToCol is a list +** of tables in the parent pTo table. flags contains all +** information about the conflict resolution algorithms specified +** in the ON DELETE, ON UPDATE and ON INSERT clauses. +** +** An FKey structure is created and added to the table currently +** under construction in the pParse->pNewTable field. +** +** The foreign key is set for IMMEDIATE processing. A subsequent call +** to sqlite3DeferForeignKey() might change this to DEFERRED. +*/ +SQLITE_PRIVATE void sqlite3CreateForeignKey( + Parse *pParse, /* Parsing context */ + ExprList *pFromCol, /* Columns in this table that point to other table */ + Token *pTo, /* Name of the other table */ + ExprList *pToCol, /* Columns in the other table */ + int flags /* Conflict resolution algorithms. */ +){ + sqlite3 *db = pParse->db; +#ifndef SQLITE_OMIT_FOREIGN_KEY + FKey *pFKey = 0; + FKey *pNextTo; + Table *p = pParse->pNewTable; + int nByte; + int i; + int nCol; + char *z; + + assert( pTo!=0 ); + if( p==0 || IN_DECLARE_VTAB ) goto fk_end; + if( pFromCol==0 ){ + int iCol = p->nCol-1; + if( NEVER(iCol<0) ) goto fk_end; + if( pToCol && pToCol->nExpr!=1 ){ + sqlite3ErrorMsg(pParse, "foreign key on %s" + " should reference only one column of table %T", + p->aCol[iCol].zName, pTo); + goto fk_end; + } + nCol = 1; + }else if( pToCol && pToCol->nExpr!=pFromCol->nExpr ){ + sqlite3ErrorMsg(pParse, + "number of columns in foreign key does not match the number of " + "columns in the referenced table"); + goto fk_end; + }else{ + nCol = pFromCol->nExpr; + } + nByte = sizeof(*pFKey) + (nCol-1)*sizeof(pFKey->aCol[0]) + pTo->n + 1; + if( pToCol ){ + for(i=0; inExpr; i++){ + nByte += sqlite3Strlen30(pToCol->a[i].zName) + 1; + } + } + pFKey = sqlite3DbMallocZero(db, nByte ); + if( pFKey==0 ){ + goto fk_end; + } + pFKey->pFrom = p; + pFKey->pNextFrom = p->pFKey; + z = (char*)&pFKey->aCol[nCol]; + pFKey->zTo = z; + memcpy(z, pTo->z, pTo->n); + z[pTo->n] = 0; + sqlite3Dequote(z); + z += pTo->n+1; + pFKey->nCol = nCol; + if( pFromCol==0 ){ + pFKey->aCol[0].iFrom = p->nCol-1; + }else{ + for(i=0; inCol; j++){ + if( sqlite3StrICmp(p->aCol[j].zName, pFromCol->a[i].zName)==0 ){ + pFKey->aCol[i].iFrom = j; + break; + } + } + if( j>=p->nCol ){ + sqlite3ErrorMsg(pParse, + "unknown column \"%s\" in foreign key definition", + pFromCol->a[i].zName); + goto fk_end; + } + } + } + if( pToCol ){ + for(i=0; ia[i].zName); + pFKey->aCol[i].zCol = z; + memcpy(z, pToCol->a[i].zName, n); + z[n] = 0; + z += n+1; + } + } + pFKey->isDeferred = 0; + pFKey->aAction[0] = (u8)(flags & 0xff); /* ON DELETE action */ + pFKey->aAction[1] = (u8)((flags >> 8 ) & 0xff); /* ON UPDATE action */ + + assert( sqlite3SchemaMutexHeld(db, 0, p->pSchema) ); + pNextTo = (FKey *)sqlite3HashInsert(&p->pSchema->fkeyHash, + pFKey->zTo, sqlite3Strlen30(pFKey->zTo), (void *)pFKey + ); + if( pNextTo==pFKey ){ + db->mallocFailed = 1; + goto fk_end; + } + if( pNextTo ){ + assert( pNextTo->pPrevTo==0 ); + pFKey->pNextTo = pNextTo; + pNextTo->pPrevTo = pFKey; + } + + /* Link the foreign key to the table as the last step. + */ + p->pFKey = pFKey; + pFKey = 0; + +fk_end: + sqlite3DbFree(db, pFKey); +#endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */ + sqlite3ExprListDelete(db, pFromCol); + sqlite3ExprListDelete(db, pToCol); +} + +/* +** This routine is called when an INITIALLY IMMEDIATE or INITIALLY DEFERRED +** clause is seen as part of a foreign key definition. The isDeferred +** parameter is 1 for INITIALLY DEFERRED and 0 for INITIALLY IMMEDIATE. +** The behavior of the most recently created foreign key is adjusted +** accordingly. +*/ +SQLITE_PRIVATE void sqlite3DeferForeignKey(Parse *pParse, int isDeferred){ +#ifndef SQLITE_OMIT_FOREIGN_KEY + Table *pTab; + FKey *pFKey; + if( (pTab = pParse->pNewTable)==0 || (pFKey = pTab->pFKey)==0 ) return; + assert( isDeferred==0 || isDeferred==1 ); /* EV: R-30323-21917 */ + pFKey->isDeferred = (u8)isDeferred; +#endif +} + +/* +** Generate code that will erase and refill index *pIdx. This is +** used to initialize a newly created index or to recompute the +** content of an index in response to a REINDEX command. +** +** if memRootPage is not negative, it means that the index is newly +** created. The register specified by memRootPage contains the +** root page number of the index. If memRootPage is negative, then +** the index already exists and must be cleared before being refilled and +** the root page number of the index is taken from pIndex->tnum. +*/ +static void sqlite3RefillIndex(Parse *pParse, Index *pIndex, int memRootPage){ + Table *pTab = pIndex->pTable; /* The table that is indexed */ + int iTab = pParse->nTab++; /* Btree cursor used for pTab */ + int iIdx = pParse->nTab++; /* Btree cursor used for pIndex */ + int iSorter; /* Cursor opened by OpenSorter (if in use) */ + int addr1; /* Address of top of loop */ + int addr2; /* Address to jump to for next iteration */ + int tnum; /* Root page of index */ + int iPartIdxLabel; /* Jump to this label to skip a row */ + Vdbe *v; /* Generate code into this virtual machine */ + KeyInfo *pKey; /* KeyInfo for index */ + int regRecord; /* Register holding assemblied index record */ + sqlite3 *db = pParse->db; /* The database connection */ + int iDb = sqlite3SchemaToIndex(db, pIndex->pSchema); + +#ifndef SQLITE_OMIT_AUTHORIZATION + if( sqlite3AuthCheck(pParse, SQLITE_REINDEX, pIndex->zName, 0, + db->aDb[iDb].zName ) ){ + return; + } +#endif + + /* Require a write-lock on the table to perform this operation */ + sqlite3TableLock(pParse, iDb, pTab->tnum, 1, pTab->zName); + + v = sqlite3GetVdbe(pParse); + if( v==0 ) return; + if( memRootPage>=0 ){ + tnum = memRootPage; + }else{ + tnum = pIndex->tnum; + } + pKey = sqlite3KeyInfoOfIndex(pParse, pIndex); + + /* Open the sorter cursor if we are to use one. */ + iSorter = pParse->nTab++; + sqlite3VdbeAddOp4(v, OP_SorterOpen, iSorter, 0, 0, (char*) + sqlite3KeyInfoRef(pKey), P4_KEYINFO); + + /* Open the table. Loop through all rows of the table, inserting index + ** records into the sorter. */ + sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); + addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iTab, 0); VdbeCoverage(v); + regRecord = sqlite3GetTempReg(pParse); + + sqlite3GenerateIndexKey(pParse,pIndex,iTab,regRecord,0,&iPartIdxLabel,0,0); + sqlite3VdbeAddOp2(v, OP_SorterInsert, iSorter, regRecord); + sqlite3ResolvePartIdxLabel(pParse, iPartIdxLabel); + sqlite3VdbeAddOp2(v, OP_Next, iTab, addr1+1); VdbeCoverage(v); + sqlite3VdbeJumpHere(v, addr1); + if( memRootPage<0 ) sqlite3VdbeAddOp2(v, OP_Clear, tnum, iDb); + sqlite3VdbeAddOp4(v, OP_OpenWrite, iIdx, tnum, iDb, + (char *)pKey, P4_KEYINFO); + sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR|((memRootPage>=0)?OPFLAG_P2ISREG:0)); + + addr1 = sqlite3VdbeAddOp2(v, OP_SorterSort, iSorter, 0); VdbeCoverage(v); + assert( pKey!=0 || db->mallocFailed || pParse->nErr ); + if( pIndex->onError!=OE_None && pKey!=0 ){ + int j2 = sqlite3VdbeCurrentAddr(v) + 3; + sqlite3VdbeAddOp2(v, OP_Goto, 0, j2); + addr2 = sqlite3VdbeCurrentAddr(v); + sqlite3VdbeAddOp4Int(v, OP_SorterCompare, iSorter, j2, regRecord, + pKey->nField - pIndex->nKeyCol); VdbeCoverage(v); + sqlite3UniqueConstraint(pParse, OE_Abort, pIndex); + }else{ + addr2 = sqlite3VdbeCurrentAddr(v); + } + sqlite3VdbeAddOp2(v, OP_SorterData, iSorter, regRecord); + sqlite3VdbeAddOp3(v, OP_IdxInsert, iIdx, regRecord, 1); + sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); + sqlite3ReleaseTempReg(pParse, regRecord); + sqlite3VdbeAddOp2(v, OP_SorterNext, iSorter, addr2); VdbeCoverage(v); + sqlite3VdbeJumpHere(v, addr1); + + sqlite3VdbeAddOp1(v, OP_Close, iTab); + sqlite3VdbeAddOp1(v, OP_Close, iIdx); + sqlite3VdbeAddOp1(v, OP_Close, iSorter); +} + +/* +** Allocate heap space to hold an Index object with nCol columns. +** +** Increase the allocation size to provide an extra nExtra bytes +** of 8-byte aligned space after the Index object and return a +** pointer to this extra space in *ppExtra. +*/ +SQLITE_PRIVATE Index *sqlite3AllocateIndexObject( + sqlite3 *db, /* Database connection */ + i16 nCol, /* Total number of columns in the index */ + int nExtra, /* Number of bytes of extra space to alloc */ + char **ppExtra /* Pointer to the "extra" space */ +){ + Index *p; /* Allocated index object */ + int nByte; /* Bytes of space for Index object + arrays */ + + nByte = ROUND8(sizeof(Index)) + /* Index structure */ + ROUND8(sizeof(char*)*nCol) + /* Index.azColl */ + ROUND8(sizeof(LogEst)*(nCol+1) + /* Index.aiRowLogEst */ + sizeof(i16)*nCol + /* Index.aiColumn */ + sizeof(u8)*nCol); /* Index.aSortOrder */ + p = sqlite3DbMallocZero(db, nByte + nExtra); + if( p ){ + char *pExtra = ((char*)p)+ROUND8(sizeof(Index)); + p->azColl = (char**)pExtra; pExtra += ROUND8(sizeof(char*)*nCol); + p->aiRowLogEst = (LogEst*)pExtra; pExtra += sizeof(LogEst)*(nCol+1); + p->aiColumn = (i16*)pExtra; pExtra += sizeof(i16)*nCol; + p->aSortOrder = (u8*)pExtra; + p->nColumn = nCol; + p->nKeyCol = nCol - 1; + *ppExtra = ((char*)p) + nByte; + } + return p; +} + +/* +** Create a new index for an SQL table. pName1.pName2 is the name of the index +** and pTblList is the name of the table that is to be indexed. Both will +** be NULL for a primary key or an index that is created to satisfy a +** UNIQUE constraint. If pTable and pIndex are NULL, use pParse->pNewTable +** as the table to be indexed. pParse->pNewTable is a table that is +** currently being constructed by a CREATE TABLE statement. +** +** pList is a list of columns to be indexed. pList will be NULL if this +** is a primary key or unique-constraint on the most recent column added +** to the table currently under construction. +** +** If the index is created successfully, return a pointer to the new Index +** structure. This is used by sqlite3AddPrimaryKey() to mark the index +** as the tables primary key (Index.idxType==SQLITE_IDXTYPE_PRIMARYKEY) +*/ +SQLITE_PRIVATE Index *sqlite3CreateIndex( + Parse *pParse, /* All information about this parse */ + Token *pName1, /* First part of index name. May be NULL */ + Token *pName2, /* Second part of index name. May be NULL */ + SrcList *pTblName, /* Table to index. Use pParse->pNewTable if 0 */ + ExprList *pList, /* A list of columns to be indexed */ + int onError, /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */ + Token *pStart, /* The CREATE token that begins this statement */ + Expr *pPIWhere, /* WHERE clause for partial indices */ + int sortOrder, /* Sort order of primary key when pList==NULL */ + int ifNotExist /* Omit error if index already exists */ +){ + Index *pRet = 0; /* Pointer to return */ + Table *pTab = 0; /* Table to be indexed */ + Index *pIndex = 0; /* The index to be created */ + char *zName = 0; /* Name of the index */ + int nName; /* Number of characters in zName */ + int i, j; + DbFixer sFix; /* For assigning database names to pTable */ + int sortOrderMask; /* 1 to honor DESC in index. 0 to ignore. */ + sqlite3 *db = pParse->db; + Db *pDb; /* The specific table containing the indexed database */ + int iDb; /* Index of the database that is being written */ + Token *pName = 0; /* Unqualified name of the index to create */ + struct ExprList_item *pListItem; /* For looping over pList */ + const Column *pTabCol; /* A column in the table */ + int nExtra = 0; /* Space allocated for zExtra[] */ + int nExtraCol; /* Number of extra columns needed */ + char *zExtra = 0; /* Extra space after the Index object */ + Index *pPk = 0; /* PRIMARY KEY index for WITHOUT ROWID tables */ + + assert( pParse->nErr==0 ); /* Never called with prior errors */ + if( db->mallocFailed || IN_DECLARE_VTAB ){ + goto exit_create_index; + } + if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ + goto exit_create_index; + } + + /* + ** Find the table that is to be indexed. Return early if not found. + */ + if( pTblName!=0 ){ + + /* Use the two-part index name to determine the database + ** to search for the table. 'Fix' the table name to this db + ** before looking up the table. + */ + assert( pName1 && pName2 ); + iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName); + if( iDb<0 ) goto exit_create_index; + assert( pName && pName->z ); + +#ifndef SQLITE_OMIT_TEMPDB + /* If the index name was unqualified, check if the table + ** is a temp table. If so, set the database to 1. Do not do this + ** if initialising a database schema. + */ + if( !db->init.busy ){ + pTab = sqlite3SrcListLookup(pParse, pTblName); + if( pName2->n==0 && pTab && pTab->pSchema==db->aDb[1].pSchema ){ + iDb = 1; + } + } +#endif + + sqlite3FixInit(&sFix, pParse, iDb, "index", pName); + if( sqlite3FixSrcList(&sFix, pTblName) ){ + /* Because the parser constructs pTblName from a single identifier, + ** sqlite3FixSrcList can never fail. */ + assert(0); + } + pTab = sqlite3LocateTableItem(pParse, 0, &pTblName->a[0]); + assert( db->mallocFailed==0 || pTab==0 ); + if( pTab==0 ) goto exit_create_index; + if( iDb==1 && db->aDb[iDb].pSchema!=pTab->pSchema ){ + sqlite3ErrorMsg(pParse, + "cannot create a TEMP index on non-TEMP table \"%s\"", + pTab->zName); + goto exit_create_index; + } + if( !HasRowid(pTab) ) pPk = sqlite3PrimaryKeyIndex(pTab); + }else{ + assert( pName==0 ); + assert( pStart==0 ); + pTab = pParse->pNewTable; + if( !pTab ) goto exit_create_index; + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + } + pDb = &db->aDb[iDb]; + + assert( pTab!=0 ); + assert( pParse->nErr==0 ); + if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 + && sqlite3StrNICmp(&pTab->zName[7],"altertab_",9)!=0 ){ + sqlite3ErrorMsg(pParse, "table %s may not be indexed", pTab->zName); + goto exit_create_index; + } +#ifndef SQLITE_OMIT_VIEW + if( pTab->pSelect ){ + sqlite3ErrorMsg(pParse, "views may not be indexed"); + goto exit_create_index; + } +#endif +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( IsVirtual(pTab) ){ + sqlite3ErrorMsg(pParse, "virtual tables may not be indexed"); + goto exit_create_index; + } +#endif + + /* + ** Find the name of the index. Make sure there is not already another + ** index or table with the same name. + ** + ** Exception: If we are reading the names of permanent indices from the + ** sqlite_master table (because some other process changed the schema) and + ** one of the index names collides with the name of a temporary table or + ** index, then we will continue to process this index. + ** + ** If pName==0 it means that we are + ** dealing with a primary key or UNIQUE constraint. We have to invent our + ** own name. + */ + if( pName ){ + zName = sqlite3NameFromToken(db, pName); + if( zName==0 ) goto exit_create_index; + assert( pName->z!=0 ); + if( SQLITE_OK!=sqlite3CheckObjectName(pParse, zName) ){ + goto exit_create_index; + } + if( !db->init.busy ){ + if( sqlite3FindTable(db, zName, 0)!=0 ){ + sqlite3ErrorMsg(pParse, "there is already a table named %s", zName); + goto exit_create_index; + } + } + if( sqlite3FindIndex(db, zName, pDb->zName)!=0 ){ + if( !ifNotExist ){ + sqlite3ErrorMsg(pParse, "index %s already exists", zName); + }else{ + assert( !db->init.busy ); + sqlite3CodeVerifySchema(pParse, iDb); + } + goto exit_create_index; + } + }else{ + int n; + Index *pLoop; + for(pLoop=pTab->pIndex, n=1; pLoop; pLoop=pLoop->pNext, n++){} + zName = sqlite3MPrintf(db, "sqlite_autoindex_%s_%d", pTab->zName, n); + if( zName==0 ){ + goto exit_create_index; + } + } + + /* Check for authorization to create an index. + */ +#ifndef SQLITE_OMIT_AUTHORIZATION + { + const char *zDb = pDb->zName; + if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(iDb), 0, zDb) ){ + goto exit_create_index; + } + i = SQLITE_CREATE_INDEX; + if( !OMIT_TEMPDB && iDb==1 ) i = SQLITE_CREATE_TEMP_INDEX; + if( sqlite3AuthCheck(pParse, i, zName, pTab->zName, zDb) ){ + goto exit_create_index; + } + } +#endif + + /* If pList==0, it means this routine was called to make a primary + ** key out of the last column added to the table under construction. + ** So create a fake list to simulate this. + */ + if( pList==0 ){ + pList = sqlite3ExprListAppend(pParse, 0, 0); + if( pList==0 ) goto exit_create_index; + pList->a[0].zName = sqlite3DbStrDup(pParse->db, + pTab->aCol[pTab->nCol-1].zName); + pList->a[0].sortOrder = (u8)sortOrder; + } + + /* Figure out how many bytes of space are required to store explicitly + ** specified collation sequence names. + */ + for(i=0; inExpr; i++){ + Expr *pExpr = pList->a[i].pExpr; + if( pExpr ){ + assert( pExpr->op==TK_COLLATE ); + nExtra += (1 + sqlite3Strlen30(pExpr->u.zToken)); + } + } + + /* + ** Allocate the index structure. + */ + nName = sqlite3Strlen30(zName); + nExtraCol = pPk ? pPk->nKeyCol : 1; + pIndex = sqlite3AllocateIndexObject(db, pList->nExpr + nExtraCol, + nName + nExtra + 1, &zExtra); + if( db->mallocFailed ){ + goto exit_create_index; + } + assert( EIGHT_BYTE_ALIGNMENT(pIndex->aiRowLogEst) ); + assert( EIGHT_BYTE_ALIGNMENT(pIndex->azColl) ); + pIndex->zName = zExtra; + zExtra += nName + 1; + memcpy(pIndex->zName, zName, nName+1); + pIndex->pTable = pTab; + pIndex->onError = (u8)onError; + pIndex->uniqNotNull = onError!=OE_None; + pIndex->idxType = pName ? SQLITE_IDXTYPE_APPDEF : SQLITE_IDXTYPE_UNIQUE; + pIndex->pSchema = db->aDb[iDb].pSchema; + pIndex->nKeyCol = pList->nExpr; + if( pPIWhere ){ + sqlite3ResolveSelfReference(pParse, pTab, NC_PartIdx, pPIWhere, 0); + pIndex->pPartIdxWhere = pPIWhere; + pPIWhere = 0; + } + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + + /* Check to see if we should honor DESC requests on index columns + */ + if( pDb->pSchema->file_format>=4 ){ + sortOrderMask = -1; /* Honor DESC */ + }else{ + sortOrderMask = 0; /* Ignore DESC */ + } + + /* Scan the names of the columns of the table to be indexed and + ** load the column indices into the Index structure. Report an error + ** if any column is not found. + ** + ** TODO: Add a test to make sure that the same column is not named + ** more than once within the same index. Only the first instance of + ** the column will ever be used by the optimizer. Note that using the + ** same column more than once cannot be an error because that would + ** break backwards compatibility - it needs to be a warning. + */ + for(i=0, pListItem=pList->a; inExpr; i++, pListItem++){ + const char *zColName = pListItem->zName; + int requestedSortOrder; + char *zColl; /* Collation sequence name */ + + for(j=0, pTabCol=pTab->aCol; jnCol; j++, pTabCol++){ + if( sqlite3StrICmp(zColName, pTabCol->zName)==0 ) break; + } + if( j>=pTab->nCol ){ + sqlite3ErrorMsg(pParse, "table %s has no column named %s", + pTab->zName, zColName); + pParse->checkSchema = 1; + goto exit_create_index; + } + assert( pTab->nCol<=0x7fff && j<=0x7fff ); + pIndex->aiColumn[i] = (i16)j; + if( pListItem->pExpr ){ + int nColl; + assert( pListItem->pExpr->op==TK_COLLATE ); + zColl = pListItem->pExpr->u.zToken; + nColl = sqlite3Strlen30(zColl) + 1; + assert( nExtra>=nColl ); + memcpy(zExtra, zColl, nColl); + zColl = zExtra; + zExtra += nColl; + nExtra -= nColl; + }else{ + zColl = pTab->aCol[j].zColl; + if( !zColl ) zColl = "BINARY"; + } + if( !db->init.busy && !sqlite3LocateCollSeq(pParse, zColl) ){ + goto exit_create_index; + } + pIndex->azColl[i] = zColl; + requestedSortOrder = pListItem->sortOrder & sortOrderMask; + pIndex->aSortOrder[i] = (u8)requestedSortOrder; + if( pTab->aCol[j].notNull==0 ) pIndex->uniqNotNull = 0; + } + if( pPk ){ + for(j=0; jnKeyCol; j++){ + int x = pPk->aiColumn[j]; + if( hasColumn(pIndex->aiColumn, pIndex->nKeyCol, x) ){ + pIndex->nColumn--; + }else{ + pIndex->aiColumn[i] = x; + pIndex->azColl[i] = pPk->azColl[j]; + pIndex->aSortOrder[i] = pPk->aSortOrder[j]; + i++; + } + } + assert( i==pIndex->nColumn ); + }else{ + pIndex->aiColumn[i] = -1; + pIndex->azColl[i] = "BINARY"; + } + sqlite3DefaultRowEst(pIndex); + if( pParse->pNewTable==0 ) estimateIndexWidth(pIndex); + + if( pTab==pParse->pNewTable ){ + /* This routine has been called to create an automatic index as a + ** result of a PRIMARY KEY or UNIQUE clause on a column definition, or + ** a PRIMARY KEY or UNIQUE clause following the column definitions. + ** i.e. one of: + ** + ** CREATE TABLE t(x PRIMARY KEY, y); + ** CREATE TABLE t(x, y, UNIQUE(x, y)); + ** + ** Either way, check to see if the table already has such an index. If + ** so, don't bother creating this one. This only applies to + ** automatically created indices. Users can do as they wish with + ** explicit indices. + ** + ** Two UNIQUE or PRIMARY KEY constraints are considered equivalent + ** (and thus suppressing the second one) even if they have different + ** sort orders. + ** + ** If there are different collating sequences or if the columns of + ** the constraint occur in different orders, then the constraints are + ** considered distinct and both result in separate indices. + */ + Index *pIdx; + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + int k; + assert( pIdx->onError!=OE_None ); + assert( pIdx->idxType!=SQLITE_IDXTYPE_APPDEF ); + assert( pIndex->onError!=OE_None ); + + if( pIdx->nKeyCol!=pIndex->nKeyCol ) continue; + for(k=0; knKeyCol; k++){ + const char *z1; + const char *z2; + if( pIdx->aiColumn[k]!=pIndex->aiColumn[k] ) break; + z1 = pIdx->azColl[k]; + z2 = pIndex->azColl[k]; + if( z1!=z2 && sqlite3StrICmp(z1, z2) ) break; + } + if( k==pIdx->nKeyCol ){ + if( pIdx->onError!=pIndex->onError ){ + /* This constraint creates the same index as a previous + ** constraint specified somewhere in the CREATE TABLE statement. + ** However the ON CONFLICT clauses are different. If both this + ** constraint and the previous equivalent constraint have explicit + ** ON CONFLICT clauses this is an error. Otherwise, use the + ** explicitly specified behavior for the index. + */ + if( !(pIdx->onError==OE_Default || pIndex->onError==OE_Default) ){ + sqlite3ErrorMsg(pParse, + "conflicting ON CONFLICT clauses specified", 0); + } + if( pIdx->onError==OE_Default ){ + pIdx->onError = pIndex->onError; + } + } + goto exit_create_index; + } + } + } + + /* Link the new Index structure to its table and to the other + ** in-memory database structures. + */ + if( db->init.busy ){ + Index *p; + assert( sqlite3SchemaMutexHeld(db, 0, pIndex->pSchema) ); + p = sqlite3HashInsert(&pIndex->pSchema->idxHash, + pIndex->zName, sqlite3Strlen30(pIndex->zName), + pIndex); + if( p ){ + assert( p==pIndex ); /* Malloc must have failed */ + db->mallocFailed = 1; + goto exit_create_index; + } + db->flags |= SQLITE_InternChanges; + if( pTblName!=0 ){ + pIndex->tnum = db->init.newTnum; + } + } + + /* If this is the initial CREATE INDEX statement (or CREATE TABLE if the + ** index is an implied index for a UNIQUE or PRIMARY KEY constraint) then + ** emit code to allocate the index rootpage on disk and make an entry for + ** the index in the sqlite_master table and populate the index with + ** content. But, do not do this if we are simply reading the sqlite_master + ** table to parse the schema, or if this index is the PRIMARY KEY index + ** of a WITHOUT ROWID table. + ** + ** If pTblName==0 it means this index is generated as an implied PRIMARY KEY + ** or UNIQUE index in a CREATE TABLE statement. Since the table + ** has just been created, it contains no data and the index initialization + ** step can be skipped. + */ + else if( pParse->nErr==0 && (HasRowid(pTab) || pTblName!=0) ){ + Vdbe *v; + char *zStmt; + int iMem = ++pParse->nMem; + + v = sqlite3GetVdbe(pParse); + if( v==0 ) goto exit_create_index; + + + /* Create the rootpage for the index + */ + sqlite3BeginWriteOperation(pParse, 1, iDb); + sqlite3VdbeAddOp2(v, OP_CreateIndex, iDb, iMem); + + /* Gather the complete text of the CREATE INDEX statement into + ** the zStmt variable + */ + if( pStart ){ + int n = (int)(pParse->sLastToken.z - pName->z) + pParse->sLastToken.n; + if( pName->z[n-1]==';' ) n--; + /* A named index with an explicit CREATE INDEX statement */ + zStmt = sqlite3MPrintf(db, "CREATE%s INDEX %.*s", + onError==OE_None ? "" : " UNIQUE", n, pName->z); + }else{ + /* An automatic index created by a PRIMARY KEY or UNIQUE constraint */ + /* zStmt = sqlite3MPrintf(""); */ + zStmt = 0; + } + + /* Add an entry in sqlite_master for this index + */ + sqlite3NestedParse(pParse, + "INSERT INTO %Q.%s VALUES('index',%Q,%Q,#%d,%Q);", + db->aDb[iDb].zName, SCHEMA_TABLE(iDb), + pIndex->zName, + pTab->zName, + iMem, + zStmt + ); + sqlite3DbFree(db, zStmt); + + /* Fill the index with data and reparse the schema. Code an OP_Expire + ** to invalidate all pre-compiled statements. + */ + if( pTblName ){ + sqlite3RefillIndex(pParse, pIndex, iMem); + sqlite3ChangeCookie(pParse, iDb); + sqlite3VdbeAddParseSchemaOp(v, iDb, + sqlite3MPrintf(db, "name='%q' AND type='index'", pIndex->zName)); + sqlite3VdbeAddOp1(v, OP_Expire, 0); + } + } + + /* When adding an index to the list of indices for a table, make + ** sure all indices labeled OE_Replace come after all those labeled + ** OE_Ignore. This is necessary for the correct constraint check + ** processing (in sqlite3GenerateConstraintChecks()) as part of + ** UPDATE and INSERT statements. + */ + if( db->init.busy || pTblName==0 ){ + if( onError!=OE_Replace || pTab->pIndex==0 + || pTab->pIndex->onError==OE_Replace){ + pIndex->pNext = pTab->pIndex; + pTab->pIndex = pIndex; + }else{ + Index *pOther = pTab->pIndex; + while( pOther->pNext && pOther->pNext->onError!=OE_Replace ){ + pOther = pOther->pNext; + } + pIndex->pNext = pOther->pNext; + pOther->pNext = pIndex; + } + pRet = pIndex; + pIndex = 0; + } + + /* Clean up before exiting */ +exit_create_index: + if( pIndex ) freeIndex(db, pIndex); + sqlite3ExprDelete(db, pPIWhere); + sqlite3ExprListDelete(db, pList); + sqlite3SrcListDelete(db, pTblName); + sqlite3DbFree(db, zName); + return pRet; +} + +/* +** Fill the Index.aiRowEst[] array with default information - information +** to be used when we have not run the ANALYZE command. +** +** aiRowEst[0] is suppose to contain the number of elements in the index. +** Since we do not know, guess 1 million. aiRowEst[1] is an estimate of the +** number of rows in the table that match any particular value of the +** first column of the index. aiRowEst[2] is an estimate of the number +** of rows that match any particular combination of the first 2 columns +** of the index. And so forth. It must always be the case that +* +** aiRowEst[N]<=aiRowEst[N-1] +** aiRowEst[N]>=1 +** +** Apart from that, we have little to go on besides intuition as to +** how aiRowEst[] should be initialized. The numbers generated here +** are based on typical values found in actual indices. +*/ +SQLITE_PRIVATE void sqlite3DefaultRowEst(Index *pIdx){ + /* 10, 9, 8, 7, 6 */ + LogEst aVal[] = { 33, 32, 30, 28, 26 }; + LogEst *a = pIdx->aiRowLogEst; + int nCopy = MIN(ArraySize(aVal), pIdx->nKeyCol); + int i; + + /* Set the first entry (number of rows in the index) to the estimated + ** number of rows in the table. Or 10, if the estimated number of rows + ** in the table is less than that. */ + a[0] = pIdx->pTable->nRowLogEst; + if( a[0]<33 ) a[0] = 33; assert( 33==sqlite3LogEst(10) ); + + /* Estimate that a[1] is 10, a[2] is 9, a[3] is 8, a[4] is 7, a[5] is + ** 6 and each subsequent value (if any) is 5. */ + memcpy(&a[1], aVal, nCopy*sizeof(LogEst)); + for(i=nCopy+1; i<=pIdx->nKeyCol; i++){ + a[i] = 23; assert( 23==sqlite3LogEst(5) ); + } + + assert( 0==sqlite3LogEst(1) ); + if( pIdx->onError!=OE_None ) a[pIdx->nKeyCol] = 0; +} + +/* +** This routine will drop an existing named index. This routine +** implements the DROP INDEX statement. +*/ +SQLITE_PRIVATE void sqlite3DropIndex(Parse *pParse, SrcList *pName, int ifExists){ + Index *pIndex; + Vdbe *v; + sqlite3 *db = pParse->db; + int iDb; + + assert( pParse->nErr==0 ); /* Never called with prior errors */ + if( db->mallocFailed ){ + goto exit_drop_index; + } + assert( pName->nSrc==1 ); + if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ + goto exit_drop_index; + } + pIndex = sqlite3FindIndex(db, pName->a[0].zName, pName->a[0].zDatabase); + if( pIndex==0 ){ + if( !ifExists ){ + sqlite3ErrorMsg(pParse, "no such index: %S", pName, 0); + }else{ + sqlite3CodeVerifyNamedSchema(pParse, pName->a[0].zDatabase); + } + pParse->checkSchema = 1; + goto exit_drop_index; + } + if( pIndex->idxType!=SQLITE_IDXTYPE_APPDEF ){ + sqlite3ErrorMsg(pParse, "index associated with UNIQUE " + "or PRIMARY KEY constraint cannot be dropped", 0); + goto exit_drop_index; + } + iDb = sqlite3SchemaToIndex(db, pIndex->pSchema); +#ifndef SQLITE_OMIT_AUTHORIZATION + { + int code = SQLITE_DROP_INDEX; + Table *pTab = pIndex->pTable; + const char *zDb = db->aDb[iDb].zName; + const char *zTab = SCHEMA_TABLE(iDb); + if( sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb) ){ + goto exit_drop_index; + } + if( !OMIT_TEMPDB && iDb ) code = SQLITE_DROP_TEMP_INDEX; + if( sqlite3AuthCheck(pParse, code, pIndex->zName, pTab->zName, zDb) ){ + goto exit_drop_index; + } + } +#endif + + /* Generate code to remove the index and from the master table */ + v = sqlite3GetVdbe(pParse); + if( v ){ + sqlite3BeginWriteOperation(pParse, 1, iDb); + sqlite3NestedParse(pParse, + "DELETE FROM %Q.%s WHERE name=%Q AND type='index'", + db->aDb[iDb].zName, SCHEMA_TABLE(iDb), pIndex->zName + ); + sqlite3ClearStatTables(pParse, iDb, "idx", pIndex->zName); + sqlite3ChangeCookie(pParse, iDb); + destroyRootPage(pParse, pIndex->tnum, iDb); + sqlite3VdbeAddOp4(v, OP_DropIndex, iDb, 0, 0, pIndex->zName, 0); + } + +exit_drop_index: + sqlite3SrcListDelete(db, pName); +} + +/* +** pArray is a pointer to an array of objects. Each object in the +** array is szEntry bytes in size. This routine uses sqlite3DbRealloc() +** to extend the array so that there is space for a new object at the end. +** +** When this function is called, *pnEntry contains the current size of +** the array (in entries - so the allocation is ((*pnEntry) * szEntry) bytes +** in total). +** +** If the realloc() is successful (i.e. if no OOM condition occurs), the +** space allocated for the new object is zeroed, *pnEntry updated to +** reflect the new size of the array and a pointer to the new allocation +** returned. *pIdx is set to the index of the new array entry in this case. +** +** Otherwise, if the realloc() fails, *pIdx is set to -1, *pnEntry remains +** unchanged and a copy of pArray returned. +*/ +SQLITE_PRIVATE void *sqlite3ArrayAllocate( + sqlite3 *db, /* Connection to notify of malloc failures */ + void *pArray, /* Array of objects. Might be reallocated */ + int szEntry, /* Size of each object in the array */ + int *pnEntry, /* Number of objects currently in use */ + int *pIdx /* Write the index of a new slot here */ +){ + char *z; + int n = *pnEntry; + if( (n & (n-1))==0 ){ + int sz = (n==0) ? 1 : 2*n; + void *pNew = sqlite3DbRealloc(db, pArray, sz*szEntry); + if( pNew==0 ){ + *pIdx = -1; + return pArray; + } + pArray = pNew; + } + z = (char*)pArray; + memset(&z[n * szEntry], 0, szEntry); + *pIdx = n; + ++*pnEntry; + return pArray; +} + +/* +** Append a new element to the given IdList. Create a new IdList if +** need be. +** +** A new IdList is returned, or NULL if malloc() fails. +*/ +SQLITE_PRIVATE IdList *sqlite3IdListAppend(sqlite3 *db, IdList *pList, Token *pToken){ + int i; + if( pList==0 ){ + pList = sqlite3DbMallocZero(db, sizeof(IdList) ); + if( pList==0 ) return 0; + } + pList->a = sqlite3ArrayAllocate( + db, + pList->a, + sizeof(pList->a[0]), + &pList->nId, + &i + ); + if( i<0 ){ + sqlite3IdListDelete(db, pList); + return 0; + } + pList->a[i].zName = sqlite3NameFromToken(db, pToken); + return pList; +} + +/* +** Delete an IdList. +*/ +SQLITE_PRIVATE void sqlite3IdListDelete(sqlite3 *db, IdList *pList){ + int i; + if( pList==0 ) return; + for(i=0; inId; i++){ + sqlite3DbFree(db, pList->a[i].zName); + } + sqlite3DbFree(db, pList->a); + sqlite3DbFree(db, pList); +} + +/* +** Return the index in pList of the identifier named zId. Return -1 +** if not found. +*/ +SQLITE_PRIVATE int sqlite3IdListIndex(IdList *pList, const char *zName){ + int i; + if( pList==0 ) return -1; + for(i=0; inId; i++){ + if( sqlite3StrICmp(pList->a[i].zName, zName)==0 ) return i; + } + return -1; +} + +/* +** Expand the space allocated for the given SrcList object by +** creating nExtra new slots beginning at iStart. iStart is zero based. +** New slots are zeroed. +** +** For example, suppose a SrcList initially contains two entries: A,B. +** To append 3 new entries onto the end, do this: +** +** sqlite3SrcListEnlarge(db, pSrclist, 3, 2); +** +** After the call above it would contain: A, B, nil, nil, nil. +** If the iStart argument had been 1 instead of 2, then the result +** would have been: A, nil, nil, nil, B. To prepend the new slots, +** the iStart value would be 0. The result then would +** be: nil, nil, nil, A, B. +** +** If a memory allocation fails the SrcList is unchanged. The +** db->mallocFailed flag will be set to true. +*/ +SQLITE_PRIVATE SrcList *sqlite3SrcListEnlarge( + sqlite3 *db, /* Database connection to notify of OOM errors */ + SrcList *pSrc, /* The SrcList to be enlarged */ + int nExtra, /* Number of new slots to add to pSrc->a[] */ + int iStart /* Index in pSrc->a[] of first new slot */ +){ + int i; + + /* Sanity checking on calling parameters */ + assert( iStart>=0 ); + assert( nExtra>=1 ); + assert( pSrc!=0 ); + assert( iStart<=pSrc->nSrc ); + + /* Allocate additional space if needed */ + if( (u32)pSrc->nSrc+nExtra>pSrc->nAlloc ){ + SrcList *pNew; + int nAlloc = pSrc->nSrc+nExtra; + int nGot; + pNew = sqlite3DbRealloc(db, pSrc, + sizeof(*pSrc) + (nAlloc-1)*sizeof(pSrc->a[0]) ); + if( pNew==0 ){ + assert( db->mallocFailed ); + return pSrc; + } + pSrc = pNew; + nGot = (sqlite3DbMallocSize(db, pNew) - sizeof(*pSrc))/sizeof(pSrc->a[0])+1; + pSrc->nAlloc = nGot; + } + + /* Move existing slots that come after the newly inserted slots + ** out of the way */ + for(i=pSrc->nSrc-1; i>=iStart; i--){ + pSrc->a[i+nExtra] = pSrc->a[i]; + } + pSrc->nSrc += nExtra; + + /* Zero the newly allocated slots */ + memset(&pSrc->a[iStart], 0, sizeof(pSrc->a[0])*nExtra); + for(i=iStart; ia[i].iCursor = -1; + } + + /* Return a pointer to the enlarged SrcList */ + return pSrc; +} + + +/* +** Append a new table name to the given SrcList. Create a new SrcList if +** need be. A new entry is created in the SrcList even if pTable is NULL. +** +** A SrcList is returned, or NULL if there is an OOM error. The returned +** SrcList might be the same as the SrcList that was input or it might be +** a new one. If an OOM error does occurs, then the prior value of pList +** that is input to this routine is automatically freed. +** +** If pDatabase is not null, it means that the table has an optional +** database name prefix. Like this: "database.table". The pDatabase +** points to the table name and the pTable points to the database name. +** The SrcList.a[].zName field is filled with the table name which might +** come from pTable (if pDatabase is NULL) or from pDatabase. +** SrcList.a[].zDatabase is filled with the database name from pTable, +** or with NULL if no database is specified. +** +** In other words, if call like this: +** +** sqlite3SrcListAppend(D,A,B,0); +** +** Then B is a table name and the database name is unspecified. If called +** like this: +** +** sqlite3SrcListAppend(D,A,B,C); +** +** Then C is the table name and B is the database name. If C is defined +** then so is B. In other words, we never have a case where: +** +** sqlite3SrcListAppend(D,A,0,C); +** +** Both pTable and pDatabase are assumed to be quoted. They are dequoted +** before being added to the SrcList. +*/ +SQLITE_PRIVATE SrcList *sqlite3SrcListAppend( + sqlite3 *db, /* Connection to notify of malloc failures */ + SrcList *pList, /* Append to this SrcList. NULL creates a new SrcList */ + Token *pTable, /* Table to append */ + Token *pDatabase /* Database of the table */ +){ + struct SrcList_item *pItem; + assert( pDatabase==0 || pTable!=0 ); /* Cannot have C without B */ + if( pList==0 ){ + pList = sqlite3DbMallocZero(db, sizeof(SrcList) ); + if( pList==0 ) return 0; + pList->nAlloc = 1; + } + pList = sqlite3SrcListEnlarge(db, pList, 1, pList->nSrc); + if( db->mallocFailed ){ + sqlite3SrcListDelete(db, pList); + return 0; + } + pItem = &pList->a[pList->nSrc-1]; + if( pDatabase && pDatabase->z==0 ){ + pDatabase = 0; + } + if( pDatabase ){ + Token *pTemp = pDatabase; + pDatabase = pTable; + pTable = pTemp; + } + pItem->zName = sqlite3NameFromToken(db, pTable); + pItem->zDatabase = sqlite3NameFromToken(db, pDatabase); + return pList; +} + +/* +** Assign VdbeCursor index numbers to all tables in a SrcList +*/ +SQLITE_PRIVATE void sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList){ + int i; + struct SrcList_item *pItem; + assert(pList || pParse->db->mallocFailed ); + if( pList ){ + for(i=0, pItem=pList->a; inSrc; i++, pItem++){ + if( pItem->iCursor>=0 ) break; + pItem->iCursor = pParse->nTab++; + if( pItem->pSelect ){ + sqlite3SrcListAssignCursors(pParse, pItem->pSelect->pSrc); + } + } + } +} + +/* +** Delete an entire SrcList including all its substructure. +*/ +SQLITE_PRIVATE void sqlite3SrcListDelete(sqlite3 *db, SrcList *pList){ + int i; + struct SrcList_item *pItem; + if( pList==0 ) return; + for(pItem=pList->a, i=0; inSrc; i++, pItem++){ + sqlite3DbFree(db, pItem->zDatabase); + sqlite3DbFree(db, pItem->zName); + sqlite3DbFree(db, pItem->zAlias); + sqlite3DbFree(db, pItem->zIndex); + sqlite3DeleteTable(db, pItem->pTab); + sqlite3SelectDelete(db, pItem->pSelect); + sqlite3ExprDelete(db, pItem->pOn); + sqlite3IdListDelete(db, pItem->pUsing); + } + sqlite3DbFree(db, pList); +} + +/* +** This routine is called by the parser to add a new term to the +** end of a growing FROM clause. The "p" parameter is the part of +** the FROM clause that has already been constructed. "p" is NULL +** if this is the first term of the FROM clause. pTable and pDatabase +** are the name of the table and database named in the FROM clause term. +** pDatabase is NULL if the database name qualifier is missing - the +** usual case. If the term has a alias, then pAlias points to the +** alias token. If the term is a subquery, then pSubquery is the +** SELECT statement that the subquery encodes. The pTable and +** pDatabase parameters are NULL for subqueries. The pOn and pUsing +** parameters are the content of the ON and USING clauses. +** +** Return a new SrcList which encodes is the FROM with the new +** term added. +*/ +SQLITE_PRIVATE SrcList *sqlite3SrcListAppendFromTerm( + Parse *pParse, /* Parsing context */ + SrcList *p, /* The left part of the FROM clause already seen */ + Token *pTable, /* Name of the table to add to the FROM clause */ + Token *pDatabase, /* Name of the database containing pTable */ + Token *pAlias, /* The right-hand side of the AS subexpression */ + Select *pSubquery, /* A subquery used in place of a table name */ + Expr *pOn, /* The ON clause of a join */ + IdList *pUsing /* The USING clause of a join */ +){ + struct SrcList_item *pItem; + sqlite3 *db = pParse->db; + if( !p && (pOn || pUsing) ){ + sqlite3ErrorMsg(pParse, "a JOIN clause is required before %s", + (pOn ? "ON" : "USING") + ); + goto append_from_error; + } + p = sqlite3SrcListAppend(db, p, pTable, pDatabase); + if( p==0 || NEVER(p->nSrc==0) ){ + goto append_from_error; + } + pItem = &p->a[p->nSrc-1]; + assert( pAlias!=0 ); + if( pAlias->n ){ + pItem->zAlias = sqlite3NameFromToken(db, pAlias); + } + pItem->pSelect = pSubquery; + pItem->pOn = pOn; + pItem->pUsing = pUsing; + return p; + + append_from_error: + assert( p==0 ); + sqlite3ExprDelete(db, pOn); + sqlite3IdListDelete(db, pUsing); + sqlite3SelectDelete(db, pSubquery); + return 0; +} + +/* +** Add an INDEXED BY or NOT INDEXED clause to the most recently added +** element of the source-list passed as the second argument. +*/ +SQLITE_PRIVATE void sqlite3SrcListIndexedBy(Parse *pParse, SrcList *p, Token *pIndexedBy){ + assert( pIndexedBy!=0 ); + if( p && ALWAYS(p->nSrc>0) ){ + struct SrcList_item *pItem = &p->a[p->nSrc-1]; + assert( pItem->notIndexed==0 && pItem->zIndex==0 ); + if( pIndexedBy->n==1 && !pIndexedBy->z ){ + /* A "NOT INDEXED" clause was supplied. See parse.y + ** construct "indexed_opt" for details. */ + pItem->notIndexed = 1; + }else{ + pItem->zIndex = sqlite3NameFromToken(pParse->db, pIndexedBy); + } + } +} + +/* +** When building up a FROM clause in the parser, the join operator +** is initially attached to the left operand. But the code generator +** expects the join operator to be on the right operand. This routine +** Shifts all join operators from left to right for an entire FROM +** clause. +** +** Example: Suppose the join is like this: +** +** A natural cross join B +** +** The operator is "natural cross join". The A and B operands are stored +** in p->a[0] and p->a[1], respectively. The parser initially stores the +** operator with A. This routine shifts that operator over to B. +*/ +SQLITE_PRIVATE void sqlite3SrcListShiftJoinType(SrcList *p){ + if( p ){ + int i; + assert( p->a || p->nSrc==0 ); + for(i=p->nSrc-1; i>0; i--){ + p->a[i].jointype = p->a[i-1].jointype; + } + p->a[0].jointype = 0; + } +} + +/* +** Begin a transaction +*/ +SQLITE_PRIVATE void sqlite3BeginTransaction(Parse *pParse, int type){ + sqlite3 *db; + Vdbe *v; + int i; + + assert( pParse!=0 ); + db = pParse->db; + assert( db!=0 ); +/* if( db->aDb[0].pBt==0 ) return; */ + if( sqlite3AuthCheck(pParse, SQLITE_TRANSACTION, "BEGIN", 0, 0) ){ + return; + } + v = sqlite3GetVdbe(pParse); + if( !v ) return; + if( type!=TK_DEFERRED ){ + for(i=0; inDb; i++){ + sqlite3VdbeAddOp2(v, OP_Transaction, i, (type==TK_EXCLUSIVE)+1); + sqlite3VdbeUsesBtree(v, i); + } + } + sqlite3VdbeAddOp2(v, OP_AutoCommit, 0, 0); +} + +/* +** Commit a transaction +*/ +SQLITE_PRIVATE void sqlite3CommitTransaction(Parse *pParse){ + Vdbe *v; + + assert( pParse!=0 ); + assert( pParse->db!=0 ); + if( sqlite3AuthCheck(pParse, SQLITE_TRANSACTION, "COMMIT", 0, 0) ){ + return; + } + v = sqlite3GetVdbe(pParse); + if( v ){ + sqlite3VdbeAddOp2(v, OP_AutoCommit, 1, 0); + } +} + +/* +** Rollback a transaction +*/ +SQLITE_PRIVATE void sqlite3RollbackTransaction(Parse *pParse){ + Vdbe *v; + + assert( pParse!=0 ); + assert( pParse->db!=0 ); + if( sqlite3AuthCheck(pParse, SQLITE_TRANSACTION, "ROLLBACK", 0, 0) ){ + return; + } + v = sqlite3GetVdbe(pParse); + if( v ){ + sqlite3VdbeAddOp2(v, OP_AutoCommit, 1, 1); + } +} + +/* +** This function is called by the parser when it parses a command to create, +** release or rollback an SQL savepoint. +*/ +SQLITE_PRIVATE void sqlite3Savepoint(Parse *pParse, int op, Token *pName){ + char *zName = sqlite3NameFromToken(pParse->db, pName); + if( zName ){ + Vdbe *v = sqlite3GetVdbe(pParse); +#ifndef SQLITE_OMIT_AUTHORIZATION + static const char * const az[] = { "BEGIN", "RELEASE", "ROLLBACK" }; + assert( !SAVEPOINT_BEGIN && SAVEPOINT_RELEASE==1 && SAVEPOINT_ROLLBACK==2 ); +#endif + if( !v || sqlite3AuthCheck(pParse, SQLITE_SAVEPOINT, az[op], zName, 0) ){ + sqlite3DbFree(pParse->db, zName); + return; + } + sqlite3VdbeAddOp4(v, OP_Savepoint, op, 0, 0, zName, P4_DYNAMIC); + } +} + +/* +** Make sure the TEMP database is open and available for use. Return +** the number of errors. Leave any error messages in the pParse structure. +*/ +SQLITE_PRIVATE int sqlite3OpenTempDatabase(Parse *pParse){ + sqlite3 *db = pParse->db; + if( db->aDb[1].pBt==0 && !pParse->explain ){ + int rc; + Btree *pBt; + static const int flags = + SQLITE_OPEN_READWRITE | + SQLITE_OPEN_CREATE | + SQLITE_OPEN_EXCLUSIVE | + SQLITE_OPEN_DELETEONCLOSE | + SQLITE_OPEN_TEMP_DB; + + rc = sqlite3BtreeOpen(db->pVfs, 0, db, &pBt, 0, flags); + if( rc!=SQLITE_OK ){ + sqlite3ErrorMsg(pParse, "unable to open a temporary database " + "file for storing temporary tables"); + pParse->rc = rc; + return 1; + } + db->aDb[1].pBt = pBt; + assert( db->aDb[1].pSchema ); + if( SQLITE_NOMEM==sqlite3BtreeSetPageSize(pBt, db->nextPagesize, -1, 0) ){ + db->mallocFailed = 1; + return 1; + } + } + return 0; +} + +/* +** Record the fact that the schema cookie will need to be verified +** for database iDb. The code to actually verify the schema cookie +** will occur at the end of the top-level VDBE and will be generated +** later, by sqlite3FinishCoding(). +*/ +SQLITE_PRIVATE void sqlite3CodeVerifySchema(Parse *pParse, int iDb){ + Parse *pToplevel = sqlite3ParseToplevel(pParse); + sqlite3 *db = pToplevel->db; + yDbMask mask; + + assert( iDb>=0 && iDbnDb ); + assert( db->aDb[iDb].pBt!=0 || iDb==1 ); + assert( iDbcookieMask & mask)==0 ){ + pToplevel->cookieMask |= mask; + pToplevel->cookieValue[iDb] = db->aDb[iDb].pSchema->schema_cookie; + if( !OMIT_TEMPDB && iDb==1 ){ + sqlite3OpenTempDatabase(pToplevel); + } + } +} + +/* +** If argument zDb is NULL, then call sqlite3CodeVerifySchema() for each +** attached database. Otherwise, invoke it for the database named zDb only. +*/ +SQLITE_PRIVATE void sqlite3CodeVerifyNamedSchema(Parse *pParse, const char *zDb){ + sqlite3 *db = pParse->db; + int i; + for(i=0; inDb; i++){ + Db *pDb = &db->aDb[i]; + if( pDb->pBt && (!zDb || 0==sqlite3StrICmp(zDb, pDb->zName)) ){ + sqlite3CodeVerifySchema(pParse, i); + } + } +} + +/* +** Generate VDBE code that prepares for doing an operation that +** might change the database. +** +** This routine starts a new transaction if we are not already within +** a transaction. If we are already within a transaction, then a checkpoint +** is set if the setStatement parameter is true. A checkpoint should +** be set for operations that might fail (due to a constraint) part of +** the way through and which will need to undo some writes without having to +** rollback the whole transaction. For operations where all constraints +** can be checked before any changes are made to the database, it is never +** necessary to undo a write and the checkpoint should not be set. +*/ +SQLITE_PRIVATE void sqlite3BeginWriteOperation(Parse *pParse, int setStatement, int iDb){ + Parse *pToplevel = sqlite3ParseToplevel(pParse); + sqlite3CodeVerifySchema(pParse, iDb); + pToplevel->writeMask |= ((yDbMask)1)<isMultiWrite |= setStatement; +} + +/* +** Indicate that the statement currently under construction might write +** more than one entry (example: deleting one row then inserting another, +** inserting multiple rows in a table, or inserting a row and index entries.) +** If an abort occurs after some of these writes have completed, then it will +** be necessary to undo the completed writes. +*/ +SQLITE_PRIVATE void sqlite3MultiWrite(Parse *pParse){ + Parse *pToplevel = sqlite3ParseToplevel(pParse); + pToplevel->isMultiWrite = 1; +} + +/* +** The code generator calls this routine if is discovers that it is +** possible to abort a statement prior to completion. In order to +** perform this abort without corrupting the database, we need to make +** sure that the statement is protected by a statement transaction. +** +** Technically, we only need to set the mayAbort flag if the +** isMultiWrite flag was previously set. There is a time dependency +** such that the abort must occur after the multiwrite. This makes +** some statements involving the REPLACE conflict resolution algorithm +** go a little faster. But taking advantage of this time dependency +** makes it more difficult to prove that the code is correct (in +** particular, it prevents us from writing an effective +** implementation of sqlite3AssertMayAbort()) and so we have chosen +** to take the safe route and skip the optimization. +*/ +SQLITE_PRIVATE void sqlite3MayAbort(Parse *pParse){ + Parse *pToplevel = sqlite3ParseToplevel(pParse); + pToplevel->mayAbort = 1; +} + +/* +** Code an OP_Halt that causes the vdbe to return an SQLITE_CONSTRAINT +** error. The onError parameter determines which (if any) of the statement +** and/or current transaction is rolled back. +*/ +SQLITE_PRIVATE void sqlite3HaltConstraint( + Parse *pParse, /* Parsing context */ + int errCode, /* extended error code */ + int onError, /* Constraint type */ + char *p4, /* Error message */ + i8 p4type, /* P4_STATIC or P4_TRANSIENT */ + u8 p5Errmsg /* P5_ErrMsg type */ +){ + Vdbe *v = sqlite3GetVdbe(pParse); + assert( (errCode&0xff)==SQLITE_CONSTRAINT ); + if( onError==OE_Abort ){ + sqlite3MayAbort(pParse); + } + sqlite3VdbeAddOp4(v, OP_Halt, errCode, onError, 0, p4, p4type); + if( p5Errmsg ) sqlite3VdbeChangeP5(v, p5Errmsg); +} + +/* +** Code an OP_Halt due to UNIQUE or PRIMARY KEY constraint violation. +*/ +SQLITE_PRIVATE void sqlite3UniqueConstraint( + Parse *pParse, /* Parsing context */ + int onError, /* Constraint type */ + Index *pIdx /* The index that triggers the constraint */ +){ + char *zErr; + int j; + StrAccum errMsg; + Table *pTab = pIdx->pTable; + + sqlite3StrAccumInit(&errMsg, 0, 0, 200); + errMsg.db = pParse->db; + for(j=0; jnKeyCol; j++){ + char *zCol = pTab->aCol[pIdx->aiColumn[j]].zName; + if( j ) sqlite3StrAccumAppend(&errMsg, ", ", 2); + sqlite3StrAccumAppendAll(&errMsg, pTab->zName); + sqlite3StrAccumAppend(&errMsg, ".", 1); + sqlite3StrAccumAppendAll(&errMsg, zCol); + } + zErr = sqlite3StrAccumFinish(&errMsg); + sqlite3HaltConstraint(pParse, + IsPrimaryKeyIndex(pIdx) ? SQLITE_CONSTRAINT_PRIMARYKEY + : SQLITE_CONSTRAINT_UNIQUE, + onError, zErr, P4_DYNAMIC, P5_ConstraintUnique); +} + + +/* +** Code an OP_Halt due to non-unique rowid. +*/ +SQLITE_PRIVATE void sqlite3RowidConstraint( + Parse *pParse, /* Parsing context */ + int onError, /* Conflict resolution algorithm */ + Table *pTab /* The table with the non-unique rowid */ +){ + char *zMsg; + int rc; + if( pTab->iPKey>=0 ){ + zMsg = sqlite3MPrintf(pParse->db, "%s.%s", pTab->zName, + pTab->aCol[pTab->iPKey].zName); + rc = SQLITE_CONSTRAINT_PRIMARYKEY; + }else{ + zMsg = sqlite3MPrintf(pParse->db, "%s.rowid", pTab->zName); + rc = SQLITE_CONSTRAINT_ROWID; + } + sqlite3HaltConstraint(pParse, rc, onError, zMsg, P4_DYNAMIC, + P5_ConstraintUnique); +} + +/* +** Check to see if pIndex uses the collating sequence pColl. Return +** true if it does and false if it does not. +*/ +#ifndef SQLITE_OMIT_REINDEX +static int collationMatch(const char *zColl, Index *pIndex){ + int i; + assert( zColl!=0 ); + for(i=0; inColumn; i++){ + const char *z = pIndex->azColl[i]; + assert( z!=0 || pIndex->aiColumn[i]<0 ); + if( pIndex->aiColumn[i]>=0 && 0==sqlite3StrICmp(z, zColl) ){ + return 1; + } + } + return 0; +} +#endif + +/* +** Recompute all indices of pTab that use the collating sequence pColl. +** If pColl==0 then recompute all indices of pTab. +*/ +#ifndef SQLITE_OMIT_REINDEX +static void reindexTable(Parse *pParse, Table *pTab, char const *zColl){ + Index *pIndex; /* An index associated with pTab */ + + for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){ + if( zColl==0 || collationMatch(zColl, pIndex) ){ + int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); + sqlite3BeginWriteOperation(pParse, 0, iDb); + sqlite3RefillIndex(pParse, pIndex, -1); + } + } +} +#endif + +/* +** Recompute all indices of all tables in all databases where the +** indices use the collating sequence pColl. If pColl==0 then recompute +** all indices everywhere. +*/ +#ifndef SQLITE_OMIT_REINDEX +static void reindexDatabases(Parse *pParse, char const *zColl){ + Db *pDb; /* A single database */ + int iDb; /* The database index number */ + sqlite3 *db = pParse->db; /* The database connection */ + HashElem *k; /* For looping over tables in pDb */ + Table *pTab; /* A table in the database */ + + assert( sqlite3BtreeHoldsAllMutexes(db) ); /* Needed for schema access */ + for(iDb=0, pDb=db->aDb; iDbnDb; iDb++, pDb++){ + assert( pDb!=0 ); + for(k=sqliteHashFirst(&pDb->pSchema->tblHash); k; k=sqliteHashNext(k)){ + pTab = (Table*)sqliteHashData(k); + reindexTable(pParse, pTab, zColl); + } + } +} +#endif + +/* +** Generate code for the REINDEX command. +** +** REINDEX -- 1 +** REINDEX -- 2 +** REINDEX ?.? -- 3 +** REINDEX ?.? -- 4 +** +** Form 1 causes all indices in all attached databases to be rebuilt. +** Form 2 rebuilds all indices in all databases that use the named +** collating function. Forms 3 and 4 rebuild the named index or all +** indices associated with the named table. +*/ +#ifndef SQLITE_OMIT_REINDEX +SQLITE_PRIVATE void sqlite3Reindex(Parse *pParse, Token *pName1, Token *pName2){ + CollSeq *pColl; /* Collating sequence to be reindexed, or NULL */ + char *z; /* Name of a table or index */ + const char *zDb; /* Name of the database */ + Table *pTab; /* A table in the database */ + Index *pIndex; /* An index associated with pTab */ + int iDb; /* The database index number */ + sqlite3 *db = pParse->db; /* The database connection */ + Token *pObjName; /* Name of the table or index to be reindexed */ + + /* Read the database schema. If an error occurs, leave an error message + ** and code in pParse and return NULL. */ + if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ + return; + } + + if( pName1==0 ){ + reindexDatabases(pParse, 0); + return; + }else if( NEVER(pName2==0) || pName2->z==0 ){ + char *zColl; + assert( pName1->z ); + zColl = sqlite3NameFromToken(pParse->db, pName1); + if( !zColl ) return; + pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); + if( pColl ){ + reindexDatabases(pParse, zColl); + sqlite3DbFree(db, zColl); + return; + } + sqlite3DbFree(db, zColl); + } + iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pObjName); + if( iDb<0 ) return; + z = sqlite3NameFromToken(db, pObjName); + if( z==0 ) return; + zDb = db->aDb[iDb].zName; + pTab = sqlite3FindTable(db, z, zDb); + if( pTab ){ + reindexTable(pParse, pTab, 0); + sqlite3DbFree(db, z); + return; + } + pIndex = sqlite3FindIndex(db, z, zDb); + sqlite3DbFree(db, z); + if( pIndex ){ + sqlite3BeginWriteOperation(pParse, 0, iDb); + sqlite3RefillIndex(pParse, pIndex, -1); + return; + } + sqlite3ErrorMsg(pParse, "unable to identify the object to be reindexed"); +} +#endif + +/* +** Return a KeyInfo structure that is appropriate for the given Index. +** +** The KeyInfo structure for an index is cached in the Index object. +** So there might be multiple references to the returned pointer. The +** caller should not try to modify the KeyInfo object. +** +** The caller should invoke sqlite3KeyInfoUnref() on the returned object +** when it has finished using it. +*/ +SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoOfIndex(Parse *pParse, Index *pIdx){ + if( pParse->nErr ) return 0; +#ifndef SQLITE_OMIT_SHARED_CACHE + if( pIdx->pKeyInfo && pIdx->pKeyInfo->db!=pParse->db ){ + sqlite3KeyInfoUnref(pIdx->pKeyInfo); + pIdx->pKeyInfo = 0; + } +#endif + if( pIdx->pKeyInfo==0 ){ + int i; + int nCol = pIdx->nColumn; + int nKey = pIdx->nKeyCol; + KeyInfo *pKey; + if( pIdx->uniqNotNull ){ + pKey = sqlite3KeyInfoAlloc(pParse->db, nKey, nCol-nKey); + }else{ + pKey = sqlite3KeyInfoAlloc(pParse->db, nCol, 0); + } + if( pKey ){ + assert( sqlite3KeyInfoIsWriteable(pKey) ); + for(i=0; iazColl[i]; + assert( zColl!=0 ); + pKey->aColl[i] = strcmp(zColl,"BINARY")==0 ? 0 : + sqlite3LocateCollSeq(pParse, zColl); + pKey->aSortOrder[i] = pIdx->aSortOrder[i]; + } + if( pParse->nErr ){ + sqlite3KeyInfoUnref(pKey); + }else{ + pIdx->pKeyInfo = pKey; + } + } + } + return sqlite3KeyInfoRef(pIdx->pKeyInfo); +} + +#ifndef SQLITE_OMIT_CTE +/* +** This routine is invoked once per CTE by the parser while parsing a +** WITH clause. +*/ +SQLITE_PRIVATE With *sqlite3WithAdd( + Parse *pParse, /* Parsing context */ + With *pWith, /* Existing WITH clause, or NULL */ + Token *pName, /* Name of the common-table */ + ExprList *pArglist, /* Optional column name list for the table */ + Select *pQuery /* Query used to initialize the table */ +){ + sqlite3 *db = pParse->db; + With *pNew; + char *zName; + + /* Check that the CTE name is unique within this WITH clause. If + ** not, store an error in the Parse structure. */ + zName = sqlite3NameFromToken(pParse->db, pName); + if( zName && pWith ){ + int i; + for(i=0; inCte; i++){ + if( sqlite3StrICmp(zName, pWith->a[i].zName)==0 ){ + sqlite3ErrorMsg(pParse, "duplicate WITH table name: %s", zName); + } + } + } + + if( pWith ){ + int nByte = sizeof(*pWith) + (sizeof(pWith->a[1]) * pWith->nCte); + pNew = sqlite3DbRealloc(db, pWith, nByte); + }else{ + pNew = sqlite3DbMallocZero(db, sizeof(*pWith)); + } + assert( zName!=0 || pNew==0 ); + assert( db->mallocFailed==0 || pNew==0 ); + + if( pNew==0 ){ + sqlite3ExprListDelete(db, pArglist); + sqlite3SelectDelete(db, pQuery); + sqlite3DbFree(db, zName); + pNew = pWith; + }else{ + pNew->a[pNew->nCte].pSelect = pQuery; + pNew->a[pNew->nCte].pCols = pArglist; + pNew->a[pNew->nCte].zName = zName; + pNew->a[pNew->nCte].zErr = 0; + pNew->nCte++; + } + + return pNew; +} + +/* +** Free the contents of the With object passed as the second argument. +*/ +SQLITE_PRIVATE void sqlite3WithDelete(sqlite3 *db, With *pWith){ + if( pWith ){ + int i; + for(i=0; inCte; i++){ + struct Cte *pCte = &pWith->a[i]; + sqlite3ExprListDelete(db, pCte->pCols); + sqlite3SelectDelete(db, pCte->pSelect); + sqlite3DbFree(db, pCte->zName); + } + sqlite3DbFree(db, pWith); + } +} +#endif /* !defined(SQLITE_OMIT_CTE) */ + +/************** End of build.c ***********************************************/ +/************** Begin file callback.c ****************************************/ +/* +** 2005 May 23 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains functions used to access the internal hash tables +** of user defined functions and collation sequences. +*/ + + +/* +** Invoke the 'collation needed' callback to request a collation sequence +** in the encoding enc of name zName, length nName. +*/ +static void callCollNeeded(sqlite3 *db, int enc, const char *zName){ + assert( !db->xCollNeeded || !db->xCollNeeded16 ); + if( db->xCollNeeded ){ + char *zExternal = sqlite3DbStrDup(db, zName); + if( !zExternal ) return; + db->xCollNeeded(db->pCollNeededArg, db, enc, zExternal); + sqlite3DbFree(db, zExternal); + } +#ifndef SQLITE_OMIT_UTF16 + if( db->xCollNeeded16 ){ + char const *zExternal; + sqlite3_value *pTmp = sqlite3ValueNew(db); + sqlite3ValueSetStr(pTmp, -1, zName, SQLITE_UTF8, SQLITE_STATIC); + zExternal = sqlite3ValueText(pTmp, SQLITE_UTF16NATIVE); + if( zExternal ){ + db->xCollNeeded16(db->pCollNeededArg, db, (int)ENC(db), zExternal); + } + sqlite3ValueFree(pTmp); + } +#endif +} + +/* +** This routine is called if the collation factory fails to deliver a +** collation function in the best encoding but there may be other versions +** of this collation function (for other text encodings) available. Use one +** of these instead if they exist. Avoid a UTF-8 <-> UTF-16 conversion if +** possible. +*/ +static int synthCollSeq(sqlite3 *db, CollSeq *pColl){ + CollSeq *pColl2; + char *z = pColl->zName; + int i; + static const u8 aEnc[] = { SQLITE_UTF16BE, SQLITE_UTF16LE, SQLITE_UTF8 }; + for(i=0; i<3; i++){ + pColl2 = sqlite3FindCollSeq(db, aEnc[i], z, 0); + if( pColl2->xCmp!=0 ){ + memcpy(pColl, pColl2, sizeof(CollSeq)); + pColl->xDel = 0; /* Do not copy the destructor */ + return SQLITE_OK; + } + } + return SQLITE_ERROR; +} + +/* +** This function is responsible for invoking the collation factory callback +** or substituting a collation sequence of a different encoding when the +** requested collation sequence is not available in the desired encoding. +** +** If it is not NULL, then pColl must point to the database native encoding +** collation sequence with name zName, length nName. +** +** The return value is either the collation sequence to be used in database +** db for collation type name zName, length nName, or NULL, if no collation +** sequence can be found. If no collation is found, leave an error message. +** +** See also: sqlite3LocateCollSeq(), sqlite3FindCollSeq() +*/ +SQLITE_PRIVATE CollSeq *sqlite3GetCollSeq( + Parse *pParse, /* Parsing context */ + u8 enc, /* The desired encoding for the collating sequence */ + CollSeq *pColl, /* Collating sequence with native encoding, or NULL */ + const char *zName /* Collating sequence name */ +){ + CollSeq *p; + sqlite3 *db = pParse->db; + + p = pColl; + if( !p ){ + p = sqlite3FindCollSeq(db, enc, zName, 0); + } + if( !p || !p->xCmp ){ + /* No collation sequence of this type for this encoding is registered. + ** Call the collation factory to see if it can supply us with one. + */ + callCollNeeded(db, enc, zName); + p = sqlite3FindCollSeq(db, enc, zName, 0); + } + if( p && !p->xCmp && synthCollSeq(db, p) ){ + p = 0; + } + assert( !p || p->xCmp ); + if( p==0 ){ + sqlite3ErrorMsg(pParse, "no such collation sequence: %s", zName); + } + return p; +} + +/* +** This routine is called on a collation sequence before it is used to +** check that it is defined. An undefined collation sequence exists when +** a database is loaded that contains references to collation sequences +** that have not been defined by sqlite3_create_collation() etc. +** +** If required, this routine calls the 'collation needed' callback to +** request a definition of the collating sequence. If this doesn't work, +** an equivalent collating sequence that uses a text encoding different +** from the main database is substituted, if one is available. +*/ +SQLITE_PRIVATE int sqlite3CheckCollSeq(Parse *pParse, CollSeq *pColl){ + if( pColl ){ + const char *zName = pColl->zName; + sqlite3 *db = pParse->db; + CollSeq *p = sqlite3GetCollSeq(pParse, ENC(db), pColl, zName); + if( !p ){ + return SQLITE_ERROR; + } + assert( p==pColl ); + } + return SQLITE_OK; +} + + + +/* +** Locate and return an entry from the db.aCollSeq hash table. If the entry +** specified by zName and nName is not found and parameter 'create' is +** true, then create a new entry. Otherwise return NULL. +** +** Each pointer stored in the sqlite3.aCollSeq hash table contains an +** array of three CollSeq structures. The first is the collation sequence +** prefferred for UTF-8, the second UTF-16le, and the third UTF-16be. +** +** Stored immediately after the three collation sequences is a copy of +** the collation sequence name. A pointer to this string is stored in +** each collation sequence structure. +*/ +static CollSeq *findCollSeqEntry( + sqlite3 *db, /* Database connection */ + const char *zName, /* Name of the collating sequence */ + int create /* Create a new entry if true */ +){ + CollSeq *pColl; + int nName = sqlite3Strlen30(zName); + pColl = sqlite3HashFind(&db->aCollSeq, zName, nName); + + if( 0==pColl && create ){ + pColl = sqlite3DbMallocZero(db, 3*sizeof(*pColl) + nName + 1 ); + if( pColl ){ + CollSeq *pDel = 0; + pColl[0].zName = (char*)&pColl[3]; + pColl[0].enc = SQLITE_UTF8; + pColl[1].zName = (char*)&pColl[3]; + pColl[1].enc = SQLITE_UTF16LE; + pColl[2].zName = (char*)&pColl[3]; + pColl[2].enc = SQLITE_UTF16BE; + memcpy(pColl[0].zName, zName, nName); + pColl[0].zName[nName] = 0; + pDel = sqlite3HashInsert(&db->aCollSeq, pColl[0].zName, nName, pColl); + + /* If a malloc() failure occurred in sqlite3HashInsert(), it will + ** return the pColl pointer to be deleted (because it wasn't added + ** to the hash table). + */ + assert( pDel==0 || pDel==pColl ); + if( pDel!=0 ){ + db->mallocFailed = 1; + sqlite3DbFree(db, pDel); + pColl = 0; + } + } + } + return pColl; +} + +/* +** Parameter zName points to a UTF-8 encoded string nName bytes long. +** Return the CollSeq* pointer for the collation sequence named zName +** for the encoding 'enc' from the database 'db'. +** +** If the entry specified is not found and 'create' is true, then create a +** new entry. Otherwise return NULL. +** +** A separate function sqlite3LocateCollSeq() is a wrapper around +** this routine. sqlite3LocateCollSeq() invokes the collation factory +** if necessary and generates an error message if the collating sequence +** cannot be found. +** +** See also: sqlite3LocateCollSeq(), sqlite3GetCollSeq() +*/ +SQLITE_PRIVATE CollSeq *sqlite3FindCollSeq( + sqlite3 *db, + u8 enc, + const char *zName, + int create +){ + CollSeq *pColl; + if( zName ){ + pColl = findCollSeqEntry(db, zName, create); + }else{ + pColl = db->pDfltColl; + } + assert( SQLITE_UTF8==1 && SQLITE_UTF16LE==2 && SQLITE_UTF16BE==3 ); + assert( enc>=SQLITE_UTF8 && enc<=SQLITE_UTF16BE ); + if( pColl ) pColl += enc-1; + return pColl; +} + +/* During the search for the best function definition, this procedure +** is called to test how well the function passed as the first argument +** matches the request for a function with nArg arguments in a system +** that uses encoding enc. The value returned indicates how well the +** request is matched. A higher value indicates a better match. +** +** If nArg is -1 that means to only return a match (non-zero) if p->nArg +** is also -1. In other words, we are searching for a function that +** takes a variable number of arguments. +** +** If nArg is -2 that means that we are searching for any function +** regardless of the number of arguments it uses, so return a positive +** match score for any +** +** The returned value is always between 0 and 6, as follows: +** +** 0: Not a match. +** 1: UTF8/16 conversion required and function takes any number of arguments. +** 2: UTF16 byte order change required and function takes any number of args. +** 3: encoding matches and function takes any number of arguments +** 4: UTF8/16 conversion required - argument count matches exactly +** 5: UTF16 byte order conversion required - argument count matches exactly +** 6: Perfect match: encoding and argument count match exactly. +** +** If nArg==(-2) then any function with a non-null xStep or xFunc is +** a perfect match and any function with both xStep and xFunc NULL is +** a non-match. +*/ +#define FUNC_PERFECT_MATCH 6 /* The score for a perfect match */ +static int matchQuality( + FuncDef *p, /* The function we are evaluating for match quality */ + int nArg, /* Desired number of arguments. (-1)==any */ + u8 enc /* Desired text encoding */ +){ + int match; + + /* nArg of -2 is a special case */ + if( nArg==(-2) ) return (p->xFunc==0 && p->xStep==0) ? 0 : FUNC_PERFECT_MATCH; + + /* Wrong number of arguments means "no match" */ + if( p->nArg!=nArg && p->nArg>=0 ) return 0; + + /* Give a better score to a function with a specific number of arguments + ** than to function that accepts any number of arguments. */ + if( p->nArg==nArg ){ + match = 4; + }else{ + match = 1; + } + + /* Bonus points if the text encoding matches */ + if( enc==(p->funcFlags & SQLITE_FUNC_ENCMASK) ){ + match += 2; /* Exact encoding match */ + }else if( (enc & p->funcFlags & 2)!=0 ){ + match += 1; /* Both are UTF16, but with different byte orders */ + } + + return match; +} + +/* +** Search a FuncDefHash for a function with the given name. Return +** a pointer to the matching FuncDef if found, or 0 if there is no match. +*/ +static FuncDef *functionSearch( + FuncDefHash *pHash, /* Hash table to search */ + int h, /* Hash of the name */ + const char *zFunc, /* Name of function */ + int nFunc /* Number of bytes in zFunc */ +){ + FuncDef *p; + for(p=pHash->a[h]; p; p=p->pHash){ + if( sqlite3StrNICmp(p->zName, zFunc, nFunc)==0 && p->zName[nFunc]==0 ){ + return p; + } + } + return 0; +} + +/* +** Insert a new FuncDef into a FuncDefHash hash table. +*/ +SQLITE_PRIVATE void sqlite3FuncDefInsert( + FuncDefHash *pHash, /* The hash table into which to insert */ + FuncDef *pDef /* The function definition to insert */ +){ + FuncDef *pOther; + int nName = sqlite3Strlen30(pDef->zName); + u8 c1 = (u8)pDef->zName[0]; + int h = (sqlite3UpperToLower[c1] + nName) % ArraySize(pHash->a); + pOther = functionSearch(pHash, h, pDef->zName, nName); + if( pOther ){ + assert( pOther!=pDef && pOther->pNext!=pDef ); + pDef->pNext = pOther->pNext; + pOther->pNext = pDef; + }else{ + pDef->pNext = 0; + pDef->pHash = pHash->a[h]; + pHash->a[h] = pDef; + } +} + + + +/* +** Locate a user function given a name, a number of arguments and a flag +** indicating whether the function prefers UTF-16 over UTF-8. Return a +** pointer to the FuncDef structure that defines that function, or return +** NULL if the function does not exist. +** +** If the createFlag argument is true, then a new (blank) FuncDef +** structure is created and liked into the "db" structure if a +** no matching function previously existed. +** +** If nArg is -2, then the first valid function found is returned. A +** function is valid if either xFunc or xStep is non-zero. The nArg==(-2) +** case is used to see if zName is a valid function name for some number +** of arguments. If nArg is -2, then createFlag must be 0. +** +** If createFlag is false, then a function with the required name and +** number of arguments may be returned even if the eTextRep flag does not +** match that requested. +*/ +SQLITE_PRIVATE FuncDef *sqlite3FindFunction( + sqlite3 *db, /* An open database */ + const char *zName, /* Name of the function. Not null-terminated */ + int nName, /* Number of characters in the name */ + int nArg, /* Number of arguments. -1 means any number */ + u8 enc, /* Preferred text encoding */ + u8 createFlag /* Create new entry if true and does not otherwise exist */ +){ + FuncDef *p; /* Iterator variable */ + FuncDef *pBest = 0; /* Best match found so far */ + int bestScore = 0; /* Score of best match */ + int h; /* Hash value */ + + assert( nArg>=(-2) ); + assert( nArg>=(-1) || createFlag==0 ); + h = (sqlite3UpperToLower[(u8)zName[0]] + nName) % ArraySize(db->aFunc.a); + + /* First search for a match amongst the application-defined functions. + */ + p = functionSearch(&db->aFunc, h, zName, nName); + while( p ){ + int score = matchQuality(p, nArg, enc); + if( score>bestScore ){ + pBest = p; + bestScore = score; + } + p = p->pNext; + } + + /* If no match is found, search the built-in functions. + ** + ** If the SQLITE_PreferBuiltin flag is set, then search the built-in + ** functions even if a prior app-defined function was found. And give + ** priority to built-in functions. + ** + ** Except, if createFlag is true, that means that we are trying to + ** install a new function. Whatever FuncDef structure is returned it will + ** have fields overwritten with new information appropriate for the + ** new function. But the FuncDefs for built-in functions are read-only. + ** So we must not search for built-ins when creating a new function. + */ + if( !createFlag && (pBest==0 || (db->flags & SQLITE_PreferBuiltin)!=0) ){ + FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions); + bestScore = 0; + p = functionSearch(pHash, h, zName, nName); + while( p ){ + int score = matchQuality(p, nArg, enc); + if( score>bestScore ){ + pBest = p; + bestScore = score; + } + p = p->pNext; + } + } + + /* If the createFlag parameter is true and the search did not reveal an + ** exact match for the name, number of arguments and encoding, then add a + ** new entry to the hash table and return it. + */ + if( createFlag && bestScorezName = (char *)&pBest[1]; + pBest->nArg = (u16)nArg; + pBest->funcFlags = enc; + memcpy(pBest->zName, zName, nName); + pBest->zName[nName] = 0; + sqlite3FuncDefInsert(&db->aFunc, pBest); + } + + if( pBest && (pBest->xStep || pBest->xFunc || createFlag) ){ + return pBest; + } + return 0; +} + +/* +** Free all resources held by the schema structure. The void* argument points +** at a Schema struct. This function does not call sqlite3DbFree(db, ) on the +** pointer itself, it just cleans up subsidiary resources (i.e. the contents +** of the schema hash tables). +** +** The Schema.cache_size variable is not cleared. +*/ +SQLITE_PRIVATE void sqlite3SchemaClear(void *p){ + Hash temp1; + Hash temp2; + HashElem *pElem; + Schema *pSchema = (Schema *)p; + + temp1 = pSchema->tblHash; + temp2 = pSchema->trigHash; + sqlite3HashInit(&pSchema->trigHash); + sqlite3HashClear(&pSchema->idxHash); + for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){ + sqlite3DeleteTrigger(0, (Trigger*)sqliteHashData(pElem)); + } + sqlite3HashClear(&temp2); + sqlite3HashInit(&pSchema->tblHash); + for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){ + Table *pTab = sqliteHashData(pElem); + sqlite3DeleteTable(0, pTab); + } + sqlite3HashClear(&temp1); + sqlite3HashClear(&pSchema->fkeyHash); + pSchema->pSeqTab = 0; + if( pSchema->flags & DB_SchemaLoaded ){ + pSchema->iGeneration++; + pSchema->flags &= ~DB_SchemaLoaded; + } +} + +/* +** Find and return the schema associated with a BTree. Create +** a new one if necessary. +*/ +SQLITE_PRIVATE Schema *sqlite3SchemaGet(sqlite3 *db, Btree *pBt){ + Schema * p; + if( pBt ){ + p = (Schema *)sqlite3BtreeSchema(pBt, sizeof(Schema), sqlite3SchemaClear); + }else{ + p = (Schema *)sqlite3DbMallocZero(0, sizeof(Schema)); + } + if( !p ){ + db->mallocFailed = 1; + }else if ( 0==p->file_format ){ + sqlite3HashInit(&p->tblHash); + sqlite3HashInit(&p->idxHash); + sqlite3HashInit(&p->trigHash); + sqlite3HashInit(&p->fkeyHash); + p->enc = SQLITE_UTF8; + } + return p; +} + +/************** End of callback.c ********************************************/ +/************** Begin file delete.c ******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains C code routines that are called by the parser +** in order to generate code for DELETE FROM statements. +*/ + +/* +** While a SrcList can in general represent multiple tables and subqueries +** (as in the FROM clause of a SELECT statement) in this case it contains +** the name of a single table, as one might find in an INSERT, DELETE, +** or UPDATE statement. Look up that table in the symbol table and +** return a pointer. Set an error message and return NULL if the table +** name is not found or if any other error occurs. +** +** The following fields are initialized appropriate in pSrc: +** +** pSrc->a[0].pTab Pointer to the Table object +** pSrc->a[0].pIndex Pointer to the INDEXED BY index, if there is one +** +*/ +SQLITE_PRIVATE Table *sqlite3SrcListLookup(Parse *pParse, SrcList *pSrc){ + struct SrcList_item *pItem = pSrc->a; + Table *pTab; + assert( pItem && pSrc->nSrc==1 ); + pTab = sqlite3LocateTableItem(pParse, 0, pItem); + sqlite3DeleteTable(pParse->db, pItem->pTab); + pItem->pTab = pTab; + if( pTab ){ + pTab->nRef++; + } + if( sqlite3IndexedByLookup(pParse, pItem) ){ + pTab = 0; + } + return pTab; +} + +/* +** Check to make sure the given table is writable. If it is not +** writable, generate an error message and return 1. If it is +** writable return 0; +*/ +SQLITE_PRIVATE int sqlite3IsReadOnly(Parse *pParse, Table *pTab, int viewOk){ + /* A table is not writable under the following circumstances: + ** + ** 1) It is a virtual table and no implementation of the xUpdate method + ** has been provided, or + ** 2) It is a system table (i.e. sqlite_master), this call is not + ** part of a nested parse and writable_schema pragma has not + ** been specified. + ** + ** In either case leave an error message in pParse and return non-zero. + */ + if( ( IsVirtual(pTab) + && sqlite3GetVTable(pParse->db, pTab)->pMod->pModule->xUpdate==0 ) + || ( (pTab->tabFlags & TF_Readonly)!=0 + && (pParse->db->flags & SQLITE_WriteSchema)==0 + && pParse->nested==0 ) + ){ + sqlite3ErrorMsg(pParse, "table %s may not be modified", pTab->zName); + return 1; + } + +#ifndef SQLITE_OMIT_VIEW + if( !viewOk && pTab->pSelect ){ + sqlite3ErrorMsg(pParse,"cannot modify %s because it is a view",pTab->zName); + return 1; + } +#endif + return 0; +} + + +#if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) +/* +** Evaluate a view and store its result in an ephemeral table. The +** pWhere argument is an optional WHERE clause that restricts the +** set of rows in the view that are to be added to the ephemeral table. +*/ +SQLITE_PRIVATE void sqlite3MaterializeView( + Parse *pParse, /* Parsing context */ + Table *pView, /* View definition */ + Expr *pWhere, /* Optional WHERE clause to be added */ + int iCur /* Cursor number for ephemerial table */ +){ + SelectDest dest; + Select *pSel; + SrcList *pFrom; + sqlite3 *db = pParse->db; + int iDb = sqlite3SchemaToIndex(db, pView->pSchema); + pWhere = sqlite3ExprDup(db, pWhere, 0); + pFrom = sqlite3SrcListAppend(db, 0, 0, 0); + if( pFrom ){ + assert( pFrom->nSrc==1 ); + pFrom->a[0].zName = sqlite3DbStrDup(db, pView->zName); + pFrom->a[0].zDatabase = sqlite3DbStrDup(db, db->aDb[iDb].zName); + assert( pFrom->a[0].pOn==0 ); + assert( pFrom->a[0].pUsing==0 ); + } + pSel = sqlite3SelectNew(pParse, 0, pFrom, pWhere, 0, 0, 0, 0, 0, 0); + sqlite3SelectDestInit(&dest, SRT_EphemTab, iCur); + sqlite3Select(pParse, pSel, &dest); + sqlite3SelectDelete(db, pSel); +} +#endif /* !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) */ + +#if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) && !defined(SQLITE_OMIT_SUBQUERY) +/* +** Generate an expression tree to implement the WHERE, ORDER BY, +** and LIMIT/OFFSET portion of DELETE and UPDATE statements. +** +** DELETE FROM table_wxyz WHERE a<5 ORDER BY a LIMIT 1; +** \__________________________/ +** pLimitWhere (pInClause) +*/ +SQLITE_PRIVATE Expr *sqlite3LimitWhere( + Parse *pParse, /* The parser context */ + SrcList *pSrc, /* the FROM clause -- which tables to scan */ + Expr *pWhere, /* The WHERE clause. May be null */ + ExprList *pOrderBy, /* The ORDER BY clause. May be null */ + Expr *pLimit, /* The LIMIT clause. May be null */ + Expr *pOffset, /* The OFFSET clause. May be null */ + char *zStmtType /* Either DELETE or UPDATE. For err msgs. */ +){ + Expr *pWhereRowid = NULL; /* WHERE rowid .. */ + Expr *pInClause = NULL; /* WHERE rowid IN ( select ) */ + Expr *pSelectRowid = NULL; /* SELECT rowid ... */ + ExprList *pEList = NULL; /* Expression list contaning only pSelectRowid */ + SrcList *pSelectSrc = NULL; /* SELECT rowid FROM x ... (dup of pSrc) */ + Select *pSelect = NULL; /* Complete SELECT tree */ + + /* Check that there isn't an ORDER BY without a LIMIT clause. + */ + if( pOrderBy && (pLimit == 0) ) { + sqlite3ErrorMsg(pParse, "ORDER BY without LIMIT on %s", zStmtType); + goto limit_where_cleanup_2; + } + + /* We only need to generate a select expression if there + ** is a limit/offset term to enforce. + */ + if( pLimit == 0 ) { + /* if pLimit is null, pOffset will always be null as well. */ + assert( pOffset == 0 ); + return pWhere; + } + + /* Generate a select expression tree to enforce the limit/offset + ** term for the DELETE or UPDATE statement. For example: + ** DELETE FROM table_a WHERE col1=1 ORDER BY col2 LIMIT 1 OFFSET 1 + ** becomes: + ** DELETE FROM table_a WHERE rowid IN ( + ** SELECT rowid FROM table_a WHERE col1=1 ORDER BY col2 LIMIT 1 OFFSET 1 + ** ); + */ + + pSelectRowid = sqlite3PExpr(pParse, TK_ROW, 0, 0, 0); + if( pSelectRowid == 0 ) goto limit_where_cleanup_2; + pEList = sqlite3ExprListAppend(pParse, 0, pSelectRowid); + if( pEList == 0 ) goto limit_where_cleanup_2; + + /* duplicate the FROM clause as it is needed by both the DELETE/UPDATE tree + ** and the SELECT subtree. */ + pSelectSrc = sqlite3SrcListDup(pParse->db, pSrc, 0); + if( pSelectSrc == 0 ) { + sqlite3ExprListDelete(pParse->db, pEList); + goto limit_where_cleanup_2; + } + + /* generate the SELECT expression tree. */ + pSelect = sqlite3SelectNew(pParse,pEList,pSelectSrc,pWhere,0,0, + pOrderBy,0,pLimit,pOffset); + if( pSelect == 0 ) return 0; + + /* now generate the new WHERE rowid IN clause for the DELETE/UDPATE */ + pWhereRowid = sqlite3PExpr(pParse, TK_ROW, 0, 0, 0); + if( pWhereRowid == 0 ) goto limit_where_cleanup_1; + pInClause = sqlite3PExpr(pParse, TK_IN, pWhereRowid, 0, 0); + if( pInClause == 0 ) goto limit_where_cleanup_1; + + pInClause->x.pSelect = pSelect; + pInClause->flags |= EP_xIsSelect; + sqlite3ExprSetHeight(pParse, pInClause); + return pInClause; + + /* something went wrong. clean up anything allocated. */ +limit_where_cleanup_1: + sqlite3SelectDelete(pParse->db, pSelect); + return 0; + +limit_where_cleanup_2: + sqlite3ExprDelete(pParse->db, pWhere); + sqlite3ExprListDelete(pParse->db, pOrderBy); + sqlite3ExprDelete(pParse->db, pLimit); + sqlite3ExprDelete(pParse->db, pOffset); + return 0; +} +#endif /* defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) */ + /* && !defined(SQLITE_OMIT_SUBQUERY) */ + +/* +** Generate code for a DELETE FROM statement. +** +** DELETE FROM table_wxyz WHERE a<5 AND b NOT NULL; +** \________/ \________________/ +** pTabList pWhere +*/ +SQLITE_PRIVATE void sqlite3DeleteFrom( + Parse *pParse, /* The parser context */ + SrcList *pTabList, /* The table from which we should delete things */ + Expr *pWhere /* The WHERE clause. May be null */ +){ + Vdbe *v; /* The virtual database engine */ + Table *pTab; /* The table from which records will be deleted */ + const char *zDb; /* Name of database holding pTab */ + int i; /* Loop counter */ + WhereInfo *pWInfo; /* Information about the WHERE clause */ + Index *pIdx; /* For looping over indices of the table */ + int iTabCur; /* Cursor number for the table */ + int iDataCur; /* VDBE cursor for the canonical data source */ + int iIdxCur; /* Cursor number of the first index */ + int nIdx; /* Number of indices */ + sqlite3 *db; /* Main database structure */ + AuthContext sContext; /* Authorization context */ + NameContext sNC; /* Name context to resolve expressions in */ + int iDb; /* Database number */ + int memCnt = -1; /* Memory cell used for change counting */ + int rcauth; /* Value returned by authorization callback */ + int okOnePass; /* True for one-pass algorithm without the FIFO */ + int aiCurOnePass[2]; /* The write cursors opened by WHERE_ONEPASS */ + u8 *aToOpen = 0; /* Open cursor iTabCur+j if aToOpen[j] is true */ + Index *pPk; /* The PRIMARY KEY index on the table */ + int iPk = 0; /* First of nPk registers holding PRIMARY KEY value */ + i16 nPk = 1; /* Number of columns in the PRIMARY KEY */ + int iKey; /* Memory cell holding key of row to be deleted */ + i16 nKey; /* Number of memory cells in the row key */ + int iEphCur = 0; /* Ephemeral table holding all primary key values */ + int iRowSet = 0; /* Register for rowset of rows to delete */ + int addrBypass = 0; /* Address of jump over the delete logic */ + int addrLoop = 0; /* Top of the delete loop */ + int addrDelete = 0; /* Jump directly to the delete logic */ + int addrEphOpen = 0; /* Instruction to open the Ephermeral table */ + +#ifndef SQLITE_OMIT_TRIGGER + int isView; /* True if attempting to delete from a view */ + Trigger *pTrigger; /* List of table triggers, if required */ +#endif + + memset(&sContext, 0, sizeof(sContext)); + db = pParse->db; + if( pParse->nErr || db->mallocFailed ){ + goto delete_from_cleanup; + } + assert( pTabList->nSrc==1 ); + + /* Locate the table which we want to delete. This table has to be + ** put in an SrcList structure because some of the subroutines we + ** will be calling are designed to work with multiple tables and expect + ** an SrcList* parameter instead of just a Table* parameter. + */ + pTab = sqlite3SrcListLookup(pParse, pTabList); + if( pTab==0 ) goto delete_from_cleanup; + + /* Figure out if we have any triggers and if the table being + ** deleted from is a view + */ +#ifndef SQLITE_OMIT_TRIGGER + pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0); + isView = pTab->pSelect!=0; +#else +# define pTrigger 0 +# define isView 0 +#endif +#ifdef SQLITE_OMIT_VIEW +# undef isView +# define isView 0 +#endif + + /* If pTab is really a view, make sure it has been initialized. + */ + if( sqlite3ViewGetColumnNames(pParse, pTab) ){ + goto delete_from_cleanup; + } + + if( sqlite3IsReadOnly(pParse, pTab, (pTrigger?1:0)) ){ + goto delete_from_cleanup; + } + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + assert( iDbnDb ); + zDb = db->aDb[iDb].zName; + rcauth = sqlite3AuthCheck(pParse, SQLITE_DELETE, pTab->zName, 0, zDb); + assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE ); + if( rcauth==SQLITE_DENY ){ + goto delete_from_cleanup; + } + assert(!isView || pTrigger); + + /* Assign cursor numbers to the table and all its indices. + */ + assert( pTabList->nSrc==1 ); + iTabCur = pTabList->a[0].iCursor = pParse->nTab++; + for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ + pParse->nTab++; + } + + /* Start the view context + */ + if( isView ){ + sqlite3AuthContextPush(pParse, &sContext, pTab->zName); + } + + /* Begin generating code. + */ + v = sqlite3GetVdbe(pParse); + if( v==0 ){ + goto delete_from_cleanup; + } + if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); + sqlite3BeginWriteOperation(pParse, 1, iDb); + + /* If we are trying to delete from a view, realize that view into + ** a ephemeral table. + */ +#if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) + if( isView ){ + sqlite3MaterializeView(pParse, pTab, pWhere, iTabCur); + iDataCur = iIdxCur = iTabCur; + } +#endif + + /* Resolve the column names in the WHERE clause. + */ + memset(&sNC, 0, sizeof(sNC)); + sNC.pParse = pParse; + sNC.pSrcList = pTabList; + if( sqlite3ResolveExprNames(&sNC, pWhere) ){ + goto delete_from_cleanup; + } + + /* Initialize the counter of the number of rows deleted, if + ** we are counting rows. + */ + if( db->flags & SQLITE_CountRows ){ + memCnt = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Integer, 0, memCnt); + } + +#ifndef SQLITE_OMIT_TRUNCATE_OPTIMIZATION + /* Special case: A DELETE without a WHERE clause deletes everything. + ** It is easier just to erase the whole table. Prior to version 3.6.5, + ** this optimization caused the row change count (the value returned by + ** API function sqlite3_count_changes) to be set incorrectly. */ + if( rcauth==SQLITE_OK && pWhere==0 && !pTrigger && !IsVirtual(pTab) + && 0==sqlite3FkRequired(pParse, pTab, 0, 0) + ){ + assert( !isView ); + sqlite3TableLock(pParse, iDb, pTab->tnum, 1, pTab->zName); + if( HasRowid(pTab) ){ + sqlite3VdbeAddOp4(v, OP_Clear, pTab->tnum, iDb, memCnt, + pTab->zName, P4_STATIC); + } + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + assert( pIdx->pSchema==pTab->pSchema ); + sqlite3VdbeAddOp2(v, OP_Clear, pIdx->tnum, iDb); + } + }else +#endif /* SQLITE_OMIT_TRUNCATE_OPTIMIZATION */ + { + if( HasRowid(pTab) ){ + /* For a rowid table, initialize the RowSet to an empty set */ + pPk = 0; + nPk = 1; + iRowSet = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Null, 0, iRowSet); + }else{ + /* For a WITHOUT ROWID table, create an ephermeral table used to + ** hold all primary keys for rows to be deleted. */ + pPk = sqlite3PrimaryKeyIndex(pTab); + assert( pPk!=0 ); + nPk = pPk->nKeyCol; + iPk = pParse->nMem+1; + pParse->nMem += nPk; + iEphCur = pParse->nTab++; + addrEphOpen = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iEphCur, nPk); + sqlite3VdbeSetP4KeyInfo(pParse, pPk); + } + + /* Construct a query to find the rowid or primary key for every row + ** to be deleted, based on the WHERE clause. + */ + pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, 0, 0, + WHERE_ONEPASS_DESIRED|WHERE_DUPLICATES_OK, + iTabCur+1); + if( pWInfo==0 ) goto delete_from_cleanup; + okOnePass = sqlite3WhereOkOnePass(pWInfo, aiCurOnePass); + + /* Keep track of the number of rows to be deleted */ + if( db->flags & SQLITE_CountRows ){ + sqlite3VdbeAddOp2(v, OP_AddImm, memCnt, 1); + } + + /* Extract the rowid or primary key for the current row */ + if( pPk ){ + for(i=0; iaiColumn[i], iPk+i); + } + iKey = iPk; + }else{ + iKey = pParse->nMem + 1; + iKey = sqlite3ExprCodeGetColumn(pParse, pTab, -1, iTabCur, iKey, 0); + if( iKey>pParse->nMem ) pParse->nMem = iKey; + } + + if( okOnePass ){ + /* For ONEPASS, no need to store the rowid/primary-key. There is only + ** one, so just keep it in its register(s) and fall through to the + ** delete code. + */ + nKey = nPk; /* OP_Found will use an unpacked key */ + aToOpen = sqlite3DbMallocRaw(db, nIdx+2); + if( aToOpen==0 ){ + sqlite3WhereEnd(pWInfo); + goto delete_from_cleanup; + } + memset(aToOpen, 1, nIdx+1); + aToOpen[nIdx+1] = 0; + if( aiCurOnePass[0]>=0 ) aToOpen[aiCurOnePass[0]-iTabCur] = 0; + if( aiCurOnePass[1]>=0 ) aToOpen[aiCurOnePass[1]-iTabCur] = 0; + if( addrEphOpen ) sqlite3VdbeChangeToNoop(v, addrEphOpen); + addrDelete = sqlite3VdbeAddOp0(v, OP_Goto); /* Jump to DELETE logic */ + }else if( pPk ){ + /* Construct a composite key for the row to be deleted and remember it */ + iKey = ++pParse->nMem; + nKey = 0; /* Zero tells OP_Found to use a composite key */ + sqlite3VdbeAddOp4(v, OP_MakeRecord, iPk, nPk, iKey, + sqlite3IndexAffinityStr(v, pPk), nPk); + sqlite3VdbeAddOp2(v, OP_IdxInsert, iEphCur, iKey); + }else{ + /* Get the rowid of the row to be deleted and remember it in the RowSet */ + nKey = 1; /* OP_Seek always uses a single rowid */ + sqlite3VdbeAddOp2(v, OP_RowSetAdd, iRowSet, iKey); + } + + /* End of the WHERE loop */ + sqlite3WhereEnd(pWInfo); + if( okOnePass ){ + /* Bypass the delete logic below if the WHERE loop found zero rows */ + addrBypass = sqlite3VdbeMakeLabel(v); + sqlite3VdbeAddOp2(v, OP_Goto, 0, addrBypass); + sqlite3VdbeJumpHere(v, addrDelete); + } + + /* Unless this is a view, open cursors for the table we are + ** deleting from and all its indices. If this is a view, then the + ** only effect this statement has is to fire the INSTEAD OF + ** triggers. + */ + if( !isView ){ + sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, iTabCur, aToOpen, + &iDataCur, &iIdxCur); + assert( pPk || iDataCur==iTabCur ); + assert( pPk || iIdxCur==iDataCur+1 ); + } + + /* Set up a loop over the rowids/primary-keys that were found in the + ** where-clause loop above. + */ + if( okOnePass ){ + /* Just one row. Hence the top-of-loop is a no-op */ + assert( nKey==nPk ); /* OP_Found will use an unpacked key */ + if( aToOpen[iDataCur-iTabCur] ){ + assert( pPk!=0 ); + sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, addrBypass, iKey, nKey); + VdbeCoverage(v); + } + }else if( pPk ){ + addrLoop = sqlite3VdbeAddOp1(v, OP_Rewind, iEphCur); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_RowKey, iEphCur, iKey); + assert( nKey==0 ); /* OP_Found will use a composite key */ + }else{ + addrLoop = sqlite3VdbeAddOp3(v, OP_RowSetRead, iRowSet, 0, iKey); + VdbeCoverage(v); + assert( nKey==1 ); + } + + /* Delete the row */ +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( IsVirtual(pTab) ){ + const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); + sqlite3VtabMakeWritable(pParse, pTab); + sqlite3VdbeAddOp4(v, OP_VUpdate, 0, 1, iKey, pVTab, P4_VTAB); + sqlite3VdbeChangeP5(v, OE_Abort); + sqlite3MayAbort(pParse); + }else +#endif + { + int count = (pParse->nested==0); /* True to count changes */ + sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, + iKey, nKey, count, OE_Default, okOnePass); + } + + /* End of the loop over all rowids/primary-keys. */ + if( okOnePass ){ + sqlite3VdbeResolveLabel(v, addrBypass); + }else if( pPk ){ + sqlite3VdbeAddOp2(v, OP_Next, iEphCur, addrLoop+1); VdbeCoverage(v); + sqlite3VdbeJumpHere(v, addrLoop); + }else{ + sqlite3VdbeAddOp2(v, OP_Goto, 0, addrLoop); + sqlite3VdbeJumpHere(v, addrLoop); + } + + /* Close the cursors open on the table and its indexes. */ + if( !isView && !IsVirtual(pTab) ){ + if( !pPk ) sqlite3VdbeAddOp1(v, OP_Close, iDataCur); + for(i=0, pIdx=pTab->pIndex; pIdx; i++, pIdx=pIdx->pNext){ + sqlite3VdbeAddOp1(v, OP_Close, iIdxCur + i); + } + } + } /* End non-truncate path */ + + /* Update the sqlite_sequence table by storing the content of the + ** maximum rowid counter values recorded while inserting into + ** autoincrement tables. + */ + if( pParse->nested==0 && pParse->pTriggerTab==0 ){ + sqlite3AutoincrementEnd(pParse); + } + + /* Return the number of rows that were deleted. If this routine is + ** generating code because of a call to sqlite3NestedParse(), do not + ** invoke the callback function. + */ + if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){ + sqlite3VdbeAddOp2(v, OP_ResultRow, memCnt, 1); + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows deleted", SQLITE_STATIC); + } + +delete_from_cleanup: + sqlite3AuthContextPop(&sContext); + sqlite3SrcListDelete(db, pTabList); + sqlite3ExprDelete(db, pWhere); + sqlite3DbFree(db, aToOpen); + return; +} +/* Make sure "isView" and other macros defined above are undefined. Otherwise +** thely may interfere with compilation of other functions in this file +** (or in another file, if this file becomes part of the amalgamation). */ +#ifdef isView + #undef isView +#endif +#ifdef pTrigger + #undef pTrigger +#endif + +/* +** This routine generates VDBE code that causes a single row of a +** single table to be deleted. Both the original table entry and +** all indices are removed. +** +** Preconditions: +** +** 1. iDataCur is an open cursor on the btree that is the canonical data +** store for the table. (This will be either the table itself, +** in the case of a rowid table, or the PRIMARY KEY index in the case +** of a WITHOUT ROWID table.) +** +** 2. Read/write cursors for all indices of pTab must be open as +** cursor number iIdxCur+i for the i-th index. +** +** 3. The primary key for the row to be deleted must be stored in a +** sequence of nPk memory cells starting at iPk. If nPk==0 that means +** that a search record formed from OP_MakeRecord is contained in the +** single memory location iPk. +*/ +SQLITE_PRIVATE void sqlite3GenerateRowDelete( + Parse *pParse, /* Parsing context */ + Table *pTab, /* Table containing the row to be deleted */ + Trigger *pTrigger, /* List of triggers to (potentially) fire */ + int iDataCur, /* Cursor from which column data is extracted */ + int iIdxCur, /* First index cursor */ + int iPk, /* First memory cell containing the PRIMARY KEY */ + i16 nPk, /* Number of PRIMARY KEY memory cells */ + u8 count, /* If non-zero, increment the row change counter */ + u8 onconf, /* Default ON CONFLICT policy for triggers */ + u8 bNoSeek /* iDataCur is already pointing to the row to delete */ +){ + Vdbe *v = pParse->pVdbe; /* Vdbe */ + int iOld = 0; /* First register in OLD.* array */ + int iLabel; /* Label resolved to end of generated code */ + u8 opSeek; /* Seek opcode */ + + /* Vdbe is guaranteed to have been allocated by this stage. */ + assert( v ); + VdbeModuleComment((v, "BEGIN: GenRowDel(%d,%d,%d,%d)", + iDataCur, iIdxCur, iPk, (int)nPk)); + + /* Seek cursor iCur to the row to delete. If this row no longer exists + ** (this can happen if a trigger program has already deleted it), do + ** not attempt to delete it or fire any DELETE triggers. */ + iLabel = sqlite3VdbeMakeLabel(v); + opSeek = HasRowid(pTab) ? OP_NotExists : OP_NotFound; + if( !bNoSeek ){ + sqlite3VdbeAddOp4Int(v, opSeek, iDataCur, iLabel, iPk, nPk); + VdbeCoverageIf(v, opSeek==OP_NotExists); + VdbeCoverageIf(v, opSeek==OP_NotFound); + } + + /* If there are any triggers to fire, allocate a range of registers to + ** use for the old.* references in the triggers. */ + if( sqlite3FkRequired(pParse, pTab, 0, 0) || pTrigger ){ + u32 mask; /* Mask of OLD.* columns in use */ + int iCol; /* Iterator used while populating OLD.* */ + int addrStart; /* Start of BEFORE trigger programs */ + + /* TODO: Could use temporary registers here. Also could attempt to + ** avoid copying the contents of the rowid register. */ + mask = sqlite3TriggerColmask( + pParse, pTrigger, 0, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onconf + ); + mask |= sqlite3FkOldmask(pParse, pTab); + iOld = pParse->nMem+1; + pParse->nMem += (1 + pTab->nCol); + + /* Populate the OLD.* pseudo-table register array. These values will be + ** used by any BEFORE and AFTER triggers that exist. */ + sqlite3VdbeAddOp2(v, OP_Copy, iPk, iOld); + for(iCol=0; iColnCol; iCol++){ + testcase( mask!=0xffffffff && iCol==31 ); + testcase( mask!=0xffffffff && iCol==32 ); + if( mask==0xffffffff || (iCol<=31 && (mask & MASKBIT32(iCol))!=0) ){ + sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, iCol, iOld+iCol+1); + } + } + + /* Invoke BEFORE DELETE trigger programs. */ + addrStart = sqlite3VdbeCurrentAddr(v); + sqlite3CodeRowTrigger(pParse, pTrigger, + TK_DELETE, 0, TRIGGER_BEFORE, pTab, iOld, onconf, iLabel + ); + + /* If any BEFORE triggers were coded, then seek the cursor to the + ** row to be deleted again. It may be that the BEFORE triggers moved + ** the cursor or of already deleted the row that the cursor was + ** pointing to. + */ + if( addrStartpSelect==0 ){ + sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur, 0); + sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, (count?OPFLAG_NCHANGE:0)); + if( count ){ + sqlite3VdbeChangeP4(v, -1, pTab->zName, P4_TRANSIENT); + } + } + + /* Do any ON CASCADE, SET NULL or SET DEFAULT operations required to + ** handle rows (possibly in other tables) that refer via a foreign key + ** to the row just deleted. */ + sqlite3FkActions(pParse, pTab, 0, iOld, 0, 0); + + /* Invoke AFTER DELETE trigger programs. */ + sqlite3CodeRowTrigger(pParse, pTrigger, + TK_DELETE, 0, TRIGGER_AFTER, pTab, iOld, onconf, iLabel + ); + + /* Jump here if the row had already been deleted before any BEFORE + ** trigger programs were invoked. Or if a trigger program throws a + ** RAISE(IGNORE) exception. */ + sqlite3VdbeResolveLabel(v, iLabel); + VdbeModuleComment((v, "END: GenRowDel()")); +} + +/* +** This routine generates VDBE code that causes the deletion of all +** index entries associated with a single row of a single table, pTab +** +** Preconditions: +** +** 1. A read/write cursor "iDataCur" must be open on the canonical storage +** btree for the table pTab. (This will be either the table itself +** for rowid tables or to the primary key index for WITHOUT ROWID +** tables.) +** +** 2. Read/write cursors for all indices of pTab must be open as +** cursor number iIdxCur+i for the i-th index. (The pTab->pIndex +** index is the 0-th index.) +** +** 3. The "iDataCur" cursor must be already be positioned on the row +** that is to be deleted. +*/ +SQLITE_PRIVATE void sqlite3GenerateRowIndexDelete( + Parse *pParse, /* Parsing and code generating context */ + Table *pTab, /* Table containing the row to be deleted */ + int iDataCur, /* Cursor of table holding data. */ + int iIdxCur, /* First index cursor */ + int *aRegIdx /* Only delete if aRegIdx!=0 && aRegIdx[i]>0 */ +){ + int i; /* Index loop counter */ + int r1 = -1; /* Register holding an index key */ + int iPartIdxLabel; /* Jump destination for skipping partial index entries */ + Index *pIdx; /* Current index */ + Index *pPrior = 0; /* Prior index */ + Vdbe *v; /* The prepared statement under construction */ + Index *pPk; /* PRIMARY KEY index, or NULL for rowid tables */ + + v = pParse->pVdbe; + pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); + for(i=0, pIdx=pTab->pIndex; pIdx; i++, pIdx=pIdx->pNext){ + assert( iIdxCur+i!=iDataCur || pPk==pIdx ); + if( aRegIdx!=0 && aRegIdx[i]==0 ) continue; + if( pIdx==pPk ) continue; + VdbeModuleComment((v, "GenRowIdxDel for %s", pIdx->zName)); + r1 = sqlite3GenerateIndexKey(pParse, pIdx, iDataCur, 0, 1, + &iPartIdxLabel, pPrior, r1); + sqlite3VdbeAddOp3(v, OP_IdxDelete, iIdxCur+i, r1, + pIdx->uniqNotNull ? pIdx->nKeyCol : pIdx->nColumn); + sqlite3ResolvePartIdxLabel(pParse, iPartIdxLabel); + pPrior = pIdx; + } +} + +/* +** Generate code that will assemble an index key and stores it in register +** regOut. The key with be for index pIdx which is an index on pTab. +** iCur is the index of a cursor open on the pTab table and pointing to +** the entry that needs indexing. If pTab is a WITHOUT ROWID table, then +** iCur must be the cursor of the PRIMARY KEY index. +** +** Return a register number which is the first in a block of +** registers that holds the elements of the index key. The +** block of registers has already been deallocated by the time +** this routine returns. +** +** If *piPartIdxLabel is not NULL, fill it in with a label and jump +** to that label if pIdx is a partial index that should be skipped. +** The label should be resolved using sqlite3ResolvePartIdxLabel(). +** A partial index should be skipped if its WHERE clause evaluates +** to false or null. If pIdx is not a partial index, *piPartIdxLabel +** will be set to zero which is an empty label that is ignored by +** sqlite3ResolvePartIdxLabel(). +** +** The pPrior and regPrior parameters are used to implement a cache to +** avoid unnecessary register loads. If pPrior is not NULL, then it is +** a pointer to a different index for which an index key has just been +** computed into register regPrior. If the current pIdx index is generating +** its key into the same sequence of registers and if pPrior and pIdx share +** a column in common, then the register corresponding to that column already +** holds the correct value and the loading of that register is skipped. +** This optimization is helpful when doing a DELETE or an INTEGRITY_CHECK +** on a table with multiple indices, and especially with the ROWID or +** PRIMARY KEY columns of the index. +*/ +SQLITE_PRIVATE int sqlite3GenerateIndexKey( + Parse *pParse, /* Parsing context */ + Index *pIdx, /* The index for which to generate a key */ + int iDataCur, /* Cursor number from which to take column data */ + int regOut, /* Put the new key into this register if not 0 */ + int prefixOnly, /* Compute only a unique prefix of the key */ + int *piPartIdxLabel, /* OUT: Jump to this label to skip partial index */ + Index *pPrior, /* Previously generated index key */ + int regPrior /* Register holding previous generated key */ +){ + Vdbe *v = pParse->pVdbe; + int j; + Table *pTab = pIdx->pTable; + int regBase; + int nCol; + + if( piPartIdxLabel ){ + if( pIdx->pPartIdxWhere ){ + *piPartIdxLabel = sqlite3VdbeMakeLabel(v); + pParse->iPartIdxTab = iDataCur; + sqlite3ExprCachePush(pParse); + sqlite3ExprIfFalse(pParse, pIdx->pPartIdxWhere, *piPartIdxLabel, + SQLITE_JUMPIFNULL); + }else{ + *piPartIdxLabel = 0; + } + } + nCol = (prefixOnly && pIdx->uniqNotNull) ? pIdx->nKeyCol : pIdx->nColumn; + regBase = sqlite3GetTempRange(pParse, nCol); + if( pPrior && (regBase!=regPrior || pPrior->pPartIdxWhere) ) pPrior = 0; + for(j=0; jaiColumn[j]==pIdx->aiColumn[j] ) continue; + sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, pIdx->aiColumn[j], + regBase+j); + /* If the column affinity is REAL but the number is an integer, then it + ** might be stored in the table as an integer (using a compact + ** representation) then converted to REAL by an OP_RealAffinity opcode. + ** But we are getting ready to store this value back into an index, where + ** it should be converted by to INTEGER again. So omit the OP_RealAffinity + ** opcode if it is present */ + sqlite3VdbeDeletePriorOpcode(v, OP_RealAffinity); + } + if( regOut ){ + sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nCol, regOut); + } + sqlite3ReleaseTempRange(pParse, regBase, nCol); + return regBase; +} + +/* +** If a prior call to sqlite3GenerateIndexKey() generated a jump-over label +** because it was a partial index, then this routine should be called to +** resolve that label. +*/ +SQLITE_PRIVATE void sqlite3ResolvePartIdxLabel(Parse *pParse, int iLabel){ + if( iLabel ){ + sqlite3VdbeResolveLabel(pParse->pVdbe, iLabel); + sqlite3ExprCachePop(pParse); + } +} + +/************** End of delete.c **********************************************/ +/************** Begin file func.c ********************************************/ +/* +** 2002 February 23 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains the C functions that implement various SQL +** functions of SQLite. +** +** There is only one exported symbol in this file - the function +** sqliteRegisterBuildinFunctions() found at the bottom of the file. +** All other code has file scope. +*/ +/* #include */ +/* #include */ + +/* +** Return the collating function associated with a function. +*/ +static CollSeq *sqlite3GetFuncCollSeq(sqlite3_context *context){ + return context->pColl; +} + +/* +** Indicate that the accumulator load should be skipped on this +** iteration of the aggregate loop. +*/ +static void sqlite3SkipAccumulatorLoad(sqlite3_context *context){ + context->skipFlag = 1; +} + +/* +** Implementation of the non-aggregate min() and max() functions +*/ +static void minmaxFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + int i; + int mask; /* 0 for min() or 0xffffffff for max() */ + int iBest; + CollSeq *pColl; + + assert( argc>1 ); + mask = sqlite3_user_data(context)==0 ? 0 : -1; + pColl = sqlite3GetFuncCollSeq(context); + assert( pColl ); + assert( mask==-1 || mask==0 ); + iBest = 0; + if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; + for(i=1; i=0 ){ + testcase( mask==0 ); + iBest = i; + } + } + sqlite3_result_value(context, argv[iBest]); +} + +/* +** Return the type of the argument. +*/ +static void typeofFunc( + sqlite3_context *context, + int NotUsed, + sqlite3_value **argv +){ + const char *z = 0; + UNUSED_PARAMETER(NotUsed); + switch( sqlite3_value_type(argv[0]) ){ + case SQLITE_INTEGER: z = "integer"; break; + case SQLITE_TEXT: z = "text"; break; + case SQLITE_FLOAT: z = "real"; break; + case SQLITE_BLOB: z = "blob"; break; + default: z = "null"; break; + } + sqlite3_result_text(context, z, -1, SQLITE_STATIC); +} + + +/* +** Implementation of the length() function +*/ +static void lengthFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + int len; + + assert( argc==1 ); + UNUSED_PARAMETER(argc); + switch( sqlite3_value_type(argv[0]) ){ + case SQLITE_BLOB: + case SQLITE_INTEGER: + case SQLITE_FLOAT: { + sqlite3_result_int(context, sqlite3_value_bytes(argv[0])); + break; + } + case SQLITE_TEXT: { + const unsigned char *z = sqlite3_value_text(argv[0]); + if( z==0 ) return; + len = 0; + while( *z ){ + len++; + SQLITE_SKIP_UTF8(z); + } + sqlite3_result_int(context, len); + break; + } + default: { + sqlite3_result_null(context); + break; + } + } +} + +/* +** Implementation of the abs() function. +** +** IMP: R-23979-26855 The abs(X) function returns the absolute value of +** the numeric argument X. +*/ +static void absFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + assert( argc==1 ); + UNUSED_PARAMETER(argc); + switch( sqlite3_value_type(argv[0]) ){ + case SQLITE_INTEGER: { + i64 iVal = sqlite3_value_int64(argv[0]); + if( iVal<0 ){ + if( iVal==SMALLEST_INT64 ){ + /* IMP: R-31676-45509 If X is the integer -9223372036854775808 + ** then abs(X) throws an integer overflow error since there is no + ** equivalent positive 64-bit two complement value. */ + sqlite3_result_error(context, "integer overflow", -1); + return; + } + iVal = -iVal; + } + sqlite3_result_int64(context, iVal); + break; + } + case SQLITE_NULL: { + /* IMP: R-37434-19929 Abs(X) returns NULL if X is NULL. */ + sqlite3_result_null(context); + break; + } + default: { + /* Because sqlite3_value_double() returns 0.0 if the argument is not + ** something that can be converted into a number, we have: + ** IMP: R-57326-31541 Abs(X) return 0.0 if X is a string or blob that + ** cannot be converted to a numeric value. + */ + double rVal = sqlite3_value_double(argv[0]); + if( rVal<0 ) rVal = -rVal; + sqlite3_result_double(context, rVal); + break; + } + } +} + +/* +** Implementation of the instr() function. +** +** instr(haystack,needle) finds the first occurrence of needle +** in haystack and returns the number of previous characters plus 1, +** or 0 if needle does not occur within haystack. +** +** If both haystack and needle are BLOBs, then the result is one more than +** the number of bytes in haystack prior to the first occurrence of needle, +** or 0 if needle never occurs in haystack. +*/ +static void instrFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + const unsigned char *zHaystack; + const unsigned char *zNeedle; + int nHaystack; + int nNeedle; + int typeHaystack, typeNeedle; + int N = 1; + int isText; + + UNUSED_PARAMETER(argc); + typeHaystack = sqlite3_value_type(argv[0]); + typeNeedle = sqlite3_value_type(argv[1]); + if( typeHaystack==SQLITE_NULL || typeNeedle==SQLITE_NULL ) return; + nHaystack = sqlite3_value_bytes(argv[0]); + nNeedle = sqlite3_value_bytes(argv[1]); + if( typeHaystack==SQLITE_BLOB && typeNeedle==SQLITE_BLOB ){ + zHaystack = sqlite3_value_blob(argv[0]); + zNeedle = sqlite3_value_blob(argv[1]); + isText = 0; + }else{ + zHaystack = sqlite3_value_text(argv[0]); + zNeedle = sqlite3_value_text(argv[1]); + isText = 1; + } + while( nNeedle<=nHaystack && memcmp(zHaystack, zNeedle, nNeedle)!=0 ){ + N++; + do{ + nHaystack--; + zHaystack++; + }while( isText && (zHaystack[0]&0xc0)==0x80 ); + } + if( nNeedle>nHaystack ) N = 0; + sqlite3_result_int(context, N); +} + +/* +** Implementation of the printf() function. +*/ +static void printfFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + PrintfArguments x; + StrAccum str; + const char *zFormat; + int n; + + if( argc>=1 && (zFormat = (const char*)sqlite3_value_text(argv[0]))!=0 ){ + x.nArg = argc-1; + x.nUsed = 0; + x.apArg = argv+1; + sqlite3StrAccumInit(&str, 0, 0, SQLITE_MAX_LENGTH); + str.db = sqlite3_context_db_handle(context); + sqlite3XPrintf(&str, SQLITE_PRINTF_SQLFUNC, zFormat, &x); + n = str.nChar; + sqlite3_result_text(context, sqlite3StrAccumFinish(&str), n, + SQLITE_DYNAMIC); + } +} + +/* +** Implementation of the substr() function. +** +** substr(x,p1,p2) returns p2 characters of x[] beginning with p1. +** p1 is 1-indexed. So substr(x,1,1) returns the first character +** of x. If x is text, then we actually count UTF-8 characters. +** If x is a blob, then we count bytes. +** +** If p1 is negative, then we begin abs(p1) from the end of x[]. +** +** If p2 is negative, return the p2 characters preceding p1. +*/ +static void substrFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + const unsigned char *z; + const unsigned char *z2; + int len; + int p0type; + i64 p1, p2; + int negP2 = 0; + + assert( argc==3 || argc==2 ); + if( sqlite3_value_type(argv[1])==SQLITE_NULL + || (argc==3 && sqlite3_value_type(argv[2])==SQLITE_NULL) + ){ + return; + } + p0type = sqlite3_value_type(argv[0]); + p1 = sqlite3_value_int(argv[1]); + if( p0type==SQLITE_BLOB ){ + len = sqlite3_value_bytes(argv[0]); + z = sqlite3_value_blob(argv[0]); + if( z==0 ) return; + assert( len==sqlite3_value_bytes(argv[0]) ); + }else{ + z = sqlite3_value_text(argv[0]); + if( z==0 ) return; + len = 0; + if( p1<0 ){ + for(z2=z; *z2; len++){ + SQLITE_SKIP_UTF8(z2); + } + } + } + if( argc==3 ){ + p2 = sqlite3_value_int(argv[2]); + if( p2<0 ){ + p2 = -p2; + negP2 = 1; + } + }else{ + p2 = sqlite3_context_db_handle(context)->aLimit[SQLITE_LIMIT_LENGTH]; + } + if( p1<0 ){ + p1 += len; + if( p1<0 ){ + p2 += p1; + if( p2<0 ) p2 = 0; + p1 = 0; + } + }else if( p1>0 ){ + p1--; + }else if( p2>0 ){ + p2--; + } + if( negP2 ){ + p1 -= p2; + if( p1<0 ){ + p2 += p1; + p1 = 0; + } + } + assert( p1>=0 && p2>=0 ); + if( p0type!=SQLITE_BLOB ){ + while( *z && p1 ){ + SQLITE_SKIP_UTF8(z); + p1--; + } + for(z2=z; *z2 && p2; p2--){ + SQLITE_SKIP_UTF8(z2); + } + sqlite3_result_text(context, (char*)z, (int)(z2-z), SQLITE_TRANSIENT); + }else{ + if( p1+p2>len ){ + p2 = len-p1; + if( p2<0 ) p2 = 0; + } + sqlite3_result_blob(context, (char*)&z[p1], (int)p2, SQLITE_TRANSIENT); + } +} + +/* +** Implementation of the round() function +*/ +#ifndef SQLITE_OMIT_FLOATING_POINT +static void roundFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + int n = 0; + double r; + char *zBuf; + assert( argc==1 || argc==2 ); + if( argc==2 ){ + if( SQLITE_NULL==sqlite3_value_type(argv[1]) ) return; + n = sqlite3_value_int(argv[1]); + if( n>30 ) n = 30; + if( n<0 ) n = 0; + } + if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; + r = sqlite3_value_double(argv[0]); + /* If Y==0 and X will fit in a 64-bit int, + ** handle the rounding directly, + ** otherwise use printf. + */ + if( n==0 && r>=0 && r0 ); + testcase( nByte==db->aLimit[SQLITE_LIMIT_LENGTH] ); + testcase( nByte==db->aLimit[SQLITE_LIMIT_LENGTH]+1 ); + if( nByte>db->aLimit[SQLITE_LIMIT_LENGTH] ){ + sqlite3_result_error_toobig(context); + z = 0; + }else{ + z = sqlite3Malloc((int)nByte); + if( !z ){ + sqlite3_result_error_nomem(context); + } + } + return z; +} + +/* +** Implementation of the upper() and lower() SQL functions. +*/ +static void upperFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + char *z1; + const char *z2; + int i, n; + UNUSED_PARAMETER(argc); + z2 = (char*)sqlite3_value_text(argv[0]); + n = sqlite3_value_bytes(argv[0]); + /* Verify that the call to _bytes() does not invalidate the _text() pointer */ + assert( z2==(char*)sqlite3_value_text(argv[0]) ); + if( z2 ){ + z1 = contextMalloc(context, ((i64)n)+1); + if( z1 ){ + for(i=0; imatchOne; + u8 matchAll = pInfo->matchAll; + u8 matchSet = pInfo->matchSet; + u8 noCase = pInfo->noCase; + int prevEscape = 0; /* True if the previous character was 'escape' */ + + while( (c = sqlite3Utf8Read(&zPattern))!=0 ){ + if( c==matchAll && !prevEscape ){ + while( (c=sqlite3Utf8Read(&zPattern)) == matchAll + || c == matchOne ){ + if( c==matchOne && sqlite3Utf8Read(&zString)==0 ){ + return 0; + } + } + if( c==0 ){ + return 1; + }else if( c==esc ){ + c = sqlite3Utf8Read(&zPattern); + if( c==0 ){ + return 0; + } + }else if( c==matchSet ){ + assert( esc==0 ); /* This is GLOB, not LIKE */ + assert( matchSet<0x80 ); /* '[' is a single-byte character */ + while( *zString && patternCompare(&zPattern[-1],zString,pInfo,esc)==0 ){ + SQLITE_SKIP_UTF8(zString); + } + return *zString!=0; + } + while( (c2 = sqlite3Utf8Read(&zString))!=0 ){ + if( noCase ){ + GlobUpperToLower(c2); + GlobUpperToLower(c); + while( c2 != 0 && c2 != c ){ + c2 = sqlite3Utf8Read(&zString); + GlobUpperToLower(c2); + } + }else{ + while( c2 != 0 && c2 != c ){ + c2 = sqlite3Utf8Read(&zString); + } + } + if( c2==0 ) return 0; + if( patternCompare(zPattern,zString,pInfo,esc) ) return 1; + } + return 0; + }else if( c==matchOne && !prevEscape ){ + if( sqlite3Utf8Read(&zString)==0 ){ + return 0; + } + }else if( c==matchSet ){ + u32 prior_c = 0; + assert( esc==0 ); /* This only occurs for GLOB, not LIKE */ + seen = 0; + invert = 0; + c = sqlite3Utf8Read(&zString); + if( c==0 ) return 0; + c2 = sqlite3Utf8Read(&zPattern); + if( c2=='^' ){ + invert = 1; + c2 = sqlite3Utf8Read(&zPattern); + } + if( c2==']' ){ + if( c==']' ) seen = 1; + c2 = sqlite3Utf8Read(&zPattern); + } + while( c2 && c2!=']' ){ + if( c2=='-' && zPattern[0]!=']' && zPattern[0]!=0 && prior_c>0 ){ + c2 = sqlite3Utf8Read(&zPattern); + if( c>=prior_c && c<=c2 ) seen = 1; + prior_c = 0; + }else{ + if( c==c2 ){ + seen = 1; + } + prior_c = c2; + } + c2 = sqlite3Utf8Read(&zPattern); + } + if( c2==0 || (seen ^ invert)==0 ){ + return 0; + } + }else if( esc==c && !prevEscape ){ + prevEscape = 1; + }else{ + c2 = sqlite3Utf8Read(&zString); + if( noCase ){ + GlobUpperToLower(c); + GlobUpperToLower(c2); + } + if( c!=c2 ){ + return 0; + } + prevEscape = 0; + } + } + return *zString==0; +} + +/* +** The sqlite3_strglob() interface. +*/ +SQLITE_API int sqlite3_strglob(const char *zGlobPattern, const char *zString){ + return patternCompare((u8*)zGlobPattern, (u8*)zString, &globInfo, 0)==0; +} + +/* +** Count the number of times that the LIKE operator (or GLOB which is +** just a variation of LIKE) gets called. This is used for testing +** only. +*/ +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_like_count = 0; +#endif + + +/* +** Implementation of the like() SQL function. This function implements +** the build-in LIKE operator. The first argument to the function is the +** pattern and the second argument is the string. So, the SQL statements: +** +** A LIKE B +** +** is implemented as like(B,A). +** +** This same function (with a different compareInfo structure) computes +** the GLOB operator. +*/ +static void likeFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + const unsigned char *zA, *zB; + u32 escape = 0; + int nPat; + sqlite3 *db = sqlite3_context_db_handle(context); + + zB = sqlite3_value_text(argv[0]); + zA = sqlite3_value_text(argv[1]); + + /* Limit the length of the LIKE or GLOB pattern to avoid problems + ** of deep recursion and N*N behavior in patternCompare(). + */ + nPat = sqlite3_value_bytes(argv[0]); + testcase( nPat==db->aLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH] ); + testcase( nPat==db->aLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]+1 ); + if( nPat > db->aLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH] ){ + sqlite3_result_error(context, "LIKE or GLOB pattern too complex", -1); + return; + } + assert( zB==sqlite3_value_text(argv[0]) ); /* Encoding did not change */ + + if( argc==3 ){ + /* The escape character string must consist of a single UTF-8 character. + ** Otherwise, return an error. + */ + const unsigned char *zEsc = sqlite3_value_text(argv[2]); + if( zEsc==0 ) return; + if( sqlite3Utf8CharLen((char*)zEsc, -1)!=1 ){ + sqlite3_result_error(context, + "ESCAPE expression must be a single character", -1); + return; + } + escape = sqlite3Utf8Read(&zEsc); + } + if( zA && zB ){ + struct compareInfo *pInfo = sqlite3_user_data(context); +#ifdef SQLITE_TEST + sqlite3_like_count++; +#endif + + sqlite3_result_int(context, patternCompare(zB, zA, pInfo, escape)); + } +} + +/* +** Implementation of the NULLIF(x,y) function. The result is the first +** argument if the arguments are different. The result is NULL if the +** arguments are equal to each other. +*/ +static void nullifFunc( + sqlite3_context *context, + int NotUsed, + sqlite3_value **argv +){ + CollSeq *pColl = sqlite3GetFuncCollSeq(context); + UNUSED_PARAMETER(NotUsed); + if( sqlite3MemCompare(argv[0], argv[1], pColl)!=0 ){ + sqlite3_result_value(context, argv[0]); + } +} + +/* +** Implementation of the sqlite_version() function. The result is the version +** of the SQLite library that is running. +*/ +static void versionFunc( + sqlite3_context *context, + int NotUsed, + sqlite3_value **NotUsed2 +){ + UNUSED_PARAMETER2(NotUsed, NotUsed2); + /* IMP: R-48699-48617 This function is an SQL wrapper around the + ** sqlite3_libversion() C-interface. */ + sqlite3_result_text(context, sqlite3_libversion(), -1, SQLITE_STATIC); +} + +/* +** Implementation of the sqlite_source_id() function. The result is a string +** that identifies the particular version of the source code used to build +** SQLite. +*/ +static void sourceidFunc( + sqlite3_context *context, + int NotUsed, + sqlite3_value **NotUsed2 +){ + UNUSED_PARAMETER2(NotUsed, NotUsed2); + /* IMP: R-24470-31136 This function is an SQL wrapper around the + ** sqlite3_sourceid() C interface. */ + sqlite3_result_text(context, sqlite3_sourceid(), -1, SQLITE_STATIC); +} + +/* +** Implementation of the sqlite_log() function. This is a wrapper around +** sqlite3_log(). The return value is NULL. The function exists purely for +** its side-effects. +*/ +static void errlogFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + UNUSED_PARAMETER(argc); + UNUSED_PARAMETER(context); + sqlite3_log(sqlite3_value_int(argv[0]), "%s", sqlite3_value_text(argv[1])); +} + +/* +** Implementation of the sqlite_compileoption_used() function. +** The result is an integer that identifies if the compiler option +** was used to build SQLite. +*/ +#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS +static void compileoptionusedFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + const char *zOptName; + assert( argc==1 ); + UNUSED_PARAMETER(argc); + /* IMP: R-39564-36305 The sqlite_compileoption_used() SQL + ** function is a wrapper around the sqlite3_compileoption_used() C/C++ + ** function. + */ + if( (zOptName = (const char*)sqlite3_value_text(argv[0]))!=0 ){ + sqlite3_result_int(context, sqlite3_compileoption_used(zOptName)); + } +} +#endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ + +/* +** Implementation of the sqlite_compileoption_get() function. +** The result is a string that identifies the compiler options +** used to build SQLite. +*/ +#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS +static void compileoptiongetFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + int n; + assert( argc==1 ); + UNUSED_PARAMETER(argc); + /* IMP: R-04922-24076 The sqlite_compileoption_get() SQL function + ** is a wrapper around the sqlite3_compileoption_get() C/C++ function. + */ + n = sqlite3_value_int(argv[0]); + sqlite3_result_text(context, sqlite3_compileoption_get(n), -1, SQLITE_STATIC); +} +#endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ + +/* Array for converting from half-bytes (nybbles) into ASCII hex +** digits. */ +static const char hexdigits[] = { + '0', '1', '2', '3', '4', '5', '6', '7', + '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' +}; + +/* +** Implementation of the QUOTE() function. This function takes a single +** argument. If the argument is numeric, the return value is the same as +** the argument. If the argument is NULL, the return value is the string +** "NULL". Otherwise, the argument is enclosed in single quotes with +** single-quote escapes. +*/ +static void quoteFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + assert( argc==1 ); + UNUSED_PARAMETER(argc); + switch( sqlite3_value_type(argv[0]) ){ + case SQLITE_FLOAT: { + double r1, r2; + char zBuf[50]; + r1 = sqlite3_value_double(argv[0]); + sqlite3_snprintf(sizeof(zBuf), zBuf, "%!.15g", r1); + sqlite3AtoF(zBuf, &r2, 20, SQLITE_UTF8); + if( r1!=r2 ){ + sqlite3_snprintf(sizeof(zBuf), zBuf, "%!.20e", r1); + } + sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT); + break; + } + case SQLITE_INTEGER: { + sqlite3_result_value(context, argv[0]); + break; + } + case SQLITE_BLOB: { + char *zText = 0; + char const *zBlob = sqlite3_value_blob(argv[0]); + int nBlob = sqlite3_value_bytes(argv[0]); + assert( zBlob==sqlite3_value_blob(argv[0]) ); /* No encoding change */ + zText = (char *)contextMalloc(context, (2*(i64)nBlob)+4); + if( zText ){ + int i; + for(i=0; i>4)&0x0F]; + zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F]; + } + zText[(nBlob*2)+2] = '\''; + zText[(nBlob*2)+3] = '\0'; + zText[0] = 'X'; + zText[1] = '\''; + sqlite3_result_text(context, zText, -1, SQLITE_TRANSIENT); + sqlite3_free(zText); + } + break; + } + case SQLITE_TEXT: { + int i,j; + u64 n; + const unsigned char *zArg = sqlite3_value_text(argv[0]); + char *z; + + if( zArg==0 ) return; + for(i=0, n=0; zArg[i]; i++){ if( zArg[i]=='\'' ) n++; } + z = contextMalloc(context, ((i64)i)+((i64)n)+3); + if( z ){ + z[0] = '\''; + for(i=0, j=1; zArg[i]; i++){ + z[j++] = zArg[i]; + if( zArg[i]=='\'' ){ + z[j++] = '\''; + } + } + z[j++] = '\''; + z[j] = 0; + sqlite3_result_text(context, z, j, sqlite3_free); + } + break; + } + default: { + assert( sqlite3_value_type(argv[0])==SQLITE_NULL ); + sqlite3_result_text(context, "NULL", 4, SQLITE_STATIC); + break; + } + } +} + +/* +** The unicode() function. Return the integer unicode code-point value +** for the first character of the input string. +*/ +static void unicodeFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + const unsigned char *z = sqlite3_value_text(argv[0]); + (void)argc; + if( z && z[0] ) sqlite3_result_int(context, sqlite3Utf8Read(&z)); +} + +/* +** The char() function takes zero or more arguments, each of which is +** an integer. It constructs a string where each character of the string +** is the unicode character for the corresponding integer argument. +*/ +static void charFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + unsigned char *z, *zOut; + int i; + zOut = z = sqlite3_malloc( argc*4+1 ); + if( z==0 ){ + sqlite3_result_error_nomem(context); + return; + } + for(i=0; i0x10ffff ) x = 0xfffd; + c = (unsigned)(x & 0x1fffff); + if( c<0x00080 ){ + *zOut++ = (u8)(c&0xFF); + }else if( c<0x00800 ){ + *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); + *zOut++ = 0x80 + (u8)(c & 0x3F); + }else if( c<0x10000 ){ + *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); + *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); + *zOut++ = 0x80 + (u8)(c & 0x3F); + }else{ + *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); + *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); + *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); + *zOut++ = 0x80 + (u8)(c & 0x3F); + } \ + } + sqlite3_result_text(context, (char*)z, (int)(zOut-z), sqlite3_free); +} + +/* +** The hex() function. Interpret the argument as a blob. Return +** a hexadecimal rendering as text. +*/ +static void hexFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + int i, n; + const unsigned char *pBlob; + char *zHex, *z; + assert( argc==1 ); + UNUSED_PARAMETER(argc); + pBlob = sqlite3_value_blob(argv[0]); + n = sqlite3_value_bytes(argv[0]); + assert( pBlob==sqlite3_value_blob(argv[0]) ); /* No encoding change */ + z = zHex = contextMalloc(context, ((i64)n)*2 + 1); + if( zHex ){ + for(i=0; i>4)&0xf]; + *(z++) = hexdigits[c&0xf]; + } + *z = 0; + sqlite3_result_text(context, zHex, n*2, sqlite3_free); + } +} + +/* +** The zeroblob(N) function returns a zero-filled blob of size N bytes. +*/ +static void zeroblobFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + i64 n; + sqlite3 *db = sqlite3_context_db_handle(context); + assert( argc==1 ); + UNUSED_PARAMETER(argc); + n = sqlite3_value_int64(argv[0]); + testcase( n==db->aLimit[SQLITE_LIMIT_LENGTH] ); + testcase( n==db->aLimit[SQLITE_LIMIT_LENGTH]+1 ); + if( n>db->aLimit[SQLITE_LIMIT_LENGTH] ){ + sqlite3_result_error_toobig(context); + }else{ + sqlite3_result_zeroblob(context, (int)n); /* IMP: R-00293-64994 */ + } +} + +/* +** The replace() function. Three arguments are all strings: call +** them A, B, and C. The result is also a string which is derived +** from A by replacing every occurrence of B with C. The match +** must be exact. Collating sequences are not used. +*/ +static void replaceFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + const unsigned char *zStr; /* The input string A */ + const unsigned char *zPattern; /* The pattern string B */ + const unsigned char *zRep; /* The replacement string C */ + unsigned char *zOut; /* The output */ + int nStr; /* Size of zStr */ + int nPattern; /* Size of zPattern */ + int nRep; /* Size of zRep */ + i64 nOut; /* Maximum size of zOut */ + int loopLimit; /* Last zStr[] that might match zPattern[] */ + int i, j; /* Loop counters */ + + assert( argc==3 ); + UNUSED_PARAMETER(argc); + zStr = sqlite3_value_text(argv[0]); + if( zStr==0 ) return; + nStr = sqlite3_value_bytes(argv[0]); + assert( zStr==sqlite3_value_text(argv[0]) ); /* No encoding change */ + zPattern = sqlite3_value_text(argv[1]); + if( zPattern==0 ){ + assert( sqlite3_value_type(argv[1])==SQLITE_NULL + || sqlite3_context_db_handle(context)->mallocFailed ); + return; + } + if( zPattern[0]==0 ){ + assert( sqlite3_value_type(argv[1])!=SQLITE_NULL ); + sqlite3_result_value(context, argv[0]); + return; + } + nPattern = sqlite3_value_bytes(argv[1]); + assert( zPattern==sqlite3_value_text(argv[1]) ); /* No encoding change */ + zRep = sqlite3_value_text(argv[2]); + if( zRep==0 ) return; + nRep = sqlite3_value_bytes(argv[2]); + assert( zRep==sqlite3_value_text(argv[2]) ); + nOut = nStr + 1; + assert( nOutaLimit[SQLITE_LIMIT_LENGTH] ); + testcase( nOut-2==db->aLimit[SQLITE_LIMIT_LENGTH] ); + if( nOut-1>db->aLimit[SQLITE_LIMIT_LENGTH] ){ + sqlite3_result_error_toobig(context); + sqlite3_free(zOut); + return; + } + zOld = zOut; + zOut = sqlite3_realloc(zOut, (int)nOut); + if( zOut==0 ){ + sqlite3_result_error_nomem(context); + sqlite3_free(zOld); + return; + } + memcpy(&zOut[j], zRep, nRep); + j += nRep; + i += nPattern-1; + } + } + assert( j+nStr-i+1==nOut ); + memcpy(&zOut[j], &zStr[i], nStr-i); + j += nStr - i; + assert( j<=nOut ); + zOut[j] = 0; + sqlite3_result_text(context, (char*)zOut, j, sqlite3_free); +} + +/* +** Implementation of the TRIM(), LTRIM(), and RTRIM() functions. +** The userdata is 0x1 for left trim, 0x2 for right trim, 0x3 for both. +*/ +static void trimFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + const unsigned char *zIn; /* Input string */ + const unsigned char *zCharSet; /* Set of characters to trim */ + int nIn; /* Number of bytes in input */ + int flags; /* 1: trimleft 2: trimright 3: trim */ + int i; /* Loop counter */ + unsigned char *aLen = 0; /* Length of each character in zCharSet */ + unsigned char **azChar = 0; /* Individual characters in zCharSet */ + int nChar; /* Number of characters in zCharSet */ + + if( sqlite3_value_type(argv[0])==SQLITE_NULL ){ + return; + } + zIn = sqlite3_value_text(argv[0]); + if( zIn==0 ) return; + nIn = sqlite3_value_bytes(argv[0]); + assert( zIn==sqlite3_value_text(argv[0]) ); + if( argc==1 ){ + static const unsigned char lenOne[] = { 1 }; + static unsigned char * const azOne[] = { (u8*)" " }; + nChar = 1; + aLen = (u8*)lenOne; + azChar = (unsigned char **)azOne; + zCharSet = 0; + }else if( (zCharSet = sqlite3_value_text(argv[1]))==0 ){ + return; + }else{ + const unsigned char *z; + for(z=zCharSet, nChar=0; *z; nChar++){ + SQLITE_SKIP_UTF8(z); + } + if( nChar>0 ){ + azChar = contextMalloc(context, ((i64)nChar)*(sizeof(char*)+1)); + if( azChar==0 ){ + return; + } + aLen = (unsigned char*)&azChar[nChar]; + for(z=zCharSet, nChar=0; *z; nChar++){ + azChar[nChar] = (unsigned char *)z; + SQLITE_SKIP_UTF8(z); + aLen[nChar] = (u8)(z - azChar[nChar]); + } + } + } + if( nChar>0 ){ + flags = SQLITE_PTR_TO_INT(sqlite3_user_data(context)); + if( flags & 1 ){ + while( nIn>0 ){ + int len = 0; + for(i=0; i=nChar ) break; + zIn += len; + nIn -= len; + } + } + if( flags & 2 ){ + while( nIn>0 ){ + int len = 0; + for(i=0; i=nChar ) break; + nIn -= len; + } + } + if( zCharSet ){ + sqlite3_free(azChar); + } + } + sqlite3_result_text(context, (char*)zIn, nIn, SQLITE_TRANSIENT); +} + + +/* IMP: R-25361-16150 This function is omitted from SQLite by default. It +** is only available if the SQLITE_SOUNDEX compile-time option is used +** when SQLite is built. +*/ +#ifdef SQLITE_SOUNDEX +/* +** Compute the soundex encoding of a word. +** +** IMP: R-59782-00072 The soundex(X) function returns a string that is the +** soundex encoding of the string X. +*/ +static void soundexFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + char zResult[8]; + const u8 *zIn; + int i, j; + static const unsigned char iCode[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 2, 3, 0, 1, 2, 0, 0, 2, 2, 4, 5, 5, 0, + 1, 2, 6, 2, 3, 0, 1, 0, 2, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 1, 2, 3, 0, 1, 2, 0, 0, 2, 2, 4, 5, 5, 0, + 1, 2, 6, 2, 3, 0, 1, 0, 2, 0, 2, 0, 0, 0, 0, 0, + }; + assert( argc==1 ); + zIn = (u8*)sqlite3_value_text(argv[0]); + if( zIn==0 ) zIn = (u8*)""; + for(i=0; zIn[i] && !sqlite3Isalpha(zIn[i]); i++){} + if( zIn[i] ){ + u8 prevcode = iCode[zIn[i]&0x7f]; + zResult[0] = sqlite3Toupper(zIn[i]); + for(j=1; j<4 && zIn[i]; i++){ + int code = iCode[zIn[i]&0x7f]; + if( code>0 ){ + if( code!=prevcode ){ + prevcode = code; + zResult[j++] = code + '0'; + } + }else{ + prevcode = 0; + } + } + while( j<4 ){ + zResult[j++] = '0'; + } + zResult[j] = 0; + sqlite3_result_text(context, zResult, 4, SQLITE_TRANSIENT); + }else{ + /* IMP: R-64894-50321 The string "?000" is returned if the argument + ** is NULL or contains no ASCII alphabetic characters. */ + sqlite3_result_text(context, "?000", 4, SQLITE_STATIC); + } +} +#endif /* SQLITE_SOUNDEX */ + +#ifndef SQLITE_OMIT_LOAD_EXTENSION +/* +** A function that loads a shared-library extension then returns NULL. +*/ +static void loadExt(sqlite3_context *context, int argc, sqlite3_value **argv){ + const char *zFile = (const char *)sqlite3_value_text(argv[0]); + const char *zProc; + sqlite3 *db = sqlite3_context_db_handle(context); + char *zErrMsg = 0; + + if( argc==2 ){ + zProc = (const char *)sqlite3_value_text(argv[1]); + }else{ + zProc = 0; + } + if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){ + sqlite3_result_error(context, zErrMsg, -1); + sqlite3_free(zErrMsg); + } +} +#endif + + +/* +** An instance of the following structure holds the context of a +** sum() or avg() aggregate computation. +*/ +typedef struct SumCtx SumCtx; +struct SumCtx { + double rSum; /* Floating point sum */ + i64 iSum; /* Integer sum */ + i64 cnt; /* Number of elements summed */ + u8 overflow; /* True if integer overflow seen */ + u8 approx; /* True if non-integer value was input to the sum */ +}; + +/* +** Routines used to compute the sum, average, and total. +** +** The SUM() function follows the (broken) SQL standard which means +** that it returns NULL if it sums over no inputs. TOTAL returns +** 0.0 in that case. In addition, TOTAL always returns a float where +** SUM might return an integer if it never encounters a floating point +** value. TOTAL never fails, but SUM might through an exception if +** it overflows an integer. +*/ +static void sumStep(sqlite3_context *context, int argc, sqlite3_value **argv){ + SumCtx *p; + int type; + assert( argc==1 ); + UNUSED_PARAMETER(argc); + p = sqlite3_aggregate_context(context, sizeof(*p)); + type = sqlite3_value_numeric_type(argv[0]); + if( p && type!=SQLITE_NULL ){ + p->cnt++; + if( type==SQLITE_INTEGER ){ + i64 v = sqlite3_value_int64(argv[0]); + p->rSum += v; + if( (p->approx|p->overflow)==0 && sqlite3AddInt64(&p->iSum, v) ){ + p->overflow = 1; + } + }else{ + p->rSum += sqlite3_value_double(argv[0]); + p->approx = 1; + } + } +} +static void sumFinalize(sqlite3_context *context){ + SumCtx *p; + p = sqlite3_aggregate_context(context, 0); + if( p && p->cnt>0 ){ + if( p->overflow ){ + sqlite3_result_error(context,"integer overflow",-1); + }else if( p->approx ){ + sqlite3_result_double(context, p->rSum); + }else{ + sqlite3_result_int64(context, p->iSum); + } + } +} +static void avgFinalize(sqlite3_context *context){ + SumCtx *p; + p = sqlite3_aggregate_context(context, 0); + if( p && p->cnt>0 ){ + sqlite3_result_double(context, p->rSum/(double)p->cnt); + } +} +static void totalFinalize(sqlite3_context *context){ + SumCtx *p; + p = sqlite3_aggregate_context(context, 0); + /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ + sqlite3_result_double(context, p ? p->rSum : (double)0); +} + +/* +** The following structure keeps track of state information for the +** count() aggregate function. +*/ +typedef struct CountCtx CountCtx; +struct CountCtx { + i64 n; +}; + +/* +** Routines to implement the count() aggregate function. +*/ +static void countStep(sqlite3_context *context, int argc, sqlite3_value **argv){ + CountCtx *p; + p = sqlite3_aggregate_context(context, sizeof(*p)); + if( (argc==0 || SQLITE_NULL!=sqlite3_value_type(argv[0])) && p ){ + p->n++; + } + +#ifndef SQLITE_OMIT_DEPRECATED + /* The sqlite3_aggregate_count() function is deprecated. But just to make + ** sure it still operates correctly, verify that its count agrees with our + ** internal count when using count(*) and when the total count can be + ** expressed as a 32-bit integer. */ + assert( argc==1 || p==0 || p->n>0x7fffffff + || p->n==sqlite3_aggregate_count(context) ); +#endif +} +static void countFinalize(sqlite3_context *context){ + CountCtx *p; + p = sqlite3_aggregate_context(context, 0); + sqlite3_result_int64(context, p ? p->n : 0); +} + +/* +** Routines to implement min() and max() aggregate functions. +*/ +static void minmaxStep( + sqlite3_context *context, + int NotUsed, + sqlite3_value **argv +){ + Mem *pArg = (Mem *)argv[0]; + Mem *pBest; + UNUSED_PARAMETER(NotUsed); + + pBest = (Mem *)sqlite3_aggregate_context(context, sizeof(*pBest)); + if( !pBest ) return; + + if( sqlite3_value_type(argv[0])==SQLITE_NULL ){ + if( pBest->flags ) sqlite3SkipAccumulatorLoad(context); + }else if( pBest->flags ){ + int max; + int cmp; + CollSeq *pColl = sqlite3GetFuncCollSeq(context); + /* This step function is used for both the min() and max() aggregates, + ** the only difference between the two being that the sense of the + ** comparison is inverted. For the max() aggregate, the + ** sqlite3_user_data() function returns (void *)-1. For min() it + ** returns (void *)db, where db is the sqlite3* database pointer. + ** Therefore the next statement sets variable 'max' to 1 for the max() + ** aggregate, or 0 for min(). + */ + max = sqlite3_user_data(context)!=0; + cmp = sqlite3MemCompare(pBest, pArg, pColl); + if( (max && cmp<0) || (!max && cmp>0) ){ + sqlite3VdbeMemCopy(pBest, pArg); + }else{ + sqlite3SkipAccumulatorLoad(context); + } + }else{ + sqlite3VdbeMemCopy(pBest, pArg); + } +} +static void minMaxFinalize(sqlite3_context *context){ + sqlite3_value *pRes; + pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0); + if( pRes ){ + if( pRes->flags ){ + sqlite3_result_value(context, pRes); + } + sqlite3VdbeMemRelease(pRes); + } +} + +/* +** group_concat(EXPR, ?SEPARATOR?) +*/ +static void groupConcatStep( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + const char *zVal; + StrAccum *pAccum; + const char *zSep; + int nVal, nSep; + assert( argc==1 || argc==2 ); + if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; + pAccum = (StrAccum*)sqlite3_aggregate_context(context, sizeof(*pAccum)); + + if( pAccum ){ + sqlite3 *db = sqlite3_context_db_handle(context); + int firstTerm = pAccum->useMalloc==0; + pAccum->useMalloc = 2; + pAccum->mxAlloc = db->aLimit[SQLITE_LIMIT_LENGTH]; + if( !firstTerm ){ + if( argc==2 ){ + zSep = (char*)sqlite3_value_text(argv[1]); + nSep = sqlite3_value_bytes(argv[1]); + }else{ + zSep = ","; + nSep = 1; + } + if( nSep ) sqlite3StrAccumAppend(pAccum, zSep, nSep); + } + zVal = (char*)sqlite3_value_text(argv[0]); + nVal = sqlite3_value_bytes(argv[0]); + if( zVal ) sqlite3StrAccumAppend(pAccum, zVal, nVal); + } +} +static void groupConcatFinalize(sqlite3_context *context){ + StrAccum *pAccum; + pAccum = sqlite3_aggregate_context(context, 0); + if( pAccum ){ + if( pAccum->accError==STRACCUM_TOOBIG ){ + sqlite3_result_error_toobig(context); + }else if( pAccum->accError==STRACCUM_NOMEM ){ + sqlite3_result_error_nomem(context); + }else{ + sqlite3_result_text(context, sqlite3StrAccumFinish(pAccum), -1, + sqlite3_free); + } + } +} + +/* +** This routine does per-connection function registration. Most +** of the built-in functions above are part of the global function set. +** This routine only deals with those that are not global. +*/ +SQLITE_PRIVATE void sqlite3RegisterBuiltinFunctions(sqlite3 *db){ + int rc = sqlite3_overload_function(db, "MATCH", 2); + assert( rc==SQLITE_NOMEM || rc==SQLITE_OK ); + if( rc==SQLITE_NOMEM ){ + db->mallocFailed = 1; + } +} + +/* +** Set the LIKEOPT flag on the 2-argument function with the given name. +*/ +static void setLikeOptFlag(sqlite3 *db, const char *zName, u8 flagVal){ + FuncDef *pDef; + pDef = sqlite3FindFunction(db, zName, sqlite3Strlen30(zName), + 2, SQLITE_UTF8, 0); + if( ALWAYS(pDef) ){ + pDef->funcFlags |= flagVal; + } +} + +/* +** Register the built-in LIKE and GLOB functions. The caseSensitive +** parameter determines whether or not the LIKE operator is case +** sensitive. GLOB is always case sensitive. +*/ +SQLITE_PRIVATE void sqlite3RegisterLikeFunctions(sqlite3 *db, int caseSensitive){ + struct compareInfo *pInfo; + if( caseSensitive ){ + pInfo = (struct compareInfo*)&likeInfoAlt; + }else{ + pInfo = (struct compareInfo*)&likeInfoNorm; + } + sqlite3CreateFunc(db, "like", 2, SQLITE_UTF8, pInfo, likeFunc, 0, 0, 0); + sqlite3CreateFunc(db, "like", 3, SQLITE_UTF8, pInfo, likeFunc, 0, 0, 0); + sqlite3CreateFunc(db, "glob", 2, SQLITE_UTF8, + (struct compareInfo*)&globInfo, likeFunc, 0, 0, 0); + setLikeOptFlag(db, "glob", SQLITE_FUNC_LIKE | SQLITE_FUNC_CASE); + setLikeOptFlag(db, "like", + caseSensitive ? (SQLITE_FUNC_LIKE | SQLITE_FUNC_CASE) : SQLITE_FUNC_LIKE); +} + +/* +** pExpr points to an expression which implements a function. If +** it is appropriate to apply the LIKE optimization to that function +** then set aWc[0] through aWc[2] to the wildcard characters and +** return TRUE. If the function is not a LIKE-style function then +** return FALSE. +*/ +SQLITE_PRIVATE int sqlite3IsLikeFunction(sqlite3 *db, Expr *pExpr, int *pIsNocase, char *aWc){ + FuncDef *pDef; + if( pExpr->op!=TK_FUNCTION + || !pExpr->x.pList + || pExpr->x.pList->nExpr!=2 + ){ + return 0; + } + assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); + pDef = sqlite3FindFunction(db, pExpr->u.zToken, + sqlite3Strlen30(pExpr->u.zToken), + 2, SQLITE_UTF8, 0); + if( NEVER(pDef==0) || (pDef->funcFlags & SQLITE_FUNC_LIKE)==0 ){ + return 0; + } + + /* The memcpy() statement assumes that the wildcard characters are + ** the first three statements in the compareInfo structure. The + ** asserts() that follow verify that assumption + */ + memcpy(aWc, pDef->pUserData, 3); + assert( (char*)&likeInfoAlt == (char*)&likeInfoAlt.matchAll ); + assert( &((char*)&likeInfoAlt)[1] == (char*)&likeInfoAlt.matchOne ); + assert( &((char*)&likeInfoAlt)[2] == (char*)&likeInfoAlt.matchSet ); + *pIsNocase = (pDef->funcFlags & SQLITE_FUNC_CASE)==0; + return 1; +} + +/* +** All all of the FuncDef structures in the aBuiltinFunc[] array above +** to the global function hash table. This occurs at start-time (as +** a consequence of calling sqlite3_initialize()). +** +** After this routine runs +*/ +SQLITE_PRIVATE void sqlite3RegisterGlobalFunctions(void){ + /* + ** The following array holds FuncDef structures for all of the functions + ** defined in this file. + ** + ** The array cannot be constant since changes are made to the + ** FuncDef.pHash elements at start-time. The elements of this array + ** are read-only after initialization is complete. + */ + static SQLITE_WSD FuncDef aBuiltinFunc[] = { + FUNCTION(ltrim, 1, 1, 0, trimFunc ), + FUNCTION(ltrim, 2, 1, 0, trimFunc ), + FUNCTION(rtrim, 1, 2, 0, trimFunc ), + FUNCTION(rtrim, 2, 2, 0, trimFunc ), + FUNCTION(trim, 1, 3, 0, trimFunc ), + FUNCTION(trim, 2, 3, 0, trimFunc ), + FUNCTION(min, -1, 0, 1, minmaxFunc ), + FUNCTION(min, 0, 0, 1, 0 ), + AGGREGATE(min, 1, 0, 1, minmaxStep, minMaxFinalize ), + FUNCTION(max, -1, 1, 1, minmaxFunc ), + FUNCTION(max, 0, 1, 1, 0 ), + AGGREGATE(max, 1, 1, 1, minmaxStep, minMaxFinalize ), + FUNCTION2(typeof, 1, 0, 0, typeofFunc, SQLITE_FUNC_TYPEOF), + FUNCTION2(length, 1, 0, 0, lengthFunc, SQLITE_FUNC_LENGTH), + FUNCTION(instr, 2, 0, 0, instrFunc ), + FUNCTION(substr, 2, 0, 0, substrFunc ), + FUNCTION(substr, 3, 0, 0, substrFunc ), + FUNCTION(printf, -1, 0, 0, printfFunc ), + FUNCTION(unicode, 1, 0, 0, unicodeFunc ), + FUNCTION(char, -1, 0, 0, charFunc ), + FUNCTION(abs, 1, 0, 0, absFunc ), +#ifndef SQLITE_OMIT_FLOATING_POINT + FUNCTION(round, 1, 0, 0, roundFunc ), + FUNCTION(round, 2, 0, 0, roundFunc ), +#endif + FUNCTION(upper, 1, 0, 0, upperFunc ), + FUNCTION(lower, 1, 0, 0, lowerFunc ), + FUNCTION(coalesce, 1, 0, 0, 0 ), + FUNCTION(coalesce, 0, 0, 0, 0 ), + FUNCTION2(coalesce, -1, 0, 0, noopFunc, SQLITE_FUNC_COALESCE), + FUNCTION(hex, 1, 0, 0, hexFunc ), + FUNCTION2(ifnull, 2, 0, 0, noopFunc, SQLITE_FUNC_COALESCE), + FUNCTION2(unlikely, 1, 0, 0, noopFunc, SQLITE_FUNC_UNLIKELY), + FUNCTION2(likelihood, 2, 0, 0, noopFunc, SQLITE_FUNC_UNLIKELY), + VFUNCTION(random, 0, 0, 0, randomFunc ), + VFUNCTION(randomblob, 1, 0, 0, randomBlob ), + FUNCTION(nullif, 2, 0, 1, nullifFunc ), + FUNCTION(sqlite_version, 0, 0, 0, versionFunc ), + FUNCTION(sqlite_source_id, 0, 0, 0, sourceidFunc ), + FUNCTION(sqlite_log, 2, 0, 0, errlogFunc ), +#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS + FUNCTION(sqlite_compileoption_used,1, 0, 0, compileoptionusedFunc ), + FUNCTION(sqlite_compileoption_get, 1, 0, 0, compileoptiongetFunc ), +#endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ + FUNCTION(quote, 1, 0, 0, quoteFunc ), + VFUNCTION(last_insert_rowid, 0, 0, 0, last_insert_rowid), + VFUNCTION(changes, 0, 0, 0, changes ), + VFUNCTION(total_changes, 0, 0, 0, total_changes ), + FUNCTION(replace, 3, 0, 0, replaceFunc ), + FUNCTION(zeroblob, 1, 0, 0, zeroblobFunc ), + #ifdef SQLITE_SOUNDEX + FUNCTION(soundex, 1, 0, 0, soundexFunc ), + #endif + #ifndef SQLITE_OMIT_LOAD_EXTENSION + FUNCTION(load_extension, 1, 0, 0, loadExt ), + FUNCTION(load_extension, 2, 0, 0, loadExt ), + #endif + AGGREGATE(sum, 1, 0, 0, sumStep, sumFinalize ), + AGGREGATE(total, 1, 0, 0, sumStep, totalFinalize ), + AGGREGATE(avg, 1, 0, 0, sumStep, avgFinalize ), + /* AGGREGATE(count, 0, 0, 0, countStep, countFinalize ), */ + {0,SQLITE_UTF8|SQLITE_FUNC_COUNT,0,0,0,countStep,countFinalize,"count",0,0}, + AGGREGATE(count, 1, 0, 0, countStep, countFinalize ), + AGGREGATE(group_concat, 1, 0, 0, groupConcatStep, groupConcatFinalize), + AGGREGATE(group_concat, 2, 0, 0, groupConcatStep, groupConcatFinalize), + + LIKEFUNC(glob, 2, &globInfo, SQLITE_FUNC_LIKE|SQLITE_FUNC_CASE), + #ifdef SQLITE_CASE_SENSITIVE_LIKE + LIKEFUNC(like, 2, &likeInfoAlt, SQLITE_FUNC_LIKE|SQLITE_FUNC_CASE), + LIKEFUNC(like, 3, &likeInfoAlt, SQLITE_FUNC_LIKE|SQLITE_FUNC_CASE), + #else + LIKEFUNC(like, 2, &likeInfoNorm, SQLITE_FUNC_LIKE), + LIKEFUNC(like, 3, &likeInfoNorm, SQLITE_FUNC_LIKE), + #endif + }; + + int i; + FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions); + FuncDef *aFunc = (FuncDef*)&GLOBAL(FuncDef, aBuiltinFunc); + + for(i=0; idb->mallocFailed flag is set. +*/ +SQLITE_PRIVATE int sqlite3FkLocateIndex( + Parse *pParse, /* Parse context to store any error in */ + Table *pParent, /* Parent table of FK constraint pFKey */ + FKey *pFKey, /* Foreign key to find index for */ + Index **ppIdx, /* OUT: Unique index on parent table */ + int **paiCol /* OUT: Map of index columns in pFKey */ +){ + Index *pIdx = 0; /* Value to return via *ppIdx */ + int *aiCol = 0; /* Value to return via *paiCol */ + int nCol = pFKey->nCol; /* Number of columns in parent key */ + char *zKey = pFKey->aCol[0].zCol; /* Name of left-most parent key column */ + + /* The caller is responsible for zeroing output parameters. */ + assert( ppIdx && *ppIdx==0 ); + assert( !paiCol || *paiCol==0 ); + assert( pParse ); + + /* If this is a non-composite (single column) foreign key, check if it + ** maps to the INTEGER PRIMARY KEY of table pParent. If so, leave *ppIdx + ** and *paiCol set to zero and return early. + ** + ** Otherwise, for a composite foreign key (more than one column), allocate + ** space for the aiCol array (returned via output parameter *paiCol). + ** Non-composite foreign keys do not require the aiCol array. + */ + if( nCol==1 ){ + /* The FK maps to the IPK if any of the following are true: + ** + ** 1) There is an INTEGER PRIMARY KEY column and the FK is implicitly + ** mapped to the primary key of table pParent, or + ** 2) The FK is explicitly mapped to a column declared as INTEGER + ** PRIMARY KEY. + */ + if( pParent->iPKey>=0 ){ + if( !zKey ) return 0; + if( !sqlite3StrICmp(pParent->aCol[pParent->iPKey].zName, zKey) ) return 0; + } + }else if( paiCol ){ + assert( nCol>1 ); + aiCol = (int *)sqlite3DbMallocRaw(pParse->db, nCol*sizeof(int)); + if( !aiCol ) return 1; + *paiCol = aiCol; + } + + for(pIdx=pParent->pIndex; pIdx; pIdx=pIdx->pNext){ + if( pIdx->nKeyCol==nCol && pIdx->onError!=OE_None ){ + /* pIdx is a UNIQUE index (or a PRIMARY KEY) and has the right number + ** of columns. If each indexed column corresponds to a foreign key + ** column of pFKey, then this index is a winner. */ + + if( zKey==0 ){ + /* If zKey is NULL, then this foreign key is implicitly mapped to + ** the PRIMARY KEY of table pParent. The PRIMARY KEY index may be + ** identified by the test. */ + if( IsPrimaryKeyIndex(pIdx) ){ + if( aiCol ){ + int i; + for(i=0; iaCol[i].iFrom; + } + break; + } + }else{ + /* If zKey is non-NULL, then this foreign key was declared to + ** map to an explicit list of columns in table pParent. Check if this + ** index matches those columns. Also, check that the index uses + ** the default collation sequences for each column. */ + int i, j; + for(i=0; iaiColumn[i]; /* Index of column in parent tbl */ + char *zDfltColl; /* Def. collation for column */ + char *zIdxCol; /* Name of indexed column */ + + /* If the index uses a collation sequence that is different from + ** the default collation sequence for the column, this index is + ** unusable. Bail out early in this case. */ + zDfltColl = pParent->aCol[iCol].zColl; + if( !zDfltColl ){ + zDfltColl = "BINARY"; + } + if( sqlite3StrICmp(pIdx->azColl[i], zDfltColl) ) break; + + zIdxCol = pParent->aCol[iCol].zName; + for(j=0; jaCol[j].zCol, zIdxCol)==0 ){ + if( aiCol ) aiCol[i] = pFKey->aCol[j].iFrom; + break; + } + } + if( j==nCol ) break; + } + if( i==nCol ) break; /* pIdx is usable */ + } + } + } + + if( !pIdx ){ + if( !pParse->disableTriggers ){ + sqlite3ErrorMsg(pParse, + "foreign key mismatch - \"%w\" referencing \"%w\"", + pFKey->pFrom->zName, pFKey->zTo); + } + sqlite3DbFree(pParse->db, aiCol); + return 1; + } + + *ppIdx = pIdx; + return 0; +} + +/* +** This function is called when a row is inserted into or deleted from the +** child table of foreign key constraint pFKey. If an SQL UPDATE is executed +** on the child table of pFKey, this function is invoked twice for each row +** affected - once to "delete" the old row, and then again to "insert" the +** new row. +** +** Each time it is called, this function generates VDBE code to locate the +** row in the parent table that corresponds to the row being inserted into +** or deleted from the child table. If the parent row can be found, no +** special action is taken. Otherwise, if the parent row can *not* be +** found in the parent table: +** +** Operation | FK type | Action taken +** -------------------------------------------------------------------------- +** INSERT immediate Increment the "immediate constraint counter". +** +** DELETE immediate Decrement the "immediate constraint counter". +** +** INSERT deferred Increment the "deferred constraint counter". +** +** DELETE deferred Decrement the "deferred constraint counter". +** +** These operations are identified in the comment at the top of this file +** (fkey.c) as "I.1" and "D.1". +*/ +static void fkLookupParent( + Parse *pParse, /* Parse context */ + int iDb, /* Index of database housing pTab */ + Table *pTab, /* Parent table of FK pFKey */ + Index *pIdx, /* Unique index on parent key columns in pTab */ + FKey *pFKey, /* Foreign key constraint */ + int *aiCol, /* Map from parent key columns to child table columns */ + int regData, /* Address of array containing child table row */ + int nIncr, /* Increment constraint counter by this */ + int isIgnore /* If true, pretend pTab contains all NULL values */ +){ + int i; /* Iterator variable */ + Vdbe *v = sqlite3GetVdbe(pParse); /* Vdbe to add code to */ + int iCur = pParse->nTab - 1; /* Cursor number to use */ + int iOk = sqlite3VdbeMakeLabel(v); /* jump here if parent key found */ + + /* If nIncr is less than zero, then check at runtime if there are any + ** outstanding constraints to resolve. If there are not, there is no need + ** to check if deleting this row resolves any outstanding violations. + ** + ** Check if any of the key columns in the child table row are NULL. If + ** any are, then the constraint is considered satisfied. No need to + ** search for a matching row in the parent table. */ + if( nIncr<0 ){ + sqlite3VdbeAddOp2(v, OP_FkIfZero, pFKey->isDeferred, iOk); + VdbeCoverage(v); + } + for(i=0; inCol; i++){ + int iReg = aiCol[i] + regData + 1; + sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iOk); VdbeCoverage(v); + } + + if( isIgnore==0 ){ + if( pIdx==0 ){ + /* If pIdx is NULL, then the parent key is the INTEGER PRIMARY KEY + ** column of the parent table (table pTab). */ + int iMustBeInt; /* Address of MustBeInt instruction */ + int regTemp = sqlite3GetTempReg(pParse); + + /* Invoke MustBeInt to coerce the child key value to an integer (i.e. + ** apply the affinity of the parent key). If this fails, then there + ** is no matching parent key. Before using MustBeInt, make a copy of + ** the value. Otherwise, the value inserted into the child key column + ** will have INTEGER affinity applied to it, which may not be correct. */ + sqlite3VdbeAddOp2(v, OP_SCopy, aiCol[0]+1+regData, regTemp); + iMustBeInt = sqlite3VdbeAddOp2(v, OP_MustBeInt, regTemp, 0); + VdbeCoverage(v); + + /* If the parent table is the same as the child table, and we are about + ** to increment the constraint-counter (i.e. this is an INSERT operation), + ** then check if the row being inserted matches itself. If so, do not + ** increment the constraint-counter. */ + if( pTab==pFKey->pFrom && nIncr==1 ){ + sqlite3VdbeAddOp3(v, OP_Eq, regData, iOk, regTemp); VdbeCoverage(v); + sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); + } + + sqlite3OpenTable(pParse, iCur, iDb, pTab, OP_OpenRead); + sqlite3VdbeAddOp3(v, OP_NotExists, iCur, 0, regTemp); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Goto, 0, iOk); + sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); + sqlite3VdbeJumpHere(v, iMustBeInt); + sqlite3ReleaseTempReg(pParse, regTemp); + }else{ + int nCol = pFKey->nCol; + int regTemp = sqlite3GetTempRange(pParse, nCol); + int regRec = sqlite3GetTempReg(pParse); + + sqlite3VdbeAddOp3(v, OP_OpenRead, iCur, pIdx->tnum, iDb); + sqlite3VdbeSetP4KeyInfo(pParse, pIdx); + for(i=0; ipFrom && nIncr==1 ){ + int iJump = sqlite3VdbeCurrentAddr(v) + nCol + 1; + for(i=0; iaiColumn[i]+1+regData; + assert( aiCol[i]!=pTab->iPKey ); + if( pIdx->aiColumn[i]==pTab->iPKey ){ + /* The parent key is a composite key that includes the IPK column */ + iParent = regData; + } + sqlite3VdbeAddOp3(v, OP_Ne, iChild, iJump, iParent); VdbeCoverage(v); + sqlite3VdbeChangeP5(v, SQLITE_JUMPIFNULL); + } + sqlite3VdbeAddOp2(v, OP_Goto, 0, iOk); + } + + sqlite3VdbeAddOp4(v, OP_MakeRecord, regTemp, nCol, regRec, + sqlite3IndexAffinityStr(v,pIdx), nCol); + sqlite3VdbeAddOp4Int(v, OP_Found, iCur, iOk, regRec, 0); VdbeCoverage(v); + + sqlite3ReleaseTempReg(pParse, regRec); + sqlite3ReleaseTempRange(pParse, regTemp, nCol); + } + } + + if( !pFKey->isDeferred && !(pParse->db->flags & SQLITE_DeferFKs) + && !pParse->pToplevel + && !pParse->isMultiWrite + ){ + /* Special case: If this is an INSERT statement that will insert exactly + ** one row into the table, raise a constraint immediately instead of + ** incrementing a counter. This is necessary as the VM code is being + ** generated for will not open a statement transaction. */ + assert( nIncr==1 ); + sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_FOREIGNKEY, + OE_Abort, 0, P4_STATIC, P5_ConstraintFK); + }else{ + if( nIncr>0 && pFKey->isDeferred==0 ){ + sqlite3ParseToplevel(pParse)->mayAbort = 1; + } + sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, nIncr); + } + + sqlite3VdbeResolveLabel(v, iOk); + sqlite3VdbeAddOp1(v, OP_Close, iCur); +} + + +/* +** Return an Expr object that refers to a memory register corresponding +** to column iCol of table pTab. +** +** regBase is the first of an array of register that contains the data +** for pTab. regBase itself holds the rowid. regBase+1 holds the first +** column. regBase+2 holds the second column, and so forth. +*/ +static Expr *exprTableRegister( + Parse *pParse, /* Parsing and code generating context */ + Table *pTab, /* The table whose content is at r[regBase]... */ + int regBase, /* Contents of table pTab */ + i16 iCol /* Which column of pTab is desired */ +){ + Expr *pExpr; + Column *pCol; + const char *zColl; + sqlite3 *db = pParse->db; + + pExpr = sqlite3Expr(db, TK_REGISTER, 0); + if( pExpr ){ + if( iCol>=0 && iCol!=pTab->iPKey ){ + pCol = &pTab->aCol[iCol]; + pExpr->iTable = regBase + iCol + 1; + pExpr->affinity = pCol->affinity; + zColl = pCol->zColl; + if( zColl==0 ) zColl = db->pDfltColl->zName; + pExpr = sqlite3ExprAddCollateString(pParse, pExpr, zColl); + }else{ + pExpr->iTable = regBase; + pExpr->affinity = SQLITE_AFF_INTEGER; + } + } + return pExpr; +} + +/* +** Return an Expr object that refers to column iCol of table pTab which +** has cursor iCur. +*/ +static Expr *exprTableColumn( + sqlite3 *db, /* The database connection */ + Table *pTab, /* The table whose column is desired */ + int iCursor, /* The open cursor on the table */ + i16 iCol /* The column that is wanted */ +){ + Expr *pExpr = sqlite3Expr(db, TK_COLUMN, 0); + if( pExpr ){ + pExpr->pTab = pTab; + pExpr->iTable = iCursor; + pExpr->iColumn = iCol; + } + return pExpr; +} + +/* +** This function is called to generate code executed when a row is deleted +** from the parent table of foreign key constraint pFKey and, if pFKey is +** deferred, when a row is inserted into the same table. When generating +** code for an SQL UPDATE operation, this function may be called twice - +** once to "delete" the old row and once to "insert" the new row. +** +** The code generated by this function scans through the rows in the child +** table that correspond to the parent table row being deleted or inserted. +** For each child row found, one of the following actions is taken: +** +** Operation | FK type | Action taken +** -------------------------------------------------------------------------- +** DELETE immediate Increment the "immediate constraint counter". +** Or, if the ON (UPDATE|DELETE) action is RESTRICT, +** throw a "FOREIGN KEY constraint failed" exception. +** +** INSERT immediate Decrement the "immediate constraint counter". +** +** DELETE deferred Increment the "deferred constraint counter". +** Or, if the ON (UPDATE|DELETE) action is RESTRICT, +** throw a "FOREIGN KEY constraint failed" exception. +** +** INSERT deferred Decrement the "deferred constraint counter". +** +** These operations are identified in the comment at the top of this file +** (fkey.c) as "I.2" and "D.2". +*/ +static void fkScanChildren( + Parse *pParse, /* Parse context */ + SrcList *pSrc, /* The child table to be scanned */ + Table *pTab, /* The parent table */ + Index *pIdx, /* Index on parent covering the foreign key */ + FKey *pFKey, /* The foreign key linking pSrc to pTab */ + int *aiCol, /* Map from pIdx cols to child table cols */ + int regData, /* Parent row data starts here */ + int nIncr /* Amount to increment deferred counter by */ +){ + sqlite3 *db = pParse->db; /* Database handle */ + int i; /* Iterator variable */ + Expr *pWhere = 0; /* WHERE clause to scan with */ + NameContext sNameContext; /* Context used to resolve WHERE clause */ + WhereInfo *pWInfo; /* Context used by sqlite3WhereXXX() */ + int iFkIfZero = 0; /* Address of OP_FkIfZero */ + Vdbe *v = sqlite3GetVdbe(pParse); + + assert( pIdx==0 || pIdx->pTable==pTab ); + assert( pIdx==0 || pIdx->nKeyCol==pFKey->nCol ); + assert( pIdx!=0 || pFKey->nCol==1 ); + assert( pIdx!=0 || HasRowid(pTab) ); + + if( nIncr<0 ){ + iFkIfZero = sqlite3VdbeAddOp2(v, OP_FkIfZero, pFKey->isDeferred, 0); + VdbeCoverage(v); + } + + /* Create an Expr object representing an SQL expression like: + ** + ** = AND = ... + ** + ** The collation sequence used for the comparison should be that of + ** the parent key columns. The affinity of the parent key column should + ** be applied to each child key value before the comparison takes place. + */ + for(i=0; inCol; i++){ + Expr *pLeft; /* Value from parent table row */ + Expr *pRight; /* Column ref to child table */ + Expr *pEq; /* Expression (pLeft = pRight) */ + i16 iCol; /* Index of column in child table */ + const char *zCol; /* Name of column in child table */ + + iCol = pIdx ? pIdx->aiColumn[i] : -1; + pLeft = exprTableRegister(pParse, pTab, regData, iCol); + iCol = aiCol ? aiCol[i] : pFKey->aCol[0].iFrom; + assert( iCol>=0 ); + zCol = pFKey->pFrom->aCol[iCol].zName; + pRight = sqlite3Expr(db, TK_ID, zCol); + pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0); + pWhere = sqlite3ExprAnd(db, pWhere, pEq); + } + + /* If the child table is the same as the parent table, then add terms + ** to the WHERE clause that prevent this entry from being scanned. + ** The added WHERE clause terms are like this: + ** + ** $current_rowid!=rowid + ** NOT( $current_a==a AND $current_b==b AND ... ) + ** + ** The first form is used for rowid tables. The second form is used + ** for WITHOUT ROWID tables. In the second form, the primary key is + ** (a,b,...) + */ + if( pTab==pFKey->pFrom && nIncr>0 ){ + Expr *pNe; /* Expression (pLeft != pRight) */ + Expr *pLeft; /* Value from parent table row */ + Expr *pRight; /* Column ref to child table */ + if( HasRowid(pTab) ){ + pLeft = exprTableRegister(pParse, pTab, regData, -1); + pRight = exprTableColumn(db, pTab, pSrc->a[0].iCursor, -1); + pNe = sqlite3PExpr(pParse, TK_NE, pLeft, pRight, 0); + }else{ + Expr *pEq, *pAll = 0; + Index *pPk = sqlite3PrimaryKeyIndex(pTab); + assert( pIdx!=0 ); + for(i=0; inKeyCol; i++){ + i16 iCol = pIdx->aiColumn[i]; + pLeft = exprTableRegister(pParse, pTab, regData, iCol); + pRight = exprTableColumn(db, pTab, pSrc->a[0].iCursor, iCol); + pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0); + pAll = sqlite3ExprAnd(db, pAll, pEq); + } + pNe = sqlite3PExpr(pParse, TK_NOT, pAll, 0, 0); + } + pWhere = sqlite3ExprAnd(db, pWhere, pNe); + } + + /* Resolve the references in the WHERE clause. */ + memset(&sNameContext, 0, sizeof(NameContext)); + sNameContext.pSrcList = pSrc; + sNameContext.pParse = pParse; + sqlite3ResolveExprNames(&sNameContext, pWhere); + + /* Create VDBE to loop through the entries in pSrc that match the WHERE + ** clause. If the constraint is not deferred, throw an exception for + ** each row found. Otherwise, for deferred constraints, increment the + ** deferred constraint counter by nIncr for each row selected. */ + pWInfo = sqlite3WhereBegin(pParse, pSrc, pWhere, 0, 0, 0, 0); + if( nIncr>0 && pFKey->isDeferred==0 ){ + sqlite3ParseToplevel(pParse)->mayAbort = 1; + } + sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, nIncr); + if( pWInfo ){ + sqlite3WhereEnd(pWInfo); + } + + /* Clean up the WHERE clause constructed above. */ + sqlite3ExprDelete(db, pWhere); + if( iFkIfZero ){ + sqlite3VdbeJumpHere(v, iFkIfZero); + } +} + +/* +** This function returns a linked list of FKey objects (connected by +** FKey.pNextTo) holding all children of table pTab. For example, +** given the following schema: +** +** CREATE TABLE t1(a PRIMARY KEY); +** CREATE TABLE t2(b REFERENCES t1(a); +** +** Calling this function with table "t1" as an argument returns a pointer +** to the FKey structure representing the foreign key constraint on table +** "t2". Calling this function with "t2" as the argument would return a +** NULL pointer (as there are no FK constraints for which t2 is the parent +** table). +*/ +SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *pTab){ + int nName = sqlite3Strlen30(pTab->zName); + return (FKey *)sqlite3HashFind(&pTab->pSchema->fkeyHash, pTab->zName, nName); +} + +/* +** The second argument is a Trigger structure allocated by the +** fkActionTrigger() routine. This function deletes the Trigger structure +** and all of its sub-components. +** +** The Trigger structure or any of its sub-components may be allocated from +** the lookaside buffer belonging to database handle dbMem. +*/ +static void fkTriggerDelete(sqlite3 *dbMem, Trigger *p){ + if( p ){ + TriggerStep *pStep = p->step_list; + sqlite3ExprDelete(dbMem, pStep->pWhere); + sqlite3ExprListDelete(dbMem, pStep->pExprList); + sqlite3SelectDelete(dbMem, pStep->pSelect); + sqlite3ExprDelete(dbMem, p->pWhen); + sqlite3DbFree(dbMem, p); + } +} + +/* +** This function is called to generate code that runs when table pTab is +** being dropped from the database. The SrcList passed as the second argument +** to this function contains a single entry guaranteed to resolve to +** table pTab. +** +** Normally, no code is required. However, if either +** +** (a) The table is the parent table of a FK constraint, or +** (b) The table is the child table of a deferred FK constraint and it is +** determined at runtime that there are outstanding deferred FK +** constraint violations in the database, +** +** then the equivalent of "DELETE FROM " is executed before dropping +** the table from the database. Triggers are disabled while running this +** DELETE, but foreign key actions are not. +*/ +SQLITE_PRIVATE void sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab){ + sqlite3 *db = pParse->db; + if( (db->flags&SQLITE_ForeignKeys) && !IsVirtual(pTab) && !pTab->pSelect ){ + int iSkip = 0; + Vdbe *v = sqlite3GetVdbe(pParse); + + assert( v ); /* VDBE has already been allocated */ + if( sqlite3FkReferences(pTab)==0 ){ + /* Search for a deferred foreign key constraint for which this table + ** is the child table. If one cannot be found, return without + ** generating any VDBE code. If one can be found, then jump over + ** the entire DELETE if there are no outstanding deferred constraints + ** when this statement is run. */ + FKey *p; + for(p=pTab->pFKey; p; p=p->pNextFrom){ + if( p->isDeferred || (db->flags & SQLITE_DeferFKs) ) break; + } + if( !p ) return; + iSkip = sqlite3VdbeMakeLabel(v); + sqlite3VdbeAddOp2(v, OP_FkIfZero, 1, iSkip); VdbeCoverage(v); + } + + pParse->disableTriggers = 1; + sqlite3DeleteFrom(pParse, sqlite3SrcListDup(db, pName, 0), 0); + pParse->disableTriggers = 0; + + /* If the DELETE has generated immediate foreign key constraint + ** violations, halt the VDBE and return an error at this point, before + ** any modifications to the schema are made. This is because statement + ** transactions are not able to rollback schema changes. + ** + ** If the SQLITE_DeferFKs flag is set, then this is not required, as + ** the statement transaction will not be rolled back even if FK + ** constraints are violated. + */ + if( (db->flags & SQLITE_DeferFKs)==0 ){ + sqlite3VdbeAddOp2(v, OP_FkIfZero, 0, sqlite3VdbeCurrentAddr(v)+2); + VdbeCoverage(v); + sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_FOREIGNKEY, + OE_Abort, 0, P4_STATIC, P5_ConstraintFK); + } + + if( iSkip ){ + sqlite3VdbeResolveLabel(v, iSkip); + } + } +} + + +/* +** The second argument points to an FKey object representing a foreign key +** for which pTab is the child table. An UPDATE statement against pTab +** is currently being processed. For each column of the table that is +** actually updated, the corresponding element in the aChange[] array +** is zero or greater (if a column is unmodified the corresponding element +** is set to -1). If the rowid column is modified by the UPDATE statement +** the bChngRowid argument is non-zero. +** +** This function returns true if any of the columns that are part of the +** child key for FK constraint *p are modified. +*/ +static int fkChildIsModified( + Table *pTab, /* Table being updated */ + FKey *p, /* Foreign key for which pTab is the child */ + int *aChange, /* Array indicating modified columns */ + int bChngRowid /* True if rowid is modified by this update */ +){ + int i; + for(i=0; inCol; i++){ + int iChildKey = p->aCol[i].iFrom; + if( aChange[iChildKey]>=0 ) return 1; + if( iChildKey==pTab->iPKey && bChngRowid ) return 1; + } + return 0; +} + +/* +** The second argument points to an FKey object representing a foreign key +** for which pTab is the parent table. An UPDATE statement against pTab +** is currently being processed. For each column of the table that is +** actually updated, the corresponding element in the aChange[] array +** is zero or greater (if a column is unmodified the corresponding element +** is set to -1). If the rowid column is modified by the UPDATE statement +** the bChngRowid argument is non-zero. +** +** This function returns true if any of the columns that are part of the +** parent key for FK constraint *p are modified. +*/ +static int fkParentIsModified( + Table *pTab, + FKey *p, + int *aChange, + int bChngRowid +){ + int i; + for(i=0; inCol; i++){ + char *zKey = p->aCol[i].zCol; + int iKey; + for(iKey=0; iKeynCol; iKey++){ + if( aChange[iKey]>=0 || (iKey==pTab->iPKey && bChngRowid) ){ + Column *pCol = &pTab->aCol[iKey]; + if( zKey ){ + if( 0==sqlite3StrICmp(pCol->zName, zKey) ) return 1; + }else if( pCol->colFlags & COLFLAG_PRIMKEY ){ + return 1; + } + } + } + } + return 0; +} + +/* +** This function is called when inserting, deleting or updating a row of +** table pTab to generate VDBE code to perform foreign key constraint +** processing for the operation. +** +** For a DELETE operation, parameter regOld is passed the index of the +** first register in an array of (pTab->nCol+1) registers containing the +** rowid of the row being deleted, followed by each of the column values +** of the row being deleted, from left to right. Parameter regNew is passed +** zero in this case. +** +** For an INSERT operation, regOld is passed zero and regNew is passed the +** first register of an array of (pTab->nCol+1) registers containing the new +** row data. +** +** For an UPDATE operation, this function is called twice. Once before +** the original record is deleted from the table using the calling convention +** described for DELETE. Then again after the original record is deleted +** but before the new record is inserted using the INSERT convention. +*/ +SQLITE_PRIVATE void sqlite3FkCheck( + Parse *pParse, /* Parse context */ + Table *pTab, /* Row is being deleted from this table */ + int regOld, /* Previous row data is stored here */ + int regNew, /* New row data is stored here */ + int *aChange, /* Array indicating UPDATEd columns (or 0) */ + int bChngRowid /* True if rowid is UPDATEd */ +){ + sqlite3 *db = pParse->db; /* Database handle */ + FKey *pFKey; /* Used to iterate through FKs */ + int iDb; /* Index of database containing pTab */ + const char *zDb; /* Name of database containing pTab */ + int isIgnoreErrors = pParse->disableTriggers; + + /* Exactly one of regOld and regNew should be non-zero. */ + assert( (regOld==0)!=(regNew==0) ); + + /* If foreign-keys are disabled, this function is a no-op. */ + if( (db->flags&SQLITE_ForeignKeys)==0 ) return; + + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + zDb = db->aDb[iDb].zName; + + /* Loop through all the foreign key constraints for which pTab is the + ** child table (the table that the foreign key definition is part of). */ + for(pFKey=pTab->pFKey; pFKey; pFKey=pFKey->pNextFrom){ + Table *pTo; /* Parent table of foreign key pFKey */ + Index *pIdx = 0; /* Index on key columns in pTo */ + int *aiFree = 0; + int *aiCol; + int iCol; + int i; + int isIgnore = 0; + + if( aChange + && sqlite3_stricmp(pTab->zName, pFKey->zTo)!=0 + && fkChildIsModified(pTab, pFKey, aChange, bChngRowid)==0 + ){ + continue; + } + + /* Find the parent table of this foreign key. Also find a unique index + ** on the parent key columns in the parent table. If either of these + ** schema items cannot be located, set an error in pParse and return + ** early. */ + if( pParse->disableTriggers ){ + pTo = sqlite3FindTable(db, pFKey->zTo, zDb); + }else{ + pTo = sqlite3LocateTable(pParse, 0, pFKey->zTo, zDb); + } + if( !pTo || sqlite3FkLocateIndex(pParse, pTo, pFKey, &pIdx, &aiFree) ){ + assert( isIgnoreErrors==0 || (regOld!=0 && regNew==0) ); + if( !isIgnoreErrors || db->mallocFailed ) return; + if( pTo==0 ){ + /* If isIgnoreErrors is true, then a table is being dropped. In this + ** case SQLite runs a "DELETE FROM xxx" on the table being dropped + ** before actually dropping it in order to check FK constraints. + ** If the parent table of an FK constraint on the current table is + ** missing, behave as if it is empty. i.e. decrement the relevant + ** FK counter for each row of the current table with non-NULL keys. + */ + Vdbe *v = sqlite3GetVdbe(pParse); + int iJump = sqlite3VdbeCurrentAddr(v) + pFKey->nCol + 1; + for(i=0; inCol; i++){ + int iReg = pFKey->aCol[i].iFrom + regOld + 1; + sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iJump); VdbeCoverage(v); + } + sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, -1); + } + continue; + } + assert( pFKey->nCol==1 || (aiFree && pIdx) ); + + if( aiFree ){ + aiCol = aiFree; + }else{ + iCol = pFKey->aCol[0].iFrom; + aiCol = &iCol; + } + for(i=0; inCol; i++){ + if( aiCol[i]==pTab->iPKey ){ + aiCol[i] = -1; + } +#ifndef SQLITE_OMIT_AUTHORIZATION + /* Request permission to read the parent key columns. If the + ** authorization callback returns SQLITE_IGNORE, behave as if any + ** values read from the parent table are NULL. */ + if( db->xAuth ){ + int rcauth; + char *zCol = pTo->aCol[pIdx ? pIdx->aiColumn[i] : pTo->iPKey].zName; + rcauth = sqlite3AuthReadCol(pParse, pTo->zName, zCol, iDb); + isIgnore = (rcauth==SQLITE_IGNORE); + } +#endif + } + + /* Take a shared-cache advisory read-lock on the parent table. Allocate + ** a cursor to use to search the unique index on the parent key columns + ** in the parent table. */ + sqlite3TableLock(pParse, iDb, pTo->tnum, 0, pTo->zName); + pParse->nTab++; + + if( regOld!=0 ){ + /* A row is being removed from the child table. Search for the parent. + ** If the parent does not exist, removing the child row resolves an + ** outstanding foreign key constraint violation. */ + fkLookupParent(pParse, iDb, pTo, pIdx, pFKey, aiCol, regOld, -1,isIgnore); + } + if( regNew!=0 ){ + /* A row is being added to the child table. If a parent row cannot + ** be found, adding the child row has violated the FK constraint. */ + fkLookupParent(pParse, iDb, pTo, pIdx, pFKey, aiCol, regNew, +1,isIgnore); + } + + sqlite3DbFree(db, aiFree); + } + + /* Loop through all the foreign key constraints that refer to this table. + ** (the "child" constraints) */ + for(pFKey = sqlite3FkReferences(pTab); pFKey; pFKey=pFKey->pNextTo){ + Index *pIdx = 0; /* Foreign key index for pFKey */ + SrcList *pSrc; + int *aiCol = 0; + + if( aChange && fkParentIsModified(pTab, pFKey, aChange, bChngRowid)==0 ){ + continue; + } + + if( !pFKey->isDeferred && !(db->flags & SQLITE_DeferFKs) + && !pParse->pToplevel && !pParse->isMultiWrite + ){ + assert( regOld==0 && regNew!=0 ); + /* Inserting a single row into a parent table cannot cause an immediate + ** foreign key violation. So do nothing in this case. */ + continue; + } + + if( sqlite3FkLocateIndex(pParse, pTab, pFKey, &pIdx, &aiCol) ){ + if( !isIgnoreErrors || db->mallocFailed ) return; + continue; + } + assert( aiCol || pFKey->nCol==1 ); + + /* Create a SrcList structure containing the child table. We need the + ** child table as a SrcList for sqlite3WhereBegin() */ + pSrc = sqlite3SrcListAppend(db, 0, 0, 0); + if( pSrc ){ + struct SrcList_item *pItem = pSrc->a; + pItem->pTab = pFKey->pFrom; + pItem->zName = pFKey->pFrom->zName; + pItem->pTab->nRef++; + pItem->iCursor = pParse->nTab++; + + if( regNew!=0 ){ + fkScanChildren(pParse, pSrc, pTab, pIdx, pFKey, aiCol, regNew, -1); + } + if( regOld!=0 ){ + /* If there is a RESTRICT action configured for the current operation + ** on the parent table of this FK, then throw an exception + ** immediately if the FK constraint is violated, even if this is a + ** deferred trigger. That's what RESTRICT means. To defer checking + ** the constraint, the FK should specify NO ACTION (represented + ** using OE_None). NO ACTION is the default. */ + fkScanChildren(pParse, pSrc, pTab, pIdx, pFKey, aiCol, regOld, 1); + } + pItem->zName = 0; + sqlite3SrcListDelete(db, pSrc); + } + sqlite3DbFree(db, aiCol); + } +} + +#define COLUMN_MASK(x) (((x)>31) ? 0xffffffff : ((u32)1<<(x))) + +/* +** This function is called before generating code to update or delete a +** row contained in table pTab. +*/ +SQLITE_PRIVATE u32 sqlite3FkOldmask( + Parse *pParse, /* Parse context */ + Table *pTab /* Table being modified */ +){ + u32 mask = 0; + if( pParse->db->flags&SQLITE_ForeignKeys ){ + FKey *p; + int i; + for(p=pTab->pFKey; p; p=p->pNextFrom){ + for(i=0; inCol; i++) mask |= COLUMN_MASK(p->aCol[i].iFrom); + } + for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){ + Index *pIdx = 0; + sqlite3FkLocateIndex(pParse, pTab, p, &pIdx, 0); + if( pIdx ){ + for(i=0; inKeyCol; i++) mask |= COLUMN_MASK(pIdx->aiColumn[i]); + } + } + } + return mask; +} + + +/* +** This function is called before generating code to update or delete a +** row contained in table pTab. If the operation is a DELETE, then +** parameter aChange is passed a NULL value. For an UPDATE, aChange points +** to an array of size N, where N is the number of columns in table pTab. +** If the i'th column is not modified by the UPDATE, then the corresponding +** entry in the aChange[] array is set to -1. If the column is modified, +** the value is 0 or greater. Parameter chngRowid is set to true if the +** UPDATE statement modifies the rowid fields of the table. +** +** If any foreign key processing will be required, this function returns +** true. If there is no foreign key related processing, this function +** returns false. +*/ +SQLITE_PRIVATE int sqlite3FkRequired( + Parse *pParse, /* Parse context */ + Table *pTab, /* Table being modified */ + int *aChange, /* Non-NULL for UPDATE operations */ + int chngRowid /* True for UPDATE that affects rowid */ +){ + if( pParse->db->flags&SQLITE_ForeignKeys ){ + if( !aChange ){ + /* A DELETE operation. Foreign key processing is required if the + ** table in question is either the child or parent table for any + ** foreign key constraint. */ + return (sqlite3FkReferences(pTab) || pTab->pFKey); + }else{ + /* This is an UPDATE. Foreign key processing is only required if the + ** operation modifies one or more child or parent key columns. */ + FKey *p; + + /* Check if any child key columns are being modified. */ + for(p=pTab->pFKey; p; p=p->pNextFrom){ + if( fkChildIsModified(pTab, p, aChange, chngRowid) ) return 1; + } + + /* Check if any parent key columns are being modified. */ + for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){ + if( fkParentIsModified(pTab, p, aChange, chngRowid) ) return 1; + } + } + } + return 0; +} + +/* +** This function is called when an UPDATE or DELETE operation is being +** compiled on table pTab, which is the parent table of foreign-key pFKey. +** If the current operation is an UPDATE, then the pChanges parameter is +** passed a pointer to the list of columns being modified. If it is a +** DELETE, pChanges is passed a NULL pointer. +** +** It returns a pointer to a Trigger structure containing a trigger +** equivalent to the ON UPDATE or ON DELETE action specified by pFKey. +** If the action is "NO ACTION" or "RESTRICT", then a NULL pointer is +** returned (these actions require no special handling by the triggers +** sub-system, code for them is created by fkScanChildren()). +** +** For example, if pFKey is the foreign key and pTab is table "p" in +** the following schema: +** +** CREATE TABLE p(pk PRIMARY KEY); +** CREATE TABLE c(ck REFERENCES p ON DELETE CASCADE); +** +** then the returned trigger structure is equivalent to: +** +** CREATE TRIGGER ... DELETE ON p BEGIN +** DELETE FROM c WHERE ck = old.pk; +** END; +** +** The returned pointer is cached as part of the foreign key object. It +** is eventually freed along with the rest of the foreign key object by +** sqlite3FkDelete(). +*/ +static Trigger *fkActionTrigger( + Parse *pParse, /* Parse context */ + Table *pTab, /* Table being updated or deleted from */ + FKey *pFKey, /* Foreign key to get action for */ + ExprList *pChanges /* Change-list for UPDATE, NULL for DELETE */ +){ + sqlite3 *db = pParse->db; /* Database handle */ + int action; /* One of OE_None, OE_Cascade etc. */ + Trigger *pTrigger; /* Trigger definition to return */ + int iAction = (pChanges!=0); /* 1 for UPDATE, 0 for DELETE */ + + action = pFKey->aAction[iAction]; + pTrigger = pFKey->apTrigger[iAction]; + + if( action!=OE_None && !pTrigger ){ + u8 enableLookaside; /* Copy of db->lookaside.bEnabled */ + char const *zFrom; /* Name of child table */ + int nFrom; /* Length in bytes of zFrom */ + Index *pIdx = 0; /* Parent key index for this FK */ + int *aiCol = 0; /* child table cols -> parent key cols */ + TriggerStep *pStep = 0; /* First (only) step of trigger program */ + Expr *pWhere = 0; /* WHERE clause of trigger step */ + ExprList *pList = 0; /* Changes list if ON UPDATE CASCADE */ + Select *pSelect = 0; /* If RESTRICT, "SELECT RAISE(...)" */ + int i; /* Iterator variable */ + Expr *pWhen = 0; /* WHEN clause for the trigger */ + + if( sqlite3FkLocateIndex(pParse, pTab, pFKey, &pIdx, &aiCol) ) return 0; + assert( aiCol || pFKey->nCol==1 ); + + for(i=0; inCol; i++){ + Token tOld = { "old", 3 }; /* Literal "old" token */ + Token tNew = { "new", 3 }; /* Literal "new" token */ + Token tFromCol; /* Name of column in child table */ + Token tToCol; /* Name of column in parent table */ + int iFromCol; /* Idx of column in child table */ + Expr *pEq; /* tFromCol = OLD.tToCol */ + + iFromCol = aiCol ? aiCol[i] : pFKey->aCol[0].iFrom; + assert( iFromCol>=0 ); + tToCol.z = pIdx ? pTab->aCol[pIdx->aiColumn[i]].zName : "oid"; + tFromCol.z = pFKey->pFrom->aCol[iFromCol].zName; + + tToCol.n = sqlite3Strlen30(tToCol.z); + tFromCol.n = sqlite3Strlen30(tFromCol.z); + + /* Create the expression "OLD.zToCol = zFromCol". It is important + ** that the "OLD.zToCol" term is on the LHS of the = operator, so + ** that the affinity and collation sequence associated with the + ** parent table are used for the comparison. */ + pEq = sqlite3PExpr(pParse, TK_EQ, + sqlite3PExpr(pParse, TK_DOT, + sqlite3PExpr(pParse, TK_ID, 0, 0, &tOld), + sqlite3PExpr(pParse, TK_ID, 0, 0, &tToCol) + , 0), + sqlite3PExpr(pParse, TK_ID, 0, 0, &tFromCol) + , 0); + pWhere = sqlite3ExprAnd(db, pWhere, pEq); + + /* For ON UPDATE, construct the next term of the WHEN clause. + ** The final WHEN clause will be like this: + ** + ** WHEN NOT(old.col1 IS new.col1 AND ... AND old.colN IS new.colN) + */ + if( pChanges ){ + pEq = sqlite3PExpr(pParse, TK_IS, + sqlite3PExpr(pParse, TK_DOT, + sqlite3PExpr(pParse, TK_ID, 0, 0, &tOld), + sqlite3PExpr(pParse, TK_ID, 0, 0, &tToCol), + 0), + sqlite3PExpr(pParse, TK_DOT, + sqlite3PExpr(pParse, TK_ID, 0, 0, &tNew), + sqlite3PExpr(pParse, TK_ID, 0, 0, &tToCol), + 0), + 0); + pWhen = sqlite3ExprAnd(db, pWhen, pEq); + } + + if( action!=OE_Restrict && (action!=OE_Cascade || pChanges) ){ + Expr *pNew; + if( action==OE_Cascade ){ + pNew = sqlite3PExpr(pParse, TK_DOT, + sqlite3PExpr(pParse, TK_ID, 0, 0, &tNew), + sqlite3PExpr(pParse, TK_ID, 0, 0, &tToCol) + , 0); + }else if( action==OE_SetDflt ){ + Expr *pDflt = pFKey->pFrom->aCol[iFromCol].pDflt; + if( pDflt ){ + pNew = sqlite3ExprDup(db, pDflt, 0); + }else{ + pNew = sqlite3PExpr(pParse, TK_NULL, 0, 0, 0); + } + }else{ + pNew = sqlite3PExpr(pParse, TK_NULL, 0, 0, 0); + } + pList = sqlite3ExprListAppend(pParse, pList, pNew); + sqlite3ExprListSetName(pParse, pList, &tFromCol, 0); + } + } + sqlite3DbFree(db, aiCol); + + zFrom = pFKey->pFrom->zName; + nFrom = sqlite3Strlen30(zFrom); + + if( action==OE_Restrict ){ + Token tFrom; + Expr *pRaise; + + tFrom.z = zFrom; + tFrom.n = nFrom; + pRaise = sqlite3Expr(db, TK_RAISE, "FOREIGN KEY constraint failed"); + if( pRaise ){ + pRaise->affinity = OE_Abort; + } + pSelect = sqlite3SelectNew(pParse, + sqlite3ExprListAppend(pParse, 0, pRaise), + sqlite3SrcListAppend(db, 0, &tFrom, 0), + pWhere, + 0, 0, 0, 0, 0, 0 + ); + pWhere = 0; + } + + /* Disable lookaside memory allocation */ + enableLookaside = db->lookaside.bEnabled; + db->lookaside.bEnabled = 0; + + pTrigger = (Trigger *)sqlite3DbMallocZero(db, + sizeof(Trigger) + /* struct Trigger */ + sizeof(TriggerStep) + /* Single step in trigger program */ + nFrom + 1 /* Space for pStep->target.z */ + ); + if( pTrigger ){ + pStep = pTrigger->step_list = (TriggerStep *)&pTrigger[1]; + pStep->target.z = (char *)&pStep[1]; + pStep->target.n = nFrom; + memcpy((char *)pStep->target.z, zFrom, nFrom); + + pStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE); + pStep->pExprList = sqlite3ExprListDup(db, pList, EXPRDUP_REDUCE); + pStep->pSelect = sqlite3SelectDup(db, pSelect, EXPRDUP_REDUCE); + if( pWhen ){ + pWhen = sqlite3PExpr(pParse, TK_NOT, pWhen, 0, 0); + pTrigger->pWhen = sqlite3ExprDup(db, pWhen, EXPRDUP_REDUCE); + } + } + + /* Re-enable the lookaside buffer, if it was disabled earlier. */ + db->lookaside.bEnabled = enableLookaside; + + sqlite3ExprDelete(db, pWhere); + sqlite3ExprDelete(db, pWhen); + sqlite3ExprListDelete(db, pList); + sqlite3SelectDelete(db, pSelect); + if( db->mallocFailed==1 ){ + fkTriggerDelete(db, pTrigger); + return 0; + } + assert( pStep!=0 ); + + switch( action ){ + case OE_Restrict: + pStep->op = TK_SELECT; + break; + case OE_Cascade: + if( !pChanges ){ + pStep->op = TK_DELETE; + break; + } + default: + pStep->op = TK_UPDATE; + } + pStep->pTrig = pTrigger; + pTrigger->pSchema = pTab->pSchema; + pTrigger->pTabSchema = pTab->pSchema; + pFKey->apTrigger[iAction] = pTrigger; + pTrigger->op = (pChanges ? TK_UPDATE : TK_DELETE); + } + + return pTrigger; +} + +/* +** This function is called when deleting or updating a row to implement +** any required CASCADE, SET NULL or SET DEFAULT actions. +*/ +SQLITE_PRIVATE void sqlite3FkActions( + Parse *pParse, /* Parse context */ + Table *pTab, /* Table being updated or deleted from */ + ExprList *pChanges, /* Change-list for UPDATE, NULL for DELETE */ + int regOld, /* Address of array containing old row */ + int *aChange, /* Array indicating UPDATEd columns (or 0) */ + int bChngRowid /* True if rowid is UPDATEd */ +){ + /* If foreign-key support is enabled, iterate through all FKs that + ** refer to table pTab. If there is an action associated with the FK + ** for this operation (either update or delete), invoke the associated + ** trigger sub-program. */ + if( pParse->db->flags&SQLITE_ForeignKeys ){ + FKey *pFKey; /* Iterator variable */ + for(pFKey = sqlite3FkReferences(pTab); pFKey; pFKey=pFKey->pNextTo){ + if( aChange==0 || fkParentIsModified(pTab, pFKey, aChange, bChngRowid) ){ + Trigger *pAct = fkActionTrigger(pParse, pTab, pFKey, pChanges); + if( pAct ){ + sqlite3CodeRowTriggerDirect(pParse, pAct, pTab, regOld, OE_Abort, 0); + } + } + } + } +} + +#endif /* ifndef SQLITE_OMIT_TRIGGER */ + +/* +** Free all memory associated with foreign key definitions attached to +** table pTab. Remove the deleted foreign keys from the Schema.fkeyHash +** hash table. +*/ +SQLITE_PRIVATE void sqlite3FkDelete(sqlite3 *db, Table *pTab){ + FKey *pFKey; /* Iterator variable */ + FKey *pNext; /* Copy of pFKey->pNextFrom */ + + assert( db==0 || sqlite3SchemaMutexHeld(db, 0, pTab->pSchema) ); + for(pFKey=pTab->pFKey; pFKey; pFKey=pNext){ + + /* Remove the FK from the fkeyHash hash table. */ + if( !db || db->pnBytesFreed==0 ){ + if( pFKey->pPrevTo ){ + pFKey->pPrevTo->pNextTo = pFKey->pNextTo; + }else{ + void *p = (void *)pFKey->pNextTo; + const char *z = (p ? pFKey->pNextTo->zTo : pFKey->zTo); + sqlite3HashInsert(&pTab->pSchema->fkeyHash, z, sqlite3Strlen30(z), p); + } + if( pFKey->pNextTo ){ + pFKey->pNextTo->pPrevTo = pFKey->pPrevTo; + } + } + + /* EV: R-30323-21917 Each foreign key constraint in SQLite is + ** classified as either immediate or deferred. + */ + assert( pFKey->isDeferred==0 || pFKey->isDeferred==1 ); + + /* Delete any triggers created to implement actions for this FK. */ +#ifndef SQLITE_OMIT_TRIGGER + fkTriggerDelete(db, pFKey->apTrigger[0]); + fkTriggerDelete(db, pFKey->apTrigger[1]); +#endif + + pNext = pFKey->pNextFrom; + sqlite3DbFree(db, pFKey); + } +} +#endif /* ifndef SQLITE_OMIT_FOREIGN_KEY */ + +/************** End of fkey.c ************************************************/ +/************** Begin file insert.c ******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains C code routines that are called by the parser +** to handle INSERT statements in SQLite. +*/ + +/* +** Generate code that will +** +** (1) acquire a lock for table pTab then +** (2) open pTab as cursor iCur. +** +** If pTab is a WITHOUT ROWID table, then it is the PRIMARY KEY index +** for that table that is actually opened. +*/ +SQLITE_PRIVATE void sqlite3OpenTable( + Parse *pParse, /* Generate code into this VDBE */ + int iCur, /* The cursor number of the table */ + int iDb, /* The database index in sqlite3.aDb[] */ + Table *pTab, /* The table to be opened */ + int opcode /* OP_OpenRead or OP_OpenWrite */ +){ + Vdbe *v; + assert( !IsVirtual(pTab) ); + v = sqlite3GetVdbe(pParse); + assert( opcode==OP_OpenWrite || opcode==OP_OpenRead ); + sqlite3TableLock(pParse, iDb, pTab->tnum, + (opcode==OP_OpenWrite)?1:0, pTab->zName); + if( HasRowid(pTab) ){ + sqlite3VdbeAddOp4Int(v, opcode, iCur, pTab->tnum, iDb, pTab->nCol); + VdbeComment((v, "%s", pTab->zName)); + }else{ + Index *pPk = sqlite3PrimaryKeyIndex(pTab); + assert( pPk!=0 ); + assert( pPk->tnum=pTab->tnum ); + sqlite3VdbeAddOp3(v, opcode, iCur, pPk->tnum, iDb); + sqlite3VdbeSetP4KeyInfo(pParse, pPk); + VdbeComment((v, "%s", pTab->zName)); + } +} + +/* +** Return a pointer to the column affinity string associated with index +** pIdx. A column affinity string has one character for each column in +** the table, according to the affinity of the column: +** +** Character Column affinity +** ------------------------------ +** 'a' TEXT +** 'b' NONE +** 'c' NUMERIC +** 'd' INTEGER +** 'e' REAL +** +** An extra 'd' is appended to the end of the string to cover the +** rowid that appears as the last column in every index. +** +** Memory for the buffer containing the column index affinity string +** is managed along with the rest of the Index structure. It will be +** released when sqlite3DeleteIndex() is called. +*/ +SQLITE_PRIVATE const char *sqlite3IndexAffinityStr(Vdbe *v, Index *pIdx){ + if( !pIdx->zColAff ){ + /* The first time a column affinity string for a particular index is + ** required, it is allocated and populated here. It is then stored as + ** a member of the Index structure for subsequent use. + ** + ** The column affinity string will eventually be deleted by + ** sqliteDeleteIndex() when the Index structure itself is cleaned + ** up. + */ + int n; + Table *pTab = pIdx->pTable; + sqlite3 *db = sqlite3VdbeDb(v); + pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+1); + if( !pIdx->zColAff ){ + db->mallocFailed = 1; + return 0; + } + for(n=0; nnColumn; n++){ + i16 x = pIdx->aiColumn[n]; + pIdx->zColAff[n] = x<0 ? SQLITE_AFF_INTEGER : pTab->aCol[x].affinity; + } + pIdx->zColAff[n] = 0; + } + + return pIdx->zColAff; +} + +/* +** Compute the affinity string for table pTab, if it has not already been +** computed. As an optimization, omit trailing SQLITE_AFF_NONE affinities. +** +** If the affinity exists (if it is no entirely SQLITE_AFF_NONE values) and +** if iReg>0 then code an OP_Affinity opcode that will set the affinities +** for register iReg and following. Or if affinities exists and iReg==0, +** then just set the P4 operand of the previous opcode (which should be +** an OP_MakeRecord) to the affinity string. +** +** A column affinity string has one character per column: +** +** Character Column affinity +** ------------------------------ +** 'a' TEXT +** 'b' NONE +** 'c' NUMERIC +** 'd' INTEGER +** 'e' REAL +*/ +SQLITE_PRIVATE void sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg){ + int i; + char *zColAff = pTab->zColAff; + if( zColAff==0 ){ + sqlite3 *db = sqlite3VdbeDb(v); + zColAff = (char *)sqlite3DbMallocRaw(0, pTab->nCol+1); + if( !zColAff ){ + db->mallocFailed = 1; + return; + } + + for(i=0; inCol; i++){ + zColAff[i] = pTab->aCol[i].affinity; + } + do{ + zColAff[i--] = 0; + }while( i>=0 && zColAff[i]==SQLITE_AFF_NONE ); + pTab->zColAff = zColAff; + } + i = sqlite3Strlen30(zColAff); + if( i ){ + if( iReg ){ + sqlite3VdbeAddOp4(v, OP_Affinity, iReg, i, 0, zColAff, i); + }else{ + sqlite3VdbeChangeP4(v, -1, zColAff, i); + } + } +} + +/* +** Return non-zero if the table pTab in database iDb or any of its indices +** have been opened at any point in the VDBE program. This is used to see if +** a statement of the form "INSERT INTO SELECT ..." can +** run without using a temporary table for the results of the SELECT. +*/ +static int readsTable(Parse *p, int iDb, Table *pTab){ + Vdbe *v = sqlite3GetVdbe(p); + int i; + int iEnd = sqlite3VdbeCurrentAddr(v); +#ifndef SQLITE_OMIT_VIRTUALTABLE + VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; +#endif + + for(i=1; iopcode==OP_OpenRead && pOp->p3==iDb ){ + Index *pIndex; + int tnum = pOp->p2; + if( tnum==pTab->tnum ){ + return 1; + } + for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){ + if( tnum==pIndex->tnum ){ + return 1; + } + } + } +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pVTab ){ + assert( pOp->p4.pVtab!=0 ); + assert( pOp->p4type==P4_VTAB ); + return 1; + } +#endif + } + return 0; +} + +#ifndef SQLITE_OMIT_AUTOINCREMENT +/* +** Locate or create an AutoincInfo structure associated with table pTab +** which is in database iDb. Return the register number for the register +** that holds the maximum rowid. +** +** There is at most one AutoincInfo structure per table even if the +** same table is autoincremented multiple times due to inserts within +** triggers. A new AutoincInfo structure is created if this is the +** first use of table pTab. On 2nd and subsequent uses, the original +** AutoincInfo structure is used. +** +** Three memory locations are allocated: +** +** (1) Register to hold the name of the pTab table. +** (2) Register to hold the maximum ROWID of pTab. +** (3) Register to hold the rowid in sqlite_sequence of pTab +** +** The 2nd register is the one that is returned. That is all the +** insert routine needs to know about. +*/ +static int autoIncBegin( + Parse *pParse, /* Parsing context */ + int iDb, /* Index of the database holding pTab */ + Table *pTab /* The table we are writing to */ +){ + int memId = 0; /* Register holding maximum rowid */ + if( pTab->tabFlags & TF_Autoincrement ){ + Parse *pToplevel = sqlite3ParseToplevel(pParse); + AutoincInfo *pInfo; + + pInfo = pToplevel->pAinc; + while( pInfo && pInfo->pTab!=pTab ){ pInfo = pInfo->pNext; } + if( pInfo==0 ){ + pInfo = sqlite3DbMallocRaw(pParse->db, sizeof(*pInfo)); + if( pInfo==0 ) return 0; + pInfo->pNext = pToplevel->pAinc; + pToplevel->pAinc = pInfo; + pInfo->pTab = pTab; + pInfo->iDb = iDb; + pToplevel->nMem++; /* Register to hold name of table */ + pInfo->regCtr = ++pToplevel->nMem; /* Max rowid register */ + pToplevel->nMem++; /* Rowid in sqlite_sequence */ + } + memId = pInfo->regCtr; + } + return memId; +} + +/* +** This routine generates code that will initialize all of the +** register used by the autoincrement tracker. +*/ +SQLITE_PRIVATE void sqlite3AutoincrementBegin(Parse *pParse){ + AutoincInfo *p; /* Information about an AUTOINCREMENT */ + sqlite3 *db = pParse->db; /* The database connection */ + Db *pDb; /* Database only autoinc table */ + int memId; /* Register holding max rowid */ + int addr; /* A VDBE address */ + Vdbe *v = pParse->pVdbe; /* VDBE under construction */ + + /* This routine is never called during trigger-generation. It is + ** only called from the top-level */ + assert( pParse->pTriggerTab==0 ); + assert( pParse==sqlite3ParseToplevel(pParse) ); + + assert( v ); /* We failed long ago if this is not so */ + for(p = pParse->pAinc; p; p = p->pNext){ + pDb = &db->aDb[p->iDb]; + memId = p->regCtr; + assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) ); + sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenRead); + sqlite3VdbeAddOp3(v, OP_Null, 0, memId, memId+1); + addr = sqlite3VdbeCurrentAddr(v); + sqlite3VdbeAddOp4(v, OP_String8, 0, memId-1, 0, p->pTab->zName, 0); + sqlite3VdbeAddOp2(v, OP_Rewind, 0, addr+9); VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_Column, 0, 0, memId); + sqlite3VdbeAddOp3(v, OP_Ne, memId-1, addr+7, memId); VdbeCoverage(v); + sqlite3VdbeChangeP5(v, SQLITE_JUMPIFNULL); + sqlite3VdbeAddOp2(v, OP_Rowid, 0, memId+1); + sqlite3VdbeAddOp3(v, OP_Column, 0, 1, memId); + sqlite3VdbeAddOp2(v, OP_Goto, 0, addr+9); + sqlite3VdbeAddOp2(v, OP_Next, 0, addr+2); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Integer, 0, memId); + sqlite3VdbeAddOp0(v, OP_Close); + } +} + +/* +** Update the maximum rowid for an autoincrement calculation. +** +** This routine should be called when the top of the stack holds a +** new rowid that is about to be inserted. If that new rowid is +** larger than the maximum rowid in the memId memory cell, then the +** memory cell is updated. The stack is unchanged. +*/ +static void autoIncStep(Parse *pParse, int memId, int regRowid){ + if( memId>0 ){ + sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid); + } +} + +/* +** This routine generates the code needed to write autoincrement +** maximum rowid values back into the sqlite_sequence register. +** Every statement that might do an INSERT into an autoincrement +** table (either directly or through triggers) needs to call this +** routine just before the "exit" code. +*/ +SQLITE_PRIVATE void sqlite3AutoincrementEnd(Parse *pParse){ + AutoincInfo *p; + Vdbe *v = pParse->pVdbe; + sqlite3 *db = pParse->db; + + assert( v ); + for(p = pParse->pAinc; p; p = p->pNext){ + Db *pDb = &db->aDb[p->iDb]; + int j1; + int iRec; + int memId = p->regCtr; + + iRec = sqlite3GetTempReg(pParse); + assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) ); + sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenWrite); + j1 = sqlite3VdbeAddOp1(v, OP_NotNull, memId+1); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_NewRowid, 0, memId+1); + sqlite3VdbeJumpHere(v, j1); + sqlite3VdbeAddOp3(v, OP_MakeRecord, memId-1, 2, iRec); + sqlite3VdbeAddOp3(v, OP_Insert, 0, iRec, memId+1); + sqlite3VdbeChangeP5(v, OPFLAG_APPEND); + sqlite3VdbeAddOp0(v, OP_Close); + sqlite3ReleaseTempReg(pParse, iRec); + } +} +#else +/* +** If SQLITE_OMIT_AUTOINCREMENT is defined, then the three routines +** above are all no-ops +*/ +# define autoIncBegin(A,B,C) (0) +# define autoIncStep(A,B,C) +#endif /* SQLITE_OMIT_AUTOINCREMENT */ + + +/* Forward declaration */ +static int xferOptimization( + Parse *pParse, /* Parser context */ + Table *pDest, /* The table we are inserting into */ + Select *pSelect, /* A SELECT statement to use as the data source */ + int onError, /* How to handle constraint errors */ + int iDbDest /* The database of pDest */ +); + +/* +** This routine is called to handle SQL of the following forms: +** +** insert into TABLE (IDLIST) values(EXPRLIST) +** insert into TABLE (IDLIST) select +** +** The IDLIST following the table name is always optional. If omitted, +** then a list of all columns for the table is substituted. The IDLIST +** appears in the pColumn parameter. pColumn is NULL if IDLIST is omitted. +** +** The pList parameter holds EXPRLIST in the first form of the INSERT +** statement above, and pSelect is NULL. For the second form, pList is +** NULL and pSelect is a pointer to the select statement used to generate +** data for the insert. +** +** The code generated follows one of four templates. For a simple +** insert with data coming from a VALUES clause, the code executes +** once straight down through. Pseudo-code follows (we call this +** the "1st template"): +** +** open write cursor to
          and its indices +** put VALUES clause expressions into registers +** write the resulting record into
          +** cleanup +** +** The three remaining templates assume the statement is of the form +** +** INSERT INTO
          SELECT ... +** +** If the SELECT clause is of the restricted form "SELECT * FROM " - +** in other words if the SELECT pulls all columns from a single table +** and there is no WHERE or LIMIT or GROUP BY or ORDER BY clauses, and +** if and are distinct tables but have identical +** schemas, including all the same indices, then a special optimization +** is invoked that copies raw records from over to . +** See the xferOptimization() function for the implementation of this +** template. This is the 2nd template. +** +** open a write cursor to
          +** open read cursor on +** transfer all records in over to
          +** close cursors +** foreach index on
          +** open a write cursor on the
          index +** open a read cursor on the corresponding index +** transfer all records from the read to the write cursors +** close cursors +** end foreach +** +** The 3rd template is for when the second template does not apply +** and the SELECT clause does not read from
          at any time. +** The generated code follows this template: +** +** X <- A +** goto B +** A: setup for the SELECT +** loop over the rows in the SELECT +** load values into registers R..R+n +** yield X +** end loop +** cleanup after the SELECT +** end-coroutine X +** B: open write cursor to
          and its indices +** C: yield X, at EOF goto D +** insert the select result into
          from R..R+n +** goto C +** D: cleanup +** +** The 4th template is used if the insert statement takes its +** values from a SELECT but the data is being inserted into a table +** that is also read as part of the SELECT. In the third form, +** we have to use a intermediate table to store the results of +** the select. The template is like this: +** +** X <- A +** goto B +** A: setup for the SELECT +** loop over the tables in the SELECT +** load value into register R..R+n +** yield X +** end loop +** cleanup after the SELECT +** end co-routine R +** B: open temp table +** L: yield X, at EOF goto M +** insert row from R..R+n into temp table +** goto L +** M: open write cursor to
          and its indices +** rewind temp table +** C: loop over rows of intermediate table +** transfer values form intermediate table into
          +** end loop +** D: cleanup +*/ +SQLITE_PRIVATE void sqlite3Insert( + Parse *pParse, /* Parser context */ + SrcList *pTabList, /* Name of table into which we are inserting */ + Select *pSelect, /* A SELECT statement to use as the data source */ + IdList *pColumn, /* Column names corresponding to IDLIST. */ + int onError /* How to handle constraint errors */ +){ + sqlite3 *db; /* The main database structure */ + Table *pTab; /* The table to insert into. aka TABLE */ + char *zTab; /* Name of the table into which we are inserting */ + const char *zDb; /* Name of the database holding this table */ + int i, j, idx; /* Loop counters */ + Vdbe *v; /* Generate code into this virtual machine */ + Index *pIdx; /* For looping over indices of the table */ + int nColumn; /* Number of columns in the data */ + int nHidden = 0; /* Number of hidden columns if TABLE is virtual */ + int iDataCur = 0; /* VDBE cursor that is the main data repository */ + int iIdxCur = 0; /* First index cursor */ + int ipkColumn = -1; /* Column that is the INTEGER PRIMARY KEY */ + int endOfLoop; /* Label for the end of the insertion loop */ + int srcTab = 0; /* Data comes from this temporary cursor if >=0 */ + int addrInsTop = 0; /* Jump to label "D" */ + int addrCont = 0; /* Top of insert loop. Label "C" in templates 3 and 4 */ + SelectDest dest; /* Destination for SELECT on rhs of INSERT */ + int iDb; /* Index of database holding TABLE */ + Db *pDb; /* The database containing table being inserted into */ + u8 useTempTable = 0; /* Store SELECT results in intermediate table */ + u8 appendFlag = 0; /* True if the insert is likely to be an append */ + u8 withoutRowid; /* 0 for normal table. 1 for WITHOUT ROWID table */ + u8 bIdListInOrder = 1; /* True if IDLIST is in table order */ + ExprList *pList = 0; /* List of VALUES() to be inserted */ + + /* Register allocations */ + int regFromSelect = 0;/* Base register for data coming from SELECT */ + int regAutoinc = 0; /* Register holding the AUTOINCREMENT counter */ + int regRowCount = 0; /* Memory cell used for the row counter */ + int regIns; /* Block of regs holding rowid+data being inserted */ + int regRowid; /* registers holding insert rowid */ + int regData; /* register holding first column to insert */ + int *aRegIdx = 0; /* One register allocated to each index */ + +#ifndef SQLITE_OMIT_TRIGGER + int isView; /* True if attempting to insert into a view */ + Trigger *pTrigger; /* List of triggers on pTab, if required */ + int tmask; /* Mask of trigger times */ +#endif + + db = pParse->db; + memset(&dest, 0, sizeof(dest)); + if( pParse->nErr || db->mallocFailed ){ + goto insert_cleanup; + } + + /* If the Select object is really just a simple VALUES() list with a + ** single row values (the common case) then keep that one row of values + ** and go ahead and discard the Select object + */ + if( pSelect && (pSelect->selFlags & SF_Values)!=0 && pSelect->pPrior==0 ){ + pList = pSelect->pEList; + pSelect->pEList = 0; + sqlite3SelectDelete(db, pSelect); + pSelect = 0; + } + + /* Locate the table into which we will be inserting new information. + */ + assert( pTabList->nSrc==1 ); + zTab = pTabList->a[0].zName; + if( NEVER(zTab==0) ) goto insert_cleanup; + pTab = sqlite3SrcListLookup(pParse, pTabList); + if( pTab==0 ){ + goto insert_cleanup; + } + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + assert( iDbnDb ); + pDb = &db->aDb[iDb]; + zDb = pDb->zName; + if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0, zDb) ){ + goto insert_cleanup; + } + withoutRowid = !HasRowid(pTab); + + /* Figure out if we have any triggers and if the table being + ** inserted into is a view + */ +#ifndef SQLITE_OMIT_TRIGGER + pTrigger = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0, &tmask); + isView = pTab->pSelect!=0; +#else +# define pTrigger 0 +# define tmask 0 +# define isView 0 +#endif +#ifdef SQLITE_OMIT_VIEW +# undef isView +# define isView 0 +#endif + assert( (pTrigger && tmask) || (pTrigger==0 && tmask==0) ); + + /* If pTab is really a view, make sure it has been initialized. + ** ViewGetColumnNames() is a no-op if pTab is not a view. + */ + if( sqlite3ViewGetColumnNames(pParse, pTab) ){ + goto insert_cleanup; + } + + /* Cannot insert into a read-only table. + */ + if( sqlite3IsReadOnly(pParse, pTab, tmask) ){ + goto insert_cleanup; + } + + /* Allocate a VDBE + */ + v = sqlite3GetVdbe(pParse); + if( v==0 ) goto insert_cleanup; + if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); + sqlite3BeginWriteOperation(pParse, pSelect || pTrigger, iDb); + +#ifndef SQLITE_OMIT_XFER_OPT + /* If the statement is of the form + ** + ** INSERT INTO SELECT * FROM ; + ** + ** Then special optimizations can be applied that make the transfer + ** very fast and which reduce fragmentation of indices. + ** + ** This is the 2nd template. + */ + if( pColumn==0 && xferOptimization(pParse, pTab, pSelect, onError, iDb) ){ + assert( !pTrigger ); + assert( pList==0 ); + goto insert_end; + } +#endif /* SQLITE_OMIT_XFER_OPT */ + + /* If this is an AUTOINCREMENT table, look up the sequence number in the + ** sqlite_sequence table and store it in memory cell regAutoinc. + */ + regAutoinc = autoIncBegin(pParse, iDb, pTab); + + /* Allocate registers for holding the rowid of the new row, + ** the content of the new row, and the assemblied row record. + */ + regRowid = regIns = pParse->nMem+1; + pParse->nMem += pTab->nCol + 1; + if( IsVirtual(pTab) ){ + regRowid++; + pParse->nMem++; + } + regData = regRowid+1; + + /* If the INSERT statement included an IDLIST term, then make sure + ** all elements of the IDLIST really are columns of the table and + ** remember the column indices. + ** + ** If the table has an INTEGER PRIMARY KEY column and that column + ** is named in the IDLIST, then record in the ipkColumn variable + ** the index into IDLIST of the primary key column. ipkColumn is + ** the index of the primary key as it appears in IDLIST, not as + ** is appears in the original table. (The index of the INTEGER + ** PRIMARY KEY in the original table is pTab->iPKey.) + */ + if( pColumn ){ + for(i=0; inId; i++){ + pColumn->a[i].idx = -1; + } + for(i=0; inId; i++){ + for(j=0; jnCol; j++){ + if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){ + pColumn->a[i].idx = j; + if( i!=j ) bIdListInOrder = 0; + if( j==pTab->iPKey ){ + ipkColumn = i; assert( !withoutRowid ); + } + break; + } + } + if( j>=pTab->nCol ){ + if( sqlite3IsRowid(pColumn->a[i].zName) && !withoutRowid ){ + ipkColumn = i; + bIdListInOrder = 0; + }else{ + sqlite3ErrorMsg(pParse, "table %S has no column named %s", + pTabList, 0, pColumn->a[i].zName); + pParse->checkSchema = 1; + goto insert_cleanup; + } + } + } + } + + /* Figure out how many columns of data are supplied. If the data + ** is coming from a SELECT statement, then generate a co-routine that + ** produces a single row of the SELECT on each invocation. The + ** co-routine is the common header to the 3rd and 4th templates. + */ + if( pSelect ){ + /* Data is coming from a SELECT. Generate a co-routine to run the SELECT */ + int regYield; /* Register holding co-routine entry-point */ + int addrTop; /* Top of the co-routine */ + int rc; /* Result code */ + + regYield = ++pParse->nMem; + addrTop = sqlite3VdbeCurrentAddr(v) + 1; + sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, addrTop); + sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield); + dest.iSdst = bIdListInOrder ? regData : 0; + dest.nSdst = pTab->nCol; + rc = sqlite3Select(pParse, pSelect, &dest); + regFromSelect = dest.iSdst; + assert( pParse->nErr==0 || rc ); + if( rc || db->mallocFailed ) goto insert_cleanup; + sqlite3VdbeAddOp1(v, OP_EndCoroutine, regYield); + sqlite3VdbeJumpHere(v, addrTop - 1); /* label B: */ + assert( pSelect->pEList ); + nColumn = pSelect->pEList->nExpr; + + /* Set useTempTable to TRUE if the result of the SELECT statement + ** should be written into a temporary table (template 4). Set to + ** FALSE if each output row of the SELECT can be written directly into + ** the destination table (template 3). + ** + ** A temp table must be used if the table being updated is also one + ** of the tables being read by the SELECT statement. Also use a + ** temp table in the case of row triggers. + */ + if( pTrigger || readsTable(pParse, iDb, pTab) ){ + useTempTable = 1; + } + + if( useTempTable ){ + /* Invoke the coroutine to extract information from the SELECT + ** and add it to a transient table srcTab. The code generated + ** here is from the 4th template: + ** + ** B: open temp table + ** L: yield X, goto M at EOF + ** insert row from R..R+n into temp table + ** goto L + ** M: ... + */ + int regRec; /* Register to hold packed record */ + int regTempRowid; /* Register to hold temp table ROWID */ + int addrL; /* Label "L" */ + + srcTab = pParse->nTab++; + regRec = sqlite3GetTempReg(pParse); + regTempRowid = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn); + addrL = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec); + sqlite3VdbeAddOp2(v, OP_NewRowid, srcTab, regTempRowid); + sqlite3VdbeAddOp3(v, OP_Insert, srcTab, regRec, regTempRowid); + sqlite3VdbeAddOp2(v, OP_Goto, 0, addrL); + sqlite3VdbeJumpHere(v, addrL); + sqlite3ReleaseTempReg(pParse, regRec); + sqlite3ReleaseTempReg(pParse, regTempRowid); + } + }else{ + /* This is the case if the data for the INSERT is coming from a VALUES + ** clause + */ + NameContext sNC; + memset(&sNC, 0, sizeof(sNC)); + sNC.pParse = pParse; + srcTab = -1; + assert( useTempTable==0 ); + nColumn = pList ? pList->nExpr : 0; + for(i=0; ia[i].pExpr) ){ + goto insert_cleanup; + } + } + } + + /* If there is no IDLIST term but the table has an integer primary + ** key, the set the ipkColumn variable to the integer primary key + ** column index in the original table definition. + */ + if( pColumn==0 && nColumn>0 ){ + ipkColumn = pTab->iPKey; + } + + /* Make sure the number of columns in the source data matches the number + ** of columns to be inserted into the table. + */ + if( IsVirtual(pTab) ){ + for(i=0; inCol; i++){ + nHidden += (IsHiddenColumn(&pTab->aCol[i]) ? 1 : 0); + } + } + if( pColumn==0 && nColumn && nColumn!=(pTab->nCol-nHidden) ){ + sqlite3ErrorMsg(pParse, + "table %S has %d columns but %d values were supplied", + pTabList, 0, pTab->nCol-nHidden, nColumn); + goto insert_cleanup; + } + if( pColumn!=0 && nColumn!=pColumn->nId ){ + sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId); + goto insert_cleanup; + } + + /* Initialize the count of rows to be inserted + */ + if( db->flags & SQLITE_CountRows ){ + regRowCount = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount); + } + + /* If this is not a view, open the table and and all indices */ + if( !isView ){ + int nIdx; + nIdx = sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, -1, 0, + &iDataCur, &iIdxCur); + aRegIdx = sqlite3DbMallocRaw(db, sizeof(int)*(nIdx+1)); + if( aRegIdx==0 ){ + goto insert_cleanup; + } + for(i=0; inMem; + } + } + + /* This is the top of the main insertion loop */ + if( useTempTable ){ + /* This block codes the top of loop only. The complete loop is the + ** following pseudocode (template 4): + ** + ** rewind temp table, if empty goto D + ** C: loop over rows of intermediate table + ** transfer values form intermediate table into
          + ** end loop + ** D: ... + */ + addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab); VdbeCoverage(v); + addrCont = sqlite3VdbeCurrentAddr(v); + }else if( pSelect ){ + /* This block codes the top of loop only. The complete loop is the + ** following pseudocode (template 3): + ** + ** C: yield X, at EOF goto D + ** insert the select result into
          from R..R+n + ** goto C + ** D: ... + */ + addrInsTop = addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); + VdbeCoverage(v); + } + + /* Run the BEFORE and INSTEAD OF triggers, if there are any + */ + endOfLoop = sqlite3VdbeMakeLabel(v); + if( tmask & TRIGGER_BEFORE ){ + int regCols = sqlite3GetTempRange(pParse, pTab->nCol+1); + + /* build the NEW.* reference row. Note that if there is an INTEGER + ** PRIMARY KEY into which a NULL is being inserted, that NULL will be + ** translated into a unique ID for the row. But on a BEFORE trigger, + ** we do not know what the unique ID will be (because the insert has + ** not happened yet) so we substitute a rowid of -1 + */ + if( ipkColumn<0 ){ + sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols); + }else{ + int j1; + assert( !withoutRowid ); + if( useTempTable ){ + sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regCols); + }else{ + assert( pSelect==0 ); /* Otherwise useTempTable is true */ + sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regCols); + } + j1 = sqlite3VdbeAddOp1(v, OP_NotNull, regCols); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols); + sqlite3VdbeJumpHere(v, j1); + sqlite3VdbeAddOp1(v, OP_MustBeInt, regCols); VdbeCoverage(v); + } + + /* Cannot have triggers on a virtual table. If it were possible, + ** this block would have to account for hidden column. + */ + assert( !IsVirtual(pTab) ); + + /* Create the new column data + */ + for(i=0; inCol; i++){ + if( pColumn==0 ){ + j = i; + }else{ + for(j=0; jnId; j++){ + if( pColumn->a[j].idx==i ) break; + } + } + if( (!useTempTable && !pList) || (pColumn && j>=pColumn->nId) ){ + sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regCols+i+1); + }else if( useTempTable ){ + sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, regCols+i+1); + }else{ + assert( pSelect==0 ); /* Otherwise useTempTable is true */ + sqlite3ExprCodeAndCache(pParse, pList->a[j].pExpr, regCols+i+1); + } + } + + /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger, + ** do not attempt any conversions before assembling the record. + ** If this is a real table, attempt conversions as required by the + ** table column affinities. + */ + if( !isView ){ + sqlite3TableAffinity(v, pTab, regCols+1); + } + + /* Fire BEFORE or INSTEAD OF triggers */ + sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE, + pTab, regCols-pTab->nCol-1, onError, endOfLoop); + + sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol+1); + } + + /* Compute the content of the next row to insert into a range of + ** registers beginning at regIns. + */ + if( !isView ){ + if( IsVirtual(pTab) ){ + /* The row that the VUpdate opcode will delete: none */ + sqlite3VdbeAddOp2(v, OP_Null, 0, regIns); + } + if( ipkColumn>=0 ){ + if( useTempTable ){ + sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regRowid); + }else if( pSelect ){ + sqlite3VdbeAddOp2(v, OP_Copy, regFromSelect+ipkColumn, regRowid); + }else{ + VdbeOp *pOp; + sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regRowid); + pOp = sqlite3VdbeGetOp(v, -1); + if( ALWAYS(pOp) && pOp->opcode==OP_Null && !IsVirtual(pTab) ){ + appendFlag = 1; + pOp->opcode = OP_NewRowid; + pOp->p1 = iDataCur; + pOp->p2 = regRowid; + pOp->p3 = regAutoinc; + } + } + /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid + ** to generate a unique primary key value. + */ + if( !appendFlag ){ + int j1; + if( !IsVirtual(pTab) ){ + j1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid); VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc); + sqlite3VdbeJumpHere(v, j1); + }else{ + j1 = sqlite3VdbeCurrentAddr(v); + sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, j1+2); VdbeCoverage(v); + } + sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid); VdbeCoverage(v); + } + }else if( IsVirtual(pTab) || withoutRowid ){ + sqlite3VdbeAddOp2(v, OP_Null, 0, regRowid); + }else{ + sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc); + appendFlag = 1; + } + autoIncStep(pParse, regAutoinc, regRowid); + + /* Compute data for all columns of the new entry, beginning + ** with the first column. + */ + nHidden = 0; + for(i=0; inCol; i++){ + int iRegStore = regRowid+1+i; + if( i==pTab->iPKey ){ + /* The value of the INTEGER PRIMARY KEY column is always a NULL. + ** Whenever this column is read, the rowid will be substituted + ** in its place. Hence, fill this column with a NULL to avoid + ** taking up data space with information that will never be used. + ** As there may be shallow copies of this value, make it a soft-NULL */ + sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore); + continue; + } + if( pColumn==0 ){ + if( IsHiddenColumn(&pTab->aCol[i]) ){ + assert( IsVirtual(pTab) ); + j = -1; + nHidden++; + }else{ + j = i - nHidden; + } + }else{ + for(j=0; jnId; j++){ + if( pColumn->a[j].idx==i ) break; + } + } + if( j<0 || nColumn==0 || (pColumn && j>=pColumn->nId) ){ + sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore); + }else if( useTempTable ){ + sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, iRegStore); + }else if( pSelect ){ + if( regFromSelect!=regData ){ + sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+j, iRegStore); + } + }else{ + sqlite3ExprCode(pParse, pList->a[j].pExpr, iRegStore); + } + } + + /* Generate code to check constraints and generate index keys and + ** do the insertion. + */ +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( IsVirtual(pTab) ){ + const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); + sqlite3VtabMakeWritable(pParse, pTab); + sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns, pVTab, P4_VTAB); + sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError); + sqlite3MayAbort(pParse); + }else +#endif + { + int isReplace; /* Set to true if constraints may cause a replace */ + sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur, + regIns, 0, ipkColumn>=0, onError, endOfLoop, &isReplace + ); + sqlite3FkCheck(pParse, pTab, 0, regIns, 0, 0); + sqlite3CompleteInsertion(pParse, pTab, iDataCur, iIdxCur, + regIns, aRegIdx, 0, appendFlag, isReplace==0); + } + } + + /* Update the count of rows that are inserted + */ + if( (db->flags & SQLITE_CountRows)!=0 ){ + sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1); + } + + if( pTrigger ){ + /* Code AFTER triggers */ + sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_AFTER, + pTab, regData-2-pTab->nCol, onError, endOfLoop); + } + + /* The bottom of the main insertion loop, if the data source + ** is a SELECT statement. + */ + sqlite3VdbeResolveLabel(v, endOfLoop); + if( useTempTable ){ + sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont); VdbeCoverage(v); + sqlite3VdbeJumpHere(v, addrInsTop); + sqlite3VdbeAddOp1(v, OP_Close, srcTab); + }else if( pSelect ){ + sqlite3VdbeAddOp2(v, OP_Goto, 0, addrCont); + sqlite3VdbeJumpHere(v, addrInsTop); + } + + if( !IsVirtual(pTab) && !isView ){ + /* Close all tables opened */ + if( iDataCurpIndex; pIdx; pIdx=pIdx->pNext, idx++){ + sqlite3VdbeAddOp1(v, OP_Close, idx+iIdxCur); + } + } + +insert_end: + /* Update the sqlite_sequence table by storing the content of the + ** maximum rowid counter values recorded while inserting into + ** autoincrement tables. + */ + if( pParse->nested==0 && pParse->pTriggerTab==0 ){ + sqlite3AutoincrementEnd(pParse); + } + + /* + ** Return the number of rows inserted. If this routine is + ** generating code because of a call to sqlite3NestedParse(), do not + ** invoke the callback function. + */ + if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){ + sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1); + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows inserted", SQLITE_STATIC); + } + +insert_cleanup: + sqlite3SrcListDelete(db, pTabList); + sqlite3ExprListDelete(db, pList); + sqlite3SelectDelete(db, pSelect); + sqlite3IdListDelete(db, pColumn); + sqlite3DbFree(db, aRegIdx); +} + +/* Make sure "isView" and other macros defined above are undefined. Otherwise +** thely may interfere with compilation of other functions in this file +** (or in another file, if this file becomes part of the amalgamation). */ +#ifdef isView + #undef isView +#endif +#ifdef pTrigger + #undef pTrigger +#endif +#ifdef tmask + #undef tmask +#endif + +/* +** Generate code to do constraint checks prior to an INSERT or an UPDATE +** on table pTab. +** +** The regNewData parameter is the first register in a range that contains +** the data to be inserted or the data after the update. There will be +** pTab->nCol+1 registers in this range. The first register (the one +** that regNewData points to) will contain the new rowid, or NULL in the +** case of a WITHOUT ROWID table. The second register in the range will +** contain the content of the first table column. The third register will +** contain the content of the second table column. And so forth. +** +** The regOldData parameter is similar to regNewData except that it contains +** the data prior to an UPDATE rather than afterwards. regOldData is zero +** for an INSERT. This routine can distinguish between UPDATE and INSERT by +** checking regOldData for zero. +** +** For an UPDATE, the pkChng boolean is true if the true primary key (the +** rowid for a normal table or the PRIMARY KEY for a WITHOUT ROWID table) +** might be modified by the UPDATE. If pkChng is false, then the key of +** the iDataCur content table is guaranteed to be unchanged by the UPDATE. +** +** For an INSERT, the pkChng boolean indicates whether or not the rowid +** was explicitly specified as part of the INSERT statement. If pkChng +** is zero, it means that the either rowid is computed automatically or +** that the table is a WITHOUT ROWID table and has no rowid. On an INSERT, +** pkChng will only be true if the INSERT statement provides an integer +** value for either the rowid column or its INTEGER PRIMARY KEY alias. +** +** The code generated by this routine will store new index entries into +** registers identified by aRegIdx[]. No index entry is created for +** indices where aRegIdx[i]==0. The order of indices in aRegIdx[] is +** the same as the order of indices on the linked list of indices +** at pTab->pIndex. +** +** The caller must have already opened writeable cursors on the main +** table and all applicable indices (that is to say, all indices for which +** aRegIdx[] is not zero). iDataCur is the cursor for the main table when +** inserting or updating a rowid table, or the cursor for the PRIMARY KEY +** index when operating on a WITHOUT ROWID table. iIdxCur is the cursor +** for the first index in the pTab->pIndex list. Cursors for other indices +** are at iIdxCur+N for the N-th element of the pTab->pIndex list. +** +** This routine also generates code to check constraints. NOT NULL, +** CHECK, and UNIQUE constraints are all checked. If a constraint fails, +** then the appropriate action is performed. There are five possible +** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE. +** +** Constraint type Action What Happens +** --------------- ---------- ---------------------------------------- +** any ROLLBACK The current transaction is rolled back and +** sqlite3_step() returns immediately with a +** return code of SQLITE_CONSTRAINT. +** +** any ABORT Back out changes from the current command +** only (do not do a complete rollback) then +** cause sqlite3_step() to return immediately +** with SQLITE_CONSTRAINT. +** +** any FAIL Sqlite3_step() returns immediately with a +** return code of SQLITE_CONSTRAINT. The +** transaction is not rolled back and any +** changes to prior rows are retained. +** +** any IGNORE The attempt in insert or update the current +** row is skipped, without throwing an error. +** Processing continues with the next row. +** (There is an immediate jump to ignoreDest.) +** +** NOT NULL REPLACE The NULL value is replace by the default +** value for that column. If the default value +** is NULL, the action is the same as ABORT. +** +** UNIQUE REPLACE The other row that conflicts with the row +** being inserted is removed. +** +** CHECK REPLACE Illegal. The results in an exception. +** +** Which action to take is determined by the overrideError parameter. +** Or if overrideError==OE_Default, then the pParse->onError parameter +** is used. Or if pParse->onError==OE_Default then the onError value +** for the constraint is used. +*/ +SQLITE_PRIVATE void sqlite3GenerateConstraintChecks( + Parse *pParse, /* The parser context */ + Table *pTab, /* The table being inserted or updated */ + int *aRegIdx, /* Use register aRegIdx[i] for index i. 0 for unused */ + int iDataCur, /* Canonical data cursor (main table or PK index) */ + int iIdxCur, /* First index cursor */ + int regNewData, /* First register in a range holding values to insert */ + int regOldData, /* Previous content. 0 for INSERTs */ + u8 pkChng, /* Non-zero if the rowid or PRIMARY KEY changed */ + u8 overrideError, /* Override onError to this if not OE_Default */ + int ignoreDest, /* Jump to this label on an OE_Ignore resolution */ + int *pbMayReplace /* OUT: Set to true if constraint may cause a replace */ +){ + Vdbe *v; /* VDBE under constrution */ + Index *pIdx; /* Pointer to one of the indices */ + Index *pPk = 0; /* The PRIMARY KEY index */ + sqlite3 *db; /* Database connection */ + int i; /* loop counter */ + int ix; /* Index loop counter */ + int nCol; /* Number of columns */ + int onError; /* Conflict resolution strategy */ + int j1; /* Addresss of jump instruction */ + int seenReplace = 0; /* True if REPLACE is used to resolve INT PK conflict */ + int nPkField; /* Number of fields in PRIMARY KEY. 1 for ROWID tables */ + int ipkTop = 0; /* Top of the rowid change constraint check */ + int ipkBottom = 0; /* Bottom of the rowid change constraint check */ + u8 isUpdate; /* True if this is an UPDATE operation */ + u8 bAffinityDone = 0; /* True if the OP_Affinity operation has been run */ + int regRowid = -1; /* Register holding ROWID value */ + + isUpdate = regOldData!=0; + db = pParse->db; + v = sqlite3GetVdbe(pParse); + assert( v!=0 ); + assert( pTab->pSelect==0 ); /* This table is not a VIEW */ + nCol = pTab->nCol; + + /* pPk is the PRIMARY KEY index for WITHOUT ROWID tables and NULL for + ** normal rowid tables. nPkField is the number of key fields in the + ** pPk index or 1 for a rowid table. In other words, nPkField is the + ** number of fields in the true primary key of the table. */ + if( HasRowid(pTab) ){ + pPk = 0; + nPkField = 1; + }else{ + pPk = sqlite3PrimaryKeyIndex(pTab); + nPkField = pPk->nKeyCol; + } + + /* Record that this module has started */ + VdbeModuleComment((v, "BEGIN: GenCnstCks(%d,%d,%d,%d,%d)", + iDataCur, iIdxCur, regNewData, regOldData, pkChng)); + + /* Test all NOT NULL constraints. + */ + for(i=0; iiPKey ){ + continue; + } + onError = pTab->aCol[i].notNull; + if( onError==OE_None ) continue; + if( overrideError!=OE_Default ){ + onError = overrideError; + }else if( onError==OE_Default ){ + onError = OE_Abort; + } + if( onError==OE_Replace && pTab->aCol[i].pDflt==0 ){ + onError = OE_Abort; + } + assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail + || onError==OE_Ignore || onError==OE_Replace ); + switch( onError ){ + case OE_Abort: + sqlite3MayAbort(pParse); + /* Fall through */ + case OE_Rollback: + case OE_Fail: { + char *zMsg = sqlite3MPrintf(db, "%s.%s", pTab->zName, + pTab->aCol[i].zName); + sqlite3VdbeAddOp4(v, OP_HaltIfNull, SQLITE_CONSTRAINT_NOTNULL, onError, + regNewData+1+i, zMsg, P4_DYNAMIC); + sqlite3VdbeChangeP5(v, P5_ConstraintNotNull); + VdbeCoverage(v); + break; + } + case OE_Ignore: { + sqlite3VdbeAddOp2(v, OP_IsNull, regNewData+1+i, ignoreDest); + VdbeCoverage(v); + break; + } + default: { + assert( onError==OE_Replace ); + j1 = sqlite3VdbeAddOp1(v, OP_NotNull, regNewData+1+i); VdbeCoverage(v); + sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regNewData+1+i); + sqlite3VdbeJumpHere(v, j1); + break; + } + } + } + + /* Test all CHECK constraints + */ +#ifndef SQLITE_OMIT_CHECK + if( pTab->pCheck && (db->flags & SQLITE_IgnoreChecks)==0 ){ + ExprList *pCheck = pTab->pCheck; + pParse->ckBase = regNewData+1; + onError = overrideError!=OE_Default ? overrideError : OE_Abort; + for(i=0; inExpr; i++){ + int allOk = sqlite3VdbeMakeLabel(v); + sqlite3ExprIfTrue(pParse, pCheck->a[i].pExpr, allOk, SQLITE_JUMPIFNULL); + if( onError==OE_Ignore ){ + sqlite3VdbeAddOp2(v, OP_Goto, 0, ignoreDest); + }else{ + char *zName = pCheck->a[i].zName; + if( zName==0 ) zName = pTab->zName; + if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-15569-63625 */ + sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_CHECK, + onError, zName, P4_TRANSIENT, + P5_ConstraintCheck); + } + sqlite3VdbeResolveLabel(v, allOk); + } + } +#endif /* !defined(SQLITE_OMIT_CHECK) */ + + /* If rowid is changing, make sure the new rowid does not previously + ** exist in the table. + */ + if( pkChng && pPk==0 ){ + int addrRowidOk = sqlite3VdbeMakeLabel(v); + + /* Figure out what action to take in case of a rowid collision */ + onError = pTab->keyConf; + if( overrideError!=OE_Default ){ + onError = overrideError; + }else if( onError==OE_Default ){ + onError = OE_Abort; + } + + if( isUpdate ){ + /* pkChng!=0 does not mean that the rowid has change, only that + ** it might have changed. Skip the conflict logic below if the rowid + ** is unchanged. */ + sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData); + sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); + VdbeCoverage(v); + } + + /* If the response to a rowid conflict is REPLACE but the response + ** to some other UNIQUE constraint is FAIL or IGNORE, then we need + ** to defer the running of the rowid conflict checking until after + ** the UNIQUE constraints have run. + */ + if( onError==OE_Replace && overrideError!=OE_Replace ){ + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + if( pIdx->onError==OE_Ignore || pIdx->onError==OE_Fail ){ + ipkTop = sqlite3VdbeAddOp0(v, OP_Goto); + break; + } + } + } + + /* Check to see if the new rowid already exists in the table. Skip + ** the following conflict logic if it does not. */ + sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRowidOk, regNewData); + VdbeCoverage(v); + + /* Generate code that deals with a rowid collision */ + switch( onError ){ + default: { + onError = OE_Abort; + /* Fall thru into the next case */ + } + case OE_Rollback: + case OE_Abort: + case OE_Fail: { + sqlite3RowidConstraint(pParse, onError, pTab); + break; + } + case OE_Replace: { + /* If there are DELETE triggers on this table and the + ** recursive-triggers flag is set, call GenerateRowDelete() to + ** remove the conflicting row from the table. This will fire + ** the triggers and remove both the table and index b-tree entries. + ** + ** Otherwise, if there are no triggers or the recursive-triggers + ** flag is not set, but the table has one or more indexes, call + ** GenerateRowIndexDelete(). This removes the index b-tree entries + ** only. The table b-tree entry will be replaced by the new entry + ** when it is inserted. + ** + ** If either GenerateRowDelete() or GenerateRowIndexDelete() is called, + ** also invoke MultiWrite() to indicate that this VDBE may require + ** statement rollback (if the statement is aborted after the delete + ** takes place). Earlier versions called sqlite3MultiWrite() regardless, + ** but being more selective here allows statements like: + ** + ** REPLACE INTO t(rowid) VALUES($newrowid) + ** + ** to run without a statement journal if there are no indexes on the + ** table. + */ + Trigger *pTrigger = 0; + if( db->flags&SQLITE_RecTriggers ){ + pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0); + } + if( pTrigger || sqlite3FkRequired(pParse, pTab, 0, 0) ){ + sqlite3MultiWrite(pParse); + sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, + regNewData, 1, 0, OE_Replace, 1); + }else if( pTab->pIndex ){ + sqlite3MultiWrite(pParse); + sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur, 0); + } + seenReplace = 1; + break; + } + case OE_Ignore: { + /*assert( seenReplace==0 );*/ + sqlite3VdbeAddOp2(v, OP_Goto, 0, ignoreDest); + break; + } + } + sqlite3VdbeResolveLabel(v, addrRowidOk); + if( ipkTop ){ + ipkBottom = sqlite3VdbeAddOp0(v, OP_Goto); + sqlite3VdbeJumpHere(v, ipkTop); + } + } + + /* Test all UNIQUE constraints by creating entries for each UNIQUE + ** index and making sure that duplicate entries do not already exist. + ** Compute the revised record entries for indices as we go. + ** + ** This loop also handles the case of the PRIMARY KEY index for a + ** WITHOUT ROWID table. + */ + for(ix=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, ix++){ + int regIdx; /* Range of registers hold conent for pIdx */ + int regR; /* Range of registers holding conflicting PK */ + int iThisCur; /* Cursor for this UNIQUE index */ + int addrUniqueOk; /* Jump here if the UNIQUE constraint is satisfied */ + + if( aRegIdx[ix]==0 ) continue; /* Skip indices that do not change */ + if( bAffinityDone==0 ){ + sqlite3TableAffinity(v, pTab, regNewData+1); + bAffinityDone = 1; + } + iThisCur = iIdxCur+ix; + addrUniqueOk = sqlite3VdbeMakeLabel(v); + + /* Skip partial indices for which the WHERE clause is not true */ + if( pIdx->pPartIdxWhere ){ + sqlite3VdbeAddOp2(v, OP_Null, 0, aRegIdx[ix]); + pParse->ckBase = regNewData+1; + sqlite3ExprIfFalse(pParse, pIdx->pPartIdxWhere, addrUniqueOk, + SQLITE_JUMPIFNULL); + pParse->ckBase = 0; + } + + /* Create a record for this index entry as it should appear after + ** the insert or update. Store that record in the aRegIdx[ix] register + */ + regIdx = sqlite3GetTempRange(pParse, pIdx->nColumn); + for(i=0; inColumn; i++){ + int iField = pIdx->aiColumn[i]; + int x; + if( iField<0 || iField==pTab->iPKey ){ + if( regRowid==regIdx+i ) continue; /* ROWID already in regIdx+i */ + x = regNewData; + regRowid = pIdx->pPartIdxWhere ? -1 : regIdx+i; + }else{ + x = iField + regNewData + 1; + } + sqlite3VdbeAddOp2(v, OP_SCopy, x, regIdx+i); + VdbeComment((v, "%s", iField<0 ? "rowid" : pTab->aCol[iField].zName)); + } + sqlite3VdbeAddOp3(v, OP_MakeRecord, regIdx, pIdx->nColumn, aRegIdx[ix]); + VdbeComment((v, "for %s", pIdx->zName)); + sqlite3ExprCacheAffinityChange(pParse, regIdx, pIdx->nColumn); + + /* In an UPDATE operation, if this index is the PRIMARY KEY index + ** of a WITHOUT ROWID table and there has been no change the + ** primary key, then no collision is possible. The collision detection + ** logic below can all be skipped. */ + if( isUpdate && pPk==pIdx && pkChng==0 ){ + sqlite3VdbeResolveLabel(v, addrUniqueOk); + continue; + } + + /* Find out what action to take in case there is a uniqueness conflict */ + onError = pIdx->onError; + if( onError==OE_None ){ + sqlite3ReleaseTempRange(pParse, regIdx, pIdx->nColumn); + sqlite3VdbeResolveLabel(v, addrUniqueOk); + continue; /* pIdx is not a UNIQUE index */ + } + if( overrideError!=OE_Default ){ + onError = overrideError; + }else if( onError==OE_Default ){ + onError = OE_Abort; + } + + /* Check to see if the new index entry will be unique */ + sqlite3VdbeAddOp4Int(v, OP_NoConflict, iThisCur, addrUniqueOk, + regIdx, pIdx->nKeyCol); VdbeCoverage(v); + + /* Generate code to handle collisions */ + regR = (pIdx==pPk) ? regIdx : sqlite3GetTempRange(pParse, nPkField); + if( isUpdate || onError==OE_Replace ){ + if( HasRowid(pTab) ){ + sqlite3VdbeAddOp2(v, OP_IdxRowid, iThisCur, regR); + /* Conflict only if the rowid of the existing index entry + ** is different from old-rowid */ + if( isUpdate ){ + sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData); + sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); + VdbeCoverage(v); + } + }else{ + int x; + /* Extract the PRIMARY KEY from the end of the index entry and + ** store it in registers regR..regR+nPk-1 */ + if( pIdx!=pPk ){ + for(i=0; inKeyCol; i++){ + x = sqlite3ColumnOfIndex(pIdx, pPk->aiColumn[i]); + sqlite3VdbeAddOp3(v, OP_Column, iThisCur, x, regR+i); + VdbeComment((v, "%s.%s", pTab->zName, + pTab->aCol[pPk->aiColumn[i]].zName)); + } + } + if( isUpdate ){ + /* If currently processing the PRIMARY KEY of a WITHOUT ROWID + ** table, only conflict if the new PRIMARY KEY values are actually + ** different from the old. + ** + ** For a UNIQUE index, only conflict if the PRIMARY KEY values + ** of the matched index row are different from the original PRIMARY + ** KEY values of this row before the update. */ + int addrJump = sqlite3VdbeCurrentAddr(v)+pPk->nKeyCol; + int op = OP_Ne; + int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR); + + for(i=0; inKeyCol; i++){ + char *p4 = (char*)sqlite3LocateCollSeq(pParse, pPk->azColl[i]); + x = pPk->aiColumn[i]; + if( i==(pPk->nKeyCol-1) ){ + addrJump = addrUniqueOk; + op = OP_Eq; + } + sqlite3VdbeAddOp4(v, op, + regOldData+1+x, addrJump, regCmp+i, p4, P4_COLLSEQ + ); + sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); + VdbeCoverageIf(v, op==OP_Eq); + VdbeCoverageIf(v, op==OP_Ne); + } + } + } + } + + /* Generate code that executes if the new index entry is not unique */ + assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail + || onError==OE_Ignore || onError==OE_Replace ); + switch( onError ){ + case OE_Rollback: + case OE_Abort: + case OE_Fail: { + sqlite3UniqueConstraint(pParse, onError, pIdx); + break; + } + case OE_Ignore: { + sqlite3VdbeAddOp2(v, OP_Goto, 0, ignoreDest); + break; + } + default: { + Trigger *pTrigger = 0; + assert( onError==OE_Replace ); + sqlite3MultiWrite(pParse); + if( db->flags&SQLITE_RecTriggers ){ + pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0); + } + sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, + regR, nPkField, 0, OE_Replace, pIdx==pPk); + seenReplace = 1; + break; + } + } + sqlite3VdbeResolveLabel(v, addrUniqueOk); + sqlite3ReleaseTempRange(pParse, regIdx, pIdx->nColumn); + if( regR!=regIdx ) sqlite3ReleaseTempRange(pParse, regR, nPkField); + } + if( ipkTop ){ + sqlite3VdbeAddOp2(v, OP_Goto, 0, ipkTop+1); + sqlite3VdbeJumpHere(v, ipkBottom); + } + + *pbMayReplace = seenReplace; + VdbeModuleComment((v, "END: GenCnstCks(%d)", seenReplace)); +} + +/* +** This routine generates code to finish the INSERT or UPDATE operation +** that was started by a prior call to sqlite3GenerateConstraintChecks. +** A consecutive range of registers starting at regNewData contains the +** rowid and the content to be inserted. +** +** The arguments to this routine should be the same as the first six +** arguments to sqlite3GenerateConstraintChecks. +*/ +SQLITE_PRIVATE void sqlite3CompleteInsertion( + Parse *pParse, /* The parser context */ + Table *pTab, /* the table into which we are inserting */ + int iDataCur, /* Cursor of the canonical data source */ + int iIdxCur, /* First index cursor */ + int regNewData, /* Range of content */ + int *aRegIdx, /* Register used by each index. 0 for unused indices */ + int isUpdate, /* True for UPDATE, False for INSERT */ + int appendBias, /* True if this is likely to be an append */ + int useSeekResult /* True to set the USESEEKRESULT flag on OP_[Idx]Insert */ +){ + Vdbe *v; /* Prepared statements under construction */ + Index *pIdx; /* An index being inserted or updated */ + u8 pik_flags; /* flag values passed to the btree insert */ + int regData; /* Content registers (after the rowid) */ + int regRec; /* Register holding assemblied record for the table */ + int i; /* Loop counter */ + u8 bAffinityDone = 0; /* True if OP_Affinity has been run already */ + + v = sqlite3GetVdbe(pParse); + assert( v!=0 ); + assert( pTab->pSelect==0 ); /* This table is not a VIEW */ + for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){ + if( aRegIdx[i]==0 ) continue; + bAffinityDone = 1; + if( pIdx->pPartIdxWhere ){ + sqlite3VdbeAddOp2(v, OP_IsNull, aRegIdx[i], sqlite3VdbeCurrentAddr(v)+2); + VdbeCoverage(v); + } + sqlite3VdbeAddOp2(v, OP_IdxInsert, iIdxCur+i, aRegIdx[i]); + pik_flags = 0; + if( useSeekResult ) pik_flags = OPFLAG_USESEEKRESULT; + if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){ + assert( pParse->nested==0 ); + pik_flags |= OPFLAG_NCHANGE; + } + if( pik_flags ) sqlite3VdbeChangeP5(v, pik_flags); + } + if( !HasRowid(pTab) ) return; + regData = regNewData + 1; + regRec = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp3(v, OP_MakeRecord, regData, pTab->nCol, regRec); + if( !bAffinityDone ) sqlite3TableAffinity(v, pTab, 0); + sqlite3ExprCacheAffinityChange(pParse, regData, pTab->nCol); + if( pParse->nested ){ + pik_flags = 0; + }else{ + pik_flags = OPFLAG_NCHANGE; + pik_flags |= (isUpdate?OPFLAG_ISUPDATE:OPFLAG_LASTROWID); + } + if( appendBias ){ + pik_flags |= OPFLAG_APPEND; + } + if( useSeekResult ){ + pik_flags |= OPFLAG_USESEEKRESULT; + } + sqlite3VdbeAddOp3(v, OP_Insert, iDataCur, regRec, regNewData); + if( !pParse->nested ){ + sqlite3VdbeChangeP4(v, -1, pTab->zName, P4_TRANSIENT); + } + sqlite3VdbeChangeP5(v, pik_flags); +} + +/* +** Allocate cursors for the pTab table and all its indices and generate +** code to open and initialized those cursors. +** +** The cursor for the object that contains the complete data (normally +** the table itself, but the PRIMARY KEY index in the case of a WITHOUT +** ROWID table) is returned in *piDataCur. The first index cursor is +** returned in *piIdxCur. The number of indices is returned. +** +** Use iBase as the first cursor (either the *piDataCur for rowid tables +** or the first index for WITHOUT ROWID tables) if it is non-negative. +** If iBase is negative, then allocate the next available cursor. +** +** For a rowid table, *piDataCur will be exactly one less than *piIdxCur. +** For a WITHOUT ROWID table, *piDataCur will be somewhere in the range +** of *piIdxCurs, depending on where the PRIMARY KEY index appears on the +** pTab->pIndex list. +*/ +SQLITE_PRIVATE int sqlite3OpenTableAndIndices( + Parse *pParse, /* Parsing context */ + Table *pTab, /* Table to be opened */ + int op, /* OP_OpenRead or OP_OpenWrite */ + int iBase, /* Use this for the table cursor, if there is one */ + u8 *aToOpen, /* If not NULL: boolean for each table and index */ + int *piDataCur, /* Write the database source cursor number here */ + int *piIdxCur /* Write the first index cursor number here */ +){ + int i; + int iDb; + int iDataCur; + Index *pIdx; + Vdbe *v; + + assert( op==OP_OpenRead || op==OP_OpenWrite ); + if( IsVirtual(pTab) ){ + assert( aToOpen==0 ); + *piDataCur = 0; + *piIdxCur = 1; + return 0; + } + iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); + v = sqlite3GetVdbe(pParse); + assert( v!=0 ); + if( iBase<0 ) iBase = pParse->nTab; + iDataCur = iBase++; + if( piDataCur ) *piDataCur = iDataCur; + if( HasRowid(pTab) && (aToOpen==0 || aToOpen[0]) ){ + sqlite3OpenTable(pParse, iDataCur, iDb, pTab, op); + }else{ + sqlite3TableLock(pParse, iDb, pTab->tnum, op==OP_OpenWrite, pTab->zName); + } + if( piIdxCur ) *piIdxCur = iBase; + for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){ + int iIdxCur = iBase++; + assert( pIdx->pSchema==pTab->pSchema ); + if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) && piDataCur ){ + *piDataCur = iIdxCur; + } + if( aToOpen==0 || aToOpen[i+1] ){ + sqlite3VdbeAddOp3(v, op, iIdxCur, pIdx->tnum, iDb); + sqlite3VdbeSetP4KeyInfo(pParse, pIdx); + VdbeComment((v, "%s", pIdx->zName)); + } + } + if( iBase>pParse->nTab ) pParse->nTab = iBase; + return i; +} + + +#ifdef SQLITE_TEST +/* +** The following global variable is incremented whenever the +** transfer optimization is used. This is used for testing +** purposes only - to make sure the transfer optimization really +** is happening when it is suppose to. +*/ +SQLITE_API int sqlite3_xferopt_count; +#endif /* SQLITE_TEST */ + + +#ifndef SQLITE_OMIT_XFER_OPT +/* +** Check to collation names to see if they are compatible. +*/ +static int xferCompatibleCollation(const char *z1, const char *z2){ + if( z1==0 ){ + return z2==0; + } + if( z2==0 ){ + return 0; + } + return sqlite3StrICmp(z1, z2)==0; +} + + +/* +** Check to see if index pSrc is compatible as a source of data +** for index pDest in an insert transfer optimization. The rules +** for a compatible index: +** +** * The index is over the same set of columns +** * The same DESC and ASC markings occurs on all columns +** * The same onError processing (OE_Abort, OE_Ignore, etc) +** * The same collating sequence on each column +** * The index has the exact same WHERE clause +*/ +static int xferCompatibleIndex(Index *pDest, Index *pSrc){ + int i; + assert( pDest && pSrc ); + assert( pDest->pTable!=pSrc->pTable ); + if( pDest->nKeyCol!=pSrc->nKeyCol ){ + return 0; /* Different number of columns */ + } + if( pDest->onError!=pSrc->onError ){ + return 0; /* Different conflict resolution strategies */ + } + for(i=0; inKeyCol; i++){ + if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){ + return 0; /* Different columns indexed */ + } + if( pSrc->aSortOrder[i]!=pDest->aSortOrder[i] ){ + return 0; /* Different sort orders */ + } + if( !xferCompatibleCollation(pSrc->azColl[i],pDest->azColl[i]) ){ + return 0; /* Different collating sequences */ + } + } + if( sqlite3ExprCompare(pSrc->pPartIdxWhere, pDest->pPartIdxWhere, -1) ){ + return 0; /* Different WHERE clauses */ + } + + /* If no test above fails then the indices must be compatible */ + return 1; +} + +/* +** Attempt the transfer optimization on INSERTs of the form +** +** INSERT INTO tab1 SELECT * FROM tab2; +** +** The xfer optimization transfers raw records from tab2 over to tab1. +** Columns are not decoded and reassemblied, which greatly improves +** performance. Raw index records are transferred in the same way. +** +** The xfer optimization is only attempted if tab1 and tab2 are compatible. +** There are lots of rules for determining compatibility - see comments +** embedded in the code for details. +** +** This routine returns TRUE if the optimization is guaranteed to be used. +** Sometimes the xfer optimization will only work if the destination table +** is empty - a factor that can only be determined at run-time. In that +** case, this routine generates code for the xfer optimization but also +** does a test to see if the destination table is empty and jumps over the +** xfer optimization code if the test fails. In that case, this routine +** returns FALSE so that the caller will know to go ahead and generate +** an unoptimized transfer. This routine also returns FALSE if there +** is no chance that the xfer optimization can be applied. +** +** This optimization is particularly useful at making VACUUM run faster. +*/ +static int xferOptimization( + Parse *pParse, /* Parser context */ + Table *pDest, /* The table we are inserting into */ + Select *pSelect, /* A SELECT statement to use as the data source */ + int onError, /* How to handle constraint errors */ + int iDbDest /* The database of pDest */ +){ + ExprList *pEList; /* The result set of the SELECT */ + Table *pSrc; /* The table in the FROM clause of SELECT */ + Index *pSrcIdx, *pDestIdx; /* Source and destination indices */ + struct SrcList_item *pItem; /* An element of pSelect->pSrc */ + int i; /* Loop counter */ + int iDbSrc; /* The database of pSrc */ + int iSrc, iDest; /* Cursors from source and destination */ + int addr1, addr2; /* Loop addresses */ + int emptyDestTest = 0; /* Address of test for empty pDest */ + int emptySrcTest = 0; /* Address of test for empty pSrc */ + Vdbe *v; /* The VDBE we are building */ + int regAutoinc; /* Memory register used by AUTOINC */ + int destHasUniqueIdx = 0; /* True if pDest has a UNIQUE index */ + int regData, regRowid; /* Registers holding data and rowid */ + + if( pSelect==0 ){ + return 0; /* Must be of the form INSERT INTO ... SELECT ... */ + } + if( pParse->pWith || pSelect->pWith ){ + /* Do not attempt to process this query if there are an WITH clauses + ** attached to it. Proceeding may generate a false "no such table: xxx" + ** error if pSelect reads from a CTE named "xxx". */ + return 0; + } + if( sqlite3TriggerList(pParse, pDest) ){ + return 0; /* tab1 must not have triggers */ + } +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( pDest->tabFlags & TF_Virtual ){ + return 0; /* tab1 must not be a virtual table */ + } +#endif + if( onError==OE_Default ){ + if( pDest->iPKey>=0 ) onError = pDest->keyConf; + if( onError==OE_Default ) onError = OE_Abort; + } + assert(pSelect->pSrc); /* allocated even if there is no FROM clause */ + if( pSelect->pSrc->nSrc!=1 ){ + return 0; /* FROM clause must have exactly one term */ + } + if( pSelect->pSrc->a[0].pSelect ){ + return 0; /* FROM clause cannot contain a subquery */ + } + if( pSelect->pWhere ){ + return 0; /* SELECT may not have a WHERE clause */ + } + if( pSelect->pOrderBy ){ + return 0; /* SELECT may not have an ORDER BY clause */ + } + /* Do not need to test for a HAVING clause. If HAVING is present but + ** there is no ORDER BY, we will get an error. */ + if( pSelect->pGroupBy ){ + return 0; /* SELECT may not have a GROUP BY clause */ + } + if( pSelect->pLimit ){ + return 0; /* SELECT may not have a LIMIT clause */ + } + assert( pSelect->pOffset==0 ); /* Must be so if pLimit==0 */ + if( pSelect->pPrior ){ + return 0; /* SELECT may not be a compound query */ + } + if( pSelect->selFlags & SF_Distinct ){ + return 0; /* SELECT may not be DISTINCT */ + } + pEList = pSelect->pEList; + assert( pEList!=0 ); + if( pEList->nExpr!=1 ){ + return 0; /* The result set must have exactly one column */ + } + assert( pEList->a[0].pExpr ); + if( pEList->a[0].pExpr->op!=TK_ALL ){ + return 0; /* The result set must be the special operator "*" */ + } + + /* At this point we have established that the statement is of the + ** correct syntactic form to participate in this optimization. Now + ** we have to check the semantics. + */ + pItem = pSelect->pSrc->a; + pSrc = sqlite3LocateTableItem(pParse, 0, pItem); + if( pSrc==0 ){ + return 0; /* FROM clause does not contain a real table */ + } + if( pSrc==pDest ){ + return 0; /* tab1 and tab2 may not be the same table */ + } + if( HasRowid(pDest)!=HasRowid(pSrc) ){ + return 0; /* source and destination must both be WITHOUT ROWID or not */ + } +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( pSrc->tabFlags & TF_Virtual ){ + return 0; /* tab2 must not be a virtual table */ + } +#endif + if( pSrc->pSelect ){ + return 0; /* tab2 may not be a view */ + } + if( pDest->nCol!=pSrc->nCol ){ + return 0; /* Number of columns must be the same in tab1 and tab2 */ + } + if( pDest->iPKey!=pSrc->iPKey ){ + return 0; /* Both tables must have the same INTEGER PRIMARY KEY */ + } + for(i=0; inCol; i++){ + Column *pDestCol = &pDest->aCol[i]; + Column *pSrcCol = &pSrc->aCol[i]; + if( pDestCol->affinity!=pSrcCol->affinity ){ + return 0; /* Affinity must be the same on all columns */ + } + if( !xferCompatibleCollation(pDestCol->zColl, pSrcCol->zColl) ){ + return 0; /* Collating sequence must be the same on all columns */ + } + if( pDestCol->notNull && !pSrcCol->notNull ){ + return 0; /* tab2 must be NOT NULL if tab1 is */ + } + /* Default values for second and subsequent columns need to match. */ + if( i>0 + && ((pDestCol->zDflt==0)!=(pSrcCol->zDflt==0) + || (pDestCol->zDflt && strcmp(pDestCol->zDflt, pSrcCol->zDflt)!=0)) + ){ + return 0; /* Default values must be the same for all columns */ + } + } + for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){ + if( pDestIdx->onError!=OE_None ){ + destHasUniqueIdx = 1; + } + for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){ + if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break; + } + if( pSrcIdx==0 ){ + return 0; /* pDestIdx has no corresponding index in pSrc */ + } + } +#ifndef SQLITE_OMIT_CHECK + if( pDest->pCheck && sqlite3ExprListCompare(pSrc->pCheck,pDest->pCheck,-1) ){ + return 0; /* Tables have different CHECK constraints. Ticket #2252 */ + } +#endif +#ifndef SQLITE_OMIT_FOREIGN_KEY + /* Disallow the transfer optimization if the destination table constains + ** any foreign key constraints. This is more restrictive than necessary. + ** But the main beneficiary of the transfer optimization is the VACUUM + ** command, and the VACUUM command disables foreign key constraints. So + ** the extra complication to make this rule less restrictive is probably + ** not worth the effort. Ticket [6284df89debdfa61db8073e062908af0c9b6118e] + */ + if( (pParse->db->flags & SQLITE_ForeignKeys)!=0 && pDest->pFKey!=0 ){ + return 0; + } +#endif + if( (pParse->db->flags & SQLITE_CountRows)!=0 ){ + return 0; /* xfer opt does not play well with PRAGMA count_changes */ + } + + /* If we get this far, it means that the xfer optimization is at + ** least a possibility, though it might only work if the destination + ** table (tab1) is initially empty. + */ +#ifdef SQLITE_TEST + sqlite3_xferopt_count++; +#endif + iDbSrc = sqlite3SchemaToIndex(pParse->db, pSrc->pSchema); + v = sqlite3GetVdbe(pParse); + sqlite3CodeVerifySchema(pParse, iDbSrc); + iSrc = pParse->nTab++; + iDest = pParse->nTab++; + regAutoinc = autoIncBegin(pParse, iDbDest, pDest); + regData = sqlite3GetTempReg(pParse); + regRowid = sqlite3GetTempReg(pParse); + sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite); + assert( HasRowid(pDest) || destHasUniqueIdx ); + if( (pDest->iPKey<0 && pDest->pIndex!=0) /* (1) */ + || destHasUniqueIdx /* (2) */ + || (onError!=OE_Abort && onError!=OE_Rollback) /* (3) */ + ){ + /* In some circumstances, we are able to run the xfer optimization + ** only if the destination table is initially empty. This code makes + ** that determination. Conditions under which the destination must + ** be empty: + ** + ** (1) There is no INTEGER PRIMARY KEY but there are indices. + ** (If the destination is not initially empty, the rowid fields + ** of index entries might need to change.) + ** + ** (2) The destination has a unique index. (The xfer optimization + ** is unable to test uniqueness.) + ** + ** (3) onError is something other than OE_Abort and OE_Rollback. + */ + addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0); VdbeCoverage(v); + emptyDestTest = sqlite3VdbeAddOp2(v, OP_Goto, 0, 0); + sqlite3VdbeJumpHere(v, addr1); + } + if( HasRowid(pSrc) ){ + sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead); + emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v); + if( pDest->iPKey>=0 ){ + addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid); + addr2 = sqlite3VdbeAddOp3(v, OP_NotExists, iDest, 0, regRowid); + VdbeCoverage(v); + sqlite3RowidConstraint(pParse, onError, pDest); + sqlite3VdbeJumpHere(v, addr2); + autoIncStep(pParse, regAutoinc, regRowid); + }else if( pDest->pIndex==0 ){ + addr1 = sqlite3VdbeAddOp2(v, OP_NewRowid, iDest, regRowid); + }else{ + addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid); + assert( (pDest->tabFlags & TF_Autoincrement)==0 ); + } + sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData); + sqlite3VdbeAddOp3(v, OP_Insert, iDest, regData, regRowid); + sqlite3VdbeChangeP5(v, OPFLAG_NCHANGE|OPFLAG_LASTROWID|OPFLAG_APPEND); + sqlite3VdbeChangeP4(v, -1, pDest->zName, 0); + sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0); + sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); + }else{ + sqlite3TableLock(pParse, iDbDest, pDest->tnum, 1, pDest->zName); + sqlite3TableLock(pParse, iDbSrc, pSrc->tnum, 0, pSrc->zName); + } + for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){ + for(pSrcIdx=pSrc->pIndex; ALWAYS(pSrcIdx); pSrcIdx=pSrcIdx->pNext){ + if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break; + } + assert( pSrcIdx ); + sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc); + sqlite3VdbeSetP4KeyInfo(pParse, pSrcIdx); + VdbeComment((v, "%s", pSrcIdx->zName)); + sqlite3VdbeAddOp3(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDest); + sqlite3VdbeSetP4KeyInfo(pParse, pDestIdx); + sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR); + VdbeComment((v, "%s", pDestIdx->zName)); + addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData); + sqlite3VdbeAddOp3(v, OP_IdxInsert, iDest, regData, 1); + sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v); + sqlite3VdbeJumpHere(v, addr1); + sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0); + sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); + } + if( emptySrcTest ) sqlite3VdbeJumpHere(v, emptySrcTest); + sqlite3ReleaseTempReg(pParse, regRowid); + sqlite3ReleaseTempReg(pParse, regData); + if( emptyDestTest ){ + sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0); + sqlite3VdbeJumpHere(v, emptyDestTest); + sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); + return 0; + }else{ + return 1; + } +} +#endif /* SQLITE_OMIT_XFER_OPT */ + +/************** End of insert.c **********************************************/ +/************** Begin file legacy.c ******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** Main file for the SQLite library. The routines in this file +** implement the programmer interface to the library. Routines in +** other files are for internal use by SQLite and should not be +** accessed by users of the library. +*/ + + +/* +** Execute SQL code. Return one of the SQLITE_ success/failure +** codes. Also write an error message into memory obtained from +** malloc() and make *pzErrMsg point to that message. +** +** If the SQL is a query, then for each row in the query result +** the xCallback() function is called. pArg becomes the first +** argument to xCallback(). If xCallback=NULL then no callback +** is invoked, even for queries. +*/ +SQLITE_API int sqlite3_exec( + sqlite3 *db, /* The database on which the SQL executes */ + const char *zSql, /* The SQL to be executed */ + sqlite3_callback xCallback, /* Invoke this callback routine */ + void *pArg, /* First argument to xCallback() */ + char **pzErrMsg /* Write error messages here */ +){ + int rc = SQLITE_OK; /* Return code */ + const char *zLeftover; /* Tail of unprocessed SQL */ + sqlite3_stmt *pStmt = 0; /* The current SQL statement */ + char **azCols = 0; /* Names of result columns */ + int callbackIsInit; /* True if callback data is initialized */ + + if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; + if( zSql==0 ) zSql = ""; + + sqlite3_mutex_enter(db->mutex); + sqlite3Error(db, SQLITE_OK, 0); + while( rc==SQLITE_OK && zSql[0] ){ + int nCol; + char **azVals = 0; + + pStmt = 0; + rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, &zLeftover); + assert( rc==SQLITE_OK || pStmt==0 ); + if( rc!=SQLITE_OK ){ + continue; + } + if( !pStmt ){ + /* this happens for a comment or white-space */ + zSql = zLeftover; + continue; + } + + callbackIsInit = 0; + nCol = sqlite3_column_count(pStmt); + + while( 1 ){ + int i; + rc = sqlite3_step(pStmt); + + /* Invoke the callback function if required */ + if( xCallback && (SQLITE_ROW==rc || + (SQLITE_DONE==rc && !callbackIsInit + && db->flags&SQLITE_NullCallback)) ){ + if( !callbackIsInit ){ + azCols = sqlite3DbMallocZero(db, 2*nCol*sizeof(const char*) + 1); + if( azCols==0 ){ + goto exec_out; + } + for(i=0; imallocFailed = 1; + goto exec_out; + } + } + } + if( xCallback(pArg, nCol, azVals, azCols) ){ + rc = SQLITE_ABORT; + sqlite3VdbeFinalize((Vdbe *)pStmt); + pStmt = 0; + sqlite3Error(db, SQLITE_ABORT, 0); + goto exec_out; + } + } + + if( rc!=SQLITE_ROW ){ + rc = sqlite3VdbeFinalize((Vdbe *)pStmt); + pStmt = 0; + zSql = zLeftover; + while( sqlite3Isspace(zSql[0]) ) zSql++; + break; + } + } + + sqlite3DbFree(db, azCols); + azCols = 0; + } + +exec_out: + if( pStmt ) sqlite3VdbeFinalize((Vdbe *)pStmt); + sqlite3DbFree(db, azCols); + + rc = sqlite3ApiExit(db, rc); + if( rc!=SQLITE_OK && ALWAYS(rc==sqlite3_errcode(db)) && pzErrMsg ){ + int nErrMsg = 1 + sqlite3Strlen30(sqlite3_errmsg(db)); + *pzErrMsg = sqlite3Malloc(nErrMsg); + if( *pzErrMsg ){ + memcpy(*pzErrMsg, sqlite3_errmsg(db), nErrMsg); + }else{ + rc = SQLITE_NOMEM; + sqlite3Error(db, SQLITE_NOMEM, 0); + } + }else if( pzErrMsg ){ + *pzErrMsg = 0; + } + + assert( (rc&db->errMask)==rc ); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +/************** End of legacy.c **********************************************/ +/************** Begin file loadext.c *****************************************/ +/* +** 2006 June 7 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code used to dynamically load extensions into +** the SQLite library. +*/ + +#ifndef SQLITE_CORE + #define SQLITE_CORE 1 /* Disable the API redefinition in sqlite3ext.h */ +#endif +/************** Include sqlite3ext.h in the middle of loadext.c **************/ +/************** Begin file sqlite3ext.h **************************************/ +/* +** 2006 June 7 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This header file defines the SQLite interface for use by +** shared libraries that want to be imported as extensions into +** an SQLite instance. Shared libraries that intend to be loaded +** as extensions by SQLite should #include this file instead of +** sqlite3.h. +*/ +#ifndef _SQLITE3EXT_H_ +#define _SQLITE3EXT_H_ + +typedef struct sqlite3_api_routines sqlite3_api_routines; + +/* +** The following structure holds pointers to all of the SQLite API +** routines. +** +** WARNING: In order to maintain backwards compatibility, add new +** interfaces to the end of this structure only. If you insert new +** interfaces in the middle of this structure, then older different +** versions of SQLite will not be able to load each others' shared +** libraries! +*/ +struct sqlite3_api_routines { + void * (*aggregate_context)(sqlite3_context*,int nBytes); + int (*aggregate_count)(sqlite3_context*); + int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*)); + int (*bind_double)(sqlite3_stmt*,int,double); + int (*bind_int)(sqlite3_stmt*,int,int); + int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64); + int (*bind_null)(sqlite3_stmt*,int); + int (*bind_parameter_count)(sqlite3_stmt*); + int (*bind_parameter_index)(sqlite3_stmt*,const char*zName); + const char * (*bind_parameter_name)(sqlite3_stmt*,int); + int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*)); + int (*bind_text16)(sqlite3_stmt*,int,const void*,int,void(*)(void*)); + int (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*); + int (*busy_handler)(sqlite3*,int(*)(void*,int),void*); + int (*busy_timeout)(sqlite3*,int ms); + int (*changes)(sqlite3*); + int (*close)(sqlite3*); + int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*, + int eTextRep,const char*)); + int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*, + int eTextRep,const void*)); + const void * (*column_blob)(sqlite3_stmt*,int iCol); + int (*column_bytes)(sqlite3_stmt*,int iCol); + int (*column_bytes16)(sqlite3_stmt*,int iCol); + int (*column_count)(sqlite3_stmt*pStmt); + const char * (*column_database_name)(sqlite3_stmt*,int); + const void * (*column_database_name16)(sqlite3_stmt*,int); + const char * (*column_decltype)(sqlite3_stmt*,int i); + const void * (*column_decltype16)(sqlite3_stmt*,int); + double (*column_double)(sqlite3_stmt*,int iCol); + int (*column_int)(sqlite3_stmt*,int iCol); + sqlite_int64 (*column_int64)(sqlite3_stmt*,int iCol); + const char * (*column_name)(sqlite3_stmt*,int); + const void * (*column_name16)(sqlite3_stmt*,int); + const char * (*column_origin_name)(sqlite3_stmt*,int); + const void * (*column_origin_name16)(sqlite3_stmt*,int); + const char * (*column_table_name)(sqlite3_stmt*,int); + const void * (*column_table_name16)(sqlite3_stmt*,int); + const unsigned char * (*column_text)(sqlite3_stmt*,int iCol); + const void * (*column_text16)(sqlite3_stmt*,int iCol); + int (*column_type)(sqlite3_stmt*,int iCol); + sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol); + void * (*commit_hook)(sqlite3*,int(*)(void*),void*); + int (*complete)(const char*sql); + int (*complete16)(const void*sql); + int (*create_collation)(sqlite3*,const char*,int,void*, + int(*)(void*,int,const void*,int,const void*)); + int (*create_collation16)(sqlite3*,const void*,int,void*, + int(*)(void*,int,const void*,int,const void*)); + int (*create_function)(sqlite3*,const char*,int,int,void*, + void (*xFunc)(sqlite3_context*,int,sqlite3_value**), + void (*xStep)(sqlite3_context*,int,sqlite3_value**), + void (*xFinal)(sqlite3_context*)); + int (*create_function16)(sqlite3*,const void*,int,int,void*, + void (*xFunc)(sqlite3_context*,int,sqlite3_value**), + void (*xStep)(sqlite3_context*,int,sqlite3_value**), + void (*xFinal)(sqlite3_context*)); + int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*); + int (*data_count)(sqlite3_stmt*pStmt); + sqlite3 * (*db_handle)(sqlite3_stmt*); + int (*declare_vtab)(sqlite3*,const char*); + int (*enable_shared_cache)(int); + int (*errcode)(sqlite3*db); + const char * (*errmsg)(sqlite3*); + const void * (*errmsg16)(sqlite3*); + int (*exec)(sqlite3*,const char*,sqlite3_callback,void*,char**); + int (*expired)(sqlite3_stmt*); + int (*finalize)(sqlite3_stmt*pStmt); + void (*free)(void*); + void (*free_table)(char**result); + int (*get_autocommit)(sqlite3*); + void * (*get_auxdata)(sqlite3_context*,int); + int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**); + int (*global_recover)(void); + void (*interruptx)(sqlite3*); + sqlite_int64 (*last_insert_rowid)(sqlite3*); + const char * (*libversion)(void); + int (*libversion_number)(void); + void *(*malloc)(int); + char * (*mprintf)(const char*,...); + int (*open)(const char*,sqlite3**); + int (*open16)(const void*,sqlite3**); + int (*prepare)(sqlite3*,const char*,int,sqlite3_stmt**,const char**); + int (*prepare16)(sqlite3*,const void*,int,sqlite3_stmt**,const void**); + void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*); + void (*progress_handler)(sqlite3*,int,int(*)(void*),void*); + void *(*realloc)(void*,int); + int (*reset)(sqlite3_stmt*pStmt); + void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*)); + void (*result_double)(sqlite3_context*,double); + void (*result_error)(sqlite3_context*,const char*,int); + void (*result_error16)(sqlite3_context*,const void*,int); + void (*result_int)(sqlite3_context*,int); + void (*result_int64)(sqlite3_context*,sqlite_int64); + void (*result_null)(sqlite3_context*); + void (*result_text)(sqlite3_context*,const char*,int,void(*)(void*)); + void (*result_text16)(sqlite3_context*,const void*,int,void(*)(void*)); + void (*result_text16be)(sqlite3_context*,const void*,int,void(*)(void*)); + void (*result_text16le)(sqlite3_context*,const void*,int,void(*)(void*)); + void (*result_value)(sqlite3_context*,sqlite3_value*); + void * (*rollback_hook)(sqlite3*,void(*)(void*),void*); + int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*, + const char*,const char*),void*); + void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*)); + char * (*snprintf)(int,char*,const char*,...); + int (*step)(sqlite3_stmt*); + int (*table_column_metadata)(sqlite3*,const char*,const char*,const char*, + char const**,char const**,int*,int*,int*); + void (*thread_cleanup)(void); + int (*total_changes)(sqlite3*); + void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*); + int (*transfer_bindings)(sqlite3_stmt*,sqlite3_stmt*); + void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*, + sqlite_int64),void*); + void * (*user_data)(sqlite3_context*); + const void * (*value_blob)(sqlite3_value*); + int (*value_bytes)(sqlite3_value*); + int (*value_bytes16)(sqlite3_value*); + double (*value_double)(sqlite3_value*); + int (*value_int)(sqlite3_value*); + sqlite_int64 (*value_int64)(sqlite3_value*); + int (*value_numeric_type)(sqlite3_value*); + const unsigned char * (*value_text)(sqlite3_value*); + const void * (*value_text16)(sqlite3_value*); + const void * (*value_text16be)(sqlite3_value*); + const void * (*value_text16le)(sqlite3_value*); + int (*value_type)(sqlite3_value*); + char *(*vmprintf)(const char*,va_list); + /* Added ??? */ + int (*overload_function)(sqlite3*, const char *zFuncName, int nArg); + /* Added by 3.3.13 */ + int (*prepare_v2)(sqlite3*,const char*,int,sqlite3_stmt**,const char**); + int (*prepare16_v2)(sqlite3*,const void*,int,sqlite3_stmt**,const void**); + int (*clear_bindings)(sqlite3_stmt*); + /* Added by 3.4.1 */ + int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*, + void (*xDestroy)(void *)); + /* Added by 3.5.0 */ + int (*bind_zeroblob)(sqlite3_stmt*,int,int); + int (*blob_bytes)(sqlite3_blob*); + int (*blob_close)(sqlite3_blob*); + int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64, + int,sqlite3_blob**); + int (*blob_read)(sqlite3_blob*,void*,int,int); + int (*blob_write)(sqlite3_blob*,const void*,int,int); + int (*create_collation_v2)(sqlite3*,const char*,int,void*, + int(*)(void*,int,const void*,int,const void*), + void(*)(void*)); + int (*file_control)(sqlite3*,const char*,int,void*); + sqlite3_int64 (*memory_highwater)(int); + sqlite3_int64 (*memory_used)(void); + sqlite3_mutex *(*mutex_alloc)(int); + void (*mutex_enter)(sqlite3_mutex*); + void (*mutex_free)(sqlite3_mutex*); + void (*mutex_leave)(sqlite3_mutex*); + int (*mutex_try)(sqlite3_mutex*); + int (*open_v2)(const char*,sqlite3**,int,const char*); + int (*release_memory)(int); + void (*result_error_nomem)(sqlite3_context*); + void (*result_error_toobig)(sqlite3_context*); + int (*sleep)(int); + void (*soft_heap_limit)(int); + sqlite3_vfs *(*vfs_find)(const char*); + int (*vfs_register)(sqlite3_vfs*,int); + int (*vfs_unregister)(sqlite3_vfs*); + int (*xthreadsafe)(void); + void (*result_zeroblob)(sqlite3_context*,int); + void (*result_error_code)(sqlite3_context*,int); + int (*test_control)(int, ...); + void (*randomness)(int,void*); + sqlite3 *(*context_db_handle)(sqlite3_context*); + int (*extended_result_codes)(sqlite3*,int); + int (*limit)(sqlite3*,int,int); + sqlite3_stmt *(*next_stmt)(sqlite3*,sqlite3_stmt*); + const char *(*sql)(sqlite3_stmt*); + int (*status)(int,int*,int*,int); + int (*backup_finish)(sqlite3_backup*); + sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*); + int (*backup_pagecount)(sqlite3_backup*); + int (*backup_remaining)(sqlite3_backup*); + int (*backup_step)(sqlite3_backup*,int); + const char *(*compileoption_get)(int); + int (*compileoption_used)(const char*); + int (*create_function_v2)(sqlite3*,const char*,int,int,void*, + void (*xFunc)(sqlite3_context*,int,sqlite3_value**), + void (*xStep)(sqlite3_context*,int,sqlite3_value**), + void (*xFinal)(sqlite3_context*), + void(*xDestroy)(void*)); + int (*db_config)(sqlite3*,int,...); + sqlite3_mutex *(*db_mutex)(sqlite3*); + int (*db_status)(sqlite3*,int,int*,int*,int); + int (*extended_errcode)(sqlite3*); + void (*log)(int,const char*,...); + sqlite3_int64 (*soft_heap_limit64)(sqlite3_int64); + const char *(*sourceid)(void); + int (*stmt_status)(sqlite3_stmt*,int,int); + int (*strnicmp)(const char*,const char*,int); + int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*); + int (*wal_autocheckpoint)(sqlite3*,int); + int (*wal_checkpoint)(sqlite3*,const char*); + void *(*wal_hook)(sqlite3*,int(*)(void*,sqlite3*,const char*,int),void*); + int (*blob_reopen)(sqlite3_blob*,sqlite3_int64); + int (*vtab_config)(sqlite3*,int op,...); + int (*vtab_on_conflict)(sqlite3*); + /* Version 3.7.16 and later */ + int (*close_v2)(sqlite3*); + const char *(*db_filename)(sqlite3*,const char*); + int (*db_readonly)(sqlite3*,const char*); + int (*db_release_memory)(sqlite3*); + const char *(*errstr)(int); + int (*stmt_busy)(sqlite3_stmt*); + int (*stmt_readonly)(sqlite3_stmt*); + int (*stricmp)(const char*,const char*); + int (*uri_boolean)(const char*,const char*,int); + sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64); + const char *(*uri_parameter)(const char*,const char*); + char *(*vsnprintf)(int,char*,const char*,va_list); + int (*wal_checkpoint_v2)(sqlite3*,const char*,int,int*,int*); +}; + +/* +** The following macros redefine the API routines so that they are +** redirected throught the global sqlite3_api structure. +** +** This header file is also used by the loadext.c source file +** (part of the main SQLite library - not an extension) so that +** it can get access to the sqlite3_api_routines structure +** definition. But the main library does not want to redefine +** the API. So the redefinition macros are only valid if the +** SQLITE_CORE macros is undefined. +*/ +#ifndef SQLITE_CORE +#define sqlite3_aggregate_context sqlite3_api->aggregate_context +#ifndef SQLITE_OMIT_DEPRECATED +#define sqlite3_aggregate_count sqlite3_api->aggregate_count +#endif +#define sqlite3_bind_blob sqlite3_api->bind_blob +#define sqlite3_bind_double sqlite3_api->bind_double +#define sqlite3_bind_int sqlite3_api->bind_int +#define sqlite3_bind_int64 sqlite3_api->bind_int64 +#define sqlite3_bind_null sqlite3_api->bind_null +#define sqlite3_bind_parameter_count sqlite3_api->bind_parameter_count +#define sqlite3_bind_parameter_index sqlite3_api->bind_parameter_index +#define sqlite3_bind_parameter_name sqlite3_api->bind_parameter_name +#define sqlite3_bind_text sqlite3_api->bind_text +#define sqlite3_bind_text16 sqlite3_api->bind_text16 +#define sqlite3_bind_value sqlite3_api->bind_value +#define sqlite3_busy_handler sqlite3_api->busy_handler +#define sqlite3_busy_timeout sqlite3_api->busy_timeout +#define sqlite3_changes sqlite3_api->changes +#define sqlite3_close sqlite3_api->close +#define sqlite3_collation_needed sqlite3_api->collation_needed +#define sqlite3_collation_needed16 sqlite3_api->collation_needed16 +#define sqlite3_column_blob sqlite3_api->column_blob +#define sqlite3_column_bytes sqlite3_api->column_bytes +#define sqlite3_column_bytes16 sqlite3_api->column_bytes16 +#define sqlite3_column_count sqlite3_api->column_count +#define sqlite3_column_database_name sqlite3_api->column_database_name +#define sqlite3_column_database_name16 sqlite3_api->column_database_name16 +#define sqlite3_column_decltype sqlite3_api->column_decltype +#define sqlite3_column_decltype16 sqlite3_api->column_decltype16 +#define sqlite3_column_double sqlite3_api->column_double +#define sqlite3_column_int sqlite3_api->column_int +#define sqlite3_column_int64 sqlite3_api->column_int64 +#define sqlite3_column_name sqlite3_api->column_name +#define sqlite3_column_name16 sqlite3_api->column_name16 +#define sqlite3_column_origin_name sqlite3_api->column_origin_name +#define sqlite3_column_origin_name16 sqlite3_api->column_origin_name16 +#define sqlite3_column_table_name sqlite3_api->column_table_name +#define sqlite3_column_table_name16 sqlite3_api->column_table_name16 +#define sqlite3_column_text sqlite3_api->column_text +#define sqlite3_column_text16 sqlite3_api->column_text16 +#define sqlite3_column_type sqlite3_api->column_type +#define sqlite3_column_value sqlite3_api->column_value +#define sqlite3_commit_hook sqlite3_api->commit_hook +#define sqlite3_complete sqlite3_api->complete +#define sqlite3_complete16 sqlite3_api->complete16 +#define sqlite3_create_collation sqlite3_api->create_collation +#define sqlite3_create_collation16 sqlite3_api->create_collation16 +#define sqlite3_create_function sqlite3_api->create_function +#define sqlite3_create_function16 sqlite3_api->create_function16 +#define sqlite3_create_module sqlite3_api->create_module +#define sqlite3_create_module_v2 sqlite3_api->create_module_v2 +#define sqlite3_data_count sqlite3_api->data_count +#define sqlite3_db_handle sqlite3_api->db_handle +#define sqlite3_declare_vtab sqlite3_api->declare_vtab +#define sqlite3_enable_shared_cache sqlite3_api->enable_shared_cache +#define sqlite3_errcode sqlite3_api->errcode +#define sqlite3_errmsg sqlite3_api->errmsg +#define sqlite3_errmsg16 sqlite3_api->errmsg16 +#define sqlite3_exec sqlite3_api->exec +#ifndef SQLITE_OMIT_DEPRECATED +#define sqlite3_expired sqlite3_api->expired +#endif +#define sqlite3_finalize sqlite3_api->finalize +#define sqlite3_free sqlite3_api->free +#define sqlite3_free_table sqlite3_api->free_table +#define sqlite3_get_autocommit sqlite3_api->get_autocommit +#define sqlite3_get_auxdata sqlite3_api->get_auxdata +#define sqlite3_get_table sqlite3_api->get_table +#ifndef SQLITE_OMIT_DEPRECATED +#define sqlite3_global_recover sqlite3_api->global_recover +#endif +#define sqlite3_interrupt sqlite3_api->interruptx +#define sqlite3_last_insert_rowid sqlite3_api->last_insert_rowid +#define sqlite3_libversion sqlite3_api->libversion +#define sqlite3_libversion_number sqlite3_api->libversion_number +#define sqlite3_malloc sqlite3_api->malloc +#define sqlite3_mprintf sqlite3_api->mprintf +#define sqlite3_open sqlite3_api->open +#define sqlite3_open16 sqlite3_api->open16 +#define sqlite3_prepare sqlite3_api->prepare +#define sqlite3_prepare16 sqlite3_api->prepare16 +#define sqlite3_prepare_v2 sqlite3_api->prepare_v2 +#define sqlite3_prepare16_v2 sqlite3_api->prepare16_v2 +#define sqlite3_profile sqlite3_api->profile +#define sqlite3_progress_handler sqlite3_api->progress_handler +#define sqlite3_realloc sqlite3_api->realloc +#define sqlite3_reset sqlite3_api->reset +#define sqlite3_result_blob sqlite3_api->result_blob +#define sqlite3_result_double sqlite3_api->result_double +#define sqlite3_result_error sqlite3_api->result_error +#define sqlite3_result_error16 sqlite3_api->result_error16 +#define sqlite3_result_int sqlite3_api->result_int +#define sqlite3_result_int64 sqlite3_api->result_int64 +#define sqlite3_result_null sqlite3_api->result_null +#define sqlite3_result_text sqlite3_api->result_text +#define sqlite3_result_text16 sqlite3_api->result_text16 +#define sqlite3_result_text16be sqlite3_api->result_text16be +#define sqlite3_result_text16le sqlite3_api->result_text16le +#define sqlite3_result_value sqlite3_api->result_value +#define sqlite3_rollback_hook sqlite3_api->rollback_hook +#define sqlite3_set_authorizer sqlite3_api->set_authorizer +#define sqlite3_set_auxdata sqlite3_api->set_auxdata +#define sqlite3_snprintf sqlite3_api->snprintf +#define sqlite3_step sqlite3_api->step +#define sqlite3_table_column_metadata sqlite3_api->table_column_metadata +#define sqlite3_thread_cleanup sqlite3_api->thread_cleanup +#define sqlite3_total_changes sqlite3_api->total_changes +#define sqlite3_trace sqlite3_api->trace +#ifndef SQLITE_OMIT_DEPRECATED +#define sqlite3_transfer_bindings sqlite3_api->transfer_bindings +#endif +#define sqlite3_update_hook sqlite3_api->update_hook +#define sqlite3_user_data sqlite3_api->user_data +#define sqlite3_value_blob sqlite3_api->value_blob +#define sqlite3_value_bytes sqlite3_api->value_bytes +#define sqlite3_value_bytes16 sqlite3_api->value_bytes16 +#define sqlite3_value_double sqlite3_api->value_double +#define sqlite3_value_int sqlite3_api->value_int +#define sqlite3_value_int64 sqlite3_api->value_int64 +#define sqlite3_value_numeric_type sqlite3_api->value_numeric_type +#define sqlite3_value_text sqlite3_api->value_text +#define sqlite3_value_text16 sqlite3_api->value_text16 +#define sqlite3_value_text16be sqlite3_api->value_text16be +#define sqlite3_value_text16le sqlite3_api->value_text16le +#define sqlite3_value_type sqlite3_api->value_type +#define sqlite3_vmprintf sqlite3_api->vmprintf +#define sqlite3_overload_function sqlite3_api->overload_function +#define sqlite3_prepare_v2 sqlite3_api->prepare_v2 +#define sqlite3_prepare16_v2 sqlite3_api->prepare16_v2 +#define sqlite3_clear_bindings sqlite3_api->clear_bindings +#define sqlite3_bind_zeroblob sqlite3_api->bind_zeroblob +#define sqlite3_blob_bytes sqlite3_api->blob_bytes +#define sqlite3_blob_close sqlite3_api->blob_close +#define sqlite3_blob_open sqlite3_api->blob_open +#define sqlite3_blob_read sqlite3_api->blob_read +#define sqlite3_blob_write sqlite3_api->blob_write +#define sqlite3_create_collation_v2 sqlite3_api->create_collation_v2 +#define sqlite3_file_control sqlite3_api->file_control +#define sqlite3_memory_highwater sqlite3_api->memory_highwater +#define sqlite3_memory_used sqlite3_api->memory_used +#define sqlite3_mutex_alloc sqlite3_api->mutex_alloc +#define sqlite3_mutex_enter sqlite3_api->mutex_enter +#define sqlite3_mutex_free sqlite3_api->mutex_free +#define sqlite3_mutex_leave sqlite3_api->mutex_leave +#define sqlite3_mutex_try sqlite3_api->mutex_try +#define sqlite3_open_v2 sqlite3_api->open_v2 +#define sqlite3_release_memory sqlite3_api->release_memory +#define sqlite3_result_error_nomem sqlite3_api->result_error_nomem +#define sqlite3_result_error_toobig sqlite3_api->result_error_toobig +#define sqlite3_sleep sqlite3_api->sleep +#define sqlite3_soft_heap_limit sqlite3_api->soft_heap_limit +#define sqlite3_vfs_find sqlite3_api->vfs_find +#define sqlite3_vfs_register sqlite3_api->vfs_register +#define sqlite3_vfs_unregister sqlite3_api->vfs_unregister +#define sqlite3_threadsafe sqlite3_api->xthreadsafe +#define sqlite3_result_zeroblob sqlite3_api->result_zeroblob +#define sqlite3_result_error_code sqlite3_api->result_error_code +#define sqlite3_test_control sqlite3_api->test_control +#define sqlite3_randomness sqlite3_api->randomness +#define sqlite3_context_db_handle sqlite3_api->context_db_handle +#define sqlite3_extended_result_codes sqlite3_api->extended_result_codes +#define sqlite3_limit sqlite3_api->limit +#define sqlite3_next_stmt sqlite3_api->next_stmt +#define sqlite3_sql sqlite3_api->sql +#define sqlite3_status sqlite3_api->status +#define sqlite3_backup_finish sqlite3_api->backup_finish +#define sqlite3_backup_init sqlite3_api->backup_init +#define sqlite3_backup_pagecount sqlite3_api->backup_pagecount +#define sqlite3_backup_remaining sqlite3_api->backup_remaining +#define sqlite3_backup_step sqlite3_api->backup_step +#define sqlite3_compileoption_get sqlite3_api->compileoption_get +#define sqlite3_compileoption_used sqlite3_api->compileoption_used +#define sqlite3_create_function_v2 sqlite3_api->create_function_v2 +#define sqlite3_db_config sqlite3_api->db_config +#define sqlite3_db_mutex sqlite3_api->db_mutex +#define sqlite3_db_status sqlite3_api->db_status +#define sqlite3_extended_errcode sqlite3_api->extended_errcode +#define sqlite3_log sqlite3_api->log +#define sqlite3_soft_heap_limit64 sqlite3_api->soft_heap_limit64 +#define sqlite3_sourceid sqlite3_api->sourceid +#define sqlite3_stmt_status sqlite3_api->stmt_status +#define sqlite3_strnicmp sqlite3_api->strnicmp +#define sqlite3_unlock_notify sqlite3_api->unlock_notify +#define sqlite3_wal_autocheckpoint sqlite3_api->wal_autocheckpoint +#define sqlite3_wal_checkpoint sqlite3_api->wal_checkpoint +#define sqlite3_wal_hook sqlite3_api->wal_hook +#define sqlite3_blob_reopen sqlite3_api->blob_reopen +#define sqlite3_vtab_config sqlite3_api->vtab_config +#define sqlite3_vtab_on_conflict sqlite3_api->vtab_on_conflict +/* Version 3.7.16 and later */ +#define sqlite3_close_v2 sqlite3_api->close_v2 +#define sqlite3_db_filename sqlite3_api->db_filename +#define sqlite3_db_readonly sqlite3_api->db_readonly +#define sqlite3_db_release_memory sqlite3_api->db_release_memory +#define sqlite3_errstr sqlite3_api->errstr +#define sqlite3_stmt_busy sqlite3_api->stmt_busy +#define sqlite3_stmt_readonly sqlite3_api->stmt_readonly +#define sqlite3_stricmp sqlite3_api->stricmp +#define sqlite3_uri_boolean sqlite3_api->uri_boolean +#define sqlite3_uri_int64 sqlite3_api->uri_int64 +#define sqlite3_uri_parameter sqlite3_api->uri_parameter +#define sqlite3_uri_vsnprintf sqlite3_api->vsnprintf +#define sqlite3_wal_checkpoint_v2 sqlite3_api->wal_checkpoint_v2 +#endif /* SQLITE_CORE */ + +#ifndef SQLITE_CORE + /* This case when the file really is being compiled as a loadable + ** extension */ +# define SQLITE_EXTENSION_INIT1 const sqlite3_api_routines *sqlite3_api=0; +# define SQLITE_EXTENSION_INIT2(v) sqlite3_api=v; +# define SQLITE_EXTENSION_INIT3 \ + extern const sqlite3_api_routines *sqlite3_api; +#else + /* This case when the file is being statically linked into the + ** application */ +# define SQLITE_EXTENSION_INIT1 /*no-op*/ +# define SQLITE_EXTENSION_INIT2(v) (void)v; /* unused parameter */ +# define SQLITE_EXTENSION_INIT3 /*no-op*/ +#endif + +#endif /* _SQLITE3EXT_H_ */ + +/************** End of sqlite3ext.h ******************************************/ +/************** Continuing where we left off in loadext.c ********************/ +/* #include */ + +#ifndef SQLITE_OMIT_LOAD_EXTENSION + +/* +** Some API routines are omitted when various features are +** excluded from a build of SQLite. Substitute a NULL pointer +** for any missing APIs. +*/ +#ifndef SQLITE_ENABLE_COLUMN_METADATA +# define sqlite3_column_database_name 0 +# define sqlite3_column_database_name16 0 +# define sqlite3_column_table_name 0 +# define sqlite3_column_table_name16 0 +# define sqlite3_column_origin_name 0 +# define sqlite3_column_origin_name16 0 +# define sqlite3_table_column_metadata 0 +#endif + +#ifdef SQLITE_OMIT_AUTHORIZATION +# define sqlite3_set_authorizer 0 +#endif + +#ifdef SQLITE_OMIT_UTF16 +# define sqlite3_bind_text16 0 +# define sqlite3_collation_needed16 0 +# define sqlite3_column_decltype16 0 +# define sqlite3_column_name16 0 +# define sqlite3_column_text16 0 +# define sqlite3_complete16 0 +# define sqlite3_create_collation16 0 +# define sqlite3_create_function16 0 +# define sqlite3_errmsg16 0 +# define sqlite3_open16 0 +# define sqlite3_prepare16 0 +# define sqlite3_prepare16_v2 0 +# define sqlite3_result_error16 0 +# define sqlite3_result_text16 0 +# define sqlite3_result_text16be 0 +# define sqlite3_result_text16le 0 +# define sqlite3_value_text16 0 +# define sqlite3_value_text16be 0 +# define sqlite3_value_text16le 0 +# define sqlite3_column_database_name16 0 +# define sqlite3_column_table_name16 0 +# define sqlite3_column_origin_name16 0 +#endif + +#ifdef SQLITE_OMIT_COMPLETE +# define sqlite3_complete 0 +# define sqlite3_complete16 0 +#endif + +#ifdef SQLITE_OMIT_DECLTYPE +# define sqlite3_column_decltype16 0 +# define sqlite3_column_decltype 0 +#endif + +#ifdef SQLITE_OMIT_PROGRESS_CALLBACK +# define sqlite3_progress_handler 0 +#endif + +#ifdef SQLITE_OMIT_VIRTUALTABLE +# define sqlite3_create_module 0 +# define sqlite3_create_module_v2 0 +# define sqlite3_declare_vtab 0 +# define sqlite3_vtab_config 0 +# define sqlite3_vtab_on_conflict 0 +#endif + +#ifdef SQLITE_OMIT_SHARED_CACHE +# define sqlite3_enable_shared_cache 0 +#endif + +#ifdef SQLITE_OMIT_TRACE +# define sqlite3_profile 0 +# define sqlite3_trace 0 +#endif + +#ifdef SQLITE_OMIT_GET_TABLE +# define sqlite3_free_table 0 +# define sqlite3_get_table 0 +#endif + +#ifdef SQLITE_OMIT_INCRBLOB +#define sqlite3_bind_zeroblob 0 +#define sqlite3_blob_bytes 0 +#define sqlite3_blob_close 0 +#define sqlite3_blob_open 0 +#define sqlite3_blob_read 0 +#define sqlite3_blob_write 0 +#define sqlite3_blob_reopen 0 +#endif + +/* +** The following structure contains pointers to all SQLite API routines. +** A pointer to this structure is passed into extensions when they are +** loaded so that the extension can make calls back into the SQLite +** library. +** +** When adding new APIs, add them to the bottom of this structure +** in order to preserve backwards compatibility. +** +** Extensions that use newer APIs should first call the +** sqlite3_libversion_number() to make sure that the API they +** intend to use is supported by the library. Extensions should +** also check to make sure that the pointer to the function is +** not NULL before calling it. +*/ +static const sqlite3_api_routines sqlite3Apis = { + sqlite3_aggregate_context, +#ifndef SQLITE_OMIT_DEPRECATED + sqlite3_aggregate_count, +#else + 0, +#endif + sqlite3_bind_blob, + sqlite3_bind_double, + sqlite3_bind_int, + sqlite3_bind_int64, + sqlite3_bind_null, + sqlite3_bind_parameter_count, + sqlite3_bind_parameter_index, + sqlite3_bind_parameter_name, + sqlite3_bind_text, + sqlite3_bind_text16, + sqlite3_bind_value, + sqlite3_busy_handler, + sqlite3_busy_timeout, + sqlite3_changes, + sqlite3_close, + sqlite3_collation_needed, + sqlite3_collation_needed16, + sqlite3_column_blob, + sqlite3_column_bytes, + sqlite3_column_bytes16, + sqlite3_column_count, + sqlite3_column_database_name, + sqlite3_column_database_name16, + sqlite3_column_decltype, + sqlite3_column_decltype16, + sqlite3_column_double, + sqlite3_column_int, + sqlite3_column_int64, + sqlite3_column_name, + sqlite3_column_name16, + sqlite3_column_origin_name, + sqlite3_column_origin_name16, + sqlite3_column_table_name, + sqlite3_column_table_name16, + sqlite3_column_text, + sqlite3_column_text16, + sqlite3_column_type, + sqlite3_column_value, + sqlite3_commit_hook, + sqlite3_complete, + sqlite3_complete16, + sqlite3_create_collation, + sqlite3_create_collation16, + sqlite3_create_function, + sqlite3_create_function16, + sqlite3_create_module, + sqlite3_data_count, + sqlite3_db_handle, + sqlite3_declare_vtab, + sqlite3_enable_shared_cache, + sqlite3_errcode, + sqlite3_errmsg, + sqlite3_errmsg16, + sqlite3_exec, +#ifndef SQLITE_OMIT_DEPRECATED + sqlite3_expired, +#else + 0, +#endif + sqlite3_finalize, + sqlite3_free, + sqlite3_free_table, + sqlite3_get_autocommit, + sqlite3_get_auxdata, + sqlite3_get_table, + 0, /* Was sqlite3_global_recover(), but that function is deprecated */ + sqlite3_interrupt, + sqlite3_last_insert_rowid, + sqlite3_libversion, + sqlite3_libversion_number, + sqlite3_malloc, + sqlite3_mprintf, + sqlite3_open, + sqlite3_open16, + sqlite3_prepare, + sqlite3_prepare16, + sqlite3_profile, + sqlite3_progress_handler, + sqlite3_realloc, + sqlite3_reset, + sqlite3_result_blob, + sqlite3_result_double, + sqlite3_result_error, + sqlite3_result_error16, + sqlite3_result_int, + sqlite3_result_int64, + sqlite3_result_null, + sqlite3_result_text, + sqlite3_result_text16, + sqlite3_result_text16be, + sqlite3_result_text16le, + sqlite3_result_value, + sqlite3_rollback_hook, + sqlite3_set_authorizer, + sqlite3_set_auxdata, + sqlite3_snprintf, + sqlite3_step, + sqlite3_table_column_metadata, +#ifndef SQLITE_OMIT_DEPRECATED + sqlite3_thread_cleanup, +#else + 0, +#endif + sqlite3_total_changes, + sqlite3_trace, +#ifndef SQLITE_OMIT_DEPRECATED + sqlite3_transfer_bindings, +#else + 0, +#endif + sqlite3_update_hook, + sqlite3_user_data, + sqlite3_value_blob, + sqlite3_value_bytes, + sqlite3_value_bytes16, + sqlite3_value_double, + sqlite3_value_int, + sqlite3_value_int64, + sqlite3_value_numeric_type, + sqlite3_value_text, + sqlite3_value_text16, + sqlite3_value_text16be, + sqlite3_value_text16le, + sqlite3_value_type, + sqlite3_vmprintf, + /* + ** The original API set ends here. All extensions can call any + ** of the APIs above provided that the pointer is not NULL. But + ** before calling APIs that follow, extension should check the + ** sqlite3_libversion_number() to make sure they are dealing with + ** a library that is new enough to support that API. + ************************************************************************* + */ + sqlite3_overload_function, + + /* + ** Added after 3.3.13 + */ + sqlite3_prepare_v2, + sqlite3_prepare16_v2, + sqlite3_clear_bindings, + + /* + ** Added for 3.4.1 + */ + sqlite3_create_module_v2, + + /* + ** Added for 3.5.0 + */ + sqlite3_bind_zeroblob, + sqlite3_blob_bytes, + sqlite3_blob_close, + sqlite3_blob_open, + sqlite3_blob_read, + sqlite3_blob_write, + sqlite3_create_collation_v2, + sqlite3_file_control, + sqlite3_memory_highwater, + sqlite3_memory_used, +#ifdef SQLITE_MUTEX_OMIT + 0, + 0, + 0, + 0, + 0, +#else + sqlite3_mutex_alloc, + sqlite3_mutex_enter, + sqlite3_mutex_free, + sqlite3_mutex_leave, + sqlite3_mutex_try, +#endif + sqlite3_open_v2, + sqlite3_release_memory, + sqlite3_result_error_nomem, + sqlite3_result_error_toobig, + sqlite3_sleep, + sqlite3_soft_heap_limit, + sqlite3_vfs_find, + sqlite3_vfs_register, + sqlite3_vfs_unregister, + + /* + ** Added for 3.5.8 + */ + sqlite3_threadsafe, + sqlite3_result_zeroblob, + sqlite3_result_error_code, + sqlite3_test_control, + sqlite3_randomness, + sqlite3_context_db_handle, + + /* + ** Added for 3.6.0 + */ + sqlite3_extended_result_codes, + sqlite3_limit, + sqlite3_next_stmt, + sqlite3_sql, + sqlite3_status, + + /* + ** Added for 3.7.4 + */ + sqlite3_backup_finish, + sqlite3_backup_init, + sqlite3_backup_pagecount, + sqlite3_backup_remaining, + sqlite3_backup_step, +#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS + sqlite3_compileoption_get, + sqlite3_compileoption_used, +#else + 0, + 0, +#endif + sqlite3_create_function_v2, + sqlite3_db_config, + sqlite3_db_mutex, + sqlite3_db_status, + sqlite3_extended_errcode, + sqlite3_log, + sqlite3_soft_heap_limit64, + sqlite3_sourceid, + sqlite3_stmt_status, + sqlite3_strnicmp, +#ifdef SQLITE_ENABLE_UNLOCK_NOTIFY + sqlite3_unlock_notify, +#else + 0, +#endif +#ifndef SQLITE_OMIT_WAL + sqlite3_wal_autocheckpoint, + sqlite3_wal_checkpoint, + sqlite3_wal_hook, +#else + 0, + 0, + 0, +#endif + sqlite3_blob_reopen, + sqlite3_vtab_config, + sqlite3_vtab_on_conflict, + sqlite3_close_v2, + sqlite3_db_filename, + sqlite3_db_readonly, + sqlite3_db_release_memory, + sqlite3_errstr, + sqlite3_stmt_busy, + sqlite3_stmt_readonly, + sqlite3_stricmp, + sqlite3_uri_boolean, + sqlite3_uri_int64, + sqlite3_uri_parameter, + sqlite3_vsnprintf, + sqlite3_wal_checkpoint_v2 +}; + +/* +** Attempt to load an SQLite extension library contained in the file +** zFile. The entry point is zProc. zProc may be 0 in which case a +** default entry point name (sqlite3_extension_init) is used. Use +** of the default name is recommended. +** +** Return SQLITE_OK on success and SQLITE_ERROR if something goes wrong. +** +** If an error occurs and pzErrMsg is not 0, then fill *pzErrMsg with +** error message text. The calling function should free this memory +** by calling sqlite3DbFree(db, ). +*/ +static int sqlite3LoadExtension( + sqlite3 *db, /* Load the extension into this database connection */ + const char *zFile, /* Name of the shared library containing extension */ + const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ + char **pzErrMsg /* Put error message here if not 0 */ +){ + sqlite3_vfs *pVfs = db->pVfs; + void *handle; + int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*); + char *zErrmsg = 0; + const char *zEntry; + char *zAltEntry = 0; + void **aHandle; + int nMsg = 300 + sqlite3Strlen30(zFile); + int ii; + + /* Shared library endings to try if zFile cannot be loaded as written */ + static const char *azEndings[] = { +#if SQLITE_OS_WIN + "dll" +#elif defined(__APPLE__) + "dylib" +#else + "so" +#endif + }; + + + if( pzErrMsg ) *pzErrMsg = 0; + + /* Ticket #1863. To avoid a creating security problems for older + ** applications that relink against newer versions of SQLite, the + ** ability to run load_extension is turned off by default. One + ** must call sqlite3_enable_load_extension() to turn on extension + ** loading. Otherwise you get the following error. + */ + if( (db->flags & SQLITE_LoadExtension)==0 ){ + if( pzErrMsg ){ + *pzErrMsg = sqlite3_mprintf("not authorized"); + } + return SQLITE_ERROR; + } + + zEntry = zProc ? zProc : "sqlite3_extension_init"; + + handle = sqlite3OsDlOpen(pVfs, zFile); +#if SQLITE_OS_UNIX || SQLITE_OS_WIN + for(ii=0; ii sqlite3_example_init + ** C:/lib/mathfuncs.dll ==> sqlite3_mathfuncs_init + */ + if( xInit==0 && zProc==0 ){ + int iFile, iEntry, c; + int ncFile = sqlite3Strlen30(zFile); + zAltEntry = sqlite3_malloc(ncFile+30); + if( zAltEntry==0 ){ + sqlite3OsDlClose(pVfs, handle); + return SQLITE_NOMEM; + } + memcpy(zAltEntry, "sqlite3_", 8); + for(iFile=ncFile-1; iFile>=0 && zFile[iFile]!='/'; iFile--){} + iFile++; + if( sqlite3_strnicmp(zFile+iFile, "lib", 3)==0 ) iFile += 3; + for(iEntry=8; (c = zFile[iFile])!=0 && c!='.'; iFile++){ + if( sqlite3Isalpha(c) ){ + zAltEntry[iEntry++] = (char)sqlite3UpperToLower[(unsigned)c]; + } + } + memcpy(zAltEntry+iEntry, "_init", 6); + zEntry = zAltEntry; + xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*)) + sqlite3OsDlSym(pVfs, handle, zEntry); + } + if( xInit==0 ){ + if( pzErrMsg ){ + nMsg += sqlite3Strlen30(zEntry); + *pzErrMsg = zErrmsg = sqlite3_malloc(nMsg); + if( zErrmsg ){ + sqlite3_snprintf(nMsg, zErrmsg, + "no entry point [%s] in shared library [%s]", zEntry, zFile); + sqlite3OsDlError(pVfs, nMsg-1, zErrmsg); + } + } + sqlite3OsDlClose(pVfs, handle); + sqlite3_free(zAltEntry); + return SQLITE_ERROR; + } + sqlite3_free(zAltEntry); + if( xInit(db, &zErrmsg, &sqlite3Apis) ){ + if( pzErrMsg ){ + *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg); + } + sqlite3_free(zErrmsg); + sqlite3OsDlClose(pVfs, handle); + return SQLITE_ERROR; + } + + /* Append the new shared library handle to the db->aExtension array. */ + aHandle = sqlite3DbMallocZero(db, sizeof(handle)*(db->nExtension+1)); + if( aHandle==0 ){ + return SQLITE_NOMEM; + } + if( db->nExtension>0 ){ + memcpy(aHandle, db->aExtension, sizeof(handle)*db->nExtension); + } + sqlite3DbFree(db, db->aExtension); + db->aExtension = aHandle; + + db->aExtension[db->nExtension++] = handle; + return SQLITE_OK; +} +SQLITE_API int sqlite3_load_extension( + sqlite3 *db, /* Load the extension into this database connection */ + const char *zFile, /* Name of the shared library containing extension */ + const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ + char **pzErrMsg /* Put error message here if not 0 */ +){ + int rc; + sqlite3_mutex_enter(db->mutex); + rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg); + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +/* +** Call this routine when the database connection is closing in order +** to clean up loaded extensions +*/ +SQLITE_PRIVATE void sqlite3CloseExtensions(sqlite3 *db){ + int i; + assert( sqlite3_mutex_held(db->mutex) ); + for(i=0; inExtension; i++){ + sqlite3OsDlClose(db->pVfs, db->aExtension[i]); + } + sqlite3DbFree(db, db->aExtension); +} + +/* +** Enable or disable extension loading. Extension loading is disabled by +** default so as not to open security holes in older applications. +*/ +SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff){ + sqlite3_mutex_enter(db->mutex); + if( onoff ){ + db->flags |= SQLITE_LoadExtension; + }else{ + db->flags &= ~SQLITE_LoadExtension; + } + sqlite3_mutex_leave(db->mutex); + return SQLITE_OK; +} + +#endif /* SQLITE_OMIT_LOAD_EXTENSION */ + +/* +** The auto-extension code added regardless of whether or not extension +** loading is supported. We need a dummy sqlite3Apis pointer for that +** code if regular extension loading is not available. This is that +** dummy pointer. +*/ +#ifdef SQLITE_OMIT_LOAD_EXTENSION +static const sqlite3_api_routines sqlite3Apis = { 0 }; +#endif + + +/* +** The following object holds the list of automatically loaded +** extensions. +** +** This list is shared across threads. The SQLITE_MUTEX_STATIC_MASTER +** mutex must be held while accessing this list. +*/ +typedef struct sqlite3AutoExtList sqlite3AutoExtList; +static SQLITE_WSD struct sqlite3AutoExtList { + int nExt; /* Number of entries in aExt[] */ + void (**aExt)(void); /* Pointers to the extension init functions */ +} sqlite3Autoext = { 0, 0 }; + +/* The "wsdAutoext" macro will resolve to the autoextension +** state vector. If writable static data is unsupported on the target, +** we have to locate the state vector at run-time. In the more common +** case where writable static data is supported, wsdStat can refer directly +** to the "sqlite3Autoext" state vector declared above. +*/ +#ifdef SQLITE_OMIT_WSD +# define wsdAutoextInit \ + sqlite3AutoExtList *x = &GLOBAL(sqlite3AutoExtList,sqlite3Autoext) +# define wsdAutoext x[0] +#else +# define wsdAutoextInit +# define wsdAutoext sqlite3Autoext +#endif + + +/* +** Register a statically linked extension that is automatically +** loaded by every new database connection. +*/ +SQLITE_API int sqlite3_auto_extension(void (*xInit)(void)){ + int rc = SQLITE_OK; +#ifndef SQLITE_OMIT_AUTOINIT + rc = sqlite3_initialize(); + if( rc ){ + return rc; + }else +#endif + { + int i; +#if SQLITE_THREADSAFE + sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER); +#endif + wsdAutoextInit; + sqlite3_mutex_enter(mutex); + for(i=0; i=0; i--){ + if( wsdAutoext.aExt[i]==xInit ){ + wsdAutoext.nExt--; + wsdAutoext.aExt[i] = wsdAutoext.aExt[wsdAutoext.nExt]; + n++; + break; + } + } + sqlite3_mutex_leave(mutex); + return n; +} + +/* +** Reset the automatic extension loading mechanism. +*/ +SQLITE_API void sqlite3_reset_auto_extension(void){ +#ifndef SQLITE_OMIT_AUTOINIT + if( sqlite3_initialize()==SQLITE_OK ) +#endif + { +#if SQLITE_THREADSAFE + sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER); +#endif + wsdAutoextInit; + sqlite3_mutex_enter(mutex); + sqlite3_free(wsdAutoext.aExt); + wsdAutoext.aExt = 0; + wsdAutoext.nExt = 0; + sqlite3_mutex_leave(mutex); + } +} + +/* +** Load all automatic extensions. +** +** If anything goes wrong, set an error in the database connection. +*/ +SQLITE_PRIVATE void sqlite3AutoLoadExtensions(sqlite3 *db){ + int i; + int go = 1; + int rc; + int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*); + + wsdAutoextInit; + if( wsdAutoext.nExt==0 ){ + /* Common case: early out without every having to acquire a mutex */ + return; + } + for(i=0; go; i++){ + char *zErrmsg; +#if SQLITE_THREADSAFE + sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER); +#endif + sqlite3_mutex_enter(mutex); + if( i>=wsdAutoext.nExt ){ + xInit = 0; + go = 0; + }else{ + xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*)) + wsdAutoext.aExt[i]; + } + sqlite3_mutex_leave(mutex); + zErrmsg = 0; + if( xInit && (rc = xInit(db, &zErrmsg, &sqlite3Apis))!=0 ){ + sqlite3Error(db, rc, + "automatic extension loading failed: %s", zErrmsg); + go = 0; + } + sqlite3_free(zErrmsg); + } +} + +/************** End of loadext.c *********************************************/ +/************** Begin file pragma.c ******************************************/ +/* +** 2003 April 6 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code used to implement the PRAGMA command. +*/ + +#if !defined(SQLITE_ENABLE_LOCKING_STYLE) +# if defined(__APPLE__) +# define SQLITE_ENABLE_LOCKING_STYLE 1 +# else +# define SQLITE_ENABLE_LOCKING_STYLE 0 +# endif +#endif + +/*************************************************************************** +** The next block of code, including the PragTyp_XXXX macro definitions and +** the aPragmaName[] object is composed of generated code. DO NOT EDIT. +** +** To add new pragmas, edit the code in ../tool/mkpragmatab.tcl and rerun +** that script. Then copy/paste the output in place of the following: +*/ +#define PragTyp_HEADER_VALUE 0 +#define PragTyp_AUTO_VACUUM 1 +#define PragTyp_FLAG 2 +#define PragTyp_BUSY_TIMEOUT 3 +#define PragTyp_CACHE_SIZE 4 +#define PragTyp_CASE_SENSITIVE_LIKE 5 +#define PragTyp_COLLATION_LIST 6 +#define PragTyp_COMPILE_OPTIONS 7 +#define PragTyp_DATA_STORE_DIRECTORY 8 +#define PragTyp_DATABASE_LIST 9 +#define PragTyp_DEFAULT_CACHE_SIZE 10 +#define PragTyp_ENCODING 11 +#define PragTyp_FOREIGN_KEY_CHECK 12 +#define PragTyp_FOREIGN_KEY_LIST 13 +#define PragTyp_INCREMENTAL_VACUUM 14 +#define PragTyp_INDEX_INFO 15 +#define PragTyp_INDEX_LIST 16 +#define PragTyp_INTEGRITY_CHECK 17 +#define PragTyp_JOURNAL_MODE 18 +#define PragTyp_JOURNAL_SIZE_LIMIT 19 +#define PragTyp_LOCK_PROXY_FILE 20 +#define PragTyp_LOCKING_MODE 21 +#define PragTyp_PAGE_COUNT 22 +#define PragTyp_MMAP_SIZE 23 +#define PragTyp_PAGE_SIZE 24 +#define PragTyp_SECURE_DELETE 25 +#define PragTyp_SHRINK_MEMORY 26 +#define PragTyp_SOFT_HEAP_LIMIT 27 +#define PragTyp_STATS 28 +#define PragTyp_SYNCHRONOUS 29 +#define PragTyp_TABLE_INFO 30 +#define PragTyp_TEMP_STORE 31 +#define PragTyp_TEMP_STORE_DIRECTORY 32 +#define PragTyp_WAL_AUTOCHECKPOINT 33 +#define PragTyp_WAL_CHECKPOINT 34 +#define PragTyp_ACTIVATE_EXTENSIONS 35 +#define PragTyp_HEXKEY 36 +#define PragTyp_KEY 37 +#define PragTyp_REKEY 38 +#define PragTyp_LOCK_STATUS 39 +#define PragTyp_PARSER_TRACE 40 +#define PragFlag_NeedSchema 0x01 +static const struct sPragmaNames { + const char *const zName; /* Name of pragma */ + u8 ePragTyp; /* PragTyp_XXX value */ + u8 mPragFlag; /* Zero or more PragFlag_XXX values */ + u32 iArg; /* Extra argument */ +} aPragmaNames[] = { +#if defined(SQLITE_HAS_CODEC) || defined(SQLITE_ENABLE_CEROD) + { /* zName: */ "activate_extensions", + /* ePragTyp: */ PragTyp_ACTIVATE_EXTENSIONS, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) + { /* zName: */ "application_id", + /* ePragTyp: */ PragTyp_HEADER_VALUE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_AUTOVACUUM) + { /* zName: */ "auto_vacuum", + /* ePragTyp: */ PragTyp_AUTO_VACUUM, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) +#if !defined(SQLITE_OMIT_AUTOMATIC_INDEX) + { /* zName: */ "automatic_index", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_AutoIndex }, +#endif +#endif + { /* zName: */ "busy_timeout", + /* ePragTyp: */ PragTyp_BUSY_TIMEOUT, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) + { /* zName: */ "cache_size", + /* ePragTyp: */ PragTyp_CACHE_SIZE, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "cache_spill", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_CacheSpill }, +#endif + { /* zName: */ "case_sensitive_like", + /* ePragTyp: */ PragTyp_CASE_SENSITIVE_LIKE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "checkpoint_fullfsync", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_CkptFullFSync }, +#endif +#if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) + { /* zName: */ "collation_list", + /* ePragTyp: */ PragTyp_COLLATION_LIST, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_COMPILEOPTION_DIAGS) + { /* zName: */ "compile_options", + /* ePragTyp: */ PragTyp_COMPILE_OPTIONS, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "count_changes", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_CountRows }, +#endif +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && SQLITE_OS_WIN + { /* zName: */ "data_store_directory", + /* ePragTyp: */ PragTyp_DATA_STORE_DIRECTORY, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) + { /* zName: */ "database_list", + /* ePragTyp: */ PragTyp_DATABASE_LIST, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && !defined(SQLITE_OMIT_DEPRECATED) + { /* zName: */ "default_cache_size", + /* ePragTyp: */ PragTyp_DEFAULT_CACHE_SIZE, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) +#if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) + { /* zName: */ "defer_foreign_keys", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_DeferFKs }, +#endif +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "empty_result_callbacks", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_NullCallback }, +#endif +#if !defined(SQLITE_OMIT_UTF16) + { /* zName: */ "encoding", + /* ePragTyp: */ PragTyp_ENCODING, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) + { /* zName: */ "foreign_key_check", + /* ePragTyp: */ PragTyp_FOREIGN_KEY_CHECK, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FOREIGN_KEY) + { /* zName: */ "foreign_key_list", + /* ePragTyp: */ PragTyp_FOREIGN_KEY_LIST, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) +#if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) + { /* zName: */ "foreign_keys", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_ForeignKeys }, +#endif +#endif +#if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) + { /* zName: */ "freelist_count", + /* ePragTyp: */ PragTyp_HEADER_VALUE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "full_column_names", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_FullColNames }, + { /* zName: */ "fullfsync", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_FullFSync }, +#endif +#if defined(SQLITE_HAS_CODEC) + { /* zName: */ "hexkey", + /* ePragTyp: */ PragTyp_HEXKEY, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, + { /* zName: */ "hexrekey", + /* ePragTyp: */ PragTyp_HEXKEY, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) +#if !defined(SQLITE_OMIT_CHECK) + { /* zName: */ "ignore_check_constraints", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_IgnoreChecks }, +#endif +#endif +#if !defined(SQLITE_OMIT_AUTOVACUUM) + { /* zName: */ "incremental_vacuum", + /* ePragTyp: */ PragTyp_INCREMENTAL_VACUUM, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) + { /* zName: */ "index_info", + /* ePragTyp: */ PragTyp_INDEX_INFO, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, + { /* zName: */ "index_list", + /* ePragTyp: */ PragTyp_INDEX_LIST, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_INTEGRITY_CHECK) + { /* zName: */ "integrity_check", + /* ePragTyp: */ PragTyp_INTEGRITY_CHECK, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) + { /* zName: */ "journal_mode", + /* ePragTyp: */ PragTyp_JOURNAL_MODE, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, + { /* zName: */ "journal_size_limit", + /* ePragTyp: */ PragTyp_JOURNAL_SIZE_LIMIT, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if defined(SQLITE_HAS_CODEC) + { /* zName: */ "key", + /* ePragTyp: */ PragTyp_KEY, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "legacy_file_format", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_LegacyFileFmt }, +#endif +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && SQLITE_ENABLE_LOCKING_STYLE + { /* zName: */ "lock_proxy_file", + /* ePragTyp: */ PragTyp_LOCK_PROXY_FILE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) + { /* zName: */ "lock_status", + /* ePragTyp: */ PragTyp_LOCK_STATUS, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) + { /* zName: */ "locking_mode", + /* ePragTyp: */ PragTyp_LOCKING_MODE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, + { /* zName: */ "max_page_count", + /* ePragTyp: */ PragTyp_PAGE_COUNT, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, + { /* zName: */ "mmap_size", + /* ePragTyp: */ PragTyp_MMAP_SIZE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, + { /* zName: */ "page_count", + /* ePragTyp: */ PragTyp_PAGE_COUNT, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, + { /* zName: */ "page_size", + /* ePragTyp: */ PragTyp_PAGE_SIZE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if defined(SQLITE_DEBUG) + { /* zName: */ "parser_trace", + /* ePragTyp: */ PragTyp_PARSER_TRACE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "query_only", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_QueryOnly }, +#endif +#if !defined(SQLITE_OMIT_INTEGRITY_CHECK) + { /* zName: */ "quick_check", + /* ePragTyp: */ PragTyp_INTEGRITY_CHECK, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "read_uncommitted", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_ReadUncommitted }, + { /* zName: */ "recursive_triggers", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_RecTriggers }, +#endif +#if defined(SQLITE_HAS_CODEC) + { /* zName: */ "rekey", + /* ePragTyp: */ PragTyp_REKEY, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "reverse_unordered_selects", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_ReverseOrder }, +#endif +#if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) + { /* zName: */ "schema_version", + /* ePragTyp: */ PragTyp_HEADER_VALUE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) + { /* zName: */ "secure_delete", + /* ePragTyp: */ PragTyp_SECURE_DELETE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "short_column_names", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_ShortColNames }, +#endif + { /* zName: */ "shrink_memory", + /* ePragTyp: */ PragTyp_SHRINK_MEMORY, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, + { /* zName: */ "soft_heap_limit", + /* ePragTyp: */ PragTyp_SOFT_HEAP_LIMIT, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) +#if defined(SQLITE_DEBUG) + { /* zName: */ "sql_trace", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_SqlTrace }, +#endif +#endif +#if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) + { /* zName: */ "stats", + /* ePragTyp: */ PragTyp_STATS, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) + { /* zName: */ "synchronous", + /* ePragTyp: */ PragTyp_SYNCHRONOUS, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) + { /* zName: */ "table_info", + /* ePragTyp: */ PragTyp_TABLE_INFO, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) + { /* zName: */ "temp_store", + /* ePragTyp: */ PragTyp_TEMP_STORE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, + { /* zName: */ "temp_store_directory", + /* ePragTyp: */ PragTyp_TEMP_STORE_DIRECTORY, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) + { /* zName: */ "user_version", + /* ePragTyp: */ PragTyp_HEADER_VALUE, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) +#if defined(SQLITE_DEBUG) + { /* zName: */ "vdbe_addoptrace", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_VdbeAddopTrace }, + { /* zName: */ "vdbe_debug", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_SqlTrace|SQLITE_VdbeListing|SQLITE_VdbeTrace }, + { /* zName: */ "vdbe_eqp", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_VdbeEQP }, + { /* zName: */ "vdbe_listing", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_VdbeListing }, + { /* zName: */ "vdbe_trace", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_VdbeTrace }, +#endif +#endif +#if !defined(SQLITE_OMIT_WAL) + { /* zName: */ "wal_autocheckpoint", + /* ePragTyp: */ PragTyp_WAL_AUTOCHECKPOINT, + /* ePragFlag: */ 0, + /* iArg: */ 0 }, + { /* zName: */ "wal_checkpoint", + /* ePragTyp: */ PragTyp_WAL_CHECKPOINT, + /* ePragFlag: */ PragFlag_NeedSchema, + /* iArg: */ 0 }, +#endif +#if !defined(SQLITE_OMIT_FLAG_PRAGMAS) + { /* zName: */ "writable_schema", + /* ePragTyp: */ PragTyp_FLAG, + /* ePragFlag: */ 0, + /* iArg: */ SQLITE_WriteSchema|SQLITE_RecoveryMode }, +#endif +}; +/* Number of pragmas: 56 on by default, 69 total. */ +/* End of the automatically generated pragma table. +***************************************************************************/ + +/* +** Interpret the given string as a safety level. Return 0 for OFF, +** 1 for ON or NORMAL and 2 for FULL. Return 1 for an empty or +** unrecognized string argument. The FULL option is disallowed +** if the omitFull parameter it 1. +** +** Note that the values returned are one less that the values that +** should be passed into sqlite3BtreeSetSafetyLevel(). The is done +** to support legacy SQL code. The safety level used to be boolean +** and older scripts may have used numbers 0 for OFF and 1 for ON. +*/ +static u8 getSafetyLevel(const char *z, int omitFull, int dflt){ + /* 123456789 123456789 */ + static const char zText[] = "onoffalseyestruefull"; + static const u8 iOffset[] = {0, 1, 2, 4, 9, 12, 16}; + static const u8 iLength[] = {2, 2, 3, 5, 3, 4, 4}; + static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 2}; + int i, n; + if( sqlite3Isdigit(*z) ){ + return (u8)sqlite3Atoi(z); + } + n = sqlite3Strlen30(z); + for(i=0; i=0&&i<=2)?i:0); +} +#endif /* ifndef SQLITE_OMIT_AUTOVACUUM */ + +#ifndef SQLITE_OMIT_PAGER_PRAGMAS +/* +** Interpret the given string as a temp db location. Return 1 for file +** backed temporary databases, 2 for the Red-Black tree in memory database +** and 0 to use the compile-time default. +*/ +static int getTempStore(const char *z){ + if( z[0]>='0' && z[0]<='2' ){ + return z[0] - '0'; + }else if( sqlite3StrICmp(z, "file")==0 ){ + return 1; + }else if( sqlite3StrICmp(z, "memory")==0 ){ + return 2; + }else{ + return 0; + } +} +#endif /* SQLITE_PAGER_PRAGMAS */ + +#ifndef SQLITE_OMIT_PAGER_PRAGMAS +/* +** Invalidate temp storage, either when the temp storage is changed +** from default, or when 'file' and the temp_store_directory has changed +*/ +static int invalidateTempStorage(Parse *pParse){ + sqlite3 *db = pParse->db; + if( db->aDb[1].pBt!=0 ){ + if( !db->autoCommit || sqlite3BtreeIsInReadTrans(db->aDb[1].pBt) ){ + sqlite3ErrorMsg(pParse, "temporary storage cannot be changed " + "from within a transaction"); + return SQLITE_ERROR; + } + sqlite3BtreeClose(db->aDb[1].pBt); + db->aDb[1].pBt = 0; + sqlite3ResetAllSchemasOfConnection(db); + } + return SQLITE_OK; +} +#endif /* SQLITE_PAGER_PRAGMAS */ + +#ifndef SQLITE_OMIT_PAGER_PRAGMAS +/* +** If the TEMP database is open, close it and mark the database schema +** as needing reloading. This must be done when using the SQLITE_TEMP_STORE +** or DEFAULT_TEMP_STORE pragmas. +*/ +static int changeTempStorage(Parse *pParse, const char *zStorageType){ + int ts = getTempStore(zStorageType); + sqlite3 *db = pParse->db; + if( db->temp_store==ts ) return SQLITE_OK; + if( invalidateTempStorage( pParse ) != SQLITE_OK ){ + return SQLITE_ERROR; + } + db->temp_store = (u8)ts; + return SQLITE_OK; +} +#endif /* SQLITE_PAGER_PRAGMAS */ + +/* +** Generate code to return a single integer value. +*/ +static void returnSingleInt(Parse *pParse, const char *zLabel, i64 value){ + Vdbe *v = sqlite3GetVdbe(pParse); + int mem = ++pParse->nMem; + i64 *pI64 = sqlite3DbMallocRaw(pParse->db, sizeof(value)); + if( pI64 ){ + memcpy(pI64, &value, sizeof(value)); + } + sqlite3VdbeAddOp4(v, OP_Int64, 0, mem, 0, (char*)pI64, P4_INT64); + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zLabel, SQLITE_STATIC); + sqlite3VdbeAddOp2(v, OP_ResultRow, mem, 1); +} + + +/* +** Set the safety_level and pager flags for pager iDb. Or if iDb<0 +** set these values for all pagers. +*/ +#ifndef SQLITE_OMIT_PAGER_PRAGMAS +static void setAllPagerFlags(sqlite3 *db){ + if( db->autoCommit ){ + Db *pDb = db->aDb; + int n = db->nDb; + assert( SQLITE_FullFSync==PAGER_FULLFSYNC ); + assert( SQLITE_CkptFullFSync==PAGER_CKPT_FULLFSYNC ); + assert( SQLITE_CacheSpill==PAGER_CACHESPILL ); + assert( (PAGER_FULLFSYNC | PAGER_CKPT_FULLFSYNC | PAGER_CACHESPILL) + == PAGER_FLAGS_MASK ); + assert( (pDb->safety_level & PAGER_SYNCHRONOUS_MASK)==pDb->safety_level ); + while( (n--) > 0 ){ + if( pDb->pBt ){ + sqlite3BtreeSetPagerFlags(pDb->pBt, + pDb->safety_level | (db->flags & PAGER_FLAGS_MASK) ); + } + pDb++; + } + } +} +#else +# define setAllPagerFlags(X) /* no-op */ +#endif + + +/* +** Return a human-readable name for a constraint resolution action. +*/ +#ifndef SQLITE_OMIT_FOREIGN_KEY +static const char *actionName(u8 action){ + const char *zName; + switch( action ){ + case OE_SetNull: zName = "SET NULL"; break; + case OE_SetDflt: zName = "SET DEFAULT"; break; + case OE_Cascade: zName = "CASCADE"; break; + case OE_Restrict: zName = "RESTRICT"; break; + default: zName = "NO ACTION"; + assert( action==OE_None ); break; + } + return zName; +} +#endif + + +/* +** Parameter eMode must be one of the PAGER_JOURNALMODE_XXX constants +** defined in pager.h. This function returns the associated lowercase +** journal-mode name. +*/ +SQLITE_PRIVATE const char *sqlite3JournalModename(int eMode){ + static char * const azModeName[] = { + "delete", "persist", "off", "truncate", "memory" +#ifndef SQLITE_OMIT_WAL + , "wal" +#endif + }; + assert( PAGER_JOURNALMODE_DELETE==0 ); + assert( PAGER_JOURNALMODE_PERSIST==1 ); + assert( PAGER_JOURNALMODE_OFF==2 ); + assert( PAGER_JOURNALMODE_TRUNCATE==3 ); + assert( PAGER_JOURNALMODE_MEMORY==4 ); + assert( PAGER_JOURNALMODE_WAL==5 ); + assert( eMode>=0 && eMode<=ArraySize(azModeName) ); + + if( eMode==ArraySize(azModeName) ) return 0; + return azModeName[eMode]; +} + +/* +** Process a pragma statement. +** +** Pragmas are of this form: +** +** PRAGMA [database.]id [= value] +** +** The identifier might also be a string. The value is a string, and +** identifier, or a number. If minusFlag is true, then the value is +** a number that was preceded by a minus sign. +** +** If the left side is "database.id" then pId1 is the database name +** and pId2 is the id. If the left side is just "id" then pId1 is the +** id and pId2 is any empty string. +*/ +SQLITE_PRIVATE void sqlite3Pragma( + Parse *pParse, + Token *pId1, /* First part of [database.]id field */ + Token *pId2, /* Second part of [database.]id field, or NULL */ + Token *pValue, /* Token for , or NULL */ + int minusFlag /* True if a '-' sign preceded */ +){ + char *zLeft = 0; /* Nul-terminated UTF-8 string */ + char *zRight = 0; /* Nul-terminated UTF-8 string , or NULL */ + const char *zDb = 0; /* The database name */ + Token *pId; /* Pointer to token */ + char *aFcntl[4]; /* Argument to SQLITE_FCNTL_PRAGMA */ + int iDb; /* Database index for */ + int lwr, upr, mid; /* Binary search bounds */ + int rc; /* return value form SQLITE_FCNTL_PRAGMA */ + sqlite3 *db = pParse->db; /* The database connection */ + Db *pDb; /* The specific database being pragmaed */ + Vdbe *v = sqlite3GetVdbe(pParse); /* Prepared statement */ + + if( v==0 ) return; + sqlite3VdbeRunOnlyOnce(v); + pParse->nMem = 2; + + /* Interpret the [database.] part of the pragma statement. iDb is the + ** index of the database this pragma is being applied to in db.aDb[]. */ + iDb = sqlite3TwoPartName(pParse, pId1, pId2, &pId); + if( iDb<0 ) return; + pDb = &db->aDb[iDb]; + + /* If the temp database has been explicitly named as part of the + ** pragma, make sure it is open. + */ + if( iDb==1 && sqlite3OpenTempDatabase(pParse) ){ + return; + } + + zLeft = sqlite3NameFromToken(db, pId); + if( !zLeft ) return; + if( minusFlag ){ + zRight = sqlite3MPrintf(db, "-%T", pValue); + }else{ + zRight = sqlite3NameFromToken(db, pValue); + } + + assert( pId2 ); + zDb = pId2->n>0 ? pDb->zName : 0; + if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){ + goto pragma_out; + } + + /* Send an SQLITE_FCNTL_PRAGMA file-control to the underlying VFS + ** connection. If it returns SQLITE_OK, then assume that the VFS + ** handled the pragma and generate a no-op prepared statement. + */ + aFcntl[0] = 0; + aFcntl[1] = zLeft; + aFcntl[2] = zRight; + aFcntl[3] = 0; + db->busyHandler.nBusy = 0; + rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_PRAGMA, (void*)aFcntl); + if( rc==SQLITE_OK ){ + if( aFcntl[0] ){ + int mem = ++pParse->nMem; + sqlite3VdbeAddOp4(v, OP_String8, 0, mem, 0, aFcntl[0], 0); + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "result", SQLITE_STATIC); + sqlite3VdbeAddOp2(v, OP_ResultRow, mem, 1); + sqlite3_free(aFcntl[0]); + } + goto pragma_out; + } + if( rc!=SQLITE_NOTFOUND ){ + if( aFcntl[0] ){ + sqlite3ErrorMsg(pParse, "%s", aFcntl[0]); + sqlite3_free(aFcntl[0]); + } + pParse->nErr++; + pParse->rc = rc; + goto pragma_out; + } + + /* Locate the pragma in the lookup table */ + lwr = 0; + upr = ArraySize(aPragmaNames)-1; + while( lwr<=upr ){ + mid = (lwr+upr)/2; + rc = sqlite3_stricmp(zLeft, aPragmaNames[mid].zName); + if( rc==0 ) break; + if( rc<0 ){ + upr = mid - 1; + }else{ + lwr = mid + 1; + } + } + if( lwr>upr ) goto pragma_out; + + /* Make sure the database schema is loaded if the pragma requires that */ + if( (aPragmaNames[mid].mPragFlag & PragFlag_NeedSchema)!=0 ){ + if( sqlite3ReadSchema(pParse) ) goto pragma_out; + } + + /* Jump to the appropriate pragma handler */ + switch( aPragmaNames[mid].ePragTyp ){ + +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && !defined(SQLITE_OMIT_DEPRECATED) + /* + ** PRAGMA [database.]default_cache_size + ** PRAGMA [database.]default_cache_size=N + ** + ** The first form reports the current persistent setting for the + ** page cache size. The value returned is the maximum number of + ** pages in the page cache. The second form sets both the current + ** page cache size value and the persistent page cache size value + ** stored in the database file. + ** + ** Older versions of SQLite would set the default cache size to a + ** negative number to indicate synchronous=OFF. These days, synchronous + ** is always on by default regardless of the sign of the default cache + ** size. But continue to take the absolute value of the default cache + ** size of historical compatibility. + */ + case PragTyp_DEFAULT_CACHE_SIZE: { + static const int iLn = VDBE_OFFSET_LINENO(2); + static const VdbeOpList getCacheSize[] = { + { OP_Transaction, 0, 0, 0}, /* 0 */ + { OP_ReadCookie, 0, 1, BTREE_DEFAULT_CACHE_SIZE}, /* 1 */ + { OP_IfPos, 1, 8, 0}, + { OP_Integer, 0, 2, 0}, + { OP_Subtract, 1, 2, 1}, + { OP_IfPos, 1, 8, 0}, + { OP_Integer, 0, 1, 0}, /* 6 */ + { OP_Noop, 0, 0, 0}, + { OP_ResultRow, 1, 1, 0}, + }; + int addr; + sqlite3VdbeUsesBtree(v, iDb); + if( !zRight ){ + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "cache_size", SQLITE_STATIC); + pParse->nMem += 2; + addr = sqlite3VdbeAddOpList(v, ArraySize(getCacheSize), getCacheSize,iLn); + sqlite3VdbeChangeP1(v, addr, iDb); + sqlite3VdbeChangeP1(v, addr+1, iDb); + sqlite3VdbeChangeP1(v, addr+6, SQLITE_DEFAULT_CACHE_SIZE); + }else{ + int size = sqlite3AbsInt32(sqlite3Atoi(zRight)); + sqlite3BeginWriteOperation(pParse, 0, iDb); + sqlite3VdbeAddOp2(v, OP_Integer, size, 1); + sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_DEFAULT_CACHE_SIZE, 1); + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + pDb->pSchema->cache_size = size; + sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size); + } + break; + } +#endif /* !SQLITE_OMIT_PAGER_PRAGMAS && !SQLITE_OMIT_DEPRECATED */ + +#if !defined(SQLITE_OMIT_PAGER_PRAGMAS) + /* + ** PRAGMA [database.]page_size + ** PRAGMA [database.]page_size=N + ** + ** The first form reports the current setting for the + ** database page size in bytes. The second form sets the + ** database page size value. The value can only be set if + ** the database has not yet been created. + */ + case PragTyp_PAGE_SIZE: { + Btree *pBt = pDb->pBt; + assert( pBt!=0 ); + if( !zRight ){ + int size = ALWAYS(pBt) ? sqlite3BtreeGetPageSize(pBt) : 0; + returnSingleInt(pParse, "page_size", size); + }else{ + /* Malloc may fail when setting the page-size, as there is an internal + ** buffer that the pager module resizes using sqlite3_realloc(). + */ + db->nextPagesize = sqlite3Atoi(zRight); + if( SQLITE_NOMEM==sqlite3BtreeSetPageSize(pBt, db->nextPagesize,-1,0) ){ + db->mallocFailed = 1; + } + } + break; + } + + /* + ** PRAGMA [database.]secure_delete + ** PRAGMA [database.]secure_delete=ON/OFF + ** + ** The first form reports the current setting for the + ** secure_delete flag. The second form changes the secure_delete + ** flag setting and reports thenew value. + */ + case PragTyp_SECURE_DELETE: { + Btree *pBt = pDb->pBt; + int b = -1; + assert( pBt!=0 ); + if( zRight ){ + b = sqlite3GetBoolean(zRight, 0); + } + if( pId2->n==0 && b>=0 ){ + int ii; + for(ii=0; iinDb; ii++){ + sqlite3BtreeSecureDelete(db->aDb[ii].pBt, b); + } + } + b = sqlite3BtreeSecureDelete(pBt, b); + returnSingleInt(pParse, "secure_delete", b); + break; + } + + /* + ** PRAGMA [database.]max_page_count + ** PRAGMA [database.]max_page_count=N + ** + ** The first form reports the current setting for the + ** maximum number of pages in the database file. The + ** second form attempts to change this setting. Both + ** forms return the current setting. + ** + ** The absolute value of N is used. This is undocumented and might + ** change. The only purpose is to provide an easy way to test + ** the sqlite3AbsInt32() function. + ** + ** PRAGMA [database.]page_count + ** + ** Return the number of pages in the specified database. + */ + case PragTyp_PAGE_COUNT: { + int iReg; + sqlite3CodeVerifySchema(pParse, iDb); + iReg = ++pParse->nMem; + if( sqlite3Tolower(zLeft[0])=='p' ){ + sqlite3VdbeAddOp2(v, OP_Pagecount, iDb, iReg); + }else{ + sqlite3VdbeAddOp3(v, OP_MaxPgcnt, iDb, iReg, + sqlite3AbsInt32(sqlite3Atoi(zRight))); + } + sqlite3VdbeAddOp2(v, OP_ResultRow, iReg, 1); + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zLeft, SQLITE_TRANSIENT); + break; + } + + /* + ** PRAGMA [database.]locking_mode + ** PRAGMA [database.]locking_mode = (normal|exclusive) + */ + case PragTyp_LOCKING_MODE: { + const char *zRet = "normal"; + int eMode = getLockingMode(zRight); + + if( pId2->n==0 && eMode==PAGER_LOCKINGMODE_QUERY ){ + /* Simple "PRAGMA locking_mode;" statement. This is a query for + ** the current default locking mode (which may be different to + ** the locking-mode of the main database). + */ + eMode = db->dfltLockMode; + }else{ + Pager *pPager; + if( pId2->n==0 ){ + /* This indicates that no database name was specified as part + ** of the PRAGMA command. In this case the locking-mode must be + ** set on all attached databases, as well as the main db file. + ** + ** Also, the sqlite3.dfltLockMode variable is set so that + ** any subsequently attached databases also use the specified + ** locking mode. + */ + int ii; + assert(pDb==&db->aDb[0]); + for(ii=2; iinDb; ii++){ + pPager = sqlite3BtreePager(db->aDb[ii].pBt); + sqlite3PagerLockingMode(pPager, eMode); + } + db->dfltLockMode = (u8)eMode; + } + pPager = sqlite3BtreePager(pDb->pBt); + eMode = sqlite3PagerLockingMode(pPager, eMode); + } + + assert( eMode==PAGER_LOCKINGMODE_NORMAL + || eMode==PAGER_LOCKINGMODE_EXCLUSIVE ); + if( eMode==PAGER_LOCKINGMODE_EXCLUSIVE ){ + zRet = "exclusive"; + } + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "locking_mode", SQLITE_STATIC); + sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, zRet, 0); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); + break; + } + + /* + ** PRAGMA [database.]journal_mode + ** PRAGMA [database.]journal_mode = + ** (delete|persist|off|truncate|memory|wal|off) + */ + case PragTyp_JOURNAL_MODE: { + int eMode; /* One of the PAGER_JOURNALMODE_XXX symbols */ + int ii; /* Loop counter */ + + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "journal_mode", SQLITE_STATIC); + + if( zRight==0 ){ + /* If there is no "=MODE" part of the pragma, do a query for the + ** current mode */ + eMode = PAGER_JOURNALMODE_QUERY; + }else{ + const char *zMode; + int n = sqlite3Strlen30(zRight); + for(eMode=0; (zMode = sqlite3JournalModename(eMode))!=0; eMode++){ + if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break; + } + if( !zMode ){ + /* If the "=MODE" part does not match any known journal mode, + ** then do a query */ + eMode = PAGER_JOURNALMODE_QUERY; + } + } + if( eMode==PAGER_JOURNALMODE_QUERY && pId2->n==0 ){ + /* Convert "PRAGMA journal_mode" into "PRAGMA main.journal_mode" */ + iDb = 0; + pId2->n = 1; + } + for(ii=db->nDb-1; ii>=0; ii--){ + if( db->aDb[ii].pBt && (ii==iDb || pId2->n==0) ){ + sqlite3VdbeUsesBtree(v, ii); + sqlite3VdbeAddOp3(v, OP_JournalMode, ii, 1, eMode); + } + } + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); + break; + } + + /* + ** PRAGMA [database.]journal_size_limit + ** PRAGMA [database.]journal_size_limit=N + ** + ** Get or set the size limit on rollback journal files. + */ + case PragTyp_JOURNAL_SIZE_LIMIT: { + Pager *pPager = sqlite3BtreePager(pDb->pBt); + i64 iLimit = -2; + if( zRight ){ + sqlite3Atoi64(zRight, &iLimit, sqlite3Strlen30(zRight), SQLITE_UTF8); + if( iLimit<-1 ) iLimit = -1; + } + iLimit = sqlite3PagerJournalSizeLimit(pPager, iLimit); + returnSingleInt(pParse, "journal_size_limit", iLimit); + break; + } + +#endif /* SQLITE_OMIT_PAGER_PRAGMAS */ + + /* + ** PRAGMA [database.]auto_vacuum + ** PRAGMA [database.]auto_vacuum=N + ** + ** Get or set the value of the database 'auto-vacuum' parameter. + ** The value is one of: 0 NONE 1 FULL 2 INCREMENTAL + */ +#ifndef SQLITE_OMIT_AUTOVACUUM + case PragTyp_AUTO_VACUUM: { + Btree *pBt = pDb->pBt; + assert( pBt!=0 ); + if( !zRight ){ + returnSingleInt(pParse, "auto_vacuum", sqlite3BtreeGetAutoVacuum(pBt)); + }else{ + int eAuto = getAutoVacuum(zRight); + assert( eAuto>=0 && eAuto<=2 ); + db->nextAutovac = (u8)eAuto; + /* Call SetAutoVacuum() to set initialize the internal auto and + ** incr-vacuum flags. This is required in case this connection + ** creates the database file. It is important that it is created + ** as an auto-vacuum capable db. + */ + rc = sqlite3BtreeSetAutoVacuum(pBt, eAuto); + if( rc==SQLITE_OK && (eAuto==1 || eAuto==2) ){ + /* When setting the auto_vacuum mode to either "full" or + ** "incremental", write the value of meta[6] in the database + ** file. Before writing to meta[6], check that meta[3] indicates + ** that this really is an auto-vacuum capable database. + */ + static const int iLn = VDBE_OFFSET_LINENO(2); + static const VdbeOpList setMeta6[] = { + { OP_Transaction, 0, 1, 0}, /* 0 */ + { OP_ReadCookie, 0, 1, BTREE_LARGEST_ROOT_PAGE}, + { OP_If, 1, 0, 0}, /* 2 */ + { OP_Halt, SQLITE_OK, OE_Abort, 0}, /* 3 */ + { OP_Integer, 0, 1, 0}, /* 4 */ + { OP_SetCookie, 0, BTREE_INCR_VACUUM, 1}, /* 5 */ + }; + int iAddr; + iAddr = sqlite3VdbeAddOpList(v, ArraySize(setMeta6), setMeta6, iLn); + sqlite3VdbeChangeP1(v, iAddr, iDb); + sqlite3VdbeChangeP1(v, iAddr+1, iDb); + sqlite3VdbeChangeP2(v, iAddr+2, iAddr+4); + sqlite3VdbeChangeP1(v, iAddr+4, eAuto-1); + sqlite3VdbeChangeP1(v, iAddr+5, iDb); + sqlite3VdbeUsesBtree(v, iDb); + } + } + break; + } +#endif + + /* + ** PRAGMA [database.]incremental_vacuum(N) + ** + ** Do N steps of incremental vacuuming on a database. + */ +#ifndef SQLITE_OMIT_AUTOVACUUM + case PragTyp_INCREMENTAL_VACUUM: { + int iLimit, addr; + if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){ + iLimit = 0x7fffffff; + } + sqlite3BeginWriteOperation(pParse, 0, iDb); + sqlite3VdbeAddOp2(v, OP_Integer, iLimit, 1); + addr = sqlite3VdbeAddOp1(v, OP_IncrVacuum, iDb); VdbeCoverage(v); + sqlite3VdbeAddOp1(v, OP_ResultRow, 1); + sqlite3VdbeAddOp2(v, OP_AddImm, 1, -1); + sqlite3VdbeAddOp2(v, OP_IfPos, 1, addr); VdbeCoverage(v); + sqlite3VdbeJumpHere(v, addr); + break; + } +#endif + +#ifndef SQLITE_OMIT_PAGER_PRAGMAS + /* + ** PRAGMA [database.]cache_size + ** PRAGMA [database.]cache_size=N + ** + ** The first form reports the current local setting for the + ** page cache size. The second form sets the local + ** page cache size value. If N is positive then that is the + ** number of pages in the cache. If N is negative, then the + ** number of pages is adjusted so that the cache uses -N kibibytes + ** of memory. + */ + case PragTyp_CACHE_SIZE: { + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + if( !zRight ){ + returnSingleInt(pParse, "cache_size", pDb->pSchema->cache_size); + }else{ + int size = sqlite3Atoi(zRight); + pDb->pSchema->cache_size = size; + sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size); + } + break; + } + + /* + ** PRAGMA [database.]mmap_size(N) + ** + ** Used to set mapping size limit. The mapping size limit is + ** used to limit the aggregate size of all memory mapped regions of the + ** database file. If this parameter is set to zero, then memory mapping + ** is not used at all. If N is negative, then the default memory map + ** limit determined by sqlite3_config(SQLITE_CONFIG_MMAP_SIZE) is set. + ** The parameter N is measured in bytes. + ** + ** This value is advisory. The underlying VFS is free to memory map + ** as little or as much as it wants. Except, if N is set to 0 then the + ** upper layers will never invoke the xFetch interfaces to the VFS. + */ + case PragTyp_MMAP_SIZE: { + sqlite3_int64 sz; +#if SQLITE_MAX_MMAP_SIZE>0 + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + if( zRight ){ + int ii; + sqlite3Atoi64(zRight, &sz, sqlite3Strlen30(zRight), SQLITE_UTF8); + if( sz<0 ) sz = sqlite3GlobalConfig.szMmap; + if( pId2->n==0 ) db->szMmap = sz; + for(ii=db->nDb-1; ii>=0; ii--){ + if( db->aDb[ii].pBt && (ii==iDb || pId2->n==0) ){ + sqlite3BtreeSetMmapLimit(db->aDb[ii].pBt, sz); + } + } + } + sz = -1; + rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_MMAP_SIZE, &sz); +#else + sz = 0; + rc = SQLITE_OK; +#endif + if( rc==SQLITE_OK ){ + returnSingleInt(pParse, "mmap_size", sz); + }else if( rc!=SQLITE_NOTFOUND ){ + pParse->nErr++; + pParse->rc = rc; + } + break; + } + + /* + ** PRAGMA temp_store + ** PRAGMA temp_store = "default"|"memory"|"file" + ** + ** Return or set the local value of the temp_store flag. Changing + ** the local value does not make changes to the disk file and the default + ** value will be restored the next time the database is opened. + ** + ** Note that it is possible for the library compile-time options to + ** override this setting + */ + case PragTyp_TEMP_STORE: { + if( !zRight ){ + returnSingleInt(pParse, "temp_store", db->temp_store); + }else{ + changeTempStorage(pParse, zRight); + } + break; + } + + /* + ** PRAGMA temp_store_directory + ** PRAGMA temp_store_directory = ""|"directory_name" + ** + ** Return or set the local value of the temp_store_directory flag. Changing + ** the value sets a specific directory to be used for temporary files. + ** Setting to a null string reverts to the default temporary directory search. + ** If temporary directory is changed, then invalidateTempStorage. + ** + */ + case PragTyp_TEMP_STORE_DIRECTORY: { + if( !zRight ){ + if( sqlite3_temp_directory ){ + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, + "temp_store_directory", SQLITE_STATIC); + sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, sqlite3_temp_directory, 0); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); + } + }else{ +#ifndef SQLITE_OMIT_WSD + if( zRight[0] ){ + int res; + rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res); + if( rc!=SQLITE_OK || res==0 ){ + sqlite3ErrorMsg(pParse, "not a writable directory"); + goto pragma_out; + } + } + if( SQLITE_TEMP_STORE==0 + || (SQLITE_TEMP_STORE==1 && db->temp_store<=1) + || (SQLITE_TEMP_STORE==2 && db->temp_store==1) + ){ + invalidateTempStorage(pParse); + } + sqlite3_free(sqlite3_temp_directory); + if( zRight[0] ){ + sqlite3_temp_directory = sqlite3_mprintf("%s", zRight); + }else{ + sqlite3_temp_directory = 0; + } +#endif /* SQLITE_OMIT_WSD */ + } + break; + } + +#if SQLITE_OS_WIN + /* + ** PRAGMA data_store_directory + ** PRAGMA data_store_directory = ""|"directory_name" + ** + ** Return or set the local value of the data_store_directory flag. Changing + ** the value sets a specific directory to be used for database files that + ** were specified with a relative pathname. Setting to a null string reverts + ** to the default database directory, which for database files specified with + ** a relative path will probably be based on the current directory for the + ** process. Database file specified with an absolute path are not impacted + ** by this setting, regardless of its value. + ** + */ + case PragTyp_DATA_STORE_DIRECTORY: { + if( !zRight ){ + if( sqlite3_data_directory ){ + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, + "data_store_directory", SQLITE_STATIC); + sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, sqlite3_data_directory, 0); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); + } + }else{ +#ifndef SQLITE_OMIT_WSD + if( zRight[0] ){ + int res; + rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res); + if( rc!=SQLITE_OK || res==0 ){ + sqlite3ErrorMsg(pParse, "not a writable directory"); + goto pragma_out; + } + } + sqlite3_free(sqlite3_data_directory); + if( zRight[0] ){ + sqlite3_data_directory = sqlite3_mprintf("%s", zRight); + }else{ + sqlite3_data_directory = 0; + } +#endif /* SQLITE_OMIT_WSD */ + } + break; + } +#endif + +#if SQLITE_ENABLE_LOCKING_STYLE + /* + ** PRAGMA [database.]lock_proxy_file + ** PRAGMA [database.]lock_proxy_file = ":auto:"|"lock_file_path" + ** + ** Return or set the value of the lock_proxy_file flag. Changing + ** the value sets a specific file to be used for database access locks. + ** + */ + case PragTyp_LOCK_PROXY_FILE: { + if( !zRight ){ + Pager *pPager = sqlite3BtreePager(pDb->pBt); + char *proxy_file_path = NULL; + sqlite3_file *pFile = sqlite3PagerFile(pPager); + sqlite3OsFileControlHint(pFile, SQLITE_GET_LOCKPROXYFILE, + &proxy_file_path); + + if( proxy_file_path ){ + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, + "lock_proxy_file", SQLITE_STATIC); + sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, proxy_file_path, 0); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); + } + }else{ + Pager *pPager = sqlite3BtreePager(pDb->pBt); + sqlite3_file *pFile = sqlite3PagerFile(pPager); + int res; + if( zRight[0] ){ + res=sqlite3OsFileControl(pFile, SQLITE_SET_LOCKPROXYFILE, + zRight); + } else { + res=sqlite3OsFileControl(pFile, SQLITE_SET_LOCKPROXYFILE, + NULL); + } + if( res!=SQLITE_OK ){ + sqlite3ErrorMsg(pParse, "failed to set lock proxy file"); + goto pragma_out; + } + } + break; + } +#endif /* SQLITE_ENABLE_LOCKING_STYLE */ + + /* + ** PRAGMA [database.]synchronous + ** PRAGMA [database.]synchronous=OFF|ON|NORMAL|FULL + ** + ** Return or set the local value of the synchronous flag. Changing + ** the local value does not make changes to the disk file and the + ** default value will be restored the next time the database is + ** opened. + */ + case PragTyp_SYNCHRONOUS: { + if( !zRight ){ + returnSingleInt(pParse, "synchronous", pDb->safety_level-1); + }else{ + if( !db->autoCommit ){ + sqlite3ErrorMsg(pParse, + "Safety level may not be changed inside a transaction"); + }else{ + pDb->safety_level = getSafetyLevel(zRight,0,1)+1; + setAllPagerFlags(db); + } + } + break; + } +#endif /* SQLITE_OMIT_PAGER_PRAGMAS */ + +#ifndef SQLITE_OMIT_FLAG_PRAGMAS + case PragTyp_FLAG: { + if( zRight==0 ){ + returnSingleInt(pParse, aPragmaNames[mid].zName, + (db->flags & aPragmaNames[mid].iArg)!=0 ); + }else{ + int mask = aPragmaNames[mid].iArg; /* Mask of bits to set or clear. */ + if( db->autoCommit==0 ){ + /* Foreign key support may not be enabled or disabled while not + ** in auto-commit mode. */ + mask &= ~(SQLITE_ForeignKeys); + } + + if( sqlite3GetBoolean(zRight, 0) ){ + db->flags |= mask; + }else{ + db->flags &= ~mask; + if( mask==SQLITE_DeferFKs ) db->nDeferredImmCons = 0; + } + + /* Many of the flag-pragmas modify the code generated by the SQL + ** compiler (eg. count_changes). So add an opcode to expire all + ** compiled SQL statements after modifying a pragma value. + */ + sqlite3VdbeAddOp2(v, OP_Expire, 0, 0); + setAllPagerFlags(db); + } + break; + } +#endif /* SQLITE_OMIT_FLAG_PRAGMAS */ + +#ifndef SQLITE_OMIT_SCHEMA_PRAGMAS + /* + ** PRAGMA table_info(
          ) + ** + ** Return a single row for each column of the named table. The columns of + ** the returned data set are: + ** + ** cid: Column id (numbered from left to right, starting at 0) + ** name: Column name + ** type: Column declaration type. + ** notnull: True if 'NOT NULL' is part of column declaration + ** dflt_value: The default value for the column, if any. + */ + case PragTyp_TABLE_INFO: if( zRight ){ + Table *pTab; + pTab = sqlite3FindTable(db, zRight, zDb); + if( pTab ){ + int i, k; + int nHidden = 0; + Column *pCol; + Index *pPk = sqlite3PrimaryKeyIndex(pTab); + sqlite3VdbeSetNumCols(v, 6); + pParse->nMem = 6; + sqlite3CodeVerifySchema(pParse, iDb); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "cid", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "name", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "type", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 3, COLNAME_NAME, "notnull", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 4, COLNAME_NAME, "dflt_value", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 5, COLNAME_NAME, "pk", SQLITE_STATIC); + sqlite3ViewGetColumnNames(pParse, pTab); + for(i=0, pCol=pTab->aCol; inCol; i++, pCol++){ + if( IsHiddenColumn(pCol) ){ + nHidden++; + continue; + } + sqlite3VdbeAddOp2(v, OP_Integer, i-nHidden, 1); + sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, pCol->zName, 0); + sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, + pCol->zType ? pCol->zType : "", 0); + sqlite3VdbeAddOp2(v, OP_Integer, (pCol->notNull ? 1 : 0), 4); + if( pCol->zDflt ){ + sqlite3VdbeAddOp4(v, OP_String8, 0, 5, 0, (char*)pCol->zDflt, 0); + }else{ + sqlite3VdbeAddOp2(v, OP_Null, 0, 5); + } + if( (pCol->colFlags & COLFLAG_PRIMKEY)==0 ){ + k = 0; + }else if( pPk==0 ){ + k = 1; + }else{ + for(k=1; ALWAYS(k<=pTab->nCol) && pPk->aiColumn[k-1]!=i; k++){} + } + sqlite3VdbeAddOp2(v, OP_Integer, k, 6); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 6); + } + } + } + break; + + case PragTyp_STATS: { + Index *pIdx; + HashElem *i; + v = sqlite3GetVdbe(pParse); + sqlite3VdbeSetNumCols(v, 4); + pParse->nMem = 4; + sqlite3CodeVerifySchema(pParse, iDb); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "table", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "index", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "width", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 3, COLNAME_NAME, "height", SQLITE_STATIC); + for(i=sqliteHashFirst(&pDb->pSchema->tblHash); i; i=sqliteHashNext(i)){ + Table *pTab = sqliteHashData(i); + sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, pTab->zName, 0); + sqlite3VdbeAddOp2(v, OP_Null, 0, 2); + sqlite3VdbeAddOp2(v, OP_Integer, + (int)sqlite3LogEstToInt(pTab->szTabRow), 3); + sqlite3VdbeAddOp2(v, OP_Integer, + (int)sqlite3LogEstToInt(pTab->nRowLogEst), 4); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 4); + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, pIdx->zName, 0); + sqlite3VdbeAddOp2(v, OP_Integer, + (int)sqlite3LogEstToInt(pIdx->szIdxRow), 3); + sqlite3VdbeAddOp2(v, OP_Integer, + (int)sqlite3LogEstToInt(pIdx->aiRowLogEst[0]), 4); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 4); + } + } + } + break; + + case PragTyp_INDEX_INFO: if( zRight ){ + Index *pIdx; + Table *pTab; + pIdx = sqlite3FindIndex(db, zRight, zDb); + if( pIdx ){ + int i; + pTab = pIdx->pTable; + sqlite3VdbeSetNumCols(v, 3); + pParse->nMem = 3; + sqlite3CodeVerifySchema(pParse, iDb); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "seqno", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "cid", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "name", SQLITE_STATIC); + for(i=0; inKeyCol; i++){ + i16 cnum = pIdx->aiColumn[i]; + sqlite3VdbeAddOp2(v, OP_Integer, i, 1); + sqlite3VdbeAddOp2(v, OP_Integer, cnum, 2); + assert( pTab->nCol>cnum ); + sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, pTab->aCol[cnum].zName, 0); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 3); + } + } + } + break; + + case PragTyp_INDEX_LIST: if( zRight ){ + Index *pIdx; + Table *pTab; + int i; + pTab = sqlite3FindTable(db, zRight, zDb); + if( pTab ){ + v = sqlite3GetVdbe(pParse); + sqlite3VdbeSetNumCols(v, 3); + pParse->nMem = 3; + sqlite3CodeVerifySchema(pParse, iDb); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "seq", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "name", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "unique", SQLITE_STATIC); + for(pIdx=pTab->pIndex, i=0; pIdx; pIdx=pIdx->pNext, i++){ + sqlite3VdbeAddOp2(v, OP_Integer, i, 1); + sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, pIdx->zName, 0); + sqlite3VdbeAddOp2(v, OP_Integer, pIdx->onError!=OE_None, 3); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 3); + } + } + } + break; + + case PragTyp_DATABASE_LIST: { + int i; + sqlite3VdbeSetNumCols(v, 3); + pParse->nMem = 3; + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "seq", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "name", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "file", SQLITE_STATIC); + for(i=0; inDb; i++){ + if( db->aDb[i].pBt==0 ) continue; + assert( db->aDb[i].zName!=0 ); + sqlite3VdbeAddOp2(v, OP_Integer, i, 1); + sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, db->aDb[i].zName, 0); + sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, + sqlite3BtreeGetFilename(db->aDb[i].pBt), 0); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 3); + } + } + break; + + case PragTyp_COLLATION_LIST: { + int i = 0; + HashElem *p; + sqlite3VdbeSetNumCols(v, 2); + pParse->nMem = 2; + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "seq", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "name", SQLITE_STATIC); + for(p=sqliteHashFirst(&db->aCollSeq); p; p=sqliteHashNext(p)){ + CollSeq *pColl = (CollSeq *)sqliteHashData(p); + sqlite3VdbeAddOp2(v, OP_Integer, i++, 1); + sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, pColl->zName, 0); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 2); + } + } + break; +#endif /* SQLITE_OMIT_SCHEMA_PRAGMAS */ + +#ifndef SQLITE_OMIT_FOREIGN_KEY + case PragTyp_FOREIGN_KEY_LIST: if( zRight ){ + FKey *pFK; + Table *pTab; + pTab = sqlite3FindTable(db, zRight, zDb); + if( pTab ){ + v = sqlite3GetVdbe(pParse); + pFK = pTab->pFKey; + if( pFK ){ + int i = 0; + sqlite3VdbeSetNumCols(v, 8); + pParse->nMem = 8; + sqlite3CodeVerifySchema(pParse, iDb); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "id", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "seq", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "table", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 3, COLNAME_NAME, "from", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 4, COLNAME_NAME, "to", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 5, COLNAME_NAME, "on_update", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 6, COLNAME_NAME, "on_delete", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 7, COLNAME_NAME, "match", SQLITE_STATIC); + while(pFK){ + int j; + for(j=0; jnCol; j++){ + char *zCol = pFK->aCol[j].zCol; + char *zOnDelete = (char *)actionName(pFK->aAction[0]); + char *zOnUpdate = (char *)actionName(pFK->aAction[1]); + sqlite3VdbeAddOp2(v, OP_Integer, i, 1); + sqlite3VdbeAddOp2(v, OP_Integer, j, 2); + sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, pFK->zTo, 0); + sqlite3VdbeAddOp4(v, OP_String8, 0, 4, 0, + pTab->aCol[pFK->aCol[j].iFrom].zName, 0); + sqlite3VdbeAddOp4(v, zCol ? OP_String8 : OP_Null, 0, 5, 0, zCol, 0); + sqlite3VdbeAddOp4(v, OP_String8, 0, 6, 0, zOnUpdate, 0); + sqlite3VdbeAddOp4(v, OP_String8, 0, 7, 0, zOnDelete, 0); + sqlite3VdbeAddOp4(v, OP_String8, 0, 8, 0, "NONE", 0); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 8); + } + ++i; + pFK = pFK->pNextFrom; + } + } + } + } + break; +#endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */ + +#ifndef SQLITE_OMIT_FOREIGN_KEY +#ifndef SQLITE_OMIT_TRIGGER + case PragTyp_FOREIGN_KEY_CHECK: { + FKey *pFK; /* A foreign key constraint */ + Table *pTab; /* Child table contain "REFERENCES" keyword */ + Table *pParent; /* Parent table that child points to */ + Index *pIdx; /* Index in the parent table */ + int i; /* Loop counter: Foreign key number for pTab */ + int j; /* Loop counter: Field of the foreign key */ + HashElem *k; /* Loop counter: Next table in schema */ + int x; /* result variable */ + int regResult; /* 3 registers to hold a result row */ + int regKey; /* Register to hold key for checking the FK */ + int regRow; /* Registers to hold a row from pTab */ + int addrTop; /* Top of a loop checking foreign keys */ + int addrOk; /* Jump here if the key is OK */ + int *aiCols; /* child to parent column mapping */ + + regResult = pParse->nMem+1; + pParse->nMem += 4; + regKey = ++pParse->nMem; + regRow = ++pParse->nMem; + v = sqlite3GetVdbe(pParse); + sqlite3VdbeSetNumCols(v, 4); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "table", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "rowid", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "parent", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 3, COLNAME_NAME, "fkid", SQLITE_STATIC); + sqlite3CodeVerifySchema(pParse, iDb); + k = sqliteHashFirst(&db->aDb[iDb].pSchema->tblHash); + while( k ){ + if( zRight ){ + pTab = sqlite3LocateTable(pParse, 0, zRight, zDb); + k = 0; + }else{ + pTab = (Table*)sqliteHashData(k); + k = sqliteHashNext(k); + } + if( pTab==0 || pTab->pFKey==0 ) continue; + sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); + if( pTab->nCol+regRow>pParse->nMem ) pParse->nMem = pTab->nCol + regRow; + sqlite3OpenTable(pParse, 0, iDb, pTab, OP_OpenRead); + sqlite3VdbeAddOp4(v, OP_String8, 0, regResult, 0, pTab->zName, + P4_TRANSIENT); + for(i=1, pFK=pTab->pFKey; pFK; i++, pFK=pFK->pNextFrom){ + pParent = sqlite3FindTable(db, pFK->zTo, zDb); + if( pParent==0 ) continue; + pIdx = 0; + sqlite3TableLock(pParse, iDb, pParent->tnum, 0, pParent->zName); + x = sqlite3FkLocateIndex(pParse, pParent, pFK, &pIdx, 0); + if( x==0 ){ + if( pIdx==0 ){ + sqlite3OpenTable(pParse, i, iDb, pParent, OP_OpenRead); + }else{ + sqlite3VdbeAddOp3(v, OP_OpenRead, i, pIdx->tnum, iDb); + sqlite3VdbeSetP4KeyInfo(pParse, pIdx); + } + }else{ + k = 0; + break; + } + } + assert( pParse->nErr>0 || pFK==0 ); + if( pFK ) break; + if( pParse->nTabnTab = i; + addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, 0); VdbeCoverage(v); + for(i=1, pFK=pTab->pFKey; pFK; i++, pFK=pFK->pNextFrom){ + pParent = sqlite3FindTable(db, pFK->zTo, zDb); + pIdx = 0; + aiCols = 0; + if( pParent ){ + x = sqlite3FkLocateIndex(pParse, pParent, pFK, &pIdx, &aiCols); + assert( x==0 ); + } + addrOk = sqlite3VdbeMakeLabel(v); + if( pParent && pIdx==0 ){ + int iKey = pFK->aCol[0].iFrom; + assert( iKey>=0 && iKeynCol ); + if( iKey!=pTab->iPKey ){ + sqlite3VdbeAddOp3(v, OP_Column, 0, iKey, regRow); + sqlite3ColumnDefault(v, pTab, iKey, regRow); + sqlite3VdbeAddOp2(v, OP_IsNull, regRow, addrOk); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_MustBeInt, regRow, + sqlite3VdbeCurrentAddr(v)+3); VdbeCoverage(v); + }else{ + sqlite3VdbeAddOp2(v, OP_Rowid, 0, regRow); + } + sqlite3VdbeAddOp3(v, OP_NotExists, i, 0, regRow); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Goto, 0, addrOk); + sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); + }else{ + for(j=0; jnCol; j++){ + sqlite3ExprCodeGetColumnOfTable(v, pTab, 0, + aiCols ? aiCols[j] : pFK->aCol[j].iFrom, regRow+j); + sqlite3VdbeAddOp2(v, OP_IsNull, regRow+j, addrOk); VdbeCoverage(v); + } + if( pParent ){ + sqlite3VdbeAddOp4(v, OP_MakeRecord, regRow, pFK->nCol, regKey, + sqlite3IndexAffinityStr(v,pIdx), pFK->nCol); + sqlite3VdbeAddOp4Int(v, OP_Found, i, addrOk, regKey, 0); + VdbeCoverage(v); + } + } + sqlite3VdbeAddOp2(v, OP_Rowid, 0, regResult+1); + sqlite3VdbeAddOp4(v, OP_String8, 0, regResult+2, 0, + pFK->zTo, P4_TRANSIENT); + sqlite3VdbeAddOp2(v, OP_Integer, i-1, regResult+3); + sqlite3VdbeAddOp2(v, OP_ResultRow, regResult, 4); + sqlite3VdbeResolveLabel(v, addrOk); + sqlite3DbFree(db, aiCols); + } + sqlite3VdbeAddOp2(v, OP_Next, 0, addrTop+1); VdbeCoverage(v); + sqlite3VdbeJumpHere(v, addrTop); + } + } + break; +#endif /* !defined(SQLITE_OMIT_TRIGGER) */ +#endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */ + +#ifndef NDEBUG + case PragTyp_PARSER_TRACE: { + if( zRight ){ + if( sqlite3GetBoolean(zRight, 0) ){ + sqlite3ParserTrace(stderr, "parser: "); + }else{ + sqlite3ParserTrace(0, 0); + } + } + } + break; +#endif + + /* Reinstall the LIKE and GLOB functions. The variant of LIKE + ** used will be case sensitive or not depending on the RHS. + */ + case PragTyp_CASE_SENSITIVE_LIKE: { + if( zRight ){ + sqlite3RegisterLikeFunctions(db, sqlite3GetBoolean(zRight, 0)); + } + } + break; + +#ifndef SQLITE_INTEGRITY_CHECK_ERROR_MAX +# define SQLITE_INTEGRITY_CHECK_ERROR_MAX 100 +#endif + +#ifndef SQLITE_OMIT_INTEGRITY_CHECK + /* Pragma "quick_check" is reduced version of + ** integrity_check designed to detect most database corruption + ** without most of the overhead of a full integrity-check. + */ + case PragTyp_INTEGRITY_CHECK: { + int i, j, addr, mxErr; + + /* Code that appears at the end of the integrity check. If no error + ** messages have been generated, output OK. Otherwise output the + ** error message + */ + static const int iLn = VDBE_OFFSET_LINENO(2); + static const VdbeOpList endCode[] = { + { OP_AddImm, 1, 0, 0}, /* 0 */ + { OP_IfNeg, 1, 0, 0}, /* 1 */ + { OP_String8, 0, 3, 0}, /* 2 */ + { OP_ResultRow, 3, 1, 0}, + }; + + int isQuick = (sqlite3Tolower(zLeft[0])=='q'); + + /* If the PRAGMA command was of the form "PRAGMA .integrity_check", + ** then iDb is set to the index of the database identified by . + ** In this case, the integrity of database iDb only is verified by + ** the VDBE created below. + ** + ** Otherwise, if the command was simply "PRAGMA integrity_check" (or + ** "PRAGMA quick_check"), then iDb is set to 0. In this case, set iDb + ** to -1 here, to indicate that the VDBE should verify the integrity + ** of all attached databases. */ + assert( iDb>=0 ); + assert( iDb==0 || pId2->z ); + if( pId2->z==0 ) iDb = -1; + + /* Initialize the VDBE program */ + pParse->nMem = 6; + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "integrity_check", SQLITE_STATIC); + + /* Set the maximum error count */ + mxErr = SQLITE_INTEGRITY_CHECK_ERROR_MAX; + if( zRight ){ + sqlite3GetInt32(zRight, &mxErr); + if( mxErr<=0 ){ + mxErr = SQLITE_INTEGRITY_CHECK_ERROR_MAX; + } + } + sqlite3VdbeAddOp2(v, OP_Integer, mxErr, 1); /* reg[1] holds errors left */ + + /* Do an integrity check on each database file */ + for(i=0; inDb; i++){ + HashElem *x; + Hash *pTbls; + int cnt = 0; + + if( OMIT_TEMPDB && i==1 ) continue; + if( iDb>=0 && i!=iDb ) continue; + + sqlite3CodeVerifySchema(pParse, i); + addr = sqlite3VdbeAddOp1(v, OP_IfPos, 1); /* Halt if out of errors */ + VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Halt, 0, 0); + sqlite3VdbeJumpHere(v, addr); + + /* Do an integrity check of the B-Tree + ** + ** Begin by filling registers 2, 3, ... with the root pages numbers + ** for all tables and indices in the database. + */ + assert( sqlite3SchemaMutexHeld(db, i, 0) ); + pTbls = &db->aDb[i].pSchema->tblHash; + for(x=sqliteHashFirst(pTbls); x; x=sqliteHashNext(x)){ + Table *pTab = sqliteHashData(x); + Index *pIdx; + if( HasRowid(pTab) ){ + sqlite3VdbeAddOp2(v, OP_Integer, pTab->tnum, 2+cnt); + VdbeComment((v, "%s", pTab->zName)); + cnt++; + } + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + sqlite3VdbeAddOp2(v, OP_Integer, pIdx->tnum, 2+cnt); + VdbeComment((v, "%s", pIdx->zName)); + cnt++; + } + } + + /* Make sure sufficient number of registers have been allocated */ + pParse->nMem = MAX( pParse->nMem, cnt+8 ); + + /* Do the b-tree integrity checks */ + sqlite3VdbeAddOp3(v, OP_IntegrityCk, 2, cnt, 1); + sqlite3VdbeChangeP5(v, (u8)i); + addr = sqlite3VdbeAddOp1(v, OP_IsNull, 2); VdbeCoverage(v); + sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, + sqlite3MPrintf(db, "*** in database %s ***\n", db->aDb[i].zName), + P4_DYNAMIC); + sqlite3VdbeAddOp3(v, OP_Move, 2, 4, 1); + sqlite3VdbeAddOp3(v, OP_Concat, 4, 3, 2); + sqlite3VdbeAddOp2(v, OP_ResultRow, 2, 1); + sqlite3VdbeJumpHere(v, addr); + + /* Make sure all the indices are constructed correctly. + */ + for(x=sqliteHashFirst(pTbls); x && !isQuick; x=sqliteHashNext(x)){ + Table *pTab = sqliteHashData(x); + Index *pIdx, *pPk; + Index *pPrior = 0; + int loopTop; + int iDataCur, iIdxCur; + int r1 = -1; + + if( pTab->pIndex==0 ) continue; + pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); + addr = sqlite3VdbeAddOp1(v, OP_IfPos, 1); /* Stop if out of errors */ + VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Halt, 0, 0); + sqlite3VdbeJumpHere(v, addr); + sqlite3ExprCacheClear(pParse); + sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenRead, + 1, 0, &iDataCur, &iIdxCur); + sqlite3VdbeAddOp2(v, OP_Integer, 0, 7); + for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ + sqlite3VdbeAddOp2(v, OP_Integer, 0, 8+j); /* index entries counter */ + } + pParse->nMem = MAX(pParse->nMem, 8+j); + sqlite3VdbeAddOp2(v, OP_Rewind, iDataCur, 0); VdbeCoverage(v); + loopTop = sqlite3VdbeAddOp2(v, OP_AddImm, 7, 1); + for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ + int jmp2, jmp3, jmp4; + if( pPk==pIdx ) continue; + r1 = sqlite3GenerateIndexKey(pParse, pIdx, iDataCur, 0, 0, &jmp3, + pPrior, r1); + pPrior = pIdx; + sqlite3VdbeAddOp2(v, OP_AddImm, 8+j, 1); /* increment entry count */ + jmp2 = sqlite3VdbeAddOp4Int(v, OP_Found, iIdxCur+j, 0, r1, + pIdx->nColumn); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_AddImm, 1, -1); /* Decrement error limit */ + sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, "row ", P4_STATIC); + sqlite3VdbeAddOp3(v, OP_Concat, 7, 3, 3); + sqlite3VdbeAddOp4(v, OP_String8, 0, 4, 0, " missing from index ", + P4_STATIC); + sqlite3VdbeAddOp3(v, OP_Concat, 4, 3, 3); + sqlite3VdbeAddOp4(v, OP_String8, 0, 4, 0, pIdx->zName, P4_TRANSIENT); + sqlite3VdbeAddOp3(v, OP_Concat, 4, 3, 3); + sqlite3VdbeAddOp2(v, OP_ResultRow, 3, 1); + jmp4 = sqlite3VdbeAddOp1(v, OP_IfPos, 1); VdbeCoverage(v); + sqlite3VdbeAddOp0(v, OP_Halt); + sqlite3VdbeJumpHere(v, jmp4); + sqlite3VdbeJumpHere(v, jmp2); + sqlite3ResolvePartIdxLabel(pParse, jmp3); + } + sqlite3VdbeAddOp2(v, OP_Next, iDataCur, loopTop); VdbeCoverage(v); + sqlite3VdbeJumpHere(v, loopTop-1); +#ifndef SQLITE_OMIT_BTREECOUNT + sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, + "wrong # of entries in index ", P4_STATIC); + for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ + if( pPk==pIdx ) continue; + addr = sqlite3VdbeCurrentAddr(v); + sqlite3VdbeAddOp2(v, OP_IfPos, 1, addr+2); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Halt, 0, 0); + sqlite3VdbeAddOp2(v, OP_Count, iIdxCur+j, 3); + sqlite3VdbeAddOp3(v, OP_Eq, 8+j, addr+8, 3); VdbeCoverage(v); + sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); + sqlite3VdbeAddOp2(v, OP_AddImm, 1, -1); + sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, pIdx->zName, P4_TRANSIENT); + sqlite3VdbeAddOp3(v, OP_Concat, 3, 2, 7); + sqlite3VdbeAddOp2(v, OP_ResultRow, 7, 1); + } +#endif /* SQLITE_OMIT_BTREECOUNT */ + } + } + addr = sqlite3VdbeAddOpList(v, ArraySize(endCode), endCode, iLn); + sqlite3VdbeChangeP2(v, addr, -mxErr); + sqlite3VdbeJumpHere(v, addr+1); + sqlite3VdbeChangeP4(v, addr+2, "ok", P4_STATIC); + } + break; +#endif /* SQLITE_OMIT_INTEGRITY_CHECK */ + +#ifndef SQLITE_OMIT_UTF16 + /* + ** PRAGMA encoding + ** PRAGMA encoding = "utf-8"|"utf-16"|"utf-16le"|"utf-16be" + ** + ** In its first form, this pragma returns the encoding of the main + ** database. If the database is not initialized, it is initialized now. + ** + ** The second form of this pragma is a no-op if the main database file + ** has not already been initialized. In this case it sets the default + ** encoding that will be used for the main database file if a new file + ** is created. If an existing main database file is opened, then the + ** default text encoding for the existing database is used. + ** + ** In all cases new databases created using the ATTACH command are + ** created to use the same default text encoding as the main database. If + ** the main database has not been initialized and/or created when ATTACH + ** is executed, this is done before the ATTACH operation. + ** + ** In the second form this pragma sets the text encoding to be used in + ** new database files created using this database handle. It is only + ** useful if invoked immediately after the main database i + */ + case PragTyp_ENCODING: { + static const struct EncName { + char *zName; + u8 enc; + } encnames[] = { + { "UTF8", SQLITE_UTF8 }, + { "UTF-8", SQLITE_UTF8 }, /* Must be element [1] */ + { "UTF-16le", SQLITE_UTF16LE }, /* Must be element [2] */ + { "UTF-16be", SQLITE_UTF16BE }, /* Must be element [3] */ + { "UTF16le", SQLITE_UTF16LE }, + { "UTF16be", SQLITE_UTF16BE }, + { "UTF-16", 0 }, /* SQLITE_UTF16NATIVE */ + { "UTF16", 0 }, /* SQLITE_UTF16NATIVE */ + { 0, 0 } + }; + const struct EncName *pEnc; + if( !zRight ){ /* "PRAGMA encoding" */ + if( sqlite3ReadSchema(pParse) ) goto pragma_out; + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "encoding", SQLITE_STATIC); + sqlite3VdbeAddOp2(v, OP_String8, 0, 1); + assert( encnames[SQLITE_UTF8].enc==SQLITE_UTF8 ); + assert( encnames[SQLITE_UTF16LE].enc==SQLITE_UTF16LE ); + assert( encnames[SQLITE_UTF16BE].enc==SQLITE_UTF16BE ); + sqlite3VdbeChangeP4(v, -1, encnames[ENC(pParse->db)].zName, P4_STATIC); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); + }else{ /* "PRAGMA encoding = XXX" */ + /* Only change the value of sqlite.enc if the database handle is not + ** initialized. If the main database exists, the new sqlite.enc value + ** will be overwritten when the schema is next loaded. If it does not + ** already exists, it will be created to use the new encoding value. + */ + if( + !(DbHasProperty(db, 0, DB_SchemaLoaded)) || + DbHasProperty(db, 0, DB_Empty) + ){ + for(pEnc=&encnames[0]; pEnc->zName; pEnc++){ + if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){ + ENC(pParse->db) = pEnc->enc ? pEnc->enc : SQLITE_UTF16NATIVE; + break; + } + } + if( !pEnc->zName ){ + sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight); + } + } + } + } + break; +#endif /* SQLITE_OMIT_UTF16 */ + +#ifndef SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS + /* + ** PRAGMA [database.]schema_version + ** PRAGMA [database.]schema_version = + ** + ** PRAGMA [database.]user_version + ** PRAGMA [database.]user_version = + ** + ** PRAGMA [database.]freelist_count = + ** + ** PRAGMA [database.]application_id + ** PRAGMA [database.]application_id = + ** + ** The pragma's schema_version and user_version are used to set or get + ** the value of the schema-version and user-version, respectively. Both + ** the schema-version and the user-version are 32-bit signed integers + ** stored in the database header. + ** + ** The schema-cookie is usually only manipulated internally by SQLite. It + ** is incremented by SQLite whenever the database schema is modified (by + ** creating or dropping a table or index). The schema version is used by + ** SQLite each time a query is executed to ensure that the internal cache + ** of the schema used when compiling the SQL query matches the schema of + ** the database against which the compiled query is actually executed. + ** Subverting this mechanism by using "PRAGMA schema_version" to modify + ** the schema-version is potentially dangerous and may lead to program + ** crashes or database corruption. Use with caution! + ** + ** The user-version is not used internally by SQLite. It may be used by + ** applications for any purpose. + */ + case PragTyp_HEADER_VALUE: { + int iCookie; /* Cookie index. 1 for schema-cookie, 6 for user-cookie. */ + sqlite3VdbeUsesBtree(v, iDb); + switch( zLeft[0] ){ + case 'a': case 'A': + iCookie = BTREE_APPLICATION_ID; + break; + case 'f': case 'F': + iCookie = BTREE_FREE_PAGE_COUNT; + break; + case 's': case 'S': + iCookie = BTREE_SCHEMA_VERSION; + break; + default: + iCookie = BTREE_USER_VERSION; + break; + } + + if( zRight && iCookie!=BTREE_FREE_PAGE_COUNT ){ + /* Write the specified cookie value */ + static const VdbeOpList setCookie[] = { + { OP_Transaction, 0, 1, 0}, /* 0 */ + { OP_Integer, 0, 1, 0}, /* 1 */ + { OP_SetCookie, 0, 0, 1}, /* 2 */ + }; + int addr = sqlite3VdbeAddOpList(v, ArraySize(setCookie), setCookie, 0); + sqlite3VdbeChangeP1(v, addr, iDb); + sqlite3VdbeChangeP1(v, addr+1, sqlite3Atoi(zRight)); + sqlite3VdbeChangeP1(v, addr+2, iDb); + sqlite3VdbeChangeP2(v, addr+2, iCookie); + }else{ + /* Read the specified cookie value */ + static const VdbeOpList readCookie[] = { + { OP_Transaction, 0, 0, 0}, /* 0 */ + { OP_ReadCookie, 0, 1, 0}, /* 1 */ + { OP_ResultRow, 1, 1, 0} + }; + int addr = sqlite3VdbeAddOpList(v, ArraySize(readCookie), readCookie, 0); + sqlite3VdbeChangeP1(v, addr, iDb); + sqlite3VdbeChangeP1(v, addr+1, iDb); + sqlite3VdbeChangeP3(v, addr+1, iCookie); + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zLeft, SQLITE_TRANSIENT); + } + } + break; +#endif /* SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS */ + +#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS + /* + ** PRAGMA compile_options + ** + ** Return the names of all compile-time options used in this build, + ** one option per row. + */ + case PragTyp_COMPILE_OPTIONS: { + int i = 0; + const char *zOpt; + sqlite3VdbeSetNumCols(v, 1); + pParse->nMem = 1; + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "compile_option", SQLITE_STATIC); + while( (zOpt = sqlite3_compileoption_get(i++))!=0 ){ + sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, zOpt, 0); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); + } + } + break; +#endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ + +#ifndef SQLITE_OMIT_WAL + /* + ** PRAGMA [database.]wal_checkpoint = passive|full|restart + ** + ** Checkpoint the database. + */ + case PragTyp_WAL_CHECKPOINT: { + int iBt = (pId2->z?iDb:SQLITE_MAX_ATTACHED); + int eMode = SQLITE_CHECKPOINT_PASSIVE; + if( zRight ){ + if( sqlite3StrICmp(zRight, "full")==0 ){ + eMode = SQLITE_CHECKPOINT_FULL; + }else if( sqlite3StrICmp(zRight, "restart")==0 ){ + eMode = SQLITE_CHECKPOINT_RESTART; + } + } + sqlite3VdbeSetNumCols(v, 3); + pParse->nMem = 3; + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "busy", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "log", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "checkpointed", SQLITE_STATIC); + + sqlite3VdbeAddOp3(v, OP_Checkpoint, iBt, eMode, 1); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 3); + } + break; + + /* + ** PRAGMA wal_autocheckpoint + ** PRAGMA wal_autocheckpoint = N + ** + ** Configure a database connection to automatically checkpoint a database + ** after accumulating N frames in the log. Or query for the current value + ** of N. + */ + case PragTyp_WAL_AUTOCHECKPOINT: { + if( zRight ){ + sqlite3_wal_autocheckpoint(db, sqlite3Atoi(zRight)); + } + returnSingleInt(pParse, "wal_autocheckpoint", + db->xWalCallback==sqlite3WalDefaultHook ? + SQLITE_PTR_TO_INT(db->pWalArg) : 0); + } + break; +#endif + + /* + ** PRAGMA shrink_memory + ** + ** This pragma attempts to free as much memory as possible from the + ** current database connection. + */ + case PragTyp_SHRINK_MEMORY: { + sqlite3_db_release_memory(db); + break; + } + + /* + ** PRAGMA busy_timeout + ** PRAGMA busy_timeout = N + ** + ** Call sqlite3_busy_timeout(db, N). Return the current timeout value + ** if one is set. If no busy handler or a different busy handler is set + ** then 0 is returned. Setting the busy_timeout to 0 or negative + ** disables the timeout. + */ + /*case PragTyp_BUSY_TIMEOUT*/ default: { + assert( aPragmaNames[mid].ePragTyp==PragTyp_BUSY_TIMEOUT ); + if( zRight ){ + sqlite3_busy_timeout(db, sqlite3Atoi(zRight)); + } + returnSingleInt(pParse, "timeout", db->busyTimeout); + break; + } + + /* + ** PRAGMA soft_heap_limit + ** PRAGMA soft_heap_limit = N + ** + ** Call sqlite3_soft_heap_limit64(N). Return the result. If N is omitted, + ** use -1. + */ + case PragTyp_SOFT_HEAP_LIMIT: { + sqlite3_int64 N; + if( zRight && sqlite3Atoi64(zRight, &N, 1000000, SQLITE_UTF8)==SQLITE_OK ){ + sqlite3_soft_heap_limit64(N); + } + returnSingleInt(pParse, "soft_heap_limit", sqlite3_soft_heap_limit64(-1)); + break; + } + +#if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) + /* + ** Report the current state of file logs for all databases + */ + case PragTyp_LOCK_STATUS: { + static const char *const azLockName[] = { + "unlocked", "shared", "reserved", "pending", "exclusive" + }; + int i; + sqlite3VdbeSetNumCols(v, 2); + pParse->nMem = 2; + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "database", SQLITE_STATIC); + sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "status", SQLITE_STATIC); + for(i=0; inDb; i++){ + Btree *pBt; + const char *zState = "unknown"; + int j; + if( db->aDb[i].zName==0 ) continue; + sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, db->aDb[i].zName, P4_STATIC); + pBt = db->aDb[i].pBt; + if( pBt==0 || sqlite3BtreePager(pBt)==0 ){ + zState = "closed"; + }else if( sqlite3_file_control(db, i ? db->aDb[i].zName : 0, + SQLITE_FCNTL_LOCKSTATE, &j)==SQLITE_OK ){ + zState = azLockName[j]; + } + sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, zState, P4_STATIC); + sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 2); + } + break; + } +#endif + +#ifdef SQLITE_HAS_CODEC + case PragTyp_KEY: { + if( zRight ) sqlite3_key_v2(db, zDb, zRight, sqlite3Strlen30(zRight)); + break; + } + case PragTyp_REKEY: { + if( zRight ) sqlite3_rekey_v2(db, zDb, zRight, sqlite3Strlen30(zRight)); + break; + } + case PragTyp_HEXKEY: { + if( zRight ){ + u8 iByte; + int i; + char zKey[40]; + for(i=0, iByte=0; idb; + if( !db->mallocFailed && (db->flags & SQLITE_RecoveryMode)==0 ){ + if( zObj==0 ) zObj = "?"; + sqlite3SetString(pData->pzErrMsg, db, + "malformed database schema (%s)", zObj); + if( zExtra ){ + *pData->pzErrMsg = sqlite3MAppendf(db, *pData->pzErrMsg, + "%s - %s", *pData->pzErrMsg, zExtra); + } + } + pData->rc = db->mallocFailed ? SQLITE_NOMEM : SQLITE_CORRUPT_BKPT; +} + +/* +** This is the callback routine for the code that initializes the +** database. See sqlite3Init() below for additional information. +** This routine is also called from the OP_ParseSchema opcode of the VDBE. +** +** Each callback contains the following information: +** +** argv[0] = name of thing being created +** argv[1] = root page number for table or index. 0 for trigger or view. +** argv[2] = SQL text for the CREATE statement. +** +*/ +SQLITE_PRIVATE int sqlite3InitCallback(void *pInit, int argc, char **argv, char **NotUsed){ + InitData *pData = (InitData*)pInit; + sqlite3 *db = pData->db; + int iDb = pData->iDb; + + assert( argc==3 ); + UNUSED_PARAMETER2(NotUsed, argc); + assert( sqlite3_mutex_held(db->mutex) ); + DbClearProperty(db, iDb, DB_Empty); + if( db->mallocFailed ){ + corruptSchema(pData, argv[0], 0); + return 1; + } + + assert( iDb>=0 && iDbnDb ); + if( argv==0 ) return 0; /* Might happen if EMPTY_RESULT_CALLBACKS are on */ + if( argv[1]==0 ){ + corruptSchema(pData, argv[0], 0); + }else if( argv[2] && argv[2][0] ){ + /* Call the parser to process a CREATE TABLE, INDEX or VIEW. + ** But because db->init.busy is set to 1, no VDBE code is generated + ** or executed. All the parser does is build the internal data + ** structures that describe the table, index, or view. + */ + int rc; + sqlite3_stmt *pStmt; + TESTONLY(int rcp); /* Return code from sqlite3_prepare() */ + + assert( db->init.busy ); + db->init.iDb = iDb; + db->init.newTnum = sqlite3Atoi(argv[1]); + db->init.orphanTrigger = 0; + TESTONLY(rcp = ) sqlite3_prepare(db, argv[2], -1, &pStmt, 0); + rc = db->errCode; + assert( (rc&0xFF)==(rcp&0xFF) ); + db->init.iDb = 0; + if( SQLITE_OK!=rc ){ + if( db->init.orphanTrigger ){ + assert( iDb==1 ); + }else{ + pData->rc = rc; + if( rc==SQLITE_NOMEM ){ + db->mallocFailed = 1; + }else if( rc!=SQLITE_INTERRUPT && (rc&0xFF)!=SQLITE_LOCKED ){ + corruptSchema(pData, argv[0], sqlite3_errmsg(db)); + } + } + } + sqlite3_finalize(pStmt); + }else if( argv[0]==0 ){ + corruptSchema(pData, 0, 0); + }else{ + /* If the SQL column is blank it means this is an index that + ** was created to be the PRIMARY KEY or to fulfill a UNIQUE + ** constraint for a CREATE TABLE. The index should have already + ** been created when we processed the CREATE TABLE. All we have + ** to do here is record the root page number for that index. + */ + Index *pIndex; + pIndex = sqlite3FindIndex(db, argv[0], db->aDb[iDb].zName); + if( pIndex==0 ){ + /* This can occur if there exists an index on a TEMP table which + ** has the same name as another index on a permanent index. Since + ** the permanent table is hidden by the TEMP table, we can also + ** safely ignore the index on the permanent table. + */ + /* Do Nothing */; + }else if( sqlite3GetInt32(argv[1], &pIndex->tnum)==0 ){ + corruptSchema(pData, argv[0], "invalid rootpage"); + } + } + return 0; +} + +/* +** Attempt to read the database schema and initialize internal +** data structures for a single database file. The index of the +** database file is given by iDb. iDb==0 is used for the main +** database. iDb==1 should never be used. iDb>=2 is used for +** auxiliary databases. Return one of the SQLITE_ error codes to +** indicate success or failure. +*/ +static int sqlite3InitOne(sqlite3 *db, int iDb, char **pzErrMsg){ + int rc; + int i; +#ifndef SQLITE_OMIT_DEPRECATED + int size; +#endif + Table *pTab; + Db *pDb; + char const *azArg[4]; + int meta[5]; + InitData initData; + char const *zMasterSchema; + char const *zMasterName; + int openedTransaction = 0; + + /* + ** The master database table has a structure like this + */ + static const char master_schema[] = + "CREATE TABLE sqlite_master(\n" + " type text,\n" + " name text,\n" + " tbl_name text,\n" + " rootpage integer,\n" + " sql text\n" + ")" + ; +#ifndef SQLITE_OMIT_TEMPDB + static const char temp_master_schema[] = + "CREATE TEMP TABLE sqlite_temp_master(\n" + " type text,\n" + " name text,\n" + " tbl_name text,\n" + " rootpage integer,\n" + " sql text\n" + ")" + ; +#else + #define temp_master_schema 0 +#endif + + assert( iDb>=0 && iDbnDb ); + assert( db->aDb[iDb].pSchema ); + assert( sqlite3_mutex_held(db->mutex) ); + assert( iDb==1 || sqlite3BtreeHoldsMutex(db->aDb[iDb].pBt) ); + + /* zMasterSchema and zInitScript are set to point at the master schema + ** and initialisation script appropriate for the database being + ** initialized. zMasterName is the name of the master table. + */ + if( !OMIT_TEMPDB && iDb==1 ){ + zMasterSchema = temp_master_schema; + }else{ + zMasterSchema = master_schema; + } + zMasterName = SCHEMA_TABLE(iDb); + + /* Construct the schema tables. */ + azArg[0] = zMasterName; + azArg[1] = "1"; + azArg[2] = zMasterSchema; + azArg[3] = 0; + initData.db = db; + initData.iDb = iDb; + initData.rc = SQLITE_OK; + initData.pzErrMsg = pzErrMsg; + sqlite3InitCallback(&initData, 3, (char **)azArg, 0); + if( initData.rc ){ + rc = initData.rc; + goto error_out; + } + pTab = sqlite3FindTable(db, zMasterName, db->aDb[iDb].zName); + if( ALWAYS(pTab) ){ + pTab->tabFlags |= TF_Readonly; + } + + /* Create a cursor to hold the database open + */ + pDb = &db->aDb[iDb]; + if( pDb->pBt==0 ){ + if( !OMIT_TEMPDB && ALWAYS(iDb==1) ){ + DbSetProperty(db, 1, DB_SchemaLoaded); + } + return SQLITE_OK; + } + + /* If there is not already a read-only (or read-write) transaction opened + ** on the b-tree database, open one now. If a transaction is opened, it + ** will be closed before this function returns. */ + sqlite3BtreeEnter(pDb->pBt); + if( !sqlite3BtreeIsInReadTrans(pDb->pBt) ){ + rc = sqlite3BtreeBeginTrans(pDb->pBt, 0); + if( rc!=SQLITE_OK ){ + sqlite3SetString(pzErrMsg, db, "%s", sqlite3ErrStr(rc)); + goto initone_error_out; + } + openedTransaction = 1; + } + + /* Get the database meta information. + ** + ** Meta values are as follows: + ** meta[0] Schema cookie. Changes with each schema change. + ** meta[1] File format of schema layer. + ** meta[2] Size of the page cache. + ** meta[3] Largest rootpage (auto/incr_vacuum mode) + ** meta[4] Db text encoding. 1:UTF-8 2:UTF-16LE 3:UTF-16BE + ** meta[5] User version + ** meta[6] Incremental vacuum mode + ** meta[7] unused + ** meta[8] unused + ** meta[9] unused + ** + ** Note: The #defined SQLITE_UTF* symbols in sqliteInt.h correspond to + ** the possible values of meta[4]. + */ + for(i=0; ipBt, i+1, (u32 *)&meta[i]); + } + pDb->pSchema->schema_cookie = meta[BTREE_SCHEMA_VERSION-1]; + + /* If opening a non-empty database, check the text encoding. For the + ** main database, set sqlite3.enc to the encoding of the main database. + ** For an attached db, it is an error if the encoding is not the same + ** as sqlite3.enc. + */ + if( meta[BTREE_TEXT_ENCODING-1] ){ /* text encoding */ + if( iDb==0 ){ +#ifndef SQLITE_OMIT_UTF16 + u8 encoding; + /* If opening the main database, set ENC(db). */ + encoding = (u8)meta[BTREE_TEXT_ENCODING-1] & 3; + if( encoding==0 ) encoding = SQLITE_UTF8; + ENC(db) = encoding; +#else + ENC(db) = SQLITE_UTF8; +#endif + }else{ + /* If opening an attached database, the encoding much match ENC(db) */ + if( meta[BTREE_TEXT_ENCODING-1]!=ENC(db) ){ + sqlite3SetString(pzErrMsg, db, "attached databases must use the same" + " text encoding as main database"); + rc = SQLITE_ERROR; + goto initone_error_out; + } + } + }else{ + DbSetProperty(db, iDb, DB_Empty); + } + pDb->pSchema->enc = ENC(db); + + if( pDb->pSchema->cache_size==0 ){ +#ifndef SQLITE_OMIT_DEPRECATED + size = sqlite3AbsInt32(meta[BTREE_DEFAULT_CACHE_SIZE-1]); + if( size==0 ){ size = SQLITE_DEFAULT_CACHE_SIZE; } + pDb->pSchema->cache_size = size; +#else + pDb->pSchema->cache_size = SQLITE_DEFAULT_CACHE_SIZE; +#endif + sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size); + } + + /* + ** file_format==1 Version 3.0.0. + ** file_format==2 Version 3.1.3. // ALTER TABLE ADD COLUMN + ** file_format==3 Version 3.1.4. // ditto but with non-NULL defaults + ** file_format==4 Version 3.3.0. // DESC indices. Boolean constants + */ + pDb->pSchema->file_format = (u8)meta[BTREE_FILE_FORMAT-1]; + if( pDb->pSchema->file_format==0 ){ + pDb->pSchema->file_format = 1; + } + if( pDb->pSchema->file_format>SQLITE_MAX_FILE_FORMAT ){ + sqlite3SetString(pzErrMsg, db, "unsupported file format"); + rc = SQLITE_ERROR; + goto initone_error_out; + } + + /* Ticket #2804: When we open a database in the newer file format, + ** clear the legacy_file_format pragma flag so that a VACUUM will + ** not downgrade the database and thus invalidate any descending + ** indices that the user might have created. + */ + if( iDb==0 && meta[BTREE_FILE_FORMAT-1]>=4 ){ + db->flags &= ~SQLITE_LegacyFileFmt; + } + + /* Read the schema information out of the schema tables + */ + assert( db->init.busy ); + { + char *zSql; + zSql = sqlite3MPrintf(db, + "SELECT name, rootpage, sql FROM '%q'.%s ORDER BY rowid", + db->aDb[iDb].zName, zMasterName); +#ifndef SQLITE_OMIT_AUTHORIZATION + { + int (*xAuth)(void*,int,const char*,const char*,const char*,const char*); + xAuth = db->xAuth; + db->xAuth = 0; +#endif + rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0); +#ifndef SQLITE_OMIT_AUTHORIZATION + db->xAuth = xAuth; + } +#endif + if( rc==SQLITE_OK ) rc = initData.rc; + sqlite3DbFree(db, zSql); +#ifndef SQLITE_OMIT_ANALYZE + if( rc==SQLITE_OK ){ + sqlite3AnalysisLoad(db, iDb); + } +#endif + } + if( db->mallocFailed ){ + rc = SQLITE_NOMEM; + sqlite3ResetAllSchemasOfConnection(db); + } + if( rc==SQLITE_OK || (db->flags&SQLITE_RecoveryMode)){ + /* Black magic: If the SQLITE_RecoveryMode flag is set, then consider + ** the schema loaded, even if errors occurred. In this situation the + ** current sqlite3_prepare() operation will fail, but the following one + ** will attempt to compile the supplied statement against whatever subset + ** of the schema was loaded before the error occurred. The primary + ** purpose of this is to allow access to the sqlite_master table + ** even when its contents have been corrupted. + */ + DbSetProperty(db, iDb, DB_SchemaLoaded); + rc = SQLITE_OK; + } + + /* Jump here for an error that occurs after successfully allocating + ** curMain and calling sqlite3BtreeEnter(). For an error that occurs + ** before that point, jump to error_out. + */ +initone_error_out: + if( openedTransaction ){ + sqlite3BtreeCommit(pDb->pBt); + } + sqlite3BtreeLeave(pDb->pBt); + +error_out: + if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){ + db->mallocFailed = 1; + } + return rc; +} + +/* +** Initialize all database files - the main database file, the file +** used to store temporary tables, and any additional database files +** created using ATTACH statements. Return a success code. If an +** error occurs, write an error message into *pzErrMsg. +** +** After a database is initialized, the DB_SchemaLoaded bit is set +** bit is set in the flags field of the Db structure. If the database +** file was of zero-length, then the DB_Empty flag is also set. +*/ +SQLITE_PRIVATE int sqlite3Init(sqlite3 *db, char **pzErrMsg){ + int i, rc; + int commit_internal = !(db->flags&SQLITE_InternChanges); + + assert( sqlite3_mutex_held(db->mutex) ); + rc = SQLITE_OK; + db->init.busy = 1; + for(i=0; rc==SQLITE_OK && inDb; i++){ + if( DbHasProperty(db, i, DB_SchemaLoaded) || i==1 ) continue; + rc = sqlite3InitOne(db, i, pzErrMsg); + if( rc ){ + sqlite3ResetOneSchema(db, i); + } + } + + /* Once all the other databases have been initialized, load the schema + ** for the TEMP database. This is loaded last, as the TEMP database + ** schema may contain references to objects in other databases. + */ +#ifndef SQLITE_OMIT_TEMPDB + if( rc==SQLITE_OK && ALWAYS(db->nDb>1) + && !DbHasProperty(db, 1, DB_SchemaLoaded) ){ + rc = sqlite3InitOne(db, 1, pzErrMsg); + if( rc ){ + sqlite3ResetOneSchema(db, 1); + } + } +#endif + + db->init.busy = 0; + if( rc==SQLITE_OK && commit_internal ){ + sqlite3CommitInternalChanges(db); + } + + return rc; +} + +/* +** This routine is a no-op if the database schema is already initialized. +** Otherwise, the schema is loaded. An error code is returned. +*/ +SQLITE_PRIVATE int sqlite3ReadSchema(Parse *pParse){ + int rc = SQLITE_OK; + sqlite3 *db = pParse->db; + assert( sqlite3_mutex_held(db->mutex) ); + if( !db->init.busy ){ + rc = sqlite3Init(db, &pParse->zErrMsg); + } + if( rc!=SQLITE_OK ){ + pParse->rc = rc; + pParse->nErr++; + } + return rc; +} + + +/* +** Check schema cookies in all databases. If any cookie is out +** of date set pParse->rc to SQLITE_SCHEMA. If all schema cookies +** make no changes to pParse->rc. +*/ +static void schemaIsValid(Parse *pParse){ + sqlite3 *db = pParse->db; + int iDb; + int rc; + int cookie; + + assert( pParse->checkSchema ); + assert( sqlite3_mutex_held(db->mutex) ); + for(iDb=0; iDbnDb; iDb++){ + int openedTransaction = 0; /* True if a transaction is opened */ + Btree *pBt = db->aDb[iDb].pBt; /* Btree database to read cookie from */ + if( pBt==0 ) continue; + + /* If there is not already a read-only (or read-write) transaction opened + ** on the b-tree database, open one now. If a transaction is opened, it + ** will be closed immediately after reading the meta-value. */ + if( !sqlite3BtreeIsInReadTrans(pBt) ){ + rc = sqlite3BtreeBeginTrans(pBt, 0); + if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){ + db->mallocFailed = 1; + } + if( rc!=SQLITE_OK ) return; + openedTransaction = 1; + } + + /* Read the schema cookie from the database. If it does not match the + ** value stored as part of the in-memory schema representation, + ** set Parse.rc to SQLITE_SCHEMA. */ + sqlite3BtreeGetMeta(pBt, BTREE_SCHEMA_VERSION, (u32 *)&cookie); + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + if( cookie!=db->aDb[iDb].pSchema->schema_cookie ){ + sqlite3ResetOneSchema(db, iDb); + pParse->rc = SQLITE_SCHEMA; + } + + /* Close the transaction, if one was opened. */ + if( openedTransaction ){ + sqlite3BtreeCommit(pBt); + } + } +} + +/* +** Convert a schema pointer into the iDb index that indicates +** which database file in db->aDb[] the schema refers to. +** +** If the same database is attached more than once, the first +** attached database is returned. +*/ +SQLITE_PRIVATE int sqlite3SchemaToIndex(sqlite3 *db, Schema *pSchema){ + int i = -1000000; + + /* If pSchema is NULL, then return -1000000. This happens when code in + ** expr.c is trying to resolve a reference to a transient table (i.e. one + ** created by a sub-select). In this case the return value of this + ** function should never be used. + ** + ** We return -1000000 instead of the more usual -1 simply because using + ** -1000000 as the incorrect index into db->aDb[] is much + ** more likely to cause a segfault than -1 (of course there are assert() + ** statements too, but it never hurts to play the odds). + */ + assert( sqlite3_mutex_held(db->mutex) ); + if( pSchema ){ + for(i=0; ALWAYS(inDb); i++){ + if( db->aDb[i].pSchema==pSchema ){ + break; + } + } + assert( i>=0 && inDb ); + } + return i; +} + +/* +** Free all memory allocations in the pParse object +*/ +SQLITE_PRIVATE void sqlite3ParserReset(Parse *pParse){ + if( pParse ){ + sqlite3 *db = pParse->db; + sqlite3DbFree(db, pParse->aLabel); + sqlite3ExprListDelete(db, pParse->pConstExpr); + } +} + +/* +** Compile the UTF-8 encoded SQL statement zSql into a statement handle. +*/ +static int sqlite3Prepare( + sqlite3 *db, /* Database handle. */ + const char *zSql, /* UTF-8 encoded SQL statement. */ + int nBytes, /* Length of zSql in bytes. */ + int saveSqlFlag, /* True to copy SQL text into the sqlite3_stmt */ + Vdbe *pReprepare, /* VM being reprepared */ + sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ + const char **pzTail /* OUT: End of parsed string */ +){ + Parse *pParse; /* Parsing context */ + char *zErrMsg = 0; /* Error message */ + int rc = SQLITE_OK; /* Result code */ + int i; /* Loop counter */ + + /* Allocate the parsing context */ + pParse = sqlite3StackAllocZero(db, sizeof(*pParse)); + if( pParse==0 ){ + rc = SQLITE_NOMEM; + goto end_prepare; + } + pParse->pReprepare = pReprepare; + assert( ppStmt && *ppStmt==0 ); + assert( !db->mallocFailed ); + assert( sqlite3_mutex_held(db->mutex) ); + + /* Check to verify that it is possible to get a read lock on all + ** database schemas. The inability to get a read lock indicates that + ** some other database connection is holding a write-lock, which in + ** turn means that the other connection has made uncommitted changes + ** to the schema. + ** + ** Were we to proceed and prepare the statement against the uncommitted + ** schema changes and if those schema changes are subsequently rolled + ** back and different changes are made in their place, then when this + ** prepared statement goes to run the schema cookie would fail to detect + ** the schema change. Disaster would follow. + ** + ** This thread is currently holding mutexes on all Btrees (because + ** of the sqlite3BtreeEnterAll() in sqlite3LockAndPrepare()) so it + ** is not possible for another thread to start a new schema change + ** while this routine is running. Hence, we do not need to hold + ** locks on the schema, we just need to make sure nobody else is + ** holding them. + ** + ** Note that setting READ_UNCOMMITTED overrides most lock detection, + ** but it does *not* override schema lock detection, so this all still + ** works even if READ_UNCOMMITTED is set. + */ + for(i=0; inDb; i++) { + Btree *pBt = db->aDb[i].pBt; + if( pBt ){ + assert( sqlite3BtreeHoldsMutex(pBt) ); + rc = sqlite3BtreeSchemaLocked(pBt); + if( rc ){ + const char *zDb = db->aDb[i].zName; + sqlite3Error(db, rc, "database schema is locked: %s", zDb); + testcase( db->flags & SQLITE_ReadUncommitted ); + goto end_prepare; + } + } + } + + sqlite3VtabUnlockList(db); + + pParse->db = db; + pParse->nQueryLoop = 0; /* Logarithmic, so 0 really means 1 */ + if( nBytes>=0 && (nBytes==0 || zSql[nBytes-1]!=0) ){ + char *zSqlCopy; + int mxLen = db->aLimit[SQLITE_LIMIT_SQL_LENGTH]; + testcase( nBytes==mxLen ); + testcase( nBytes==mxLen+1 ); + if( nBytes>mxLen ){ + sqlite3Error(db, SQLITE_TOOBIG, "statement too long"); + rc = sqlite3ApiExit(db, SQLITE_TOOBIG); + goto end_prepare; + } + zSqlCopy = sqlite3DbStrNDup(db, zSql, nBytes); + if( zSqlCopy ){ + sqlite3RunParser(pParse, zSqlCopy, &zErrMsg); + sqlite3DbFree(db, zSqlCopy); + pParse->zTail = &zSql[pParse->zTail-zSqlCopy]; + }else{ + pParse->zTail = &zSql[nBytes]; + } + }else{ + sqlite3RunParser(pParse, zSql, &zErrMsg); + } + assert( 0==pParse->nQueryLoop ); + + if( db->mallocFailed ){ + pParse->rc = SQLITE_NOMEM; + } + if( pParse->rc==SQLITE_DONE ) pParse->rc = SQLITE_OK; + if( pParse->checkSchema ){ + schemaIsValid(pParse); + } + if( db->mallocFailed ){ + pParse->rc = SQLITE_NOMEM; + } + if( pzTail ){ + *pzTail = pParse->zTail; + } + rc = pParse->rc; + +#ifndef SQLITE_OMIT_EXPLAIN + if( rc==SQLITE_OK && pParse->pVdbe && pParse->explain ){ + static const char * const azColName[] = { + "addr", "opcode", "p1", "p2", "p3", "p4", "p5", "comment", + "selectid", "order", "from", "detail" + }; + int iFirst, mx; + if( pParse->explain==2 ){ + sqlite3VdbeSetNumCols(pParse->pVdbe, 4); + iFirst = 8; + mx = 12; + }else{ + sqlite3VdbeSetNumCols(pParse->pVdbe, 8); + iFirst = 0; + mx = 8; + } + for(i=iFirst; ipVdbe, i-iFirst, COLNAME_NAME, + azColName[i], SQLITE_STATIC); + } + } +#endif + + if( db->init.busy==0 ){ + Vdbe *pVdbe = pParse->pVdbe; + sqlite3VdbeSetSql(pVdbe, zSql, (int)(pParse->zTail-zSql), saveSqlFlag); + } + if( pParse->pVdbe && (rc!=SQLITE_OK || db->mallocFailed) ){ + sqlite3VdbeFinalize(pParse->pVdbe); + assert(!(*ppStmt)); + }else{ + *ppStmt = (sqlite3_stmt*)pParse->pVdbe; + } + + if( zErrMsg ){ + sqlite3Error(db, rc, "%s", zErrMsg); + sqlite3DbFree(db, zErrMsg); + }else{ + sqlite3Error(db, rc, 0); + } + + /* Delete any TriggerPrg structures allocated while parsing this statement. */ + while( pParse->pTriggerPrg ){ + TriggerPrg *pT = pParse->pTriggerPrg; + pParse->pTriggerPrg = pT->pNext; + sqlite3DbFree(db, pT); + } + +end_prepare: + + sqlite3ParserReset(pParse); + sqlite3StackFree(db, pParse); + rc = sqlite3ApiExit(db, rc); + assert( (rc&db->errMask)==rc ); + return rc; +} +static int sqlite3LockAndPrepare( + sqlite3 *db, /* Database handle. */ + const char *zSql, /* UTF-8 encoded SQL statement. */ + int nBytes, /* Length of zSql in bytes. */ + int saveSqlFlag, /* True to copy SQL text into the sqlite3_stmt */ + Vdbe *pOld, /* VM being reprepared */ + sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ + const char **pzTail /* OUT: End of parsed string */ +){ + int rc; + assert( ppStmt!=0 ); + *ppStmt = 0; + if( !sqlite3SafetyCheckOk(db) ){ + return SQLITE_MISUSE_BKPT; + } + sqlite3_mutex_enter(db->mutex); + sqlite3BtreeEnterAll(db); + rc = sqlite3Prepare(db, zSql, nBytes, saveSqlFlag, pOld, ppStmt, pzTail); + if( rc==SQLITE_SCHEMA ){ + sqlite3_finalize(*ppStmt); + rc = sqlite3Prepare(db, zSql, nBytes, saveSqlFlag, pOld, ppStmt, pzTail); + } + sqlite3BtreeLeaveAll(db); + sqlite3_mutex_leave(db->mutex); + assert( rc==SQLITE_OK || *ppStmt==0 ); + return rc; +} + +/* +** Rerun the compilation of a statement after a schema change. +** +** If the statement is successfully recompiled, return SQLITE_OK. Otherwise, +** if the statement cannot be recompiled because another connection has +** locked the sqlite3_master table, return SQLITE_LOCKED. If any other error +** occurs, return SQLITE_SCHEMA. +*/ +SQLITE_PRIVATE int sqlite3Reprepare(Vdbe *p){ + int rc; + sqlite3_stmt *pNew; + const char *zSql; + sqlite3 *db; + + assert( sqlite3_mutex_held(sqlite3VdbeDb(p)->mutex) ); + zSql = sqlite3_sql((sqlite3_stmt *)p); + assert( zSql!=0 ); /* Reprepare only called for prepare_v2() statements */ + db = sqlite3VdbeDb(p); + assert( sqlite3_mutex_held(db->mutex) ); + rc = sqlite3LockAndPrepare(db, zSql, -1, 0, p, &pNew, 0); + if( rc ){ + if( rc==SQLITE_NOMEM ){ + db->mallocFailed = 1; + } + assert( pNew==0 ); + return rc; + }else{ + assert( pNew!=0 ); + } + sqlite3VdbeSwap((Vdbe*)pNew, p); + sqlite3TransferBindings(pNew, (sqlite3_stmt*)p); + sqlite3VdbeResetStepResult((Vdbe*)pNew); + sqlite3VdbeFinalize((Vdbe*)pNew); + return SQLITE_OK; +} + + +/* +** Two versions of the official API. Legacy and new use. In the legacy +** version, the original SQL text is not saved in the prepared statement +** and so if a schema change occurs, SQLITE_SCHEMA is returned by +** sqlite3_step(). In the new version, the original SQL text is retained +** and the statement is automatically recompiled if an schema change +** occurs. +*/ +SQLITE_API int sqlite3_prepare( + sqlite3 *db, /* Database handle. */ + const char *zSql, /* UTF-8 encoded SQL statement. */ + int nBytes, /* Length of zSql in bytes. */ + sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ + const char **pzTail /* OUT: End of parsed string */ +){ + int rc; + rc = sqlite3LockAndPrepare(db,zSql,nBytes,0,0,ppStmt,pzTail); + assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ + return rc; +} +SQLITE_API int sqlite3_prepare_v2( + sqlite3 *db, /* Database handle. */ + const char *zSql, /* UTF-8 encoded SQL statement. */ + int nBytes, /* Length of zSql in bytes. */ + sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ + const char **pzTail /* OUT: End of parsed string */ +){ + int rc; + rc = sqlite3LockAndPrepare(db,zSql,nBytes,1,0,ppStmt,pzTail); + assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ + return rc; +} + + +#ifndef SQLITE_OMIT_UTF16 +/* +** Compile the UTF-16 encoded SQL statement zSql into a statement handle. +*/ +static int sqlite3Prepare16( + sqlite3 *db, /* Database handle. */ + const void *zSql, /* UTF-16 encoded SQL statement. */ + int nBytes, /* Length of zSql in bytes. */ + int saveSqlFlag, /* True to save SQL text into the sqlite3_stmt */ + sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ + const void **pzTail /* OUT: End of parsed string */ +){ + /* This function currently works by first transforming the UTF-16 + ** encoded string to UTF-8, then invoking sqlite3_prepare(). The + ** tricky bit is figuring out the pointer to return in *pzTail. + */ + char *zSql8; + const char *zTail8 = 0; + int rc = SQLITE_OK; + + assert( ppStmt ); + *ppStmt = 0; + if( !sqlite3SafetyCheckOk(db) ){ + return SQLITE_MISUSE_BKPT; + } + if( nBytes>=0 ){ + int sz; + const char *z = (const char*)zSql; + for(sz=0; szmutex); + zSql8 = sqlite3Utf16to8(db, zSql, nBytes, SQLITE_UTF16NATIVE); + if( zSql8 ){ + rc = sqlite3LockAndPrepare(db, zSql8, -1, saveSqlFlag, 0, ppStmt, &zTail8); + } + + if( zTail8 && pzTail ){ + /* If sqlite3_prepare returns a tail pointer, we calculate the + ** equivalent pointer into the UTF-16 string by counting the unicode + ** characters between zSql8 and zTail8, and then returning a pointer + ** the same number of characters into the UTF-16 string. + */ + int chars_parsed = sqlite3Utf8CharLen(zSql8, (int)(zTail8-zSql8)); + *pzTail = (u8 *)zSql + sqlite3Utf16ByteLen(zSql, chars_parsed); + } + sqlite3DbFree(db, zSql8); + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +/* +** Two versions of the official API. Legacy and new use. In the legacy +** version, the original SQL text is not saved in the prepared statement +** and so if a schema change occurs, SQLITE_SCHEMA is returned by +** sqlite3_step(). In the new version, the original SQL text is retained +** and the statement is automatically recompiled if an schema change +** occurs. +*/ +SQLITE_API int sqlite3_prepare16( + sqlite3 *db, /* Database handle. */ + const void *zSql, /* UTF-16 encoded SQL statement. */ + int nBytes, /* Length of zSql in bytes. */ + sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ + const void **pzTail /* OUT: End of parsed string */ +){ + int rc; + rc = sqlite3Prepare16(db,zSql,nBytes,0,ppStmt,pzTail); + assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ + return rc; +} +SQLITE_API int sqlite3_prepare16_v2( + sqlite3 *db, /* Database handle. */ + const void *zSql, /* UTF-16 encoded SQL statement. */ + int nBytes, /* Length of zSql in bytes. */ + sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ + const void **pzTail /* OUT: End of parsed string */ +){ + int rc; + rc = sqlite3Prepare16(db,zSql,nBytes,1,ppStmt,pzTail); + assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ + return rc; +} + +#endif /* SQLITE_OMIT_UTF16 */ + +/************** End of prepare.c *********************************************/ +/************** Begin file select.c ******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains C code routines that are called by the parser +** to handle SELECT statements in SQLite. +*/ + +/* +** An instance of the following object is used to record information about +** how to process the DISTINCT keyword, to simplify passing that information +** into the selectInnerLoop() routine. +*/ +typedef struct DistinctCtx DistinctCtx; +struct DistinctCtx { + u8 isTnct; /* True if the DISTINCT keyword is present */ + u8 eTnctType; /* One of the WHERE_DISTINCT_* operators */ + int tabTnct; /* Ephemeral table used for DISTINCT processing */ + int addrTnct; /* Address of OP_OpenEphemeral opcode for tabTnct */ +}; + +/* +** An instance of the following object is used to record information about +** the ORDER BY (or GROUP BY) clause of query is being coded. +*/ +typedef struct SortCtx SortCtx; +struct SortCtx { + ExprList *pOrderBy; /* The ORDER BY (or GROUP BY clause) */ + int nOBSat; /* Number of ORDER BY terms satisfied by indices */ + int iECursor; /* Cursor number for the sorter */ + int regReturn; /* Register holding block-output return address */ + int labelBkOut; /* Start label for the block-output subroutine */ + int addrSortIndex; /* Address of the OP_SorterOpen or OP_OpenEphemeral */ + u8 sortFlags; /* Zero or more SORTFLAG_* bits */ +}; +#define SORTFLAG_UseSorter 0x01 /* Use SorterOpen instead of OpenEphemeral */ + +/* +** Delete all the content of a Select structure but do not deallocate +** the select structure itself. +*/ +static void clearSelect(sqlite3 *db, Select *p){ + sqlite3ExprListDelete(db, p->pEList); + sqlite3SrcListDelete(db, p->pSrc); + sqlite3ExprDelete(db, p->pWhere); + sqlite3ExprListDelete(db, p->pGroupBy); + sqlite3ExprDelete(db, p->pHaving); + sqlite3ExprListDelete(db, p->pOrderBy); + sqlite3SelectDelete(db, p->pPrior); + sqlite3ExprDelete(db, p->pLimit); + sqlite3ExprDelete(db, p->pOffset); + sqlite3WithDelete(db, p->pWith); +} + +/* +** Initialize a SelectDest structure. +*/ +SQLITE_PRIVATE void sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm){ + pDest->eDest = (u8)eDest; + pDest->iSDParm = iParm; + pDest->affSdst = 0; + pDest->iSdst = 0; + pDest->nSdst = 0; +} + + +/* +** Allocate a new Select structure and return a pointer to that +** structure. +*/ +SQLITE_PRIVATE Select *sqlite3SelectNew( + Parse *pParse, /* Parsing context */ + ExprList *pEList, /* which columns to include in the result */ + SrcList *pSrc, /* the FROM clause -- which tables to scan */ + Expr *pWhere, /* the WHERE clause */ + ExprList *pGroupBy, /* the GROUP BY clause */ + Expr *pHaving, /* the HAVING clause */ + ExprList *pOrderBy, /* the ORDER BY clause */ + u16 selFlags, /* Flag parameters, such as SF_Distinct */ + Expr *pLimit, /* LIMIT value. NULL means not used */ + Expr *pOffset /* OFFSET value. NULL means no offset */ +){ + Select *pNew; + Select standin; + sqlite3 *db = pParse->db; + pNew = sqlite3DbMallocZero(db, sizeof(*pNew) ); + assert( db->mallocFailed || !pOffset || pLimit ); /* OFFSET implies LIMIT */ + if( pNew==0 ){ + assert( db->mallocFailed ); + pNew = &standin; + memset(pNew, 0, sizeof(*pNew)); + } + if( pEList==0 ){ + pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db,TK_ALL,0)); + } + pNew->pEList = pEList; + if( pSrc==0 ) pSrc = sqlite3DbMallocZero(db, sizeof(*pSrc)); + pNew->pSrc = pSrc; + pNew->pWhere = pWhere; + pNew->pGroupBy = pGroupBy; + pNew->pHaving = pHaving; + pNew->pOrderBy = pOrderBy; + pNew->selFlags = selFlags; + pNew->op = TK_SELECT; + pNew->pLimit = pLimit; + pNew->pOffset = pOffset; + assert( pOffset==0 || pLimit!=0 ); + pNew->addrOpenEphm[0] = -1; + pNew->addrOpenEphm[1] = -1; + if( db->mallocFailed ) { + clearSelect(db, pNew); + if( pNew!=&standin ) sqlite3DbFree(db, pNew); + pNew = 0; + }else{ + assert( pNew->pSrc!=0 || pParse->nErr>0 ); + } + assert( pNew!=&standin ); + return pNew; +} + +/* +** Delete the given Select structure and all of its substructures. +*/ +SQLITE_PRIVATE void sqlite3SelectDelete(sqlite3 *db, Select *p){ + if( p ){ + clearSelect(db, p); + sqlite3DbFree(db, p); + } +} + +/* +** Return a pointer to the right-most SELECT statement in a compound. +*/ +static Select *findRightmost(Select *p){ + while( p->pNext ) p = p->pNext; + return p; +} + +/* +** Given 1 to 3 identifiers preceding the JOIN keyword, determine the +** type of join. Return an integer constant that expresses that type +** in terms of the following bit values: +** +** JT_INNER +** JT_CROSS +** JT_OUTER +** JT_NATURAL +** JT_LEFT +** JT_RIGHT +** +** A full outer join is the combination of JT_LEFT and JT_RIGHT. +** +** If an illegal or unsupported join type is seen, then still return +** a join type, but put an error in the pParse structure. +*/ +SQLITE_PRIVATE int sqlite3JoinType(Parse *pParse, Token *pA, Token *pB, Token *pC){ + int jointype = 0; + Token *apAll[3]; + Token *p; + /* 0123456789 123456789 123456789 123 */ + static const char zKeyText[] = "naturaleftouterightfullinnercross"; + static const struct { + u8 i; /* Beginning of keyword text in zKeyText[] */ + u8 nChar; /* Length of the keyword in characters */ + u8 code; /* Join type mask */ + } aKeyword[] = { + /* natural */ { 0, 7, JT_NATURAL }, + /* left */ { 6, 4, JT_LEFT|JT_OUTER }, + /* outer */ { 10, 5, JT_OUTER }, + /* right */ { 14, 5, JT_RIGHT|JT_OUTER }, + /* full */ { 19, 4, JT_LEFT|JT_RIGHT|JT_OUTER }, + /* inner */ { 23, 5, JT_INNER }, + /* cross */ { 28, 5, JT_INNER|JT_CROSS }, + }; + int i, j; + apAll[0] = pA; + apAll[1] = pB; + apAll[2] = pC; + for(i=0; i<3 && apAll[i]; i++){ + p = apAll[i]; + for(j=0; jn==aKeyword[j].nChar + && sqlite3StrNICmp((char*)p->z, &zKeyText[aKeyword[j].i], p->n)==0 ){ + jointype |= aKeyword[j].code; + break; + } + } + testcase( j==0 || j==1 || j==2 || j==3 || j==4 || j==5 || j==6 ); + if( j>=ArraySize(aKeyword) ){ + jointype |= JT_ERROR; + break; + } + } + if( + (jointype & (JT_INNER|JT_OUTER))==(JT_INNER|JT_OUTER) || + (jointype & JT_ERROR)!=0 + ){ + const char *zSp = " "; + assert( pB!=0 ); + if( pC==0 ){ zSp++; } + sqlite3ErrorMsg(pParse, "unknown or unsupported join type: " + "%T %T%s%T", pA, pB, zSp, pC); + jointype = JT_INNER; + }else if( (jointype & JT_OUTER)!=0 + && (jointype & (JT_LEFT|JT_RIGHT))!=JT_LEFT ){ + sqlite3ErrorMsg(pParse, + "RIGHT and FULL OUTER JOINs are not currently supported"); + jointype = JT_INNER; + } + return jointype; +} + +/* +** Return the index of a column in a table. Return -1 if the column +** is not contained in the table. +*/ +static int columnIndex(Table *pTab, const char *zCol){ + int i; + for(i=0; inCol; i++){ + if( sqlite3StrICmp(pTab->aCol[i].zName, zCol)==0 ) return i; + } + return -1; +} + +/* +** Search the first N tables in pSrc, from left to right, looking for a +** table that has a column named zCol. +** +** When found, set *piTab and *piCol to the table index and column index +** of the matching column and return TRUE. +** +** If not found, return FALSE. +*/ +static int tableAndColumnIndex( + SrcList *pSrc, /* Array of tables to search */ + int N, /* Number of tables in pSrc->a[] to search */ + const char *zCol, /* Name of the column we are looking for */ + int *piTab, /* Write index of pSrc->a[] here */ + int *piCol /* Write index of pSrc->a[*piTab].pTab->aCol[] here */ +){ + int i; /* For looping over tables in pSrc */ + int iCol; /* Index of column matching zCol */ + + assert( (piTab==0)==(piCol==0) ); /* Both or neither are NULL */ + for(i=0; ia[i].pTab, zCol); + if( iCol>=0 ){ + if( piTab ){ + *piTab = i; + *piCol = iCol; + } + return 1; + } + } + return 0; +} + +/* +** This function is used to add terms implied by JOIN syntax to the +** WHERE clause expression of a SELECT statement. The new term, which +** is ANDed with the existing WHERE clause, is of the form: +** +** (tab1.col1 = tab2.col2) +** +** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the +** (iSrc+1)'th. Column col1 is column iColLeft of tab1, and col2 is +** column iColRight of tab2. +*/ +static void addWhereTerm( + Parse *pParse, /* Parsing context */ + SrcList *pSrc, /* List of tables in FROM clause */ + int iLeft, /* Index of first table to join in pSrc */ + int iColLeft, /* Index of column in first table */ + int iRight, /* Index of second table in pSrc */ + int iColRight, /* Index of column in second table */ + int isOuterJoin, /* True if this is an OUTER join */ + Expr **ppWhere /* IN/OUT: The WHERE clause to add to */ +){ + sqlite3 *db = pParse->db; + Expr *pE1; + Expr *pE2; + Expr *pEq; + + assert( iLeftnSrc>iRight ); + assert( pSrc->a[iLeft].pTab ); + assert( pSrc->a[iRight].pTab ); + + pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft); + pE2 = sqlite3CreateColumnExpr(db, pSrc, iRight, iColRight); + + pEq = sqlite3PExpr(pParse, TK_EQ, pE1, pE2, 0); + if( pEq && isOuterJoin ){ + ExprSetProperty(pEq, EP_FromJoin); + assert( !ExprHasProperty(pEq, EP_TokenOnly|EP_Reduced) ); + ExprSetVVAProperty(pEq, EP_NoReduce); + pEq->iRightJoinTable = (i16)pE2->iTable; + } + *ppWhere = sqlite3ExprAnd(db, *ppWhere, pEq); +} + +/* +** Set the EP_FromJoin property on all terms of the given expression. +** And set the Expr.iRightJoinTable to iTable for every term in the +** expression. +** +** The EP_FromJoin property is used on terms of an expression to tell +** the LEFT OUTER JOIN processing logic that this term is part of the +** join restriction specified in the ON or USING clause and not a part +** of the more general WHERE clause. These terms are moved over to the +** WHERE clause during join processing but we need to remember that they +** originated in the ON or USING clause. +** +** The Expr.iRightJoinTable tells the WHERE clause processing that the +** expression depends on table iRightJoinTable even if that table is not +** explicitly mentioned in the expression. That information is needed +** for cases like this: +** +** SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.b AND t1.x=5 +** +** The where clause needs to defer the handling of the t1.x=5 +** term until after the t2 loop of the join. In that way, a +** NULL t2 row will be inserted whenever t1.x!=5. If we do not +** defer the handling of t1.x=5, it will be processed immediately +** after the t1 loop and rows with t1.x!=5 will never appear in +** the output, which is incorrect. +*/ +static void setJoinExpr(Expr *p, int iTable){ + while( p ){ + ExprSetProperty(p, EP_FromJoin); + assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); + ExprSetVVAProperty(p, EP_NoReduce); + p->iRightJoinTable = (i16)iTable; + setJoinExpr(p->pLeft, iTable); + p = p->pRight; + } +} + +/* +** This routine processes the join information for a SELECT statement. +** ON and USING clauses are converted into extra terms of the WHERE clause. +** NATURAL joins also create extra WHERE clause terms. +** +** The terms of a FROM clause are contained in the Select.pSrc structure. +** The left most table is the first entry in Select.pSrc. The right-most +** table is the last entry. The join operator is held in the entry to +** the left. Thus entry 0 contains the join operator for the join between +** entries 0 and 1. Any ON or USING clauses associated with the join are +** also attached to the left entry. +** +** This routine returns the number of errors encountered. +*/ +static int sqliteProcessJoin(Parse *pParse, Select *p){ + SrcList *pSrc; /* All tables in the FROM clause */ + int i, j; /* Loop counters */ + struct SrcList_item *pLeft; /* Left table being joined */ + struct SrcList_item *pRight; /* Right table being joined */ + + pSrc = p->pSrc; + pLeft = &pSrc->a[0]; + pRight = &pLeft[1]; + for(i=0; inSrc-1; i++, pRight++, pLeft++){ + Table *pLeftTab = pLeft->pTab; + Table *pRightTab = pRight->pTab; + int isOuter; + + if( NEVER(pLeftTab==0 || pRightTab==0) ) continue; + isOuter = (pRight->jointype & JT_OUTER)!=0; + + /* When the NATURAL keyword is present, add WHERE clause terms for + ** every column that the two tables have in common. + */ + if( pRight->jointype & JT_NATURAL ){ + if( pRight->pOn || pRight->pUsing ){ + sqlite3ErrorMsg(pParse, "a NATURAL join may not have " + "an ON or USING clause", 0); + return 1; + } + for(j=0; jnCol; j++){ + char *zName; /* Name of column in the right table */ + int iLeft; /* Matching left table */ + int iLeftCol; /* Matching column in the left table */ + + zName = pRightTab->aCol[j].zName; + if( tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol) ){ + addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, j, + isOuter, &p->pWhere); + } + } + } + + /* Disallow both ON and USING clauses in the same join + */ + if( pRight->pOn && pRight->pUsing ){ + sqlite3ErrorMsg(pParse, "cannot have both ON and USING " + "clauses in the same join"); + return 1; + } + + /* Add the ON clause to the end of the WHERE clause, connected by + ** an AND operator. + */ + if( pRight->pOn ){ + if( isOuter ) setJoinExpr(pRight->pOn, pRight->iCursor); + p->pWhere = sqlite3ExprAnd(pParse->db, p->pWhere, pRight->pOn); + pRight->pOn = 0; + } + + /* Create extra terms on the WHERE clause for each column named + ** in the USING clause. Example: If the two tables to be joined are + ** A and B and the USING clause names X, Y, and Z, then add this + ** to the WHERE clause: A.X=B.X AND A.Y=B.Y AND A.Z=B.Z + ** Report an error if any column mentioned in the USING clause is + ** not contained in both tables to be joined. + */ + if( pRight->pUsing ){ + IdList *pList = pRight->pUsing; + for(j=0; jnId; j++){ + char *zName; /* Name of the term in the USING clause */ + int iLeft; /* Table on the left with matching column name */ + int iLeftCol; /* Column number of matching column on the left */ + int iRightCol; /* Column number of matching column on the right */ + + zName = pList->a[j].zName; + iRightCol = columnIndex(pRightTab, zName); + if( iRightCol<0 + || !tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol) + ){ + sqlite3ErrorMsg(pParse, "cannot join using column %s - column " + "not present in both tables", zName); + return 1; + } + addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, iRightCol, + isOuter, &p->pWhere); + } + } + } + return 0; +} + +/* Forward reference */ +static KeyInfo *keyInfoFromExprList( + Parse *pParse, /* Parsing context */ + ExprList *pList, /* Form the KeyInfo object from this ExprList */ + int iStart, /* Begin with this column of pList */ + int nExtra /* Add this many extra columns to the end */ +); + +/* +** Insert code into "v" that will push the record in register regData +** into the sorter. +*/ +static void pushOntoSorter( + Parse *pParse, /* Parser context */ + SortCtx *pSort, /* Information about the ORDER BY clause */ + Select *pSelect, /* The whole SELECT statement */ + int regData /* Register holding data to be sorted */ +){ + Vdbe *v = pParse->pVdbe; + int nExpr = pSort->pOrderBy->nExpr; + int regRecord = ++pParse->nMem; + int regBase = pParse->nMem+1; + int nOBSat = pSort->nOBSat; + int op; + + pParse->nMem += nExpr+2; /* nExpr+2 registers allocated at regBase */ + sqlite3ExprCacheClear(pParse); + sqlite3ExprCodeExprList(pParse, pSort->pOrderBy, regBase, 0); + sqlite3VdbeAddOp2(v, OP_Sequence, pSort->iECursor, regBase+nExpr); + sqlite3ExprCodeMove(pParse, regData, regBase+nExpr+1, 1); + sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase+nOBSat, nExpr+2-nOBSat,regRecord); + if( nOBSat>0 ){ + int regPrevKey; /* The first nOBSat columns of the previous row */ + int addrFirst; /* Address of the OP_IfNot opcode */ + int addrJmp; /* Address of the OP_Jump opcode */ + VdbeOp *pOp; /* Opcode that opens the sorter */ + int nKey; /* Number of sorting key columns, including OP_Sequence */ + KeyInfo *pKI; /* Original KeyInfo on the sorter table */ + + regPrevKey = pParse->nMem+1; + pParse->nMem += pSort->nOBSat; + nKey = nExpr - pSort->nOBSat + 1; + addrFirst = sqlite3VdbeAddOp1(v, OP_IfNot, regBase+nExpr); VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_Compare, regPrevKey, regBase, pSort->nOBSat); + pOp = sqlite3VdbeGetOp(v, pSort->addrSortIndex); + if( pParse->db->mallocFailed ) return; + pOp->p2 = nKey + 1; + pKI = pOp->p4.pKeyInfo; + memset(pKI->aSortOrder, 0, pKI->nField); /* Makes OP_Jump below testable */ + sqlite3VdbeChangeP4(v, -1, (char*)pKI, P4_KEYINFO); + pOp->p4.pKeyInfo = keyInfoFromExprList(pParse, pSort->pOrderBy, nOBSat, 1); + addrJmp = sqlite3VdbeCurrentAddr(v); + sqlite3VdbeAddOp3(v, OP_Jump, addrJmp+1, 0, addrJmp+1); VdbeCoverage(v); + pSort->labelBkOut = sqlite3VdbeMakeLabel(v); + pSort->regReturn = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Gosub, pSort->regReturn, pSort->labelBkOut); + sqlite3VdbeAddOp1(v, OP_ResetSorter, pSort->iECursor); + sqlite3VdbeJumpHere(v, addrFirst); + sqlite3VdbeAddOp3(v, OP_Move, regBase, regPrevKey, pSort->nOBSat); + sqlite3VdbeJumpHere(v, addrJmp); + } + if( pSort->sortFlags & SORTFLAG_UseSorter ){ + op = OP_SorterInsert; + }else{ + op = OP_IdxInsert; + } + sqlite3VdbeAddOp2(v, op, pSort->iECursor, regRecord); + if( pSelect->iLimit ){ + int addr1, addr2; + int iLimit; + if( pSelect->iOffset ){ + iLimit = pSelect->iOffset+1; + }else{ + iLimit = pSelect->iLimit; + } + addr1 = sqlite3VdbeAddOp1(v, OP_IfZero, iLimit); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_AddImm, iLimit, -1); + addr2 = sqlite3VdbeAddOp0(v, OP_Goto); + sqlite3VdbeJumpHere(v, addr1); + sqlite3VdbeAddOp1(v, OP_Last, pSort->iECursor); + sqlite3VdbeAddOp1(v, OP_Delete, pSort->iECursor); + sqlite3VdbeJumpHere(v, addr2); + } +} + +/* +** Add code to implement the OFFSET +*/ +static void codeOffset( + Vdbe *v, /* Generate code into this VM */ + int iOffset, /* Register holding the offset counter */ + int iContinue /* Jump here to skip the current record */ +){ + if( iOffset>0 ){ + int addr; + sqlite3VdbeAddOp2(v, OP_AddImm, iOffset, -1); + addr = sqlite3VdbeAddOp1(v, OP_IfNeg, iOffset); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Goto, 0, iContinue); + VdbeComment((v, "skip OFFSET records")); + sqlite3VdbeJumpHere(v, addr); + } +} + +/* +** Add code that will check to make sure the N registers starting at iMem +** form a distinct entry. iTab is a sorting index that holds previously +** seen combinations of the N values. A new entry is made in iTab +** if the current N values are new. +** +** A jump to addrRepeat is made and the N+1 values are popped from the +** stack if the top N elements are not distinct. +*/ +static void codeDistinct( + Parse *pParse, /* Parsing and code generating context */ + int iTab, /* A sorting index used to test for distinctness */ + int addrRepeat, /* Jump to here if not distinct */ + int N, /* Number of elements */ + int iMem /* First element */ +){ + Vdbe *v; + int r1; + + v = pParse->pVdbe; + r1 = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp4Int(v, OP_Found, iTab, addrRepeat, iMem, N); VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_MakeRecord, iMem, N, r1); + sqlite3VdbeAddOp2(v, OP_IdxInsert, iTab, r1); + sqlite3ReleaseTempReg(pParse, r1); +} + +#ifndef SQLITE_OMIT_SUBQUERY +/* +** Generate an error message when a SELECT is used within a subexpression +** (example: "a IN (SELECT * FROM table)") but it has more than 1 result +** column. We do this in a subroutine because the error used to occur +** in multiple places. (The error only occurs in one place now, but we +** retain the subroutine to minimize code disruption.) +*/ +static int checkForMultiColumnSelectError( + Parse *pParse, /* Parse context. */ + SelectDest *pDest, /* Destination of SELECT results */ + int nExpr /* Number of result columns returned by SELECT */ +){ + int eDest = pDest->eDest; + if( nExpr>1 && (eDest==SRT_Mem || eDest==SRT_Set) ){ + sqlite3ErrorMsg(pParse, "only a single result allowed for " + "a SELECT that is part of an expression"); + return 1; + }else{ + return 0; + } +} +#endif + +/* +** This routine generates the code for the inside of the inner loop +** of a SELECT. +** +** If srcTab is negative, then the pEList expressions +** are evaluated in order to get the data for this row. If srcTab is +** zero or more, then data is pulled from srcTab and pEList is used only +** to get number columns and the datatype for each column. +*/ +static void selectInnerLoop( + Parse *pParse, /* The parser context */ + Select *p, /* The complete select statement being coded */ + ExprList *pEList, /* List of values being extracted */ + int srcTab, /* Pull data from this table */ + SortCtx *pSort, /* If not NULL, info on how to process ORDER BY */ + DistinctCtx *pDistinct, /* If not NULL, info on how to process DISTINCT */ + SelectDest *pDest, /* How to dispose of the results */ + int iContinue, /* Jump here to continue with next row */ + int iBreak /* Jump here to break out of the inner loop */ +){ + Vdbe *v = pParse->pVdbe; + int i; + int hasDistinct; /* True if the DISTINCT keyword is present */ + int regResult; /* Start of memory holding result set */ + int eDest = pDest->eDest; /* How to dispose of results */ + int iParm = pDest->iSDParm; /* First argument to disposal method */ + int nResultCol; /* Number of result columns */ + + assert( v ); + assert( pEList!=0 ); + hasDistinct = pDistinct ? pDistinct->eTnctType : WHERE_DISTINCT_NOOP; + if( pSort && pSort->pOrderBy==0 ) pSort = 0; + if( pSort==0 && !hasDistinct ){ + assert( iContinue!=0 ); + codeOffset(v, p->iOffset, iContinue); + } + + /* Pull the requested columns. + */ + nResultCol = pEList->nExpr; + + if( pDest->iSdst==0 ){ + pDest->iSdst = pParse->nMem+1; + pParse->nMem += nResultCol; + }else if( pDest->iSdst+nResultCol > pParse->nMem ){ + /* This is an error condition that can result, for example, when a SELECT + ** on the right-hand side of an INSERT contains more result columns than + ** there are columns in the table on the left. The error will be caught + ** and reported later. But we need to make sure enough memory is allocated + ** to avoid other spurious errors in the meantime. */ + pParse->nMem += nResultCol; + } + pDest->nSdst = nResultCol; + regResult = pDest->iSdst; + if( srcTab>=0 ){ + for(i=0; ia[i].zName)); + } + }else if( eDest!=SRT_Exists ){ + /* If the destination is an EXISTS(...) expression, the actual + ** values returned by the SELECT are not required. + */ + sqlite3ExprCodeExprList(pParse, pEList, regResult, + (eDest==SRT_Output||eDest==SRT_Coroutine)?SQLITE_ECEL_DUP:0); + } + + /* If the DISTINCT keyword was present on the SELECT statement + ** and this row has been seen before, then do not make this row + ** part of the result. + */ + if( hasDistinct ){ + switch( pDistinct->eTnctType ){ + case WHERE_DISTINCT_ORDERED: { + VdbeOp *pOp; /* No longer required OpenEphemeral instr. */ + int iJump; /* Jump destination */ + int regPrev; /* Previous row content */ + + /* Allocate space for the previous row */ + regPrev = pParse->nMem+1; + pParse->nMem += nResultCol; + + /* Change the OP_OpenEphemeral coded earlier to an OP_Null + ** sets the MEM_Cleared bit on the first register of the + ** previous value. This will cause the OP_Ne below to always + ** fail on the first iteration of the loop even if the first + ** row is all NULLs. + */ + sqlite3VdbeChangeToNoop(v, pDistinct->addrTnct); + pOp = sqlite3VdbeGetOp(v, pDistinct->addrTnct); + pOp->opcode = OP_Null; + pOp->p1 = 1; + pOp->p2 = regPrev; + + iJump = sqlite3VdbeCurrentAddr(v) + nResultCol; + for(i=0; ia[i].pExpr); + if( iaddrTnct); + break; + } + + default: { + assert( pDistinct->eTnctType==WHERE_DISTINCT_UNORDERED ); + codeDistinct(pParse, pDistinct->tabTnct, iContinue, nResultCol, regResult); + break; + } + } + if( pSort==0 ){ + codeOffset(v, p->iOffset, iContinue); + } + } + + switch( eDest ){ + /* In this mode, write each query result to the key of the temporary + ** table iParm. + */ +#ifndef SQLITE_OMIT_COMPOUND_SELECT + case SRT_Union: { + int r1; + r1 = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nResultCol, r1); + sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm, r1); + sqlite3ReleaseTempReg(pParse, r1); + break; + } + + /* Construct a record from the query result, but instead of + ** saving that record, use it as a key to delete elements from + ** the temporary table iParm. + */ + case SRT_Except: { + sqlite3VdbeAddOp3(v, OP_IdxDelete, iParm, regResult, nResultCol); + break; + } +#endif /* SQLITE_OMIT_COMPOUND_SELECT */ + + /* Store the result as data using a unique key. + */ + case SRT_Fifo: + case SRT_DistFifo: + case SRT_Table: + case SRT_EphemTab: { + int r1 = sqlite3GetTempReg(pParse); + testcase( eDest==SRT_Table ); + testcase( eDest==SRT_EphemTab ); + sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nResultCol, r1); +#ifndef SQLITE_OMIT_CTE + if( eDest==SRT_DistFifo ){ + /* If the destination is DistFifo, then cursor (iParm+1) is open + ** on an ephemeral index. If the current row is already present + ** in the index, do not write it to the output. If not, add the + ** current row to the index and proceed with writing it to the + ** output table as well. */ + int addr = sqlite3VdbeCurrentAddr(v) + 4; + sqlite3VdbeAddOp4Int(v, OP_Found, iParm+1, addr, r1, 0); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm+1, r1); + assert( pSort==0 ); + } +#endif + if( pSort ){ + pushOntoSorter(pParse, pSort, p, r1); + }else{ + int r2 = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp2(v, OP_NewRowid, iParm, r2); + sqlite3VdbeAddOp3(v, OP_Insert, iParm, r1, r2); + sqlite3VdbeChangeP5(v, OPFLAG_APPEND); + sqlite3ReleaseTempReg(pParse, r2); + } + sqlite3ReleaseTempReg(pParse, r1); + break; + } + +#ifndef SQLITE_OMIT_SUBQUERY + /* If we are creating a set for an "expr IN (SELECT ...)" construct, + ** then there should be a single item on the stack. Write this + ** item into the set table with bogus data. + */ + case SRT_Set: { + assert( nResultCol==1 ); + pDest->affSdst = + sqlite3CompareAffinity(pEList->a[0].pExpr, pDest->affSdst); + if( pSort ){ + /* At first glance you would think we could optimize out the + ** ORDER BY in this case since the order of entries in the set + ** does not matter. But there might be a LIMIT clause, in which + ** case the order does matter */ + pushOntoSorter(pParse, pSort, p, regResult); + }else{ + int r1 = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp4(v, OP_MakeRecord, regResult,1,r1, &pDest->affSdst, 1); + sqlite3ExprCacheAffinityChange(pParse, regResult, 1); + sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm, r1); + sqlite3ReleaseTempReg(pParse, r1); + } + break; + } + + /* If any row exist in the result set, record that fact and abort. + */ + case SRT_Exists: { + sqlite3VdbeAddOp2(v, OP_Integer, 1, iParm); + /* The LIMIT clause will terminate the loop for us */ + break; + } + + /* If this is a scalar select that is part of an expression, then + ** store the results in the appropriate memory cell and break out + ** of the scan loop. + */ + case SRT_Mem: { + assert( nResultCol==1 ); + if( pSort ){ + pushOntoSorter(pParse, pSort, p, regResult); + }else{ + sqlite3ExprCodeMove(pParse, regResult, iParm, 1); + /* The LIMIT clause will jump out of the loop for us */ + } + break; + } +#endif /* #ifndef SQLITE_OMIT_SUBQUERY */ + + case SRT_Coroutine: /* Send data to a co-routine */ + case SRT_Output: { /* Return the results */ + testcase( eDest==SRT_Coroutine ); + testcase( eDest==SRT_Output ); + if( pSort ){ + int r1 = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nResultCol, r1); + pushOntoSorter(pParse, pSort, p, r1); + sqlite3ReleaseTempReg(pParse, r1); + }else if( eDest==SRT_Coroutine ){ + sqlite3VdbeAddOp1(v, OP_Yield, pDest->iSDParm); + }else{ + sqlite3VdbeAddOp2(v, OP_ResultRow, regResult, nResultCol); + sqlite3ExprCacheAffinityChange(pParse, regResult, nResultCol); + } + break; + } + +#ifndef SQLITE_OMIT_CTE + /* Write the results into a priority queue that is order according to + ** pDest->pOrderBy (in pSO). pDest->iSDParm (in iParm) is the cursor for an + ** index with pSO->nExpr+2 columns. Build a key using pSO for the first + ** pSO->nExpr columns, then make sure all keys are unique by adding a + ** final OP_Sequence column. The last column is the record as a blob. + */ + case SRT_DistQueue: + case SRT_Queue: { + int nKey; + int r1, r2, r3; + int addrTest = 0; + ExprList *pSO; + pSO = pDest->pOrderBy; + assert( pSO ); + nKey = pSO->nExpr; + r1 = sqlite3GetTempReg(pParse); + r2 = sqlite3GetTempRange(pParse, nKey+2); + r3 = r2+nKey+1; + if( eDest==SRT_DistQueue ){ + /* If the destination is DistQueue, then cursor (iParm+1) is open + ** on a second ephemeral index that holds all values every previously + ** added to the queue. */ + addrTest = sqlite3VdbeAddOp4Int(v, OP_Found, iParm+1, 0, + regResult, nResultCol); + VdbeCoverage(v); + } + sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nResultCol, r3); + if( eDest==SRT_DistQueue ){ + sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm+1, r3); + sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); + } + for(i=0; ia[i].u.x.iOrderByCol - 1, + r2+i); + } + sqlite3VdbeAddOp2(v, OP_Sequence, iParm, r2+nKey); + sqlite3VdbeAddOp3(v, OP_MakeRecord, r2, nKey+2, r1); + sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm, r1); + if( addrTest ) sqlite3VdbeJumpHere(v, addrTest); + sqlite3ReleaseTempReg(pParse, r1); + sqlite3ReleaseTempRange(pParse, r2, nKey+2); + break; + } +#endif /* SQLITE_OMIT_CTE */ + + + +#if !defined(SQLITE_OMIT_TRIGGER) + /* Discard the results. This is used for SELECT statements inside + ** the body of a TRIGGER. The purpose of such selects is to call + ** user-defined functions that have side effects. We do not care + ** about the actual results of the select. + */ + default: { + assert( eDest==SRT_Discard ); + break; + } +#endif + } + + /* Jump to the end of the loop if the LIMIT is reached. Except, if + ** there is a sorter, in which case the sorter has already limited + ** the output for us. + */ + if( pSort==0 && p->iLimit ){ + sqlite3VdbeAddOp3(v, OP_IfZero, p->iLimit, iBreak, -1); VdbeCoverage(v); + } +} + +/* +** Allocate a KeyInfo object sufficient for an index of N key columns and +** X extra columns. +*/ +SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoAlloc(sqlite3 *db, int N, int X){ + KeyInfo *p = sqlite3DbMallocZero(0, + sizeof(KeyInfo) + (N+X)*(sizeof(CollSeq*)+1)); + if( p ){ + p->aSortOrder = (u8*)&p->aColl[N+X]; + p->nField = (u16)N; + p->nXField = (u16)X; + p->enc = ENC(db); + p->db = db; + p->nRef = 1; + }else{ + db->mallocFailed = 1; + } + return p; +} + +/* +** Deallocate a KeyInfo object +*/ +SQLITE_PRIVATE void sqlite3KeyInfoUnref(KeyInfo *p){ + if( p ){ + assert( p->nRef>0 ); + p->nRef--; + if( p->nRef==0 ) sqlite3DbFree(0, p); + } +} + +/* +** Make a new pointer to a KeyInfo object +*/ +SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoRef(KeyInfo *p){ + if( p ){ + assert( p->nRef>0 ); + p->nRef++; + } + return p; +} + +#ifdef SQLITE_DEBUG +/* +** Return TRUE if a KeyInfo object can be change. The KeyInfo object +** can only be changed if this is just a single reference to the object. +** +** This routine is used only inside of assert() statements. +*/ +SQLITE_PRIVATE int sqlite3KeyInfoIsWriteable(KeyInfo *p){ return p->nRef==1; } +#endif /* SQLITE_DEBUG */ + +/* +** Given an expression list, generate a KeyInfo structure that records +** the collating sequence for each expression in that expression list. +** +** If the ExprList is an ORDER BY or GROUP BY clause then the resulting +** KeyInfo structure is appropriate for initializing a virtual index to +** implement that clause. If the ExprList is the result set of a SELECT +** then the KeyInfo structure is appropriate for initializing a virtual +** index to implement a DISTINCT test. +** +** Space to hold the KeyInfo structure is obtain from malloc. The calling +** function is responsible for seeing that this structure is eventually +** freed. +*/ +static KeyInfo *keyInfoFromExprList( + Parse *pParse, /* Parsing context */ + ExprList *pList, /* Form the KeyInfo object from this ExprList */ + int iStart, /* Begin with this column of pList */ + int nExtra /* Add this many extra columns to the end */ +){ + int nExpr; + KeyInfo *pInfo; + struct ExprList_item *pItem; + sqlite3 *db = pParse->db; + int i; + + nExpr = pList->nExpr; + pInfo = sqlite3KeyInfoAlloc(db, nExpr+nExtra-iStart, 1); + if( pInfo ){ + assert( sqlite3KeyInfoIsWriteable(pInfo) ); + for(i=iStart, pItem=pList->a+iStart; ipExpr); + if( !pColl ) pColl = db->pDfltColl; + pInfo->aColl[i-iStart] = pColl; + pInfo->aSortOrder[i-iStart] = pItem->sortOrder; + } + } + return pInfo; +} + +#ifndef SQLITE_OMIT_COMPOUND_SELECT +/* +** Name of the connection operator, used for error messages. +*/ +static const char *selectOpName(int id){ + char *z; + switch( id ){ + case TK_ALL: z = "UNION ALL"; break; + case TK_INTERSECT: z = "INTERSECT"; break; + case TK_EXCEPT: z = "EXCEPT"; break; + default: z = "UNION"; break; + } + return z; +} +#endif /* SQLITE_OMIT_COMPOUND_SELECT */ + +#ifndef SQLITE_OMIT_EXPLAIN +/* +** Unless an "EXPLAIN QUERY PLAN" command is being processed, this function +** is a no-op. Otherwise, it adds a single row of output to the EQP result, +** where the caption is of the form: +** +** "USE TEMP B-TREE FOR xxx" +** +** where xxx is one of "DISTINCT", "ORDER BY" or "GROUP BY". Exactly which +** is determined by the zUsage argument. +*/ +static void explainTempTable(Parse *pParse, const char *zUsage){ + if( pParse->explain==2 ){ + Vdbe *v = pParse->pVdbe; + char *zMsg = sqlite3MPrintf(pParse->db, "USE TEMP B-TREE FOR %s", zUsage); + sqlite3VdbeAddOp4(v, OP_Explain, pParse->iSelectId, 0, 0, zMsg, P4_DYNAMIC); + } +} + +/* +** Assign expression b to lvalue a. A second, no-op, version of this macro +** is provided when SQLITE_OMIT_EXPLAIN is defined. This allows the code +** in sqlite3Select() to assign values to structure member variables that +** only exist if SQLITE_OMIT_EXPLAIN is not defined without polluting the +** code with #ifndef directives. +*/ +# define explainSetInteger(a, b) a = b + +#else +/* No-op versions of the explainXXX() functions and macros. */ +# define explainTempTable(y,z) +# define explainSetInteger(y,z) +#endif + +#if !defined(SQLITE_OMIT_EXPLAIN) && !defined(SQLITE_OMIT_COMPOUND_SELECT) +/* +** Unless an "EXPLAIN QUERY PLAN" command is being processed, this function +** is a no-op. Otherwise, it adds a single row of output to the EQP result, +** where the caption is of one of the two forms: +** +** "COMPOSITE SUBQUERIES iSub1 and iSub2 (op)" +** "COMPOSITE SUBQUERIES iSub1 and iSub2 USING TEMP B-TREE (op)" +** +** where iSub1 and iSub2 are the integers passed as the corresponding +** function parameters, and op is the text representation of the parameter +** of the same name. The parameter "op" must be one of TK_UNION, TK_EXCEPT, +** TK_INTERSECT or TK_ALL. The first form is used if argument bUseTmp is +** false, or the second form if it is true. +*/ +static void explainComposite( + Parse *pParse, /* Parse context */ + int op, /* One of TK_UNION, TK_EXCEPT etc. */ + int iSub1, /* Subquery id 1 */ + int iSub2, /* Subquery id 2 */ + int bUseTmp /* True if a temp table was used */ +){ + assert( op==TK_UNION || op==TK_EXCEPT || op==TK_INTERSECT || op==TK_ALL ); + if( pParse->explain==2 ){ + Vdbe *v = pParse->pVdbe; + char *zMsg = sqlite3MPrintf( + pParse->db, "COMPOUND SUBQUERIES %d AND %d %s(%s)", iSub1, iSub2, + bUseTmp?"USING TEMP B-TREE ":"", selectOpName(op) + ); + sqlite3VdbeAddOp4(v, OP_Explain, pParse->iSelectId, 0, 0, zMsg, P4_DYNAMIC); + } +} +#else +/* No-op versions of the explainXXX() functions and macros. */ +# define explainComposite(v,w,x,y,z) +#endif + +/* +** If the inner loop was generated using a non-null pOrderBy argument, +** then the results were placed in a sorter. After the loop is terminated +** we need to run the sorter and output the results. The following +** routine generates the code needed to do that. +*/ +static void generateSortTail( + Parse *pParse, /* Parsing context */ + Select *p, /* The SELECT statement */ + SortCtx *pSort, /* Information on the ORDER BY clause */ + int nColumn, /* Number of columns of data */ + SelectDest *pDest /* Write the sorted results here */ +){ + Vdbe *v = pParse->pVdbe; /* The prepared statement */ + int addrBreak = sqlite3VdbeMakeLabel(v); /* Jump here to exit loop */ + int addrContinue = sqlite3VdbeMakeLabel(v); /* Jump here for next cycle */ + int addr; + int addrOnce = 0; + int iTab; + int pseudoTab = 0; + ExprList *pOrderBy = pSort->pOrderBy; + int eDest = pDest->eDest; + int iParm = pDest->iSDParm; + int regRow; + int regRowid; + int nKey; + + if( pSort->labelBkOut ){ + sqlite3VdbeAddOp2(v, OP_Gosub, pSort->regReturn, pSort->labelBkOut); + sqlite3VdbeAddOp2(v, OP_Goto, 0, addrBreak); + sqlite3VdbeResolveLabel(v, pSort->labelBkOut); + addrOnce = sqlite3CodeOnce(pParse); VdbeCoverage(v); + } + iTab = pSort->iECursor; + regRow = sqlite3GetTempReg(pParse); + if( eDest==SRT_Output || eDest==SRT_Coroutine ){ + pseudoTab = pParse->nTab++; + sqlite3VdbeAddOp3(v, OP_OpenPseudo, pseudoTab, regRow, nColumn); + regRowid = 0; + }else{ + regRowid = sqlite3GetTempReg(pParse); + } + nKey = pOrderBy->nExpr - pSort->nOBSat; + if( pSort->sortFlags & SORTFLAG_UseSorter ){ + int regSortOut = ++pParse->nMem; + int ptab2 = pParse->nTab++; + sqlite3VdbeAddOp3(v, OP_OpenPseudo, ptab2, regSortOut, nKey+2); + if( addrOnce ) sqlite3VdbeJumpHere(v, addrOnce); + addr = 1 + sqlite3VdbeAddOp2(v, OP_SorterSort, iTab, addrBreak); + VdbeCoverage(v); + codeOffset(v, p->iOffset, addrContinue); + sqlite3VdbeAddOp2(v, OP_SorterData, iTab, regSortOut); + sqlite3VdbeAddOp3(v, OP_Column, ptab2, nKey+1, regRow); + sqlite3VdbeChangeP5(v, OPFLAG_CLEARCACHE); + }else{ + if( addrOnce ) sqlite3VdbeJumpHere(v, addrOnce); + addr = 1 + sqlite3VdbeAddOp2(v, OP_Sort, iTab, addrBreak); VdbeCoverage(v); + codeOffset(v, p->iOffset, addrContinue); + sqlite3VdbeAddOp3(v, OP_Column, iTab, nKey+1, regRow); + } + switch( eDest ){ + case SRT_Table: + case SRT_EphemTab: { + testcase( eDest==SRT_Table ); + testcase( eDest==SRT_EphemTab ); + sqlite3VdbeAddOp2(v, OP_NewRowid, iParm, regRowid); + sqlite3VdbeAddOp3(v, OP_Insert, iParm, regRow, regRowid); + sqlite3VdbeChangeP5(v, OPFLAG_APPEND); + break; + } +#ifndef SQLITE_OMIT_SUBQUERY + case SRT_Set: { + assert( nColumn==1 ); + sqlite3VdbeAddOp4(v, OP_MakeRecord, regRow, 1, regRowid, + &pDest->affSdst, 1); + sqlite3ExprCacheAffinityChange(pParse, regRow, 1); + sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm, regRowid); + break; + } + case SRT_Mem: { + assert( nColumn==1 ); + sqlite3ExprCodeMove(pParse, regRow, iParm, 1); + /* The LIMIT clause will terminate the loop for us */ + break; + } +#endif + default: { + int i; + assert( eDest==SRT_Output || eDest==SRT_Coroutine ); + testcase( eDest==SRT_Output ); + testcase( eDest==SRT_Coroutine ); + for(i=0; iiSdst+i ); + sqlite3VdbeAddOp3(v, OP_Column, pseudoTab, i, pDest->iSdst+i); + if( i==0 ){ + sqlite3VdbeChangeP5(v, OPFLAG_CLEARCACHE); + } + } + if( eDest==SRT_Output ){ + sqlite3VdbeAddOp2(v, OP_ResultRow, pDest->iSdst, nColumn); + sqlite3ExprCacheAffinityChange(pParse, pDest->iSdst, nColumn); + }else{ + sqlite3VdbeAddOp1(v, OP_Yield, pDest->iSDParm); + } + break; + } + } + sqlite3ReleaseTempReg(pParse, regRow); + sqlite3ReleaseTempReg(pParse, regRowid); + + /* The bottom of the loop + */ + sqlite3VdbeResolveLabel(v, addrContinue); + if( pSort->sortFlags & SORTFLAG_UseSorter ){ + sqlite3VdbeAddOp2(v, OP_SorterNext, iTab, addr); VdbeCoverage(v); + }else{ + sqlite3VdbeAddOp2(v, OP_Next, iTab, addr); VdbeCoverage(v); + } + if( pSort->regReturn ) sqlite3VdbeAddOp1(v, OP_Return, pSort->regReturn); + sqlite3VdbeResolveLabel(v, addrBreak); +} + +/* +** Return a pointer to a string containing the 'declaration type' of the +** expression pExpr. The string may be treated as static by the caller. +** +** Also try to estimate the size of the returned value and return that +** result in *pEstWidth. +** +** The declaration type is the exact datatype definition extracted from the +** original CREATE TABLE statement if the expression is a column. The +** declaration type for a ROWID field is INTEGER. Exactly when an expression +** is considered a column can be complex in the presence of subqueries. The +** result-set expression in all of the following SELECT statements is +** considered a column by this function. +** +** SELECT col FROM tbl; +** SELECT (SELECT col FROM tbl; +** SELECT (SELECT col FROM tbl); +** SELECT abc FROM (SELECT col AS abc FROM tbl); +** +** The declaration type for any expression other than a column is NULL. +** +** This routine has either 3 or 6 parameters depending on whether or not +** the SQLITE_ENABLE_COLUMN_METADATA compile-time option is used. +*/ +#ifdef SQLITE_ENABLE_COLUMN_METADATA +# define columnType(A,B,C,D,E,F) columnTypeImpl(A,B,C,D,E,F) +static const char *columnTypeImpl( + NameContext *pNC, + Expr *pExpr, + const char **pzOrigDb, + const char **pzOrigTab, + const char **pzOrigCol, + u8 *pEstWidth +){ + char const *zOrigDb = 0; + char const *zOrigTab = 0; + char const *zOrigCol = 0; +#else /* if !defined(SQLITE_ENABLE_COLUMN_METADATA) */ +# define columnType(A,B,C,D,E,F) columnTypeImpl(A,B,F) +static const char *columnTypeImpl( + NameContext *pNC, + Expr *pExpr, + u8 *pEstWidth +){ +#endif /* !defined(SQLITE_ENABLE_COLUMN_METADATA) */ + char const *zType = 0; + int j; + u8 estWidth = 1; + + if( NEVER(pExpr==0) || pNC->pSrcList==0 ) return 0; + switch( pExpr->op ){ + case TK_AGG_COLUMN: + case TK_COLUMN: { + /* The expression is a column. Locate the table the column is being + ** extracted from in NameContext.pSrcList. This table may be real + ** database table or a subquery. + */ + Table *pTab = 0; /* Table structure column is extracted from */ + Select *pS = 0; /* Select the column is extracted from */ + int iCol = pExpr->iColumn; /* Index of column in pTab */ + testcase( pExpr->op==TK_AGG_COLUMN ); + testcase( pExpr->op==TK_COLUMN ); + while( pNC && !pTab ){ + SrcList *pTabList = pNC->pSrcList; + for(j=0;jnSrc && pTabList->a[j].iCursor!=pExpr->iTable;j++); + if( jnSrc ){ + pTab = pTabList->a[j].pTab; + pS = pTabList->a[j].pSelect; + }else{ + pNC = pNC->pNext; + } + } + + if( pTab==0 ){ + /* At one time, code such as "SELECT new.x" within a trigger would + ** cause this condition to run. Since then, we have restructured how + ** trigger code is generated and so this condition is no longer + ** possible. However, it can still be true for statements like + ** the following: + ** + ** CREATE TABLE t1(col INTEGER); + ** SELECT (SELECT t1.col) FROM FROM t1; + ** + ** when columnType() is called on the expression "t1.col" in the + ** sub-select. In this case, set the column type to NULL, even + ** though it should really be "INTEGER". + ** + ** This is not a problem, as the column type of "t1.col" is never + ** used. When columnType() is called on the expression + ** "(SELECT t1.col)", the correct type is returned (see the TK_SELECT + ** branch below. */ + break; + } + + assert( pTab && pExpr->pTab==pTab ); + if( pS ){ + /* The "table" is actually a sub-select or a view in the FROM clause + ** of the SELECT statement. Return the declaration type and origin + ** data for the result-set column of the sub-select. + */ + if( iCol>=0 && ALWAYS(iColpEList->nExpr) ){ + /* If iCol is less than zero, then the expression requests the + ** rowid of the sub-select or view. This expression is legal (see + ** test case misc2.2.2) - it always evaluates to NULL. + */ + NameContext sNC; + Expr *p = pS->pEList->a[iCol].pExpr; + sNC.pSrcList = pS->pSrc; + sNC.pNext = pNC; + sNC.pParse = pNC->pParse; + zType = columnType(&sNC, p,&zOrigDb,&zOrigTab,&zOrigCol, &estWidth); + } + }else if( pTab->pSchema ){ + /* A real table */ + assert( !pS ); + if( iCol<0 ) iCol = pTab->iPKey; + assert( iCol==-1 || (iCol>=0 && iColnCol) ); +#ifdef SQLITE_ENABLE_COLUMN_METADATA + if( iCol<0 ){ + zType = "INTEGER"; + zOrigCol = "rowid"; + }else{ + zType = pTab->aCol[iCol].zType; + zOrigCol = pTab->aCol[iCol].zName; + estWidth = pTab->aCol[iCol].szEst; + } + zOrigTab = pTab->zName; + if( pNC->pParse ){ + int iDb = sqlite3SchemaToIndex(pNC->pParse->db, pTab->pSchema); + zOrigDb = pNC->pParse->db->aDb[iDb].zName; + } +#else + if( iCol<0 ){ + zType = "INTEGER"; + }else{ + zType = pTab->aCol[iCol].zType; + estWidth = pTab->aCol[iCol].szEst; + } +#endif + } + break; + } +#ifndef SQLITE_OMIT_SUBQUERY + case TK_SELECT: { + /* The expression is a sub-select. Return the declaration type and + ** origin info for the single column in the result set of the SELECT + ** statement. + */ + NameContext sNC; + Select *pS = pExpr->x.pSelect; + Expr *p = pS->pEList->a[0].pExpr; + assert( ExprHasProperty(pExpr, EP_xIsSelect) ); + sNC.pSrcList = pS->pSrc; + sNC.pNext = pNC; + sNC.pParse = pNC->pParse; + zType = columnType(&sNC, p, &zOrigDb, &zOrigTab, &zOrigCol, &estWidth); + break; + } +#endif + } + +#ifdef SQLITE_ENABLE_COLUMN_METADATA + if( pzOrigDb ){ + assert( pzOrigTab && pzOrigCol ); + *pzOrigDb = zOrigDb; + *pzOrigTab = zOrigTab; + *pzOrigCol = zOrigCol; + } +#endif + if( pEstWidth ) *pEstWidth = estWidth; + return zType; +} + +/* +** Generate code that will tell the VDBE the declaration types of columns +** in the result set. +*/ +static void generateColumnTypes( + Parse *pParse, /* Parser context */ + SrcList *pTabList, /* List of tables */ + ExprList *pEList /* Expressions defining the result set */ +){ +#ifndef SQLITE_OMIT_DECLTYPE + Vdbe *v = pParse->pVdbe; + int i; + NameContext sNC; + sNC.pSrcList = pTabList; + sNC.pParse = pParse; + for(i=0; inExpr; i++){ + Expr *p = pEList->a[i].pExpr; + const char *zType; +#ifdef SQLITE_ENABLE_COLUMN_METADATA + const char *zOrigDb = 0; + const char *zOrigTab = 0; + const char *zOrigCol = 0; + zType = columnType(&sNC, p, &zOrigDb, &zOrigTab, &zOrigCol, 0); + + /* The vdbe must make its own copy of the column-type and other + ** column specific strings, in case the schema is reset before this + ** virtual machine is deleted. + */ + sqlite3VdbeSetColName(v, i, COLNAME_DATABASE, zOrigDb, SQLITE_TRANSIENT); + sqlite3VdbeSetColName(v, i, COLNAME_TABLE, zOrigTab, SQLITE_TRANSIENT); + sqlite3VdbeSetColName(v, i, COLNAME_COLUMN, zOrigCol, SQLITE_TRANSIENT); +#else + zType = columnType(&sNC, p, 0, 0, 0, 0); +#endif + sqlite3VdbeSetColName(v, i, COLNAME_DECLTYPE, zType, SQLITE_TRANSIENT); + } +#endif /* !defined(SQLITE_OMIT_DECLTYPE) */ +} + +/* +** Generate code that will tell the VDBE the names of columns +** in the result set. This information is used to provide the +** azCol[] values in the callback. +*/ +static void generateColumnNames( + Parse *pParse, /* Parser context */ + SrcList *pTabList, /* List of tables */ + ExprList *pEList /* Expressions defining the result set */ +){ + Vdbe *v = pParse->pVdbe; + int i, j; + sqlite3 *db = pParse->db; + int fullNames, shortNames; + +#ifndef SQLITE_OMIT_EXPLAIN + /* If this is an EXPLAIN, skip this step */ + if( pParse->explain ){ + return; + } +#endif + + if( pParse->colNamesSet || NEVER(v==0) || db->mallocFailed ) return; + pParse->colNamesSet = 1; + fullNames = (db->flags & SQLITE_FullColNames)!=0; + shortNames = (db->flags & SQLITE_ShortColNames)!=0; + sqlite3VdbeSetNumCols(v, pEList->nExpr); + for(i=0; inExpr; i++){ + Expr *p; + p = pEList->a[i].pExpr; + if( NEVER(p==0) ) continue; + if( pEList->a[i].zName ){ + char *zName = pEList->a[i].zName; + sqlite3VdbeSetColName(v, i, COLNAME_NAME, zName, SQLITE_TRANSIENT); + }else if( (p->op==TK_COLUMN || p->op==TK_AGG_COLUMN) && pTabList ){ + Table *pTab; + char *zCol; + int iCol = p->iColumn; + for(j=0; ALWAYS(jnSrc); j++){ + if( pTabList->a[j].iCursor==p->iTable ) break; + } + assert( jnSrc ); + pTab = pTabList->a[j].pTab; + if( iCol<0 ) iCol = pTab->iPKey; + assert( iCol==-1 || (iCol>=0 && iColnCol) ); + if( iCol<0 ){ + zCol = "rowid"; + }else{ + zCol = pTab->aCol[iCol].zName; + } + if( !shortNames && !fullNames ){ + sqlite3VdbeSetColName(v, i, COLNAME_NAME, + sqlite3DbStrDup(db, pEList->a[i].zSpan), SQLITE_DYNAMIC); + }else if( fullNames ){ + char *zName = 0; + zName = sqlite3MPrintf(db, "%s.%s", pTab->zName, zCol); + sqlite3VdbeSetColName(v, i, COLNAME_NAME, zName, SQLITE_DYNAMIC); + }else{ + sqlite3VdbeSetColName(v, i, COLNAME_NAME, zCol, SQLITE_TRANSIENT); + } + }else{ + const char *z = pEList->a[i].zSpan; + z = z==0 ? sqlite3MPrintf(db, "column%d", i+1) : sqlite3DbStrDup(db, z); + sqlite3VdbeSetColName(v, i, COLNAME_NAME, z, SQLITE_DYNAMIC); + } + } + generateColumnTypes(pParse, pTabList, pEList); +} + +/* +** Given a an expression list (which is really the list of expressions +** that form the result set of a SELECT statement) compute appropriate +** column names for a table that would hold the expression list. +** +** All column names will be unique. +** +** Only the column names are computed. Column.zType, Column.zColl, +** and other fields of Column are zeroed. +** +** Return SQLITE_OK on success. If a memory allocation error occurs, +** store NULL in *paCol and 0 in *pnCol and return SQLITE_NOMEM. +*/ +static int selectColumnsFromExprList( + Parse *pParse, /* Parsing context */ + ExprList *pEList, /* Expr list from which to derive column names */ + i16 *pnCol, /* Write the number of columns here */ + Column **paCol /* Write the new column list here */ +){ + sqlite3 *db = pParse->db; /* Database connection */ + int i, j; /* Loop counters */ + int cnt; /* Index added to make the name unique */ + Column *aCol, *pCol; /* For looping over result columns */ + int nCol; /* Number of columns in the result set */ + Expr *p; /* Expression for a single result column */ + char *zName; /* Column name */ + int nName; /* Size of name in zName[] */ + + if( pEList ){ + nCol = pEList->nExpr; + aCol = sqlite3DbMallocZero(db, sizeof(aCol[0])*nCol); + testcase( aCol==0 ); + }else{ + nCol = 0; + aCol = 0; + } + *pnCol = nCol; + *paCol = aCol; + + for(i=0, pCol=aCol; ia[i].pExpr); + if( (zName = pEList->a[i].zName)!=0 ){ + /* If the column contains an "AS " phrase, use as the name */ + zName = sqlite3DbStrDup(db, zName); + }else{ + Expr *pColExpr = p; /* The expression that is the result column name */ + Table *pTab; /* Table associated with this expression */ + while( pColExpr->op==TK_DOT ){ + pColExpr = pColExpr->pRight; + assert( pColExpr!=0 ); + } + if( pColExpr->op==TK_COLUMN && ALWAYS(pColExpr->pTab!=0) ){ + /* For columns use the column name name */ + int iCol = pColExpr->iColumn; + pTab = pColExpr->pTab; + if( iCol<0 ) iCol = pTab->iPKey; + zName = sqlite3MPrintf(db, "%s", + iCol>=0 ? pTab->aCol[iCol].zName : "rowid"); + }else if( pColExpr->op==TK_ID ){ + assert( !ExprHasProperty(pColExpr, EP_IntValue) ); + zName = sqlite3MPrintf(db, "%s", pColExpr->u.zToken); + }else{ + /* Use the original text of the column expression as its name */ + zName = sqlite3MPrintf(db, "%s", pEList->a[i].zSpan); + } + } + if( db->mallocFailed ){ + sqlite3DbFree(db, zName); + break; + } + + /* Make sure the column name is unique. If the name is not unique, + ** append a integer to the name so that it becomes unique. + */ + nName = sqlite3Strlen30(zName); + for(j=cnt=0; j1 && sqlite3Isdigit(zName[k]); k--){} + if( k>=0 && zName[k]==':' ) nName = k; + zName[nName] = 0; + zNewName = sqlite3MPrintf(db, "%s:%d", zName, ++cnt); + sqlite3DbFree(db, zName); + zName = zNewName; + j = -1; + if( zName==0 ) break; + } + } + pCol->zName = zName; + } + if( db->mallocFailed ){ + for(j=0; jdb; + NameContext sNC; + Column *pCol; + CollSeq *pColl; + int i; + Expr *p; + struct ExprList_item *a; + u64 szAll = 0; + + assert( pSelect!=0 ); + assert( (pSelect->selFlags & SF_Resolved)!=0 ); + assert( pTab->nCol==pSelect->pEList->nExpr || db->mallocFailed ); + if( db->mallocFailed ) return; + memset(&sNC, 0, sizeof(sNC)); + sNC.pSrcList = pSelect->pSrc; + a = pSelect->pEList->a; + for(i=0, pCol=pTab->aCol; inCol; i++, pCol++){ + p = a[i].pExpr; + pCol->zType = sqlite3DbStrDup(db, columnType(&sNC, p,0,0,0, &pCol->szEst)); + szAll += pCol->szEst; + pCol->affinity = sqlite3ExprAffinity(p); + if( pCol->affinity==0 ) pCol->affinity = SQLITE_AFF_NONE; + pColl = sqlite3ExprCollSeq(pParse, p); + if( pColl ){ + pCol->zColl = sqlite3DbStrDup(db, pColl->zName); + } + } + pTab->szTabRow = sqlite3LogEst(szAll*4); +} + +/* +** Given a SELECT statement, generate a Table structure that describes +** the result set of that SELECT. +*/ +SQLITE_PRIVATE Table *sqlite3ResultSetOfSelect(Parse *pParse, Select *pSelect){ + Table *pTab; + sqlite3 *db = pParse->db; + int savedFlags; + + savedFlags = db->flags; + db->flags &= ~SQLITE_FullColNames; + db->flags |= SQLITE_ShortColNames; + sqlite3SelectPrep(pParse, pSelect, 0); + if( pParse->nErr ) return 0; + while( pSelect->pPrior ) pSelect = pSelect->pPrior; + db->flags = savedFlags; + pTab = sqlite3DbMallocZero(db, sizeof(Table) ); + if( pTab==0 ){ + return 0; + } + /* The sqlite3ResultSetOfSelect() is only used n contexts where lookaside + ** is disabled */ + assert( db->lookaside.bEnabled==0 ); + pTab->nRef = 1; + pTab->zName = 0; + pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); + selectColumnsFromExprList(pParse, pSelect->pEList, &pTab->nCol, &pTab->aCol); + selectAddColumnTypeAndCollation(pParse, pTab, pSelect); + pTab->iPKey = -1; + if( db->mallocFailed ){ + sqlite3DeleteTable(db, pTab); + return 0; + } + return pTab; +} + +/* +** Get a VDBE for the given parser context. Create a new one if necessary. +** If an error occurs, return NULL and leave a message in pParse. +*/ +SQLITE_PRIVATE Vdbe *sqlite3GetVdbe(Parse *pParse){ + Vdbe *v = pParse->pVdbe; + if( v==0 ){ + v = pParse->pVdbe = sqlite3VdbeCreate(pParse); + if( v ) sqlite3VdbeAddOp0(v, OP_Init); + if( pParse->pToplevel==0 + && OptimizationEnabled(pParse->db,SQLITE_FactorOutConst) + ){ + pParse->okConstFactor = 1; + } + + } + return v; +} + + +/* +** Compute the iLimit and iOffset fields of the SELECT based on the +** pLimit and pOffset expressions. pLimit and pOffset hold the expressions +** that appear in the original SQL statement after the LIMIT and OFFSET +** keywords. Or NULL if those keywords are omitted. iLimit and iOffset +** are the integer memory register numbers for counters used to compute +** the limit and offset. If there is no limit and/or offset, then +** iLimit and iOffset are negative. +** +** This routine changes the values of iLimit and iOffset only if +** a limit or offset is defined by pLimit and pOffset. iLimit and +** iOffset should have been preset to appropriate default values (zero) +** prior to calling this routine. +** +** The iOffset register (if it exists) is initialized to the value +** of the OFFSET. The iLimit register is initialized to LIMIT. Register +** iOffset+1 is initialized to LIMIT+OFFSET. +** +** Only if pLimit!=0 or pOffset!=0 do the limit registers get +** redefined. The UNION ALL operator uses this property to force +** the reuse of the same limit and offset registers across multiple +** SELECT statements. +*/ +static void computeLimitRegisters(Parse *pParse, Select *p, int iBreak){ + Vdbe *v = 0; + int iLimit = 0; + int iOffset; + int addr1, n; + if( p->iLimit ) return; + + /* + ** "LIMIT -1" always shows all rows. There is some + ** controversy about what the correct behavior should be. + ** The current implementation interprets "LIMIT 0" to mean + ** no rows. + */ + sqlite3ExprCacheClear(pParse); + assert( p->pOffset==0 || p->pLimit!=0 ); + if( p->pLimit ){ + p->iLimit = iLimit = ++pParse->nMem; + v = sqlite3GetVdbe(pParse); + assert( v!=0 ); + if( sqlite3ExprIsInteger(p->pLimit, &n) ){ + sqlite3VdbeAddOp2(v, OP_Integer, n, iLimit); + VdbeComment((v, "LIMIT counter")); + if( n==0 ){ + sqlite3VdbeAddOp2(v, OP_Goto, 0, iBreak); + }else if( n>=0 && p->nSelectRow>(u64)n ){ + p->nSelectRow = n; + } + }else{ + sqlite3ExprCode(pParse, p->pLimit, iLimit); + sqlite3VdbeAddOp1(v, OP_MustBeInt, iLimit); VdbeCoverage(v); + VdbeComment((v, "LIMIT counter")); + sqlite3VdbeAddOp2(v, OP_IfZero, iLimit, iBreak); VdbeCoverage(v); + } + if( p->pOffset ){ + p->iOffset = iOffset = ++pParse->nMem; + pParse->nMem++; /* Allocate an extra register for limit+offset */ + sqlite3ExprCode(pParse, p->pOffset, iOffset); + sqlite3VdbeAddOp1(v, OP_MustBeInt, iOffset); VdbeCoverage(v); + VdbeComment((v, "OFFSET counter")); + addr1 = sqlite3VdbeAddOp1(v, OP_IfPos, iOffset); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Integer, 0, iOffset); + sqlite3VdbeJumpHere(v, addr1); + sqlite3VdbeAddOp3(v, OP_Add, iLimit, iOffset, iOffset+1); + VdbeComment((v, "LIMIT+OFFSET")); + addr1 = sqlite3VdbeAddOp1(v, OP_IfPos, iLimit); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Integer, -1, iOffset+1); + sqlite3VdbeJumpHere(v, addr1); + } + } +} + +#ifndef SQLITE_OMIT_COMPOUND_SELECT +/* +** Return the appropriate collating sequence for the iCol-th column of +** the result set for the compound-select statement "p". Return NULL if +** the column has no default collating sequence. +** +** The collating sequence for the compound select is taken from the +** left-most term of the select that has a collating sequence. +*/ +static CollSeq *multiSelectCollSeq(Parse *pParse, Select *p, int iCol){ + CollSeq *pRet; + if( p->pPrior ){ + pRet = multiSelectCollSeq(pParse, p->pPrior, iCol); + }else{ + pRet = 0; + } + assert( iCol>=0 ); + if( pRet==0 && iColpEList->nExpr ){ + pRet = sqlite3ExprCollSeq(pParse, p->pEList->a[iCol].pExpr); + } + return pRet; +} + +/* +** The select statement passed as the second parameter is a compound SELECT +** with an ORDER BY clause. This function allocates and returns a KeyInfo +** structure suitable for implementing the ORDER BY. +** +** Space to hold the KeyInfo structure is obtained from malloc. The calling +** function is responsible for ensuring that this structure is eventually +** freed. +*/ +static KeyInfo *multiSelectOrderByKeyInfo(Parse *pParse, Select *p, int nExtra){ + ExprList *pOrderBy = p->pOrderBy; + int nOrderBy = p->pOrderBy->nExpr; + sqlite3 *db = pParse->db; + KeyInfo *pRet = sqlite3KeyInfoAlloc(db, nOrderBy+nExtra, 1); + if( pRet ){ + int i; + for(i=0; ia[i]; + Expr *pTerm = pItem->pExpr; + CollSeq *pColl; + + if( pTerm->flags & EP_Collate ){ + pColl = sqlite3ExprCollSeq(pParse, pTerm); + }else{ + pColl = multiSelectCollSeq(pParse, p, pItem->u.x.iOrderByCol-1); + if( pColl==0 ) pColl = db->pDfltColl; + pOrderBy->a[i].pExpr = + sqlite3ExprAddCollateString(pParse, pTerm, pColl->zName); + } + assert( sqlite3KeyInfoIsWriteable(pRet) ); + pRet->aColl[i] = pColl; + pRet->aSortOrder[i] = pOrderBy->a[i].sortOrder; + } + } + + return pRet; +} + +#ifndef SQLITE_OMIT_CTE +/* +** This routine generates VDBE code to compute the content of a WITH RECURSIVE +** query of the form: +** +** AS ( UNION [ALL] ) +** \___________/ \_______________/ +** p->pPrior p +** +** +** There is exactly one reference to the recursive-table in the FROM clause +** of recursive-query, marked with the SrcList->a[].isRecursive flag. +** +** The setup-query runs once to generate an initial set of rows that go +** into a Queue table. Rows are extracted from the Queue table one by +** one. Each row extracted from Queue is output to pDest. Then the single +** extracted row (now in the iCurrent table) becomes the content of the +** recursive-table for a recursive-query run. The output of the recursive-query +** is added back into the Queue table. Then another row is extracted from Queue +** and the iteration continues until the Queue table is empty. +** +** If the compound query operator is UNION then no duplicate rows are ever +** inserted into the Queue table. The iDistinct table keeps a copy of all rows +** that have ever been inserted into Queue and causes duplicates to be +** discarded. If the operator is UNION ALL, then duplicates are allowed. +** +** If the query has an ORDER BY, then entries in the Queue table are kept in +** ORDER BY order and the first entry is extracted for each cycle. Without +** an ORDER BY, the Queue table is just a FIFO. +** +** If a LIMIT clause is provided, then the iteration stops after LIMIT rows +** have been output to pDest. A LIMIT of zero means to output no rows and a +** negative LIMIT means to output all rows. If there is also an OFFSET clause +** with a positive value, then the first OFFSET outputs are discarded rather +** than being sent to pDest. The LIMIT count does not begin until after OFFSET +** rows have been skipped. +*/ +static void generateWithRecursiveQuery( + Parse *pParse, /* Parsing context */ + Select *p, /* The recursive SELECT to be coded */ + SelectDest *pDest /* What to do with query results */ +){ + SrcList *pSrc = p->pSrc; /* The FROM clause of the recursive query */ + int nCol = p->pEList->nExpr; /* Number of columns in the recursive table */ + Vdbe *v = pParse->pVdbe; /* The prepared statement under construction */ + Select *pSetup = p->pPrior; /* The setup query */ + int addrTop; /* Top of the loop */ + int addrCont, addrBreak; /* CONTINUE and BREAK addresses */ + int iCurrent = 0; /* The Current table */ + int regCurrent; /* Register holding Current table */ + int iQueue; /* The Queue table */ + int iDistinct = 0; /* To ensure unique results if UNION */ + int eDest = SRT_Fifo; /* How to write to Queue */ + SelectDest destQueue; /* SelectDest targetting the Queue table */ + int i; /* Loop counter */ + int rc; /* Result code */ + ExprList *pOrderBy; /* The ORDER BY clause */ + Expr *pLimit, *pOffset; /* Saved LIMIT and OFFSET */ + int regLimit, regOffset; /* Registers used by LIMIT and OFFSET */ + + /* Obtain authorization to do a recursive query */ + if( sqlite3AuthCheck(pParse, SQLITE_RECURSIVE, 0, 0, 0) ) return; + + /* Process the LIMIT and OFFSET clauses, if they exist */ + addrBreak = sqlite3VdbeMakeLabel(v); + computeLimitRegisters(pParse, p, addrBreak); + pLimit = p->pLimit; + pOffset = p->pOffset; + regLimit = p->iLimit; + regOffset = p->iOffset; + p->pLimit = p->pOffset = 0; + p->iLimit = p->iOffset = 0; + pOrderBy = p->pOrderBy; + + /* Locate the cursor number of the Current table */ + for(i=0; ALWAYS(inSrc); i++){ + if( pSrc->a[i].isRecursive ){ + iCurrent = pSrc->a[i].iCursor; + break; + } + } + + /* Allocate cursors numbers for Queue and Distinct. The cursor number for + ** the Distinct table must be exactly one greater than Queue in order + ** for the SRT_DistFifo and SRT_DistQueue destinations to work. */ + iQueue = pParse->nTab++; + if( p->op==TK_UNION ){ + eDest = pOrderBy ? SRT_DistQueue : SRT_DistFifo; + iDistinct = pParse->nTab++; + }else{ + eDest = pOrderBy ? SRT_Queue : SRT_Fifo; + } + sqlite3SelectDestInit(&destQueue, eDest, iQueue); + + /* Allocate cursors for Current, Queue, and Distinct. */ + regCurrent = ++pParse->nMem; + sqlite3VdbeAddOp3(v, OP_OpenPseudo, iCurrent, regCurrent, nCol); + if( pOrderBy ){ + KeyInfo *pKeyInfo = multiSelectOrderByKeyInfo(pParse, p, 1); + sqlite3VdbeAddOp4(v, OP_OpenEphemeral, iQueue, pOrderBy->nExpr+2, 0, + (char*)pKeyInfo, P4_KEYINFO); + destQueue.pOrderBy = pOrderBy; + }else{ + sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iQueue, nCol); + } + VdbeComment((v, "Queue table")); + if( iDistinct ){ + p->addrOpenEphm[0] = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iDistinct, 0); + p->selFlags |= SF_UsesEphemeral; + } + + /* Detach the ORDER BY clause from the compound SELECT */ + p->pOrderBy = 0; + + /* Store the results of the setup-query in Queue. */ + pSetup->pNext = 0; + rc = sqlite3Select(pParse, pSetup, &destQueue); + pSetup->pNext = p; + if( rc ) goto end_of_recursive_query; + + /* Find the next row in the Queue and output that row */ + addrTop = sqlite3VdbeAddOp2(v, OP_Rewind, iQueue, addrBreak); VdbeCoverage(v); + + /* Transfer the next row in Queue over to Current */ + sqlite3VdbeAddOp1(v, OP_NullRow, iCurrent); /* To reset column cache */ + if( pOrderBy ){ + sqlite3VdbeAddOp3(v, OP_Column, iQueue, pOrderBy->nExpr+1, regCurrent); + }else{ + sqlite3VdbeAddOp2(v, OP_RowData, iQueue, regCurrent); + } + sqlite3VdbeAddOp1(v, OP_Delete, iQueue); + + /* Output the single row in Current */ + addrCont = sqlite3VdbeMakeLabel(v); + codeOffset(v, regOffset, addrCont); + selectInnerLoop(pParse, p, p->pEList, iCurrent, + 0, 0, pDest, addrCont, addrBreak); + if( regLimit ){ + sqlite3VdbeAddOp3(v, OP_IfZero, regLimit, addrBreak, -1); + VdbeCoverage(v); + } + sqlite3VdbeResolveLabel(v, addrCont); + + /* Execute the recursive SELECT taking the single row in Current as + ** the value for the recursive-table. Store the results in the Queue. + */ + p->pPrior = 0; + sqlite3Select(pParse, p, &destQueue); + assert( p->pPrior==0 ); + p->pPrior = pSetup; + + /* Keep running the loop until the Queue is empty */ + sqlite3VdbeAddOp2(v, OP_Goto, 0, addrTop); + sqlite3VdbeResolveLabel(v, addrBreak); + +end_of_recursive_query: + sqlite3ExprListDelete(pParse->db, p->pOrderBy); + p->pOrderBy = pOrderBy; + p->pLimit = pLimit; + p->pOffset = pOffset; + return; +} +#endif /* SQLITE_OMIT_CTE */ + +/* Forward references */ +static int multiSelectOrderBy( + Parse *pParse, /* Parsing context */ + Select *p, /* The right-most of SELECTs to be coded */ + SelectDest *pDest /* What to do with query results */ +); + + +/* +** This routine is called to process a compound query form from +** two or more separate queries using UNION, UNION ALL, EXCEPT, or +** INTERSECT +** +** "p" points to the right-most of the two queries. the query on the +** left is p->pPrior. The left query could also be a compound query +** in which case this routine will be called recursively. +** +** The results of the total query are to be written into a destination +** of type eDest with parameter iParm. +** +** Example 1: Consider a three-way compound SQL statement. +** +** SELECT a FROM t1 UNION SELECT b FROM t2 UNION SELECT c FROM t3 +** +** This statement is parsed up as follows: +** +** SELECT c FROM t3 +** | +** `-----> SELECT b FROM t2 +** | +** `------> SELECT a FROM t1 +** +** The arrows in the diagram above represent the Select.pPrior pointer. +** So if this routine is called with p equal to the t3 query, then +** pPrior will be the t2 query. p->op will be TK_UNION in this case. +** +** Notice that because of the way SQLite parses compound SELECTs, the +** individual selects always group from left to right. +*/ +static int multiSelect( + Parse *pParse, /* Parsing context */ + Select *p, /* The right-most of SELECTs to be coded */ + SelectDest *pDest /* What to do with query results */ +){ + int rc = SQLITE_OK; /* Success code from a subroutine */ + Select *pPrior; /* Another SELECT immediately to our left */ + Vdbe *v; /* Generate code to this VDBE */ + SelectDest dest; /* Alternative data destination */ + Select *pDelete = 0; /* Chain of simple selects to delete */ + sqlite3 *db; /* Database connection */ +#ifndef SQLITE_OMIT_EXPLAIN + int iSub1 = 0; /* EQP id of left-hand query */ + int iSub2 = 0; /* EQP id of right-hand query */ +#endif + + /* Make sure there is no ORDER BY or LIMIT clause on prior SELECTs. Only + ** the last (right-most) SELECT in the series may have an ORDER BY or LIMIT. + */ + assert( p && p->pPrior ); /* Calling function guarantees this much */ + assert( (p->selFlags & SF_Recursive)==0 || p->op==TK_ALL || p->op==TK_UNION ); + db = pParse->db; + pPrior = p->pPrior; + dest = *pDest; + if( pPrior->pOrderBy ){ + sqlite3ErrorMsg(pParse,"ORDER BY clause should come after %s not before", + selectOpName(p->op)); + rc = 1; + goto multi_select_end; + } + if( pPrior->pLimit ){ + sqlite3ErrorMsg(pParse,"LIMIT clause should come after %s not before", + selectOpName(p->op)); + rc = 1; + goto multi_select_end; + } + + v = sqlite3GetVdbe(pParse); + assert( v!=0 ); /* The VDBE already created by calling function */ + + /* Create the destination temporary table if necessary + */ + if( dest.eDest==SRT_EphemTab ){ + assert( p->pEList ); + sqlite3VdbeAddOp2(v, OP_OpenEphemeral, dest.iSDParm, p->pEList->nExpr); + sqlite3VdbeChangeP5(v, BTREE_UNORDERED); + dest.eDest = SRT_Table; + } + + /* Make sure all SELECTs in the statement have the same number of elements + ** in their result sets. + */ + assert( p->pEList && pPrior->pEList ); + if( p->pEList->nExpr!=pPrior->pEList->nExpr ){ + if( p->selFlags & SF_Values ){ + sqlite3ErrorMsg(pParse, "all VALUES must have the same number of terms"); + }else{ + sqlite3ErrorMsg(pParse, "SELECTs to the left and right of %s" + " do not have the same number of result columns", selectOpName(p->op)); + } + rc = 1; + goto multi_select_end; + } + +#ifndef SQLITE_OMIT_CTE + if( p->selFlags & SF_Recursive ){ + generateWithRecursiveQuery(pParse, p, &dest); + }else +#endif + + /* Compound SELECTs that have an ORDER BY clause are handled separately. + */ + if( p->pOrderBy ){ + return multiSelectOrderBy(pParse, p, pDest); + }else + + /* Generate code for the left and right SELECT statements. + */ + switch( p->op ){ + case TK_ALL: { + int addr = 0; + int nLimit; + assert( !pPrior->pLimit ); + pPrior->iLimit = p->iLimit; + pPrior->iOffset = p->iOffset; + pPrior->pLimit = p->pLimit; + pPrior->pOffset = p->pOffset; + explainSetInteger(iSub1, pParse->iNextSelectId); + rc = sqlite3Select(pParse, pPrior, &dest); + p->pLimit = 0; + p->pOffset = 0; + if( rc ){ + goto multi_select_end; + } + p->pPrior = 0; + p->iLimit = pPrior->iLimit; + p->iOffset = pPrior->iOffset; + if( p->iLimit ){ + addr = sqlite3VdbeAddOp1(v, OP_IfZero, p->iLimit); VdbeCoverage(v); + VdbeComment((v, "Jump ahead if LIMIT reached")); + } + explainSetInteger(iSub2, pParse->iNextSelectId); + rc = sqlite3Select(pParse, p, &dest); + testcase( rc!=SQLITE_OK ); + pDelete = p->pPrior; + p->pPrior = pPrior; + p->nSelectRow += pPrior->nSelectRow; + if( pPrior->pLimit + && sqlite3ExprIsInteger(pPrior->pLimit, &nLimit) + && nLimit>0 && p->nSelectRow > (u64)nLimit + ){ + p->nSelectRow = nLimit; + } + if( addr ){ + sqlite3VdbeJumpHere(v, addr); + } + break; + } + case TK_EXCEPT: + case TK_UNION: { + int unionTab; /* Cursor number of the temporary table holding result */ + u8 op = 0; /* One of the SRT_ operations to apply to self */ + int priorOp; /* The SRT_ operation to apply to prior selects */ + Expr *pLimit, *pOffset; /* Saved values of p->nLimit and p->nOffset */ + int addr; + SelectDest uniondest; + + testcase( p->op==TK_EXCEPT ); + testcase( p->op==TK_UNION ); + priorOp = SRT_Union; + if( dest.eDest==priorOp ){ + /* We can reuse a temporary table generated by a SELECT to our + ** right. + */ + assert( p->pLimit==0 ); /* Not allowed on leftward elements */ + assert( p->pOffset==0 ); /* Not allowed on leftward elements */ + unionTab = dest.iSDParm; + }else{ + /* We will need to create our own temporary table to hold the + ** intermediate results. + */ + unionTab = pParse->nTab++; + assert( p->pOrderBy==0 ); + addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, unionTab, 0); + assert( p->addrOpenEphm[0] == -1 ); + p->addrOpenEphm[0] = addr; + findRightmost(p)->selFlags |= SF_UsesEphemeral; + assert( p->pEList ); + } + + /* Code the SELECT statements to our left + */ + assert( !pPrior->pOrderBy ); + sqlite3SelectDestInit(&uniondest, priorOp, unionTab); + explainSetInteger(iSub1, pParse->iNextSelectId); + rc = sqlite3Select(pParse, pPrior, &uniondest); + if( rc ){ + goto multi_select_end; + } + + /* Code the current SELECT statement + */ + if( p->op==TK_EXCEPT ){ + op = SRT_Except; + }else{ + assert( p->op==TK_UNION ); + op = SRT_Union; + } + p->pPrior = 0; + pLimit = p->pLimit; + p->pLimit = 0; + pOffset = p->pOffset; + p->pOffset = 0; + uniondest.eDest = op; + explainSetInteger(iSub2, pParse->iNextSelectId); + rc = sqlite3Select(pParse, p, &uniondest); + testcase( rc!=SQLITE_OK ); + /* Query flattening in sqlite3Select() might refill p->pOrderBy. + ** Be sure to delete p->pOrderBy, therefore, to avoid a memory leak. */ + sqlite3ExprListDelete(db, p->pOrderBy); + pDelete = p->pPrior; + p->pPrior = pPrior; + p->pOrderBy = 0; + if( p->op==TK_UNION ) p->nSelectRow += pPrior->nSelectRow; + sqlite3ExprDelete(db, p->pLimit); + p->pLimit = pLimit; + p->pOffset = pOffset; + p->iLimit = 0; + p->iOffset = 0; + + /* Convert the data in the temporary table into whatever form + ** it is that we currently need. + */ + assert( unionTab==dest.iSDParm || dest.eDest!=priorOp ); + if( dest.eDest!=priorOp ){ + int iCont, iBreak, iStart; + assert( p->pEList ); + if( dest.eDest==SRT_Output ){ + Select *pFirst = p; + while( pFirst->pPrior ) pFirst = pFirst->pPrior; + generateColumnNames(pParse, 0, pFirst->pEList); + } + iBreak = sqlite3VdbeMakeLabel(v); + iCont = sqlite3VdbeMakeLabel(v); + computeLimitRegisters(pParse, p, iBreak); + sqlite3VdbeAddOp2(v, OP_Rewind, unionTab, iBreak); VdbeCoverage(v); + iStart = sqlite3VdbeCurrentAddr(v); + selectInnerLoop(pParse, p, p->pEList, unionTab, + 0, 0, &dest, iCont, iBreak); + sqlite3VdbeResolveLabel(v, iCont); + sqlite3VdbeAddOp2(v, OP_Next, unionTab, iStart); VdbeCoverage(v); + sqlite3VdbeResolveLabel(v, iBreak); + sqlite3VdbeAddOp2(v, OP_Close, unionTab, 0); + } + break; + } + default: assert( p->op==TK_INTERSECT ); { + int tab1, tab2; + int iCont, iBreak, iStart; + Expr *pLimit, *pOffset; + int addr; + SelectDest intersectdest; + int r1; + + /* INTERSECT is different from the others since it requires + ** two temporary tables. Hence it has its own case. Begin + ** by allocating the tables we will need. + */ + tab1 = pParse->nTab++; + tab2 = pParse->nTab++; + assert( p->pOrderBy==0 ); + + addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab1, 0); + assert( p->addrOpenEphm[0] == -1 ); + p->addrOpenEphm[0] = addr; + findRightmost(p)->selFlags |= SF_UsesEphemeral; + assert( p->pEList ); + + /* Code the SELECTs to our left into temporary table "tab1". + */ + sqlite3SelectDestInit(&intersectdest, SRT_Union, tab1); + explainSetInteger(iSub1, pParse->iNextSelectId); + rc = sqlite3Select(pParse, pPrior, &intersectdest); + if( rc ){ + goto multi_select_end; + } + + /* Code the current SELECT into temporary table "tab2" + */ + addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab2, 0); + assert( p->addrOpenEphm[1] == -1 ); + p->addrOpenEphm[1] = addr; + p->pPrior = 0; + pLimit = p->pLimit; + p->pLimit = 0; + pOffset = p->pOffset; + p->pOffset = 0; + intersectdest.iSDParm = tab2; + explainSetInteger(iSub2, pParse->iNextSelectId); + rc = sqlite3Select(pParse, p, &intersectdest); + testcase( rc!=SQLITE_OK ); + pDelete = p->pPrior; + p->pPrior = pPrior; + if( p->nSelectRow>pPrior->nSelectRow ) p->nSelectRow = pPrior->nSelectRow; + sqlite3ExprDelete(db, p->pLimit); + p->pLimit = pLimit; + p->pOffset = pOffset; + + /* Generate code to take the intersection of the two temporary + ** tables. + */ + assert( p->pEList ); + if( dest.eDest==SRT_Output ){ + Select *pFirst = p; + while( pFirst->pPrior ) pFirst = pFirst->pPrior; + generateColumnNames(pParse, 0, pFirst->pEList); + } + iBreak = sqlite3VdbeMakeLabel(v); + iCont = sqlite3VdbeMakeLabel(v); + computeLimitRegisters(pParse, p, iBreak); + sqlite3VdbeAddOp2(v, OP_Rewind, tab1, iBreak); VdbeCoverage(v); + r1 = sqlite3GetTempReg(pParse); + iStart = sqlite3VdbeAddOp2(v, OP_RowKey, tab1, r1); + sqlite3VdbeAddOp4Int(v, OP_NotFound, tab2, iCont, r1, 0); VdbeCoverage(v); + sqlite3ReleaseTempReg(pParse, r1); + selectInnerLoop(pParse, p, p->pEList, tab1, + 0, 0, &dest, iCont, iBreak); + sqlite3VdbeResolveLabel(v, iCont); + sqlite3VdbeAddOp2(v, OP_Next, tab1, iStart); VdbeCoverage(v); + sqlite3VdbeResolveLabel(v, iBreak); + sqlite3VdbeAddOp2(v, OP_Close, tab2, 0); + sqlite3VdbeAddOp2(v, OP_Close, tab1, 0); + break; + } + } + + explainComposite(pParse, p->op, iSub1, iSub2, p->op!=TK_ALL); + + /* Compute collating sequences used by + ** temporary tables needed to implement the compound select. + ** Attach the KeyInfo structure to all temporary tables. + ** + ** This section is run by the right-most SELECT statement only. + ** SELECT statements to the left always skip this part. The right-most + ** SELECT might also skip this part if it has no ORDER BY clause and + ** no temp tables are required. + */ + if( p->selFlags & SF_UsesEphemeral ){ + int i; /* Loop counter */ + KeyInfo *pKeyInfo; /* Collating sequence for the result set */ + Select *pLoop; /* For looping through SELECT statements */ + CollSeq **apColl; /* For looping through pKeyInfo->aColl[] */ + int nCol; /* Number of columns in result set */ + + assert( p->pNext==0 ); + nCol = p->pEList->nExpr; + pKeyInfo = sqlite3KeyInfoAlloc(db, nCol, 1); + if( !pKeyInfo ){ + rc = SQLITE_NOMEM; + goto multi_select_end; + } + for(i=0, apColl=pKeyInfo->aColl; ipDfltColl; + } + } + + for(pLoop=p; pLoop; pLoop=pLoop->pPrior){ + for(i=0; i<2; i++){ + int addr = pLoop->addrOpenEphm[i]; + if( addr<0 ){ + /* If [0] is unused then [1] is also unused. So we can + ** always safely abort as soon as the first unused slot is found */ + assert( pLoop->addrOpenEphm[1]<0 ); + break; + } + sqlite3VdbeChangeP2(v, addr, nCol); + sqlite3VdbeChangeP4(v, addr, (char*)sqlite3KeyInfoRef(pKeyInfo), + P4_KEYINFO); + pLoop->addrOpenEphm[i] = -1; + } + } + sqlite3KeyInfoUnref(pKeyInfo); + } + +multi_select_end: + pDest->iSdst = dest.iSdst; + pDest->nSdst = dest.nSdst; + sqlite3SelectDelete(db, pDelete); + return rc; +} +#endif /* SQLITE_OMIT_COMPOUND_SELECT */ + +/* +** Code an output subroutine for a coroutine implementation of a +** SELECT statment. +** +** The data to be output is contained in pIn->iSdst. There are +** pIn->nSdst columns to be output. pDest is where the output should +** be sent. +** +** regReturn is the number of the register holding the subroutine +** return address. +** +** If regPrev>0 then it is the first register in a vector that +** records the previous output. mem[regPrev] is a flag that is false +** if there has been no previous output. If regPrev>0 then code is +** generated to suppress duplicates. pKeyInfo is used for comparing +** keys. +** +** If the LIMIT found in p->iLimit is reached, jump immediately to +** iBreak. +*/ +static int generateOutputSubroutine( + Parse *pParse, /* Parsing context */ + Select *p, /* The SELECT statement */ + SelectDest *pIn, /* Coroutine supplying data */ + SelectDest *pDest, /* Where to send the data */ + int regReturn, /* The return address register */ + int regPrev, /* Previous result register. No uniqueness if 0 */ + KeyInfo *pKeyInfo, /* For comparing with previous entry */ + int iBreak /* Jump here if we hit the LIMIT */ +){ + Vdbe *v = pParse->pVdbe; + int iContinue; + int addr; + + addr = sqlite3VdbeCurrentAddr(v); + iContinue = sqlite3VdbeMakeLabel(v); + + /* Suppress duplicates for UNION, EXCEPT, and INTERSECT + */ + if( regPrev ){ + int j1, j2; + j1 = sqlite3VdbeAddOp1(v, OP_IfNot, regPrev); VdbeCoverage(v); + j2 = sqlite3VdbeAddOp4(v, OP_Compare, pIn->iSdst, regPrev+1, pIn->nSdst, + (char*)sqlite3KeyInfoRef(pKeyInfo), P4_KEYINFO); + sqlite3VdbeAddOp3(v, OP_Jump, j2+2, iContinue, j2+2); VdbeCoverage(v); + sqlite3VdbeJumpHere(v, j1); + sqlite3VdbeAddOp3(v, OP_Copy, pIn->iSdst, regPrev+1, pIn->nSdst-1); + sqlite3VdbeAddOp2(v, OP_Integer, 1, regPrev); + } + if( pParse->db->mallocFailed ) return 0; + + /* Suppress the first OFFSET entries if there is an OFFSET clause + */ + codeOffset(v, p->iOffset, iContinue); + + switch( pDest->eDest ){ + /* Store the result as data using a unique key. + */ + case SRT_Table: + case SRT_EphemTab: { + int r1 = sqlite3GetTempReg(pParse); + int r2 = sqlite3GetTempReg(pParse); + testcase( pDest->eDest==SRT_Table ); + testcase( pDest->eDest==SRT_EphemTab ); + sqlite3VdbeAddOp3(v, OP_MakeRecord, pIn->iSdst, pIn->nSdst, r1); + sqlite3VdbeAddOp2(v, OP_NewRowid, pDest->iSDParm, r2); + sqlite3VdbeAddOp3(v, OP_Insert, pDest->iSDParm, r1, r2); + sqlite3VdbeChangeP5(v, OPFLAG_APPEND); + sqlite3ReleaseTempReg(pParse, r2); + sqlite3ReleaseTempReg(pParse, r1); + break; + } + +#ifndef SQLITE_OMIT_SUBQUERY + /* If we are creating a set for an "expr IN (SELECT ...)" construct, + ** then there should be a single item on the stack. Write this + ** item into the set table with bogus data. + */ + case SRT_Set: { + int r1; + assert( pIn->nSdst==1 ); + pDest->affSdst = + sqlite3CompareAffinity(p->pEList->a[0].pExpr, pDest->affSdst); + r1 = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp4(v, OP_MakeRecord, pIn->iSdst, 1, r1, &pDest->affSdst,1); + sqlite3ExprCacheAffinityChange(pParse, pIn->iSdst, 1); + sqlite3VdbeAddOp2(v, OP_IdxInsert, pDest->iSDParm, r1); + sqlite3ReleaseTempReg(pParse, r1); + break; + } + +#if 0 /* Never occurs on an ORDER BY query */ + /* If any row exist in the result set, record that fact and abort. + */ + case SRT_Exists: { + sqlite3VdbeAddOp2(v, OP_Integer, 1, pDest->iSDParm); + /* The LIMIT clause will terminate the loop for us */ + break; + } +#endif + + /* If this is a scalar select that is part of an expression, then + ** store the results in the appropriate memory cell and break out + ** of the scan loop. + */ + case SRT_Mem: { + assert( pIn->nSdst==1 ); + sqlite3ExprCodeMove(pParse, pIn->iSdst, pDest->iSDParm, 1); + /* The LIMIT clause will jump out of the loop for us */ + break; + } +#endif /* #ifndef SQLITE_OMIT_SUBQUERY */ + + /* The results are stored in a sequence of registers + ** starting at pDest->iSdst. Then the co-routine yields. + */ + case SRT_Coroutine: { + if( pDest->iSdst==0 ){ + pDest->iSdst = sqlite3GetTempRange(pParse, pIn->nSdst); + pDest->nSdst = pIn->nSdst; + } + sqlite3ExprCodeMove(pParse, pIn->iSdst, pDest->iSdst, pDest->nSdst); + sqlite3VdbeAddOp1(v, OP_Yield, pDest->iSDParm); + break; + } + + /* If none of the above, then the result destination must be + ** SRT_Output. This routine is never called with any other + ** destination other than the ones handled above or SRT_Output. + ** + ** For SRT_Output, results are stored in a sequence of registers. + ** Then the OP_ResultRow opcode is used to cause sqlite3_step() to + ** return the next row of result. + */ + default: { + assert( pDest->eDest==SRT_Output ); + sqlite3VdbeAddOp2(v, OP_ResultRow, pIn->iSdst, pIn->nSdst); + sqlite3ExprCacheAffinityChange(pParse, pIn->iSdst, pIn->nSdst); + break; + } + } + + /* Jump to the end of the loop if the LIMIT is reached. + */ + if( p->iLimit ){ + sqlite3VdbeAddOp3(v, OP_IfZero, p->iLimit, iBreak, -1); VdbeCoverage(v); + } + + /* Generate the subroutine return + */ + sqlite3VdbeResolveLabel(v, iContinue); + sqlite3VdbeAddOp1(v, OP_Return, regReturn); + + return addr; +} + +/* +** Alternative compound select code generator for cases when there +** is an ORDER BY clause. +** +** We assume a query of the following form: +** +** ORDER BY +** +** is one of UNION ALL, UNION, EXCEPT, or INTERSECT. The idea +** is to code both and with the ORDER BY clause as +** co-routines. Then run the co-routines in parallel and merge the results +** into the output. In addition to the two coroutines (called selectA and +** selectB) there are 7 subroutines: +** +** outA: Move the output of the selectA coroutine into the output +** of the compound query. +** +** outB: Move the output of the selectB coroutine into the output +** of the compound query. (Only generated for UNION and +** UNION ALL. EXCEPT and INSERTSECT never output a row that +** appears only in B.) +** +** AltB: Called when there is data from both coroutines and AB. +** +** EofA: Called when data is exhausted from selectA. +** +** EofB: Called when data is exhausted from selectB. +** +** The implementation of the latter five subroutines depend on which +** is used: +** +** +** UNION ALL UNION EXCEPT INTERSECT +** ------------- ----------------- -------------- ----------------- +** AltB: outA, nextA outA, nextA outA, nextA nextA +** +** AeqB: outA, nextA nextA nextA outA, nextA +** +** AgtB: outB, nextB outB, nextB nextB nextB +** +** EofA: outB, nextB outB, nextB halt halt +** +** EofB: outA, nextA outA, nextA outA, nextA halt +** +** In the AltB, AeqB, and AgtB subroutines, an EOF on A following nextA +** causes an immediate jump to EofA and an EOF on B following nextB causes +** an immediate jump to EofB. Within EofA and EofB, and EOF on entry or +** following nextX causes a jump to the end of the select processing. +** +** Duplicate removal in the UNION, EXCEPT, and INTERSECT cases is handled +** within the output subroutine. The regPrev register set holds the previously +** output value. A comparison is made against this value and the output +** is skipped if the next results would be the same as the previous. +** +** The implementation plan is to implement the two coroutines and seven +** subroutines first, then put the control logic at the bottom. Like this: +** +** goto Init +** coA: coroutine for left query (A) +** coB: coroutine for right query (B) +** outA: output one row of A +** outB: output one row of B (UNION and UNION ALL only) +** EofA: ... +** EofB: ... +** AltB: ... +** AeqB: ... +** AgtB: ... +** Init: initialize coroutine registers +** yield coA +** if eof(A) goto EofA +** yield coB +** if eof(B) goto EofB +** Cmpr: Compare A, B +** Jump AltB, AeqB, AgtB +** End: ... +** +** We call AltB, AeqB, AgtB, EofA, and EofB "subroutines" but they are not +** actually called using Gosub and they do not Return. EofA and EofB loop +** until all data is exhausted then jump to the "end" labe. AltB, AeqB, +** and AgtB jump to either L2 or to one of EofA or EofB. +*/ +#ifndef SQLITE_OMIT_COMPOUND_SELECT +static int multiSelectOrderBy( + Parse *pParse, /* Parsing context */ + Select *p, /* The right-most of SELECTs to be coded */ + SelectDest *pDest /* What to do with query results */ +){ + int i, j; /* Loop counters */ + Select *pPrior; /* Another SELECT immediately to our left */ + Vdbe *v; /* Generate code to this VDBE */ + SelectDest destA; /* Destination for coroutine A */ + SelectDest destB; /* Destination for coroutine B */ + int regAddrA; /* Address register for select-A coroutine */ + int regAddrB; /* Address register for select-B coroutine */ + int addrSelectA; /* Address of the select-A coroutine */ + int addrSelectB; /* Address of the select-B coroutine */ + int regOutA; /* Address register for the output-A subroutine */ + int regOutB; /* Address register for the output-B subroutine */ + int addrOutA; /* Address of the output-A subroutine */ + int addrOutB = 0; /* Address of the output-B subroutine */ + int addrEofA; /* Address of the select-A-exhausted subroutine */ + int addrEofA_noB; /* Alternate addrEofA if B is uninitialized */ + int addrEofB; /* Address of the select-B-exhausted subroutine */ + int addrAltB; /* Address of the AB subroutine */ + int regLimitA; /* Limit register for select-A */ + int regLimitB; /* Limit register for select-A */ + int regPrev; /* A range of registers to hold previous output */ + int savedLimit; /* Saved value of p->iLimit */ + int savedOffset; /* Saved value of p->iOffset */ + int labelCmpr; /* Label for the start of the merge algorithm */ + int labelEnd; /* Label for the end of the overall SELECT stmt */ + int j1; /* Jump instructions that get retargetted */ + int op; /* One of TK_ALL, TK_UNION, TK_EXCEPT, TK_INTERSECT */ + KeyInfo *pKeyDup = 0; /* Comparison information for duplicate removal */ + KeyInfo *pKeyMerge; /* Comparison information for merging rows */ + sqlite3 *db; /* Database connection */ + ExprList *pOrderBy; /* The ORDER BY clause */ + int nOrderBy; /* Number of terms in the ORDER BY clause */ + int *aPermute; /* Mapping from ORDER BY terms to result set columns */ +#ifndef SQLITE_OMIT_EXPLAIN + int iSub1; /* EQP id of left-hand query */ + int iSub2; /* EQP id of right-hand query */ +#endif + + assert( p->pOrderBy!=0 ); + assert( pKeyDup==0 ); /* "Managed" code needs this. Ticket #3382. */ + db = pParse->db; + v = pParse->pVdbe; + assert( v!=0 ); /* Already thrown the error if VDBE alloc failed */ + labelEnd = sqlite3VdbeMakeLabel(v); + labelCmpr = sqlite3VdbeMakeLabel(v); + + + /* Patch up the ORDER BY clause + */ + op = p->op; + pPrior = p->pPrior; + assert( pPrior->pOrderBy==0 ); + pOrderBy = p->pOrderBy; + assert( pOrderBy ); + nOrderBy = pOrderBy->nExpr; + + /* For operators other than UNION ALL we have to make sure that + ** the ORDER BY clause covers every term of the result set. Add + ** terms to the ORDER BY clause as necessary. + */ + if( op!=TK_ALL ){ + for(i=1; db->mallocFailed==0 && i<=p->pEList->nExpr; i++){ + struct ExprList_item *pItem; + for(j=0, pItem=pOrderBy->a; ju.x.iOrderByCol>0 ); + if( pItem->u.x.iOrderByCol==i ) break; + } + if( j==nOrderBy ){ + Expr *pNew = sqlite3Expr(db, TK_INTEGER, 0); + if( pNew==0 ) return SQLITE_NOMEM; + pNew->flags |= EP_IntValue; + pNew->u.iValue = i; + pOrderBy = sqlite3ExprListAppend(pParse, pOrderBy, pNew); + if( pOrderBy ) pOrderBy->a[nOrderBy++].u.x.iOrderByCol = (u16)i; + } + } + } + + /* Compute the comparison permutation and keyinfo that is used with + ** the permutation used to determine if the next + ** row of results comes from selectA or selectB. Also add explicit + ** collations to the ORDER BY clause terms so that when the subqueries + ** to the right and the left are evaluated, they use the correct + ** collation. + */ + aPermute = sqlite3DbMallocRaw(db, sizeof(int)*nOrderBy); + if( aPermute ){ + struct ExprList_item *pItem; + for(i=0, pItem=pOrderBy->a; iu.x.iOrderByCol>0 + && pItem->u.x.iOrderByCol<=p->pEList->nExpr ); + aPermute[i] = pItem->u.x.iOrderByCol - 1; + } + pKeyMerge = multiSelectOrderByKeyInfo(pParse, p, 1); + }else{ + pKeyMerge = 0; + } + + /* Reattach the ORDER BY clause to the query. + */ + p->pOrderBy = pOrderBy; + pPrior->pOrderBy = sqlite3ExprListDup(pParse->db, pOrderBy, 0); + + /* Allocate a range of temporary registers and the KeyInfo needed + ** for the logic that removes duplicate result rows when the + ** operator is UNION, EXCEPT, or INTERSECT (but not UNION ALL). + */ + if( op==TK_ALL ){ + regPrev = 0; + }else{ + int nExpr = p->pEList->nExpr; + assert( nOrderBy>=nExpr || db->mallocFailed ); + regPrev = pParse->nMem+1; + pParse->nMem += nExpr+1; + sqlite3VdbeAddOp2(v, OP_Integer, 0, regPrev); + pKeyDup = sqlite3KeyInfoAlloc(db, nExpr, 1); + if( pKeyDup ){ + assert( sqlite3KeyInfoIsWriteable(pKeyDup) ); + for(i=0; iaColl[i] = multiSelectCollSeq(pParse, p, i); + pKeyDup->aSortOrder[i] = 0; + } + } + } + + /* Separate the left and the right query from one another + */ + p->pPrior = 0; + pPrior->pNext = 0; + sqlite3ResolveOrderGroupBy(pParse, p, p->pOrderBy, "ORDER"); + if( pPrior->pPrior==0 ){ + sqlite3ResolveOrderGroupBy(pParse, pPrior, pPrior->pOrderBy, "ORDER"); + } + + /* Compute the limit registers */ + computeLimitRegisters(pParse, p, labelEnd); + if( p->iLimit && op==TK_ALL ){ + regLimitA = ++pParse->nMem; + regLimitB = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Copy, p->iOffset ? p->iOffset+1 : p->iLimit, + regLimitA); + sqlite3VdbeAddOp2(v, OP_Copy, regLimitA, regLimitB); + }else{ + regLimitA = regLimitB = 0; + } + sqlite3ExprDelete(db, p->pLimit); + p->pLimit = 0; + sqlite3ExprDelete(db, p->pOffset); + p->pOffset = 0; + + regAddrA = ++pParse->nMem; + regAddrB = ++pParse->nMem; + regOutA = ++pParse->nMem; + regOutB = ++pParse->nMem; + sqlite3SelectDestInit(&destA, SRT_Coroutine, regAddrA); + sqlite3SelectDestInit(&destB, SRT_Coroutine, regAddrB); + + /* Generate a coroutine to evaluate the SELECT statement to the + ** left of the compound operator - the "A" select. + */ + addrSelectA = sqlite3VdbeCurrentAddr(v) + 1; + j1 = sqlite3VdbeAddOp3(v, OP_InitCoroutine, regAddrA, 0, addrSelectA); + VdbeComment((v, "left SELECT")); + pPrior->iLimit = regLimitA; + explainSetInteger(iSub1, pParse->iNextSelectId); + sqlite3Select(pParse, pPrior, &destA); + sqlite3VdbeAddOp1(v, OP_EndCoroutine, regAddrA); + sqlite3VdbeJumpHere(v, j1); + + /* Generate a coroutine to evaluate the SELECT statement on + ** the right - the "B" select + */ + addrSelectB = sqlite3VdbeCurrentAddr(v) + 1; + j1 = sqlite3VdbeAddOp3(v, OP_InitCoroutine, regAddrB, 0, addrSelectB); + VdbeComment((v, "right SELECT")); + savedLimit = p->iLimit; + savedOffset = p->iOffset; + p->iLimit = regLimitB; + p->iOffset = 0; + explainSetInteger(iSub2, pParse->iNextSelectId); + sqlite3Select(pParse, p, &destB); + p->iLimit = savedLimit; + p->iOffset = savedOffset; + sqlite3VdbeAddOp1(v, OP_EndCoroutine, regAddrB); + + /* Generate a subroutine that outputs the current row of the A + ** select as the next output row of the compound select. + */ + VdbeNoopComment((v, "Output routine for A")); + addrOutA = generateOutputSubroutine(pParse, + p, &destA, pDest, regOutA, + regPrev, pKeyDup, labelEnd); + + /* Generate a subroutine that outputs the current row of the B + ** select as the next output row of the compound select. + */ + if( op==TK_ALL || op==TK_UNION ){ + VdbeNoopComment((v, "Output routine for B")); + addrOutB = generateOutputSubroutine(pParse, + p, &destB, pDest, regOutB, + regPrev, pKeyDup, labelEnd); + } + sqlite3KeyInfoUnref(pKeyDup); + + /* Generate a subroutine to run when the results from select A + ** are exhausted and only data in select B remains. + */ + if( op==TK_EXCEPT || op==TK_INTERSECT ){ + addrEofA_noB = addrEofA = labelEnd; + }else{ + VdbeNoopComment((v, "eof-A subroutine")); + addrEofA = sqlite3VdbeAddOp2(v, OP_Gosub, regOutB, addrOutB); + addrEofA_noB = sqlite3VdbeAddOp2(v, OP_Yield, regAddrB, labelEnd); + VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Goto, 0, addrEofA); + p->nSelectRow += pPrior->nSelectRow; + } + + /* Generate a subroutine to run when the results from select B + ** are exhausted and only data in select A remains. + */ + if( op==TK_INTERSECT ){ + addrEofB = addrEofA; + if( p->nSelectRow > pPrior->nSelectRow ) p->nSelectRow = pPrior->nSelectRow; + }else{ + VdbeNoopComment((v, "eof-B subroutine")); + addrEofB = sqlite3VdbeAddOp2(v, OP_Gosub, regOutA, addrOutA); + sqlite3VdbeAddOp2(v, OP_Yield, regAddrA, labelEnd); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Goto, 0, addrEofB); + } + + /* Generate code to handle the case of AB + */ + VdbeNoopComment((v, "A-gt-B subroutine")); + addrAgtB = sqlite3VdbeCurrentAddr(v); + if( op==TK_ALL || op==TK_UNION ){ + sqlite3VdbeAddOp2(v, OP_Gosub, regOutB, addrOutB); + } + sqlite3VdbeAddOp2(v, OP_Yield, regAddrB, addrEofB); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Goto, 0, labelCmpr); + + /* This code runs once to initialize everything. + */ + sqlite3VdbeJumpHere(v, j1); + sqlite3VdbeAddOp2(v, OP_Yield, regAddrA, addrEofA_noB); VdbeCoverage(v); + sqlite3VdbeAddOp2(v, OP_Yield, regAddrB, addrEofB); VdbeCoverage(v); + + /* Implement the main merge loop + */ + sqlite3VdbeResolveLabel(v, labelCmpr); + sqlite3VdbeAddOp4(v, OP_Permutation, 0, 0, 0, (char*)aPermute, P4_INTARRAY); + sqlite3VdbeAddOp4(v, OP_Compare, destA.iSdst, destB.iSdst, nOrderBy, + (char*)pKeyMerge, P4_KEYINFO); + sqlite3VdbeChangeP5(v, OPFLAG_PERMUTE); + sqlite3VdbeAddOp3(v, OP_Jump, addrAltB, addrAeqB, addrAgtB); VdbeCoverage(v); + + /* Jump to the this point in order to terminate the query. + */ + sqlite3VdbeResolveLabel(v, labelEnd); + + /* Set the number of output columns + */ + if( pDest->eDest==SRT_Output ){ + Select *pFirst = pPrior; + while( pFirst->pPrior ) pFirst = pFirst->pPrior; + generateColumnNames(pParse, 0, pFirst->pEList); + } + + /* Reassembly the compound query so that it will be freed correctly + ** by the calling function */ + if( p->pPrior ){ + sqlite3SelectDelete(db, p->pPrior); + } + p->pPrior = pPrior; + pPrior->pNext = p; + + /*** TBD: Insert subroutine calls to close cursors on incomplete + **** subqueries ****/ + explainComposite(pParse, p->op, iSub1, iSub2, 0); + return SQLITE_OK; +} +#endif + +#if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) +/* Forward Declarations */ +static void substExprList(sqlite3*, ExprList*, int, ExprList*); +static void substSelect(sqlite3*, Select *, int, ExprList *); + +/* +** Scan through the expression pExpr. Replace every reference to +** a column in table number iTable with a copy of the iColumn-th +** entry in pEList. (But leave references to the ROWID column +** unchanged.) +** +** This routine is part of the flattening procedure. A subquery +** whose result set is defined by pEList appears as entry in the +** FROM clause of a SELECT such that the VDBE cursor assigned to that +** FORM clause entry is iTable. This routine make the necessary +** changes to pExpr so that it refers directly to the source table +** of the subquery rather the result set of the subquery. +*/ +static Expr *substExpr( + sqlite3 *db, /* Report malloc errors to this connection */ + Expr *pExpr, /* Expr in which substitution occurs */ + int iTable, /* Table to be substituted */ + ExprList *pEList /* Substitute expressions */ +){ + if( pExpr==0 ) return 0; + if( pExpr->op==TK_COLUMN && pExpr->iTable==iTable ){ + if( pExpr->iColumn<0 ){ + pExpr->op = TK_NULL; + }else{ + Expr *pNew; + assert( pEList!=0 && pExpr->iColumnnExpr ); + assert( pExpr->pLeft==0 && pExpr->pRight==0 ); + pNew = sqlite3ExprDup(db, pEList->a[pExpr->iColumn].pExpr, 0); + sqlite3ExprDelete(db, pExpr); + pExpr = pNew; + } + }else{ + pExpr->pLeft = substExpr(db, pExpr->pLeft, iTable, pEList); + pExpr->pRight = substExpr(db, pExpr->pRight, iTable, pEList); + if( ExprHasProperty(pExpr, EP_xIsSelect) ){ + substSelect(db, pExpr->x.pSelect, iTable, pEList); + }else{ + substExprList(db, pExpr->x.pList, iTable, pEList); + } + } + return pExpr; +} +static void substExprList( + sqlite3 *db, /* Report malloc errors here */ + ExprList *pList, /* List to scan and in which to make substitutes */ + int iTable, /* Table to be substituted */ + ExprList *pEList /* Substitute values */ +){ + int i; + if( pList==0 ) return; + for(i=0; inExpr; i++){ + pList->a[i].pExpr = substExpr(db, pList->a[i].pExpr, iTable, pEList); + } +} +static void substSelect( + sqlite3 *db, /* Report malloc errors here */ + Select *p, /* SELECT statement in which to make substitutions */ + int iTable, /* Table to be replaced */ + ExprList *pEList /* Substitute values */ +){ + SrcList *pSrc; + struct SrcList_item *pItem; + int i; + if( !p ) return; + substExprList(db, p->pEList, iTable, pEList); + substExprList(db, p->pGroupBy, iTable, pEList); + substExprList(db, p->pOrderBy, iTable, pEList); + p->pHaving = substExpr(db, p->pHaving, iTable, pEList); + p->pWhere = substExpr(db, p->pWhere, iTable, pEList); + substSelect(db, p->pPrior, iTable, pEList); + pSrc = p->pSrc; + assert( pSrc ); /* Even for (SELECT 1) we have: pSrc!=0 but pSrc->nSrc==0 */ + if( ALWAYS(pSrc) ){ + for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){ + substSelect(db, pItem->pSelect, iTable, pEList); + } + } +} +#endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ + +#if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) +/* +** This routine attempts to flatten subqueries as a performance optimization. +** This routine returns 1 if it makes changes and 0 if no flattening occurs. +** +** To understand the concept of flattening, consider the following +** query: +** +** SELECT a FROM (SELECT x+y AS a FROM t1 WHERE z<100) WHERE a>5 +** +** The default way of implementing this query is to execute the +** subquery first and store the results in a temporary table, then +** run the outer query on that temporary table. This requires two +** passes over the data. Furthermore, because the temporary table +** has no indices, the WHERE clause on the outer query cannot be +** optimized. +** +** This routine attempts to rewrite queries such as the above into +** a single flat select, like this: +** +** SELECT x+y AS a FROM t1 WHERE z<100 AND a>5 +** +** The code generated for this simpification gives the same result +** but only has to scan the data once. And because indices might +** exist on the table t1, a complete scan of the data might be +** avoided. +** +** Flattening is only attempted if all of the following are true: +** +** (1) The subquery and the outer query do not both use aggregates. +** +** (2) The subquery is not an aggregate or the outer query is not a join. +** +** (3) The subquery is not the right operand of a left outer join +** (Originally ticket #306. Strengthened by ticket #3300) +** +** (4) The subquery is not DISTINCT. +** +** (**) At one point restrictions (4) and (5) defined a subset of DISTINCT +** sub-queries that were excluded from this optimization. Restriction +** (4) has since been expanded to exclude all DISTINCT subqueries. +** +** (6) The subquery does not use aggregates or the outer query is not +** DISTINCT. +** +** (7) The subquery has a FROM clause. TODO: For subqueries without +** A FROM clause, consider adding a FROM close with the special +** table sqlite_once that consists of a single row containing a +** single NULL. +** +** (8) The subquery does not use LIMIT or the outer query is not a join. +** +** (9) The subquery does not use LIMIT or the outer query does not use +** aggregates. +** +** (10) The subquery does not use aggregates or the outer query does not +** use LIMIT. +** +** (11) The subquery and the outer query do not both have ORDER BY clauses. +** +** (**) Not implemented. Subsumed into restriction (3). Was previously +** a separate restriction deriving from ticket #350. +** +** (13) The subquery and outer query do not both use LIMIT. +** +** (14) The subquery does not use OFFSET. +** +** (15) The outer query is not part of a compound select or the +** subquery does not have a LIMIT clause. +** (See ticket #2339 and ticket [02a8e81d44]). +** +** (16) The outer query is not an aggregate or the subquery does +** not contain ORDER BY. (Ticket #2942) This used to not matter +** until we introduced the group_concat() function. +** +** (17) The sub-query is not a compound select, or it is a UNION ALL +** compound clause made up entirely of non-aggregate queries, and +** the parent query: +** +** * is not itself part of a compound select, +** * is not an aggregate or DISTINCT query, and +** * is not a join +** +** The parent and sub-query may contain WHERE clauses. Subject to +** rules (11), (13) and (14), they may also contain ORDER BY, +** LIMIT and OFFSET clauses. The subquery cannot use any compound +** operator other than UNION ALL because all the other compound +** operators have an implied DISTINCT which is disallowed by +** restriction (4). +** +** Also, each component of the sub-query must return the same number +** of result columns. This is actually a requirement for any compound +** SELECT statement, but all the code here does is make sure that no +** such (illegal) sub-query is flattened. The caller will detect the +** syntax error and return a detailed message. +** +** (18) If the sub-query is a compound select, then all terms of the +** ORDER by clause of the parent must be simple references to +** columns of the sub-query. +** +** (19) The subquery does not use LIMIT or the outer query does not +** have a WHERE clause. +** +** (20) If the sub-query is a compound select, then it must not use +** an ORDER BY clause. Ticket #3773. We could relax this constraint +** somewhat by saying that the terms of the ORDER BY clause must +** appear as unmodified result columns in the outer query. But we +** have other optimizations in mind to deal with that case. +** +** (21) The subquery does not use LIMIT or the outer query is not +** DISTINCT. (See ticket [752e1646fc]). +** +** (22) The subquery is not a recursive CTE. +** +** (23) The parent is not a recursive CTE, or the sub-query is not a +** compound query. This restriction is because transforming the +** parent to a compound query confuses the code that handles +** recursive queries in multiSelect(). +** +** +** In this routine, the "p" parameter is a pointer to the outer query. +** The subquery is p->pSrc->a[iFrom]. isAgg is true if the outer query +** uses aggregates and subqueryIsAgg is true if the subquery uses aggregates. +** +** If flattening is not attempted, this routine is a no-op and returns 0. +** If flattening is attempted this routine returns 1. +** +** All of the expression analysis must occur on both the outer query and +** the subquery before this routine runs. +*/ +static int flattenSubquery( + Parse *pParse, /* Parsing context */ + Select *p, /* The parent or outer SELECT statement */ + int iFrom, /* Index in p->pSrc->a[] of the inner subquery */ + int isAgg, /* True if outer SELECT uses aggregate functions */ + int subqueryIsAgg /* True if the subquery uses aggregate functions */ +){ + const char *zSavedAuthContext = pParse->zAuthContext; + Select *pParent; + Select *pSub; /* The inner query or "subquery" */ + Select *pSub1; /* Pointer to the rightmost select in sub-query */ + SrcList *pSrc; /* The FROM clause of the outer query */ + SrcList *pSubSrc; /* The FROM clause of the subquery */ + ExprList *pList; /* The result set of the outer query */ + int iParent; /* VDBE cursor number of the pSub result set temp table */ + int i; /* Loop counter */ + Expr *pWhere; /* The WHERE clause */ + struct SrcList_item *pSubitem; /* The subquery */ + sqlite3 *db = pParse->db; + + /* Check to see if flattening is permitted. Return 0 if not. + */ + assert( p!=0 ); + assert( p->pPrior==0 ); /* Unable to flatten compound queries */ + if( OptimizationDisabled(db, SQLITE_QueryFlattener) ) return 0; + pSrc = p->pSrc; + assert( pSrc && iFrom>=0 && iFromnSrc ); + pSubitem = &pSrc->a[iFrom]; + iParent = pSubitem->iCursor; + pSub = pSubitem->pSelect; + assert( pSub!=0 ); + if( isAgg && subqueryIsAgg ) return 0; /* Restriction (1) */ + if( subqueryIsAgg && pSrc->nSrc>1 ) return 0; /* Restriction (2) */ + pSubSrc = pSub->pSrc; + assert( pSubSrc ); + /* Prior to version 3.1.2, when LIMIT and OFFSET had to be simple constants, + ** not arbitrary expresssions, we allowed some combining of LIMIT and OFFSET + ** because they could be computed at compile-time. But when LIMIT and OFFSET + ** became arbitrary expressions, we were forced to add restrictions (13) + ** and (14). */ + if( pSub->pLimit && p->pLimit ) return 0; /* Restriction (13) */ + if( pSub->pOffset ) return 0; /* Restriction (14) */ + if( (p->selFlags & SF_Compound)!=0 && pSub->pLimit ){ + return 0; /* Restriction (15) */ + } + if( pSubSrc->nSrc==0 ) return 0; /* Restriction (7) */ + if( pSub->selFlags & SF_Distinct ) return 0; /* Restriction (5) */ + if( pSub->pLimit && (pSrc->nSrc>1 || isAgg) ){ + return 0; /* Restrictions (8)(9) */ + } + if( (p->selFlags & SF_Distinct)!=0 && subqueryIsAgg ){ + return 0; /* Restriction (6) */ + } + if( p->pOrderBy && pSub->pOrderBy ){ + return 0; /* Restriction (11) */ + } + if( isAgg && pSub->pOrderBy ) return 0; /* Restriction (16) */ + if( pSub->pLimit && p->pWhere ) return 0; /* Restriction (19) */ + if( pSub->pLimit && (p->selFlags & SF_Distinct)!=0 ){ + return 0; /* Restriction (21) */ + } + if( pSub->selFlags & SF_Recursive ) return 0; /* Restriction (22) */ + if( (p->selFlags & SF_Recursive) && pSub->pPrior ) return 0; /* (23) */ + + /* OBSOLETE COMMENT 1: + ** Restriction 3: If the subquery is a join, make sure the subquery is + ** not used as the right operand of an outer join. Examples of why this + ** is not allowed: + ** + ** t1 LEFT OUTER JOIN (t2 JOIN t3) + ** + ** If we flatten the above, we would get + ** + ** (t1 LEFT OUTER JOIN t2) JOIN t3 + ** + ** which is not at all the same thing. + ** + ** OBSOLETE COMMENT 2: + ** Restriction 12: If the subquery is the right operand of a left outer + ** join, make sure the subquery has no WHERE clause. + ** An examples of why this is not allowed: + ** + ** t1 LEFT OUTER JOIN (SELECT * FROM t2 WHERE t2.x>0) + ** + ** If we flatten the above, we would get + ** + ** (t1 LEFT OUTER JOIN t2) WHERE t2.x>0 + ** + ** But the t2.x>0 test will always fail on a NULL row of t2, which + ** effectively converts the OUTER JOIN into an INNER JOIN. + ** + ** THIS OVERRIDES OBSOLETE COMMENTS 1 AND 2 ABOVE: + ** Ticket #3300 shows that flattening the right term of a LEFT JOIN + ** is fraught with danger. Best to avoid the whole thing. If the + ** subquery is the right term of a LEFT JOIN, then do not flatten. + */ + if( (pSubitem->jointype & JT_OUTER)!=0 ){ + return 0; + } + + /* Restriction 17: If the sub-query is a compound SELECT, then it must + ** use only the UNION ALL operator. And none of the simple select queries + ** that make up the compound SELECT are allowed to be aggregate or distinct + ** queries. + */ + if( pSub->pPrior ){ + if( pSub->pOrderBy ){ + return 0; /* Restriction 20 */ + } + if( isAgg || (p->selFlags & SF_Distinct)!=0 || pSrc->nSrc!=1 ){ + return 0; + } + for(pSub1=pSub; pSub1; pSub1=pSub1->pPrior){ + testcase( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); + testcase( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); + assert( pSub->pSrc!=0 ); + if( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))!=0 + || (pSub1->pPrior && pSub1->op!=TK_ALL) + || pSub1->pSrc->nSrc<1 + || pSub->pEList->nExpr!=pSub1->pEList->nExpr + ){ + return 0; + } + testcase( pSub1->pSrc->nSrc>1 ); + } + + /* Restriction 18. */ + if( p->pOrderBy ){ + int ii; + for(ii=0; iipOrderBy->nExpr; ii++){ + if( p->pOrderBy->a[ii].u.x.iOrderByCol==0 ) return 0; + } + } + } + + /***** If we reach this point, flattening is permitted. *****/ + + /* Authorize the subquery */ + pParse->zAuthContext = pSubitem->zName; + TESTONLY(i =) sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0); + testcase( i==SQLITE_DENY ); + pParse->zAuthContext = zSavedAuthContext; + + /* If the sub-query is a compound SELECT statement, then (by restrictions + ** 17 and 18 above) it must be a UNION ALL and the parent query must + ** be of the form: + ** + ** SELECT FROM () + ** + ** followed by any ORDER BY, LIMIT and/or OFFSET clauses. This block + ** creates N-1 copies of the parent query without any ORDER BY, LIMIT or + ** OFFSET clauses and joins them to the left-hand-side of the original + ** using UNION ALL operators. In this case N is the number of simple + ** select statements in the compound sub-query. + ** + ** Example: + ** + ** SELECT a+1 FROM ( + ** SELECT x FROM tab + ** UNION ALL + ** SELECT y FROM tab + ** UNION ALL + ** SELECT abs(z*2) FROM tab2 + ** ) WHERE a!=5 ORDER BY 1 + ** + ** Transformed into: + ** + ** SELECT x+1 FROM tab WHERE x+1!=5 + ** UNION ALL + ** SELECT y+1 FROM tab WHERE y+1!=5 + ** UNION ALL + ** SELECT abs(z*2)+1 FROM tab2 WHERE abs(z*2)+1!=5 + ** ORDER BY 1 + ** + ** We call this the "compound-subquery flattening". + */ + for(pSub=pSub->pPrior; pSub; pSub=pSub->pPrior){ + Select *pNew; + ExprList *pOrderBy = p->pOrderBy; + Expr *pLimit = p->pLimit; + Expr *pOffset = p->pOffset; + Select *pPrior = p->pPrior; + p->pOrderBy = 0; + p->pSrc = 0; + p->pPrior = 0; + p->pLimit = 0; + p->pOffset = 0; + pNew = sqlite3SelectDup(db, p, 0); + p->pOffset = pOffset; + p->pLimit = pLimit; + p->pOrderBy = pOrderBy; + p->pSrc = pSrc; + p->op = TK_ALL; + if( pNew==0 ){ + p->pPrior = pPrior; + }else{ + pNew->pPrior = pPrior; + if( pPrior ) pPrior->pNext = pNew; + pNew->pNext = p; + p->pPrior = pNew; + } + if( db->mallocFailed ) return 1; + } + + /* Begin flattening the iFrom-th entry of the FROM clause + ** in the outer query. + */ + pSub = pSub1 = pSubitem->pSelect; + + /* Delete the transient table structure associated with the + ** subquery + */ + sqlite3DbFree(db, pSubitem->zDatabase); + sqlite3DbFree(db, pSubitem->zName); + sqlite3DbFree(db, pSubitem->zAlias); + pSubitem->zDatabase = 0; + pSubitem->zName = 0; + pSubitem->zAlias = 0; + pSubitem->pSelect = 0; + + /* Defer deleting the Table object associated with the + ** subquery until code generation is + ** complete, since there may still exist Expr.pTab entries that + ** refer to the subquery even after flattening. Ticket #3346. + ** + ** pSubitem->pTab is always non-NULL by test restrictions and tests above. + */ + if( ALWAYS(pSubitem->pTab!=0) ){ + Table *pTabToDel = pSubitem->pTab; + if( pTabToDel->nRef==1 ){ + Parse *pToplevel = sqlite3ParseToplevel(pParse); + pTabToDel->pNextZombie = pToplevel->pZombieTab; + pToplevel->pZombieTab = pTabToDel; + }else{ + pTabToDel->nRef--; + } + pSubitem->pTab = 0; + } + + /* The following loop runs once for each term in a compound-subquery + ** flattening (as described above). If we are doing a different kind + ** of flattening - a flattening other than a compound-subquery flattening - + ** then this loop only runs once. + ** + ** This loop moves all of the FROM elements of the subquery into the + ** the FROM clause of the outer query. Before doing this, remember + ** the cursor number for the original outer query FROM element in + ** iParent. The iParent cursor will never be used. Subsequent code + ** will scan expressions looking for iParent references and replace + ** those references with expressions that resolve to the subquery FROM + ** elements we are now copying in. + */ + for(pParent=p; pParent; pParent=pParent->pPrior, pSub=pSub->pPrior){ + int nSubSrc; + u8 jointype = 0; + pSubSrc = pSub->pSrc; /* FROM clause of subquery */ + nSubSrc = pSubSrc->nSrc; /* Number of terms in subquery FROM clause */ + pSrc = pParent->pSrc; /* FROM clause of the outer query */ + + if( pSrc ){ + assert( pParent==p ); /* First time through the loop */ + jointype = pSubitem->jointype; + }else{ + assert( pParent!=p ); /* 2nd and subsequent times through the loop */ + pSrc = pParent->pSrc = sqlite3SrcListAppend(db, 0, 0, 0); + if( pSrc==0 ){ + assert( db->mallocFailed ); + break; + } + } + + /* The subquery uses a single slot of the FROM clause of the outer + ** query. If the subquery has more than one element in its FROM clause, + ** then expand the outer query to make space for it to hold all elements + ** of the subquery. + ** + ** Example: + ** + ** SELECT * FROM tabA, (SELECT * FROM sub1, sub2), tabB; + ** + ** The outer query has 3 slots in its FROM clause. One slot of the + ** outer query (the middle slot) is used by the subquery. The next + ** block of code will expand the out query to 4 slots. The middle + ** slot is expanded to two slots in order to make space for the + ** two elements in the FROM clause of the subquery. + */ + if( nSubSrc>1 ){ + pParent->pSrc = pSrc = sqlite3SrcListEnlarge(db, pSrc, nSubSrc-1,iFrom+1); + if( db->mallocFailed ){ + break; + } + } + + /* Transfer the FROM clause terms from the subquery into the + ** outer query. + */ + for(i=0; ia[i+iFrom].pUsing); + pSrc->a[i+iFrom] = pSubSrc->a[i]; + memset(&pSubSrc->a[i], 0, sizeof(pSubSrc->a[i])); + } + pSrc->a[iFrom].jointype = jointype; + + /* Now begin substituting subquery result set expressions for + ** references to the iParent in the outer query. + ** + ** Example: + ** + ** SELECT a+5, b*10 FROM (SELECT x*3 AS a, y+10 AS b FROM t1) WHERE a>b; + ** \ \_____________ subquery __________/ / + ** \_____________________ outer query ______________________________/ + ** + ** We look at every expression in the outer query and every place we see + ** "a" we substitute "x*3" and every place we see "b" we substitute "y+10". + */ + pList = pParent->pEList; + for(i=0; inExpr; i++){ + if( pList->a[i].zName==0 ){ + char *zName = sqlite3DbStrDup(db, pList->a[i].zSpan); + sqlite3Dequote(zName); + pList->a[i].zName = zName; + } + } + substExprList(db, pParent->pEList, iParent, pSub->pEList); + if( isAgg ){ + substExprList(db, pParent->pGroupBy, iParent, pSub->pEList); + pParent->pHaving = substExpr(db, pParent->pHaving, iParent, pSub->pEList); + } + if( pSub->pOrderBy ){ + assert( pParent->pOrderBy==0 ); + pParent->pOrderBy = pSub->pOrderBy; + pSub->pOrderBy = 0; + }else if( pParent->pOrderBy ){ + substExprList(db, pParent->pOrderBy, iParent, pSub->pEList); + } + if( pSub->pWhere ){ + pWhere = sqlite3ExprDup(db, pSub->pWhere, 0); + }else{ + pWhere = 0; + } + if( subqueryIsAgg ){ + assert( pParent->pHaving==0 ); + pParent->pHaving = pParent->pWhere; + pParent->pWhere = pWhere; + pParent->pHaving = substExpr(db, pParent->pHaving, iParent, pSub->pEList); + pParent->pHaving = sqlite3ExprAnd(db, pParent->pHaving, + sqlite3ExprDup(db, pSub->pHaving, 0)); + assert( pParent->pGroupBy==0 ); + pParent->pGroupBy = sqlite3ExprListDup(db, pSub->pGroupBy, 0); + }else{ + pParent->pWhere = substExpr(db, pParent->pWhere, iParent, pSub->pEList); + pParent->pWhere = sqlite3ExprAnd(db, pParent->pWhere, pWhere); + } + + /* The flattened query is distinct if either the inner or the + ** outer query is distinct. + */ + pParent->selFlags |= pSub->selFlags & SF_Distinct; + + /* + ** SELECT ... FROM (SELECT ... LIMIT a OFFSET b) LIMIT x OFFSET y; + ** + ** One is tempted to try to add a and b to combine the limits. But this + ** does not work if either limit is negative. + */ + if( pSub->pLimit ){ + pParent->pLimit = pSub->pLimit; + pSub->pLimit = 0; + } + } + + /* Finially, delete what is left of the subquery and return + ** success. + */ + sqlite3SelectDelete(db, pSub1); + + return 1; +} +#endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ + +/* +** Based on the contents of the AggInfo structure indicated by the first +** argument, this function checks if the following are true: +** +** * the query contains just a single aggregate function, +** * the aggregate function is either min() or max(), and +** * the argument to the aggregate function is a column value. +** +** If all of the above are true, then WHERE_ORDERBY_MIN or WHERE_ORDERBY_MAX +** is returned as appropriate. Also, *ppMinMax is set to point to the +** list of arguments passed to the aggregate before returning. +** +** Or, if the conditions above are not met, *ppMinMax is set to 0 and +** WHERE_ORDERBY_NORMAL is returned. +*/ +static u8 minMaxQuery(AggInfo *pAggInfo, ExprList **ppMinMax){ + int eRet = WHERE_ORDERBY_NORMAL; /* Return value */ + + *ppMinMax = 0; + if( pAggInfo->nFunc==1 ){ + Expr *pExpr = pAggInfo->aFunc[0].pExpr; /* Aggregate function */ + ExprList *pEList = pExpr->x.pList; /* Arguments to agg function */ + + assert( pExpr->op==TK_AGG_FUNCTION ); + if( pEList && pEList->nExpr==1 && pEList->a[0].pExpr->op==TK_AGG_COLUMN ){ + const char *zFunc = pExpr->u.zToken; + if( sqlite3StrICmp(zFunc, "min")==0 ){ + eRet = WHERE_ORDERBY_MIN; + *ppMinMax = pEList; + }else if( sqlite3StrICmp(zFunc, "max")==0 ){ + eRet = WHERE_ORDERBY_MAX; + *ppMinMax = pEList; + } + } + } + + assert( *ppMinMax==0 || (*ppMinMax)->nExpr==1 ); + return eRet; +} + +/* +** The select statement passed as the first argument is an aggregate query. +** The second argment is the associated aggregate-info object. This +** function tests if the SELECT is of the form: +** +** SELECT count(*) FROM +** +** where table is a database table, not a sub-select or view. If the query +** does match this pattern, then a pointer to the Table object representing +** is returned. Otherwise, 0 is returned. +*/ +static Table *isSimpleCount(Select *p, AggInfo *pAggInfo){ + Table *pTab; + Expr *pExpr; + + assert( !p->pGroupBy ); + + if( p->pWhere || p->pEList->nExpr!=1 + || p->pSrc->nSrc!=1 || p->pSrc->a[0].pSelect + ){ + return 0; + } + pTab = p->pSrc->a[0].pTab; + pExpr = p->pEList->a[0].pExpr; + assert( pTab && !pTab->pSelect && pExpr ); + + if( IsVirtual(pTab) ) return 0; + if( pExpr->op!=TK_AGG_FUNCTION ) return 0; + if( NEVER(pAggInfo->nFunc==0) ) return 0; + if( (pAggInfo->aFunc[0].pFunc->funcFlags&SQLITE_FUNC_COUNT)==0 ) return 0; + if( pExpr->flags&EP_Distinct ) return 0; + + return pTab; +} + +/* +** If the source-list item passed as an argument was augmented with an +** INDEXED BY clause, then try to locate the specified index. If there +** was such a clause and the named index cannot be found, return +** SQLITE_ERROR and leave an error in pParse. Otherwise, populate +** pFrom->pIndex and return SQLITE_OK. +*/ +SQLITE_PRIVATE int sqlite3IndexedByLookup(Parse *pParse, struct SrcList_item *pFrom){ + if( pFrom->pTab && pFrom->zIndex ){ + Table *pTab = pFrom->pTab; + char *zIndex = pFrom->zIndex; + Index *pIdx; + for(pIdx=pTab->pIndex; + pIdx && sqlite3StrICmp(pIdx->zName, zIndex); + pIdx=pIdx->pNext + ); + if( !pIdx ){ + sqlite3ErrorMsg(pParse, "no such index: %s", zIndex, 0); + pParse->checkSchema = 1; + return SQLITE_ERROR; + } + pFrom->pIndex = pIdx; + } + return SQLITE_OK; +} +/* +** Detect compound SELECT statements that use an ORDER BY clause with +** an alternative collating sequence. +** +** SELECT ... FROM t1 EXCEPT SELECT ... FROM t2 ORDER BY .. COLLATE ... +** +** These are rewritten as a subquery: +** +** SELECT * FROM (SELECT ... FROM t1 EXCEPT SELECT ... FROM t2) +** ORDER BY ... COLLATE ... +** +** This transformation is necessary because the multiSelectOrderBy() routine +** above that generates the code for a compound SELECT with an ORDER BY clause +** uses a merge algorithm that requires the same collating sequence on the +** result columns as on the ORDER BY clause. See ticket +** http://www.sqlite.org/src/info/6709574d2a +** +** This transformation is only needed for EXCEPT, INTERSECT, and UNION. +** The UNION ALL operator works fine with multiSelectOrderBy() even when +** there are COLLATE terms in the ORDER BY. +*/ +static int convertCompoundSelectToSubquery(Walker *pWalker, Select *p){ + int i; + Select *pNew; + Select *pX; + sqlite3 *db; + struct ExprList_item *a; + SrcList *pNewSrc; + Parse *pParse; + Token dummy; + + if( p->pPrior==0 ) return WRC_Continue; + if( p->pOrderBy==0 ) return WRC_Continue; + for(pX=p; pX && (pX->op==TK_ALL || pX->op==TK_SELECT); pX=pX->pPrior){} + if( pX==0 ) return WRC_Continue; + a = p->pOrderBy->a; + for(i=p->pOrderBy->nExpr-1; i>=0; i--){ + if( a[i].pExpr->flags & EP_Collate ) break; + } + if( i<0 ) return WRC_Continue; + + /* If we reach this point, that means the transformation is required. */ + + pParse = pWalker->pParse; + db = pParse->db; + pNew = sqlite3DbMallocZero(db, sizeof(*pNew) ); + if( pNew==0 ) return WRC_Abort; + memset(&dummy, 0, sizeof(dummy)); + pNewSrc = sqlite3SrcListAppendFromTerm(pParse,0,0,0,&dummy,pNew,0,0); + if( pNewSrc==0 ) return WRC_Abort; + *pNew = *p; + p->pSrc = pNewSrc; + p->pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db, TK_ALL, 0)); + p->op = TK_SELECT; + p->pWhere = 0; + pNew->pGroupBy = 0; + pNew->pHaving = 0; + pNew->pOrderBy = 0; + p->pPrior = 0; + p->pNext = 0; + p->selFlags &= ~SF_Compound; + assert( pNew->pPrior!=0 ); + pNew->pPrior->pNext = pNew; + pNew->pLimit = 0; + pNew->pOffset = 0; + return WRC_Continue; +} + +#ifndef SQLITE_OMIT_CTE +/* +** Argument pWith (which may be NULL) points to a linked list of nested +** WITH contexts, from inner to outermost. If the table identified by +** FROM clause element pItem is really a common-table-expression (CTE) +** then return a pointer to the CTE definition for that table. Otherwise +** return NULL. +** +** If a non-NULL value is returned, set *ppContext to point to the With +** object that the returned CTE belongs to. +*/ +static struct Cte *searchWith( + With *pWith, /* Current outermost WITH clause */ + struct SrcList_item *pItem, /* FROM clause element to resolve */ + With **ppContext /* OUT: WITH clause return value belongs to */ +){ + const char *zName; + if( pItem->zDatabase==0 && (zName = pItem->zName)!=0 ){ + With *p; + for(p=pWith; p; p=p->pOuter){ + int i; + for(i=0; inCte; i++){ + if( sqlite3StrICmp(zName, p->a[i].zName)==0 ){ + *ppContext = p; + return &p->a[i]; + } + } + } + } + return 0; +} + +/* The code generator maintains a stack of active WITH clauses +** with the inner-most WITH clause being at the top of the stack. +** +** This routine pushes the WITH clause passed as the second argument +** onto the top of the stack. If argument bFree is true, then this +** WITH clause will never be popped from the stack. In this case it +** should be freed along with the Parse object. In other cases, when +** bFree==0, the With object will be freed along with the SELECT +** statement with which it is associated. +*/ +SQLITE_PRIVATE void sqlite3WithPush(Parse *pParse, With *pWith, u8 bFree){ + assert( bFree==0 || pParse->pWith==0 ); + if( pWith ){ + pWith->pOuter = pParse->pWith; + pParse->pWith = pWith; + pParse->bFreeWith = bFree; + } +} + +/* +** This function checks if argument pFrom refers to a CTE declared by +** a WITH clause on the stack currently maintained by the parser. And, +** if currently processing a CTE expression, if it is a recursive +** reference to the current CTE. +** +** If pFrom falls into either of the two categories above, pFrom->pTab +** and other fields are populated accordingly. The caller should check +** (pFrom->pTab!=0) to determine whether or not a successful match +** was found. +** +** Whether or not a match is found, SQLITE_OK is returned if no error +** occurs. If an error does occur, an error message is stored in the +** parser and some error code other than SQLITE_OK returned. +*/ +static int withExpand( + Walker *pWalker, + struct SrcList_item *pFrom +){ + Parse *pParse = pWalker->pParse; + sqlite3 *db = pParse->db; + struct Cte *pCte; /* Matched CTE (or NULL if no match) */ + With *pWith; /* WITH clause that pCte belongs to */ + + assert( pFrom->pTab==0 ); + + pCte = searchWith(pParse->pWith, pFrom, &pWith); + if( pCte ){ + Table *pTab; + ExprList *pEList; + Select *pSel; + Select *pLeft; /* Left-most SELECT statement */ + int bMayRecursive; /* True if compound joined by UNION [ALL] */ + With *pSavedWith; /* Initial value of pParse->pWith */ + + /* If pCte->zErr is non-NULL at this point, then this is an illegal + ** recursive reference to CTE pCte. Leave an error in pParse and return + ** early. If pCte->zErr is NULL, then this is not a recursive reference. + ** In this case, proceed. */ + if( pCte->zErr ){ + sqlite3ErrorMsg(pParse, pCte->zErr, pCte->zName); + return SQLITE_ERROR; + } + + assert( pFrom->pTab==0 ); + pFrom->pTab = pTab = sqlite3DbMallocZero(db, sizeof(Table)); + if( pTab==0 ) return WRC_Abort; + pTab->nRef = 1; + pTab->zName = sqlite3DbStrDup(db, pCte->zName); + pTab->iPKey = -1; + pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); + pTab->tabFlags |= TF_Ephemeral; + pFrom->pSelect = sqlite3SelectDup(db, pCte->pSelect, 0); + if( db->mallocFailed ) return SQLITE_NOMEM; + assert( pFrom->pSelect ); + + /* Check if this is a recursive CTE. */ + pSel = pFrom->pSelect; + bMayRecursive = ( pSel->op==TK_ALL || pSel->op==TK_UNION ); + if( bMayRecursive ){ + int i; + SrcList *pSrc = pFrom->pSelect->pSrc; + for(i=0; inSrc; i++){ + struct SrcList_item *pItem = &pSrc->a[i]; + if( pItem->zDatabase==0 + && pItem->zName!=0 + && 0==sqlite3StrICmp(pItem->zName, pCte->zName) + ){ + pItem->pTab = pTab; + pItem->isRecursive = 1; + pTab->nRef++; + pSel->selFlags |= SF_Recursive; + } + } + } + + /* Only one recursive reference is permitted. */ + if( pTab->nRef>2 ){ + sqlite3ErrorMsg( + pParse, "multiple references to recursive table: %s", pCte->zName + ); + return SQLITE_ERROR; + } + assert( pTab->nRef==1 || ((pSel->selFlags&SF_Recursive) && pTab->nRef==2 )); + + pCte->zErr = "circular reference: %s"; + pSavedWith = pParse->pWith; + pParse->pWith = pWith; + sqlite3WalkSelect(pWalker, bMayRecursive ? pSel->pPrior : pSel); + + for(pLeft=pSel; pLeft->pPrior; pLeft=pLeft->pPrior); + pEList = pLeft->pEList; + if( pCte->pCols ){ + if( pEList->nExpr!=pCte->pCols->nExpr ){ + sqlite3ErrorMsg(pParse, "table %s has %d values for %d columns", + pCte->zName, pEList->nExpr, pCte->pCols->nExpr + ); + pParse->pWith = pSavedWith; + return SQLITE_ERROR; + } + pEList = pCte->pCols; + } + + selectColumnsFromExprList(pParse, pEList, &pTab->nCol, &pTab->aCol); + if( bMayRecursive ){ + if( pSel->selFlags & SF_Recursive ){ + pCte->zErr = "multiple recursive references: %s"; + }else{ + pCte->zErr = "recursive reference in a subquery: %s"; + } + sqlite3WalkSelect(pWalker, pSel); + } + pCte->zErr = 0; + pParse->pWith = pSavedWith; + } + + return SQLITE_OK; +} +#endif + +#ifndef SQLITE_OMIT_CTE +/* +** If the SELECT passed as the second argument has an associated WITH +** clause, pop it from the stack stored as part of the Parse object. +** +** This function is used as the xSelectCallback2() callback by +** sqlite3SelectExpand() when walking a SELECT tree to resolve table +** names and other FROM clause elements. +*/ +static void selectPopWith(Walker *pWalker, Select *p){ + Parse *pParse = pWalker->pParse; + With *pWith = findRightmost(p)->pWith; + if( pWith!=0 ){ + assert( pParse->pWith==pWith ); + pParse->pWith = pWith->pOuter; + } +} +#else +#define selectPopWith 0 +#endif + +/* +** This routine is a Walker callback for "expanding" a SELECT statement. +** "Expanding" means to do the following: +** +** (1) Make sure VDBE cursor numbers have been assigned to every +** element of the FROM clause. +** +** (2) Fill in the pTabList->a[].pTab fields in the SrcList that +** defines FROM clause. When views appear in the FROM clause, +** fill pTabList->a[].pSelect with a copy of the SELECT statement +** that implements the view. A copy is made of the view's SELECT +** statement so that we can freely modify or delete that statement +** without worrying about messing up the presistent representation +** of the view. +** +** (3) Add terms to the WHERE clause to accomodate the NATURAL keyword +** on joins and the ON and USING clause of joins. +** +** (4) Scan the list of columns in the result set (pEList) looking +** for instances of the "*" operator or the TABLE.* operator. +** If found, expand each "*" to be every column in every table +** and TABLE.* to be every column in TABLE. +** +*/ +static int selectExpander(Walker *pWalker, Select *p){ + Parse *pParse = pWalker->pParse; + int i, j, k; + SrcList *pTabList; + ExprList *pEList; + struct SrcList_item *pFrom; + sqlite3 *db = pParse->db; + Expr *pE, *pRight, *pExpr; + u16 selFlags = p->selFlags; + + p->selFlags |= SF_Expanded; + if( db->mallocFailed ){ + return WRC_Abort; + } + if( NEVER(p->pSrc==0) || (selFlags & SF_Expanded)!=0 ){ + return WRC_Prune; + } + pTabList = p->pSrc; + pEList = p->pEList; + sqlite3WithPush(pParse, findRightmost(p)->pWith, 0); + + /* Make sure cursor numbers have been assigned to all entries in + ** the FROM clause of the SELECT statement. + */ + sqlite3SrcListAssignCursors(pParse, pTabList); + + /* Look up every table named in the FROM clause of the select. If + ** an entry of the FROM clause is a subquery instead of a table or view, + ** then create a transient table structure to describe the subquery. + */ + for(i=0, pFrom=pTabList->a; inSrc; i++, pFrom++){ + Table *pTab; + assert( pFrom->isRecursive==0 || pFrom->pTab ); + if( pFrom->isRecursive ) continue; + if( pFrom->pTab!=0 ){ + /* This statement has already been prepared. There is no need + ** to go further. */ + assert( i==0 ); +#ifndef SQLITE_OMIT_CTE + selectPopWith(pWalker, p); +#endif + return WRC_Prune; + } +#ifndef SQLITE_OMIT_CTE + if( withExpand(pWalker, pFrom) ) return WRC_Abort; + if( pFrom->pTab ) {} else +#endif + if( pFrom->zName==0 ){ +#ifndef SQLITE_OMIT_SUBQUERY + Select *pSel = pFrom->pSelect; + /* A sub-query in the FROM clause of a SELECT */ + assert( pSel!=0 ); + assert( pFrom->pTab==0 ); + sqlite3WalkSelect(pWalker, pSel); + pFrom->pTab = pTab = sqlite3DbMallocZero(db, sizeof(Table)); + if( pTab==0 ) return WRC_Abort; + pTab->nRef = 1; + pTab->zName = sqlite3MPrintf(db, "sqlite_sq_%p", (void*)pTab); + while( pSel->pPrior ){ pSel = pSel->pPrior; } + selectColumnsFromExprList(pParse, pSel->pEList, &pTab->nCol, &pTab->aCol); + pTab->iPKey = -1; + pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); + pTab->tabFlags |= TF_Ephemeral; +#endif + }else{ + /* An ordinary table or view name in the FROM clause */ + assert( pFrom->pTab==0 ); + pFrom->pTab = pTab = sqlite3LocateTableItem(pParse, 0, pFrom); + if( pTab==0 ) return WRC_Abort; + if( pTab->nRef==0xffff ){ + sqlite3ErrorMsg(pParse, "too many references to \"%s\": max 65535", + pTab->zName); + pFrom->pTab = 0; + return WRC_Abort; + } + pTab->nRef++; +#if !defined(SQLITE_OMIT_VIEW) || !defined (SQLITE_OMIT_VIRTUALTABLE) + if( pTab->pSelect || IsVirtual(pTab) ){ + /* We reach here if the named table is a really a view */ + if( sqlite3ViewGetColumnNames(pParse, pTab) ) return WRC_Abort; + assert( pFrom->pSelect==0 ); + pFrom->pSelect = sqlite3SelectDup(db, pTab->pSelect, 0); + sqlite3WalkSelect(pWalker, pFrom->pSelect); + } +#endif + } + + /* Locate the index named by the INDEXED BY clause, if any. */ + if( sqlite3IndexedByLookup(pParse, pFrom) ){ + return WRC_Abort; + } + } + + /* Process NATURAL keywords, and ON and USING clauses of joins. + */ + if( db->mallocFailed || sqliteProcessJoin(pParse, p) ){ + return WRC_Abort; + } + + /* For every "*" that occurs in the column list, insert the names of + ** all columns in all tables. And for every TABLE.* insert the names + ** of all columns in TABLE. The parser inserted a special expression + ** with the TK_ALL operator for each "*" that it found in the column list. + ** The following code just has to locate the TK_ALL expressions and expand + ** each one to the list of all columns in all tables. + ** + ** The first loop just checks to see if there are any "*" operators + ** that need expanding. + */ + for(k=0; knExpr; k++){ + pE = pEList->a[k].pExpr; + if( pE->op==TK_ALL ) break; + assert( pE->op!=TK_DOT || pE->pRight!=0 ); + assert( pE->op!=TK_DOT || (pE->pLeft!=0 && pE->pLeft->op==TK_ID) ); + if( pE->op==TK_DOT && pE->pRight->op==TK_ALL ) break; + } + if( knExpr ){ + /* + ** If we get here it means the result set contains one or more "*" + ** operators that need to be expanded. Loop through each expression + ** in the result set and expand them one by one. + */ + struct ExprList_item *a = pEList->a; + ExprList *pNew = 0; + int flags = pParse->db->flags; + int longNames = (flags & SQLITE_FullColNames)!=0 + && (flags & SQLITE_ShortColNames)==0; + + /* When processing FROM-clause subqueries, it is always the case + ** that full_column_names=OFF and short_column_names=ON. The + ** sqlite3ResultSetOfSelect() routine makes it so. */ + assert( (p->selFlags & SF_NestedFrom)==0 + || ((flags & SQLITE_FullColNames)==0 && + (flags & SQLITE_ShortColNames)!=0) ); + + for(k=0; knExpr; k++){ + pE = a[k].pExpr; + pRight = pE->pRight; + assert( pE->op!=TK_DOT || pRight!=0 ); + if( pE->op!=TK_ALL && (pE->op!=TK_DOT || pRight->op!=TK_ALL) ){ + /* This particular expression does not need to be expanded. + */ + pNew = sqlite3ExprListAppend(pParse, pNew, a[k].pExpr); + if( pNew ){ + pNew->a[pNew->nExpr-1].zName = a[k].zName; + pNew->a[pNew->nExpr-1].zSpan = a[k].zSpan; + a[k].zName = 0; + a[k].zSpan = 0; + } + a[k].pExpr = 0; + }else{ + /* This expression is a "*" or a "TABLE.*" and needs to be + ** expanded. */ + int tableSeen = 0; /* Set to 1 when TABLE matches */ + char *zTName = 0; /* text of name of TABLE */ + if( pE->op==TK_DOT ){ + assert( pE->pLeft!=0 ); + assert( !ExprHasProperty(pE->pLeft, EP_IntValue) ); + zTName = pE->pLeft->u.zToken; + } + for(i=0, pFrom=pTabList->a; inSrc; i++, pFrom++){ + Table *pTab = pFrom->pTab; + Select *pSub = pFrom->pSelect; + char *zTabName = pFrom->zAlias; + const char *zSchemaName = 0; + int iDb; + if( zTabName==0 ){ + zTabName = pTab->zName; + } + if( db->mallocFailed ) break; + if( pSub==0 || (pSub->selFlags & SF_NestedFrom)==0 ){ + pSub = 0; + if( zTName && sqlite3StrICmp(zTName, zTabName)!=0 ){ + continue; + } + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + zSchemaName = iDb>=0 ? db->aDb[iDb].zName : "*"; + } + for(j=0; jnCol; j++){ + char *zName = pTab->aCol[j].zName; + char *zColname; /* The computed column name */ + char *zToFree; /* Malloced string that needs to be freed */ + Token sColname; /* Computed column name as a token */ + + assert( zName ); + if( zTName && pSub + && sqlite3MatchSpanName(pSub->pEList->a[j].zSpan, 0, zTName, 0)==0 + ){ + continue; + } + + /* If a column is marked as 'hidden' (currently only possible + ** for virtual tables), do not include it in the expanded + ** result-set list. + */ + if( IsHiddenColumn(&pTab->aCol[j]) ){ + assert(IsVirtual(pTab)); + continue; + } + tableSeen = 1; + + if( i>0 && zTName==0 ){ + if( (pFrom->jointype & JT_NATURAL)!=0 + && tableAndColumnIndex(pTabList, i, zName, 0, 0) + ){ + /* In a NATURAL join, omit the join columns from the + ** table to the right of the join */ + continue; + } + if( sqlite3IdListIndex(pFrom->pUsing, zName)>=0 ){ + /* In a join with a USING clause, omit columns in the + ** using clause from the table on the right. */ + continue; + } + } + pRight = sqlite3Expr(db, TK_ID, zName); + zColname = zName; + zToFree = 0; + if( longNames || pTabList->nSrc>1 ){ + Expr *pLeft; + pLeft = sqlite3Expr(db, TK_ID, zTabName); + pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight, 0); + if( zSchemaName ){ + pLeft = sqlite3Expr(db, TK_ID, zSchemaName); + pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pExpr, 0); + } + if( longNames ){ + zColname = sqlite3MPrintf(db, "%s.%s", zTabName, zName); + zToFree = zColname; + } + }else{ + pExpr = pRight; + } + pNew = sqlite3ExprListAppend(pParse, pNew, pExpr); + sColname.z = zColname; + sColname.n = sqlite3Strlen30(zColname); + sqlite3ExprListSetName(pParse, pNew, &sColname, 0); + if( pNew && (p->selFlags & SF_NestedFrom)!=0 ){ + struct ExprList_item *pX = &pNew->a[pNew->nExpr-1]; + if( pSub ){ + pX->zSpan = sqlite3DbStrDup(db, pSub->pEList->a[j].zSpan); + testcase( pX->zSpan==0 ); + }else{ + pX->zSpan = sqlite3MPrintf(db, "%s.%s.%s", + zSchemaName, zTabName, zColname); + testcase( pX->zSpan==0 ); + } + pX->bSpanIsTab = 1; + } + sqlite3DbFree(db, zToFree); + } + } + if( !tableSeen ){ + if( zTName ){ + sqlite3ErrorMsg(pParse, "no such table: %s", zTName); + }else{ + sqlite3ErrorMsg(pParse, "no tables specified"); + } + } + } + } + sqlite3ExprListDelete(db, pEList); + p->pEList = pNew; + } +#if SQLITE_MAX_COLUMN + if( p->pEList && p->pEList->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){ + sqlite3ErrorMsg(pParse, "too many columns in result set"); + } +#endif + return WRC_Continue; +} + +/* +** No-op routine for the parse-tree walker. +** +** When this routine is the Walker.xExprCallback then expression trees +** are walked without any actions being taken at each node. Presumably, +** when this routine is used for Walker.xExprCallback then +** Walker.xSelectCallback is set to do something useful for every +** subquery in the parser tree. +*/ +static int exprWalkNoop(Walker *NotUsed, Expr *NotUsed2){ + UNUSED_PARAMETER2(NotUsed, NotUsed2); + return WRC_Continue; +} + +/* +** This routine "expands" a SELECT statement and all of its subqueries. +** For additional information on what it means to "expand" a SELECT +** statement, see the comment on the selectExpand worker callback above. +** +** Expanding a SELECT statement is the first step in processing a +** SELECT statement. The SELECT statement must be expanded before +** name resolution is performed. +** +** If anything goes wrong, an error message is written into pParse. +** The calling function can detect the problem by looking at pParse->nErr +** and/or pParse->db->mallocFailed. +*/ +static void sqlite3SelectExpand(Parse *pParse, Select *pSelect){ + Walker w; + memset(&w, 0, sizeof(w)); + w.xExprCallback = exprWalkNoop; + w.pParse = pParse; + if( pParse->hasCompound ){ + w.xSelectCallback = convertCompoundSelectToSubquery; + sqlite3WalkSelect(&w, pSelect); + } + w.xSelectCallback = selectExpander; + w.xSelectCallback2 = selectPopWith; + sqlite3WalkSelect(&w, pSelect); +} + + +#ifndef SQLITE_OMIT_SUBQUERY +/* +** This is a Walker.xSelectCallback callback for the sqlite3SelectTypeInfo() +** interface. +** +** For each FROM-clause subquery, add Column.zType and Column.zColl +** information to the Table structure that represents the result set +** of that subquery. +** +** The Table structure that represents the result set was constructed +** by selectExpander() but the type and collation information was omitted +** at that point because identifiers had not yet been resolved. This +** routine is called after identifier resolution. +*/ +static void selectAddSubqueryTypeInfo(Walker *pWalker, Select *p){ + Parse *pParse; + int i; + SrcList *pTabList; + struct SrcList_item *pFrom; + + assert( p->selFlags & SF_Resolved ); + if( (p->selFlags & SF_HasTypeInfo)==0 ){ + p->selFlags |= SF_HasTypeInfo; + pParse = pWalker->pParse; + pTabList = p->pSrc; + for(i=0, pFrom=pTabList->a; inSrc; i++, pFrom++){ + Table *pTab = pFrom->pTab; + if( ALWAYS(pTab!=0) && (pTab->tabFlags & TF_Ephemeral)!=0 ){ + /* A sub-query in the FROM clause of a SELECT */ + Select *pSel = pFrom->pSelect; + if( pSel ){ + while( pSel->pPrior ) pSel = pSel->pPrior; + selectAddColumnTypeAndCollation(pParse, pTab, pSel); + } + } + } + } +} +#endif + + +/* +** This routine adds datatype and collating sequence information to +** the Table structures of all FROM-clause subqueries in a +** SELECT statement. +** +** Use this routine after name resolution. +*/ +static void sqlite3SelectAddTypeInfo(Parse *pParse, Select *pSelect){ +#ifndef SQLITE_OMIT_SUBQUERY + Walker w; + memset(&w, 0, sizeof(w)); + w.xSelectCallback2 = selectAddSubqueryTypeInfo; + w.xExprCallback = exprWalkNoop; + w.pParse = pParse; + sqlite3WalkSelect(&w, pSelect); +#endif +} + + +/* +** This routine sets up a SELECT statement for processing. The +** following is accomplished: +** +** * VDBE Cursor numbers are assigned to all FROM-clause terms. +** * Ephemeral Table objects are created for all FROM-clause subqueries. +** * ON and USING clauses are shifted into WHERE statements +** * Wildcards "*" and "TABLE.*" in result sets are expanded. +** * Identifiers in expression are matched to tables. +** +** This routine acts recursively on all subqueries within the SELECT. +*/ +SQLITE_PRIVATE void sqlite3SelectPrep( + Parse *pParse, /* The parser context */ + Select *p, /* The SELECT statement being coded. */ + NameContext *pOuterNC /* Name context for container */ +){ + sqlite3 *db; + if( NEVER(p==0) ) return; + db = pParse->db; + if( db->mallocFailed ) return; + if( p->selFlags & SF_HasTypeInfo ) return; + sqlite3SelectExpand(pParse, p); + if( pParse->nErr || db->mallocFailed ) return; + sqlite3ResolveSelectNames(pParse, p, pOuterNC); + if( pParse->nErr || db->mallocFailed ) return; + sqlite3SelectAddTypeInfo(pParse, p); +} + +/* +** Reset the aggregate accumulator. +** +** The aggregate accumulator is a set of memory cells that hold +** intermediate results while calculating an aggregate. This +** routine generates code that stores NULLs in all of those memory +** cells. +*/ +static void resetAccumulator(Parse *pParse, AggInfo *pAggInfo){ + Vdbe *v = pParse->pVdbe; + int i; + struct AggInfo_func *pFunc; + int nReg = pAggInfo->nFunc + pAggInfo->nColumn; + if( nReg==0 ) return; +#ifdef SQLITE_DEBUG + /* Verify that all AggInfo registers are within the range specified by + ** AggInfo.mnReg..AggInfo.mxReg */ + assert( nReg==pAggInfo->mxReg-pAggInfo->mnReg+1 ); + for(i=0; inColumn; i++){ + assert( pAggInfo->aCol[i].iMem>=pAggInfo->mnReg + && pAggInfo->aCol[i].iMem<=pAggInfo->mxReg ); + } + for(i=0; inFunc; i++){ + assert( pAggInfo->aFunc[i].iMem>=pAggInfo->mnReg + && pAggInfo->aFunc[i].iMem<=pAggInfo->mxReg ); + } +#endif + sqlite3VdbeAddOp3(v, OP_Null, 0, pAggInfo->mnReg, pAggInfo->mxReg); + for(pFunc=pAggInfo->aFunc, i=0; inFunc; i++, pFunc++){ + if( pFunc->iDistinct>=0 ){ + Expr *pE = pFunc->pExpr; + assert( !ExprHasProperty(pE, EP_xIsSelect) ); + if( pE->x.pList==0 || pE->x.pList->nExpr!=1 ){ + sqlite3ErrorMsg(pParse, "DISTINCT aggregates must have exactly one " + "argument"); + pFunc->iDistinct = -1; + }else{ + KeyInfo *pKeyInfo = keyInfoFromExprList(pParse, pE->x.pList, 0, 0); + sqlite3VdbeAddOp4(v, OP_OpenEphemeral, pFunc->iDistinct, 0, 0, + (char*)pKeyInfo, P4_KEYINFO); + } + } + } +} + +/* +** Invoke the OP_AggFinalize opcode for every aggregate function +** in the AggInfo structure. +*/ +static void finalizeAggFunctions(Parse *pParse, AggInfo *pAggInfo){ + Vdbe *v = pParse->pVdbe; + int i; + struct AggInfo_func *pF; + for(i=0, pF=pAggInfo->aFunc; inFunc; i++, pF++){ + ExprList *pList = pF->pExpr->x.pList; + assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) ); + sqlite3VdbeAddOp4(v, OP_AggFinal, pF->iMem, pList ? pList->nExpr : 0, 0, + (void*)pF->pFunc, P4_FUNCDEF); + } +} + +/* +** Update the accumulator memory cells for an aggregate based on +** the current cursor position. +*/ +static void updateAccumulator(Parse *pParse, AggInfo *pAggInfo){ + Vdbe *v = pParse->pVdbe; + int i; + int regHit = 0; + int addrHitTest = 0; + struct AggInfo_func *pF; + struct AggInfo_col *pC; + + pAggInfo->directMode = 1; + for(i=0, pF=pAggInfo->aFunc; inFunc; i++, pF++){ + int nArg; + int addrNext = 0; + int regAgg; + ExprList *pList = pF->pExpr->x.pList; + assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) ); + if( pList ){ + nArg = pList->nExpr; + regAgg = sqlite3GetTempRange(pParse, nArg); + sqlite3ExprCodeExprList(pParse, pList, regAgg, SQLITE_ECEL_DUP); + }else{ + nArg = 0; + regAgg = 0; + } + if( pF->iDistinct>=0 ){ + addrNext = sqlite3VdbeMakeLabel(v); + assert( nArg==1 ); + codeDistinct(pParse, pF->iDistinct, addrNext, 1, regAgg); + } + if( pF->pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL ){ + CollSeq *pColl = 0; + struct ExprList_item *pItem; + int j; + assert( pList!=0 ); /* pList!=0 if pF->pFunc has NEEDCOLL */ + for(j=0, pItem=pList->a; !pColl && jpExpr); + } + if( !pColl ){ + pColl = pParse->db->pDfltColl; + } + if( regHit==0 && pAggInfo->nAccumulator ) regHit = ++pParse->nMem; + sqlite3VdbeAddOp4(v, OP_CollSeq, regHit, 0, 0, (char *)pColl, P4_COLLSEQ); + } + sqlite3VdbeAddOp4(v, OP_AggStep, 0, regAgg, pF->iMem, + (void*)pF->pFunc, P4_FUNCDEF); + sqlite3VdbeChangeP5(v, (u8)nArg); + sqlite3ExprCacheAffinityChange(pParse, regAgg, nArg); + sqlite3ReleaseTempRange(pParse, regAgg, nArg); + if( addrNext ){ + sqlite3VdbeResolveLabel(v, addrNext); + sqlite3ExprCacheClear(pParse); + } + } + + /* Before populating the accumulator registers, clear the column cache. + ** Otherwise, if any of the required column values are already present + ** in registers, sqlite3ExprCode() may use OP_SCopy to copy the value + ** to pC->iMem. But by the time the value is used, the original register + ** may have been used, invalidating the underlying buffer holding the + ** text or blob value. See ticket [883034dcb5]. + ** + ** Another solution would be to change the OP_SCopy used to copy cached + ** values to an OP_Copy. + */ + if( regHit ){ + addrHitTest = sqlite3VdbeAddOp1(v, OP_If, regHit); VdbeCoverage(v); + } + sqlite3ExprCacheClear(pParse); + for(i=0, pC=pAggInfo->aCol; inAccumulator; i++, pC++){ + sqlite3ExprCode(pParse, pC->pExpr, pC->iMem); + } + pAggInfo->directMode = 0; + sqlite3ExprCacheClear(pParse); + if( addrHitTest ){ + sqlite3VdbeJumpHere(v, addrHitTest); + } +} + +/* +** Add a single OP_Explain instruction to the VDBE to explain a simple +** count(*) query ("SELECT count(*) FROM pTab"). +*/ +#ifndef SQLITE_OMIT_EXPLAIN +static void explainSimpleCount( + Parse *pParse, /* Parse context */ + Table *pTab, /* Table being queried */ + Index *pIdx /* Index used to optimize scan, or NULL */ +){ + if( pParse->explain==2 ){ + int bCover = (pIdx!=0 && (HasRowid(pTab) || !IsPrimaryKeyIndex(pIdx))); + char *zEqp = sqlite3MPrintf(pParse->db, "SCAN TABLE %s%s%s", + pTab->zName, + bCover ? " USING COVERING INDEX " : "", + bCover ? pIdx->zName : "" + ); + sqlite3VdbeAddOp4( + pParse->pVdbe, OP_Explain, pParse->iSelectId, 0, 0, zEqp, P4_DYNAMIC + ); + } +} +#else +# define explainSimpleCount(a,b,c) +#endif + +/* +** Generate code for the SELECT statement given in the p argument. +** +** The results are returned according to the SelectDest structure. +** See comments in sqliteInt.h for further information. +** +** This routine returns the number of errors. If any errors are +** encountered, then an appropriate error message is left in +** pParse->zErrMsg. +** +** This routine does NOT free the Select structure passed in. The +** calling function needs to do that. +*/ +SQLITE_PRIVATE int sqlite3Select( + Parse *pParse, /* The parser context */ + Select *p, /* The SELECT statement being coded. */ + SelectDest *pDest /* What to do with the query results */ +){ + int i, j; /* Loop counters */ + WhereInfo *pWInfo; /* Return from sqlite3WhereBegin() */ + Vdbe *v; /* The virtual machine under construction */ + int isAgg; /* True for select lists like "count(*)" */ + ExprList *pEList; /* List of columns to extract. */ + SrcList *pTabList; /* List of tables to select from */ + Expr *pWhere; /* The WHERE clause. May be NULL */ + ExprList *pGroupBy; /* The GROUP BY clause. May be NULL */ + Expr *pHaving; /* The HAVING clause. May be NULL */ + int rc = 1; /* Value to return from this function */ + DistinctCtx sDistinct; /* Info on how to code the DISTINCT keyword */ + SortCtx sSort; /* Info on how to code the ORDER BY clause */ + AggInfo sAggInfo; /* Information used by aggregate queries */ + int iEnd; /* Address of the end of the query */ + sqlite3 *db; /* The database connection */ + +#ifndef SQLITE_OMIT_EXPLAIN + int iRestoreSelectId = pParse->iSelectId; + pParse->iSelectId = pParse->iNextSelectId++; +#endif + + db = pParse->db; + if( p==0 || db->mallocFailed || pParse->nErr ){ + return 1; + } + if( sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0) ) return 1; + memset(&sAggInfo, 0, sizeof(sAggInfo)); + + assert( p->pOrderBy==0 || pDest->eDest!=SRT_DistFifo ); + assert( p->pOrderBy==0 || pDest->eDest!=SRT_Fifo ); + assert( p->pOrderBy==0 || pDest->eDest!=SRT_DistQueue ); + assert( p->pOrderBy==0 || pDest->eDest!=SRT_Queue ); + if( IgnorableOrderby(pDest) ){ + assert(pDest->eDest==SRT_Exists || pDest->eDest==SRT_Union || + pDest->eDest==SRT_Except || pDest->eDest==SRT_Discard || + pDest->eDest==SRT_Queue || pDest->eDest==SRT_DistFifo || + pDest->eDest==SRT_DistQueue || pDest->eDest==SRT_Fifo); + /* If ORDER BY makes no difference in the output then neither does + ** DISTINCT so it can be removed too. */ + sqlite3ExprListDelete(db, p->pOrderBy); + p->pOrderBy = 0; + p->selFlags &= ~SF_Distinct; + } + sqlite3SelectPrep(pParse, p, 0); + memset(&sSort, 0, sizeof(sSort)); + sSort.pOrderBy = p->pOrderBy; + pTabList = p->pSrc; + pEList = p->pEList; + if( pParse->nErr || db->mallocFailed ){ + goto select_end; + } + isAgg = (p->selFlags & SF_Aggregate)!=0; + assert( pEList!=0 ); + + /* Begin generating code. + */ + v = sqlite3GetVdbe(pParse); + if( v==0 ) goto select_end; + + /* If writing to memory or generating a set + ** only a single column may be output. + */ +#ifndef SQLITE_OMIT_SUBQUERY + if( checkForMultiColumnSelectError(pParse, pDest, pEList->nExpr) ){ + goto select_end; + } +#endif + + /* Generate code for all sub-queries in the FROM clause + */ +#if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) + for(i=0; !p->pPrior && inSrc; i++){ + struct SrcList_item *pItem = &pTabList->a[i]; + SelectDest dest; + Select *pSub = pItem->pSelect; + int isAggSub; + + if( pSub==0 ) continue; + + /* Sometimes the code for a subquery will be generated more than + ** once, if the subquery is part of the WHERE clause in a LEFT JOIN, + ** for example. In that case, do not regenerate the code to manifest + ** a view or the co-routine to implement a view. The first instance + ** is sufficient, though the subroutine to manifest the view does need + ** to be invoked again. */ + if( pItem->addrFillSub ){ + if( pItem->viaCoroutine==0 ){ + sqlite3VdbeAddOp2(v, OP_Gosub, pItem->regReturn, pItem->addrFillSub); + } + continue; + } + + /* Increment Parse.nHeight by the height of the largest expression + ** tree referred to by this, the parent select. The child select + ** may contain expression trees of at most + ** (SQLITE_MAX_EXPR_DEPTH-Parse.nHeight) height. This is a bit + ** more conservative than necessary, but much easier than enforcing + ** an exact limit. + */ + pParse->nHeight += sqlite3SelectExprHeight(p); + + isAggSub = (pSub->selFlags & SF_Aggregate)!=0; + if( flattenSubquery(pParse, p, i, isAgg, isAggSub) ){ + /* This subquery can be absorbed into its parent. */ + if( isAggSub ){ + isAgg = 1; + p->selFlags |= SF_Aggregate; + } + i = -1; + }else if( pTabList->nSrc==1 + && OptimizationEnabled(db, SQLITE_SubqCoroutine) + ){ + /* Implement a co-routine that will return a single row of the result + ** set on each invocation. + */ + int addrTop = sqlite3VdbeCurrentAddr(v)+1; + pItem->regReturn = ++pParse->nMem; + sqlite3VdbeAddOp3(v, OP_InitCoroutine, pItem->regReturn, 0, addrTop); + VdbeComment((v, "%s", pItem->pTab->zName)); + pItem->addrFillSub = addrTop; + sqlite3SelectDestInit(&dest, SRT_Coroutine, pItem->regReturn); + explainSetInteger(pItem->iSelectId, (u8)pParse->iNextSelectId); + sqlite3Select(pParse, pSub, &dest); + pItem->pTab->nRowLogEst = sqlite3LogEst(pSub->nSelectRow); + pItem->viaCoroutine = 1; + pItem->regResult = dest.iSdst; + sqlite3VdbeAddOp1(v, OP_EndCoroutine, pItem->regReturn); + sqlite3VdbeJumpHere(v, addrTop-1); + sqlite3ClearTempRegCache(pParse); + }else{ + /* Generate a subroutine that will fill an ephemeral table with + ** the content of this subquery. pItem->addrFillSub will point + ** to the address of the generated subroutine. pItem->regReturn + ** is a register allocated to hold the subroutine return address + */ + int topAddr; + int onceAddr = 0; + int retAddr; + assert( pItem->addrFillSub==0 ); + pItem->regReturn = ++pParse->nMem; + topAddr = sqlite3VdbeAddOp2(v, OP_Integer, 0, pItem->regReturn); + pItem->addrFillSub = topAddr+1; + if( pItem->isCorrelated==0 ){ + /* If the subquery is not correlated and if we are not inside of + ** a trigger, then we only need to compute the value of the subquery + ** once. */ + onceAddr = sqlite3CodeOnce(pParse); VdbeCoverage(v); + VdbeComment((v, "materialize \"%s\"", pItem->pTab->zName)); + }else{ + VdbeNoopComment((v, "materialize \"%s\"", pItem->pTab->zName)); + } + sqlite3SelectDestInit(&dest, SRT_EphemTab, pItem->iCursor); + explainSetInteger(pItem->iSelectId, (u8)pParse->iNextSelectId); + sqlite3Select(pParse, pSub, &dest); + pItem->pTab->nRowLogEst = sqlite3LogEst(pSub->nSelectRow); + if( onceAddr ) sqlite3VdbeJumpHere(v, onceAddr); + retAddr = sqlite3VdbeAddOp1(v, OP_Return, pItem->regReturn); + VdbeComment((v, "end %s", pItem->pTab->zName)); + sqlite3VdbeChangeP1(v, topAddr, retAddr); + sqlite3ClearTempRegCache(pParse); + } + if( /*pParse->nErr ||*/ db->mallocFailed ){ + goto select_end; + } + pParse->nHeight -= sqlite3SelectExprHeight(p); + pTabList = p->pSrc; + if( !IgnorableOrderby(pDest) ){ + sSort.pOrderBy = p->pOrderBy; + } + } + pEList = p->pEList; +#endif + pWhere = p->pWhere; + pGroupBy = p->pGroupBy; + pHaving = p->pHaving; + sDistinct.isTnct = (p->selFlags & SF_Distinct)!=0; + +#ifndef SQLITE_OMIT_COMPOUND_SELECT + /* If there is are a sequence of queries, do the earlier ones first. + */ + if( p->pPrior ){ + rc = multiSelect(pParse, p, pDest); + explainSetInteger(pParse->iSelectId, iRestoreSelectId); + return rc; + } +#endif + + /* If the query is DISTINCT with an ORDER BY but is not an aggregate, and + ** if the select-list is the same as the ORDER BY list, then this query + ** can be rewritten as a GROUP BY. In other words, this: + ** + ** SELECT DISTINCT xyz FROM ... ORDER BY xyz + ** + ** is transformed to: + ** + ** SELECT xyz FROM ... GROUP BY xyz + ** + ** The second form is preferred as a single index (or temp-table) may be + ** used for both the ORDER BY and DISTINCT processing. As originally + ** written the query must use a temp-table for at least one of the ORDER + ** BY and DISTINCT, and an index or separate temp-table for the other. + */ + if( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct + && sqlite3ExprListCompare(sSort.pOrderBy, p->pEList, -1)==0 + ){ + p->selFlags &= ~SF_Distinct; + p->pGroupBy = sqlite3ExprListDup(db, p->pEList, 0); + pGroupBy = p->pGroupBy; + sSort.pOrderBy = 0; + /* Notice that even thought SF_Distinct has been cleared from p->selFlags, + ** the sDistinct.isTnct is still set. Hence, isTnct represents the + ** original setting of the SF_Distinct flag, not the current setting */ + assert( sDistinct.isTnct ); + } + + /* If there is an ORDER BY clause, then this sorting + ** index might end up being unused if the data can be + ** extracted in pre-sorted order. If that is the case, then the + ** OP_OpenEphemeral instruction will be changed to an OP_Noop once + ** we figure out that the sorting index is not needed. The addrSortIndex + ** variable is used to facilitate that change. + */ + if( sSort.pOrderBy ){ + KeyInfo *pKeyInfo; + pKeyInfo = keyInfoFromExprList(pParse, sSort.pOrderBy, 0, 0); + sSort.iECursor = pParse->nTab++; + sSort.addrSortIndex = + sqlite3VdbeAddOp4(v, OP_OpenEphemeral, + sSort.iECursor, sSort.pOrderBy->nExpr+2, 0, + (char*)pKeyInfo, P4_KEYINFO); + }else{ + sSort.addrSortIndex = -1; + } + + /* If the output is destined for a temporary table, open that table. + */ + if( pDest->eDest==SRT_EphemTab ){ + sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pDest->iSDParm, pEList->nExpr); + } + + /* Set the limiter. + */ + iEnd = sqlite3VdbeMakeLabel(v); + p->nSelectRow = LARGEST_INT64; + computeLimitRegisters(pParse, p, iEnd); + if( p->iLimit==0 && sSort.addrSortIndex>=0 ){ + sqlite3VdbeGetOp(v, sSort.addrSortIndex)->opcode = OP_SorterOpen; + sSort.sortFlags |= SORTFLAG_UseSorter; + } + + /* Open a virtual index to use for the distinct set. + */ + if( p->selFlags & SF_Distinct ){ + sDistinct.tabTnct = pParse->nTab++; + sDistinct.addrTnct = sqlite3VdbeAddOp4(v, OP_OpenEphemeral, + sDistinct.tabTnct, 0, 0, + (char*)keyInfoFromExprList(pParse, p->pEList,0,0), + P4_KEYINFO); + sqlite3VdbeChangeP5(v, BTREE_UNORDERED); + sDistinct.eTnctType = WHERE_DISTINCT_UNORDERED; + }else{ + sDistinct.eTnctType = WHERE_DISTINCT_NOOP; + } + + if( !isAgg && pGroupBy==0 ){ + /* No aggregate functions and no GROUP BY clause */ + u16 wctrlFlags = (sDistinct.isTnct ? WHERE_WANT_DISTINCT : 0); + + /* Begin the database scan. */ + pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, sSort.pOrderBy, + p->pEList, wctrlFlags, 0); + if( pWInfo==0 ) goto select_end; + if( sqlite3WhereOutputRowCount(pWInfo) < p->nSelectRow ){ + p->nSelectRow = sqlite3WhereOutputRowCount(pWInfo); + } + if( sDistinct.isTnct && sqlite3WhereIsDistinct(pWInfo) ){ + sDistinct.eTnctType = sqlite3WhereIsDistinct(pWInfo); + } + if( sSort.pOrderBy ){ + sSort.nOBSat = sqlite3WhereIsOrdered(pWInfo); + if( sSort.nOBSat==sSort.pOrderBy->nExpr ){ + sSort.pOrderBy = 0; + } + } + + /* If sorting index that was created by a prior OP_OpenEphemeral + ** instruction ended up not being needed, then change the OP_OpenEphemeral + ** into an OP_Noop. + */ + if( sSort.addrSortIndex>=0 && sSort.pOrderBy==0 ){ + sqlite3VdbeChangeToNoop(v, sSort.addrSortIndex); + } + + /* Use the standard inner loop. */ + selectInnerLoop(pParse, p, pEList, -1, &sSort, &sDistinct, pDest, + sqlite3WhereContinueLabel(pWInfo), + sqlite3WhereBreakLabel(pWInfo)); + + /* End the database scan loop. + */ + sqlite3WhereEnd(pWInfo); + }else{ + /* This case when there exist aggregate functions or a GROUP BY clause + ** or both */ + NameContext sNC; /* Name context for processing aggregate information */ + int iAMem; /* First Mem address for storing current GROUP BY */ + int iBMem; /* First Mem address for previous GROUP BY */ + int iUseFlag; /* Mem address holding flag indicating that at least + ** one row of the input to the aggregator has been + ** processed */ + int iAbortFlag; /* Mem address which causes query abort if positive */ + int groupBySort; /* Rows come from source in GROUP BY order */ + int addrEnd; /* End of processing for this SELECT */ + int sortPTab = 0; /* Pseudotable used to decode sorting results */ + int sortOut = 0; /* Output register from the sorter */ + int orderByGrp = 0; /* True if the GROUP BY and ORDER BY are the same */ + + /* Remove any and all aliases between the result set and the + ** GROUP BY clause. + */ + if( pGroupBy ){ + int k; /* Loop counter */ + struct ExprList_item *pItem; /* For looping over expression in a list */ + + for(k=p->pEList->nExpr, pItem=p->pEList->a; k>0; k--, pItem++){ + pItem->u.x.iAlias = 0; + } + for(k=pGroupBy->nExpr, pItem=pGroupBy->a; k>0; k--, pItem++){ + pItem->u.x.iAlias = 0; + } + if( p->nSelectRow>100 ) p->nSelectRow = 100; + }else{ + p->nSelectRow = 1; + } + + + /* If there is both a GROUP BY and an ORDER BY clause and they are + ** identical, then it may be possible to disable the ORDER BY clause + ** on the grounds that the GROUP BY will cause elements to come out + ** in the correct order. It also may not - the GROUP BY may use a + ** database index that causes rows to be grouped together as required + ** but not actually sorted. Either way, record the fact that the + ** ORDER BY and GROUP BY clauses are the same by setting the orderByGrp + ** variable. */ + if( sqlite3ExprListCompare(pGroupBy, sSort.pOrderBy, -1)==0 ){ + orderByGrp = 1; + } + + /* Create a label to jump to when we want to abort the query */ + addrEnd = sqlite3VdbeMakeLabel(v); + + /* Convert TK_COLUMN nodes into TK_AGG_COLUMN and make entries in + ** sAggInfo for all TK_AGG_FUNCTION nodes in expressions of the + ** SELECT statement. + */ + memset(&sNC, 0, sizeof(sNC)); + sNC.pParse = pParse; + sNC.pSrcList = pTabList; + sNC.pAggInfo = &sAggInfo; + sAggInfo.mnReg = pParse->nMem+1; + sAggInfo.nSortingColumn = pGroupBy ? pGroupBy->nExpr+1 : 0; + sAggInfo.pGroupBy = pGroupBy; + sqlite3ExprAnalyzeAggList(&sNC, pEList); + sqlite3ExprAnalyzeAggList(&sNC, sSort.pOrderBy); + if( pHaving ){ + sqlite3ExprAnalyzeAggregates(&sNC, pHaving); + } + sAggInfo.nAccumulator = sAggInfo.nColumn; + for(i=0; ix.pList); + sNC.ncFlags &= ~NC_InAggFunc; + } + sAggInfo.mxReg = pParse->nMem; + if( db->mallocFailed ) goto select_end; + + /* Processing for aggregates with GROUP BY is very different and + ** much more complex than aggregates without a GROUP BY. + */ + if( pGroupBy ){ + KeyInfo *pKeyInfo; /* Keying information for the group by clause */ + int j1; /* A-vs-B comparision jump */ + int addrOutputRow; /* Start of subroutine that outputs a result row */ + int regOutputRow; /* Return address register for output subroutine */ + int addrSetAbort; /* Set the abort flag and return */ + int addrTopOfLoop; /* Top of the input loop */ + int addrSortingIdx; /* The OP_OpenEphemeral for the sorting index */ + int addrReset; /* Subroutine for resetting the accumulator */ + int regReset; /* Return address register for reset subroutine */ + + /* If there is a GROUP BY clause we might need a sorting index to + ** implement it. Allocate that sorting index now. If it turns out + ** that we do not need it after all, the OP_SorterOpen instruction + ** will be converted into a Noop. + */ + sAggInfo.sortingIdx = pParse->nTab++; + pKeyInfo = keyInfoFromExprList(pParse, pGroupBy, 0, 0); + addrSortingIdx = sqlite3VdbeAddOp4(v, OP_SorterOpen, + sAggInfo.sortingIdx, sAggInfo.nSortingColumn, + 0, (char*)pKeyInfo, P4_KEYINFO); + + /* Initialize memory locations used by GROUP BY aggregate processing + */ + iUseFlag = ++pParse->nMem; + iAbortFlag = ++pParse->nMem; + regOutputRow = ++pParse->nMem; + addrOutputRow = sqlite3VdbeMakeLabel(v); + regReset = ++pParse->nMem; + addrReset = sqlite3VdbeMakeLabel(v); + iAMem = pParse->nMem + 1; + pParse->nMem += pGroupBy->nExpr; + iBMem = pParse->nMem + 1; + pParse->nMem += pGroupBy->nExpr; + sqlite3VdbeAddOp2(v, OP_Integer, 0, iAbortFlag); + VdbeComment((v, "clear abort flag")); + sqlite3VdbeAddOp2(v, OP_Integer, 0, iUseFlag); + VdbeComment((v, "indicate accumulator empty")); + sqlite3VdbeAddOp3(v, OP_Null, 0, iAMem, iAMem+pGroupBy->nExpr-1); + + /* Begin a loop that will extract all source rows in GROUP BY order. + ** This might involve two separate loops with an OP_Sort in between, or + ** it might be a single loop that uses an index to extract information + ** in the right order to begin with. + */ + sqlite3VdbeAddOp2(v, OP_Gosub, regReset, addrReset); + pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, pGroupBy, 0, + WHERE_GROUPBY | (orderByGrp ? WHERE_SORTBYGROUP : 0), 0 + ); + if( pWInfo==0 ) goto select_end; + if( sqlite3WhereIsOrdered(pWInfo)==pGroupBy->nExpr ){ + /* The optimizer is able to deliver rows in group by order so + ** we do not have to sort. The OP_OpenEphemeral table will be + ** cancelled later because we still need to use the pKeyInfo + */ + groupBySort = 0; + }else{ + /* Rows are coming out in undetermined order. We have to push + ** each row into a sorting index, terminate the first loop, + ** then loop over the sorting index in order to get the output + ** in sorted order + */ + int regBase; + int regRecord; + int nCol; + int nGroupBy; + + explainTempTable(pParse, + (sDistinct.isTnct && (p->selFlags&SF_Distinct)==0) ? + "DISTINCT" : "GROUP BY"); + + groupBySort = 1; + nGroupBy = pGroupBy->nExpr; + nCol = nGroupBy + 1; + j = nGroupBy+1; + for(i=0; i=j ){ + nCol++; + j++; + } + } + regBase = sqlite3GetTempRange(pParse, nCol); + sqlite3ExprCacheClear(pParse); + sqlite3ExprCodeExprList(pParse, pGroupBy, regBase, 0); + sqlite3VdbeAddOp2(v, OP_Sequence, sAggInfo.sortingIdx,regBase+nGroupBy); + j = nGroupBy+1; + for(i=0; iiSorterColumn>=j ){ + int r1 = j + regBase; + int r2; + + r2 = sqlite3ExprCodeGetColumn(pParse, + pCol->pTab, pCol->iColumn, pCol->iTable, r1, 0); + if( r1!=r2 ){ + sqlite3VdbeAddOp2(v, OP_SCopy, r2, r1); + } + j++; + } + } + regRecord = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nCol, regRecord); + sqlite3VdbeAddOp2(v, OP_SorterInsert, sAggInfo.sortingIdx, regRecord); + sqlite3ReleaseTempReg(pParse, regRecord); + sqlite3ReleaseTempRange(pParse, regBase, nCol); + sqlite3WhereEnd(pWInfo); + sAggInfo.sortingIdxPTab = sortPTab = pParse->nTab++; + sortOut = sqlite3GetTempReg(pParse); + sqlite3VdbeAddOp3(v, OP_OpenPseudo, sortPTab, sortOut, nCol); + sqlite3VdbeAddOp2(v, OP_SorterSort, sAggInfo.sortingIdx, addrEnd); + VdbeComment((v, "GROUP BY sort")); VdbeCoverage(v); + sAggInfo.useSortingIdx = 1; + sqlite3ExprCacheClear(pParse); + + } + + /* If the index or temporary table used by the GROUP BY sort + ** will naturally deliver rows in the order required by the ORDER BY + ** clause, cancel the ephemeral table open coded earlier. + ** + ** This is an optimization - the correct answer should result regardless. + ** Use the SQLITE_GroupByOrder flag with SQLITE_TESTCTRL_OPTIMIZER to + ** disable this optimization for testing purposes. */ + if( orderByGrp && OptimizationEnabled(db, SQLITE_GroupByOrder) + && (groupBySort || sqlite3WhereIsSorted(pWInfo)) + ){ + sSort.pOrderBy = 0; + sqlite3VdbeChangeToNoop(v, sSort.addrSortIndex); + } + + /* Evaluate the current GROUP BY terms and store in b0, b1, b2... + ** (b0 is memory location iBMem+0, b1 is iBMem+1, and so forth) + ** Then compare the current GROUP BY terms against the GROUP BY terms + ** from the previous row currently stored in a0, a1, a2... + */ + addrTopOfLoop = sqlite3VdbeCurrentAddr(v); + sqlite3ExprCacheClear(pParse); + if( groupBySort ){ + sqlite3VdbeAddOp2(v, OP_SorterData, sAggInfo.sortingIdx, sortOut); + } + for(j=0; jnExpr; j++){ + if( groupBySort ){ + sqlite3VdbeAddOp3(v, OP_Column, sortPTab, j, iBMem+j); + if( j==0 ) sqlite3VdbeChangeP5(v, OPFLAG_CLEARCACHE); + }else{ + sAggInfo.directMode = 1; + sqlite3ExprCode(pParse, pGroupBy->a[j].pExpr, iBMem+j); + } + } + sqlite3VdbeAddOp4(v, OP_Compare, iAMem, iBMem, pGroupBy->nExpr, + (char*)sqlite3KeyInfoRef(pKeyInfo), P4_KEYINFO); + j1 = sqlite3VdbeCurrentAddr(v); + sqlite3VdbeAddOp3(v, OP_Jump, j1+1, 0, j1+1); VdbeCoverage(v); + + /* Generate code that runs whenever the GROUP BY changes. + ** Changes in the GROUP BY are detected by the previous code + ** block. If there were no changes, this block is skipped. + ** + ** This code copies current group by terms in b0,b1,b2,... + ** over to a0,a1,a2. It then calls the output subroutine + ** and resets the aggregate accumulator registers in preparation + ** for the next GROUP BY batch. + */ + sqlite3ExprCodeMove(pParse, iBMem, iAMem, pGroupBy->nExpr); + sqlite3VdbeAddOp2(v, OP_Gosub, regOutputRow, addrOutputRow); + VdbeComment((v, "output one row")); + sqlite3VdbeAddOp2(v, OP_IfPos, iAbortFlag, addrEnd); VdbeCoverage(v); + VdbeComment((v, "check abort flag")); + sqlite3VdbeAddOp2(v, OP_Gosub, regReset, addrReset); + VdbeComment((v, "reset accumulator")); + + /* Update the aggregate accumulators based on the content of + ** the current row + */ + sqlite3VdbeJumpHere(v, j1); + updateAccumulator(pParse, &sAggInfo); + sqlite3VdbeAddOp2(v, OP_Integer, 1, iUseFlag); + VdbeComment((v, "indicate data in accumulator")); + + /* End of the loop + */ + if( groupBySort ){ + sqlite3VdbeAddOp2(v, OP_SorterNext, sAggInfo.sortingIdx, addrTopOfLoop); + VdbeCoverage(v); + }else{ + sqlite3WhereEnd(pWInfo); + sqlite3VdbeChangeToNoop(v, addrSortingIdx); + } + + /* Output the final row of result + */ + sqlite3VdbeAddOp2(v, OP_Gosub, regOutputRow, addrOutputRow); + VdbeComment((v, "output final row")); + + /* Jump over the subroutines + */ + sqlite3VdbeAddOp2(v, OP_Goto, 0, addrEnd); + + /* Generate a subroutine that outputs a single row of the result + ** set. This subroutine first looks at the iUseFlag. If iUseFlag + ** is less than or equal to zero, the subroutine is a no-op. If + ** the processing calls for the query to abort, this subroutine + ** increments the iAbortFlag memory location before returning in + ** order to signal the caller to abort. + */ + addrSetAbort = sqlite3VdbeCurrentAddr(v); + sqlite3VdbeAddOp2(v, OP_Integer, 1, iAbortFlag); + VdbeComment((v, "set abort flag")); + sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); + sqlite3VdbeResolveLabel(v, addrOutputRow); + addrOutputRow = sqlite3VdbeCurrentAddr(v); + sqlite3VdbeAddOp2(v, OP_IfPos, iUseFlag, addrOutputRow+2); VdbeCoverage(v); + VdbeComment((v, "Groupby result generator entry point")); + sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); + finalizeAggFunctions(pParse, &sAggInfo); + sqlite3ExprIfFalse(pParse, pHaving, addrOutputRow+1, SQLITE_JUMPIFNULL); + selectInnerLoop(pParse, p, p->pEList, -1, &sSort, + &sDistinct, pDest, + addrOutputRow+1, addrSetAbort); + sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); + VdbeComment((v, "end groupby result generator")); + + /* Generate a subroutine that will reset the group-by accumulator + */ + sqlite3VdbeResolveLabel(v, addrReset); + resetAccumulator(pParse, &sAggInfo); + sqlite3VdbeAddOp1(v, OP_Return, regReset); + + } /* endif pGroupBy. Begin aggregate queries without GROUP BY: */ + else { + ExprList *pDel = 0; +#ifndef SQLITE_OMIT_BTREECOUNT + Table *pTab; + if( (pTab = isSimpleCount(p, &sAggInfo))!=0 ){ + /* If isSimpleCount() returns a pointer to a Table structure, then + ** the SQL statement is of the form: + ** + ** SELECT count(*) FROM + ** + ** where the Table structure returned represents table . + ** + ** This statement is so common that it is optimized specially. The + ** OP_Count instruction is executed either on the intkey table that + ** contains the data for table or on one of its indexes. It + ** is better to execute the op on an index, as indexes are almost + ** always spread across less pages than their corresponding tables. + */ + const int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); + const int iCsr = pParse->nTab++; /* Cursor to scan b-tree */ + Index *pIdx; /* Iterator variable */ + KeyInfo *pKeyInfo = 0; /* Keyinfo for scanned index */ + Index *pBest = 0; /* Best index found so far */ + int iRoot = pTab->tnum; /* Root page of scanned b-tree */ + + sqlite3CodeVerifySchema(pParse, iDb); + sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); + + /* Search for the index that has the lowest scan cost. + ** + ** (2011-04-15) Do not do a full scan of an unordered index. + ** + ** (2013-10-03) Do not count the entries in a partial index. + ** + ** In practice the KeyInfo structure will not be used. It is only + ** passed to keep OP_OpenRead happy. + */ + if( !HasRowid(pTab) ) pBest = sqlite3PrimaryKeyIndex(pTab); + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + if( pIdx->bUnordered==0 + && pIdx->szIdxRowszTabRow + && pIdx->pPartIdxWhere==0 + && (!pBest || pIdx->szIdxRowszIdxRow) + ){ + pBest = pIdx; + } + } + if( pBest ){ + iRoot = pBest->tnum; + pKeyInfo = sqlite3KeyInfoOfIndex(pParse, pBest); + } + + /* Open a read-only cursor, execute the OP_Count, close the cursor. */ + sqlite3VdbeAddOp4Int(v, OP_OpenRead, iCsr, iRoot, iDb, 1); + if( pKeyInfo ){ + sqlite3VdbeChangeP4(v, -1, (char *)pKeyInfo, P4_KEYINFO); + } + sqlite3VdbeAddOp2(v, OP_Count, iCsr, sAggInfo.aFunc[0].iMem); + sqlite3VdbeAddOp1(v, OP_Close, iCsr); + explainSimpleCount(pParse, pTab, pBest); + }else +#endif /* SQLITE_OMIT_BTREECOUNT */ + { + /* Check if the query is of one of the following forms: + ** + ** SELECT min(x) FROM ... + ** SELECT max(x) FROM ... + ** + ** If it is, then ask the code in where.c to attempt to sort results + ** as if there was an "ORDER ON x" or "ORDER ON x DESC" clause. + ** If where.c is able to produce results sorted in this order, then + ** add vdbe code to break out of the processing loop after the + ** first iteration (since the first iteration of the loop is + ** guaranteed to operate on the row with the minimum or maximum + ** value of x, the only row required). + ** + ** A special flag must be passed to sqlite3WhereBegin() to slightly + ** modify behavior as follows: + ** + ** + If the query is a "SELECT min(x)", then the loop coded by + ** where.c should not iterate over any values with a NULL value + ** for x. + ** + ** + The optimizer code in where.c (the thing that decides which + ** index or indices to use) should place a different priority on + ** satisfying the 'ORDER BY' clause than it does in other cases. + ** Refer to code and comments in where.c for details. + */ + ExprList *pMinMax = 0; + u8 flag = WHERE_ORDERBY_NORMAL; + + assert( p->pGroupBy==0 ); + assert( flag==0 ); + if( p->pHaving==0 ){ + flag = minMaxQuery(&sAggInfo, &pMinMax); + } + assert( flag==0 || (pMinMax!=0 && pMinMax->nExpr==1) ); + + if( flag ){ + pMinMax = sqlite3ExprListDup(db, pMinMax, 0); + pDel = pMinMax; + if( pMinMax && !db->mallocFailed ){ + pMinMax->a[0].sortOrder = flag!=WHERE_ORDERBY_MIN ?1:0; + pMinMax->a[0].pExpr->op = TK_COLUMN; + } + } + + /* This case runs if the aggregate has no GROUP BY clause. The + ** processing is much simpler since there is only a single row + ** of output. + */ + resetAccumulator(pParse, &sAggInfo); + pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, pMinMax,0,flag,0); + if( pWInfo==0 ){ + sqlite3ExprListDelete(db, pDel); + goto select_end; + } + updateAccumulator(pParse, &sAggInfo); + assert( pMinMax==0 || pMinMax->nExpr==1 ); + if( sqlite3WhereIsOrdered(pWInfo)>0 ){ + sqlite3VdbeAddOp2(v, OP_Goto, 0, sqlite3WhereBreakLabel(pWInfo)); + VdbeComment((v, "%s() by index", + (flag==WHERE_ORDERBY_MIN?"min":"max"))); + } + sqlite3WhereEnd(pWInfo); + finalizeAggFunctions(pParse, &sAggInfo); + } + + sSort.pOrderBy = 0; + sqlite3ExprIfFalse(pParse, pHaving, addrEnd, SQLITE_JUMPIFNULL); + selectInnerLoop(pParse, p, p->pEList, -1, 0, 0, + pDest, addrEnd, addrEnd); + sqlite3ExprListDelete(db, pDel); + } + sqlite3VdbeResolveLabel(v, addrEnd); + + } /* endif aggregate query */ + + if( sDistinct.eTnctType==WHERE_DISTINCT_UNORDERED ){ + explainTempTable(pParse, "DISTINCT"); + } + + /* If there is an ORDER BY clause, then we need to sort the results + ** and send them to the callback one by one. + */ + if( sSort.pOrderBy ){ + explainTempTable(pParse, sSort.nOBSat>0 ? "RIGHT PART OF ORDER BY":"ORDER BY"); + generateSortTail(pParse, p, &sSort, pEList->nExpr, pDest); + } + + /* Jump here to skip this query + */ + sqlite3VdbeResolveLabel(v, iEnd); + + /* The SELECT was successfully coded. Set the return code to 0 + ** to indicate no errors. + */ + rc = 0; + + /* Control jumps to here if an error is encountered above, or upon + ** successful coding of the SELECT. + */ +select_end: + explainSetInteger(pParse->iSelectId, iRestoreSelectId); + + /* Identify column names if results of the SELECT are to be output. + */ + if( rc==SQLITE_OK && pDest->eDest==SRT_Output ){ + generateColumnNames(pParse, pTabList, pEList); + } + + sqlite3DbFree(db, sAggInfo.aCol); + sqlite3DbFree(db, sAggInfo.aFunc); + return rc; +} + +#if defined(SQLITE_ENABLE_TREE_EXPLAIN) +/* +** Generate a human-readable description of a the Select object. +*/ +static void explainOneSelect(Vdbe *pVdbe, Select *p){ + sqlite3ExplainPrintf(pVdbe, "SELECT "); + if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ + if( p->selFlags & SF_Distinct ){ + sqlite3ExplainPrintf(pVdbe, "DISTINCT "); + } + if( p->selFlags & SF_Aggregate ){ + sqlite3ExplainPrintf(pVdbe, "agg_flag "); + } + sqlite3ExplainNL(pVdbe); + sqlite3ExplainPrintf(pVdbe, " "); + } + sqlite3ExplainExprList(pVdbe, p->pEList); + sqlite3ExplainNL(pVdbe); + if( p->pSrc && p->pSrc->nSrc ){ + int i; + sqlite3ExplainPrintf(pVdbe, "FROM "); + sqlite3ExplainPush(pVdbe); + for(i=0; ipSrc->nSrc; i++){ + struct SrcList_item *pItem = &p->pSrc->a[i]; + sqlite3ExplainPrintf(pVdbe, "{%d,*} = ", pItem->iCursor); + if( pItem->pSelect ){ + sqlite3ExplainSelect(pVdbe, pItem->pSelect); + if( pItem->pTab ){ + sqlite3ExplainPrintf(pVdbe, " (tabname=%s)", pItem->pTab->zName); + } + }else if( pItem->zName ){ + sqlite3ExplainPrintf(pVdbe, "%s", pItem->zName); + } + if( pItem->zAlias ){ + sqlite3ExplainPrintf(pVdbe, " (AS %s)", pItem->zAlias); + } + if( pItem->jointype & JT_LEFT ){ + sqlite3ExplainPrintf(pVdbe, " LEFT-JOIN"); + } + sqlite3ExplainNL(pVdbe); + } + sqlite3ExplainPop(pVdbe); + } + if( p->pWhere ){ + sqlite3ExplainPrintf(pVdbe, "WHERE "); + sqlite3ExplainExpr(pVdbe, p->pWhere); + sqlite3ExplainNL(pVdbe); + } + if( p->pGroupBy ){ + sqlite3ExplainPrintf(pVdbe, "GROUPBY "); + sqlite3ExplainExprList(pVdbe, p->pGroupBy); + sqlite3ExplainNL(pVdbe); + } + if( p->pHaving ){ + sqlite3ExplainPrintf(pVdbe, "HAVING "); + sqlite3ExplainExpr(pVdbe, p->pHaving); + sqlite3ExplainNL(pVdbe); + } + if( p->pOrderBy ){ + sqlite3ExplainPrintf(pVdbe, "ORDERBY "); + sqlite3ExplainExprList(pVdbe, p->pOrderBy); + sqlite3ExplainNL(pVdbe); + } + if( p->pLimit ){ + sqlite3ExplainPrintf(pVdbe, "LIMIT "); + sqlite3ExplainExpr(pVdbe, p->pLimit); + sqlite3ExplainNL(pVdbe); + } + if( p->pOffset ){ + sqlite3ExplainPrintf(pVdbe, "OFFSET "); + sqlite3ExplainExpr(pVdbe, p->pOffset); + sqlite3ExplainNL(pVdbe); + } +} +SQLITE_PRIVATE void sqlite3ExplainSelect(Vdbe *pVdbe, Select *p){ + if( p==0 ){ + sqlite3ExplainPrintf(pVdbe, "(null-select)"); + return; + } + sqlite3ExplainPush(pVdbe); + while( p ){ + explainOneSelect(pVdbe, p); + p = p->pNext; + if( p==0 ) break; + sqlite3ExplainNL(pVdbe); + sqlite3ExplainPrintf(pVdbe, "%s\n", selectOpName(p->op)); + } + sqlite3ExplainPrintf(pVdbe, "END"); + sqlite3ExplainPop(pVdbe); +} + +/* End of the structure debug printing code +*****************************************************************************/ +#endif /* defined(SQLITE_ENABLE_TREE_EXPLAIN) */ + +/************** End of select.c **********************************************/ +/************** Begin file table.c *******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains the sqlite3_get_table() and sqlite3_free_table() +** interface routines. These are just wrappers around the main +** interface routine of sqlite3_exec(). +** +** These routines are in a separate files so that they will not be linked +** if they are not used. +*/ +/* #include */ +/* #include */ + +#ifndef SQLITE_OMIT_GET_TABLE + +/* +** This structure is used to pass data from sqlite3_get_table() through +** to the callback function is uses to build the result. +*/ +typedef struct TabResult { + char **azResult; /* Accumulated output */ + char *zErrMsg; /* Error message text, if an error occurs */ + int nAlloc; /* Slots allocated for azResult[] */ + int nRow; /* Number of rows in the result */ + int nColumn; /* Number of columns in the result */ + int nData; /* Slots used in azResult[]. (nRow+1)*nColumn */ + int rc; /* Return code from sqlite3_exec() */ +} TabResult; + +/* +** This routine is called once for each row in the result table. Its job +** is to fill in the TabResult structure appropriately, allocating new +** memory as necessary. +*/ +static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){ + TabResult *p = (TabResult*)pArg; /* Result accumulator */ + int need; /* Slots needed in p->azResult[] */ + int i; /* Loop counter */ + char *z; /* A single column of result */ + + /* Make sure there is enough space in p->azResult to hold everything + ** we need to remember from this invocation of the callback. + */ + if( p->nRow==0 && argv!=0 ){ + need = nCol*2; + }else{ + need = nCol; + } + if( p->nData + need > p->nAlloc ){ + char **azNew; + p->nAlloc = p->nAlloc*2 + need; + azNew = sqlite3_realloc( p->azResult, sizeof(char*)*p->nAlloc ); + if( azNew==0 ) goto malloc_failed; + p->azResult = azNew; + } + + /* If this is the first row, then generate an extra row containing + ** the names of all columns. + */ + if( p->nRow==0 ){ + p->nColumn = nCol; + for(i=0; iazResult[p->nData++] = z; + } + }else if( p->nColumn!=nCol ){ + sqlite3_free(p->zErrMsg); + p->zErrMsg = sqlite3_mprintf( + "sqlite3_get_table() called with two or more incompatible queries" + ); + p->rc = SQLITE_ERROR; + return 1; + } + + /* Copy over the row data + */ + if( argv!=0 ){ + for(i=0; iazResult[p->nData++] = z; + } + p->nRow++; + } + return 0; + +malloc_failed: + p->rc = SQLITE_NOMEM; + return 1; +} + +/* +** Query the database. But instead of invoking a callback for each row, +** malloc() for space to hold the result and return the entire results +** at the conclusion of the call. +** +** The result that is written to ***pazResult is held in memory obtained +** from malloc(). But the caller cannot free this memory directly. +** Instead, the entire table should be passed to sqlite3_free_table() when +** the calling procedure is finished using it. +*/ +SQLITE_API int sqlite3_get_table( + sqlite3 *db, /* The database on which the SQL executes */ + const char *zSql, /* The SQL to be executed */ + char ***pazResult, /* Write the result table here */ + int *pnRow, /* Write the number of rows in the result here */ + int *pnColumn, /* Write the number of columns of result here */ + char **pzErrMsg /* Write error messages here */ +){ + int rc; + TabResult res; + + *pazResult = 0; + if( pnColumn ) *pnColumn = 0; + if( pnRow ) *pnRow = 0; + if( pzErrMsg ) *pzErrMsg = 0; + res.zErrMsg = 0; + res.nRow = 0; + res.nColumn = 0; + res.nData = 1; + res.nAlloc = 20; + res.rc = SQLITE_OK; + res.azResult = sqlite3_malloc(sizeof(char*)*res.nAlloc ); + if( res.azResult==0 ){ + db->errCode = SQLITE_NOMEM; + return SQLITE_NOMEM; + } + res.azResult[0] = 0; + rc = sqlite3_exec(db, zSql, sqlite3_get_table_cb, &res, pzErrMsg); + assert( sizeof(res.azResult[0])>= sizeof(res.nData) ); + res.azResult[0] = SQLITE_INT_TO_PTR(res.nData); + if( (rc&0xff)==SQLITE_ABORT ){ + sqlite3_free_table(&res.azResult[1]); + if( res.zErrMsg ){ + if( pzErrMsg ){ + sqlite3_free(*pzErrMsg); + *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg); + } + sqlite3_free(res.zErrMsg); + } + db->errCode = res.rc; /* Assume 32-bit assignment is atomic */ + return res.rc; + } + sqlite3_free(res.zErrMsg); + if( rc!=SQLITE_OK ){ + sqlite3_free_table(&res.azResult[1]); + return rc; + } + if( res.nAlloc>res.nData ){ + char **azNew; + azNew = sqlite3_realloc( res.azResult, sizeof(char*)*res.nData ); + if( azNew==0 ){ + sqlite3_free_table(&res.azResult[1]); + db->errCode = SQLITE_NOMEM; + return SQLITE_NOMEM; + } + res.azResult = azNew; + } + *pazResult = &res.azResult[1]; + if( pnColumn ) *pnColumn = res.nColumn; + if( pnRow ) *pnRow = res.nRow; + return rc; +} + +/* +** This routine frees the space the sqlite3_get_table() malloced. +*/ +SQLITE_API void sqlite3_free_table( + char **azResult /* Result returned from from sqlite3_get_table() */ +){ + if( azResult ){ + int i, n; + azResult--; + assert( azResult!=0 ); + n = SQLITE_PTR_TO_INT(azResult[0]); + for(i=1; ipNext; + + sqlite3ExprDelete(db, pTmp->pWhere); + sqlite3ExprListDelete(db, pTmp->pExprList); + sqlite3SelectDelete(db, pTmp->pSelect); + sqlite3IdListDelete(db, pTmp->pIdList); + + sqlite3DbFree(db, pTmp); + } +} + +/* +** Given table pTab, return a list of all the triggers attached to +** the table. The list is connected by Trigger.pNext pointers. +** +** All of the triggers on pTab that are in the same database as pTab +** are already attached to pTab->pTrigger. But there might be additional +** triggers on pTab in the TEMP schema. This routine prepends all +** TEMP triggers on pTab to the beginning of the pTab->pTrigger list +** and returns the combined list. +** +** To state it another way: This routine returns a list of all triggers +** that fire off of pTab. The list will include any TEMP triggers on +** pTab as well as the triggers lised in pTab->pTrigger. +*/ +SQLITE_PRIVATE Trigger *sqlite3TriggerList(Parse *pParse, Table *pTab){ + Schema * const pTmpSchema = pParse->db->aDb[1].pSchema; + Trigger *pList = 0; /* List of triggers to return */ + + if( pParse->disableTriggers ){ + return 0; + } + + if( pTmpSchema!=pTab->pSchema ){ + HashElem *p; + assert( sqlite3SchemaMutexHeld(pParse->db, 0, pTmpSchema) ); + for(p=sqliteHashFirst(&pTmpSchema->trigHash); p; p=sqliteHashNext(p)){ + Trigger *pTrig = (Trigger *)sqliteHashData(p); + if( pTrig->pTabSchema==pTab->pSchema + && 0==sqlite3StrICmp(pTrig->table, pTab->zName) + ){ + pTrig->pNext = (pList ? pList : pTab->pTrigger); + pList = pTrig; + } + } + } + + return (pList ? pList : pTab->pTrigger); +} + +/* +** This is called by the parser when it sees a CREATE TRIGGER statement +** up to the point of the BEGIN before the trigger actions. A Trigger +** structure is generated based on the information available and stored +** in pParse->pNewTrigger. After the trigger actions have been parsed, the +** sqlite3FinishTrigger() function is called to complete the trigger +** construction process. +*/ +SQLITE_PRIVATE void sqlite3BeginTrigger( + Parse *pParse, /* The parse context of the CREATE TRIGGER statement */ + Token *pName1, /* The name of the trigger */ + Token *pName2, /* The name of the trigger */ + int tr_tm, /* One of TK_BEFORE, TK_AFTER, TK_INSTEAD */ + int op, /* One of TK_INSERT, TK_UPDATE, TK_DELETE */ + IdList *pColumns, /* column list if this is an UPDATE OF trigger */ + SrcList *pTableName,/* The name of the table/view the trigger applies to */ + Expr *pWhen, /* WHEN clause */ + int isTemp, /* True if the TEMPORARY keyword is present */ + int noErr /* Suppress errors if the trigger already exists */ +){ + Trigger *pTrigger = 0; /* The new trigger */ + Table *pTab; /* Table that the trigger fires off of */ + char *zName = 0; /* Name of the trigger */ + sqlite3 *db = pParse->db; /* The database connection */ + int iDb; /* The database to store the trigger in */ + Token *pName; /* The unqualified db name */ + DbFixer sFix; /* State vector for the DB fixer */ + int iTabDb; /* Index of the database holding pTab */ + + assert( pName1!=0 ); /* pName1->z might be NULL, but not pName1 itself */ + assert( pName2!=0 ); + assert( op==TK_INSERT || op==TK_UPDATE || op==TK_DELETE ); + assert( op>0 && op<0xff ); + if( isTemp ){ + /* If TEMP was specified, then the trigger name may not be qualified. */ + if( pName2->n>0 ){ + sqlite3ErrorMsg(pParse, "temporary trigger may not have qualified name"); + goto trigger_cleanup; + } + iDb = 1; + pName = pName1; + }else{ + /* Figure out the db that the trigger will be created in */ + iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName); + if( iDb<0 ){ + goto trigger_cleanup; + } + } + if( !pTableName || db->mallocFailed ){ + goto trigger_cleanup; + } + + /* A long-standing parser bug is that this syntax was allowed: + ** + ** CREATE TRIGGER attached.demo AFTER INSERT ON attached.tab .... + ** ^^^^^^^^ + ** + ** To maintain backwards compatibility, ignore the database + ** name on pTableName if we are reparsing our of SQLITE_MASTER. + */ + if( db->init.busy && iDb!=1 ){ + sqlite3DbFree(db, pTableName->a[0].zDatabase); + pTableName->a[0].zDatabase = 0; + } + + /* If the trigger name was unqualified, and the table is a temp table, + ** then set iDb to 1 to create the trigger in the temporary database. + ** If sqlite3SrcListLookup() returns 0, indicating the table does not + ** exist, the error is caught by the block below. + */ + pTab = sqlite3SrcListLookup(pParse, pTableName); + if( db->init.busy==0 && pName2->n==0 && pTab + && pTab->pSchema==db->aDb[1].pSchema ){ + iDb = 1; + } + + /* Ensure the table name matches database name and that the table exists */ + if( db->mallocFailed ) goto trigger_cleanup; + assert( pTableName->nSrc==1 ); + sqlite3FixInit(&sFix, pParse, iDb, "trigger", pName); + if( sqlite3FixSrcList(&sFix, pTableName) ){ + goto trigger_cleanup; + } + pTab = sqlite3SrcListLookup(pParse, pTableName); + if( !pTab ){ + /* The table does not exist. */ + if( db->init.iDb==1 ){ + /* Ticket #3810. + ** Normally, whenever a table is dropped, all associated triggers are + ** dropped too. But if a TEMP trigger is created on a non-TEMP table + ** and the table is dropped by a different database connection, the + ** trigger is not visible to the database connection that does the + ** drop so the trigger cannot be dropped. This results in an + ** "orphaned trigger" - a trigger whose associated table is missing. + */ + db->init.orphanTrigger = 1; + } + goto trigger_cleanup; + } + if( IsVirtual(pTab) ){ + sqlite3ErrorMsg(pParse, "cannot create triggers on virtual tables"); + goto trigger_cleanup; + } + + /* Check that the trigger name is not reserved and that no trigger of the + ** specified name exists */ + zName = sqlite3NameFromToken(db, pName); + if( !zName || SQLITE_OK!=sqlite3CheckObjectName(pParse, zName) ){ + goto trigger_cleanup; + } + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + if( sqlite3HashFind(&(db->aDb[iDb].pSchema->trigHash), + zName, sqlite3Strlen30(zName)) ){ + if( !noErr ){ + sqlite3ErrorMsg(pParse, "trigger %T already exists", pName); + }else{ + assert( !db->init.busy ); + sqlite3CodeVerifySchema(pParse, iDb); + } + goto trigger_cleanup; + } + + /* Do not create a trigger on a system table */ + if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 ){ + sqlite3ErrorMsg(pParse, "cannot create trigger on system table"); + pParse->nErr++; + goto trigger_cleanup; + } + + /* INSTEAD of triggers are only for views and views only support INSTEAD + ** of triggers. + */ + if( pTab->pSelect && tr_tm!=TK_INSTEAD ){ + sqlite3ErrorMsg(pParse, "cannot create %s trigger on view: %S", + (tr_tm == TK_BEFORE)?"BEFORE":"AFTER", pTableName, 0); + goto trigger_cleanup; + } + if( !pTab->pSelect && tr_tm==TK_INSTEAD ){ + sqlite3ErrorMsg(pParse, "cannot create INSTEAD OF" + " trigger on table: %S", pTableName, 0); + goto trigger_cleanup; + } + iTabDb = sqlite3SchemaToIndex(db, pTab->pSchema); + +#ifndef SQLITE_OMIT_AUTHORIZATION + { + int code = SQLITE_CREATE_TRIGGER; + const char *zDb = db->aDb[iTabDb].zName; + const char *zDbTrig = isTemp ? db->aDb[1].zName : zDb; + if( iTabDb==1 || isTemp ) code = SQLITE_CREATE_TEMP_TRIGGER; + if( sqlite3AuthCheck(pParse, code, zName, pTab->zName, zDbTrig) ){ + goto trigger_cleanup; + } + if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(iTabDb),0,zDb)){ + goto trigger_cleanup; + } + } +#endif + + /* INSTEAD OF triggers can only appear on views and BEFORE triggers + ** cannot appear on views. So we might as well translate every + ** INSTEAD OF trigger into a BEFORE trigger. It simplifies code + ** elsewhere. + */ + if (tr_tm == TK_INSTEAD){ + tr_tm = TK_BEFORE; + } + + /* Build the Trigger object */ + pTrigger = (Trigger*)sqlite3DbMallocZero(db, sizeof(Trigger)); + if( pTrigger==0 ) goto trigger_cleanup; + pTrigger->zName = zName; + zName = 0; + pTrigger->table = sqlite3DbStrDup(db, pTableName->a[0].zName); + pTrigger->pSchema = db->aDb[iDb].pSchema; + pTrigger->pTabSchema = pTab->pSchema; + pTrigger->op = (u8)op; + pTrigger->tr_tm = tr_tm==TK_BEFORE ? TRIGGER_BEFORE : TRIGGER_AFTER; + pTrigger->pWhen = sqlite3ExprDup(db, pWhen, EXPRDUP_REDUCE); + pTrigger->pColumns = sqlite3IdListDup(db, pColumns); + assert( pParse->pNewTrigger==0 ); + pParse->pNewTrigger = pTrigger; + +trigger_cleanup: + sqlite3DbFree(db, zName); + sqlite3SrcListDelete(db, pTableName); + sqlite3IdListDelete(db, pColumns); + sqlite3ExprDelete(db, pWhen); + if( !pParse->pNewTrigger ){ + sqlite3DeleteTrigger(db, pTrigger); + }else{ + assert( pParse->pNewTrigger==pTrigger ); + } +} + +/* +** This routine is called after all of the trigger actions have been parsed +** in order to complete the process of building the trigger. +*/ +SQLITE_PRIVATE void sqlite3FinishTrigger( + Parse *pParse, /* Parser context */ + TriggerStep *pStepList, /* The triggered program */ + Token *pAll /* Token that describes the complete CREATE TRIGGER */ +){ + Trigger *pTrig = pParse->pNewTrigger; /* Trigger being finished */ + char *zName; /* Name of trigger */ + sqlite3 *db = pParse->db; /* The database */ + DbFixer sFix; /* Fixer object */ + int iDb; /* Database containing the trigger */ + Token nameToken; /* Trigger name for error reporting */ + + pParse->pNewTrigger = 0; + if( NEVER(pParse->nErr) || !pTrig ) goto triggerfinish_cleanup; + zName = pTrig->zName; + iDb = sqlite3SchemaToIndex(pParse->db, pTrig->pSchema); + pTrig->step_list = pStepList; + while( pStepList ){ + pStepList->pTrig = pTrig; + pStepList = pStepList->pNext; + } + nameToken.z = pTrig->zName; + nameToken.n = sqlite3Strlen30(nameToken.z); + sqlite3FixInit(&sFix, pParse, iDb, "trigger", &nameToken); + if( sqlite3FixTriggerStep(&sFix, pTrig->step_list) + || sqlite3FixExpr(&sFix, pTrig->pWhen) + ){ + goto triggerfinish_cleanup; + } + + /* if we are not initializing, + ** build the sqlite_master entry + */ + if( !db->init.busy ){ + Vdbe *v; + char *z; + + /* Make an entry in the sqlite_master table */ + v = sqlite3GetVdbe(pParse); + if( v==0 ) goto triggerfinish_cleanup; + sqlite3BeginWriteOperation(pParse, 0, iDb); + z = sqlite3DbStrNDup(db, (char*)pAll->z, pAll->n); + sqlite3NestedParse(pParse, + "INSERT INTO %Q.%s VALUES('trigger',%Q,%Q,0,'CREATE TRIGGER %q')", + db->aDb[iDb].zName, SCHEMA_TABLE(iDb), zName, + pTrig->table, z); + sqlite3DbFree(db, z); + sqlite3ChangeCookie(pParse, iDb); + sqlite3VdbeAddParseSchemaOp(v, iDb, + sqlite3MPrintf(db, "type='trigger' AND name='%q'", zName)); + } + + if( db->init.busy ){ + Trigger *pLink = pTrig; + Hash *pHash = &db->aDb[iDb].pSchema->trigHash; + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + pTrig = sqlite3HashInsert(pHash, zName, sqlite3Strlen30(zName), pTrig); + if( pTrig ){ + db->mallocFailed = 1; + }else if( pLink->pSchema==pLink->pTabSchema ){ + Table *pTab; + int n = sqlite3Strlen30(pLink->table); + pTab = sqlite3HashFind(&pLink->pTabSchema->tblHash, pLink->table, n); + assert( pTab!=0 ); + pLink->pNext = pTab->pTrigger; + pTab->pTrigger = pLink; + } + } + +triggerfinish_cleanup: + sqlite3DeleteTrigger(db, pTrig); + assert( !pParse->pNewTrigger ); + sqlite3DeleteTriggerStep(db, pStepList); +} + +/* +** Turn a SELECT statement (that the pSelect parameter points to) into +** a trigger step. Return a pointer to a TriggerStep structure. +** +** The parser calls this routine when it finds a SELECT statement in +** body of a TRIGGER. +*/ +SQLITE_PRIVATE TriggerStep *sqlite3TriggerSelectStep(sqlite3 *db, Select *pSelect){ + TriggerStep *pTriggerStep = sqlite3DbMallocZero(db, sizeof(TriggerStep)); + if( pTriggerStep==0 ) { + sqlite3SelectDelete(db, pSelect); + return 0; + } + pTriggerStep->op = TK_SELECT; + pTriggerStep->pSelect = pSelect; + pTriggerStep->orconf = OE_Default; + return pTriggerStep; +} + +/* +** Allocate space to hold a new trigger step. The allocated space +** holds both the TriggerStep object and the TriggerStep.target.z string. +** +** If an OOM error occurs, NULL is returned and db->mallocFailed is set. +*/ +static TriggerStep *triggerStepAllocate( + sqlite3 *db, /* Database connection */ + u8 op, /* Trigger opcode */ + Token *pName /* The target name */ +){ + TriggerStep *pTriggerStep; + + pTriggerStep = sqlite3DbMallocZero(db, sizeof(TriggerStep) + pName->n); + if( pTriggerStep ){ + char *z = (char*)&pTriggerStep[1]; + memcpy(z, pName->z, pName->n); + pTriggerStep->target.z = z; + pTriggerStep->target.n = pName->n; + pTriggerStep->op = op; + } + return pTriggerStep; +} + +/* +** Build a trigger step out of an INSERT statement. Return a pointer +** to the new trigger step. +** +** The parser calls this routine when it sees an INSERT inside the +** body of a trigger. +*/ +SQLITE_PRIVATE TriggerStep *sqlite3TriggerInsertStep( + sqlite3 *db, /* The database connection */ + Token *pTableName, /* Name of the table into which we insert */ + IdList *pColumn, /* List of columns in pTableName to insert into */ + Select *pSelect, /* A SELECT statement that supplies values */ + u8 orconf /* The conflict algorithm (OE_Abort, OE_Replace, etc.) */ +){ + TriggerStep *pTriggerStep; + + assert(pSelect != 0 || db->mallocFailed); + + pTriggerStep = triggerStepAllocate(db, TK_INSERT, pTableName); + if( pTriggerStep ){ + pTriggerStep->pSelect = sqlite3SelectDup(db, pSelect, EXPRDUP_REDUCE); + pTriggerStep->pIdList = pColumn; + pTriggerStep->orconf = orconf; + }else{ + sqlite3IdListDelete(db, pColumn); + } + sqlite3SelectDelete(db, pSelect); + + return pTriggerStep; +} + +/* +** Construct a trigger step that implements an UPDATE statement and return +** a pointer to that trigger step. The parser calls this routine when it +** sees an UPDATE statement inside the body of a CREATE TRIGGER. +*/ +SQLITE_PRIVATE TriggerStep *sqlite3TriggerUpdateStep( + sqlite3 *db, /* The database connection */ + Token *pTableName, /* Name of the table to be updated */ + ExprList *pEList, /* The SET clause: list of column and new values */ + Expr *pWhere, /* The WHERE clause */ + u8 orconf /* The conflict algorithm. (OE_Abort, OE_Ignore, etc) */ +){ + TriggerStep *pTriggerStep; + + pTriggerStep = triggerStepAllocate(db, TK_UPDATE, pTableName); + if( pTriggerStep ){ + pTriggerStep->pExprList = sqlite3ExprListDup(db, pEList, EXPRDUP_REDUCE); + pTriggerStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE); + pTriggerStep->orconf = orconf; + } + sqlite3ExprListDelete(db, pEList); + sqlite3ExprDelete(db, pWhere); + return pTriggerStep; +} + +/* +** Construct a trigger step that implements a DELETE statement and return +** a pointer to that trigger step. The parser calls this routine when it +** sees a DELETE statement inside the body of a CREATE TRIGGER. +*/ +SQLITE_PRIVATE TriggerStep *sqlite3TriggerDeleteStep( + sqlite3 *db, /* Database connection */ + Token *pTableName, /* The table from which rows are deleted */ + Expr *pWhere /* The WHERE clause */ +){ + TriggerStep *pTriggerStep; + + pTriggerStep = triggerStepAllocate(db, TK_DELETE, pTableName); + if( pTriggerStep ){ + pTriggerStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE); + pTriggerStep->orconf = OE_Default; + } + sqlite3ExprDelete(db, pWhere); + return pTriggerStep; +} + +/* +** Recursively delete a Trigger structure +*/ +SQLITE_PRIVATE void sqlite3DeleteTrigger(sqlite3 *db, Trigger *pTrigger){ + if( pTrigger==0 ) return; + sqlite3DeleteTriggerStep(db, pTrigger->step_list); + sqlite3DbFree(db, pTrigger->zName); + sqlite3DbFree(db, pTrigger->table); + sqlite3ExprDelete(db, pTrigger->pWhen); + sqlite3IdListDelete(db, pTrigger->pColumns); + sqlite3DbFree(db, pTrigger); +} + +/* +** This function is called to drop a trigger from the database schema. +** +** This may be called directly from the parser and therefore identifies +** the trigger by name. The sqlite3DropTriggerPtr() routine does the +** same job as this routine except it takes a pointer to the trigger +** instead of the trigger name. +**/ +SQLITE_PRIVATE void sqlite3DropTrigger(Parse *pParse, SrcList *pName, int noErr){ + Trigger *pTrigger = 0; + int i; + const char *zDb; + const char *zName; + int nName; + sqlite3 *db = pParse->db; + + if( db->mallocFailed ) goto drop_trigger_cleanup; + if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ + goto drop_trigger_cleanup; + } + + assert( pName->nSrc==1 ); + zDb = pName->a[0].zDatabase; + zName = pName->a[0].zName; + nName = sqlite3Strlen30(zName); + assert( zDb!=0 || sqlite3BtreeHoldsAllMutexes(db) ); + for(i=OMIT_TEMPDB; inDb; i++){ + int j = (i<2) ? i^1 : i; /* Search TEMP before MAIN */ + if( zDb && sqlite3StrICmp(db->aDb[j].zName, zDb) ) continue; + assert( sqlite3SchemaMutexHeld(db, j, 0) ); + pTrigger = sqlite3HashFind(&(db->aDb[j].pSchema->trigHash), zName, nName); + if( pTrigger ) break; + } + if( !pTrigger ){ + if( !noErr ){ + sqlite3ErrorMsg(pParse, "no such trigger: %S", pName, 0); + }else{ + sqlite3CodeVerifyNamedSchema(pParse, zDb); + } + pParse->checkSchema = 1; + goto drop_trigger_cleanup; + } + sqlite3DropTriggerPtr(pParse, pTrigger); + +drop_trigger_cleanup: + sqlite3SrcListDelete(db, pName); +} + +/* +** Return a pointer to the Table structure for the table that a trigger +** is set on. +*/ +static Table *tableOfTrigger(Trigger *pTrigger){ + int n = sqlite3Strlen30(pTrigger->table); + return sqlite3HashFind(&pTrigger->pTabSchema->tblHash, pTrigger->table, n); +} + + +/* +** Drop a trigger given a pointer to that trigger. +*/ +SQLITE_PRIVATE void sqlite3DropTriggerPtr(Parse *pParse, Trigger *pTrigger){ + Table *pTable; + Vdbe *v; + sqlite3 *db = pParse->db; + int iDb; + + iDb = sqlite3SchemaToIndex(pParse->db, pTrigger->pSchema); + assert( iDb>=0 && iDbnDb ); + pTable = tableOfTrigger(pTrigger); + assert( pTable ); + assert( pTable->pSchema==pTrigger->pSchema || iDb==1 ); +#ifndef SQLITE_OMIT_AUTHORIZATION + { + int code = SQLITE_DROP_TRIGGER; + const char *zDb = db->aDb[iDb].zName; + const char *zTab = SCHEMA_TABLE(iDb); + if( iDb==1 ) code = SQLITE_DROP_TEMP_TRIGGER; + if( sqlite3AuthCheck(pParse, code, pTrigger->zName, pTable->zName, zDb) || + sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb) ){ + return; + } + } +#endif + + /* Generate code to destroy the database record of the trigger. + */ + assert( pTable!=0 ); + if( (v = sqlite3GetVdbe(pParse))!=0 ){ + int base; + static const int iLn = VDBE_OFFSET_LINENO(2); + static const VdbeOpList dropTrigger[] = { + { OP_Rewind, 0, ADDR(9), 0}, + { OP_String8, 0, 1, 0}, /* 1 */ + { OP_Column, 0, 1, 2}, + { OP_Ne, 2, ADDR(8), 1}, + { OP_String8, 0, 1, 0}, /* 4: "trigger" */ + { OP_Column, 0, 0, 2}, + { OP_Ne, 2, ADDR(8), 1}, + { OP_Delete, 0, 0, 0}, + { OP_Next, 0, ADDR(1), 0}, /* 8 */ + }; + + sqlite3BeginWriteOperation(pParse, 0, iDb); + sqlite3OpenMasterTable(pParse, iDb); + base = sqlite3VdbeAddOpList(v, ArraySize(dropTrigger), dropTrigger, iLn); + sqlite3VdbeChangeP4(v, base+1, pTrigger->zName, P4_TRANSIENT); + sqlite3VdbeChangeP4(v, base+4, "trigger", P4_STATIC); + sqlite3ChangeCookie(pParse, iDb); + sqlite3VdbeAddOp2(v, OP_Close, 0, 0); + sqlite3VdbeAddOp4(v, OP_DropTrigger, iDb, 0, 0, pTrigger->zName, 0); + if( pParse->nMem<3 ){ + pParse->nMem = 3; + } + } +} + +/* +** Remove a trigger from the hash tables of the sqlite* pointer. +*/ +SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTrigger(sqlite3 *db, int iDb, const char *zName){ + Trigger *pTrigger; + Hash *pHash; + + assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); + pHash = &(db->aDb[iDb].pSchema->trigHash); + pTrigger = sqlite3HashInsert(pHash, zName, sqlite3Strlen30(zName), 0); + if( ALWAYS(pTrigger) ){ + if( pTrigger->pSchema==pTrigger->pTabSchema ){ + Table *pTab = tableOfTrigger(pTrigger); + Trigger **pp; + for(pp=&pTab->pTrigger; *pp!=pTrigger; pp=&((*pp)->pNext)); + *pp = (*pp)->pNext; + } + sqlite3DeleteTrigger(db, pTrigger); + db->flags |= SQLITE_InternChanges; + } +} + +/* +** pEList is the SET clause of an UPDATE statement. Each entry +** in pEList is of the format =. If any of the entries +** in pEList have an which matches an identifier in pIdList, +** then return TRUE. If pIdList==NULL, then it is considered a +** wildcard that matches anything. Likewise if pEList==NULL then +** it matches anything so always return true. Return false only +** if there is no match. +*/ +static int checkColumnOverlap(IdList *pIdList, ExprList *pEList){ + int e; + if( pIdList==0 || NEVER(pEList==0) ) return 1; + for(e=0; enExpr; e++){ + if( sqlite3IdListIndex(pIdList, pEList->a[e].zName)>=0 ) return 1; + } + return 0; +} + +/* +** Return a list of all triggers on table pTab if there exists at least +** one trigger that must be fired when an operation of type 'op' is +** performed on the table, and, if that operation is an UPDATE, if at +** least one of the columns in pChanges is being modified. +*/ +SQLITE_PRIVATE Trigger *sqlite3TriggersExist( + Parse *pParse, /* Parse context */ + Table *pTab, /* The table the contains the triggers */ + int op, /* one of TK_DELETE, TK_INSERT, TK_UPDATE */ + ExprList *pChanges, /* Columns that change in an UPDATE statement */ + int *pMask /* OUT: Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ +){ + int mask = 0; + Trigger *pList = 0; + Trigger *p; + + if( (pParse->db->flags & SQLITE_EnableTrigger)!=0 ){ + pList = sqlite3TriggerList(pParse, pTab); + } + assert( pList==0 || IsVirtual(pTab)==0 ); + for(p=pList; p; p=p->pNext){ + if( p->op==op && checkColumnOverlap(p->pColumns, pChanges) ){ + mask |= p->tr_tm; + } + } + if( pMask ){ + *pMask = mask; + } + return (mask ? pList : 0); +} + +/* +** Convert the pStep->target token into a SrcList and return a pointer +** to that SrcList. +** +** This routine adds a specific database name, if needed, to the target when +** forming the SrcList. This prevents a trigger in one database from +** referring to a target in another database. An exception is when the +** trigger is in TEMP in which case it can refer to any other database it +** wants. +*/ +static SrcList *targetSrcList( + Parse *pParse, /* The parsing context */ + TriggerStep *pStep /* The trigger containing the target token */ +){ + int iDb; /* Index of the database to use */ + SrcList *pSrc; /* SrcList to be returned */ + + pSrc = sqlite3SrcListAppend(pParse->db, 0, &pStep->target, 0); + if( pSrc ){ + assert( pSrc->nSrc>0 ); + assert( pSrc->a!=0 ); + iDb = sqlite3SchemaToIndex(pParse->db, pStep->pTrig->pSchema); + if( iDb==0 || iDb>=2 ){ + sqlite3 *db = pParse->db; + assert( iDbdb->nDb ); + pSrc->a[pSrc->nSrc-1].zDatabase = sqlite3DbStrDup(db, db->aDb[iDb].zName); + } + } + return pSrc; +} + +/* +** Generate VDBE code for the statements inside the body of a single +** trigger. +*/ +static int codeTriggerProgram( + Parse *pParse, /* The parser context */ + TriggerStep *pStepList, /* List of statements inside the trigger body */ + int orconf /* Conflict algorithm. (OE_Abort, etc) */ +){ + TriggerStep *pStep; + Vdbe *v = pParse->pVdbe; + sqlite3 *db = pParse->db; + + assert( pParse->pTriggerTab && pParse->pToplevel ); + assert( pStepList ); + assert( v!=0 ); + for(pStep=pStepList; pStep; pStep=pStep->pNext){ + /* Figure out the ON CONFLICT policy that will be used for this step + ** of the trigger program. If the statement that caused this trigger + ** to fire had an explicit ON CONFLICT, then use it. Otherwise, use + ** the ON CONFLICT policy that was specified as part of the trigger + ** step statement. Example: + ** + ** CREATE TRIGGER AFTER INSERT ON t1 BEGIN; + ** INSERT OR REPLACE INTO t2 VALUES(new.a, new.b); + ** END; + ** + ** INSERT INTO t1 ... ; -- insert into t2 uses REPLACE policy + ** INSERT OR IGNORE INTO t1 ... ; -- insert into t2 uses IGNORE policy + */ + pParse->eOrconf = (orconf==OE_Default)?pStep->orconf:(u8)orconf; + assert( pParse->okConstFactor==0 ); + + switch( pStep->op ){ + case TK_UPDATE: { + sqlite3Update(pParse, + targetSrcList(pParse, pStep), + sqlite3ExprListDup(db, pStep->pExprList, 0), + sqlite3ExprDup(db, pStep->pWhere, 0), + pParse->eOrconf + ); + break; + } + case TK_INSERT: { + sqlite3Insert(pParse, + targetSrcList(pParse, pStep), + sqlite3SelectDup(db, pStep->pSelect, 0), + sqlite3IdListDup(db, pStep->pIdList), + pParse->eOrconf + ); + break; + } + case TK_DELETE: { + sqlite3DeleteFrom(pParse, + targetSrcList(pParse, pStep), + sqlite3ExprDup(db, pStep->pWhere, 0) + ); + break; + } + default: assert( pStep->op==TK_SELECT ); { + SelectDest sDest; + Select *pSelect = sqlite3SelectDup(db, pStep->pSelect, 0); + sqlite3SelectDestInit(&sDest, SRT_Discard, 0); + sqlite3Select(pParse, pSelect, &sDest); + sqlite3SelectDelete(db, pSelect); + break; + } + } + if( pStep->op!=TK_SELECT ){ + sqlite3VdbeAddOp0(v, OP_ResetCount); + } + } + + return 0; +} + +#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS +/* +** This function is used to add VdbeComment() annotations to a VDBE +** program. It is not used in production code, only for debugging. +*/ +static const char *onErrorText(int onError){ + switch( onError ){ + case OE_Abort: return "abort"; + case OE_Rollback: return "rollback"; + case OE_Fail: return "fail"; + case OE_Replace: return "replace"; + case OE_Ignore: return "ignore"; + case OE_Default: return "default"; + } + return "n/a"; +} +#endif + +/* +** Parse context structure pFrom has just been used to create a sub-vdbe +** (trigger program). If an error has occurred, transfer error information +** from pFrom to pTo. +*/ +static void transferParseError(Parse *pTo, Parse *pFrom){ + assert( pFrom->zErrMsg==0 || pFrom->nErr ); + assert( pTo->zErrMsg==0 || pTo->nErr ); + if( pTo->nErr==0 ){ + pTo->zErrMsg = pFrom->zErrMsg; + pTo->nErr = pFrom->nErr; + }else{ + sqlite3DbFree(pFrom->db, pFrom->zErrMsg); + } +} + +/* +** Create and populate a new TriggerPrg object with a sub-program +** implementing trigger pTrigger with ON CONFLICT policy orconf. +*/ +static TriggerPrg *codeRowTrigger( + Parse *pParse, /* Current parse context */ + Trigger *pTrigger, /* Trigger to code */ + Table *pTab, /* The table pTrigger is attached to */ + int orconf /* ON CONFLICT policy to code trigger program with */ +){ + Parse *pTop = sqlite3ParseToplevel(pParse); + sqlite3 *db = pParse->db; /* Database handle */ + TriggerPrg *pPrg; /* Value to return */ + Expr *pWhen = 0; /* Duplicate of trigger WHEN expression */ + Vdbe *v; /* Temporary VM */ + NameContext sNC; /* Name context for sub-vdbe */ + SubProgram *pProgram = 0; /* Sub-vdbe for trigger program */ + Parse *pSubParse; /* Parse context for sub-vdbe */ + int iEndTrigger = 0; /* Label to jump to if WHEN is false */ + + assert( pTrigger->zName==0 || pTab==tableOfTrigger(pTrigger) ); + assert( pTop->pVdbe ); + + /* Allocate the TriggerPrg and SubProgram objects. To ensure that they + ** are freed if an error occurs, link them into the Parse.pTriggerPrg + ** list of the top-level Parse object sooner rather than later. */ + pPrg = sqlite3DbMallocZero(db, sizeof(TriggerPrg)); + if( !pPrg ) return 0; + pPrg->pNext = pTop->pTriggerPrg; + pTop->pTriggerPrg = pPrg; + pPrg->pProgram = pProgram = sqlite3DbMallocZero(db, sizeof(SubProgram)); + if( !pProgram ) return 0; + sqlite3VdbeLinkSubProgram(pTop->pVdbe, pProgram); + pPrg->pTrigger = pTrigger; + pPrg->orconf = orconf; + pPrg->aColmask[0] = 0xffffffff; + pPrg->aColmask[1] = 0xffffffff; + + /* Allocate and populate a new Parse context to use for coding the + ** trigger sub-program. */ + pSubParse = sqlite3StackAllocZero(db, sizeof(Parse)); + if( !pSubParse ) return 0; + memset(&sNC, 0, sizeof(sNC)); + sNC.pParse = pSubParse; + pSubParse->db = db; + pSubParse->pTriggerTab = pTab; + pSubParse->pToplevel = pTop; + pSubParse->zAuthContext = pTrigger->zName; + pSubParse->eTriggerOp = pTrigger->op; + pSubParse->nQueryLoop = pParse->nQueryLoop; + + v = sqlite3GetVdbe(pSubParse); + if( v ){ + VdbeComment((v, "Start: %s.%s (%s %s%s%s ON %s)", + pTrigger->zName, onErrorText(orconf), + (pTrigger->tr_tm==TRIGGER_BEFORE ? "BEFORE" : "AFTER"), + (pTrigger->op==TK_UPDATE ? "UPDATE" : ""), + (pTrigger->op==TK_INSERT ? "INSERT" : ""), + (pTrigger->op==TK_DELETE ? "DELETE" : ""), + pTab->zName + )); +#ifndef SQLITE_OMIT_TRACE + sqlite3VdbeChangeP4(v, -1, + sqlite3MPrintf(db, "-- TRIGGER %s", pTrigger->zName), P4_DYNAMIC + ); +#endif + + /* If one was specified, code the WHEN clause. If it evaluates to false + ** (or NULL) the sub-vdbe is immediately halted by jumping to the + ** OP_Halt inserted at the end of the program. */ + if( pTrigger->pWhen ){ + pWhen = sqlite3ExprDup(db, pTrigger->pWhen, 0); + if( SQLITE_OK==sqlite3ResolveExprNames(&sNC, pWhen) + && db->mallocFailed==0 + ){ + iEndTrigger = sqlite3VdbeMakeLabel(v); + sqlite3ExprIfFalse(pSubParse, pWhen, iEndTrigger, SQLITE_JUMPIFNULL); + } + sqlite3ExprDelete(db, pWhen); + } + + /* Code the trigger program into the sub-vdbe. */ + codeTriggerProgram(pSubParse, pTrigger->step_list, orconf); + + /* Insert an OP_Halt at the end of the sub-program. */ + if( iEndTrigger ){ + sqlite3VdbeResolveLabel(v, iEndTrigger); + } + sqlite3VdbeAddOp0(v, OP_Halt); + VdbeComment((v, "End: %s.%s", pTrigger->zName, onErrorText(orconf))); + + transferParseError(pParse, pSubParse); + if( db->mallocFailed==0 ){ + pProgram->aOp = sqlite3VdbeTakeOpArray(v, &pProgram->nOp, &pTop->nMaxArg); + } + pProgram->nMem = pSubParse->nMem; + pProgram->nCsr = pSubParse->nTab; + pProgram->nOnce = pSubParse->nOnce; + pProgram->token = (void *)pTrigger; + pPrg->aColmask[0] = pSubParse->oldmask; + pPrg->aColmask[1] = pSubParse->newmask; + sqlite3VdbeDelete(v); + } + + assert( !pSubParse->pAinc && !pSubParse->pZombieTab ); + assert( !pSubParse->pTriggerPrg && !pSubParse->nMaxArg ); + sqlite3ParserReset(pSubParse); + sqlite3StackFree(db, pSubParse); + + return pPrg; +} + +/* +** Return a pointer to a TriggerPrg object containing the sub-program for +** trigger pTrigger with default ON CONFLICT algorithm orconf. If no such +** TriggerPrg object exists, a new object is allocated and populated before +** being returned. +*/ +static TriggerPrg *getRowTrigger( + Parse *pParse, /* Current parse context */ + Trigger *pTrigger, /* Trigger to code */ + Table *pTab, /* The table trigger pTrigger is attached to */ + int orconf /* ON CONFLICT algorithm. */ +){ + Parse *pRoot = sqlite3ParseToplevel(pParse); + TriggerPrg *pPrg; + + assert( pTrigger->zName==0 || pTab==tableOfTrigger(pTrigger) ); + + /* It may be that this trigger has already been coded (or is in the + ** process of being coded). If this is the case, then an entry with + ** a matching TriggerPrg.pTrigger field will be present somewhere + ** in the Parse.pTriggerPrg list. Search for such an entry. */ + for(pPrg=pRoot->pTriggerPrg; + pPrg && (pPrg->pTrigger!=pTrigger || pPrg->orconf!=orconf); + pPrg=pPrg->pNext + ); + + /* If an existing TriggerPrg could not be located, create a new one. */ + if( !pPrg ){ + pPrg = codeRowTrigger(pParse, pTrigger, pTab, orconf); + } + + return pPrg; +} + +/* +** Generate code for the trigger program associated with trigger p on +** table pTab. The reg, orconf and ignoreJump parameters passed to this +** function are the same as those described in the header function for +** sqlite3CodeRowTrigger() +*/ +SQLITE_PRIVATE void sqlite3CodeRowTriggerDirect( + Parse *pParse, /* Parse context */ + Trigger *p, /* Trigger to code */ + Table *pTab, /* The table to code triggers from */ + int reg, /* Reg array containing OLD.* and NEW.* values */ + int orconf, /* ON CONFLICT policy */ + int ignoreJump /* Instruction to jump to for RAISE(IGNORE) */ +){ + Vdbe *v = sqlite3GetVdbe(pParse); /* Main VM */ + TriggerPrg *pPrg; + pPrg = getRowTrigger(pParse, p, pTab, orconf); + assert( pPrg || pParse->nErr || pParse->db->mallocFailed ); + + /* Code the OP_Program opcode in the parent VDBE. P4 of the OP_Program + ** is a pointer to the sub-vdbe containing the trigger program. */ + if( pPrg ){ + int bRecursive = (p->zName && 0==(pParse->db->flags&SQLITE_RecTriggers)); + + sqlite3VdbeAddOp3(v, OP_Program, reg, ignoreJump, ++pParse->nMem); + sqlite3VdbeChangeP4(v, -1, (const char *)pPrg->pProgram, P4_SUBPROGRAM); + VdbeComment( + (v, "Call: %s.%s", (p->zName?p->zName:"fkey"), onErrorText(orconf))); + + /* Set the P5 operand of the OP_Program instruction to non-zero if + ** recursive invocation of this trigger program is disallowed. Recursive + ** invocation is disallowed if (a) the sub-program is really a trigger, + ** not a foreign key action, and (b) the flag to enable recursive triggers + ** is clear. */ + sqlite3VdbeChangeP5(v, (u8)bRecursive); + } +} + +/* +** This is called to code the required FOR EACH ROW triggers for an operation +** on table pTab. The operation to code triggers for (INSERT, UPDATE or DELETE) +** is given by the op parameter. The tr_tm parameter determines whether the +** BEFORE or AFTER triggers are coded. If the operation is an UPDATE, then +** parameter pChanges is passed the list of columns being modified. +** +** If there are no triggers that fire at the specified time for the specified +** operation on pTab, this function is a no-op. +** +** The reg argument is the address of the first in an array of registers +** that contain the values substituted for the new.* and old.* references +** in the trigger program. If N is the number of columns in table pTab +** (a copy of pTab->nCol), then registers are populated as follows: +** +** Register Contains +** ------------------------------------------------------ +** reg+0 OLD.rowid +** reg+1 OLD.* value of left-most column of pTab +** ... ... +** reg+N OLD.* value of right-most column of pTab +** reg+N+1 NEW.rowid +** reg+N+2 OLD.* value of left-most column of pTab +** ... ... +** reg+N+N+1 NEW.* value of right-most column of pTab +** +** For ON DELETE triggers, the registers containing the NEW.* values will +** never be accessed by the trigger program, so they are not allocated or +** populated by the caller (there is no data to populate them with anyway). +** Similarly, for ON INSERT triggers the values stored in the OLD.* registers +** are never accessed, and so are not allocated by the caller. So, for an +** ON INSERT trigger, the value passed to this function as parameter reg +** is not a readable register, although registers (reg+N) through +** (reg+N+N+1) are. +** +** Parameter orconf is the default conflict resolution algorithm for the +** trigger program to use (REPLACE, IGNORE etc.). Parameter ignoreJump +** is the instruction that control should jump to if a trigger program +** raises an IGNORE exception. +*/ +SQLITE_PRIVATE void sqlite3CodeRowTrigger( + Parse *pParse, /* Parse context */ + Trigger *pTrigger, /* List of triggers on table pTab */ + int op, /* One of TK_UPDATE, TK_INSERT, TK_DELETE */ + ExprList *pChanges, /* Changes list for any UPDATE OF triggers */ + int tr_tm, /* One of TRIGGER_BEFORE, TRIGGER_AFTER */ + Table *pTab, /* The table to code triggers from */ + int reg, /* The first in an array of registers (see above) */ + int orconf, /* ON CONFLICT policy */ + int ignoreJump /* Instruction to jump to for RAISE(IGNORE) */ +){ + Trigger *p; /* Used to iterate through pTrigger list */ + + assert( op==TK_UPDATE || op==TK_INSERT || op==TK_DELETE ); + assert( tr_tm==TRIGGER_BEFORE || tr_tm==TRIGGER_AFTER ); + assert( (op==TK_UPDATE)==(pChanges!=0) ); + + for(p=pTrigger; p; p=p->pNext){ + + /* Sanity checking: The schema for the trigger and for the table are + ** always defined. The trigger must be in the same schema as the table + ** or else it must be a TEMP trigger. */ + assert( p->pSchema!=0 ); + assert( p->pTabSchema!=0 ); + assert( p->pSchema==p->pTabSchema + || p->pSchema==pParse->db->aDb[1].pSchema ); + + /* Determine whether we should code this trigger */ + if( p->op==op + && p->tr_tm==tr_tm + && checkColumnOverlap(p->pColumns, pChanges) + ){ + sqlite3CodeRowTriggerDirect(pParse, p, pTab, reg, orconf, ignoreJump); + } + } +} + +/* +** Triggers may access values stored in the old.* or new.* pseudo-table. +** This function returns a 32-bit bitmask indicating which columns of the +** old.* or new.* tables actually are used by triggers. This information +** may be used by the caller, for example, to avoid having to load the entire +** old.* record into memory when executing an UPDATE or DELETE command. +** +** Bit 0 of the returned mask is set if the left-most column of the +** table may be accessed using an [old|new].reference. Bit 1 is set if +** the second leftmost column value is required, and so on. If there +** are more than 32 columns in the table, and at least one of the columns +** with an index greater than 32 may be accessed, 0xffffffff is returned. +** +** It is not possible to determine if the old.rowid or new.rowid column is +** accessed by triggers. The caller must always assume that it is. +** +** Parameter isNew must be either 1 or 0. If it is 0, then the mask returned +** applies to the old.* table. If 1, the new.* table. +** +** Parameter tr_tm must be a mask with one or both of the TRIGGER_BEFORE +** and TRIGGER_AFTER bits set. Values accessed by BEFORE triggers are only +** included in the returned mask if the TRIGGER_BEFORE bit is set in the +** tr_tm parameter. Similarly, values accessed by AFTER triggers are only +** included in the returned mask if the TRIGGER_AFTER bit is set in tr_tm. +*/ +SQLITE_PRIVATE u32 sqlite3TriggerColmask( + Parse *pParse, /* Parse context */ + Trigger *pTrigger, /* List of triggers on table pTab */ + ExprList *pChanges, /* Changes list for any UPDATE OF triggers */ + int isNew, /* 1 for new.* ref mask, 0 for old.* ref mask */ + int tr_tm, /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ + Table *pTab, /* The table to code triggers from */ + int orconf /* Default ON CONFLICT policy for trigger steps */ +){ + const int op = pChanges ? TK_UPDATE : TK_DELETE; + u32 mask = 0; + Trigger *p; + + assert( isNew==1 || isNew==0 ); + for(p=pTrigger; p; p=p->pNext){ + if( p->op==op && (tr_tm&p->tr_tm) + && checkColumnOverlap(p->pColumns,pChanges) + ){ + TriggerPrg *pPrg; + pPrg = getRowTrigger(pParse, p, pTab, orconf); + if( pPrg ){ + mask |= pPrg->aColmask[isNew]; + } + } + } + + return mask; +} + +#endif /* !defined(SQLITE_OMIT_TRIGGER) */ + +/************** End of trigger.c *********************************************/ +/************** Begin file update.c ******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains C code routines that are called by the parser +** to handle UPDATE statements. +*/ + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* Forward declaration */ +static void updateVirtualTable( + Parse *pParse, /* The parsing context */ + SrcList *pSrc, /* The virtual table to be modified */ + Table *pTab, /* The virtual table */ + ExprList *pChanges, /* The columns to change in the UPDATE statement */ + Expr *pRowidExpr, /* Expression used to recompute the rowid */ + int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ + Expr *pWhere, /* WHERE clause of the UPDATE statement */ + int onError /* ON CONFLICT strategy */ +); +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +/* +** The most recently coded instruction was an OP_Column to retrieve the +** i-th column of table pTab. This routine sets the P4 parameter of the +** OP_Column to the default value, if any. +** +** The default value of a column is specified by a DEFAULT clause in the +** column definition. This was either supplied by the user when the table +** was created, or added later to the table definition by an ALTER TABLE +** command. If the latter, then the row-records in the table btree on disk +** may not contain a value for the column and the default value, taken +** from the P4 parameter of the OP_Column instruction, is returned instead. +** If the former, then all row-records are guaranteed to include a value +** for the column and the P4 value is not required. +** +** Column definitions created by an ALTER TABLE command may only have +** literal default values specified: a number, null or a string. (If a more +** complicated default expression value was provided, it is evaluated +** when the ALTER TABLE is executed and one of the literal values written +** into the sqlite_master table.) +** +** Therefore, the P4 parameter is only required if the default value for +** the column is a literal number, string or null. The sqlite3ValueFromExpr() +** function is capable of transforming these types of expressions into +** sqlite3_value objects. +** +** If parameter iReg is not negative, code an OP_RealAffinity instruction +** on register iReg. This is used when an equivalent integer value is +** stored in place of an 8-byte floating point value in order to save +** space. +*/ +SQLITE_PRIVATE void sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg){ + assert( pTab!=0 ); + if( !pTab->pSelect ){ + sqlite3_value *pValue = 0; + u8 enc = ENC(sqlite3VdbeDb(v)); + Column *pCol = &pTab->aCol[i]; + VdbeComment((v, "%s.%s", pTab->zName, pCol->zName)); + assert( inCol ); + sqlite3ValueFromExpr(sqlite3VdbeDb(v), pCol->pDflt, enc, + pCol->affinity, &pValue); + if( pValue ){ + sqlite3VdbeChangeP4(v, -1, (const char *)pValue, P4_MEM); + } +#ifndef SQLITE_OMIT_FLOATING_POINT + if( pTab->aCol[i].affinity==SQLITE_AFF_REAL ){ + sqlite3VdbeAddOp1(v, OP_RealAffinity, iReg); + } +#endif + } +} + +/* +** Process an UPDATE statement. +** +** UPDATE OR IGNORE table_wxyz SET a=b, c=d WHERE e<5 AND f NOT NULL; +** \_______/ \________/ \______/ \________________/ +* onError pTabList pChanges pWhere +*/ +SQLITE_PRIVATE void sqlite3Update( + Parse *pParse, /* The parser context */ + SrcList *pTabList, /* The table in which we should change things */ + ExprList *pChanges, /* Things to be changed */ + Expr *pWhere, /* The WHERE clause. May be null */ + int onError /* How to handle constraint errors */ +){ + int i, j; /* Loop counters */ + Table *pTab; /* The table to be updated */ + int addrTop = 0; /* VDBE instruction address of the start of the loop */ + WhereInfo *pWInfo; /* Information about the WHERE clause */ + Vdbe *v; /* The virtual database engine */ + Index *pIdx; /* For looping over indices */ + Index *pPk; /* The PRIMARY KEY index for WITHOUT ROWID tables */ + int nIdx; /* Number of indices that need updating */ + int iBaseCur; /* Base cursor number */ + int iDataCur; /* Cursor for the canonical data btree */ + int iIdxCur; /* Cursor for the first index */ + sqlite3 *db; /* The database structure */ + int *aRegIdx = 0; /* One register assigned to each index to be updated */ + int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the + ** an expression for the i-th column of the table. + ** aXRef[i]==-1 if the i-th column is not changed. */ + u8 *aToOpen; /* 1 for tables and indices to be opened */ + u8 chngPk; /* PRIMARY KEY changed in a WITHOUT ROWID table */ + u8 chngRowid; /* Rowid changed in a normal table */ + u8 chngKey; /* Either chngPk or chngRowid */ + Expr *pRowidExpr = 0; /* Expression defining the new record number */ + AuthContext sContext; /* The authorization context */ + NameContext sNC; /* The name-context to resolve expressions in */ + int iDb; /* Database containing the table being updated */ + int okOnePass; /* True for one-pass algorithm without the FIFO */ + int hasFK; /* True if foreign key processing is required */ + int labelBreak; /* Jump here to break out of UPDATE loop */ + int labelContinue; /* Jump here to continue next step of UPDATE loop */ + +#ifndef SQLITE_OMIT_TRIGGER + int isView; /* True when updating a view (INSTEAD OF trigger) */ + Trigger *pTrigger; /* List of triggers on pTab, if required */ + int tmask; /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ +#endif + int newmask; /* Mask of NEW.* columns accessed by BEFORE triggers */ + int iEph = 0; /* Ephemeral table holding all primary key values */ + int nKey = 0; /* Number of elements in regKey for WITHOUT ROWID */ + int aiCurOnePass[2]; /* The write cursors opened by WHERE_ONEPASS */ + + /* Register Allocations */ + int regRowCount = 0; /* A count of rows changed */ + int regOldRowid; /* The old rowid */ + int regNewRowid; /* The new rowid */ + int regNew; /* Content of the NEW.* table in triggers */ + int regOld = 0; /* Content of OLD.* table in triggers */ + int regRowSet = 0; /* Rowset of rows to be updated */ + int regKey = 0; /* composite PRIMARY KEY value */ + + memset(&sContext, 0, sizeof(sContext)); + db = pParse->db; + if( pParse->nErr || db->mallocFailed ){ + goto update_cleanup; + } + assert( pTabList->nSrc==1 ); + + /* Locate the table which we want to update. + */ + pTab = sqlite3SrcListLookup(pParse, pTabList); + if( pTab==0 ) goto update_cleanup; + iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); + + /* Figure out if we have any triggers and if the table being + ** updated is a view. + */ +#ifndef SQLITE_OMIT_TRIGGER + pTrigger = sqlite3TriggersExist(pParse, pTab, TK_UPDATE, pChanges, &tmask); + isView = pTab->pSelect!=0; + assert( pTrigger || tmask==0 ); +#else +# define pTrigger 0 +# define isView 0 +# define tmask 0 +#endif +#ifdef SQLITE_OMIT_VIEW +# undef isView +# define isView 0 +#endif + + if( sqlite3ViewGetColumnNames(pParse, pTab) ){ + goto update_cleanup; + } + if( sqlite3IsReadOnly(pParse, pTab, tmask) ){ + goto update_cleanup; + } + + /* Allocate a cursors for the main database table and for all indices. + ** The index cursors might not be used, but if they are used they + ** need to occur right after the database cursor. So go ahead and + ** allocate enough space, just in case. + */ + pTabList->a[0].iCursor = iBaseCur = iDataCur = pParse->nTab++; + iIdxCur = iDataCur+1; + pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); + for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ + if( IsPrimaryKeyIndex(pIdx) && pPk!=0 ){ + iDataCur = pParse->nTab; + pTabList->a[0].iCursor = iDataCur; + } + pParse->nTab++; + } + + /* Allocate space for aXRef[], aRegIdx[], and aToOpen[]. + ** Initialize aXRef[] and aToOpen[] to their default values. + */ + aXRef = sqlite3DbMallocRaw(db, sizeof(int) * (pTab->nCol+nIdx) + nIdx+2 ); + if( aXRef==0 ) goto update_cleanup; + aRegIdx = aXRef+pTab->nCol; + aToOpen = (u8*)(aRegIdx+nIdx); + memset(aToOpen, 1, nIdx+1); + aToOpen[nIdx+1] = 0; + for(i=0; inCol; i++) aXRef[i] = -1; + + /* Initialize the name-context */ + memset(&sNC, 0, sizeof(sNC)); + sNC.pParse = pParse; + sNC.pSrcList = pTabList; + + /* Resolve the column names in all the expressions of the + ** of the UPDATE statement. Also find the column index + ** for each column to be updated in the pChanges array. For each + ** column to be updated, make sure we have authorization to change + ** that column. + */ + chngRowid = chngPk = 0; + for(i=0; inExpr; i++){ + if( sqlite3ResolveExprNames(&sNC, pChanges->a[i].pExpr) ){ + goto update_cleanup; + } + for(j=0; jnCol; j++){ + if( sqlite3StrICmp(pTab->aCol[j].zName, pChanges->a[i].zName)==0 ){ + if( j==pTab->iPKey ){ + chngRowid = 1; + pRowidExpr = pChanges->a[i].pExpr; + }else if( pPk && (pTab->aCol[j].colFlags & COLFLAG_PRIMKEY)!=0 ){ + chngPk = 1; + } + aXRef[j] = i; + break; + } + } + if( j>=pTab->nCol ){ + if( pPk==0 && sqlite3IsRowid(pChanges->a[i].zName) ){ + j = -1; + chngRowid = 1; + pRowidExpr = pChanges->a[i].pExpr; + }else{ + sqlite3ErrorMsg(pParse, "no such column: %s", pChanges->a[i].zName); + pParse->checkSchema = 1; + goto update_cleanup; + } + } +#ifndef SQLITE_OMIT_AUTHORIZATION + { + int rc; + rc = sqlite3AuthCheck(pParse, SQLITE_UPDATE, pTab->zName, + j<0 ? "ROWID" : pTab->aCol[j].zName, + db->aDb[iDb].zName); + if( rc==SQLITE_DENY ){ + goto update_cleanup; + }else if( rc==SQLITE_IGNORE ){ + aXRef[j] = -1; + } + } +#endif + } + assert( (chngRowid & chngPk)==0 ); + assert( chngRowid==0 || chngRowid==1 ); + assert( chngPk==0 || chngPk==1 ); + chngKey = chngRowid + chngPk; + + /* The SET expressions are not actually used inside the WHERE loop. + ** So reset the colUsed mask + */ + pTabList->a[0].colUsed = 0; + + hasFK = sqlite3FkRequired(pParse, pTab, aXRef, chngKey); + + /* There is one entry in the aRegIdx[] array for each index on the table + ** being updated. Fill in aRegIdx[] with a register number that will hold + ** the key for accessing each index. + */ + for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ + int reg; + if( chngKey || hasFK || pIdx->pPartIdxWhere || pIdx==pPk ){ + reg = ++pParse->nMem; + }else{ + reg = 0; + for(i=0; inKeyCol; i++){ + if( aXRef[pIdx->aiColumn[i]]>=0 ){ + reg = ++pParse->nMem; + break; + } + } + } + if( reg==0 ) aToOpen[j+1] = 0; + aRegIdx[j] = reg; + } + + /* Begin generating code. */ + v = sqlite3GetVdbe(pParse); + if( v==0 ) goto update_cleanup; + if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); + sqlite3BeginWriteOperation(pParse, 1, iDb); + +#ifndef SQLITE_OMIT_VIRTUALTABLE + /* Virtual tables must be handled separately */ + if( IsVirtual(pTab) ){ + updateVirtualTable(pParse, pTabList, pTab, pChanges, pRowidExpr, aXRef, + pWhere, onError); + pWhere = 0; + pTabList = 0; + goto update_cleanup; + } +#endif + + /* Allocate required registers. */ + regRowSet = ++pParse->nMem; + regOldRowid = regNewRowid = ++pParse->nMem; + if( chngPk || pTrigger || hasFK ){ + regOld = pParse->nMem + 1; + pParse->nMem += pTab->nCol; + } + if( chngKey || pTrigger || hasFK ){ + regNewRowid = ++pParse->nMem; + } + regNew = pParse->nMem + 1; + pParse->nMem += pTab->nCol; + + /* Start the view context. */ + if( isView ){ + sqlite3AuthContextPush(pParse, &sContext, pTab->zName); + } + + /* If we are trying to update a view, realize that view into + ** a ephemeral table. + */ +#if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) + if( isView ){ + sqlite3MaterializeView(pParse, pTab, pWhere, iDataCur); + } +#endif + + /* Resolve the column names in all the expressions in the + ** WHERE clause. + */ + if( sqlite3ResolveExprNames(&sNC, pWhere) ){ + goto update_cleanup; + } + + /* Begin the database scan + */ + if( HasRowid(pTab) ){ + sqlite3VdbeAddOp3(v, OP_Null, 0, regRowSet, regOldRowid); + pWInfo = sqlite3WhereBegin( + pParse, pTabList, pWhere, 0, 0, WHERE_ONEPASS_DESIRED, iIdxCur + ); + if( pWInfo==0 ) goto update_cleanup; + okOnePass = sqlite3WhereOkOnePass(pWInfo, aiCurOnePass); + + /* Remember the rowid of every item to be updated. + */ + sqlite3VdbeAddOp2(v, OP_Rowid, iDataCur, regOldRowid); + if( !okOnePass ){ + sqlite3VdbeAddOp2(v, OP_RowSetAdd, regRowSet, regOldRowid); + } + + /* End the database scan loop. + */ + sqlite3WhereEnd(pWInfo); + }else{ + int iPk; /* First of nPk memory cells holding PRIMARY KEY value */ + i16 nPk; /* Number of components of the PRIMARY KEY */ + int addrOpen; /* Address of the OpenEphemeral instruction */ + + assert( pPk!=0 ); + nPk = pPk->nKeyCol; + iPk = pParse->nMem+1; + pParse->nMem += nPk; + regKey = ++pParse->nMem; + iEph = pParse->nTab++; + sqlite3VdbeAddOp2(v, OP_Null, 0, iPk); + addrOpen = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iEph, nPk); + sqlite3VdbeSetP4KeyInfo(pParse, pPk); + pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, 0, 0, + WHERE_ONEPASS_DESIRED, iIdxCur); + if( pWInfo==0 ) goto update_cleanup; + okOnePass = sqlite3WhereOkOnePass(pWInfo, aiCurOnePass); + for(i=0; iaiColumn[i], + iPk+i); + } + if( okOnePass ){ + sqlite3VdbeChangeToNoop(v, addrOpen); + nKey = nPk; + regKey = iPk; + }else{ + sqlite3VdbeAddOp4(v, OP_MakeRecord, iPk, nPk, regKey, + sqlite3IndexAffinityStr(v, pPk), nPk); + sqlite3VdbeAddOp2(v, OP_IdxInsert, iEph, regKey); + } + sqlite3WhereEnd(pWInfo); + } + + /* Initialize the count of updated rows + */ + if( (db->flags & SQLITE_CountRows) && !pParse->pTriggerTab ){ + regRowCount = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount); + } + + labelBreak = sqlite3VdbeMakeLabel(v); + if( !isView ){ + /* + ** Open every index that needs updating. Note that if any + ** index could potentially invoke a REPLACE conflict resolution + ** action, then we need to open all indices because we might need + ** to be deleting some records. + */ + if( onError==OE_Replace ){ + memset(aToOpen, 1, nIdx+1); + }else{ + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + if( pIdx->onError==OE_Replace ){ + memset(aToOpen, 1, nIdx+1); + break; + } + } + } + if( okOnePass ){ + if( aiCurOnePass[0]>=0 ) aToOpen[aiCurOnePass[0]-iBaseCur] = 0; + if( aiCurOnePass[1]>=0 ) aToOpen[aiCurOnePass[1]-iBaseCur] = 0; + } + sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, iBaseCur, aToOpen, + 0, 0); + } + + /* Top of the update loop */ + if( okOnePass ){ + if( aToOpen[iDataCur-iBaseCur] ){ + assert( pPk!=0 ); + sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, labelBreak, regKey, nKey); + VdbeCoverageNeverTaken(v); + } + labelContinue = labelBreak; + sqlite3VdbeAddOp2(v, OP_IsNull, pPk ? regKey : regOldRowid, labelBreak); + VdbeCoverage(v); + }else if( pPk ){ + labelContinue = sqlite3VdbeMakeLabel(v); + sqlite3VdbeAddOp2(v, OP_Rewind, iEph, labelBreak); VdbeCoverage(v); + addrTop = sqlite3VdbeAddOp2(v, OP_RowKey, iEph, regKey); + sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, labelContinue, regKey, 0); + VdbeCoverage(v); + }else{ + labelContinue = sqlite3VdbeAddOp3(v, OP_RowSetRead, regRowSet, labelBreak, + regOldRowid); + VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, labelContinue, regOldRowid); + VdbeCoverage(v); + } + + /* If the record number will change, set register regNewRowid to + ** contain the new value. If the record number is not being modified, + ** then regNewRowid is the same register as regOldRowid, which is + ** already populated. */ + assert( chngKey || pTrigger || hasFK || regOldRowid==regNewRowid ); + if( chngRowid ){ + sqlite3ExprCode(pParse, pRowidExpr, regNewRowid); + sqlite3VdbeAddOp1(v, OP_MustBeInt, regNewRowid); VdbeCoverage(v); + } + + /* Compute the old pre-UPDATE content of the row being changed, if that + ** information is needed */ + if( chngPk || hasFK || pTrigger ){ + u32 oldmask = (hasFK ? sqlite3FkOldmask(pParse, pTab) : 0); + oldmask |= sqlite3TriggerColmask(pParse, + pTrigger, pChanges, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onError + ); + for(i=0; inCol; i++){ + if( oldmask==0xffffffff + || (i<32 && (oldmask & MASKBIT32(i))!=0) + || (pTab->aCol[i].colFlags & COLFLAG_PRIMKEY)!=0 + ){ + testcase( oldmask!=0xffffffff && i==31 ); + sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, regOld+i); + }else{ + sqlite3VdbeAddOp2(v, OP_Null, 0, regOld+i); + } + } + if( chngRowid==0 && pPk==0 ){ + sqlite3VdbeAddOp2(v, OP_Copy, regOldRowid, regNewRowid); + } + } + + /* Populate the array of registers beginning at regNew with the new + ** row data. This array is used to check constaints, create the new + ** table and index records, and as the values for any new.* references + ** made by triggers. + ** + ** If there are one or more BEFORE triggers, then do not populate the + ** registers associated with columns that are (a) not modified by + ** this UPDATE statement and (b) not accessed by new.* references. The + ** values for registers not modified by the UPDATE must be reloaded from + ** the database after the BEFORE triggers are fired anyway (as the trigger + ** may have modified them). So not loading those that are not going to + ** be used eliminates some redundant opcodes. + */ + newmask = sqlite3TriggerColmask( + pParse, pTrigger, pChanges, 1, TRIGGER_BEFORE, pTab, onError + ); + /*sqlite3VdbeAddOp3(v, OP_Null, 0, regNew, regNew+pTab->nCol-1);*/ + for(i=0; inCol; i++){ + if( i==pTab->iPKey ){ + sqlite3VdbeAddOp2(v, OP_Null, 0, regNew+i); + }else{ + j = aXRef[i]; + if( j>=0 ){ + sqlite3ExprCode(pParse, pChanges->a[j].pExpr, regNew+i); + }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask & MASKBIT32(i)) ){ + /* This branch loads the value of a column that will not be changed + ** into a register. This is done if there are no BEFORE triggers, or + ** if there are one or more BEFORE triggers that use this value via + ** a new.* reference in a trigger program. + */ + testcase( i==31 ); + testcase( i==32 ); + sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, regNew+i); + }else{ + sqlite3VdbeAddOp2(v, OP_Null, 0, regNew+i); + } + } + } + + /* Fire any BEFORE UPDATE triggers. This happens before constraints are + ** verified. One could argue that this is wrong. + */ + if( tmask&TRIGGER_BEFORE ){ + sqlite3TableAffinity(v, pTab, regNew); + sqlite3CodeRowTrigger(pParse, pTrigger, TK_UPDATE, pChanges, + TRIGGER_BEFORE, pTab, regOldRowid, onError, labelContinue); + + /* The row-trigger may have deleted the row being updated. In this + ** case, jump to the next row. No updates or AFTER triggers are + ** required. This behavior - what happens when the row being updated + ** is deleted or renamed by a BEFORE trigger - is left undefined in the + ** documentation. + */ + if( pPk ){ + sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, labelContinue,regKey,nKey); + VdbeCoverage(v); + }else{ + sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, labelContinue, regOldRowid); + VdbeCoverage(v); + } + + /* If it did not delete it, the row-trigger may still have modified + ** some of the columns of the row being updated. Load the values for + ** all columns not modified by the update statement into their + ** registers in case this has happened. + */ + for(i=0; inCol; i++){ + if( aXRef[i]<0 && i!=pTab->iPKey ){ + sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, regNew+i); + } + } + } + + if( !isView ){ + int j1 = 0; /* Address of jump instruction */ + int bReplace = 0; /* True if REPLACE conflict resolution might happen */ + + /* Do constraint checks. */ + assert( regOldRowid>0 ); + sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur, + regNewRowid, regOldRowid, chngKey, onError, labelContinue, &bReplace); + + /* Do FK constraint checks. */ + if( hasFK ){ + sqlite3FkCheck(pParse, pTab, regOldRowid, 0, aXRef, chngKey); + } + + /* Delete the index entries associated with the current record. */ + if( bReplace || chngKey ){ + if( pPk ){ + j1 = sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, 0, regKey, nKey); + }else{ + j1 = sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, 0, regOldRowid); + } + VdbeCoverageNeverTaken(v); + } + sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur, aRegIdx); + + /* If changing the record number, delete the old record. */ + if( hasFK || chngKey || pPk!=0 ){ + sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, 0); + } + if( bReplace || chngKey ){ + sqlite3VdbeJumpHere(v, j1); + } + + if( hasFK ){ + sqlite3FkCheck(pParse, pTab, 0, regNewRowid, aXRef, chngKey); + } + + /* Insert the new index entries and the new record. */ + sqlite3CompleteInsertion(pParse, pTab, iDataCur, iIdxCur, + regNewRowid, aRegIdx, 1, 0, 0); + + /* Do any ON CASCADE, SET NULL or SET DEFAULT operations required to + ** handle rows (possibly in other tables) that refer via a foreign key + ** to the row just updated. */ + if( hasFK ){ + sqlite3FkActions(pParse, pTab, pChanges, regOldRowid, aXRef, chngKey); + } + } + + /* Increment the row counter + */ + if( (db->flags & SQLITE_CountRows) && !pParse->pTriggerTab){ + sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1); + } + + sqlite3CodeRowTrigger(pParse, pTrigger, TK_UPDATE, pChanges, + TRIGGER_AFTER, pTab, regOldRowid, onError, labelContinue); + + /* Repeat the above with the next record to be updated, until + ** all record selected by the WHERE clause have been updated. + */ + if( okOnePass ){ + /* Nothing to do at end-of-loop for a single-pass */ + }else if( pPk ){ + sqlite3VdbeResolveLabel(v, labelContinue); + sqlite3VdbeAddOp2(v, OP_Next, iEph, addrTop); VdbeCoverage(v); + }else{ + sqlite3VdbeAddOp2(v, OP_Goto, 0, labelContinue); + } + sqlite3VdbeResolveLabel(v, labelBreak); + + /* Close all tables */ + for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){ + assert( aRegIdx ); + if( aToOpen[i+1] ){ + sqlite3VdbeAddOp2(v, OP_Close, iIdxCur+i, 0); + } + } + if( iDataCurnested==0 && pParse->pTriggerTab==0 ){ + sqlite3AutoincrementEnd(pParse); + } + + /* + ** Return the number of rows that were changed. If this routine is + ** generating code because of a call to sqlite3NestedParse(), do not + ** invoke the callback function. + */ + if( (db->flags&SQLITE_CountRows) && !pParse->pTriggerTab && !pParse->nested ){ + sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1); + sqlite3VdbeSetNumCols(v, 1); + sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows updated", SQLITE_STATIC); + } + +update_cleanup: + sqlite3AuthContextPop(&sContext); + sqlite3DbFree(db, aXRef); /* Also frees aRegIdx[] and aToOpen[] */ + sqlite3SrcListDelete(db, pTabList); + sqlite3ExprListDelete(db, pChanges); + sqlite3ExprDelete(db, pWhere); + return; +} +/* Make sure "isView" and other macros defined above are undefined. Otherwise +** thely may interfere with compilation of other functions in this file +** (or in another file, if this file becomes part of the amalgamation). */ +#ifdef isView + #undef isView +#endif +#ifdef pTrigger + #undef pTrigger +#endif + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* +** Generate code for an UPDATE of a virtual table. +** +** The strategy is that we create an ephemerial table that contains +** for each row to be changed: +** +** (A) The original rowid of that row. +** (B) The revised rowid for the row. (note1) +** (C) The content of every column in the row. +** +** Then we loop over this ephemeral table and for each row in +** the ephermeral table call VUpdate. +** +** When finished, drop the ephemeral table. +** +** (note1) Actually, if we know in advance that (A) is always the same +** as (B) we only store (A), then duplicate (A) when pulling +** it out of the ephemeral table before calling VUpdate. +*/ +static void updateVirtualTable( + Parse *pParse, /* The parsing context */ + SrcList *pSrc, /* The virtual table to be modified */ + Table *pTab, /* The virtual table */ + ExprList *pChanges, /* The columns to change in the UPDATE statement */ + Expr *pRowid, /* Expression used to recompute the rowid */ + int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ + Expr *pWhere, /* WHERE clause of the UPDATE statement */ + int onError /* ON CONFLICT strategy */ +){ + Vdbe *v = pParse->pVdbe; /* Virtual machine under construction */ + ExprList *pEList = 0; /* The result set of the SELECT statement */ + Select *pSelect = 0; /* The SELECT statement */ + Expr *pExpr; /* Temporary expression */ + int ephemTab; /* Table holding the result of the SELECT */ + int i; /* Loop counter */ + int addr; /* Address of top of loop */ + int iReg; /* First register in set passed to OP_VUpdate */ + sqlite3 *db = pParse->db; /* Database connection */ + const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); + SelectDest dest; + + /* Construct the SELECT statement that will find the new values for + ** all updated rows. + */ + pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db, TK_ID, "_rowid_")); + if( pRowid ){ + pEList = sqlite3ExprListAppend(pParse, pEList, + sqlite3ExprDup(db, pRowid, 0)); + } + assert( pTab->iPKey<0 ); + for(i=0; inCol; i++){ + if( aXRef[i]>=0 ){ + pExpr = sqlite3ExprDup(db, pChanges->a[aXRef[i]].pExpr, 0); + }else{ + pExpr = sqlite3Expr(db, TK_ID, pTab->aCol[i].zName); + } + pEList = sqlite3ExprListAppend(pParse, pEList, pExpr); + } + pSelect = sqlite3SelectNew(pParse, pEList, pSrc, pWhere, 0, 0, 0, 0, 0, 0); + + /* Create the ephemeral table into which the update results will + ** be stored. + */ + assert( v ); + ephemTab = pParse->nTab++; + sqlite3VdbeAddOp2(v, OP_OpenEphemeral, ephemTab, pTab->nCol+1+(pRowid!=0)); + sqlite3VdbeChangeP5(v, BTREE_UNORDERED); + + /* fill the ephemeral table + */ + sqlite3SelectDestInit(&dest, SRT_Table, ephemTab); + sqlite3Select(pParse, pSelect, &dest); + + /* Generate code to scan the ephemeral table and call VUpdate. */ + iReg = ++pParse->nMem; + pParse->nMem += pTab->nCol+1; + addr = sqlite3VdbeAddOp2(v, OP_Rewind, ephemTab, 0); VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_Column, ephemTab, 0, iReg); + sqlite3VdbeAddOp3(v, OP_Column, ephemTab, (pRowid?1:0), iReg+1); + for(i=0; inCol; i++){ + sqlite3VdbeAddOp3(v, OP_Column, ephemTab, i+1+(pRowid!=0), iReg+2+i); + } + sqlite3VtabMakeWritable(pParse, pTab); + sqlite3VdbeAddOp4(v, OP_VUpdate, 0, pTab->nCol+2, iReg, pVTab, P4_VTAB); + sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError); + sqlite3MayAbort(pParse); + sqlite3VdbeAddOp2(v, OP_Next, ephemTab, addr+1); VdbeCoverage(v); + sqlite3VdbeJumpHere(v, addr); + sqlite3VdbeAddOp2(v, OP_Close, ephemTab, 0); + + /* Cleanup */ + sqlite3SelectDelete(db, pSelect); +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +/************** End of update.c **********************************************/ +/************** Begin file vacuum.c ******************************************/ +/* +** 2003 April 6 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code used to implement the VACUUM command. +** +** Most of the code in this file may be omitted by defining the +** SQLITE_OMIT_VACUUM macro. +*/ + +#if !defined(SQLITE_OMIT_VACUUM) && !defined(SQLITE_OMIT_ATTACH) +/* +** Finalize a prepared statement. If there was an error, store the +** text of the error message in *pzErrMsg. Return the result code. +*/ +static int vacuumFinalize(sqlite3 *db, sqlite3_stmt *pStmt, char **pzErrMsg){ + int rc; + rc = sqlite3VdbeFinalize((Vdbe*)pStmt); + if( rc ){ + sqlite3SetString(pzErrMsg, db, sqlite3_errmsg(db)); + } + return rc; +} + +/* +** Execute zSql on database db. Return an error code. +*/ +static int execSql(sqlite3 *db, char **pzErrMsg, const char *zSql){ + sqlite3_stmt *pStmt; + VVA_ONLY( int rc; ) + if( !zSql ){ + return SQLITE_NOMEM; + } + if( SQLITE_OK!=sqlite3_prepare(db, zSql, -1, &pStmt, 0) ){ + sqlite3SetString(pzErrMsg, db, sqlite3_errmsg(db)); + return sqlite3_errcode(db); + } + VVA_ONLY( rc = ) sqlite3_step(pStmt); + assert( rc!=SQLITE_ROW || (db->flags&SQLITE_CountRows) ); + return vacuumFinalize(db, pStmt, pzErrMsg); +} + +/* +** Execute zSql on database db. The statement returns exactly +** one column. Execute this as SQL on the same database. +*/ +static int execExecSql(sqlite3 *db, char **pzErrMsg, const char *zSql){ + sqlite3_stmt *pStmt; + int rc; + + rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0); + if( rc!=SQLITE_OK ) return rc; + + while( SQLITE_ROW==sqlite3_step(pStmt) ){ + rc = execSql(db, pzErrMsg, (char*)sqlite3_column_text(pStmt, 0)); + if( rc!=SQLITE_OK ){ + vacuumFinalize(db, pStmt, pzErrMsg); + return rc; + } + } + + return vacuumFinalize(db, pStmt, pzErrMsg); +} + +/* +** The VACUUM command is used to clean up the database, +** collapse free space, etc. It is modelled after the VACUUM command +** in PostgreSQL. The VACUUM command works as follows: +** +** (1) Create a new transient database file +** (2) Copy all content from the database being vacuumed into +** the new transient database file +** (3) Copy content from the transient database back into the +** original database. +** +** The transient database requires temporary disk space approximately +** equal to the size of the original database. The copy operation of +** step (3) requires additional temporary disk space approximately equal +** to the size of the original database for the rollback journal. +** Hence, temporary disk space that is approximately 2x the size of the +** orginal database is required. Every page of the database is written +** approximately 3 times: Once for step (2) and twice for step (3). +** Two writes per page are required in step (3) because the original +** database content must be written into the rollback journal prior to +** overwriting the database with the vacuumed content. +** +** Only 1x temporary space and only 1x writes would be required if +** the copy of step (3) were replace by deleting the original database +** and renaming the transient database as the original. But that will +** not work if other processes are attached to the original database. +** And a power loss in between deleting the original and renaming the +** transient would cause the database file to appear to be deleted +** following reboot. +*/ +SQLITE_PRIVATE void sqlite3Vacuum(Parse *pParse){ + Vdbe *v = sqlite3GetVdbe(pParse); + if( v ){ + sqlite3VdbeAddOp2(v, OP_Vacuum, 0, 0); + sqlite3VdbeUsesBtree(v, 0); + } + return; +} + +/* +** This routine implements the OP_Vacuum opcode of the VDBE. +*/ +SQLITE_PRIVATE int sqlite3RunVacuum(char **pzErrMsg, sqlite3 *db){ + int rc = SQLITE_OK; /* Return code from service routines */ + Btree *pMain; /* The database being vacuumed */ + Btree *pTemp; /* The temporary database we vacuum into */ + char *zSql = 0; /* SQL statements */ + int saved_flags; /* Saved value of the db->flags */ + int saved_nChange; /* Saved value of db->nChange */ + int saved_nTotalChange; /* Saved value of db->nTotalChange */ + void (*saved_xTrace)(void*,const char*); /* Saved db->xTrace */ + Db *pDb = 0; /* Database to detach at end of vacuum */ + int isMemDb; /* True if vacuuming a :memory: database */ + int nRes; /* Bytes of reserved space at the end of each page */ + int nDb; /* Number of attached databases */ + + if( !db->autoCommit ){ + sqlite3SetString(pzErrMsg, db, "cannot VACUUM from within a transaction"); + return SQLITE_ERROR; + } + if( db->nVdbeActive>1 ){ + sqlite3SetString(pzErrMsg, db,"cannot VACUUM - SQL statements in progress"); + return SQLITE_ERROR; + } + + /* Save the current value of the database flags so that it can be + ** restored before returning. Then set the writable-schema flag, and + ** disable CHECK and foreign key constraints. */ + saved_flags = db->flags; + saved_nChange = db->nChange; + saved_nTotalChange = db->nTotalChange; + saved_xTrace = db->xTrace; + db->flags |= SQLITE_WriteSchema | SQLITE_IgnoreChecks | SQLITE_PreferBuiltin; + db->flags &= ~(SQLITE_ForeignKeys | SQLITE_ReverseOrder); + db->xTrace = 0; + + pMain = db->aDb[0].pBt; + isMemDb = sqlite3PagerIsMemdb(sqlite3BtreePager(pMain)); + + /* Attach the temporary database as 'vacuum_db'. The synchronous pragma + ** can be set to 'off' for this file, as it is not recovered if a crash + ** occurs anyway. The integrity of the database is maintained by a + ** (possibly synchronous) transaction opened on the main database before + ** sqlite3BtreeCopyFile() is called. + ** + ** An optimisation would be to use a non-journaled pager. + ** (Later:) I tried setting "PRAGMA vacuum_db.journal_mode=OFF" but + ** that actually made the VACUUM run slower. Very little journalling + ** actually occurs when doing a vacuum since the vacuum_db is initially + ** empty. Only the journal header is written. Apparently it takes more + ** time to parse and run the PRAGMA to turn journalling off than it does + ** to write the journal header file. + */ + nDb = db->nDb; + if( sqlite3TempInMemory(db) ){ + zSql = "ATTACH ':memory:' AS vacuum_db;"; + }else{ + zSql = "ATTACH '' AS vacuum_db;"; + } + rc = execSql(db, pzErrMsg, zSql); + if( db->nDb>nDb ){ + pDb = &db->aDb[db->nDb-1]; + assert( strcmp(pDb->zName,"vacuum_db")==0 ); + } + if( rc!=SQLITE_OK ) goto end_of_vacuum; + pTemp = db->aDb[db->nDb-1].pBt; + + /* The call to execSql() to attach the temp database has left the file + ** locked (as there was more than one active statement when the transaction + ** to read the schema was concluded. Unlock it here so that this doesn't + ** cause problems for the call to BtreeSetPageSize() below. */ + sqlite3BtreeCommit(pTemp); + + nRes = sqlite3BtreeGetReserve(pMain); + + /* A VACUUM cannot change the pagesize of an encrypted database. */ +#ifdef SQLITE_HAS_CODEC + if( db->nextPagesize ){ + extern void sqlite3CodecGetKey(sqlite3*, int, void**, int*); + int nKey; + char *zKey; + sqlite3CodecGetKey(db, 0, (void**)&zKey, &nKey); + if( nKey ) db->nextPagesize = 0; + } +#endif + + rc = execSql(db, pzErrMsg, "PRAGMA vacuum_db.synchronous=OFF"); + if( rc!=SQLITE_OK ) goto end_of_vacuum; + + /* Begin a transaction and take an exclusive lock on the main database + ** file. This is done before the sqlite3BtreeGetPageSize(pMain) call below, + ** to ensure that we do not try to change the page-size on a WAL database. + */ + rc = execSql(db, pzErrMsg, "BEGIN;"); + if( rc!=SQLITE_OK ) goto end_of_vacuum; + rc = sqlite3BtreeBeginTrans(pMain, 2); + if( rc!=SQLITE_OK ) goto end_of_vacuum; + + /* Do not attempt to change the page size for a WAL database */ + if( sqlite3PagerGetJournalMode(sqlite3BtreePager(pMain)) + ==PAGER_JOURNALMODE_WAL ){ + db->nextPagesize = 0; + } + + if( sqlite3BtreeSetPageSize(pTemp, sqlite3BtreeGetPageSize(pMain), nRes, 0) + || (!isMemDb && sqlite3BtreeSetPageSize(pTemp, db->nextPagesize, nRes, 0)) + || NEVER(db->mallocFailed) + ){ + rc = SQLITE_NOMEM; + goto end_of_vacuum; + } + +#ifndef SQLITE_OMIT_AUTOVACUUM + sqlite3BtreeSetAutoVacuum(pTemp, db->nextAutovac>=0 ? db->nextAutovac : + sqlite3BtreeGetAutoVacuum(pMain)); +#endif + + /* Query the schema of the main database. Create a mirror schema + ** in the temporary database. + */ + rc = execExecSql(db, pzErrMsg, + "SELECT 'CREATE TABLE vacuum_db.' || substr(sql,14) " + " FROM sqlite_master WHERE type='table' AND name!='sqlite_sequence'" + " AND coalesce(rootpage,1)>0" + ); + if( rc!=SQLITE_OK ) goto end_of_vacuum; + rc = execExecSql(db, pzErrMsg, + "SELECT 'CREATE INDEX vacuum_db.' || substr(sql,14)" + " FROM sqlite_master WHERE sql LIKE 'CREATE INDEX %' "); + if( rc!=SQLITE_OK ) goto end_of_vacuum; + rc = execExecSql(db, pzErrMsg, + "SELECT 'CREATE UNIQUE INDEX vacuum_db.' || substr(sql,21) " + " FROM sqlite_master WHERE sql LIKE 'CREATE UNIQUE INDEX %'"); + if( rc!=SQLITE_OK ) goto end_of_vacuum; + + /* Loop through the tables in the main database. For each, do + ** an "INSERT INTO vacuum_db.xxx SELECT * FROM main.xxx;" to copy + ** the contents to the temporary database. + */ + rc = execExecSql(db, pzErrMsg, + "SELECT 'INSERT INTO vacuum_db.' || quote(name) " + "|| ' SELECT * FROM main.' || quote(name) || ';'" + "FROM main.sqlite_master " + "WHERE type = 'table' AND name!='sqlite_sequence' " + " AND coalesce(rootpage,1)>0" + ); + if( rc!=SQLITE_OK ) goto end_of_vacuum; + + /* Copy over the sequence table + */ + rc = execExecSql(db, pzErrMsg, + "SELECT 'DELETE FROM vacuum_db.' || quote(name) || ';' " + "FROM vacuum_db.sqlite_master WHERE name='sqlite_sequence' " + ); + if( rc!=SQLITE_OK ) goto end_of_vacuum; + rc = execExecSql(db, pzErrMsg, + "SELECT 'INSERT INTO vacuum_db.' || quote(name) " + "|| ' SELECT * FROM main.' || quote(name) || ';' " + "FROM vacuum_db.sqlite_master WHERE name=='sqlite_sequence';" + ); + if( rc!=SQLITE_OK ) goto end_of_vacuum; + + + /* Copy the triggers, views, and virtual tables from the main database + ** over to the temporary database. None of these objects has any + ** associated storage, so all we have to do is copy their entries + ** from the SQLITE_MASTER table. + */ + rc = execSql(db, pzErrMsg, + "INSERT INTO vacuum_db.sqlite_master " + " SELECT type, name, tbl_name, rootpage, sql" + " FROM main.sqlite_master" + " WHERE type='view' OR type='trigger'" + " OR (type='table' AND rootpage=0)" + ); + if( rc ) goto end_of_vacuum; + + /* At this point, there is a write transaction open on both the + ** vacuum database and the main database. Assuming no error occurs, + ** both transactions are closed by this block - the main database + ** transaction by sqlite3BtreeCopyFile() and the other by an explicit + ** call to sqlite3BtreeCommit(). + */ + { + u32 meta; + int i; + + /* This array determines which meta meta values are preserved in the + ** vacuum. Even entries are the meta value number and odd entries + ** are an increment to apply to the meta value after the vacuum. + ** The increment is used to increase the schema cookie so that other + ** connections to the same database will know to reread the schema. + */ + static const unsigned char aCopy[] = { + BTREE_SCHEMA_VERSION, 1, /* Add one to the old schema cookie */ + BTREE_DEFAULT_CACHE_SIZE, 0, /* Preserve the default page cache size */ + BTREE_TEXT_ENCODING, 0, /* Preserve the text encoding */ + BTREE_USER_VERSION, 0, /* Preserve the user version */ + BTREE_APPLICATION_ID, 0, /* Preserve the application id */ + }; + + assert( 1==sqlite3BtreeIsInTrans(pTemp) ); + assert( 1==sqlite3BtreeIsInTrans(pMain) ); + + /* Copy Btree meta values */ + for(i=0; iflags */ + db->flags = saved_flags; + db->nChange = saved_nChange; + db->nTotalChange = saved_nTotalChange; + db->xTrace = saved_xTrace; + sqlite3BtreeSetPageSize(pMain, -1, -1, 1); + + /* Currently there is an SQL level transaction open on the vacuum + ** database. No locks are held on any other files (since the main file + ** was committed at the btree level). So it safe to end the transaction + ** by manually setting the autoCommit flag to true and detaching the + ** vacuum database. The vacuum_db journal file is deleted when the pager + ** is closed by the DETACH. + */ + db->autoCommit = 1; + + if( pDb ){ + sqlite3BtreeClose(pDb->pBt); + pDb->pBt = 0; + pDb->pSchema = 0; + } + + /* This both clears the schemas and reduces the size of the db->aDb[] + ** array. */ + sqlite3ResetAllSchemasOfConnection(db); + + return rc; +} + +#endif /* SQLITE_OMIT_VACUUM && SQLITE_OMIT_ATTACH */ + +/************** End of vacuum.c **********************************************/ +/************** Begin file vtab.c ********************************************/ +/* +** 2006 June 10 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code used to help implement virtual tables. +*/ +#ifndef SQLITE_OMIT_VIRTUALTABLE + +/* +** Before a virtual table xCreate() or xConnect() method is invoked, the +** sqlite3.pVtabCtx member variable is set to point to an instance of +** this struct allocated on the stack. It is used by the implementation of +** the sqlite3_declare_vtab() and sqlite3_vtab_config() APIs, both of which +** are invoked only from within xCreate and xConnect methods. +*/ +struct VtabCtx { + VTable *pVTable; /* The virtual table being constructed */ + Table *pTab; /* The Table object to which the virtual table belongs */ +}; + +/* +** The actual function that does the work of creating a new module. +** This function implements the sqlite3_create_module() and +** sqlite3_create_module_v2() interfaces. +*/ +static int createModule( + sqlite3 *db, /* Database in which module is registered */ + const char *zName, /* Name assigned to this module */ + const sqlite3_module *pModule, /* The definition of the module */ + void *pAux, /* Context pointer for xCreate/xConnect */ + void (*xDestroy)(void *) /* Module destructor function */ +){ + int rc = SQLITE_OK; + int nName; + + sqlite3_mutex_enter(db->mutex); + nName = sqlite3Strlen30(zName); + if( sqlite3HashFind(&db->aModule, zName, nName) ){ + rc = SQLITE_MISUSE_BKPT; + }else{ + Module *pMod; + pMod = (Module *)sqlite3DbMallocRaw(db, sizeof(Module) + nName + 1); + if( pMod ){ + Module *pDel; + char *zCopy = (char *)(&pMod[1]); + memcpy(zCopy, zName, nName+1); + pMod->zName = zCopy; + pMod->pModule = pModule; + pMod->pAux = pAux; + pMod->xDestroy = xDestroy; + pDel = (Module *)sqlite3HashInsert(&db->aModule,zCopy,nName,(void*)pMod); + assert( pDel==0 || pDel==pMod ); + if( pDel ){ + db->mallocFailed = 1; + sqlite3DbFree(db, pDel); + } + } + } + rc = sqlite3ApiExit(db, rc); + if( rc!=SQLITE_OK && xDestroy ) xDestroy(pAux); + + sqlite3_mutex_leave(db->mutex); + return rc; +} + + +/* +** External API function used to create a new virtual-table module. +*/ +SQLITE_API int sqlite3_create_module( + sqlite3 *db, /* Database in which module is registered */ + const char *zName, /* Name assigned to this module */ + const sqlite3_module *pModule, /* The definition of the module */ + void *pAux /* Context pointer for xCreate/xConnect */ +){ + return createModule(db, zName, pModule, pAux, 0); +} + +/* +** External API function used to create a new virtual-table module. +*/ +SQLITE_API int sqlite3_create_module_v2( + sqlite3 *db, /* Database in which module is registered */ + const char *zName, /* Name assigned to this module */ + const sqlite3_module *pModule, /* The definition of the module */ + void *pAux, /* Context pointer for xCreate/xConnect */ + void (*xDestroy)(void *) /* Module destructor function */ +){ + return createModule(db, zName, pModule, pAux, xDestroy); +} + +/* +** Lock the virtual table so that it cannot be disconnected. +** Locks nest. Every lock should have a corresponding unlock. +** If an unlock is omitted, resources leaks will occur. +** +** If a disconnect is attempted while a virtual table is locked, +** the disconnect is deferred until all locks have been removed. +*/ +SQLITE_PRIVATE void sqlite3VtabLock(VTable *pVTab){ + pVTab->nRef++; +} + + +/* +** pTab is a pointer to a Table structure representing a virtual-table. +** Return a pointer to the VTable object used by connection db to access +** this virtual-table, if one has been created, or NULL otherwise. +*/ +SQLITE_PRIVATE VTable *sqlite3GetVTable(sqlite3 *db, Table *pTab){ + VTable *pVtab; + assert( IsVirtual(pTab) ); + for(pVtab=pTab->pVTable; pVtab && pVtab->db!=db; pVtab=pVtab->pNext); + return pVtab; +} + +/* +** Decrement the ref-count on a virtual table object. When the ref-count +** reaches zero, call the xDisconnect() method to delete the object. +*/ +SQLITE_PRIVATE void sqlite3VtabUnlock(VTable *pVTab){ + sqlite3 *db = pVTab->db; + + assert( db ); + assert( pVTab->nRef>0 ); + assert( db->magic==SQLITE_MAGIC_OPEN || db->magic==SQLITE_MAGIC_ZOMBIE ); + + pVTab->nRef--; + if( pVTab->nRef==0 ){ + sqlite3_vtab *p = pVTab->pVtab; + if( p ){ + p->pModule->xDisconnect(p); + } + sqlite3DbFree(db, pVTab); + } +} + +/* +** Table p is a virtual table. This function moves all elements in the +** p->pVTable list to the sqlite3.pDisconnect lists of their associated +** database connections to be disconnected at the next opportunity. +** Except, if argument db is not NULL, then the entry associated with +** connection db is left in the p->pVTable list. +*/ +static VTable *vtabDisconnectAll(sqlite3 *db, Table *p){ + VTable *pRet = 0; + VTable *pVTable = p->pVTable; + p->pVTable = 0; + + /* Assert that the mutex (if any) associated with the BtShared database + ** that contains table p is held by the caller. See header comments + ** above function sqlite3VtabUnlockList() for an explanation of why + ** this makes it safe to access the sqlite3.pDisconnect list of any + ** database connection that may have an entry in the p->pVTable list. + */ + assert( db==0 || sqlite3SchemaMutexHeld(db, 0, p->pSchema) ); + + while( pVTable ){ + sqlite3 *db2 = pVTable->db; + VTable *pNext = pVTable->pNext; + assert( db2 ); + if( db2==db ){ + pRet = pVTable; + p->pVTable = pRet; + pRet->pNext = 0; + }else{ + pVTable->pNext = db2->pDisconnect; + db2->pDisconnect = pVTable; + } + pVTable = pNext; + } + + assert( !db || pRet ); + return pRet; +} + +/* +** Table *p is a virtual table. This function removes the VTable object +** for table *p associated with database connection db from the linked +** list in p->pVTab. It also decrements the VTable ref count. This is +** used when closing database connection db to free all of its VTable +** objects without disturbing the rest of the Schema object (which may +** be being used by other shared-cache connections). +*/ +SQLITE_PRIVATE void sqlite3VtabDisconnect(sqlite3 *db, Table *p){ + VTable **ppVTab; + + assert( IsVirtual(p) ); + assert( sqlite3BtreeHoldsAllMutexes(db) ); + assert( sqlite3_mutex_held(db->mutex) ); + + for(ppVTab=&p->pVTable; *ppVTab; ppVTab=&(*ppVTab)->pNext){ + if( (*ppVTab)->db==db ){ + VTable *pVTab = *ppVTab; + *ppVTab = pVTab->pNext; + sqlite3VtabUnlock(pVTab); + break; + } + } +} + + +/* +** Disconnect all the virtual table objects in the sqlite3.pDisconnect list. +** +** This function may only be called when the mutexes associated with all +** shared b-tree databases opened using connection db are held by the +** caller. This is done to protect the sqlite3.pDisconnect list. The +** sqlite3.pDisconnect list is accessed only as follows: +** +** 1) By this function. In this case, all BtShared mutexes and the mutex +** associated with the database handle itself must be held. +** +** 2) By function vtabDisconnectAll(), when it adds a VTable entry to +** the sqlite3.pDisconnect list. In this case either the BtShared mutex +** associated with the database the virtual table is stored in is held +** or, if the virtual table is stored in a non-sharable database, then +** the database handle mutex is held. +** +** As a result, a sqlite3.pDisconnect cannot be accessed simultaneously +** by multiple threads. It is thread-safe. +*/ +SQLITE_PRIVATE void sqlite3VtabUnlockList(sqlite3 *db){ + VTable *p = db->pDisconnect; + db->pDisconnect = 0; + + assert( sqlite3BtreeHoldsAllMutexes(db) ); + assert( sqlite3_mutex_held(db->mutex) ); + + if( p ){ + sqlite3ExpirePreparedStatements(db); + do { + VTable *pNext = p->pNext; + sqlite3VtabUnlock(p); + p = pNext; + }while( p ); + } +} + +/* +** Clear any and all virtual-table information from the Table record. +** This routine is called, for example, just before deleting the Table +** record. +** +** Since it is a virtual-table, the Table structure contains a pointer +** to the head of a linked list of VTable structures. Each VTable +** structure is associated with a single sqlite3* user of the schema. +** The reference count of the VTable structure associated with database +** connection db is decremented immediately (which may lead to the +** structure being xDisconnected and free). Any other VTable structures +** in the list are moved to the sqlite3.pDisconnect list of the associated +** database connection. +*/ +SQLITE_PRIVATE void sqlite3VtabClear(sqlite3 *db, Table *p){ + if( !db || db->pnBytesFreed==0 ) vtabDisconnectAll(0, p); + if( p->azModuleArg ){ + int i; + for(i=0; inModuleArg; i++){ + if( i!=1 ) sqlite3DbFree(db, p->azModuleArg[i]); + } + sqlite3DbFree(db, p->azModuleArg); + } +} + +/* +** Add a new module argument to pTable->azModuleArg[]. +** The string is not copied - the pointer is stored. The +** string will be freed automatically when the table is +** deleted. +*/ +static void addModuleArgument(sqlite3 *db, Table *pTable, char *zArg){ + int i = pTable->nModuleArg++; + int nBytes = sizeof(char *)*(1+pTable->nModuleArg); + char **azModuleArg; + azModuleArg = sqlite3DbRealloc(db, pTable->azModuleArg, nBytes); + if( azModuleArg==0 ){ + int j; + for(j=0; jazModuleArg[j]); + } + sqlite3DbFree(db, zArg); + sqlite3DbFree(db, pTable->azModuleArg); + pTable->nModuleArg = 0; + }else{ + azModuleArg[i] = zArg; + azModuleArg[i+1] = 0; + } + pTable->azModuleArg = azModuleArg; +} + +/* +** The parser calls this routine when it first sees a CREATE VIRTUAL TABLE +** statement. The module name has been parsed, but the optional list +** of parameters that follow the module name are still pending. +*/ +SQLITE_PRIVATE void sqlite3VtabBeginParse( + Parse *pParse, /* Parsing context */ + Token *pName1, /* Name of new table, or database name */ + Token *pName2, /* Name of new table or NULL */ + Token *pModuleName, /* Name of the module for the virtual table */ + int ifNotExists /* No error if the table already exists */ +){ + int iDb; /* The database the table is being created in */ + Table *pTable; /* The new virtual table */ + sqlite3 *db; /* Database connection */ + + sqlite3StartTable(pParse, pName1, pName2, 0, 0, 1, ifNotExists); + pTable = pParse->pNewTable; + if( pTable==0 ) return; + assert( 0==pTable->pIndex ); + + db = pParse->db; + iDb = sqlite3SchemaToIndex(db, pTable->pSchema); + assert( iDb>=0 ); + + pTable->tabFlags |= TF_Virtual; + pTable->nModuleArg = 0; + addModuleArgument(db, pTable, sqlite3NameFromToken(db, pModuleName)); + addModuleArgument(db, pTable, 0); + addModuleArgument(db, pTable, sqlite3DbStrDup(db, pTable->zName)); + pParse->sNameToken.n = (int)(&pModuleName->z[pModuleName->n] - pName1->z); + +#ifndef SQLITE_OMIT_AUTHORIZATION + /* Creating a virtual table invokes the authorization callback twice. + ** The first invocation, to obtain permission to INSERT a row into the + ** sqlite_master table, has already been made by sqlite3StartTable(). + ** The second call, to obtain permission to create the table, is made now. + */ + if( pTable->azModuleArg ){ + sqlite3AuthCheck(pParse, SQLITE_CREATE_VTABLE, pTable->zName, + pTable->azModuleArg[0], pParse->db->aDb[iDb].zName); + } +#endif +} + +/* +** This routine takes the module argument that has been accumulating +** in pParse->zArg[] and appends it to the list of arguments on the +** virtual table currently under construction in pParse->pTable. +*/ +static void addArgumentToVtab(Parse *pParse){ + if( pParse->sArg.z && pParse->pNewTable ){ + const char *z = (const char*)pParse->sArg.z; + int n = pParse->sArg.n; + sqlite3 *db = pParse->db; + addModuleArgument(db, pParse->pNewTable, sqlite3DbStrNDup(db, z, n)); + } +} + +/* +** The parser calls this routine after the CREATE VIRTUAL TABLE statement +** has been completely parsed. +*/ +SQLITE_PRIVATE void sqlite3VtabFinishParse(Parse *pParse, Token *pEnd){ + Table *pTab = pParse->pNewTable; /* The table being constructed */ + sqlite3 *db = pParse->db; /* The database connection */ + + if( pTab==0 ) return; + addArgumentToVtab(pParse); + pParse->sArg.z = 0; + if( pTab->nModuleArg<1 ) return; + + /* If the CREATE VIRTUAL TABLE statement is being entered for the + ** first time (in other words if the virtual table is actually being + ** created now instead of just being read out of sqlite_master) then + ** do additional initialization work and store the statement text + ** in the sqlite_master table. + */ + if( !db->init.busy ){ + char *zStmt; + char *zWhere; + int iDb; + Vdbe *v; + + /* Compute the complete text of the CREATE VIRTUAL TABLE statement */ + if( pEnd ){ + pParse->sNameToken.n = (int)(pEnd->z - pParse->sNameToken.z) + pEnd->n; + } + zStmt = sqlite3MPrintf(db, "CREATE VIRTUAL TABLE %T", &pParse->sNameToken); + + /* A slot for the record has already been allocated in the + ** SQLITE_MASTER table. We just need to update that slot with all + ** the information we've collected. + ** + ** The VM register number pParse->regRowid holds the rowid of an + ** entry in the sqlite_master table tht was created for this vtab + ** by sqlite3StartTable(). + */ + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + sqlite3NestedParse(pParse, + "UPDATE %Q.%s " + "SET type='table', name=%Q, tbl_name=%Q, rootpage=0, sql=%Q " + "WHERE rowid=#%d", + db->aDb[iDb].zName, SCHEMA_TABLE(iDb), + pTab->zName, + pTab->zName, + zStmt, + pParse->regRowid + ); + sqlite3DbFree(db, zStmt); + v = sqlite3GetVdbe(pParse); + sqlite3ChangeCookie(pParse, iDb); + + sqlite3VdbeAddOp2(v, OP_Expire, 0, 0); + zWhere = sqlite3MPrintf(db, "name='%q' AND type='table'", pTab->zName); + sqlite3VdbeAddParseSchemaOp(v, iDb, zWhere); + sqlite3VdbeAddOp4(v, OP_VCreate, iDb, 0, 0, + pTab->zName, sqlite3Strlen30(pTab->zName) + 1); + } + + /* If we are rereading the sqlite_master table create the in-memory + ** record of the table. The xConnect() method is not called until + ** the first time the virtual table is used in an SQL statement. This + ** allows a schema that contains virtual tables to be loaded before + ** the required virtual table implementations are registered. */ + else { + Table *pOld; + Schema *pSchema = pTab->pSchema; + const char *zName = pTab->zName; + int nName = sqlite3Strlen30(zName); + assert( sqlite3SchemaMutexHeld(db, 0, pSchema) ); + pOld = sqlite3HashInsert(&pSchema->tblHash, zName, nName, pTab); + if( pOld ){ + db->mallocFailed = 1; + assert( pTab==pOld ); /* Malloc must have failed inside HashInsert() */ + return; + } + pParse->pNewTable = 0; + } +} + +/* +** The parser calls this routine when it sees the first token +** of an argument to the module name in a CREATE VIRTUAL TABLE statement. +*/ +SQLITE_PRIVATE void sqlite3VtabArgInit(Parse *pParse){ + addArgumentToVtab(pParse); + pParse->sArg.z = 0; + pParse->sArg.n = 0; +} + +/* +** The parser calls this routine for each token after the first token +** in an argument to the module name in a CREATE VIRTUAL TABLE statement. +*/ +SQLITE_PRIVATE void sqlite3VtabArgExtend(Parse *pParse, Token *p){ + Token *pArg = &pParse->sArg; + if( pArg->z==0 ){ + pArg->z = p->z; + pArg->n = p->n; + }else{ + assert(pArg->z < p->z); + pArg->n = (int)(&p->z[p->n] - pArg->z); + } +} + +/* +** Invoke a virtual table constructor (either xCreate or xConnect). The +** pointer to the function to invoke is passed as the fourth parameter +** to this procedure. +*/ +static int vtabCallConstructor( + sqlite3 *db, + Table *pTab, + Module *pMod, + int (*xConstruct)(sqlite3*,void*,int,const char*const*,sqlite3_vtab**,char**), + char **pzErr +){ + VtabCtx sCtx, *pPriorCtx; + VTable *pVTable; + int rc; + const char *const*azArg = (const char *const*)pTab->azModuleArg; + int nArg = pTab->nModuleArg; + char *zErr = 0; + char *zModuleName = sqlite3MPrintf(db, "%s", pTab->zName); + int iDb; + + if( !zModuleName ){ + return SQLITE_NOMEM; + } + + pVTable = sqlite3DbMallocZero(db, sizeof(VTable)); + if( !pVTable ){ + sqlite3DbFree(db, zModuleName); + return SQLITE_NOMEM; + } + pVTable->db = db; + pVTable->pMod = pMod; + + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + pTab->azModuleArg[1] = db->aDb[iDb].zName; + + /* Invoke the virtual table constructor */ + assert( &db->pVtabCtx ); + assert( xConstruct ); + sCtx.pTab = pTab; + sCtx.pVTable = pVTable; + pPriorCtx = db->pVtabCtx; + db->pVtabCtx = &sCtx; + rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr); + db->pVtabCtx = pPriorCtx; + if( rc==SQLITE_NOMEM ) db->mallocFailed = 1; + + if( SQLITE_OK!=rc ){ + if( zErr==0 ){ + *pzErr = sqlite3MPrintf(db, "vtable constructor failed: %s", zModuleName); + }else { + *pzErr = sqlite3MPrintf(db, "%s", zErr); + sqlite3_free(zErr); + } + sqlite3DbFree(db, pVTable); + }else if( ALWAYS(pVTable->pVtab) ){ + /* Justification of ALWAYS(): A correct vtab constructor must allocate + ** the sqlite3_vtab object if successful. */ + pVTable->pVtab->pModule = pMod->pModule; + pVTable->nRef = 1; + if( sCtx.pTab ){ + const char *zFormat = "vtable constructor did not declare schema: %s"; + *pzErr = sqlite3MPrintf(db, zFormat, pTab->zName); + sqlite3VtabUnlock(pVTable); + rc = SQLITE_ERROR; + }else{ + int iCol; + /* If everything went according to plan, link the new VTable structure + ** into the linked list headed by pTab->pVTable. Then loop through the + ** columns of the table to see if any of them contain the token "hidden". + ** If so, set the Column COLFLAG_HIDDEN flag and remove the token from + ** the type string. */ + pVTable->pNext = pTab->pVTable; + pTab->pVTable = pVTable; + + for(iCol=0; iColnCol; iCol++){ + char *zType = pTab->aCol[iCol].zType; + int nType; + int i = 0; + if( !zType ) continue; + nType = sqlite3Strlen30(zType); + if( sqlite3StrNICmp("hidden", zType, 6)||(zType[6] && zType[6]!=' ') ){ + for(i=0; i0 ){ + assert(zType[i-1]==' '); + zType[i-1] = '\0'; + } + pTab->aCol[iCol].colFlags |= COLFLAG_HIDDEN; + } + } + } + } + + sqlite3DbFree(db, zModuleName); + return rc; +} + +/* +** This function is invoked by the parser to call the xConnect() method +** of the virtual table pTab. If an error occurs, an error code is returned +** and an error left in pParse. +** +** This call is a no-op if table pTab is not a virtual table. +*/ +SQLITE_PRIVATE int sqlite3VtabCallConnect(Parse *pParse, Table *pTab){ + sqlite3 *db = pParse->db; + const char *zMod; + Module *pMod; + int rc; + + assert( pTab ); + if( (pTab->tabFlags & TF_Virtual)==0 || sqlite3GetVTable(db, pTab) ){ + return SQLITE_OK; + } + + /* Locate the required virtual table module */ + zMod = pTab->azModuleArg[0]; + pMod = (Module*)sqlite3HashFind(&db->aModule, zMod, sqlite3Strlen30(zMod)); + + if( !pMod ){ + const char *zModule = pTab->azModuleArg[0]; + sqlite3ErrorMsg(pParse, "no such module: %s", zModule); + rc = SQLITE_ERROR; + }else{ + char *zErr = 0; + rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xConnect, &zErr); + if( rc!=SQLITE_OK ){ + sqlite3ErrorMsg(pParse, "%s", zErr); + } + sqlite3DbFree(db, zErr); + } + + return rc; +} +/* +** Grow the db->aVTrans[] array so that there is room for at least one +** more v-table. Return SQLITE_NOMEM if a malloc fails, or SQLITE_OK otherwise. +*/ +static int growVTrans(sqlite3 *db){ + const int ARRAY_INCR = 5; + + /* Grow the sqlite3.aVTrans array if required */ + if( (db->nVTrans%ARRAY_INCR)==0 ){ + VTable **aVTrans; + int nBytes = sizeof(sqlite3_vtab *) * (db->nVTrans + ARRAY_INCR); + aVTrans = sqlite3DbRealloc(db, (void *)db->aVTrans, nBytes); + if( !aVTrans ){ + return SQLITE_NOMEM; + } + memset(&aVTrans[db->nVTrans], 0, sizeof(sqlite3_vtab *)*ARRAY_INCR); + db->aVTrans = aVTrans; + } + + return SQLITE_OK; +} + +/* +** Add the virtual table pVTab to the array sqlite3.aVTrans[]. Space should +** have already been reserved using growVTrans(). +*/ +static void addToVTrans(sqlite3 *db, VTable *pVTab){ + /* Add pVtab to the end of sqlite3.aVTrans */ + db->aVTrans[db->nVTrans++] = pVTab; + sqlite3VtabLock(pVTab); +} + +/* +** This function is invoked by the vdbe to call the xCreate method +** of the virtual table named zTab in database iDb. +** +** If an error occurs, *pzErr is set to point an an English language +** description of the error and an SQLITE_XXX error code is returned. +** In this case the caller must call sqlite3DbFree(db, ) on *pzErr. +*/ +SQLITE_PRIVATE int sqlite3VtabCallCreate(sqlite3 *db, int iDb, const char *zTab, char **pzErr){ + int rc = SQLITE_OK; + Table *pTab; + Module *pMod; + const char *zMod; + + pTab = sqlite3FindTable(db, zTab, db->aDb[iDb].zName); + assert( pTab && (pTab->tabFlags & TF_Virtual)!=0 && !pTab->pVTable ); + + /* Locate the required virtual table module */ + zMod = pTab->azModuleArg[0]; + pMod = (Module*)sqlite3HashFind(&db->aModule, zMod, sqlite3Strlen30(zMod)); + + /* If the module has been registered and includes a Create method, + ** invoke it now. If the module has not been registered, return an + ** error. Otherwise, do nothing. + */ + if( !pMod ){ + *pzErr = sqlite3MPrintf(db, "no such module: %s", zMod); + rc = SQLITE_ERROR; + }else{ + rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr); + } + + /* Justification of ALWAYS(): The xConstructor method is required to + ** create a valid sqlite3_vtab if it returns SQLITE_OK. */ + if( rc==SQLITE_OK && ALWAYS(sqlite3GetVTable(db, pTab)) ){ + rc = growVTrans(db); + if( rc==SQLITE_OK ){ + addToVTrans(db, sqlite3GetVTable(db, pTab)); + } + } + + return rc; +} + +/* +** This function is used to set the schema of a virtual table. It is only +** valid to call this function from within the xCreate() or xConnect() of a +** virtual table module. +*/ +SQLITE_API int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){ + Parse *pParse; + + int rc = SQLITE_OK; + Table *pTab; + char *zErr = 0; + + sqlite3_mutex_enter(db->mutex); + if( !db->pVtabCtx || !(pTab = db->pVtabCtx->pTab) ){ + sqlite3Error(db, SQLITE_MISUSE, 0); + sqlite3_mutex_leave(db->mutex); + return SQLITE_MISUSE_BKPT; + } + assert( (pTab->tabFlags & TF_Virtual)!=0 ); + + pParse = sqlite3StackAllocZero(db, sizeof(*pParse)); + if( pParse==0 ){ + rc = SQLITE_NOMEM; + }else{ + pParse->declareVtab = 1; + pParse->db = db; + pParse->nQueryLoop = 1; + + if( SQLITE_OK==sqlite3RunParser(pParse, zCreateTable, &zErr) + && pParse->pNewTable + && !db->mallocFailed + && !pParse->pNewTable->pSelect + && (pParse->pNewTable->tabFlags & TF_Virtual)==0 + ){ + if( !pTab->aCol ){ + pTab->aCol = pParse->pNewTable->aCol; + pTab->nCol = pParse->pNewTable->nCol; + pParse->pNewTable->nCol = 0; + pParse->pNewTable->aCol = 0; + } + db->pVtabCtx->pTab = 0; + }else{ + sqlite3Error(db, SQLITE_ERROR, (zErr ? "%s" : 0), zErr); + sqlite3DbFree(db, zErr); + rc = SQLITE_ERROR; + } + pParse->declareVtab = 0; + + if( pParse->pVdbe ){ + sqlite3VdbeFinalize(pParse->pVdbe); + } + sqlite3DeleteTable(db, pParse->pNewTable); + sqlite3ParserReset(pParse); + sqlite3StackFree(db, pParse); + } + + assert( (rc&0xff)==rc ); + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +/* +** This function is invoked by the vdbe to call the xDestroy method +** of the virtual table named zTab in database iDb. This occurs +** when a DROP TABLE is mentioned. +** +** This call is a no-op if zTab is not a virtual table. +*/ +SQLITE_PRIVATE int sqlite3VtabCallDestroy(sqlite3 *db, int iDb, const char *zTab){ + int rc = SQLITE_OK; + Table *pTab; + + pTab = sqlite3FindTable(db, zTab, db->aDb[iDb].zName); + if( ALWAYS(pTab!=0 && pTab->pVTable!=0) ){ + VTable *p = vtabDisconnectAll(db, pTab); + + assert( rc==SQLITE_OK ); + rc = p->pMod->pModule->xDestroy(p->pVtab); + + /* Remove the sqlite3_vtab* from the aVTrans[] array, if applicable */ + if( rc==SQLITE_OK ){ + assert( pTab->pVTable==p && p->pNext==0 ); + p->pVtab = 0; + pTab->pVTable = 0; + sqlite3VtabUnlock(p); + } + } + + return rc; +} + +/* +** This function invokes either the xRollback or xCommit method +** of each of the virtual tables in the sqlite3.aVTrans array. The method +** called is identified by the second argument, "offset", which is +** the offset of the method to call in the sqlite3_module structure. +** +** The array is cleared after invoking the callbacks. +*/ +static void callFinaliser(sqlite3 *db, int offset){ + int i; + if( db->aVTrans ){ + for(i=0; inVTrans; i++){ + VTable *pVTab = db->aVTrans[i]; + sqlite3_vtab *p = pVTab->pVtab; + if( p ){ + int (*x)(sqlite3_vtab *); + x = *(int (**)(sqlite3_vtab *))((char *)p->pModule + offset); + if( x ) x(p); + } + pVTab->iSavepoint = 0; + sqlite3VtabUnlock(pVTab); + } + sqlite3DbFree(db, db->aVTrans); + db->nVTrans = 0; + db->aVTrans = 0; + } +} + +/* +** Invoke the xSync method of all virtual tables in the sqlite3.aVTrans +** array. Return the error code for the first error that occurs, or +** SQLITE_OK if all xSync operations are successful. +** +** If an error message is available, leave it in p->zErrMsg. +*/ +SQLITE_PRIVATE int sqlite3VtabSync(sqlite3 *db, Vdbe *p){ + int i; + int rc = SQLITE_OK; + VTable **aVTrans = db->aVTrans; + + db->aVTrans = 0; + for(i=0; rc==SQLITE_OK && inVTrans; i++){ + int (*x)(sqlite3_vtab *); + sqlite3_vtab *pVtab = aVTrans[i]->pVtab; + if( pVtab && (x = pVtab->pModule->xSync)!=0 ){ + rc = x(pVtab); + sqlite3VtabImportErrmsg(p, pVtab); + } + } + db->aVTrans = aVTrans; + return rc; +} + +/* +** Invoke the xRollback method of all virtual tables in the +** sqlite3.aVTrans array. Then clear the array itself. +*/ +SQLITE_PRIVATE int sqlite3VtabRollback(sqlite3 *db){ + callFinaliser(db, offsetof(sqlite3_module,xRollback)); + return SQLITE_OK; +} + +/* +** Invoke the xCommit method of all virtual tables in the +** sqlite3.aVTrans array. Then clear the array itself. +*/ +SQLITE_PRIVATE int sqlite3VtabCommit(sqlite3 *db){ + callFinaliser(db, offsetof(sqlite3_module,xCommit)); + return SQLITE_OK; +} + +/* +** If the virtual table pVtab supports the transaction interface +** (xBegin/xRollback/xCommit and optionally xSync) and a transaction is +** not currently open, invoke the xBegin method now. +** +** If the xBegin call is successful, place the sqlite3_vtab pointer +** in the sqlite3.aVTrans array. +*/ +SQLITE_PRIVATE int sqlite3VtabBegin(sqlite3 *db, VTable *pVTab){ + int rc = SQLITE_OK; + const sqlite3_module *pModule; + + /* Special case: If db->aVTrans is NULL and db->nVTrans is greater + ** than zero, then this function is being called from within a + ** virtual module xSync() callback. It is illegal to write to + ** virtual module tables in this case, so return SQLITE_LOCKED. + */ + if( sqlite3VtabInSync(db) ){ + return SQLITE_LOCKED; + } + if( !pVTab ){ + return SQLITE_OK; + } + pModule = pVTab->pVtab->pModule; + + if( pModule->xBegin ){ + int i; + + /* If pVtab is already in the aVTrans array, return early */ + for(i=0; inVTrans; i++){ + if( db->aVTrans[i]==pVTab ){ + return SQLITE_OK; + } + } + + /* Invoke the xBegin method. If successful, add the vtab to the + ** sqlite3.aVTrans[] array. */ + rc = growVTrans(db); + if( rc==SQLITE_OK ){ + rc = pModule->xBegin(pVTab->pVtab); + if( rc==SQLITE_OK ){ + addToVTrans(db, pVTab); + } + } + } + return rc; +} + +/* +** Invoke either the xSavepoint, xRollbackTo or xRelease method of all +** virtual tables that currently have an open transaction. Pass iSavepoint +** as the second argument to the virtual table method invoked. +** +** If op is SAVEPOINT_BEGIN, the xSavepoint method is invoked. If it is +** SAVEPOINT_ROLLBACK, the xRollbackTo method. Otherwise, if op is +** SAVEPOINT_RELEASE, then the xRelease method of each virtual table with +** an open transaction is invoked. +** +** If any virtual table method returns an error code other than SQLITE_OK, +** processing is abandoned and the error returned to the caller of this +** function immediately. If all calls to virtual table methods are successful, +** SQLITE_OK is returned. +*/ +SQLITE_PRIVATE int sqlite3VtabSavepoint(sqlite3 *db, int op, int iSavepoint){ + int rc = SQLITE_OK; + + assert( op==SAVEPOINT_RELEASE||op==SAVEPOINT_ROLLBACK||op==SAVEPOINT_BEGIN ); + assert( iSavepoint>=0 ); + if( db->aVTrans ){ + int i; + for(i=0; rc==SQLITE_OK && inVTrans; i++){ + VTable *pVTab = db->aVTrans[i]; + const sqlite3_module *pMod = pVTab->pMod->pModule; + if( pVTab->pVtab && pMod->iVersion>=2 ){ + int (*xMethod)(sqlite3_vtab *, int); + switch( op ){ + case SAVEPOINT_BEGIN: + xMethod = pMod->xSavepoint; + pVTab->iSavepoint = iSavepoint+1; + break; + case SAVEPOINT_ROLLBACK: + xMethod = pMod->xRollbackTo; + break; + default: + xMethod = pMod->xRelease; + break; + } + if( xMethod && pVTab->iSavepoint>iSavepoint ){ + rc = xMethod(pVTab->pVtab, iSavepoint); + } + } + } + } + return rc; +} + +/* +** The first parameter (pDef) is a function implementation. The +** second parameter (pExpr) is the first argument to this function. +** If pExpr is a column in a virtual table, then let the virtual +** table implementation have an opportunity to overload the function. +** +** This routine is used to allow virtual table implementations to +** overload MATCH, LIKE, GLOB, and REGEXP operators. +** +** Return either the pDef argument (indicating no change) or a +** new FuncDef structure that is marked as ephemeral using the +** SQLITE_FUNC_EPHEM flag. +*/ +SQLITE_PRIVATE FuncDef *sqlite3VtabOverloadFunction( + sqlite3 *db, /* Database connection for reporting malloc problems */ + FuncDef *pDef, /* Function to possibly overload */ + int nArg, /* Number of arguments to the function */ + Expr *pExpr /* First argument to the function */ +){ + Table *pTab; + sqlite3_vtab *pVtab; + sqlite3_module *pMod; + void (*xFunc)(sqlite3_context*,int,sqlite3_value**) = 0; + void *pArg = 0; + FuncDef *pNew; + int rc = 0; + char *zLowerName; + unsigned char *z; + + + /* Check to see the left operand is a column in a virtual table */ + if( NEVER(pExpr==0) ) return pDef; + if( pExpr->op!=TK_COLUMN ) return pDef; + pTab = pExpr->pTab; + if( NEVER(pTab==0) ) return pDef; + if( (pTab->tabFlags & TF_Virtual)==0 ) return pDef; + pVtab = sqlite3GetVTable(db, pTab)->pVtab; + assert( pVtab!=0 ); + assert( pVtab->pModule!=0 ); + pMod = (sqlite3_module *)pVtab->pModule; + if( pMod->xFindFunction==0 ) return pDef; + + /* Call the xFindFunction method on the virtual table implementation + ** to see if the implementation wants to overload this function + */ + zLowerName = sqlite3DbStrDup(db, pDef->zName); + if( zLowerName ){ + for(z=(unsigned char*)zLowerName; *z; z++){ + *z = sqlite3UpperToLower[*z]; + } + rc = pMod->xFindFunction(pVtab, nArg, zLowerName, &xFunc, &pArg); + sqlite3DbFree(db, zLowerName); + } + if( rc==0 ){ + return pDef; + } + + /* Create a new ephemeral function definition for the overloaded + ** function */ + pNew = sqlite3DbMallocZero(db, sizeof(*pNew) + + sqlite3Strlen30(pDef->zName) + 1); + if( pNew==0 ){ + return pDef; + } + *pNew = *pDef; + pNew->zName = (char *)&pNew[1]; + memcpy(pNew->zName, pDef->zName, sqlite3Strlen30(pDef->zName)+1); + pNew->xFunc = xFunc; + pNew->pUserData = pArg; + pNew->funcFlags |= SQLITE_FUNC_EPHEM; + return pNew; +} + +/* +** Make sure virtual table pTab is contained in the pParse->apVirtualLock[] +** array so that an OP_VBegin will get generated for it. Add pTab to the +** array if it is missing. If pTab is already in the array, this routine +** is a no-op. +*/ +SQLITE_PRIVATE void sqlite3VtabMakeWritable(Parse *pParse, Table *pTab){ + Parse *pToplevel = sqlite3ParseToplevel(pParse); + int i, n; + Table **apVtabLock; + + assert( IsVirtual(pTab) ); + for(i=0; inVtabLock; i++){ + if( pTab==pToplevel->apVtabLock[i] ) return; + } + n = (pToplevel->nVtabLock+1)*sizeof(pToplevel->apVtabLock[0]); + apVtabLock = sqlite3_realloc(pToplevel->apVtabLock, n); + if( apVtabLock ){ + pToplevel->apVtabLock = apVtabLock; + pToplevel->apVtabLock[pToplevel->nVtabLock++] = pTab; + }else{ + pToplevel->db->mallocFailed = 1; + } +} + +/* +** Return the ON CONFLICT resolution mode in effect for the virtual +** table update operation currently in progress. +** +** The results of this routine are undefined unless it is called from +** within an xUpdate method. +*/ +SQLITE_API int sqlite3_vtab_on_conflict(sqlite3 *db){ + static const unsigned char aMap[] = { + SQLITE_ROLLBACK, SQLITE_ABORT, SQLITE_FAIL, SQLITE_IGNORE, SQLITE_REPLACE + }; + assert( OE_Rollback==1 && OE_Abort==2 && OE_Fail==3 ); + assert( OE_Ignore==4 && OE_Replace==5 ); + assert( db->vtabOnConflict>=1 && db->vtabOnConflict<=5 ); + return (int)aMap[db->vtabOnConflict-1]; +} + +/* +** Call from within the xCreate() or xConnect() methods to provide +** the SQLite core with additional information about the behavior +** of the virtual table being implemented. +*/ +SQLITE_API int sqlite3_vtab_config(sqlite3 *db, int op, ...){ + va_list ap; + int rc = SQLITE_OK; + + sqlite3_mutex_enter(db->mutex); + + va_start(ap, op); + switch( op ){ + case SQLITE_VTAB_CONSTRAINT_SUPPORT: { + VtabCtx *p = db->pVtabCtx; + if( !p ){ + rc = SQLITE_MISUSE_BKPT; + }else{ + assert( p->pTab==0 || (p->pTab->tabFlags & TF_Virtual)!=0 ); + p->pVTable->bConstraint = (u8)va_arg(ap, int); + } + break; + } + default: + rc = SQLITE_MISUSE_BKPT; + break; + } + va_end(ap); + + if( rc!=SQLITE_OK ) sqlite3Error(db, rc, 0); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +/************** End of vtab.c ************************************************/ +/************** Begin file where.c *******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This module contains C code that generates VDBE code used to process +** the WHERE clause of SQL statements. This module is responsible for +** generating the code that loops through a table looking for applicable +** rows. Indices are selected and used to speed the search when doing +** so is applicable. Because this module is responsible for selecting +** indices, you might also think of this module as the "query optimizer". +*/ +/************** Include whereInt.h in the middle of where.c ******************/ +/************** Begin file whereInt.h ****************************************/ +/* +** 2013-11-12 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains structure and macro definitions for the query +** planner logic in "where.c". These definitions are broken out into +** a separate source file for easier editing. +*/ + +/* +** Trace output macros +*/ +#if defined(SQLITE_TEST) || defined(SQLITE_DEBUG) +/***/ int sqlite3WhereTrace = 0; +#endif +#if defined(SQLITE_DEBUG) \ + && (defined(SQLITE_TEST) || defined(SQLITE_ENABLE_WHERETRACE)) +# define WHERETRACE(K,X) if(sqlite3WhereTrace&(K)) sqlite3DebugPrintf X +# define WHERETRACE_ENABLED 1 +#else +# define WHERETRACE(K,X) +#endif + +/* Forward references +*/ +typedef struct WhereClause WhereClause; +typedef struct WhereMaskSet WhereMaskSet; +typedef struct WhereOrInfo WhereOrInfo; +typedef struct WhereAndInfo WhereAndInfo; +typedef struct WhereLevel WhereLevel; +typedef struct WhereLoop WhereLoop; +typedef struct WherePath WherePath; +typedef struct WhereTerm WhereTerm; +typedef struct WhereLoopBuilder WhereLoopBuilder; +typedef struct WhereScan WhereScan; +typedef struct WhereOrCost WhereOrCost; +typedef struct WhereOrSet WhereOrSet; + +/* +** This object contains information needed to implement a single nested +** loop in WHERE clause. +** +** Contrast this object with WhereLoop. This object describes the +** implementation of the loop. WhereLoop describes the algorithm. +** This object contains a pointer to the WhereLoop algorithm as one of +** its elements. +** +** The WhereInfo object contains a single instance of this object for +** each term in the FROM clause (which is to say, for each of the +** nested loops as implemented). The order of WhereLevel objects determines +** the loop nested order, with WhereInfo.a[0] being the outer loop and +** WhereInfo.a[WhereInfo.nLevel-1] being the inner loop. +*/ +struct WhereLevel { + int iLeftJoin; /* Memory cell used to implement LEFT OUTER JOIN */ + int iTabCur; /* The VDBE cursor used to access the table */ + int iIdxCur; /* The VDBE cursor used to access pIdx */ + int addrBrk; /* Jump here to break out of the loop */ + int addrNxt; /* Jump here to start the next IN combination */ + int addrSkip; /* Jump here for next iteration of skip-scan */ + int addrCont; /* Jump here to continue with the next loop cycle */ + int addrFirst; /* First instruction of interior of the loop */ + int addrBody; /* Beginning of the body of this loop */ + u8 iFrom; /* Which entry in the FROM clause */ + u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */ + int p1, p2; /* Operands of the opcode used to ends the loop */ + union { /* Information that depends on pWLoop->wsFlags */ + struct { + int nIn; /* Number of entries in aInLoop[] */ + struct InLoop { + int iCur; /* The VDBE cursor used by this IN operator */ + int addrInTop; /* Top of the IN loop */ + u8 eEndLoopOp; /* IN Loop terminator. OP_Next or OP_Prev */ + } *aInLoop; /* Information about each nested IN operator */ + } in; /* Used when pWLoop->wsFlags&WHERE_IN_ABLE */ + Index *pCovidx; /* Possible covering index for WHERE_MULTI_OR */ + } u; + struct WhereLoop *pWLoop; /* The selected WhereLoop object */ + Bitmask notReady; /* FROM entries not usable at this level */ +}; + +/* +** Each instance of this object represents an algorithm for evaluating one +** term of a join. Every term of the FROM clause will have at least +** one corresponding WhereLoop object (unless INDEXED BY constraints +** prevent a query solution - which is an error) and many terms of the +** FROM clause will have multiple WhereLoop objects, each describing a +** potential way of implementing that FROM-clause term, together with +** dependencies and cost estimates for using the chosen algorithm. +** +** Query planning consists of building up a collection of these WhereLoop +** objects, then computing a particular sequence of WhereLoop objects, with +** one WhereLoop object per FROM clause term, that satisfy all dependencies +** and that minimize the overall cost. +*/ +struct WhereLoop { + Bitmask prereq; /* Bitmask of other loops that must run first */ + Bitmask maskSelf; /* Bitmask identifying table iTab */ +#ifdef SQLITE_DEBUG + char cId; /* Symbolic ID of this loop for debugging use */ +#endif + u8 iTab; /* Position in FROM clause of table for this loop */ + u8 iSortIdx; /* Sorting index number. 0==None */ + LogEst rSetup; /* One-time setup cost (ex: create transient index) */ + LogEst rRun; /* Cost of running each loop */ + LogEst nOut; /* Estimated number of output rows */ + union { + struct { /* Information for internal btree tables */ + u16 nEq; /* Number of equality constraints */ + u16 nSkip; /* Number of initial index columns to skip */ + Index *pIndex; /* Index used, or NULL */ + } btree; + struct { /* Information for virtual tables */ + int idxNum; /* Index number */ + u8 needFree; /* True if sqlite3_free(idxStr) is needed */ + i8 isOrdered; /* True if satisfies ORDER BY */ + u16 omitMask; /* Terms that may be omitted */ + char *idxStr; /* Index identifier string */ + } vtab; + } u; + u32 wsFlags; /* WHERE_* flags describing the plan */ + u16 nLTerm; /* Number of entries in aLTerm[] */ + /**** whereLoopXfer() copies fields above ***********************/ +# define WHERE_LOOP_XFER_SZ offsetof(WhereLoop,nLSlot) + u16 nLSlot; /* Number of slots allocated for aLTerm[] */ + WhereTerm **aLTerm; /* WhereTerms used */ + WhereLoop *pNextLoop; /* Next WhereLoop object in the WhereClause */ + WhereTerm *aLTermSpace[4]; /* Initial aLTerm[] space */ +}; + +/* This object holds the prerequisites and the cost of running a +** subquery on one operand of an OR operator in the WHERE clause. +** See WhereOrSet for additional information +*/ +struct WhereOrCost { + Bitmask prereq; /* Prerequisites */ + LogEst rRun; /* Cost of running this subquery */ + LogEst nOut; /* Number of outputs for this subquery */ +}; + +/* The WhereOrSet object holds a set of possible WhereOrCosts that +** correspond to the subquery(s) of OR-clause processing. Only the +** best N_OR_COST elements are retained. +*/ +#define N_OR_COST 3 +struct WhereOrSet { + u16 n; /* Number of valid a[] entries */ + WhereOrCost a[N_OR_COST]; /* Set of best costs */ +}; + + +/* Forward declaration of methods */ +static int whereLoopResize(sqlite3*, WhereLoop*, int); + +/* +** Each instance of this object holds a sequence of WhereLoop objects +** that implement some or all of a query plan. +** +** Think of each WhereLoop object as a node in a graph with arcs +** showing dependencies and costs for travelling between nodes. (That is +** not a completely accurate description because WhereLoop costs are a +** vector, not a scalar, and because dependencies are many-to-one, not +** one-to-one as are graph nodes. But it is a useful visualization aid.) +** Then a WherePath object is a path through the graph that visits some +** or all of the WhereLoop objects once. +** +** The "solver" works by creating the N best WherePath objects of length +** 1. Then using those as a basis to compute the N best WherePath objects +** of length 2. And so forth until the length of WherePaths equals the +** number of nodes in the FROM clause. The best (lowest cost) WherePath +** at the end is the choosen query plan. +*/ +struct WherePath { + Bitmask maskLoop; /* Bitmask of all WhereLoop objects in this path */ + Bitmask revLoop; /* aLoop[]s that should be reversed for ORDER BY */ + LogEst nRow; /* Estimated number of rows generated by this path */ + LogEst rCost; /* Total cost of this path */ + i8 isOrdered; /* No. of ORDER BY terms satisfied. -1 for unknown */ + WhereLoop **aLoop; /* Array of WhereLoop objects implementing this path */ +}; + +/* +** The query generator uses an array of instances of this structure to +** help it analyze the subexpressions of the WHERE clause. Each WHERE +** clause subexpression is separated from the others by AND operators, +** usually, or sometimes subexpressions separated by OR. +** +** All WhereTerms are collected into a single WhereClause structure. +** The following identity holds: +** +** WhereTerm.pWC->a[WhereTerm.idx] == WhereTerm +** +** When a term is of the form: +** +** X +** +** where X is a column name and is one of certain operators, +** then WhereTerm.leftCursor and WhereTerm.u.leftColumn record the +** cursor number and column number for X. WhereTerm.eOperator records +** the using a bitmask encoding defined by WO_xxx below. The +** use of a bitmask encoding for the operator allows us to search +** quickly for terms that match any of several different operators. +** +** A WhereTerm might also be two or more subterms connected by OR: +** +** (t1.X ) OR (t1.Y ) OR .... +** +** In this second case, wtFlag has the TERM_ORINFO bit set and eOperator==WO_OR +** and the WhereTerm.u.pOrInfo field points to auxiliary information that +** is collected about the OR clause. +** +** If a term in the WHERE clause does not match either of the two previous +** categories, then eOperator==0. The WhereTerm.pExpr field is still set +** to the original subexpression content and wtFlags is set up appropriately +** but no other fields in the WhereTerm object are meaningful. +** +** When eOperator!=0, prereqRight and prereqAll record sets of cursor numbers, +** but they do so indirectly. A single WhereMaskSet structure translates +** cursor number into bits and the translated bit is stored in the prereq +** fields. The translation is used in order to maximize the number of +** bits that will fit in a Bitmask. The VDBE cursor numbers might be +** spread out over the non-negative integers. For example, the cursor +** numbers might be 3, 8, 9, 10, 20, 23, 41, and 45. The WhereMaskSet +** translates these sparse cursor numbers into consecutive integers +** beginning with 0 in order to make the best possible use of the available +** bits in the Bitmask. So, in the example above, the cursor numbers +** would be mapped into integers 0 through 7. +** +** The number of terms in a join is limited by the number of bits +** in prereqRight and prereqAll. The default is 64 bits, hence SQLite +** is only able to process joins with 64 or fewer tables. +*/ +struct WhereTerm { + Expr *pExpr; /* Pointer to the subexpression that is this term */ + int iParent; /* Disable pWC->a[iParent] when this term disabled */ + int leftCursor; /* Cursor number of X in "X " */ + union { + int leftColumn; /* Column number of X in "X " */ + WhereOrInfo *pOrInfo; /* Extra information if (eOperator & WO_OR)!=0 */ + WhereAndInfo *pAndInfo; /* Extra information if (eOperator& WO_AND)!=0 */ + } u; + LogEst truthProb; /* Probability of truth for this expression */ + u16 eOperator; /* A WO_xx value describing */ + u8 wtFlags; /* TERM_xxx bit flags. See below */ + u8 nChild; /* Number of children that must disable us */ + WhereClause *pWC; /* The clause this term is part of */ + Bitmask prereqRight; /* Bitmask of tables used by pExpr->pRight */ + Bitmask prereqAll; /* Bitmask of tables referenced by pExpr */ +}; + +/* +** Allowed values of WhereTerm.wtFlags +*/ +#define TERM_DYNAMIC 0x01 /* Need to call sqlite3ExprDelete(db, pExpr) */ +#define TERM_VIRTUAL 0x02 /* Added by the optimizer. Do not code */ +#define TERM_CODED 0x04 /* This term is already coded */ +#define TERM_COPIED 0x08 /* Has a child */ +#define TERM_ORINFO 0x10 /* Need to free the WhereTerm.u.pOrInfo object */ +#define TERM_ANDINFO 0x20 /* Need to free the WhereTerm.u.pAndInfo obj */ +#define TERM_OR_OK 0x40 /* Used during OR-clause processing */ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 +# define TERM_VNULL 0x80 /* Manufactured x>NULL or x<=NULL term */ +#else +# define TERM_VNULL 0x00 /* Disabled if not using stat3 */ +#endif + +/* +** An instance of the WhereScan object is used as an iterator for locating +** terms in the WHERE clause that are useful to the query planner. +*/ +struct WhereScan { + WhereClause *pOrigWC; /* Original, innermost WhereClause */ + WhereClause *pWC; /* WhereClause currently being scanned */ + char *zCollName; /* Required collating sequence, if not NULL */ + char idxaff; /* Must match this affinity, if zCollName!=NULL */ + unsigned char nEquiv; /* Number of entries in aEquiv[] */ + unsigned char iEquiv; /* Next unused slot in aEquiv[] */ + u32 opMask; /* Acceptable operators */ + int k; /* Resume scanning at this->pWC->a[this->k] */ + int aEquiv[22]; /* Cursor,Column pairs for equivalence classes */ +}; + +/* +** An instance of the following structure holds all information about a +** WHERE clause. Mostly this is a container for one or more WhereTerms. +** +** Explanation of pOuter: For a WHERE clause of the form +** +** a AND ((b AND c) OR (d AND e)) AND f +** +** There are separate WhereClause objects for the whole clause and for +** the subclauses "(b AND c)" and "(d AND e)". The pOuter field of the +** subclauses points to the WhereClause object for the whole clause. +*/ +struct WhereClause { + WhereInfo *pWInfo; /* WHERE clause processing context */ + WhereClause *pOuter; /* Outer conjunction */ + u8 op; /* Split operator. TK_AND or TK_OR */ + int nTerm; /* Number of terms */ + int nSlot; /* Number of entries in a[] */ + WhereTerm *a; /* Each a[] describes a term of the WHERE cluase */ +#if defined(SQLITE_SMALL_STACK) + WhereTerm aStatic[1]; /* Initial static space for a[] */ +#else + WhereTerm aStatic[8]; /* Initial static space for a[] */ +#endif +}; + +/* +** A WhereTerm with eOperator==WO_OR has its u.pOrInfo pointer set to +** a dynamically allocated instance of the following structure. +*/ +struct WhereOrInfo { + WhereClause wc; /* Decomposition into subterms */ + Bitmask indexable; /* Bitmask of all indexable tables in the clause */ +}; + +/* +** A WhereTerm with eOperator==WO_AND has its u.pAndInfo pointer set to +** a dynamically allocated instance of the following structure. +*/ +struct WhereAndInfo { + WhereClause wc; /* The subexpression broken out */ +}; + +/* +** An instance of the following structure keeps track of a mapping +** between VDBE cursor numbers and bits of the bitmasks in WhereTerm. +** +** The VDBE cursor numbers are small integers contained in +** SrcList_item.iCursor and Expr.iTable fields. For any given WHERE +** clause, the cursor numbers might not begin with 0 and they might +** contain gaps in the numbering sequence. But we want to make maximum +** use of the bits in our bitmasks. This structure provides a mapping +** from the sparse cursor numbers into consecutive integers beginning +** with 0. +** +** If WhereMaskSet.ix[A]==B it means that The A-th bit of a Bitmask +** corresponds VDBE cursor number B. The A-th bit of a bitmask is 1<3, 5->1, 8->2, 29->0, +** 57->5, 73->4. Or one of 719 other combinations might be used. It +** does not really matter. What is important is that sparse cursor +** numbers all get mapped into bit numbers that begin with 0 and contain +** no gaps. +*/ +struct WhereMaskSet { + int n; /* Number of assigned cursor values */ + int ix[BMS]; /* Cursor assigned to each bit */ +}; + +/* +** This object is a convenience wrapper holding all information needed +** to construct WhereLoop objects for a particular query. +*/ +struct WhereLoopBuilder { + WhereInfo *pWInfo; /* Information about this WHERE */ + WhereClause *pWC; /* WHERE clause terms */ + ExprList *pOrderBy; /* ORDER BY clause */ + WhereLoop *pNew; /* Template WhereLoop */ + WhereOrSet *pOrSet; /* Record best loops here, if not NULL */ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + UnpackedRecord *pRec; /* Probe for stat4 (if required) */ + int nRecValid; /* Number of valid fields currently in pRec */ +#endif +}; + +/* +** The WHERE clause processing routine has two halves. The +** first part does the start of the WHERE loop and the second +** half does the tail of the WHERE loop. An instance of +** this structure is returned by the first half and passed +** into the second half to give some continuity. +** +** An instance of this object holds the complete state of the query +** planner. +*/ +struct WhereInfo { + Parse *pParse; /* Parsing and code generating context */ + SrcList *pTabList; /* List of tables in the join */ + ExprList *pOrderBy; /* The ORDER BY clause or NULL */ + ExprList *pResultSet; /* Result set. DISTINCT operates on these */ + WhereLoop *pLoops; /* List of all WhereLoop objects */ + Bitmask revMask; /* Mask of ORDER BY terms that need reversing */ + LogEst nRowOut; /* Estimated number of output rows */ + u16 wctrlFlags; /* Flags originally passed to sqlite3WhereBegin() */ + i8 nOBSat; /* Number of ORDER BY terms satisfied by indices */ + u8 sorted; /* True if really sorted (not just grouped) */ + u8 okOnePass; /* Ok to use one-pass algorithm for UPDATE/DELETE */ + u8 untestedTerms; /* Not all WHERE terms resolved by outer loop */ + u8 eDistinct; /* One of the WHERE_DISTINCT_* values below */ + u8 nLevel; /* Number of nested loop */ + int iTop; /* The very beginning of the WHERE loop */ + int iContinue; /* Jump here to continue with next record */ + int iBreak; /* Jump here to break out of the loop */ + int savedNQueryLoop; /* pParse->nQueryLoop outside the WHERE loop */ + int aiCurOnePass[2]; /* OP_OpenWrite cursors for the ONEPASS opt */ + WhereMaskSet sMaskSet; /* Map cursor numbers to bitmasks */ + WhereClause sWC; /* Decomposition of the WHERE clause */ + WhereLevel a[1]; /* Information about each nest loop in WHERE */ +}; + +/* +** Bitmasks for the operators on WhereTerm objects. These are all +** operators that are of interest to the query planner. An +** OR-ed combination of these values can be used when searching for +** particular WhereTerms within a WhereClause. +*/ +#define WO_IN 0x001 +#define WO_EQ 0x002 +#define WO_LT (WO_EQ<<(TK_LT-TK_EQ)) +#define WO_LE (WO_EQ<<(TK_LE-TK_EQ)) +#define WO_GT (WO_EQ<<(TK_GT-TK_EQ)) +#define WO_GE (WO_EQ<<(TK_GE-TK_EQ)) +#define WO_MATCH 0x040 +#define WO_ISNULL 0x080 +#define WO_OR 0x100 /* Two or more OR-connected terms */ +#define WO_AND 0x200 /* Two or more AND-connected terms */ +#define WO_EQUIV 0x400 /* Of the form A==B, both columns */ +#define WO_NOOP 0x800 /* This term does not restrict search space */ + +#define WO_ALL 0xfff /* Mask of all possible WO_* values */ +#define WO_SINGLE 0x0ff /* Mask of all non-compound WO_* values */ + +/* +** These are definitions of bits in the WhereLoop.wsFlags field. +** The particular combination of bits in each WhereLoop help to +** determine the algorithm that WhereLoop represents. +*/ +#define WHERE_COLUMN_EQ 0x00000001 /* x=EXPR */ +#define WHERE_COLUMN_RANGE 0x00000002 /* xEXPR */ +#define WHERE_COLUMN_IN 0x00000004 /* x IN (...) */ +#define WHERE_COLUMN_NULL 0x00000008 /* x IS NULL */ +#define WHERE_CONSTRAINT 0x0000000f /* Any of the WHERE_COLUMN_xxx values */ +#define WHERE_TOP_LIMIT 0x00000010 /* xEXPR or x>=EXPR constraint */ +#define WHERE_BOTH_LIMIT 0x00000030 /* Both x>EXPR and xnRowOut); +} + +/* +** Return one of the WHERE_DISTINCT_xxxxx values to indicate how this +** WHERE clause returns outputs for DISTINCT processing. +*/ +SQLITE_PRIVATE int sqlite3WhereIsDistinct(WhereInfo *pWInfo){ + return pWInfo->eDistinct; +} + +/* +** Return TRUE if the WHERE clause returns rows in ORDER BY order. +** Return FALSE if the output needs to be sorted. +*/ +SQLITE_PRIVATE int sqlite3WhereIsOrdered(WhereInfo *pWInfo){ + return pWInfo->nOBSat; +} + +/* +** Return the VDBE address or label to jump to in order to continue +** immediately with the next row of a WHERE clause. +*/ +SQLITE_PRIVATE int sqlite3WhereContinueLabel(WhereInfo *pWInfo){ + assert( pWInfo->iContinue!=0 ); + return pWInfo->iContinue; +} + +/* +** Return the VDBE address or label to jump to in order to break +** out of a WHERE loop. +*/ +SQLITE_PRIVATE int sqlite3WhereBreakLabel(WhereInfo *pWInfo){ + return pWInfo->iBreak; +} + +/* +** Return TRUE if an UPDATE or DELETE statement can operate directly on +** the rowids returned by a WHERE clause. Return FALSE if doing an +** UPDATE or DELETE might change subsequent WHERE clause results. +** +** If the ONEPASS optimization is used (if this routine returns true) +** then also write the indices of open cursors used by ONEPASS +** into aiCur[0] and aiCur[1]. iaCur[0] gets the cursor of the data +** table and iaCur[1] gets the cursor used by an auxiliary index. +** Either value may be -1, indicating that cursor is not used. +** Any cursors returned will have been opened for writing. +** +** aiCur[0] and aiCur[1] both get -1 if the where-clause logic is +** unable to use the ONEPASS optimization. +*/ +SQLITE_PRIVATE int sqlite3WhereOkOnePass(WhereInfo *pWInfo, int *aiCur){ + memcpy(aiCur, pWInfo->aiCurOnePass, sizeof(int)*2); + return pWInfo->okOnePass; +} + +/* +** Move the content of pSrc into pDest +*/ +static void whereOrMove(WhereOrSet *pDest, WhereOrSet *pSrc){ + pDest->n = pSrc->n; + memcpy(pDest->a, pSrc->a, pDest->n*sizeof(pDest->a[0])); +} + +/* +** Try to insert a new prerequisite/cost entry into the WhereOrSet pSet. +** +** The new entry might overwrite an existing entry, or it might be +** appended, or it might be discarded. Do whatever is the right thing +** so that pSet keeps the N_OR_COST best entries seen so far. +*/ +static int whereOrInsert( + WhereOrSet *pSet, /* The WhereOrSet to be updated */ + Bitmask prereq, /* Prerequisites of the new entry */ + LogEst rRun, /* Run-cost of the new entry */ + LogEst nOut /* Number of outputs for the new entry */ +){ + u16 i; + WhereOrCost *p; + for(i=pSet->n, p=pSet->a; i>0; i--, p++){ + if( rRun<=p->rRun && (prereq & p->prereq)==prereq ){ + goto whereOrInsert_done; + } + if( p->rRun<=rRun && (p->prereq & prereq)==p->prereq ){ + return 0; + } + } + if( pSet->na[pSet->n++]; + p->nOut = nOut; + }else{ + p = pSet->a; + for(i=1; in; i++){ + if( p->rRun>pSet->a[i].rRun ) p = pSet->a + i; + } + if( p->rRun<=rRun ) return 0; + } +whereOrInsert_done: + p->prereq = prereq; + p->rRun = rRun; + if( p->nOut>nOut ) p->nOut = nOut; + return 1; +} + +/* +** Initialize a preallocated WhereClause structure. +*/ +static void whereClauseInit( + WhereClause *pWC, /* The WhereClause to be initialized */ + WhereInfo *pWInfo /* The WHERE processing context */ +){ + pWC->pWInfo = pWInfo; + pWC->pOuter = 0; + pWC->nTerm = 0; + pWC->nSlot = ArraySize(pWC->aStatic); + pWC->a = pWC->aStatic; +} + +/* Forward reference */ +static void whereClauseClear(WhereClause*); + +/* +** Deallocate all memory associated with a WhereOrInfo object. +*/ +static void whereOrInfoDelete(sqlite3 *db, WhereOrInfo *p){ + whereClauseClear(&p->wc); + sqlite3DbFree(db, p); +} + +/* +** Deallocate all memory associated with a WhereAndInfo object. +*/ +static void whereAndInfoDelete(sqlite3 *db, WhereAndInfo *p){ + whereClauseClear(&p->wc); + sqlite3DbFree(db, p); +} + +/* +** Deallocate a WhereClause structure. The WhereClause structure +** itself is not freed. This routine is the inverse of whereClauseInit(). +*/ +static void whereClauseClear(WhereClause *pWC){ + int i; + WhereTerm *a; + sqlite3 *db = pWC->pWInfo->pParse->db; + for(i=pWC->nTerm-1, a=pWC->a; i>=0; i--, a++){ + if( a->wtFlags & TERM_DYNAMIC ){ + sqlite3ExprDelete(db, a->pExpr); + } + if( a->wtFlags & TERM_ORINFO ){ + whereOrInfoDelete(db, a->u.pOrInfo); + }else if( a->wtFlags & TERM_ANDINFO ){ + whereAndInfoDelete(db, a->u.pAndInfo); + } + } + if( pWC->a!=pWC->aStatic ){ + sqlite3DbFree(db, pWC->a); + } +} + +/* +** Add a single new WhereTerm entry to the WhereClause object pWC. +** The new WhereTerm object is constructed from Expr p and with wtFlags. +** The index in pWC->a[] of the new WhereTerm is returned on success. +** 0 is returned if the new WhereTerm could not be added due to a memory +** allocation error. The memory allocation failure will be recorded in +** the db->mallocFailed flag so that higher-level functions can detect it. +** +** This routine will increase the size of the pWC->a[] array as necessary. +** +** If the wtFlags argument includes TERM_DYNAMIC, then responsibility +** for freeing the expression p is assumed by the WhereClause object pWC. +** This is true even if this routine fails to allocate a new WhereTerm. +** +** WARNING: This routine might reallocate the space used to store +** WhereTerms. All pointers to WhereTerms should be invalidated after +** calling this routine. Such pointers may be reinitialized by referencing +** the pWC->a[] array. +*/ +static int whereClauseInsert(WhereClause *pWC, Expr *p, u8 wtFlags){ + WhereTerm *pTerm; + int idx; + testcase( wtFlags & TERM_VIRTUAL ); + if( pWC->nTerm>=pWC->nSlot ){ + WhereTerm *pOld = pWC->a; + sqlite3 *db = pWC->pWInfo->pParse->db; + pWC->a = sqlite3DbMallocRaw(db, sizeof(pWC->a[0])*pWC->nSlot*2 ); + if( pWC->a==0 ){ + if( wtFlags & TERM_DYNAMIC ){ + sqlite3ExprDelete(db, p); + } + pWC->a = pOld; + return 0; + } + memcpy(pWC->a, pOld, sizeof(pWC->a[0])*pWC->nTerm); + if( pOld!=pWC->aStatic ){ + sqlite3DbFree(db, pOld); + } + pWC->nSlot = sqlite3DbMallocSize(db, pWC->a)/sizeof(pWC->a[0]); + } + pTerm = &pWC->a[idx = pWC->nTerm++]; + if( p && ExprHasProperty(p, EP_Unlikely) ){ + pTerm->truthProb = sqlite3LogEst(p->iTable) - 99; + }else{ + pTerm->truthProb = 1; + } + pTerm->pExpr = sqlite3ExprSkipCollate(p); + pTerm->wtFlags = wtFlags; + pTerm->pWC = pWC; + pTerm->iParent = -1; + return idx; +} + +/* +** This routine identifies subexpressions in the WHERE clause where +** each subexpression is separated by the AND operator or some other +** operator specified in the op parameter. The WhereClause structure +** is filled with pointers to subexpressions. For example: +** +** WHERE a=='hello' AND coalesce(b,11)<10 AND (c+12!=d OR c==22) +** \________/ \_______________/ \________________/ +** slot[0] slot[1] slot[2] +** +** The original WHERE clause in pExpr is unaltered. All this routine +** does is make slot[] entries point to substructure within pExpr. +** +** In the previous sentence and in the diagram, "slot[]" refers to +** the WhereClause.a[] array. The slot[] array grows as needed to contain +** all terms of the WHERE clause. +*/ +static void whereSplit(WhereClause *pWC, Expr *pExpr, u8 op){ + pWC->op = op; + if( pExpr==0 ) return; + if( pExpr->op!=op ){ + whereClauseInsert(pWC, pExpr, 0); + }else{ + whereSplit(pWC, pExpr->pLeft, op); + whereSplit(pWC, pExpr->pRight, op); + } +} + +/* +** Initialize a WhereMaskSet object +*/ +#define initMaskSet(P) (P)->n=0 + +/* +** Return the bitmask for the given cursor number. Return 0 if +** iCursor is not in the set. +*/ +static Bitmask getMask(WhereMaskSet *pMaskSet, int iCursor){ + int i; + assert( pMaskSet->n<=(int)sizeof(Bitmask)*8 ); + for(i=0; in; i++){ + if( pMaskSet->ix[i]==iCursor ){ + return MASKBIT(i); + } + } + return 0; +} + +/* +** Create a new mask for cursor iCursor. +** +** There is one cursor per table in the FROM clause. The number of +** tables in the FROM clause is limited by a test early in the +** sqlite3WhereBegin() routine. So we know that the pMaskSet->ix[] +** array will never overflow. +*/ +static void createMask(WhereMaskSet *pMaskSet, int iCursor){ + assert( pMaskSet->n < ArraySize(pMaskSet->ix) ); + pMaskSet->ix[pMaskSet->n++] = iCursor; +} + +/* +** These routines walk (recursively) an expression tree and generate +** a bitmask indicating which tables are used in that expression +** tree. +*/ +static Bitmask exprListTableUsage(WhereMaskSet*, ExprList*); +static Bitmask exprSelectTableUsage(WhereMaskSet*, Select*); +static Bitmask exprTableUsage(WhereMaskSet *pMaskSet, Expr *p){ + Bitmask mask = 0; + if( p==0 ) return 0; + if( p->op==TK_COLUMN ){ + mask = getMask(pMaskSet, p->iTable); + return mask; + } + mask = exprTableUsage(pMaskSet, p->pRight); + mask |= exprTableUsage(pMaskSet, p->pLeft); + if( ExprHasProperty(p, EP_xIsSelect) ){ + mask |= exprSelectTableUsage(pMaskSet, p->x.pSelect); + }else{ + mask |= exprListTableUsage(pMaskSet, p->x.pList); + } + return mask; +} +static Bitmask exprListTableUsage(WhereMaskSet *pMaskSet, ExprList *pList){ + int i; + Bitmask mask = 0; + if( pList ){ + for(i=0; inExpr; i++){ + mask |= exprTableUsage(pMaskSet, pList->a[i].pExpr); + } + } + return mask; +} +static Bitmask exprSelectTableUsage(WhereMaskSet *pMaskSet, Select *pS){ + Bitmask mask = 0; + while( pS ){ + SrcList *pSrc = pS->pSrc; + mask |= exprListTableUsage(pMaskSet, pS->pEList); + mask |= exprListTableUsage(pMaskSet, pS->pGroupBy); + mask |= exprListTableUsage(pMaskSet, pS->pOrderBy); + mask |= exprTableUsage(pMaskSet, pS->pWhere); + mask |= exprTableUsage(pMaskSet, pS->pHaving); + if( ALWAYS(pSrc!=0) ){ + int i; + for(i=0; inSrc; i++){ + mask |= exprSelectTableUsage(pMaskSet, pSrc->a[i].pSelect); + mask |= exprTableUsage(pMaskSet, pSrc->a[i].pOn); + } + } + pS = pS->pPrior; + } + return mask; +} + +/* +** Return TRUE if the given operator is one of the operators that is +** allowed for an indexable WHERE clause term. The allowed operators are +** "=", "<", ">", "<=", ">=", "IN", and "IS NULL" +*/ +static int allowedOp(int op){ + assert( TK_GT>TK_EQ && TK_GTTK_EQ && TK_LTTK_EQ && TK_LE=TK_EQ && op<=TK_GE) || op==TK_ISNULL; +} + +/* +** Swap two objects of type TYPE. +*/ +#define SWAP(TYPE,A,B) {TYPE t=A; A=B; B=t;} + +/* +** Commute a comparison operator. Expressions of the form "X op Y" +** are converted into "Y op X". +** +** If left/right precedence rules come into play when determining the +** collating sequence, then COLLATE operators are adjusted to ensure +** that the collating sequence does not change. For example: +** "Y collate NOCASE op X" becomes "X op Y" because any collation sequence on +** the left hand side of a comparison overrides any collation sequence +** attached to the right. For the same reason the EP_Collate flag +** is not commuted. +*/ +static void exprCommute(Parse *pParse, Expr *pExpr){ + u16 expRight = (pExpr->pRight->flags & EP_Collate); + u16 expLeft = (pExpr->pLeft->flags & EP_Collate); + assert( allowedOp(pExpr->op) && pExpr->op!=TK_IN ); + if( expRight==expLeft ){ + /* Either X and Y both have COLLATE operator or neither do */ + if( expRight ){ + /* Both X and Y have COLLATE operators. Make sure X is always + ** used by clearing the EP_Collate flag from Y. */ + pExpr->pRight->flags &= ~EP_Collate; + }else if( sqlite3ExprCollSeq(pParse, pExpr->pLeft)!=0 ){ + /* Neither X nor Y have COLLATE operators, but X has a non-default + ** collating sequence. So add the EP_Collate marker on X to cause + ** it to be searched first. */ + pExpr->pLeft->flags |= EP_Collate; + } + } + SWAP(Expr*,pExpr->pRight,pExpr->pLeft); + if( pExpr->op>=TK_GT ){ + assert( TK_LT==TK_GT+2 ); + assert( TK_GE==TK_LE+2 ); + assert( TK_GT>TK_EQ ); + assert( TK_GTop>=TK_GT && pExpr->op<=TK_GE ); + pExpr->op = ((pExpr->op-TK_GT)^2)+TK_GT; + } +} + +/* +** Translate from TK_xx operator to WO_xx bitmask. +*/ +static u16 operatorMask(int op){ + u16 c; + assert( allowedOp(op) ); + if( op==TK_IN ){ + c = WO_IN; + }else if( op==TK_ISNULL ){ + c = WO_ISNULL; + }else{ + assert( (WO_EQ<<(op-TK_EQ)) < 0x7fff ); + c = (u16)(WO_EQ<<(op-TK_EQ)); + } + assert( op!=TK_ISNULL || c==WO_ISNULL ); + assert( op!=TK_IN || c==WO_IN ); + assert( op!=TK_EQ || c==WO_EQ ); + assert( op!=TK_LT || c==WO_LT ); + assert( op!=TK_LE || c==WO_LE ); + assert( op!=TK_GT || c==WO_GT ); + assert( op!=TK_GE || c==WO_GE ); + return c; +} + +/* +** Advance to the next WhereTerm that matches according to the criteria +** established when the pScan object was initialized by whereScanInit(). +** Return NULL if there are no more matching WhereTerms. +*/ +static WhereTerm *whereScanNext(WhereScan *pScan){ + int iCur; /* The cursor on the LHS of the term */ + int iColumn; /* The column on the LHS of the term. -1 for IPK */ + Expr *pX; /* An expression being tested */ + WhereClause *pWC; /* Shorthand for pScan->pWC */ + WhereTerm *pTerm; /* The term being tested */ + int k = pScan->k; /* Where to start scanning */ + + while( pScan->iEquiv<=pScan->nEquiv ){ + iCur = pScan->aEquiv[pScan->iEquiv-2]; + iColumn = pScan->aEquiv[pScan->iEquiv-1]; + while( (pWC = pScan->pWC)!=0 ){ + for(pTerm=pWC->a+k; knTerm; k++, pTerm++){ + if( pTerm->leftCursor==iCur + && pTerm->u.leftColumn==iColumn + && (pScan->iEquiv<=2 || !ExprHasProperty(pTerm->pExpr, EP_FromJoin)) + ){ + if( (pTerm->eOperator & WO_EQUIV)!=0 + && pScan->nEquivaEquiv) + ){ + int j; + pX = sqlite3ExprSkipCollate(pTerm->pExpr->pRight); + assert( pX->op==TK_COLUMN ); + for(j=0; jnEquiv; j+=2){ + if( pScan->aEquiv[j]==pX->iTable + && pScan->aEquiv[j+1]==pX->iColumn ){ + break; + } + } + if( j==pScan->nEquiv ){ + pScan->aEquiv[j] = pX->iTable; + pScan->aEquiv[j+1] = pX->iColumn; + pScan->nEquiv += 2; + } + } + if( (pTerm->eOperator & pScan->opMask)!=0 ){ + /* Verify the affinity and collating sequence match */ + if( pScan->zCollName && (pTerm->eOperator & WO_ISNULL)==0 ){ + CollSeq *pColl; + Parse *pParse = pWC->pWInfo->pParse; + pX = pTerm->pExpr; + if( !sqlite3IndexAffinityOk(pX, pScan->idxaff) ){ + continue; + } + assert(pX->pLeft); + pColl = sqlite3BinaryCompareCollSeq(pParse, + pX->pLeft, pX->pRight); + if( pColl==0 ) pColl = pParse->db->pDfltColl; + if( sqlite3StrICmp(pColl->zName, pScan->zCollName) ){ + continue; + } + } + if( (pTerm->eOperator & WO_EQ)!=0 + && (pX = pTerm->pExpr->pRight)->op==TK_COLUMN + && pX->iTable==pScan->aEquiv[0] + && pX->iColumn==pScan->aEquiv[1] + ){ + continue; + } + pScan->k = k+1; + return pTerm; + } + } + } + pScan->pWC = pScan->pWC->pOuter; + k = 0; + } + pScan->pWC = pScan->pOrigWC; + k = 0; + pScan->iEquiv += 2; + } + return 0; +} + +/* +** Initialize a WHERE clause scanner object. Return a pointer to the +** first match. Return NULL if there are no matches. +** +** The scanner will be searching the WHERE clause pWC. It will look +** for terms of the form "X " where X is column iColumn of table +** iCur. The must be one of the operators described by opMask. +** +** If the search is for X and the WHERE clause contains terms of the +** form X=Y then this routine might also return terms of the form +** "Y ". The number of levels of transitivity is limited, +** but is enough to handle most commonly occurring SQL statements. +** +** If X is not the INTEGER PRIMARY KEY then X must be compatible with +** index pIdx. +*/ +static WhereTerm *whereScanInit( + WhereScan *pScan, /* The WhereScan object being initialized */ + WhereClause *pWC, /* The WHERE clause to be scanned */ + int iCur, /* Cursor to scan for */ + int iColumn, /* Column to scan for */ + u32 opMask, /* Operator(s) to scan for */ + Index *pIdx /* Must be compatible with this index */ +){ + int j; + + /* memset(pScan, 0, sizeof(*pScan)); */ + pScan->pOrigWC = pWC; + pScan->pWC = pWC; + if( pIdx && iColumn>=0 ){ + pScan->idxaff = pIdx->pTable->aCol[iColumn].affinity; + for(j=0; pIdx->aiColumn[j]!=iColumn; j++){ + if( NEVER(j>=pIdx->nKeyCol) ) return 0; + } + pScan->zCollName = pIdx->azColl[j]; + }else{ + pScan->idxaff = 0; + pScan->zCollName = 0; + } + pScan->opMask = opMask; + pScan->k = 0; + pScan->aEquiv[0] = iCur; + pScan->aEquiv[1] = iColumn; + pScan->nEquiv = 2; + pScan->iEquiv = 2; + return whereScanNext(pScan); +} + +/* +** Search for a term in the WHERE clause that is of the form "X " +** where X is a reference to the iColumn of table iCur and is one of +** the WO_xx operator codes specified by the op parameter. +** Return a pointer to the term. Return 0 if not found. +** +** The term returned might by Y= if there is another constraint in +** the WHERE clause that specifies that X=Y. Any such constraints will be +** identified by the WO_EQUIV bit in the pTerm->eOperator field. The +** aEquiv[] array holds X and all its equivalents, with each SQL variable +** taking up two slots in aEquiv[]. The first slot is for the cursor number +** and the second is for the column number. There are 22 slots in aEquiv[] +** so that means we can look for X plus up to 10 other equivalent values. +** Hence a search for X will return if X=A1 and A1=A2 and A2=A3 +** and ... and A9=A10 and A10=. +** +** If there are multiple terms in the WHERE clause of the form "X " +** then try for the one with no dependencies on - in other words where +** is a constant expression of some kind. Only return entries of +** the form "X Y" where Y is a column in another table if no terms of +** the form "X " exist. If no terms with a constant RHS +** exist, try to return a term that does not use WO_EQUIV. +*/ +static WhereTerm *findTerm( + WhereClause *pWC, /* The WHERE clause to be searched */ + int iCur, /* Cursor number of LHS */ + int iColumn, /* Column number of LHS */ + Bitmask notReady, /* RHS must not overlap with this mask */ + u32 op, /* Mask of WO_xx values describing operator */ + Index *pIdx /* Must be compatible with this index, if not NULL */ +){ + WhereTerm *pResult = 0; + WhereTerm *p; + WhereScan scan; + + p = whereScanInit(&scan, pWC, iCur, iColumn, op, pIdx); + while( p ){ + if( (p->prereqRight & notReady)==0 ){ + if( p->prereqRight==0 && (p->eOperator&WO_EQ)!=0 ){ + return p; + } + if( pResult==0 ) pResult = p; + } + p = whereScanNext(&scan); + } + return pResult; +} + +/* Forward reference */ +static void exprAnalyze(SrcList*, WhereClause*, int); + +/* +** Call exprAnalyze on all terms in a WHERE clause. +*/ +static void exprAnalyzeAll( + SrcList *pTabList, /* the FROM clause */ + WhereClause *pWC /* the WHERE clause to be analyzed */ +){ + int i; + for(i=pWC->nTerm-1; i>=0; i--){ + exprAnalyze(pTabList, pWC, i); + } +} + +#ifndef SQLITE_OMIT_LIKE_OPTIMIZATION +/* +** Check to see if the given expression is a LIKE or GLOB operator that +** can be optimized using inequality constraints. Return TRUE if it is +** so and false if not. +** +** In order for the operator to be optimizible, the RHS must be a string +** literal that does not begin with a wildcard. +*/ +static int isLikeOrGlob( + Parse *pParse, /* Parsing and code generating context */ + Expr *pExpr, /* Test this expression */ + Expr **ppPrefix, /* Pointer to TK_STRING expression with pattern prefix */ + int *pisComplete, /* True if the only wildcard is % in the last character */ + int *pnoCase /* True if uppercase is equivalent to lowercase */ +){ + const char *z = 0; /* String on RHS of LIKE operator */ + Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ + ExprList *pList; /* List of operands to the LIKE operator */ + int c; /* One character in z[] */ + int cnt; /* Number of non-wildcard prefix characters */ + char wc[3]; /* Wildcard characters */ + sqlite3 *db = pParse->db; /* Database connection */ + sqlite3_value *pVal = 0; + int op; /* Opcode of pRight */ + + if( !sqlite3IsLikeFunction(db, pExpr, pnoCase, wc) ){ + return 0; + } +#ifdef SQLITE_EBCDIC + if( *pnoCase ) return 0; +#endif + pList = pExpr->x.pList; + pLeft = pList->a[1].pExpr; + if( pLeft->op!=TK_COLUMN + || sqlite3ExprAffinity(pLeft)!=SQLITE_AFF_TEXT + || IsVirtual(pLeft->pTab) + ){ + /* IMP: R-02065-49465 The left-hand side of the LIKE or GLOB operator must + ** be the name of an indexed column with TEXT affinity. */ + return 0; + } + assert( pLeft->iColumn!=(-1) ); /* Because IPK never has AFF_TEXT */ + + pRight = sqlite3ExprSkipCollate(pList->a[0].pExpr); + op = pRight->op; + if( op==TK_VARIABLE ){ + Vdbe *pReprepare = pParse->pReprepare; + int iCol = pRight->iColumn; + pVal = sqlite3VdbeGetBoundValue(pReprepare, iCol, SQLITE_AFF_NONE); + if( pVal && sqlite3_value_type(pVal)==SQLITE_TEXT ){ + z = (char *)sqlite3_value_text(pVal); + } + sqlite3VdbeSetVarmask(pParse->pVdbe, iCol); + assert( pRight->op==TK_VARIABLE || pRight->op==TK_REGISTER ); + }else if( op==TK_STRING ){ + z = pRight->u.zToken; + } + if( z ){ + cnt = 0; + while( (c=z[cnt])!=0 && c!=wc[0] && c!=wc[1] && c!=wc[2] ){ + cnt++; + } + if( cnt!=0 && 255!=(u8)z[cnt-1] ){ + Expr *pPrefix; + *pisComplete = c==wc[0] && z[cnt+1]==0; + pPrefix = sqlite3Expr(db, TK_STRING, z); + if( pPrefix ) pPrefix->u.zToken[cnt] = 0; + *ppPrefix = pPrefix; + if( op==TK_VARIABLE ){ + Vdbe *v = pParse->pVdbe; + sqlite3VdbeSetVarmask(v, pRight->iColumn); + if( *pisComplete && pRight->u.zToken[1] ){ + /* If the rhs of the LIKE expression is a variable, and the current + ** value of the variable means there is no need to invoke the LIKE + ** function, then no OP_Variable will be added to the program. + ** This causes problems for the sqlite3_bind_parameter_name() + ** API. To workaround them, add a dummy OP_Variable here. + */ + int r1 = sqlite3GetTempReg(pParse); + sqlite3ExprCodeTarget(pParse, pRight, r1); + sqlite3VdbeChangeP3(v, sqlite3VdbeCurrentAddr(v)-1, 0); + sqlite3ReleaseTempReg(pParse, r1); + } + } + }else{ + z = 0; + } + } + + sqlite3ValueFree(pVal); + return (z!=0); +} +#endif /* SQLITE_OMIT_LIKE_OPTIMIZATION */ + + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* +** Check to see if the given expression is of the form +** +** column MATCH expr +** +** If it is then return TRUE. If not, return FALSE. +*/ +static int isMatchOfColumn( + Expr *pExpr /* Test this expression */ +){ + ExprList *pList; + + if( pExpr->op!=TK_FUNCTION ){ + return 0; + } + if( sqlite3StrICmp(pExpr->u.zToken,"match")!=0 ){ + return 0; + } + pList = pExpr->x.pList; + if( pList->nExpr!=2 ){ + return 0; + } + if( pList->a[1].pExpr->op != TK_COLUMN ){ + return 0; + } + return 1; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +/* +** If the pBase expression originated in the ON or USING clause of +** a join, then transfer the appropriate markings over to derived. +*/ +static void transferJoinMarkings(Expr *pDerived, Expr *pBase){ + if( pDerived ){ + pDerived->flags |= pBase->flags & EP_FromJoin; + pDerived->iRightJoinTable = pBase->iRightJoinTable; + } +} + +#if !defined(SQLITE_OMIT_OR_OPTIMIZATION) && !defined(SQLITE_OMIT_SUBQUERY) +/* +** Analyze a term that consists of two or more OR-connected +** subterms. So in: +** +** ... WHERE (a=5) AND (b=7 OR c=9 OR d=13) AND (d=13) +** ^^^^^^^^^^^^^^^^^^^^ +** +** This routine analyzes terms such as the middle term in the above example. +** A WhereOrTerm object is computed and attached to the term under +** analysis, regardless of the outcome of the analysis. Hence: +** +** WhereTerm.wtFlags |= TERM_ORINFO +** WhereTerm.u.pOrInfo = a dynamically allocated WhereOrTerm object +** +** The term being analyzed must have two or more of OR-connected subterms. +** A single subterm might be a set of AND-connected sub-subterms. +** Examples of terms under analysis: +** +** (A) t1.x=t2.y OR t1.x=t2.z OR t1.y=15 OR t1.z=t3.a+5 +** (B) x=expr1 OR expr2=x OR x=expr3 +** (C) t1.x=t2.y OR (t1.x=t2.z AND t1.y=15) +** (D) x=expr1 OR (y>11 AND y<22 AND z LIKE '*hello*') +** (E) (p.a=1 AND q.b=2 AND r.c=3) OR (p.x=4 AND q.y=5 AND r.z=6) +** +** CASE 1: +** +** If all subterms are of the form T.C=expr for some single column of C and +** a single table T (as shown in example B above) then create a new virtual +** term that is an equivalent IN expression. In other words, if the term +** being analyzed is: +** +** x = expr1 OR expr2 = x OR x = expr3 +** +** then create a new virtual term like this: +** +** x IN (expr1,expr2,expr3) +** +** CASE 2: +** +** If all subterms are indexable by a single table T, then set +** +** WhereTerm.eOperator = WO_OR +** WhereTerm.u.pOrInfo->indexable |= the cursor number for table T +** +** A subterm is "indexable" if it is of the form +** "T.C " where C is any column of table T and +** is one of "=", "<", "<=", ">", ">=", "IS NULL", or "IN". +** A subterm is also indexable if it is an AND of two or more +** subsubterms at least one of which is indexable. Indexable AND +** subterms have their eOperator set to WO_AND and they have +** u.pAndInfo set to a dynamically allocated WhereAndTerm object. +** +** From another point of view, "indexable" means that the subterm could +** potentially be used with an index if an appropriate index exists. +** This analysis does not consider whether or not the index exists; that +** is decided elsewhere. This analysis only looks at whether subterms +** appropriate for indexing exist. +** +** All examples A through E above satisfy case 2. But if a term +** also statisfies case 1 (such as B) we know that the optimizer will +** always prefer case 1, so in that case we pretend that case 2 is not +** satisfied. +** +** It might be the case that multiple tables are indexable. For example, +** (E) above is indexable on tables P, Q, and R. +** +** Terms that satisfy case 2 are candidates for lookup by using +** separate indices to find rowids for each subterm and composing +** the union of all rowids using a RowSet object. This is similar +** to "bitmap indices" in other database engines. +** +** OTHERWISE: +** +** If neither case 1 nor case 2 apply, then leave the eOperator set to +** zero. This term is not useful for search. +*/ +static void exprAnalyzeOrTerm( + SrcList *pSrc, /* the FROM clause */ + WhereClause *pWC, /* the complete WHERE clause */ + int idxTerm /* Index of the OR-term to be analyzed */ +){ + WhereInfo *pWInfo = pWC->pWInfo; /* WHERE clause processing context */ + Parse *pParse = pWInfo->pParse; /* Parser context */ + sqlite3 *db = pParse->db; /* Database connection */ + WhereTerm *pTerm = &pWC->a[idxTerm]; /* The term to be analyzed */ + Expr *pExpr = pTerm->pExpr; /* The expression of the term */ + int i; /* Loop counters */ + WhereClause *pOrWc; /* Breakup of pTerm into subterms */ + WhereTerm *pOrTerm; /* A Sub-term within the pOrWc */ + WhereOrInfo *pOrInfo; /* Additional information associated with pTerm */ + Bitmask chngToIN; /* Tables that might satisfy case 1 */ + Bitmask indexable; /* Tables that are indexable, satisfying case 2 */ + + /* + ** Break the OR clause into its separate subterms. The subterms are + ** stored in a WhereClause structure containing within the WhereOrInfo + ** object that is attached to the original OR clause term. + */ + assert( (pTerm->wtFlags & (TERM_DYNAMIC|TERM_ORINFO|TERM_ANDINFO))==0 ); + assert( pExpr->op==TK_OR ); + pTerm->u.pOrInfo = pOrInfo = sqlite3DbMallocZero(db, sizeof(*pOrInfo)); + if( pOrInfo==0 ) return; + pTerm->wtFlags |= TERM_ORINFO; + pOrWc = &pOrInfo->wc; + whereClauseInit(pOrWc, pWInfo); + whereSplit(pOrWc, pExpr, TK_OR); + exprAnalyzeAll(pSrc, pOrWc); + if( db->mallocFailed ) return; + assert( pOrWc->nTerm>=2 ); + + /* + ** Compute the set of tables that might satisfy cases 1 or 2. + */ + indexable = ~(Bitmask)0; + chngToIN = ~(Bitmask)0; + for(i=pOrWc->nTerm-1, pOrTerm=pOrWc->a; i>=0 && indexable; i--, pOrTerm++){ + if( (pOrTerm->eOperator & WO_SINGLE)==0 ){ + WhereAndInfo *pAndInfo; + assert( (pOrTerm->wtFlags & (TERM_ANDINFO|TERM_ORINFO))==0 ); + chngToIN = 0; + pAndInfo = sqlite3DbMallocRaw(db, sizeof(*pAndInfo)); + if( pAndInfo ){ + WhereClause *pAndWC; + WhereTerm *pAndTerm; + int j; + Bitmask b = 0; + pOrTerm->u.pAndInfo = pAndInfo; + pOrTerm->wtFlags |= TERM_ANDINFO; + pOrTerm->eOperator = WO_AND; + pAndWC = &pAndInfo->wc; + whereClauseInit(pAndWC, pWC->pWInfo); + whereSplit(pAndWC, pOrTerm->pExpr, TK_AND); + exprAnalyzeAll(pSrc, pAndWC); + pAndWC->pOuter = pWC; + testcase( db->mallocFailed ); + if( !db->mallocFailed ){ + for(j=0, pAndTerm=pAndWC->a; jnTerm; j++, pAndTerm++){ + assert( pAndTerm->pExpr ); + if( allowedOp(pAndTerm->pExpr->op) ){ + b |= getMask(&pWInfo->sMaskSet, pAndTerm->leftCursor); + } + } + } + indexable &= b; + } + }else if( pOrTerm->wtFlags & TERM_COPIED ){ + /* Skip this term for now. We revisit it when we process the + ** corresponding TERM_VIRTUAL term */ + }else{ + Bitmask b; + b = getMask(&pWInfo->sMaskSet, pOrTerm->leftCursor); + if( pOrTerm->wtFlags & TERM_VIRTUAL ){ + WhereTerm *pOther = &pOrWc->a[pOrTerm->iParent]; + b |= getMask(&pWInfo->sMaskSet, pOther->leftCursor); + } + indexable &= b; + if( (pOrTerm->eOperator & WO_EQ)==0 ){ + chngToIN = 0; + }else{ + chngToIN &= b; + } + } + } + + /* + ** Record the set of tables that satisfy case 2. The set might be + ** empty. + */ + pOrInfo->indexable = indexable; + pTerm->eOperator = indexable==0 ? 0 : WO_OR; + + /* + ** chngToIN holds a set of tables that *might* satisfy case 1. But + ** we have to do some additional checking to see if case 1 really + ** is satisfied. + ** + ** chngToIN will hold either 0, 1, or 2 bits. The 0-bit case means + ** that there is no possibility of transforming the OR clause into an + ** IN operator because one or more terms in the OR clause contain + ** something other than == on a column in the single table. The 1-bit + ** case means that every term of the OR clause is of the form + ** "table.column=expr" for some single table. The one bit that is set + ** will correspond to the common table. We still need to check to make + ** sure the same column is used on all terms. The 2-bit case is when + ** the all terms are of the form "table1.column=table2.column". It + ** might be possible to form an IN operator with either table1.column + ** or table2.column as the LHS if either is common to every term of + ** the OR clause. + ** + ** Note that terms of the form "table.column1=table.column2" (the + ** same table on both sizes of the ==) cannot be optimized. + */ + if( chngToIN ){ + int okToChngToIN = 0; /* True if the conversion to IN is valid */ + int iColumn = -1; /* Column index on lhs of IN operator */ + int iCursor = -1; /* Table cursor common to all terms */ + int j = 0; /* Loop counter */ + + /* Search for a table and column that appears on one side or the + ** other of the == operator in every subterm. That table and column + ** will be recorded in iCursor and iColumn. There might not be any + ** such table and column. Set okToChngToIN if an appropriate table + ** and column is found but leave okToChngToIN false if not found. + */ + for(j=0; j<2 && !okToChngToIN; j++){ + pOrTerm = pOrWc->a; + for(i=pOrWc->nTerm-1; i>=0; i--, pOrTerm++){ + assert( pOrTerm->eOperator & WO_EQ ); + pOrTerm->wtFlags &= ~TERM_OR_OK; + if( pOrTerm->leftCursor==iCursor ){ + /* This is the 2-bit case and we are on the second iteration and + ** current term is from the first iteration. So skip this term. */ + assert( j==1 ); + continue; + } + if( (chngToIN & getMask(&pWInfo->sMaskSet, pOrTerm->leftCursor))==0 ){ + /* This term must be of the form t1.a==t2.b where t2 is in the + ** chngToIN set but t1 is not. This term will be either preceeded + ** or follwed by an inverted copy (t2.b==t1.a). Skip this term + ** and use its inversion. */ + testcase( pOrTerm->wtFlags & TERM_COPIED ); + testcase( pOrTerm->wtFlags & TERM_VIRTUAL ); + assert( pOrTerm->wtFlags & (TERM_COPIED|TERM_VIRTUAL) ); + continue; + } + iColumn = pOrTerm->u.leftColumn; + iCursor = pOrTerm->leftCursor; + break; + } + if( i<0 ){ + /* No candidate table+column was found. This can only occur + ** on the second iteration */ + assert( j==1 ); + assert( IsPowerOfTwo(chngToIN) ); + assert( chngToIN==getMask(&pWInfo->sMaskSet, iCursor) ); + break; + } + testcase( j==1 ); + + /* We have found a candidate table and column. Check to see if that + ** table and column is common to every term in the OR clause */ + okToChngToIN = 1; + for(; i>=0 && okToChngToIN; i--, pOrTerm++){ + assert( pOrTerm->eOperator & WO_EQ ); + if( pOrTerm->leftCursor!=iCursor ){ + pOrTerm->wtFlags &= ~TERM_OR_OK; + }else if( pOrTerm->u.leftColumn!=iColumn ){ + okToChngToIN = 0; + }else{ + int affLeft, affRight; + /* If the right-hand side is also a column, then the affinities + ** of both right and left sides must be such that no type + ** conversions are required on the right. (Ticket #2249) + */ + affRight = sqlite3ExprAffinity(pOrTerm->pExpr->pRight); + affLeft = sqlite3ExprAffinity(pOrTerm->pExpr->pLeft); + if( affRight!=0 && affRight!=affLeft ){ + okToChngToIN = 0; + }else{ + pOrTerm->wtFlags |= TERM_OR_OK; + } + } + } + } + + /* At this point, okToChngToIN is true if original pTerm satisfies + ** case 1. In that case, construct a new virtual term that is + ** pTerm converted into an IN operator. + */ + if( okToChngToIN ){ + Expr *pDup; /* A transient duplicate expression */ + ExprList *pList = 0; /* The RHS of the IN operator */ + Expr *pLeft = 0; /* The LHS of the IN operator */ + Expr *pNew; /* The complete IN operator */ + + for(i=pOrWc->nTerm-1, pOrTerm=pOrWc->a; i>=0; i--, pOrTerm++){ + if( (pOrTerm->wtFlags & TERM_OR_OK)==0 ) continue; + assert( pOrTerm->eOperator & WO_EQ ); + assert( pOrTerm->leftCursor==iCursor ); + assert( pOrTerm->u.leftColumn==iColumn ); + pDup = sqlite3ExprDup(db, pOrTerm->pExpr->pRight, 0); + pList = sqlite3ExprListAppend(pWInfo->pParse, pList, pDup); + pLeft = pOrTerm->pExpr->pLeft; + } + assert( pLeft!=0 ); + pDup = sqlite3ExprDup(db, pLeft, 0); + pNew = sqlite3PExpr(pParse, TK_IN, pDup, 0, 0); + if( pNew ){ + int idxNew; + transferJoinMarkings(pNew, pExpr); + assert( !ExprHasProperty(pNew, EP_xIsSelect) ); + pNew->x.pList = pList; + idxNew = whereClauseInsert(pWC, pNew, TERM_VIRTUAL|TERM_DYNAMIC); + testcase( idxNew==0 ); + exprAnalyze(pSrc, pWC, idxNew); + pTerm = &pWC->a[idxTerm]; + pWC->a[idxNew].iParent = idxTerm; + pTerm->nChild = 1; + }else{ + sqlite3ExprListDelete(db, pList); + } + pTerm->eOperator = WO_NOOP; /* case 1 trumps case 2 */ + } + } +} +#endif /* !SQLITE_OMIT_OR_OPTIMIZATION && !SQLITE_OMIT_SUBQUERY */ + +/* +** The input to this routine is an WhereTerm structure with only the +** "pExpr" field filled in. The job of this routine is to analyze the +** subexpression and populate all the other fields of the WhereTerm +** structure. +** +** If the expression is of the form " X" it gets commuted +** to the standard form of "X ". +** +** If the expression is of the form "X Y" where both X and Y are +** columns, then the original expression is unchanged and a new virtual +** term of the form "Y X" is added to the WHERE clause and +** analyzed separately. The original term is marked with TERM_COPIED +** and the new term is marked with TERM_DYNAMIC (because it's pExpr +** needs to be freed with the WhereClause) and TERM_VIRTUAL (because it +** is a commuted copy of a prior term.) The original term has nChild=1 +** and the copy has idxParent set to the index of the original term. +*/ +static void exprAnalyze( + SrcList *pSrc, /* the FROM clause */ + WhereClause *pWC, /* the WHERE clause */ + int idxTerm /* Index of the term to be analyzed */ +){ + WhereInfo *pWInfo = pWC->pWInfo; /* WHERE clause processing context */ + WhereTerm *pTerm; /* The term to be analyzed */ + WhereMaskSet *pMaskSet; /* Set of table index masks */ + Expr *pExpr; /* The expression to be analyzed */ + Bitmask prereqLeft; /* Prerequesites of the pExpr->pLeft */ + Bitmask prereqAll; /* Prerequesites of pExpr */ + Bitmask extraRight = 0; /* Extra dependencies on LEFT JOIN */ + Expr *pStr1 = 0; /* RHS of LIKE/GLOB operator */ + int isComplete = 0; /* RHS of LIKE/GLOB ends with wildcard */ + int noCase = 0; /* LIKE/GLOB distinguishes case */ + int op; /* Top-level operator. pExpr->op */ + Parse *pParse = pWInfo->pParse; /* Parsing context */ + sqlite3 *db = pParse->db; /* Database connection */ + + if( db->mallocFailed ){ + return; + } + pTerm = &pWC->a[idxTerm]; + pMaskSet = &pWInfo->sMaskSet; + pExpr = pTerm->pExpr; + assert( pExpr->op!=TK_AS && pExpr->op!=TK_COLLATE ); + prereqLeft = exprTableUsage(pMaskSet, pExpr->pLeft); + op = pExpr->op; + if( op==TK_IN ){ + assert( pExpr->pRight==0 ); + if( ExprHasProperty(pExpr, EP_xIsSelect) ){ + pTerm->prereqRight = exprSelectTableUsage(pMaskSet, pExpr->x.pSelect); + }else{ + pTerm->prereqRight = exprListTableUsage(pMaskSet, pExpr->x.pList); + } + }else if( op==TK_ISNULL ){ + pTerm->prereqRight = 0; + }else{ + pTerm->prereqRight = exprTableUsage(pMaskSet, pExpr->pRight); + } + prereqAll = exprTableUsage(pMaskSet, pExpr); + if( ExprHasProperty(pExpr, EP_FromJoin) ){ + Bitmask x = getMask(pMaskSet, pExpr->iRightJoinTable); + prereqAll |= x; + extraRight = x-1; /* ON clause terms may not be used with an index + ** on left table of a LEFT JOIN. Ticket #3015 */ + } + pTerm->prereqAll = prereqAll; + pTerm->leftCursor = -1; + pTerm->iParent = -1; + pTerm->eOperator = 0; + if( allowedOp(op) ){ + Expr *pLeft = sqlite3ExprSkipCollate(pExpr->pLeft); + Expr *pRight = sqlite3ExprSkipCollate(pExpr->pRight); + u16 opMask = (pTerm->prereqRight & prereqLeft)==0 ? WO_ALL : WO_EQUIV; + if( pLeft->op==TK_COLUMN ){ + pTerm->leftCursor = pLeft->iTable; + pTerm->u.leftColumn = pLeft->iColumn; + pTerm->eOperator = operatorMask(op) & opMask; + } + if( pRight && pRight->op==TK_COLUMN ){ + WhereTerm *pNew; + Expr *pDup; + u16 eExtraOp = 0; /* Extra bits for pNew->eOperator */ + if( pTerm->leftCursor>=0 ){ + int idxNew; + pDup = sqlite3ExprDup(db, pExpr, 0); + if( db->mallocFailed ){ + sqlite3ExprDelete(db, pDup); + return; + } + idxNew = whereClauseInsert(pWC, pDup, TERM_VIRTUAL|TERM_DYNAMIC); + if( idxNew==0 ) return; + pNew = &pWC->a[idxNew]; + pNew->iParent = idxTerm; + pTerm = &pWC->a[idxTerm]; + pTerm->nChild = 1; + pTerm->wtFlags |= TERM_COPIED; + if( pExpr->op==TK_EQ + && !ExprHasProperty(pExpr, EP_FromJoin) + && OptimizationEnabled(db, SQLITE_Transitive) + ){ + pTerm->eOperator |= WO_EQUIV; + eExtraOp = WO_EQUIV; + } + }else{ + pDup = pExpr; + pNew = pTerm; + } + exprCommute(pParse, pDup); + pLeft = sqlite3ExprSkipCollate(pDup->pLeft); + pNew->leftCursor = pLeft->iTable; + pNew->u.leftColumn = pLeft->iColumn; + testcase( (prereqLeft | extraRight) != prereqLeft ); + pNew->prereqRight = prereqLeft | extraRight; + pNew->prereqAll = prereqAll; + pNew->eOperator = (operatorMask(pDup->op) + eExtraOp) & opMask; + } + } + +#ifndef SQLITE_OMIT_BETWEEN_OPTIMIZATION + /* If a term is the BETWEEN operator, create two new virtual terms + ** that define the range that the BETWEEN implements. For example: + ** + ** a BETWEEN b AND c + ** + ** is converted into: + ** + ** (a BETWEEN b AND c) AND (a>=b) AND (a<=c) + ** + ** The two new terms are added onto the end of the WhereClause object. + ** The new terms are "dynamic" and are children of the original BETWEEN + ** term. That means that if the BETWEEN term is coded, the children are + ** skipped. Or, if the children are satisfied by an index, the original + ** BETWEEN term is skipped. + */ + else if( pExpr->op==TK_BETWEEN && pWC->op==TK_AND ){ + ExprList *pList = pExpr->x.pList; + int i; + static const u8 ops[] = {TK_GE, TK_LE}; + assert( pList!=0 ); + assert( pList->nExpr==2 ); + for(i=0; i<2; i++){ + Expr *pNewExpr; + int idxNew; + pNewExpr = sqlite3PExpr(pParse, ops[i], + sqlite3ExprDup(db, pExpr->pLeft, 0), + sqlite3ExprDup(db, pList->a[i].pExpr, 0), 0); + transferJoinMarkings(pNewExpr, pExpr); + idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC); + testcase( idxNew==0 ); + exprAnalyze(pSrc, pWC, idxNew); + pTerm = &pWC->a[idxTerm]; + pWC->a[idxNew].iParent = idxTerm; + } + pTerm->nChild = 2; + } +#endif /* SQLITE_OMIT_BETWEEN_OPTIMIZATION */ + +#if !defined(SQLITE_OMIT_OR_OPTIMIZATION) && !defined(SQLITE_OMIT_SUBQUERY) + /* Analyze a term that is composed of two or more subterms connected by + ** an OR operator. + */ + else if( pExpr->op==TK_OR ){ + assert( pWC->op==TK_AND ); + exprAnalyzeOrTerm(pSrc, pWC, idxTerm); + pTerm = &pWC->a[idxTerm]; + } +#endif /* SQLITE_OMIT_OR_OPTIMIZATION */ + +#ifndef SQLITE_OMIT_LIKE_OPTIMIZATION + /* Add constraints to reduce the search space on a LIKE or GLOB + ** operator. + ** + ** A like pattern of the form "x LIKE 'abc%'" is changed into constraints + ** + ** x>='abc' AND x<'abd' AND x LIKE 'abc%' + ** + ** The last character of the prefix "abc" is incremented to form the + ** termination condition "abd". + */ + if( pWC->op==TK_AND + && isLikeOrGlob(pParse, pExpr, &pStr1, &isComplete, &noCase) + ){ + Expr *pLeft; /* LHS of LIKE/GLOB operator */ + Expr *pStr2; /* Copy of pStr1 - RHS of LIKE/GLOB operator */ + Expr *pNewExpr1; + Expr *pNewExpr2; + int idxNew1; + int idxNew2; + Token sCollSeqName; /* Name of collating sequence */ + + pLeft = pExpr->x.pList->a[1].pExpr; + pStr2 = sqlite3ExprDup(db, pStr1, 0); + if( !db->mallocFailed ){ + u8 c, *pC; /* Last character before the first wildcard */ + pC = (u8*)&pStr2->u.zToken[sqlite3Strlen30(pStr2->u.zToken)-1]; + c = *pC; + if( noCase ){ + /* The point is to increment the last character before the first + ** wildcard. But if we increment '@', that will push it into the + ** alphabetic range where case conversions will mess up the + ** inequality. To avoid this, make sure to also run the full + ** LIKE on all candidate expressions by clearing the isComplete flag + */ + if( c=='A'-1 ) isComplete = 0; + c = sqlite3UpperToLower[c]; + } + *pC = c + 1; + } + sCollSeqName.z = noCase ? "NOCASE" : "BINARY"; + sCollSeqName.n = 6; + pNewExpr1 = sqlite3ExprDup(db, pLeft, 0); + pNewExpr1 = sqlite3PExpr(pParse, TK_GE, + sqlite3ExprAddCollateToken(pParse,pNewExpr1,&sCollSeqName), + pStr1, 0); + transferJoinMarkings(pNewExpr1, pExpr); + idxNew1 = whereClauseInsert(pWC, pNewExpr1, TERM_VIRTUAL|TERM_DYNAMIC); + testcase( idxNew1==0 ); + exprAnalyze(pSrc, pWC, idxNew1); + pNewExpr2 = sqlite3ExprDup(db, pLeft, 0); + pNewExpr2 = sqlite3PExpr(pParse, TK_LT, + sqlite3ExprAddCollateToken(pParse,pNewExpr2,&sCollSeqName), + pStr2, 0); + transferJoinMarkings(pNewExpr2, pExpr); + idxNew2 = whereClauseInsert(pWC, pNewExpr2, TERM_VIRTUAL|TERM_DYNAMIC); + testcase( idxNew2==0 ); + exprAnalyze(pSrc, pWC, idxNew2); + pTerm = &pWC->a[idxTerm]; + if( isComplete ){ + pWC->a[idxNew1].iParent = idxTerm; + pWC->a[idxNew2].iParent = idxTerm; + pTerm->nChild = 2; + } + } +#endif /* SQLITE_OMIT_LIKE_OPTIMIZATION */ + +#ifndef SQLITE_OMIT_VIRTUALTABLE + /* Add a WO_MATCH auxiliary term to the constraint set if the + ** current expression is of the form: column MATCH expr. + ** This information is used by the xBestIndex methods of + ** virtual tables. The native query optimizer does not attempt + ** to do anything with MATCH functions. + */ + if( isMatchOfColumn(pExpr) ){ + int idxNew; + Expr *pRight, *pLeft; + WhereTerm *pNewTerm; + Bitmask prereqColumn, prereqExpr; + + pRight = pExpr->x.pList->a[0].pExpr; + pLeft = pExpr->x.pList->a[1].pExpr; + prereqExpr = exprTableUsage(pMaskSet, pRight); + prereqColumn = exprTableUsage(pMaskSet, pLeft); + if( (prereqExpr & prereqColumn)==0 ){ + Expr *pNewExpr; + pNewExpr = sqlite3PExpr(pParse, TK_MATCH, + 0, sqlite3ExprDup(db, pRight, 0), 0); + idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC); + testcase( idxNew==0 ); + pNewTerm = &pWC->a[idxNew]; + pNewTerm->prereqRight = prereqExpr; + pNewTerm->leftCursor = pLeft->iTable; + pNewTerm->u.leftColumn = pLeft->iColumn; + pNewTerm->eOperator = WO_MATCH; + pNewTerm->iParent = idxTerm; + pTerm = &pWC->a[idxTerm]; + pTerm->nChild = 1; + pTerm->wtFlags |= TERM_COPIED; + pNewTerm->prereqAll = pTerm->prereqAll; + } + } +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + /* When sqlite_stat3 histogram data is available an operator of the + ** form "x IS NOT NULL" can sometimes be evaluated more efficiently + ** as "x>NULL" if x is not an INTEGER PRIMARY KEY. So construct a + ** virtual term of that form. + ** + ** Note that the virtual term must be tagged with TERM_VNULL. This + ** TERM_VNULL tag will suppress the not-null check at the beginning + ** of the loop. Without the TERM_VNULL flag, the not-null check at + ** the start of the loop will prevent any results from being returned. + */ + if( pExpr->op==TK_NOTNULL + && pExpr->pLeft->op==TK_COLUMN + && pExpr->pLeft->iColumn>=0 + && OptimizationEnabled(db, SQLITE_Stat3) + ){ + Expr *pNewExpr; + Expr *pLeft = pExpr->pLeft; + int idxNew; + WhereTerm *pNewTerm; + + pNewExpr = sqlite3PExpr(pParse, TK_GT, + sqlite3ExprDup(db, pLeft, 0), + sqlite3PExpr(pParse, TK_NULL, 0, 0, 0), 0); + + idxNew = whereClauseInsert(pWC, pNewExpr, + TERM_VIRTUAL|TERM_DYNAMIC|TERM_VNULL); + if( idxNew ){ + pNewTerm = &pWC->a[idxNew]; + pNewTerm->prereqRight = 0; + pNewTerm->leftCursor = pLeft->iTable; + pNewTerm->u.leftColumn = pLeft->iColumn; + pNewTerm->eOperator = WO_GT; + pNewTerm->iParent = idxTerm; + pTerm = &pWC->a[idxTerm]; + pTerm->nChild = 1; + pTerm->wtFlags |= TERM_COPIED; + pNewTerm->prereqAll = pTerm->prereqAll; + } + } +#endif /* SQLITE_ENABLE_STAT3_OR_STAT4 */ + + /* Prevent ON clause terms of a LEFT JOIN from being used to drive + ** an index for tables to the left of the join. + */ + pTerm->prereqRight |= extraRight; +} + +/* +** This function searches pList for a entry that matches the iCol-th column +** of index pIdx. +** +** If such an expression is found, its index in pList->a[] is returned. If +** no expression is found, -1 is returned. +*/ +static int findIndexCol( + Parse *pParse, /* Parse context */ + ExprList *pList, /* Expression list to search */ + int iBase, /* Cursor for table associated with pIdx */ + Index *pIdx, /* Index to match column of */ + int iCol /* Column of index to match */ +){ + int i; + const char *zColl = pIdx->azColl[iCol]; + + for(i=0; inExpr; i++){ + Expr *p = sqlite3ExprSkipCollate(pList->a[i].pExpr); + if( p->op==TK_COLUMN + && p->iColumn==pIdx->aiColumn[iCol] + && p->iTable==iBase + ){ + CollSeq *pColl = sqlite3ExprCollSeq(pParse, pList->a[i].pExpr); + if( ALWAYS(pColl) && 0==sqlite3StrICmp(pColl->zName, zColl) ){ + return i; + } + } + } + + return -1; +} + +/* +** Return true if the DISTINCT expression-list passed as the third argument +** is redundant. +** +** A DISTINCT list is redundant if the database contains some subset of +** columns that are unique and non-null. +*/ +static int isDistinctRedundant( + Parse *pParse, /* Parsing context */ + SrcList *pTabList, /* The FROM clause */ + WhereClause *pWC, /* The WHERE clause */ + ExprList *pDistinct /* The result set that needs to be DISTINCT */ +){ + Table *pTab; + Index *pIdx; + int i; + int iBase; + + /* If there is more than one table or sub-select in the FROM clause of + ** this query, then it will not be possible to show that the DISTINCT + ** clause is redundant. */ + if( pTabList->nSrc!=1 ) return 0; + iBase = pTabList->a[0].iCursor; + pTab = pTabList->a[0].pTab; + + /* If any of the expressions is an IPK column on table iBase, then return + ** true. Note: The (p->iTable==iBase) part of this test may be false if the + ** current SELECT is a correlated sub-query. + */ + for(i=0; inExpr; i++){ + Expr *p = sqlite3ExprSkipCollate(pDistinct->a[i].pExpr); + if( p->op==TK_COLUMN && p->iTable==iBase && p->iColumn<0 ) return 1; + } + + /* Loop through all indices on the table, checking each to see if it makes + ** the DISTINCT qualifier redundant. It does so if: + ** + ** 1. The index is itself UNIQUE, and + ** + ** 2. All of the columns in the index are either part of the pDistinct + ** list, or else the WHERE clause contains a term of the form "col=X", + ** where X is a constant value. The collation sequences of the + ** comparison and select-list expressions must match those of the index. + ** + ** 3. All of those index columns for which the WHERE clause does not + ** contain a "col=X" term are subject to a NOT NULL constraint. + */ + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + if( pIdx->onError==OE_None ) continue; + for(i=0; inKeyCol; i++){ + i16 iCol = pIdx->aiColumn[i]; + if( 0==findTerm(pWC, iBase, iCol, ~(Bitmask)0, WO_EQ, pIdx) ){ + int iIdxCol = findIndexCol(pParse, pDistinct, iBase, pIdx, i); + if( iIdxCol<0 || pTab->aCol[iCol].notNull==0 ){ + break; + } + } + } + if( i==pIdx->nKeyCol ){ + /* This index implies that the DISTINCT qualifier is redundant. */ + return 1; + } + } + + return 0; +} + + +/* +** Estimate the logarithm of the input value to base 2. +*/ +static LogEst estLog(LogEst N){ + LogEst x = sqlite3LogEst(N); + return x>33 ? x - 33 : 0; +} + +/* +** Two routines for printing the content of an sqlite3_index_info +** structure. Used for testing and debugging only. If neither +** SQLITE_TEST or SQLITE_DEBUG are defined, then these routines +** are no-ops. +*/ +#if !defined(SQLITE_OMIT_VIRTUALTABLE) && defined(WHERETRACE_ENABLED) +static void TRACE_IDX_INPUTS(sqlite3_index_info *p){ + int i; + if( !sqlite3WhereTrace ) return; + for(i=0; inConstraint; i++){ + sqlite3DebugPrintf(" constraint[%d]: col=%d termid=%d op=%d usabled=%d\n", + i, + p->aConstraint[i].iColumn, + p->aConstraint[i].iTermOffset, + p->aConstraint[i].op, + p->aConstraint[i].usable); + } + for(i=0; inOrderBy; i++){ + sqlite3DebugPrintf(" orderby[%d]: col=%d desc=%d\n", + i, + p->aOrderBy[i].iColumn, + p->aOrderBy[i].desc); + } +} +static void TRACE_IDX_OUTPUTS(sqlite3_index_info *p){ + int i; + if( !sqlite3WhereTrace ) return; + for(i=0; inConstraint; i++){ + sqlite3DebugPrintf(" usage[%d]: argvIdx=%d omit=%d\n", + i, + p->aConstraintUsage[i].argvIndex, + p->aConstraintUsage[i].omit); + } + sqlite3DebugPrintf(" idxNum=%d\n", p->idxNum); + sqlite3DebugPrintf(" idxStr=%s\n", p->idxStr); + sqlite3DebugPrintf(" orderByConsumed=%d\n", p->orderByConsumed); + sqlite3DebugPrintf(" estimatedCost=%g\n", p->estimatedCost); + sqlite3DebugPrintf(" estimatedRows=%lld\n", p->estimatedRows); +} +#else +#define TRACE_IDX_INPUTS(A) +#define TRACE_IDX_OUTPUTS(A) +#endif + +#ifndef SQLITE_OMIT_AUTOMATIC_INDEX +/* +** Return TRUE if the WHERE clause term pTerm is of a form where it +** could be used with an index to access pSrc, assuming an appropriate +** index existed. +*/ +static int termCanDriveIndex( + WhereTerm *pTerm, /* WHERE clause term to check */ + struct SrcList_item *pSrc, /* Table we are trying to access */ + Bitmask notReady /* Tables in outer loops of the join */ +){ + char aff; + if( pTerm->leftCursor!=pSrc->iCursor ) return 0; + if( (pTerm->eOperator & WO_EQ)==0 ) return 0; + if( (pTerm->prereqRight & notReady)!=0 ) return 0; + if( pTerm->u.leftColumn<0 ) return 0; + aff = pSrc->pTab->aCol[pTerm->u.leftColumn].affinity; + if( !sqlite3IndexAffinityOk(pTerm->pExpr, aff) ) return 0; + return 1; +} +#endif + + +#ifndef SQLITE_OMIT_AUTOMATIC_INDEX +/* +** Generate code to construct the Index object for an automatic index +** and to set up the WhereLevel object pLevel so that the code generator +** makes use of the automatic index. +*/ +static void constructAutomaticIndex( + Parse *pParse, /* The parsing context */ + WhereClause *pWC, /* The WHERE clause */ + struct SrcList_item *pSrc, /* The FROM clause term to get the next index */ + Bitmask notReady, /* Mask of cursors that are not available */ + WhereLevel *pLevel /* Write new index here */ +){ + int nKeyCol; /* Number of columns in the constructed index */ + WhereTerm *pTerm; /* A single term of the WHERE clause */ + WhereTerm *pWCEnd; /* End of pWC->a[] */ + Index *pIdx; /* Object describing the transient index */ + Vdbe *v; /* Prepared statement under construction */ + int addrInit; /* Address of the initialization bypass jump */ + Table *pTable; /* The table being indexed */ + int addrTop; /* Top of the index fill loop */ + int regRecord; /* Register holding an index record */ + int n; /* Column counter */ + int i; /* Loop counter */ + int mxBitCol; /* Maximum column in pSrc->colUsed */ + CollSeq *pColl; /* Collating sequence to on a column */ + WhereLoop *pLoop; /* The Loop object */ + char *zNotUsed; /* Extra space on the end of pIdx */ + Bitmask idxCols; /* Bitmap of columns used for indexing */ + Bitmask extraCols; /* Bitmap of additional columns */ + u8 sentWarning = 0; /* True if a warnning has been issued */ + + /* Generate code to skip over the creation and initialization of the + ** transient index on 2nd and subsequent iterations of the loop. */ + v = pParse->pVdbe; + assert( v!=0 ); + addrInit = sqlite3CodeOnce(pParse); VdbeCoverage(v); + + /* Count the number of columns that will be added to the index + ** and used to match WHERE clause constraints */ + nKeyCol = 0; + pTable = pSrc->pTab; + pWCEnd = &pWC->a[pWC->nTerm]; + pLoop = pLevel->pWLoop; + idxCols = 0; + for(pTerm=pWC->a; pTermu.leftColumn; + Bitmask cMask = iCol>=BMS ? MASKBIT(BMS-1) : MASKBIT(iCol); + testcase( iCol==BMS ); + testcase( iCol==BMS-1 ); + if( !sentWarning ){ + sqlite3_log(SQLITE_WARNING_AUTOINDEX, + "automatic index on %s(%s)", pTable->zName, + pTable->aCol[iCol].zName); + sentWarning = 1; + } + if( (idxCols & cMask)==0 ){ + if( whereLoopResize(pParse->db, pLoop, nKeyCol+1) ) return; + pLoop->aLTerm[nKeyCol++] = pTerm; + idxCols |= cMask; + } + } + } + assert( nKeyCol>0 ); + pLoop->u.btree.nEq = pLoop->nLTerm = nKeyCol; + pLoop->wsFlags = WHERE_COLUMN_EQ | WHERE_IDX_ONLY | WHERE_INDEXED + | WHERE_AUTO_INDEX; + + /* Count the number of additional columns needed to create a + ** covering index. A "covering index" is an index that contains all + ** columns that are needed by the query. With a covering index, the + ** original table never needs to be accessed. Automatic indices must + ** be a covering index because the index will not be updated if the + ** original table changes and the index and table cannot both be used + ** if they go out of sync. + */ + extraCols = pSrc->colUsed & (~idxCols | MASKBIT(BMS-1)); + mxBitCol = (pTable->nCol >= BMS-1) ? BMS-1 : pTable->nCol; + testcase( pTable->nCol==BMS-1 ); + testcase( pTable->nCol==BMS-2 ); + for(i=0; icolUsed & MASKBIT(BMS-1) ){ + nKeyCol += pTable->nCol - BMS + 1; + } + pLoop->wsFlags |= WHERE_COLUMN_EQ | WHERE_IDX_ONLY; + + /* Construct the Index object to describe this index */ + pIdx = sqlite3AllocateIndexObject(pParse->db, nKeyCol+1, 0, &zNotUsed); + if( pIdx==0 ) return; + pLoop->u.btree.pIndex = pIdx; + pIdx->zName = "auto-index"; + pIdx->pTable = pTable; + n = 0; + idxCols = 0; + for(pTerm=pWC->a; pTermu.leftColumn; + Bitmask cMask = iCol>=BMS ? MASKBIT(BMS-1) : MASKBIT(iCol); + testcase( iCol==BMS-1 ); + testcase( iCol==BMS ); + if( (idxCols & cMask)==0 ){ + Expr *pX = pTerm->pExpr; + idxCols |= cMask; + pIdx->aiColumn[n] = pTerm->u.leftColumn; + pColl = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pX->pRight); + pIdx->azColl[n] = ALWAYS(pColl) ? pColl->zName : "BINARY"; + n++; + } + } + } + assert( (u32)n==pLoop->u.btree.nEq ); + + /* Add additional columns needed to make the automatic index into + ** a covering index */ + for(i=0; iaiColumn[n] = i; + pIdx->azColl[n] = "BINARY"; + n++; + } + } + if( pSrc->colUsed & MASKBIT(BMS-1) ){ + for(i=BMS-1; inCol; i++){ + pIdx->aiColumn[n] = i; + pIdx->azColl[n] = "BINARY"; + n++; + } + } + assert( n==nKeyCol ); + pIdx->aiColumn[n] = -1; + pIdx->azColl[n] = "BINARY"; + + /* Create the automatic index */ + assert( pLevel->iIdxCur>=0 ); + pLevel->iIdxCur = pParse->nTab++; + sqlite3VdbeAddOp2(v, OP_OpenAutoindex, pLevel->iIdxCur, nKeyCol+1); + sqlite3VdbeSetP4KeyInfo(pParse, pIdx); + VdbeComment((v, "for %s", pTable->zName)); + + /* Fill the automatic index with content */ + addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, pLevel->iTabCur); VdbeCoverage(v); + regRecord = sqlite3GetTempReg(pParse); + sqlite3GenerateIndexKey(pParse, pIdx, pLevel->iTabCur, regRecord, 0, 0, 0, 0); + sqlite3VdbeAddOp2(v, OP_IdxInsert, pLevel->iIdxCur, regRecord); + sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); + sqlite3VdbeAddOp2(v, OP_Next, pLevel->iTabCur, addrTop+1); VdbeCoverage(v); + sqlite3VdbeChangeP5(v, SQLITE_STMTSTATUS_AUTOINDEX); + sqlite3VdbeJumpHere(v, addrTop); + sqlite3ReleaseTempReg(pParse, regRecord); + + /* Jump here when skipping the initialization */ + sqlite3VdbeJumpHere(v, addrInit); +} +#endif /* SQLITE_OMIT_AUTOMATIC_INDEX */ + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* +** Allocate and populate an sqlite3_index_info structure. It is the +** responsibility of the caller to eventually release the structure +** by passing the pointer returned by this function to sqlite3_free(). +*/ +static sqlite3_index_info *allocateIndexInfo( + Parse *pParse, + WhereClause *pWC, + struct SrcList_item *pSrc, + ExprList *pOrderBy +){ + int i, j; + int nTerm; + struct sqlite3_index_constraint *pIdxCons; + struct sqlite3_index_orderby *pIdxOrderBy; + struct sqlite3_index_constraint_usage *pUsage; + WhereTerm *pTerm; + int nOrderBy; + sqlite3_index_info *pIdxInfo; + + /* Count the number of possible WHERE clause constraints referring + ** to this virtual table */ + for(i=nTerm=0, pTerm=pWC->a; inTerm; i++, pTerm++){ + if( pTerm->leftCursor != pSrc->iCursor ) continue; + assert( IsPowerOfTwo(pTerm->eOperator & ~WO_EQUIV) ); + testcase( pTerm->eOperator & WO_IN ); + testcase( pTerm->eOperator & WO_ISNULL ); + testcase( pTerm->eOperator & WO_ALL ); + if( (pTerm->eOperator & ~(WO_ISNULL|WO_EQUIV))==0 ) continue; + if( pTerm->wtFlags & TERM_VNULL ) continue; + nTerm++; + } + + /* If the ORDER BY clause contains only columns in the current + ** virtual table then allocate space for the aOrderBy part of + ** the sqlite3_index_info structure. + */ + nOrderBy = 0; + if( pOrderBy ){ + int n = pOrderBy->nExpr; + for(i=0; ia[i].pExpr; + if( pExpr->op!=TK_COLUMN || pExpr->iTable!=pSrc->iCursor ) break; + } + if( i==n){ + nOrderBy = n; + } + } + + /* Allocate the sqlite3_index_info structure + */ + pIdxInfo = sqlite3DbMallocZero(pParse->db, sizeof(*pIdxInfo) + + (sizeof(*pIdxCons) + sizeof(*pUsage))*nTerm + + sizeof(*pIdxOrderBy)*nOrderBy ); + if( pIdxInfo==0 ){ + sqlite3ErrorMsg(pParse, "out of memory"); + return 0; + } + + /* Initialize the structure. The sqlite3_index_info structure contains + ** many fields that are declared "const" to prevent xBestIndex from + ** changing them. We have to do some funky casting in order to + ** initialize those fields. + */ + pIdxCons = (struct sqlite3_index_constraint*)&pIdxInfo[1]; + pIdxOrderBy = (struct sqlite3_index_orderby*)&pIdxCons[nTerm]; + pUsage = (struct sqlite3_index_constraint_usage*)&pIdxOrderBy[nOrderBy]; + *(int*)&pIdxInfo->nConstraint = nTerm; + *(int*)&pIdxInfo->nOrderBy = nOrderBy; + *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint = pIdxCons; + *(struct sqlite3_index_orderby**)&pIdxInfo->aOrderBy = pIdxOrderBy; + *(struct sqlite3_index_constraint_usage**)&pIdxInfo->aConstraintUsage = + pUsage; + + for(i=j=0, pTerm=pWC->a; inTerm; i++, pTerm++){ + u8 op; + if( pTerm->leftCursor != pSrc->iCursor ) continue; + assert( IsPowerOfTwo(pTerm->eOperator & ~WO_EQUIV) ); + testcase( pTerm->eOperator & WO_IN ); + testcase( pTerm->eOperator & WO_ISNULL ); + testcase( pTerm->eOperator & WO_ALL ); + if( (pTerm->eOperator & ~(WO_ISNULL|WO_EQUIV))==0 ) continue; + if( pTerm->wtFlags & TERM_VNULL ) continue; + pIdxCons[j].iColumn = pTerm->u.leftColumn; + pIdxCons[j].iTermOffset = i; + op = (u8)pTerm->eOperator & WO_ALL; + if( op==WO_IN ) op = WO_EQ; + pIdxCons[j].op = op; + /* The direct assignment in the previous line is possible only because + ** the WO_ and SQLITE_INDEX_CONSTRAINT_ codes are identical. The + ** following asserts verify this fact. */ + assert( WO_EQ==SQLITE_INDEX_CONSTRAINT_EQ ); + assert( WO_LT==SQLITE_INDEX_CONSTRAINT_LT ); + assert( WO_LE==SQLITE_INDEX_CONSTRAINT_LE ); + assert( WO_GT==SQLITE_INDEX_CONSTRAINT_GT ); + assert( WO_GE==SQLITE_INDEX_CONSTRAINT_GE ); + assert( WO_MATCH==SQLITE_INDEX_CONSTRAINT_MATCH ); + assert( pTerm->eOperator & (WO_IN|WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE|WO_MATCH) ); + j++; + } + for(i=0; ia[i].pExpr; + pIdxOrderBy[i].iColumn = pExpr->iColumn; + pIdxOrderBy[i].desc = pOrderBy->a[i].sortOrder; + } + + return pIdxInfo; +} + +/* +** The table object reference passed as the second argument to this function +** must represent a virtual table. This function invokes the xBestIndex() +** method of the virtual table with the sqlite3_index_info object that +** comes in as the 3rd argument to this function. +** +** If an error occurs, pParse is populated with an error message and a +** non-zero value is returned. Otherwise, 0 is returned and the output +** part of the sqlite3_index_info structure is left populated. +** +** Whether or not an error is returned, it is the responsibility of the +** caller to eventually free p->idxStr if p->needToFreeIdxStr indicates +** that this is required. +*/ +static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){ + sqlite3_vtab *pVtab = sqlite3GetVTable(pParse->db, pTab)->pVtab; + int i; + int rc; + + TRACE_IDX_INPUTS(p); + rc = pVtab->pModule->xBestIndex(pVtab, p); + TRACE_IDX_OUTPUTS(p); + + if( rc!=SQLITE_OK ){ + if( rc==SQLITE_NOMEM ){ + pParse->db->mallocFailed = 1; + }else if( !pVtab->zErrMsg ){ + sqlite3ErrorMsg(pParse, "%s", sqlite3ErrStr(rc)); + }else{ + sqlite3ErrorMsg(pParse, "%s", pVtab->zErrMsg); + } + } + sqlite3_free(pVtab->zErrMsg); + pVtab->zErrMsg = 0; + + for(i=0; inConstraint; i++){ + if( !p->aConstraint[i].usable && p->aConstraintUsage[i].argvIndex>0 ){ + sqlite3ErrorMsg(pParse, + "table %s: xBestIndex returned an invalid plan", pTab->zName); + } + } + + return pParse->nErr; +} +#endif /* !defined(SQLITE_OMIT_VIRTUALTABLE) */ + + +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 +/* +** Estimate the location of a particular key among all keys in an +** index. Store the results in aStat as follows: +** +** aStat[0] Est. number of rows less than pVal +** aStat[1] Est. number of rows equal to pVal +** +** Return SQLITE_OK on success. +*/ +static void whereKeyStats( + Parse *pParse, /* Database connection */ + Index *pIdx, /* Index to consider domain of */ + UnpackedRecord *pRec, /* Vector of values to consider */ + int roundUp, /* Round up if true. Round down if false */ + tRowcnt *aStat /* OUT: stats written here */ +){ + IndexSample *aSample = pIdx->aSample; + int iCol; /* Index of required stats in anEq[] etc. */ + int iMin = 0; /* Smallest sample not yet tested */ + int i = pIdx->nSample; /* Smallest sample larger than or equal to pRec */ + int iTest; /* Next sample to test */ + int res; /* Result of comparison operation */ + +#ifndef SQLITE_DEBUG + UNUSED_PARAMETER( pParse ); +#endif + assert( pRec!=0 ); + iCol = pRec->nField - 1; + assert( pIdx->nSample>0 ); + assert( pRec->nField>0 && iColnSampleCol ); + do{ + iTest = (iMin+i)/2; + res = sqlite3VdbeRecordCompare(aSample[iTest].n, aSample[iTest].p, pRec, 0); + if( res<0 ){ + iMin = iTest+1; + }else{ + i = iTest; + } + }while( res && iMinnSample ); + assert( 0==sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec, 0) + || pParse->db->mallocFailed ); + }else{ + /* Otherwise, pRec must be smaller than sample $i and larger than + ** sample ($i-1). */ + assert( i==pIdx->nSample + || sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec, 0)>0 + || pParse->db->mallocFailed ); + assert( i==0 + || sqlite3VdbeRecordCompare(aSample[i-1].n, aSample[i-1].p, pRec, 0)<0 + || pParse->db->mallocFailed ); + } +#endif /* ifdef SQLITE_DEBUG */ + + /* At this point, aSample[i] is the first sample that is greater than + ** or equal to pVal. Or if i==pIdx->nSample, then all samples are less + ** than pVal. If aSample[i]==pVal, then res==0. + */ + if( res==0 ){ + aStat[0] = aSample[i].anLt[iCol]; + aStat[1] = aSample[i].anEq[iCol]; + }else{ + tRowcnt iLower, iUpper, iGap; + if( i==0 ){ + iLower = 0; + iUpper = aSample[0].anLt[iCol]; + }else{ + i64 nRow0 = sqlite3LogEstToInt(pIdx->aiRowLogEst[0]); + iUpper = i>=pIdx->nSample ? nRow0 : aSample[i].anLt[iCol]; + iLower = aSample[i-1].anEq[iCol] + aSample[i-1].anLt[iCol]; + } + aStat[1] = (pIdx->nKeyCol>iCol ? pIdx->aAvgEq[iCol] : 1); + if( iLower>=iUpper ){ + iGap = 0; + }else{ + iGap = iUpper - iLower; + } + if( roundUp ){ + iGap = (iGap*2)/3; + }else{ + iGap = iGap/3; + } + aStat[0] = iLower + iGap; + } +} +#endif /* SQLITE_ENABLE_STAT3_OR_STAT4 */ + +/* +** If it is not NULL, pTerm is a term that provides an upper or lower +** bound on a range scan. Without considering pTerm, it is estimated +** that the scan will visit nNew rows. This function returns the number +** estimated to be visited after taking pTerm into account. +** +** If the user explicitly specified a likelihood() value for this term, +** then the return value is the likelihood multiplied by the number of +** input rows. Otherwise, this function assumes that an "IS NOT NULL" term +** has a likelihood of 0.50, and any other term a likelihood of 0.25. +*/ +static LogEst whereRangeAdjust(WhereTerm *pTerm, LogEst nNew){ + LogEst nRet = nNew; + if( pTerm ){ + if( pTerm->truthProb<=0 ){ + nRet += pTerm->truthProb; + }else if( (pTerm->wtFlags & TERM_VNULL)==0 ){ + nRet -= 20; assert( 20==sqlite3LogEst(4) ); + } + } + return nRet; +} + +/* +** This function is used to estimate the number of rows that will be visited +** by scanning an index for a range of values. The range may have an upper +** bound, a lower bound, or both. The WHERE clause terms that set the upper +** and lower bounds are represented by pLower and pUpper respectively. For +** example, assuming that index p is on t1(a): +** +** ... FROM t1 WHERE a > ? AND a < ? ... +** |_____| |_____| +** | | +** pLower pUpper +** +** If either of the upper or lower bound is not present, then NULL is passed in +** place of the corresponding WhereTerm. +** +** The value in (pBuilder->pNew->u.btree.nEq) is the index of the index +** column subject to the range constraint. Or, equivalently, the number of +** equality constraints optimized by the proposed index scan. For example, +** assuming index p is on t1(a, b), and the SQL query is: +** +** ... FROM t1 WHERE a = ? AND b > ? AND b < ? ... +** +** then nEq is set to 1 (as the range restricted column, b, is the second +** left-most column of the index). Or, if the query is: +** +** ... FROM t1 WHERE a > ? AND a < ? ... +** +** then nEq is set to 0. +** +** When this function is called, *pnOut is set to the sqlite3LogEst() of the +** number of rows that the index scan is expected to visit without +** considering the range constraints. If nEq is 0, this is the number of +** rows in the index. Assuming no error occurs, *pnOut is adjusted (reduced) +** to account for the range contraints pLower and pUpper. +** +** In the absence of sqlite_stat4 ANALYZE data, or if such data cannot be +** used, each range inequality reduces the search space by a factor of 4. +** Hence a pair of constraints (x>? AND x123" Might be NULL */ + WhereTerm *pUpper, /* Upper bound on the range. ex: "x<455" Might be NULL */ + WhereLoop *pLoop /* Modify the .nOut and maybe .rRun fields */ +){ + int rc = SQLITE_OK; + int nOut = pLoop->nOut; + LogEst nNew; + +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + Index *p = pLoop->u.btree.pIndex; + int nEq = pLoop->u.btree.nEq; + + if( p->nSample>0 + && nEq==pBuilder->nRecValid + && nEqnSampleCol + && OptimizationEnabled(pParse->db, SQLITE_Stat3) + ){ + UnpackedRecord *pRec = pBuilder->pRec; + tRowcnt a[2]; + u8 aff; + + /* Variable iLower will be set to the estimate of the number of rows in + ** the index that are less than the lower bound of the range query. The + ** lower bound being the concatenation of $P and $L, where $P is the + ** key-prefix formed by the nEq values matched against the nEq left-most + ** columns of the index, and $L is the value in pLower. + ** + ** Or, if pLower is NULL or $L cannot be extracted from it (because it + ** is not a simple variable or literal value), the lower bound of the + ** range is $P. Due to a quirk in the way whereKeyStats() works, even + ** if $L is available, whereKeyStats() is called for both ($P) and + ** ($P:$L) and the larger of the two returned values used. + ** + ** Similarly, iUpper is to be set to the estimate of the number of rows + ** less than the upper bound of the range query. Where the upper bound + ** is either ($P) or ($P:$U). Again, even if $U is available, both values + ** of iUpper are requested of whereKeyStats() and the smaller used. + */ + tRowcnt iLower; + tRowcnt iUpper; + + if( nEq==p->nKeyCol ){ + aff = SQLITE_AFF_INTEGER; + }else{ + aff = p->pTable->aCol[p->aiColumn[nEq]].affinity; + } + /* Determine iLower and iUpper using ($P) only. */ + if( nEq==0 ){ + iLower = 0; + iUpper = sqlite3LogEstToInt(p->aiRowLogEst[0]); + }else{ + /* Note: this call could be optimized away - since the same values must + ** have been requested when testing key $P in whereEqualScanEst(). */ + whereKeyStats(pParse, p, pRec, 0, a); + iLower = a[0]; + iUpper = a[0] + a[1]; + } + + /* If possible, improve on the iLower estimate using ($P:$L). */ + if( pLower ){ + int bOk; /* True if value is extracted from pExpr */ + Expr *pExpr = pLower->pExpr->pRight; + assert( (pLower->eOperator & (WO_GT|WO_GE))!=0 ); + rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, aff, nEq, &bOk); + if( rc==SQLITE_OK && bOk ){ + tRowcnt iNew; + whereKeyStats(pParse, p, pRec, 0, a); + iNew = a[0] + ((pLower->eOperator & WO_GT) ? a[1] : 0); + if( iNew>iLower ) iLower = iNew; + nOut--; + } + } + + /* If possible, improve on the iUpper estimate using ($P:$U). */ + if( pUpper ){ + int bOk; /* True if value is extracted from pExpr */ + Expr *pExpr = pUpper->pExpr->pRight; + assert( (pUpper->eOperator & (WO_LT|WO_LE))!=0 ); + rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, aff, nEq, &bOk); + if( rc==SQLITE_OK && bOk ){ + tRowcnt iNew; + whereKeyStats(pParse, p, pRec, 1, a); + iNew = a[0] + ((pUpper->eOperator & WO_LE) ? a[1] : 0); + if( iNewpRec = pRec; + if( rc==SQLITE_OK ){ + if( iUpper>iLower ){ + nNew = sqlite3LogEst(iUpper - iLower); + }else{ + nNew = 10; assert( 10==sqlite3LogEst(2) ); + } + if( nNewnOut = (LogEst)nOut; + WHERETRACE(0x10, ("range scan regions: %u..%u est=%d\n", + (u32)iLower, (u32)iUpper, nOut)); + return SQLITE_OK; + } + } +#else + UNUSED_PARAMETER(pParse); + UNUSED_PARAMETER(pBuilder); +#endif + assert( pLower || pUpper ); + assert( pUpper==0 || (pUpper->wtFlags & TERM_VNULL)==0 ); + nNew = whereRangeAdjust(pLower, nOut); + nNew = whereRangeAdjust(pUpper, nNew); + + /* TUNING: If there is both an upper and lower limit, assume the range is + ** reduced by an additional 75%. This means that, by default, an open-ended + ** range query (e.g. col > ?) is assumed to match 1/4 of the rows in the + ** index. While a closed range (e.g. col BETWEEN ? AND ?) is estimated to + ** match 1/64 of the index. */ + if( pLower && pUpper ) nNew -= 20; + + nOut -= (pLower!=0) + (pUpper!=0); + if( nNew<10 ) nNew = 10; + if( nNewnOut = (LogEst)nOut; + return rc; +} + +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 +/* +** Estimate the number of rows that will be returned based on +** an equality constraint x=VALUE and where that VALUE occurs in +** the histogram data. This only works when x is the left-most +** column of an index and sqlite_stat3 histogram data is available +** for that index. When pExpr==NULL that means the constraint is +** "x IS NULL" instead of "x=VALUE". +** +** Write the estimated row count into *pnRow and return SQLITE_OK. +** If unable to make an estimate, leave *pnRow unchanged and return +** non-zero. +** +** This routine can fail if it is unable to load a collating sequence +** required for string comparison, or if unable to allocate memory +** for a UTF conversion required for comparison. The error is stored +** in the pParse structure. +*/ +static int whereEqualScanEst( + Parse *pParse, /* Parsing & code generating context */ + WhereLoopBuilder *pBuilder, + Expr *pExpr, /* Expression for VALUE in the x=VALUE constraint */ + tRowcnt *pnRow /* Write the revised row estimate here */ +){ + Index *p = pBuilder->pNew->u.btree.pIndex; + int nEq = pBuilder->pNew->u.btree.nEq; + UnpackedRecord *pRec = pBuilder->pRec; + u8 aff; /* Column affinity */ + int rc; /* Subfunction return code */ + tRowcnt a[2]; /* Statistics */ + int bOk; + + assert( nEq>=1 ); + assert( nEq<=(p->nKeyCol+1) ); + assert( p->aSample!=0 ); + assert( p->nSample>0 ); + assert( pBuilder->nRecValidnRecValid<(nEq-1) ){ + return SQLITE_NOTFOUND; + } + + /* This is an optimization only. The call to sqlite3Stat4ProbeSetValue() + ** below would return the same value. */ + if( nEq>p->nKeyCol ){ + *pnRow = 1; + return SQLITE_OK; + } + + aff = p->pTable->aCol[p->aiColumn[nEq-1]].affinity; + rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, aff, nEq-1, &bOk); + pBuilder->pRec = pRec; + if( rc!=SQLITE_OK ) return rc; + if( bOk==0 ) return SQLITE_NOTFOUND; + pBuilder->nRecValid = nEq; + + whereKeyStats(pParse, p, pRec, 0, a); + WHERETRACE(0x10,("equality scan regions: %d\n", (int)a[1])); + *pnRow = a[1]; + + return rc; +} +#endif /* SQLITE_ENABLE_STAT3_OR_STAT4 */ + +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 +/* +** Estimate the number of rows that will be returned based on +** an IN constraint where the right-hand side of the IN operator +** is a list of values. Example: +** +** WHERE x IN (1,2,3,4) +** +** Write the estimated row count into *pnRow and return SQLITE_OK. +** If unable to make an estimate, leave *pnRow unchanged and return +** non-zero. +** +** This routine can fail if it is unable to load a collating sequence +** required for string comparison, or if unable to allocate memory +** for a UTF conversion required for comparison. The error is stored +** in the pParse structure. +*/ +static int whereInScanEst( + Parse *pParse, /* Parsing & code generating context */ + WhereLoopBuilder *pBuilder, + ExprList *pList, /* The value list on the RHS of "x IN (v1,v2,v3,...)" */ + tRowcnt *pnRow /* Write the revised row estimate here */ +){ + Index *p = pBuilder->pNew->u.btree.pIndex; + i64 nRow0 = sqlite3LogEstToInt(p->aiRowLogEst[0]); + int nRecValid = pBuilder->nRecValid; + int rc = SQLITE_OK; /* Subfunction return code */ + tRowcnt nEst; /* Number of rows for a single term */ + tRowcnt nRowEst = 0; /* New estimate of the number of rows */ + int i; /* Loop counter */ + + assert( p->aSample!=0 ); + for(i=0; rc==SQLITE_OK && inExpr; i++){ + nEst = nRow0; + rc = whereEqualScanEst(pParse, pBuilder, pList->a[i].pExpr, &nEst); + nRowEst += nEst; + pBuilder->nRecValid = nRecValid; + } + + if( rc==SQLITE_OK ){ + if( nRowEst > nRow0 ) nRowEst = nRow0; + *pnRow = nRowEst; + WHERETRACE(0x10,("IN row estimate: est=%g\n", nRowEst)); + } + assert( pBuilder->nRecValid==nRecValid ); + return rc; +} +#endif /* SQLITE_ENABLE_STAT3_OR_STAT4 */ + +/* +** Disable a term in the WHERE clause. Except, do not disable the term +** if it controls a LEFT OUTER JOIN and it did not originate in the ON +** or USING clause of that join. +** +** Consider the term t2.z='ok' in the following queries: +** +** (1) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x WHERE t2.z='ok' +** (2) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x AND t2.z='ok' +** (3) SELECT * FROM t1, t2 WHERE t1.a=t2.x AND t2.z='ok' +** +** The t2.z='ok' is disabled in the in (2) because it originates +** in the ON clause. The term is disabled in (3) because it is not part +** of a LEFT OUTER JOIN. In (1), the term is not disabled. +** +** Disabling a term causes that term to not be tested in the inner loop +** of the join. Disabling is an optimization. When terms are satisfied +** by indices, we disable them to prevent redundant tests in the inner +** loop. We would get the correct results if nothing were ever disabled, +** but joins might run a little slower. The trick is to disable as much +** as we can without disabling too much. If we disabled in (1), we'd get +** the wrong answer. See ticket #813. +*/ +static void disableTerm(WhereLevel *pLevel, WhereTerm *pTerm){ + if( pTerm + && (pTerm->wtFlags & TERM_CODED)==0 + && (pLevel->iLeftJoin==0 || ExprHasProperty(pTerm->pExpr, EP_FromJoin)) + && (pLevel->notReady & pTerm->prereqAll)==0 + ){ + pTerm->wtFlags |= TERM_CODED; + if( pTerm->iParent>=0 ){ + WhereTerm *pOther = &pTerm->pWC->a[pTerm->iParent]; + if( (--pOther->nChild)==0 ){ + disableTerm(pLevel, pOther); + } + } + } +} + +/* +** Code an OP_Affinity opcode to apply the column affinity string zAff +** to the n registers starting at base. +** +** As an optimization, SQLITE_AFF_NONE entries (which are no-ops) at the +** beginning and end of zAff are ignored. If all entries in zAff are +** SQLITE_AFF_NONE, then no code gets generated. +** +** This routine makes its own copy of zAff so that the caller is free +** to modify zAff after this routine returns. +*/ +static void codeApplyAffinity(Parse *pParse, int base, int n, char *zAff){ + Vdbe *v = pParse->pVdbe; + if( zAff==0 ){ + assert( pParse->db->mallocFailed ); + return; + } + assert( v!=0 ); + + /* Adjust base and n to skip over SQLITE_AFF_NONE entries at the beginning + ** and end of the affinity string. + */ + while( n>0 && zAff[0]==SQLITE_AFF_NONE ){ + n--; + base++; + zAff++; + } + while( n>1 && zAff[n-1]==SQLITE_AFF_NONE ){ + n--; + } + + /* Code the OP_Affinity opcode if there is anything left to do. */ + if( n>0 ){ + sqlite3VdbeAddOp2(v, OP_Affinity, base, n); + sqlite3VdbeChangeP4(v, -1, zAff, n); + sqlite3ExprCacheAffinityChange(pParse, base, n); + } +} + + +/* +** Generate code for a single equality term of the WHERE clause. An equality +** term can be either X=expr or X IN (...). pTerm is the term to be +** coded. +** +** The current value for the constraint is left in register iReg. +** +** For a constraint of the form X=expr, the expression is evaluated and its +** result is left on the stack. For constraints of the form X IN (...) +** this routine sets up a loop that will iterate over all values of X. +*/ +static int codeEqualityTerm( + Parse *pParse, /* The parsing context */ + WhereTerm *pTerm, /* The term of the WHERE clause to be coded */ + WhereLevel *pLevel, /* The level of the FROM clause we are working on */ + int iEq, /* Index of the equality term within this level */ + int bRev, /* True for reverse-order IN operations */ + int iTarget /* Attempt to leave results in this register */ +){ + Expr *pX = pTerm->pExpr; + Vdbe *v = pParse->pVdbe; + int iReg; /* Register holding results */ + + assert( iTarget>0 ); + if( pX->op==TK_EQ ){ + iReg = sqlite3ExprCodeTarget(pParse, pX->pRight, iTarget); + }else if( pX->op==TK_ISNULL ){ + iReg = iTarget; + sqlite3VdbeAddOp2(v, OP_Null, 0, iReg); +#ifndef SQLITE_OMIT_SUBQUERY + }else{ + int eType; + int iTab; + struct InLoop *pIn; + WhereLoop *pLoop = pLevel->pWLoop; + + if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 + && pLoop->u.btree.pIndex!=0 + && pLoop->u.btree.pIndex->aSortOrder[iEq] + ){ + testcase( iEq==0 ); + testcase( bRev ); + bRev = !bRev; + } + assert( pX->op==TK_IN ); + iReg = iTarget; + eType = sqlite3FindInIndex(pParse, pX, 0); + if( eType==IN_INDEX_INDEX_DESC ){ + testcase( bRev ); + bRev = !bRev; + } + iTab = pX->iTable; + sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iTab, 0); + VdbeCoverageIf(v, bRev); + VdbeCoverageIf(v, !bRev); + assert( (pLoop->wsFlags & WHERE_MULTI_OR)==0 ); + pLoop->wsFlags |= WHERE_IN_ABLE; + if( pLevel->u.in.nIn==0 ){ + pLevel->addrNxt = sqlite3VdbeMakeLabel(v); + } + pLevel->u.in.nIn++; + pLevel->u.in.aInLoop = + sqlite3DbReallocOrFree(pParse->db, pLevel->u.in.aInLoop, + sizeof(pLevel->u.in.aInLoop[0])*pLevel->u.in.nIn); + pIn = pLevel->u.in.aInLoop; + if( pIn ){ + pIn += pLevel->u.in.nIn - 1; + pIn->iCur = iTab; + if( eType==IN_INDEX_ROWID ){ + pIn->addrInTop = sqlite3VdbeAddOp2(v, OP_Rowid, iTab, iReg); + }else{ + pIn->addrInTop = sqlite3VdbeAddOp3(v, OP_Column, iTab, 0, iReg); + } + pIn->eEndLoopOp = bRev ? OP_PrevIfOpen : OP_NextIfOpen; + sqlite3VdbeAddOp1(v, OP_IsNull, iReg); VdbeCoverage(v); + }else{ + pLevel->u.in.nIn = 0; + } +#endif + } + disableTerm(pLevel, pTerm); + return iReg; +} + +/* +** Generate code that will evaluate all == and IN constraints for an +** index scan. +** +** For example, consider table t1(a,b,c,d,e,f) with index i1(a,b,c). +** Suppose the WHERE clause is this: a==5 AND b IN (1,2,3) AND c>5 AND c<10 +** The index has as many as three equality constraints, but in this +** example, the third "c" value is an inequality. So only two +** constraints are coded. This routine will generate code to evaluate +** a==5 and b IN (1,2,3). The current values for a and b will be stored +** in consecutive registers and the index of the first register is returned. +** +** In the example above nEq==2. But this subroutine works for any value +** of nEq including 0. If nEq==0, this routine is nearly a no-op. +** The only thing it does is allocate the pLevel->iMem memory cell and +** compute the affinity string. +** +** The nExtraReg parameter is 0 or 1. It is 0 if all WHERE clause constraints +** are == or IN and are covered by the nEq. nExtraReg is 1 if there is +** an inequality constraint (such as the "c>=5 AND c<10" in the example) that +** occurs after the nEq quality constraints. +** +** This routine allocates a range of nEq+nExtraReg memory cells and returns +** the index of the first memory cell in that range. The code that +** calls this routine will use that memory range to store keys for +** start and termination conditions of the loop. +** key value of the loop. If one or more IN operators appear, then +** this routine allocates an additional nEq memory cells for internal +** use. +** +** Before returning, *pzAff is set to point to a buffer containing a +** copy of the column affinity string of the index allocated using +** sqlite3DbMalloc(). Except, entries in the copy of the string associated +** with equality constraints that use NONE affinity are set to +** SQLITE_AFF_NONE. This is to deal with SQL such as the following: +** +** CREATE TABLE t1(a TEXT PRIMARY KEY, b); +** SELECT ... FROM t1 AS t2, t1 WHERE t1.a = t2.b; +** +** In the example above, the index on t1(a) has TEXT affinity. But since +** the right hand side of the equality constraint (t2.b) has NONE affinity, +** no conversion should be attempted before using a t2.b value as part of +** a key to search the index. Hence the first byte in the returned affinity +** string in this example would be set to SQLITE_AFF_NONE. +*/ +static int codeAllEqualityTerms( + Parse *pParse, /* Parsing context */ + WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */ + int bRev, /* Reverse the order of IN operators */ + int nExtraReg, /* Number of extra registers to allocate */ + char **pzAff /* OUT: Set to point to affinity string */ +){ + u16 nEq; /* The number of == or IN constraints to code */ + u16 nSkip; /* Number of left-most columns to skip */ + Vdbe *v = pParse->pVdbe; /* The vm under construction */ + Index *pIdx; /* The index being used for this loop */ + WhereTerm *pTerm; /* A single constraint term */ + WhereLoop *pLoop; /* The WhereLoop object */ + int j; /* Loop counter */ + int regBase; /* Base register */ + int nReg; /* Number of registers to allocate */ + char *zAff; /* Affinity string to return */ + + /* This module is only called on query plans that use an index. */ + pLoop = pLevel->pWLoop; + assert( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 ); + nEq = pLoop->u.btree.nEq; + nSkip = pLoop->u.btree.nSkip; + pIdx = pLoop->u.btree.pIndex; + assert( pIdx!=0 ); + + /* Figure out how many memory cells we will need then allocate them. + */ + regBase = pParse->nMem + 1; + nReg = pLoop->u.btree.nEq + nExtraReg; + pParse->nMem += nReg; + + zAff = sqlite3DbStrDup(pParse->db, sqlite3IndexAffinityStr(v, pIdx)); + if( !zAff ){ + pParse->db->mallocFailed = 1; + } + + if( nSkip ){ + int iIdxCur = pLevel->iIdxCur; + sqlite3VdbeAddOp1(v, (bRev?OP_Last:OP_Rewind), iIdxCur); + VdbeCoverageIf(v, bRev==0); + VdbeCoverageIf(v, bRev!=0); + VdbeComment((v, "begin skip-scan on %s", pIdx->zName)); + j = sqlite3VdbeAddOp0(v, OP_Goto); + pLevel->addrSkip = sqlite3VdbeAddOp4Int(v, (bRev?OP_SeekLT:OP_SeekGT), + iIdxCur, 0, regBase, nSkip); + VdbeCoverageIf(v, bRev==0); + VdbeCoverageIf(v, bRev!=0); + sqlite3VdbeJumpHere(v, j); + for(j=0; jaiColumn[j]>=0 ); + VdbeComment((v, "%s", pIdx->pTable->aCol[pIdx->aiColumn[j]].zName)); + } + } + + /* Evaluate the equality constraints + */ + assert( zAff==0 || (int)strlen(zAff)>=nEq ); + for(j=nSkip; jaLTerm[j]; + assert( pTerm!=0 ); + /* The following testcase is true for indices with redundant columns. + ** Ex: CREATE INDEX i1 ON t1(a,b,a); SELECT * FROM t1 WHERE a=0 AND b=0; */ + testcase( (pTerm->wtFlags & TERM_CODED)!=0 ); + testcase( pTerm->wtFlags & TERM_VIRTUAL ); + r1 = codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, regBase+j); + if( r1!=regBase+j ){ + if( nReg==1 ){ + sqlite3ReleaseTempReg(pParse, regBase); + regBase = r1; + }else{ + sqlite3VdbeAddOp2(v, OP_SCopy, r1, regBase+j); + } + } + testcase( pTerm->eOperator & WO_ISNULL ); + testcase( pTerm->eOperator & WO_IN ); + if( (pTerm->eOperator & (WO_ISNULL|WO_IN))==0 ){ + Expr *pRight = pTerm->pExpr->pRight; + if( sqlite3ExprCanBeNull(pRight) ){ + sqlite3VdbeAddOp2(v, OP_IsNull, regBase+j, pLevel->addrBrk); + VdbeCoverage(v); + } + if( zAff ){ + if( sqlite3CompareAffinity(pRight, zAff[j])==SQLITE_AFF_NONE ){ + zAff[j] = SQLITE_AFF_NONE; + } + if( sqlite3ExprNeedsNoAffinityChange(pRight, zAff[j]) ){ + zAff[j] = SQLITE_AFF_NONE; + } + } + } + } + *pzAff = zAff; + return regBase; +} + +#ifndef SQLITE_OMIT_EXPLAIN +/* +** This routine is a helper for explainIndexRange() below +** +** pStr holds the text of an expression that we are building up one term +** at a time. This routine adds a new term to the end of the expression. +** Terms are separated by AND so add the "AND" text for second and subsequent +** terms only. +*/ +static void explainAppendTerm( + StrAccum *pStr, /* The text expression being built */ + int iTerm, /* Index of this term. First is zero */ + const char *zColumn, /* Name of the column */ + const char *zOp /* Name of the operator */ +){ + if( iTerm ) sqlite3StrAccumAppend(pStr, " AND ", 5); + sqlite3StrAccumAppendAll(pStr, zColumn); + sqlite3StrAccumAppend(pStr, zOp, 1); + sqlite3StrAccumAppend(pStr, "?", 1); +} + +/* +** Argument pLevel describes a strategy for scanning table pTab. This +** function returns a pointer to a string buffer containing a description +** of the subset of table rows scanned by the strategy in the form of an +** SQL expression. Or, if all rows are scanned, NULL is returned. +** +** For example, if the query: +** +** SELECT * FROM t1 WHERE a=1 AND b>2; +** +** is run and there is an index on (a, b), then this function returns a +** string similar to: +** +** "a=? AND b>?" +** +** The returned pointer points to memory obtained from sqlite3DbMalloc(). +** It is the responsibility of the caller to free the buffer when it is +** no longer required. +*/ +static char *explainIndexRange(sqlite3 *db, WhereLoop *pLoop, Table *pTab){ + Index *pIndex = pLoop->u.btree.pIndex; + u16 nEq = pLoop->u.btree.nEq; + u16 nSkip = pLoop->u.btree.nSkip; + int i, j; + Column *aCol = pTab->aCol; + i16 *aiColumn = pIndex->aiColumn; + StrAccum txt; + + if( nEq==0 && (pLoop->wsFlags & (WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))==0 ){ + return 0; + } + sqlite3StrAccumInit(&txt, 0, 0, SQLITE_MAX_LENGTH); + txt.db = db; + sqlite3StrAccumAppend(&txt, " (", 2); + for(i=0; inKeyCol ) ? "rowid" : aCol[aiColumn[i]].zName; + if( i>=nSkip ){ + explainAppendTerm(&txt, i, z, "="); + }else{ + if( i ) sqlite3StrAccumAppend(&txt, " AND ", 5); + sqlite3StrAccumAppend(&txt, "ANY(", 4); + sqlite3StrAccumAppendAll(&txt, z); + sqlite3StrAccumAppend(&txt, ")", 1); + } + } + + j = i; + if( pLoop->wsFlags&WHERE_BTM_LIMIT ){ + char *z = (j==pIndex->nKeyCol ) ? "rowid" : aCol[aiColumn[j]].zName; + explainAppendTerm(&txt, i++, z, ">"); + } + if( pLoop->wsFlags&WHERE_TOP_LIMIT ){ + char *z = (j==pIndex->nKeyCol ) ? "rowid" : aCol[aiColumn[j]].zName; + explainAppendTerm(&txt, i, z, "<"); + } + sqlite3StrAccumAppend(&txt, ")", 1); + return sqlite3StrAccumFinish(&txt); +} + +/* +** This function is a no-op unless currently processing an EXPLAIN QUERY PLAN +** command. If the query being compiled is an EXPLAIN QUERY PLAN, a single +** record is added to the output to describe the table scan strategy in +** pLevel. +*/ +static void explainOneScan( + Parse *pParse, /* Parse context */ + SrcList *pTabList, /* Table list this loop refers to */ + WhereLevel *pLevel, /* Scan to write OP_Explain opcode for */ + int iLevel, /* Value for "level" column of output */ + int iFrom, /* Value for "from" column of output */ + u16 wctrlFlags /* Flags passed to sqlite3WhereBegin() */ +){ +#ifndef SQLITE_DEBUG + if( pParse->explain==2 ) +#endif + { + struct SrcList_item *pItem = &pTabList->a[pLevel->iFrom]; + Vdbe *v = pParse->pVdbe; /* VM being constructed */ + sqlite3 *db = pParse->db; /* Database handle */ + char *zMsg; /* Text to add to EQP output */ + int iId = pParse->iSelectId; /* Select id (left-most output column) */ + int isSearch; /* True for a SEARCH. False for SCAN. */ + WhereLoop *pLoop; /* The controlling WhereLoop object */ + u32 flags; /* Flags that describe this loop */ + + pLoop = pLevel->pWLoop; + flags = pLoop->wsFlags; + if( (flags&WHERE_MULTI_OR) || (wctrlFlags&WHERE_ONETABLE_ONLY) ) return; + + isSearch = (flags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))!=0 + || ((flags&WHERE_VIRTUALTABLE)==0 && (pLoop->u.btree.nEq>0)) + || (wctrlFlags&(WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX)); + + zMsg = sqlite3MPrintf(db, "%s", isSearch?"SEARCH":"SCAN"); + if( pItem->pSelect ){ + zMsg = sqlite3MAppendf(db, zMsg, "%s SUBQUERY %d", zMsg,pItem->iSelectId); + }else{ + zMsg = sqlite3MAppendf(db, zMsg, "%s TABLE %s", zMsg, pItem->zName); + } + + if( pItem->zAlias ){ + zMsg = sqlite3MAppendf(db, zMsg, "%s AS %s", zMsg, pItem->zAlias); + } + if( (flags & (WHERE_IPK|WHERE_VIRTUALTABLE))==0 + && ALWAYS(pLoop->u.btree.pIndex!=0) + ){ + const char *zFmt; + Index *pIdx = pLoop->u.btree.pIndex; + char *zWhere = explainIndexRange(db, pLoop, pItem->pTab); + assert( !(flags&WHERE_AUTO_INDEX) || (flags&WHERE_IDX_ONLY) ); + if( !HasRowid(pItem->pTab) && IsPrimaryKeyIndex(pIdx) ){ + zFmt = zWhere ? "%s USING PRIMARY KEY%.0s%s" : "%s%.0s%s"; + }else if( flags & WHERE_AUTO_INDEX ){ + zFmt = "%s USING AUTOMATIC COVERING INDEX%.0s%s"; + }else if( flags & WHERE_IDX_ONLY ){ + zFmt = "%s USING COVERING INDEX %s%s"; + }else{ + zFmt = "%s USING INDEX %s%s"; + } + zMsg = sqlite3MAppendf(db, zMsg, zFmt, zMsg, pIdx->zName, zWhere); + sqlite3DbFree(db, zWhere); + }else if( (flags & WHERE_IPK)!=0 && (flags & WHERE_CONSTRAINT)!=0 ){ + zMsg = sqlite3MAppendf(db, zMsg, "%s USING INTEGER PRIMARY KEY", zMsg); + + if( flags&(WHERE_COLUMN_EQ|WHERE_COLUMN_IN) ){ + zMsg = sqlite3MAppendf(db, zMsg, "%s (rowid=?)", zMsg); + }else if( (flags&WHERE_BOTH_LIMIT)==WHERE_BOTH_LIMIT ){ + zMsg = sqlite3MAppendf(db, zMsg, "%s (rowid>? AND rowid?)", zMsg); + }else if( ALWAYS(flags&WHERE_TOP_LIMIT) ){ + zMsg = sqlite3MAppendf(db, zMsg, "%s (rowidu.vtab.idxNum, pLoop->u.vtab.idxStr); + } +#endif + zMsg = sqlite3MAppendf(db, zMsg, "%s", zMsg); + sqlite3VdbeAddOp4(v, OP_Explain, iId, iLevel, iFrom, zMsg, P4_DYNAMIC); + } +} +#else +# define explainOneScan(u,v,w,x,y,z) +#endif /* SQLITE_OMIT_EXPLAIN */ + + +/* +** Generate code for the start of the iLevel-th loop in the WHERE clause +** implementation described by pWInfo. +*/ +static Bitmask codeOneLoopStart( + WhereInfo *pWInfo, /* Complete information about the WHERE clause */ + int iLevel, /* Which level of pWInfo->a[] should be coded */ + Bitmask notReady /* Which tables are currently available */ +){ + int j, k; /* Loop counters */ + int iCur; /* The VDBE cursor for the table */ + int addrNxt; /* Where to jump to continue with the next IN case */ + int omitTable; /* True if we use the index only */ + int bRev; /* True if we need to scan in reverse order */ + WhereLevel *pLevel; /* The where level to be coded */ + WhereLoop *pLoop; /* The WhereLoop object being coded */ + WhereClause *pWC; /* Decomposition of the entire WHERE clause */ + WhereTerm *pTerm; /* A WHERE clause term */ + Parse *pParse; /* Parsing context */ + sqlite3 *db; /* Database connection */ + Vdbe *v; /* The prepared stmt under constructions */ + struct SrcList_item *pTabItem; /* FROM clause term being coded */ + int addrBrk; /* Jump here to break out of the loop */ + int addrCont; /* Jump here to continue with next cycle */ + int iRowidReg = 0; /* Rowid is stored in this register, if not zero */ + int iReleaseReg = 0; /* Temp register to free before returning */ + + pParse = pWInfo->pParse; + v = pParse->pVdbe; + pWC = &pWInfo->sWC; + db = pParse->db; + pLevel = &pWInfo->a[iLevel]; + pLoop = pLevel->pWLoop; + pTabItem = &pWInfo->pTabList->a[pLevel->iFrom]; + iCur = pTabItem->iCursor; + pLevel->notReady = notReady & ~getMask(&pWInfo->sMaskSet, iCur); + bRev = (pWInfo->revMask>>iLevel)&1; + omitTable = (pLoop->wsFlags & WHERE_IDX_ONLY)!=0 + && (pWInfo->wctrlFlags & WHERE_FORCE_TABLE)==0; + VdbeModuleComment((v, "Begin WHERE-loop%d: %s",iLevel,pTabItem->pTab->zName)); + + /* Create labels for the "break" and "continue" instructions + ** for the current loop. Jump to addrBrk to break out of a loop. + ** Jump to cont to go immediately to the next iteration of the + ** loop. + ** + ** When there is an IN operator, we also have a "addrNxt" label that + ** means to continue with the next IN value combination. When + ** there are no IN operators in the constraints, the "addrNxt" label + ** is the same as "addrBrk". + */ + addrBrk = pLevel->addrBrk = pLevel->addrNxt = sqlite3VdbeMakeLabel(v); + addrCont = pLevel->addrCont = sqlite3VdbeMakeLabel(v); + + /* If this is the right table of a LEFT OUTER JOIN, allocate and + ** initialize a memory cell that records if this table matches any + ** row of the left table of the join. + */ + if( pLevel->iFrom>0 && (pTabItem[0].jointype & JT_LEFT)!=0 ){ + pLevel->iLeftJoin = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Integer, 0, pLevel->iLeftJoin); + VdbeComment((v, "init LEFT JOIN no-match flag")); + } + + /* Special case of a FROM clause subquery implemented as a co-routine */ + if( pTabItem->viaCoroutine ){ + int regYield = pTabItem->regReturn; + sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, pTabItem->addrFillSub); + pLevel->p2 = sqlite3VdbeAddOp2(v, OP_Yield, regYield, addrBrk); + VdbeCoverage(v); + VdbeComment((v, "next row of \"%s\"", pTabItem->pTab->zName)); + pLevel->op = OP_Goto; + }else + +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ){ + /* Case 1: The table is a virtual-table. Use the VFilter and VNext + ** to access the data. + */ + int iReg; /* P3 Value for OP_VFilter */ + int addrNotFound; + int nConstraint = pLoop->nLTerm; + + sqlite3ExprCachePush(pParse); + iReg = sqlite3GetTempRange(pParse, nConstraint+2); + addrNotFound = pLevel->addrBrk; + for(j=0; jaLTerm[j]; + if( pTerm==0 ) continue; + if( pTerm->eOperator & WO_IN ){ + codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, iTarget); + addrNotFound = pLevel->addrNxt; + }else{ + sqlite3ExprCode(pParse, pTerm->pExpr->pRight, iTarget); + } + } + sqlite3VdbeAddOp2(v, OP_Integer, pLoop->u.vtab.idxNum, iReg); + sqlite3VdbeAddOp2(v, OP_Integer, nConstraint, iReg+1); + sqlite3VdbeAddOp4(v, OP_VFilter, iCur, addrNotFound, iReg, + pLoop->u.vtab.idxStr, + pLoop->u.vtab.needFree ? P4_MPRINTF : P4_STATIC); + VdbeCoverage(v); + pLoop->u.vtab.needFree = 0; + for(j=0; ju.vtab.omitMask>>j)&1 ){ + disableTerm(pLevel, pLoop->aLTerm[j]); + } + } + pLevel->op = OP_VNext; + pLevel->p1 = iCur; + pLevel->p2 = sqlite3VdbeCurrentAddr(v); + sqlite3ReleaseTempRange(pParse, iReg, nConstraint+2); + sqlite3ExprCachePop(pParse); + }else +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + + if( (pLoop->wsFlags & WHERE_IPK)!=0 + && (pLoop->wsFlags & (WHERE_COLUMN_IN|WHERE_COLUMN_EQ))!=0 + ){ + /* Case 2: We can directly reference a single row using an + ** equality comparison against the ROWID field. Or + ** we reference multiple rows using a "rowid IN (...)" + ** construct. + */ + assert( pLoop->u.btree.nEq==1 ); + pTerm = pLoop->aLTerm[0]; + assert( pTerm!=0 ); + assert( pTerm->pExpr!=0 ); + assert( omitTable==0 ); + testcase( pTerm->wtFlags & TERM_VIRTUAL ); + iReleaseReg = ++pParse->nMem; + iRowidReg = codeEqualityTerm(pParse, pTerm, pLevel, 0, bRev, iReleaseReg); + if( iRowidReg!=iReleaseReg ) sqlite3ReleaseTempReg(pParse, iReleaseReg); + addrNxt = pLevel->addrNxt; + sqlite3VdbeAddOp2(v, OP_MustBeInt, iRowidReg, addrNxt); VdbeCoverage(v); + sqlite3VdbeAddOp3(v, OP_NotExists, iCur, addrNxt, iRowidReg); + VdbeCoverage(v); + sqlite3ExprCacheAffinityChange(pParse, iRowidReg, 1); + sqlite3ExprCacheStore(pParse, iCur, -1, iRowidReg); + VdbeComment((v, "pk")); + pLevel->op = OP_Noop; + }else if( (pLoop->wsFlags & WHERE_IPK)!=0 + && (pLoop->wsFlags & WHERE_COLUMN_RANGE)!=0 + ){ + /* Case 3: We have an inequality comparison against the ROWID field. + */ + int testOp = OP_Noop; + int start; + int memEndValue = 0; + WhereTerm *pStart, *pEnd; + + assert( omitTable==0 ); + j = 0; + pStart = pEnd = 0; + if( pLoop->wsFlags & WHERE_BTM_LIMIT ) pStart = pLoop->aLTerm[j++]; + if( pLoop->wsFlags & WHERE_TOP_LIMIT ) pEnd = pLoop->aLTerm[j++]; + assert( pStart!=0 || pEnd!=0 ); + if( bRev ){ + pTerm = pStart; + pStart = pEnd; + pEnd = pTerm; + } + if( pStart ){ + Expr *pX; /* The expression that defines the start bound */ + int r1, rTemp; /* Registers for holding the start boundary */ + + /* The following constant maps TK_xx codes into corresponding + ** seek opcodes. It depends on a particular ordering of TK_xx + */ + const u8 aMoveOp[] = { + /* TK_GT */ OP_SeekGT, + /* TK_LE */ OP_SeekLE, + /* TK_LT */ OP_SeekLT, + /* TK_GE */ OP_SeekGE + }; + assert( TK_LE==TK_GT+1 ); /* Make sure the ordering.. */ + assert( TK_LT==TK_GT+2 ); /* ... of the TK_xx values... */ + assert( TK_GE==TK_GT+3 ); /* ... is correcct. */ + + assert( (pStart->wtFlags & TERM_VNULL)==0 ); + testcase( pStart->wtFlags & TERM_VIRTUAL ); + pX = pStart->pExpr; + assert( pX!=0 ); + testcase( pStart->leftCursor!=iCur ); /* transitive constraints */ + r1 = sqlite3ExprCodeTemp(pParse, pX->pRight, &rTemp); + sqlite3VdbeAddOp3(v, aMoveOp[pX->op-TK_GT], iCur, addrBrk, r1); + VdbeComment((v, "pk")); + VdbeCoverageIf(v, pX->op==TK_GT); + VdbeCoverageIf(v, pX->op==TK_LE); + VdbeCoverageIf(v, pX->op==TK_LT); + VdbeCoverageIf(v, pX->op==TK_GE); + sqlite3ExprCacheAffinityChange(pParse, r1, 1); + sqlite3ReleaseTempReg(pParse, rTemp); + disableTerm(pLevel, pStart); + }else{ + sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iCur, addrBrk); + VdbeCoverageIf(v, bRev==0); + VdbeCoverageIf(v, bRev!=0); + } + if( pEnd ){ + Expr *pX; + pX = pEnd->pExpr; + assert( pX!=0 ); + assert( (pEnd->wtFlags & TERM_VNULL)==0 ); + testcase( pEnd->leftCursor!=iCur ); /* Transitive constraints */ + testcase( pEnd->wtFlags & TERM_VIRTUAL ); + memEndValue = ++pParse->nMem; + sqlite3ExprCode(pParse, pX->pRight, memEndValue); + if( pX->op==TK_LT || pX->op==TK_GT ){ + testOp = bRev ? OP_Le : OP_Ge; + }else{ + testOp = bRev ? OP_Lt : OP_Gt; + } + disableTerm(pLevel, pEnd); + } + start = sqlite3VdbeCurrentAddr(v); + pLevel->op = bRev ? OP_Prev : OP_Next; + pLevel->p1 = iCur; + pLevel->p2 = start; + assert( pLevel->p5==0 ); + if( testOp!=OP_Noop ){ + iRowidReg = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Rowid, iCur, iRowidReg); + sqlite3ExprCacheStore(pParse, iCur, -1, iRowidReg); + sqlite3VdbeAddOp3(v, testOp, memEndValue, addrBrk, iRowidReg); + VdbeCoverageIf(v, testOp==OP_Le); + VdbeCoverageIf(v, testOp==OP_Lt); + VdbeCoverageIf(v, testOp==OP_Ge); + VdbeCoverageIf(v, testOp==OP_Gt); + sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC | SQLITE_JUMPIFNULL); + } + }else if( pLoop->wsFlags & WHERE_INDEXED ){ + /* Case 4: A scan using an index. + ** + ** The WHERE clause may contain zero or more equality + ** terms ("==" or "IN" operators) that refer to the N + ** left-most columns of the index. It may also contain + ** inequality constraints (>, <, >= or <=) on the indexed + ** column that immediately follows the N equalities. Only + ** the right-most column can be an inequality - the rest must + ** use the "==" and "IN" operators. For example, if the + ** index is on (x,y,z), then the following clauses are all + ** optimized: + ** + ** x=5 + ** x=5 AND y=10 + ** x=5 AND y<10 + ** x=5 AND y>5 AND y<10 + ** x=5 AND y=5 AND z<=10 + ** + ** The z<10 term of the following cannot be used, only + ** the x=5 term: + ** + ** x=5 AND z<10 + ** + ** N may be zero if there are inequality constraints. + ** If there are no inequality constraints, then N is at + ** least one. + ** + ** This case is also used when there are no WHERE clause + ** constraints but an index is selected anyway, in order + ** to force the output order to conform to an ORDER BY. + */ + static const u8 aStartOp[] = { + 0, + 0, + OP_Rewind, /* 2: (!start_constraints && startEq && !bRev) */ + OP_Last, /* 3: (!start_constraints && startEq && bRev) */ + OP_SeekGT, /* 4: (start_constraints && !startEq && !bRev) */ + OP_SeekLT, /* 5: (start_constraints && !startEq && bRev) */ + OP_SeekGE, /* 6: (start_constraints && startEq && !bRev) */ + OP_SeekLE /* 7: (start_constraints && startEq && bRev) */ + }; + static const u8 aEndOp[] = { + OP_IdxGE, /* 0: (end_constraints && !bRev && !endEq) */ + OP_IdxGT, /* 1: (end_constraints && !bRev && endEq) */ + OP_IdxLE, /* 2: (end_constraints && bRev && !endEq) */ + OP_IdxLT, /* 3: (end_constraints && bRev && endEq) */ + }; + u16 nEq = pLoop->u.btree.nEq; /* Number of == or IN terms */ + int regBase; /* Base register holding constraint values */ + WhereTerm *pRangeStart = 0; /* Inequality constraint at range start */ + WhereTerm *pRangeEnd = 0; /* Inequality constraint at range end */ + int startEq; /* True if range start uses ==, >= or <= */ + int endEq; /* True if range end uses ==, >= or <= */ + int start_constraints; /* Start of range is constrained */ + int nConstraint; /* Number of constraint terms */ + Index *pIdx; /* The index we will be using */ + int iIdxCur; /* The VDBE cursor for the index */ + int nExtraReg = 0; /* Number of extra registers needed */ + int op; /* Instruction opcode */ + char *zStartAff; /* Affinity for start of range constraint */ + char cEndAff = 0; /* Affinity for end of range constraint */ + u8 bSeekPastNull = 0; /* True to seek past initial nulls */ + u8 bStopAtNull = 0; /* Add condition to terminate at NULLs */ + + pIdx = pLoop->u.btree.pIndex; + iIdxCur = pLevel->iIdxCur; + assert( nEq>=pLoop->u.btree.nSkip ); + + /* If this loop satisfies a sort order (pOrderBy) request that + ** was passed to this function to implement a "SELECT min(x) ..." + ** query, then the caller will only allow the loop to run for + ** a single iteration. This means that the first row returned + ** should not have a NULL value stored in 'x'. If column 'x' is + ** the first one after the nEq equality constraints in the index, + ** this requires some special handling. + */ + assert( pWInfo->pOrderBy==0 + || pWInfo->pOrderBy->nExpr==1 + || (pWInfo->wctrlFlags&WHERE_ORDERBY_MIN)==0 ); + if( (pWInfo->wctrlFlags&WHERE_ORDERBY_MIN)!=0 + && pWInfo->nOBSat>0 + && (pIdx->nKeyCol>nEq) + ){ + assert( pLoop->u.btree.nSkip==0 ); + bSeekPastNull = 1; + nExtraReg = 1; + } + + /* Find any inequality constraint terms for the start and end + ** of the range. + */ + j = nEq; + if( pLoop->wsFlags & WHERE_BTM_LIMIT ){ + pRangeStart = pLoop->aLTerm[j++]; + nExtraReg = 1; + } + if( pLoop->wsFlags & WHERE_TOP_LIMIT ){ + pRangeEnd = pLoop->aLTerm[j++]; + nExtraReg = 1; + if( pRangeStart==0 + && (j = pIdx->aiColumn[nEq])>=0 + && pIdx->pTable->aCol[j].notNull==0 + ){ + bSeekPastNull = 1; + } + } + assert( pRangeEnd==0 || (pRangeEnd->wtFlags & TERM_VNULL)==0 ); + + /* Generate code to evaluate all constraint terms using == or IN + ** and store the values of those terms in an array of registers + ** starting at regBase. + */ + regBase = codeAllEqualityTerms(pParse,pLevel,bRev,nExtraReg,&zStartAff); + assert( zStartAff==0 || sqlite3Strlen30(zStartAff)>=nEq ); + if( zStartAff ) cEndAff = zStartAff[nEq]; + addrNxt = pLevel->addrNxt; + + /* If we are doing a reverse order scan on an ascending index, or + ** a forward order scan on a descending index, interchange the + ** start and end terms (pRangeStart and pRangeEnd). + */ + if( (nEqnKeyCol && bRev==(pIdx->aSortOrder[nEq]==SQLITE_SO_ASC)) + || (bRev && pIdx->nKeyCol==nEq) + ){ + SWAP(WhereTerm *, pRangeEnd, pRangeStart); + SWAP(u8, bSeekPastNull, bStopAtNull); + } + + testcase( pRangeStart && (pRangeStart->eOperator & WO_LE)!=0 ); + testcase( pRangeStart && (pRangeStart->eOperator & WO_GE)!=0 ); + testcase( pRangeEnd && (pRangeEnd->eOperator & WO_LE)!=0 ); + testcase( pRangeEnd && (pRangeEnd->eOperator & WO_GE)!=0 ); + startEq = !pRangeStart || pRangeStart->eOperator & (WO_LE|WO_GE); + endEq = !pRangeEnd || pRangeEnd->eOperator & (WO_LE|WO_GE); + start_constraints = pRangeStart || nEq>0; + + /* Seek the index cursor to the start of the range. */ + nConstraint = nEq; + if( pRangeStart ){ + Expr *pRight = pRangeStart->pExpr->pRight; + sqlite3ExprCode(pParse, pRight, regBase+nEq); + if( (pRangeStart->wtFlags & TERM_VNULL)==0 + && sqlite3ExprCanBeNull(pRight) + ){ + sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt); + VdbeCoverage(v); + } + if( zStartAff ){ + if( sqlite3CompareAffinity(pRight, zStartAff[nEq])==SQLITE_AFF_NONE){ + /* Since the comparison is to be performed with no conversions + ** applied to the operands, set the affinity to apply to pRight to + ** SQLITE_AFF_NONE. */ + zStartAff[nEq] = SQLITE_AFF_NONE; + } + if( sqlite3ExprNeedsNoAffinityChange(pRight, zStartAff[nEq]) ){ + zStartAff[nEq] = SQLITE_AFF_NONE; + } + } + nConstraint++; + testcase( pRangeStart->wtFlags & TERM_VIRTUAL ); + }else if( bSeekPastNull ){ + sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); + nConstraint++; + startEq = 0; + start_constraints = 1; + } + codeApplyAffinity(pParse, regBase, nConstraint - bSeekPastNull, zStartAff); + op = aStartOp[(start_constraints<<2) + (startEq<<1) + bRev]; + assert( op!=0 ); + sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint); + VdbeCoverage(v); + VdbeCoverageIf(v, op==OP_Rewind); testcase( op==OP_Rewind ); + VdbeCoverageIf(v, op==OP_Last); testcase( op==OP_Last ); + VdbeCoverageIf(v, op==OP_SeekGT); testcase( op==OP_SeekGT ); + VdbeCoverageIf(v, op==OP_SeekGE); testcase( op==OP_SeekGE ); + VdbeCoverageIf(v, op==OP_SeekLE); testcase( op==OP_SeekLE ); + VdbeCoverageIf(v, op==OP_SeekLT); testcase( op==OP_SeekLT ); + + /* Load the value for the inequality constraint at the end of the + ** range (if any). + */ + nConstraint = nEq; + if( pRangeEnd ){ + Expr *pRight = pRangeEnd->pExpr->pRight; + sqlite3ExprCacheRemove(pParse, regBase+nEq, 1); + sqlite3ExprCode(pParse, pRight, regBase+nEq); + if( (pRangeEnd->wtFlags & TERM_VNULL)==0 + && sqlite3ExprCanBeNull(pRight) + ){ + sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt); + VdbeCoverage(v); + } + if( sqlite3CompareAffinity(pRight, cEndAff)!=SQLITE_AFF_NONE + && !sqlite3ExprNeedsNoAffinityChange(pRight, cEndAff) + ){ + codeApplyAffinity(pParse, regBase+nEq, 1, &cEndAff); + } + nConstraint++; + testcase( pRangeEnd->wtFlags & TERM_VIRTUAL ); + }else if( bStopAtNull ){ + sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); + endEq = 0; + nConstraint++; + } + sqlite3DbFree(db, zStartAff); + + /* Top of the loop body */ + pLevel->p2 = sqlite3VdbeCurrentAddr(v); + + /* Check if the index cursor is past the end of the range. */ + if( nConstraint ){ + op = aEndOp[bRev*2 + endEq]; + sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint); + testcase( op==OP_IdxGT ); VdbeCoverageIf(v, op==OP_IdxGT ); + testcase( op==OP_IdxGE ); VdbeCoverageIf(v, op==OP_IdxGE ); + testcase( op==OP_IdxLT ); VdbeCoverageIf(v, op==OP_IdxLT ); + testcase( op==OP_IdxLE ); VdbeCoverageIf(v, op==OP_IdxLE ); + } + + /* Seek the table cursor, if required */ + disableTerm(pLevel, pRangeStart); + disableTerm(pLevel, pRangeEnd); + if( omitTable ){ + /* pIdx is a covering index. No need to access the main table. */ + }else if( HasRowid(pIdx->pTable) ){ + iRowidReg = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_IdxRowid, iIdxCur, iRowidReg); + sqlite3ExprCacheStore(pParse, iCur, -1, iRowidReg); + sqlite3VdbeAddOp2(v, OP_Seek, iCur, iRowidReg); /* Deferred seek */ + }else if( iCur!=iIdxCur ){ + Index *pPk = sqlite3PrimaryKeyIndex(pIdx->pTable); + iRowidReg = sqlite3GetTempRange(pParse, pPk->nKeyCol); + for(j=0; jnKeyCol; j++){ + k = sqlite3ColumnOfIndex(pIdx, pPk->aiColumn[j]); + sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, k, iRowidReg+j); + } + sqlite3VdbeAddOp4Int(v, OP_NotFound, iCur, addrCont, + iRowidReg, pPk->nKeyCol); VdbeCoverage(v); + } + + /* Record the instruction used to terminate the loop. Disable + ** WHERE clause terms made redundant by the index range scan. + */ + if( pLoop->wsFlags & WHERE_ONEROW ){ + pLevel->op = OP_Noop; + }else if( bRev ){ + pLevel->op = OP_Prev; + }else{ + pLevel->op = OP_Next; + } + pLevel->p1 = iIdxCur; + pLevel->p3 = (pLoop->wsFlags&WHERE_UNQ_WANTED)!=0 ? 1:0; + if( (pLoop->wsFlags & WHERE_CONSTRAINT)==0 ){ + pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP; + }else{ + assert( pLevel->p5==0 ); + } + }else + +#ifndef SQLITE_OMIT_OR_OPTIMIZATION + if( pLoop->wsFlags & WHERE_MULTI_OR ){ + /* Case 5: Two or more separately indexed terms connected by OR + ** + ** Example: + ** + ** CREATE TABLE t1(a,b,c,d); + ** CREATE INDEX i1 ON t1(a); + ** CREATE INDEX i2 ON t1(b); + ** CREATE INDEX i3 ON t1(c); + ** + ** SELECT * FROM t1 WHERE a=5 OR b=7 OR (c=11 AND d=13) + ** + ** In the example, there are three indexed terms connected by OR. + ** The top of the loop looks like this: + ** + ** Null 1 # Zero the rowset in reg 1 + ** + ** Then, for each indexed term, the following. The arguments to + ** RowSetTest are such that the rowid of the current row is inserted + ** into the RowSet. If it is already present, control skips the + ** Gosub opcode and jumps straight to the code generated by WhereEnd(). + ** + ** sqlite3WhereBegin() + ** RowSetTest # Insert rowid into rowset + ** Gosub 2 A + ** sqlite3WhereEnd() + ** + ** Following the above, code to terminate the loop. Label A, the target + ** of the Gosub above, jumps to the instruction right after the Goto. + ** + ** Null 1 # Zero the rowset in reg 1 + ** Goto B # The loop is finished. + ** + ** A: # Return data, whatever. + ** + ** Return 2 # Jump back to the Gosub + ** + ** B: + ** + ** Added 2014-05-26: If the table is a WITHOUT ROWID table, then + ** use an ephermeral index instead of a RowSet to record the primary + ** keys of the rows we have already seen. + ** + */ + WhereClause *pOrWc; /* The OR-clause broken out into subterms */ + SrcList *pOrTab; /* Shortened table list or OR-clause generation */ + Index *pCov = 0; /* Potential covering index (or NULL) */ + int iCovCur = pParse->nTab++; /* Cursor used for index scans (if any) */ + + int regReturn = ++pParse->nMem; /* Register used with OP_Gosub */ + int regRowset = 0; /* Register for RowSet object */ + int regRowid = 0; /* Register holding rowid */ + int iLoopBody = sqlite3VdbeMakeLabel(v); /* Start of loop body */ + int iRetInit; /* Address of regReturn init */ + int untestedTerms = 0; /* Some terms not completely tested */ + int ii; /* Loop counter */ + Expr *pAndExpr = 0; /* An ".. AND (...)" expression */ + Table *pTab = pTabItem->pTab; + + pTerm = pLoop->aLTerm[0]; + assert( pTerm!=0 ); + assert( pTerm->eOperator & WO_OR ); + assert( (pTerm->wtFlags & TERM_ORINFO)!=0 ); + pOrWc = &pTerm->u.pOrInfo->wc; + pLevel->op = OP_Return; + pLevel->p1 = regReturn; + + /* Set up a new SrcList in pOrTab containing the table being scanned + ** by this loop in the a[0] slot and all notReady tables in a[1..] slots. + ** This becomes the SrcList in the recursive call to sqlite3WhereBegin(). + */ + if( pWInfo->nLevel>1 ){ + int nNotReady; /* The number of notReady tables */ + struct SrcList_item *origSrc; /* Original list of tables */ + nNotReady = pWInfo->nLevel - iLevel - 1; + pOrTab = sqlite3StackAllocRaw(db, + sizeof(*pOrTab)+ nNotReady*sizeof(pOrTab->a[0])); + if( pOrTab==0 ) return notReady; + pOrTab->nAlloc = (u8)(nNotReady + 1); + pOrTab->nSrc = pOrTab->nAlloc; + memcpy(pOrTab->a, pTabItem, sizeof(*pTabItem)); + origSrc = pWInfo->pTabList->a; + for(k=1; k<=nNotReady; k++){ + memcpy(&pOrTab->a[k], &origSrc[pLevel[k].iFrom], sizeof(pOrTab->a[k])); + } + }else{ + pOrTab = pWInfo->pTabList; + } + + /* Initialize the rowset register to contain NULL. An SQL NULL is + ** equivalent to an empty rowset. Or, create an ephermeral index + ** capable of holding primary keys in the case of a WITHOUT ROWID. + ** + ** Also initialize regReturn to contain the address of the instruction + ** immediately following the OP_Return at the bottom of the loop. This + ** is required in a few obscure LEFT JOIN cases where control jumps + ** over the top of the loop into the body of it. In this case the + ** correct response for the end-of-loop code (the OP_Return) is to + ** fall through to the next instruction, just as an OP_Next does if + ** called on an uninitialized cursor. + */ + if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){ + if( HasRowid(pTab) ){ + regRowset = ++pParse->nMem; + sqlite3VdbeAddOp2(v, OP_Null, 0, regRowset); + }else{ + Index *pPk = sqlite3PrimaryKeyIndex(pTab); + regRowset = pParse->nTab++; + sqlite3VdbeAddOp2(v, OP_OpenEphemeral, regRowset, pPk->nKeyCol); + sqlite3VdbeSetP4KeyInfo(pParse, pPk); + } + regRowid = ++pParse->nMem; + } + iRetInit = sqlite3VdbeAddOp2(v, OP_Integer, 0, regReturn); + + /* If the original WHERE clause is z of the form: (x1 OR x2 OR ...) AND y + ** Then for every term xN, evaluate as the subexpression: xN AND z + ** That way, terms in y that are factored into the disjunction will + ** be picked up by the recursive calls to sqlite3WhereBegin() below. + ** + ** Actually, each subexpression is converted to "xN AND w" where w is + ** the "interesting" terms of z - terms that did not originate in the + ** ON or USING clause of a LEFT JOIN, and terms that are usable as + ** indices. + ** + ** This optimization also only applies if the (x1 OR x2 OR ...) term + ** is not contained in the ON clause of a LEFT JOIN. + ** See ticket http://www.sqlite.org/src/info/f2369304e4 + */ + if( pWC->nTerm>1 ){ + int iTerm; + for(iTerm=0; iTermnTerm; iTerm++){ + Expr *pExpr = pWC->a[iTerm].pExpr; + if( &pWC->a[iTerm] == pTerm ) continue; + if( ExprHasProperty(pExpr, EP_FromJoin) ) continue; + testcase( pWC->a[iTerm].wtFlags & TERM_ORINFO ); + testcase( pWC->a[iTerm].wtFlags & TERM_VIRTUAL ); + if( pWC->a[iTerm].wtFlags & (TERM_ORINFO|TERM_VIRTUAL) ) continue; + if( (pWC->a[iTerm].eOperator & WO_ALL)==0 ) continue; + pExpr = sqlite3ExprDup(db, pExpr, 0); + pAndExpr = sqlite3ExprAnd(db, pAndExpr, pExpr); + } + if( pAndExpr ){ + pAndExpr = sqlite3PExpr(pParse, TK_AND, 0, pAndExpr, 0); + } + } + + /* Run a separate WHERE clause for each term of the OR clause. After + ** eliminating duplicates from other WHERE clauses, the action for each + ** sub-WHERE clause is to to invoke the main loop body as a subroutine. + */ + for(ii=0; iinTerm; ii++){ + WhereTerm *pOrTerm = &pOrWc->a[ii]; + if( pOrTerm->leftCursor==iCur || (pOrTerm->eOperator & WO_AND)!=0 ){ + WhereInfo *pSubWInfo; /* Info for single OR-term scan */ + Expr *pOrExpr = pOrTerm->pExpr; /* Current OR clause term */ + int j1 = 0; /* Address of jump operation */ + if( pAndExpr && !ExprHasProperty(pOrExpr, EP_FromJoin) ){ + pAndExpr->pLeft = pOrExpr; + pOrExpr = pAndExpr; + } + /* Loop through table entries that match term pOrTerm. */ + pSubWInfo = sqlite3WhereBegin(pParse, pOrTab, pOrExpr, 0, 0, + WHERE_OMIT_OPEN_CLOSE | WHERE_AND_ONLY | + WHERE_FORCE_TABLE | WHERE_ONETABLE_ONLY, iCovCur); + assert( pSubWInfo || pParse->nErr || db->mallocFailed ); + if( pSubWInfo ){ + WhereLoop *pSubLoop; + explainOneScan( + pParse, pOrTab, &pSubWInfo->a[0], iLevel, pLevel->iFrom, 0 + ); + /* This is the sub-WHERE clause body. First skip over + ** duplicate rows from prior sub-WHERE clauses, and record the + ** rowid (or PRIMARY KEY) for the current row so that the same + ** row will be skipped in subsequent sub-WHERE clauses. + */ + if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){ + int r; + int iSet = ((ii==pOrWc->nTerm-1)?-1:ii); + if( HasRowid(pTab) ){ + r = sqlite3ExprCodeGetColumn(pParse, pTab, -1, iCur, regRowid, 0); + j1 = sqlite3VdbeAddOp4Int(v, OP_RowSetTest, regRowset, 0, r,iSet); + VdbeCoverage(v); + }else{ + Index *pPk = sqlite3PrimaryKeyIndex(pTab); + int nPk = pPk->nKeyCol; + int iPk; + + /* Read the PK into an array of temp registers. */ + r = sqlite3GetTempRange(pParse, nPk); + for(iPk=0; iPkaiColumn[iPk]; + sqlite3ExprCodeGetColumn(pParse, pTab, iCol, iCur, r+iPk, 0); + } + + /* Check if the temp table already contains this key. If so, + ** the row has already been included in the result set and + ** can be ignored (by jumping past the Gosub below). Otherwise, + ** insert the key into the temp table and proceed with processing + ** the row. + ** + ** Use some of the same optimizations as OP_RowSetTest: If iSet + ** is zero, assume that the key cannot already be present in + ** the temp table. And if iSet is -1, assume that there is no + ** need to insert the key into the temp table, as it will never + ** be tested for. */ + if( iSet ){ + j1 = sqlite3VdbeAddOp4Int(v, OP_Found, regRowset, 0, r, nPk); + VdbeCoverage(v); + } + if( iSet>=0 ){ + sqlite3VdbeAddOp3(v, OP_MakeRecord, r, nPk, regRowid); + sqlite3VdbeAddOp3(v, OP_IdxInsert, regRowset, regRowid, 0); + if( iSet ) sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); + } + + /* Release the array of temp registers */ + sqlite3ReleaseTempRange(pParse, r, nPk); + } + } + + /* Invoke the main loop body as a subroutine */ + sqlite3VdbeAddOp2(v, OP_Gosub, regReturn, iLoopBody); + + /* Jump here (skipping the main loop body subroutine) if the + ** current sub-WHERE row is a duplicate from prior sub-WHEREs. */ + if( j1 ) sqlite3VdbeJumpHere(v, j1); + + /* The pSubWInfo->untestedTerms flag means that this OR term + ** contained one or more AND term from a notReady table. The + ** terms from the notReady table could not be tested and will + ** need to be tested later. + */ + if( pSubWInfo->untestedTerms ) untestedTerms = 1; + + /* If all of the OR-connected terms are optimized using the same + ** index, and the index is opened using the same cursor number + ** by each call to sqlite3WhereBegin() made by this loop, it may + ** be possible to use that index as a covering index. + ** + ** If the call to sqlite3WhereBegin() above resulted in a scan that + ** uses an index, and this is either the first OR-connected term + ** processed or the index is the same as that used by all previous + ** terms, set pCov to the candidate covering index. Otherwise, set + ** pCov to NULL to indicate that no candidate covering index will + ** be available. + */ + pSubLoop = pSubWInfo->a[0].pWLoop; + assert( (pSubLoop->wsFlags & WHERE_AUTO_INDEX)==0 ); + if( (pSubLoop->wsFlags & WHERE_INDEXED)!=0 + && (ii==0 || pSubLoop->u.btree.pIndex==pCov) + && (HasRowid(pTab) || !IsPrimaryKeyIndex(pSubLoop->u.btree.pIndex)) + ){ + assert( pSubWInfo->a[0].iIdxCur==iCovCur ); + pCov = pSubLoop->u.btree.pIndex; + }else{ + pCov = 0; + } + + /* Finish the loop through table entries that match term pOrTerm. */ + sqlite3WhereEnd(pSubWInfo); + } + } + } + pLevel->u.pCovidx = pCov; + if( pCov ) pLevel->iIdxCur = iCovCur; + if( pAndExpr ){ + pAndExpr->pLeft = 0; + sqlite3ExprDelete(db, pAndExpr); + } + sqlite3VdbeChangeP1(v, iRetInit, sqlite3VdbeCurrentAddr(v)); + sqlite3VdbeAddOp2(v, OP_Goto, 0, pLevel->addrBrk); + sqlite3VdbeResolveLabel(v, iLoopBody); + + if( pWInfo->nLevel>1 ) sqlite3StackFree(db, pOrTab); + if( !untestedTerms ) disableTerm(pLevel, pTerm); + }else +#endif /* SQLITE_OMIT_OR_OPTIMIZATION */ + + { + /* Case 6: There is no usable index. We must do a complete + ** scan of the entire table. + */ + static const u8 aStep[] = { OP_Next, OP_Prev }; + static const u8 aStart[] = { OP_Rewind, OP_Last }; + assert( bRev==0 || bRev==1 ); + if( pTabItem->isRecursive ){ + /* Tables marked isRecursive have only a single row that is stored in + ** a pseudo-cursor. No need to Rewind or Next such cursors. */ + pLevel->op = OP_Noop; + }else{ + pLevel->op = aStep[bRev]; + pLevel->p1 = iCur; + pLevel->p2 = 1 + sqlite3VdbeAddOp2(v, aStart[bRev], iCur, addrBrk); + VdbeCoverageIf(v, bRev==0); + VdbeCoverageIf(v, bRev!=0); + pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP; + } + } + + /* Insert code to test every subexpression that can be completely + ** computed using the current set of tables. + */ + for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){ + Expr *pE; + testcase( pTerm->wtFlags & TERM_VIRTUAL ); + testcase( pTerm->wtFlags & TERM_CODED ); + if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; + if( (pTerm->prereqAll & pLevel->notReady)!=0 ){ + testcase( pWInfo->untestedTerms==0 + && (pWInfo->wctrlFlags & WHERE_ONETABLE_ONLY)!=0 ); + pWInfo->untestedTerms = 1; + continue; + } + pE = pTerm->pExpr; + assert( pE!=0 ); + if( pLevel->iLeftJoin && !ExprHasProperty(pE, EP_FromJoin) ){ + continue; + } + sqlite3ExprIfFalse(pParse, pE, addrCont, SQLITE_JUMPIFNULL); + pTerm->wtFlags |= TERM_CODED; + } + + /* Insert code to test for implied constraints based on transitivity + ** of the "==" operator. + ** + ** Example: If the WHERE clause contains "t1.a=t2.b" and "t2.b=123" + ** and we are coding the t1 loop and the t2 loop has not yet coded, + ** then we cannot use the "t1.a=t2.b" constraint, but we can code + ** the implied "t1.a=123" constraint. + */ + for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){ + Expr *pE, *pEAlt; + WhereTerm *pAlt; + if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; + if( pTerm->eOperator!=(WO_EQUIV|WO_EQ) ) continue; + if( pTerm->leftCursor!=iCur ) continue; + if( pLevel->iLeftJoin ) continue; + pE = pTerm->pExpr; + assert( !ExprHasProperty(pE, EP_FromJoin) ); + assert( (pTerm->prereqRight & pLevel->notReady)!=0 ); + pAlt = findTerm(pWC, iCur, pTerm->u.leftColumn, notReady, WO_EQ|WO_IN, 0); + if( pAlt==0 ) continue; + if( pAlt->wtFlags & (TERM_CODED) ) continue; + testcase( pAlt->eOperator & WO_EQ ); + testcase( pAlt->eOperator & WO_IN ); + VdbeModuleComment((v, "begin transitive constraint")); + pEAlt = sqlite3StackAllocRaw(db, sizeof(*pEAlt)); + if( pEAlt ){ + *pEAlt = *pAlt->pExpr; + pEAlt->pLeft = pE->pLeft; + sqlite3ExprIfFalse(pParse, pEAlt, addrCont, SQLITE_JUMPIFNULL); + sqlite3StackFree(db, pEAlt); + } + } + + /* For a LEFT OUTER JOIN, generate code that will record the fact that + ** at least one row of the right table has matched the left table. + */ + if( pLevel->iLeftJoin ){ + pLevel->addrFirst = sqlite3VdbeCurrentAddr(v); + sqlite3VdbeAddOp2(v, OP_Integer, 1, pLevel->iLeftJoin); + VdbeComment((v, "record LEFT JOIN hit")); + sqlite3ExprCacheClear(pParse); + for(pTerm=pWC->a, j=0; jnTerm; j++, pTerm++){ + testcase( pTerm->wtFlags & TERM_VIRTUAL ); + testcase( pTerm->wtFlags & TERM_CODED ); + if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; + if( (pTerm->prereqAll & pLevel->notReady)!=0 ){ + assert( pWInfo->untestedTerms ); + continue; + } + assert( pTerm->pExpr ); + sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL); + pTerm->wtFlags |= TERM_CODED; + } + } + + return pLevel->notReady; +} + +#if defined(WHERETRACE_ENABLED) && defined(SQLITE_ENABLE_TREE_EXPLAIN) +/* +** Generate "Explanation" text for a WhereTerm. +*/ +static void whereExplainTerm(Vdbe *v, WhereTerm *pTerm){ + char zType[4]; + memcpy(zType, "...", 4); + if( pTerm->wtFlags & TERM_VIRTUAL ) zType[0] = 'V'; + if( pTerm->eOperator & WO_EQUIV ) zType[1] = 'E'; + if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) zType[2] = 'L'; + sqlite3ExplainPrintf(v, "%s ", zType); + sqlite3ExplainExpr(v, pTerm->pExpr); +} +#endif /* WHERETRACE_ENABLED && SQLITE_ENABLE_TREE_EXPLAIN */ + + +#ifdef WHERETRACE_ENABLED +/* +** Print a WhereLoop object for debugging purposes +*/ +static void whereLoopPrint(WhereLoop *p, WhereClause *pWC){ + WhereInfo *pWInfo = pWC->pWInfo; + int nb = 1+(pWInfo->pTabList->nSrc+7)/8; + struct SrcList_item *pItem = pWInfo->pTabList->a + p->iTab; + Table *pTab = pItem->pTab; + sqlite3DebugPrintf("%c%2d.%0*llx.%0*llx", p->cId, + p->iTab, nb, p->maskSelf, nb, p->prereq); + sqlite3DebugPrintf(" %12s", + pItem->zAlias ? pItem->zAlias : pTab->zName); + if( (p->wsFlags & WHERE_VIRTUALTABLE)==0 ){ + const char *zName; + if( p->u.btree.pIndex && (zName = p->u.btree.pIndex->zName)!=0 ){ + if( strncmp(zName, "sqlite_autoindex_", 17)==0 ){ + int i = sqlite3Strlen30(zName) - 1; + while( zName[i]!='_' ) i--; + zName += i; + } + sqlite3DebugPrintf(".%-16s %2d", zName, p->u.btree.nEq); + }else{ + sqlite3DebugPrintf("%20s",""); + } + }else{ + char *z; + if( p->u.vtab.idxStr ){ + z = sqlite3_mprintf("(%d,\"%s\",%x)", + p->u.vtab.idxNum, p->u.vtab.idxStr, p->u.vtab.omitMask); + }else{ + z = sqlite3_mprintf("(%d,%x)", p->u.vtab.idxNum, p->u.vtab.omitMask); + } + sqlite3DebugPrintf(" %-19s", z); + sqlite3_free(z); + } + sqlite3DebugPrintf(" f %04x N %d", p->wsFlags, p->nLTerm); + sqlite3DebugPrintf(" cost %d,%d,%d\n", p->rSetup, p->rRun, p->nOut); +#ifdef SQLITE_ENABLE_TREE_EXPLAIN + /* If the 0x100 bit of wheretracing is set, then show all of the constraint + ** expressions in the WhereLoop.aLTerm[] array. + */ + if( p->nLTerm && (sqlite3WhereTrace & 0x100)!=0 ){ /* WHERETRACE 0x100 */ + int i; + Vdbe *v = pWInfo->pParse->pVdbe; + sqlite3ExplainBegin(v); + for(i=0; inLTerm; i++){ + WhereTerm *pTerm = p->aLTerm[i]; + if( pTerm==0 ) continue; + sqlite3ExplainPrintf(v, " (%d) #%-2d ", i+1, (int)(pTerm-pWC->a)); + sqlite3ExplainPush(v); + whereExplainTerm(v, pTerm); + sqlite3ExplainPop(v); + sqlite3ExplainNL(v); + } + sqlite3ExplainFinish(v); + sqlite3DebugPrintf("%s", sqlite3VdbeExplanation(v)); + } +#endif +} +#endif + +/* +** Convert bulk memory into a valid WhereLoop that can be passed +** to whereLoopClear harmlessly. +*/ +static void whereLoopInit(WhereLoop *p){ + p->aLTerm = p->aLTermSpace; + p->nLTerm = 0; + p->nLSlot = ArraySize(p->aLTermSpace); + p->wsFlags = 0; +} + +/* +** Clear the WhereLoop.u union. Leave WhereLoop.pLTerm intact. +*/ +static void whereLoopClearUnion(sqlite3 *db, WhereLoop *p){ + if( p->wsFlags & (WHERE_VIRTUALTABLE|WHERE_AUTO_INDEX) ){ + if( (p->wsFlags & WHERE_VIRTUALTABLE)!=0 && p->u.vtab.needFree ){ + sqlite3_free(p->u.vtab.idxStr); + p->u.vtab.needFree = 0; + p->u.vtab.idxStr = 0; + }else if( (p->wsFlags & WHERE_AUTO_INDEX)!=0 && p->u.btree.pIndex!=0 ){ + sqlite3DbFree(db, p->u.btree.pIndex->zColAff); + sqlite3KeyInfoUnref(p->u.btree.pIndex->pKeyInfo); + sqlite3DbFree(db, p->u.btree.pIndex); + p->u.btree.pIndex = 0; + } + } +} + +/* +** Deallocate internal memory used by a WhereLoop object +*/ +static void whereLoopClear(sqlite3 *db, WhereLoop *p){ + if( p->aLTerm!=p->aLTermSpace ) sqlite3DbFree(db, p->aLTerm); + whereLoopClearUnion(db, p); + whereLoopInit(p); +} + +/* +** Increase the memory allocation for pLoop->aLTerm[] to be at least n. +*/ +static int whereLoopResize(sqlite3 *db, WhereLoop *p, int n){ + WhereTerm **paNew; + if( p->nLSlot>=n ) return SQLITE_OK; + n = (n+7)&~7; + paNew = sqlite3DbMallocRaw(db, sizeof(p->aLTerm[0])*n); + if( paNew==0 ) return SQLITE_NOMEM; + memcpy(paNew, p->aLTerm, sizeof(p->aLTerm[0])*p->nLSlot); + if( p->aLTerm!=p->aLTermSpace ) sqlite3DbFree(db, p->aLTerm); + p->aLTerm = paNew; + p->nLSlot = n; + return SQLITE_OK; +} + +/* +** Transfer content from the second pLoop into the first. +*/ +static int whereLoopXfer(sqlite3 *db, WhereLoop *pTo, WhereLoop *pFrom){ + whereLoopClearUnion(db, pTo); + if( whereLoopResize(db, pTo, pFrom->nLTerm) ){ + memset(&pTo->u, 0, sizeof(pTo->u)); + return SQLITE_NOMEM; + } + memcpy(pTo, pFrom, WHERE_LOOP_XFER_SZ); + memcpy(pTo->aLTerm, pFrom->aLTerm, pTo->nLTerm*sizeof(pTo->aLTerm[0])); + if( pFrom->wsFlags & WHERE_VIRTUALTABLE ){ + pFrom->u.vtab.needFree = 0; + }else if( (pFrom->wsFlags & WHERE_AUTO_INDEX)!=0 ){ + pFrom->u.btree.pIndex = 0; + } + return SQLITE_OK; +} + +/* +** Delete a WhereLoop object +*/ +static void whereLoopDelete(sqlite3 *db, WhereLoop *p){ + whereLoopClear(db, p); + sqlite3DbFree(db, p); +} + +/* +** Free a WhereInfo structure +*/ +static void whereInfoFree(sqlite3 *db, WhereInfo *pWInfo){ + if( ALWAYS(pWInfo) ){ + whereClauseClear(&pWInfo->sWC); + while( pWInfo->pLoops ){ + WhereLoop *p = pWInfo->pLoops; + pWInfo->pLoops = p->pNextLoop; + whereLoopDelete(db, p); + } + sqlite3DbFree(db, pWInfo); + } +} + +/* +** Return TRUE if both of the following are true: +** +** (1) X has the same or lower cost that Y +** (2) X is a proper subset of Y +** +** By "proper subset" we mean that X uses fewer WHERE clause terms +** than Y and that every WHERE clause term used by X is also used +** by Y. +** +** If X is a proper subset of Y then Y is a better choice and ought +** to have a lower cost. This routine returns TRUE when that cost +** relationship is inverted and needs to be adjusted. +*/ +static int whereLoopCheaperProperSubset( + const WhereLoop *pX, /* First WhereLoop to compare */ + const WhereLoop *pY /* Compare against this WhereLoop */ +){ + int i, j; + if( pX->nLTerm >= pY->nLTerm ) return 0; /* X is not a subset of Y */ + if( pX->rRun >= pY->rRun ){ + if( pX->rRun > pY->rRun ) return 0; /* X costs more than Y */ + if( pX->nOut > pY->nOut ) return 0; /* X costs more than Y */ + } + for(i=pX->nLTerm-1; i>=0; i--){ + for(j=pY->nLTerm-1; j>=0; j--){ + if( pY->aLTerm[j]==pX->aLTerm[i] ) break; + } + if( j<0 ) return 0; /* X not a subset of Y since term X[i] not used by Y */ + } + return 1; /* All conditions meet */ +} + +/* +** Try to adjust the cost of WhereLoop pTemplate upwards or downwards so +** that: +** +** (1) pTemplate costs less than any other WhereLoops that are a proper +** subset of pTemplate +** +** (2) pTemplate costs more than any other WhereLoops for which pTemplate +** is a proper subset. +** +** To say "WhereLoop X is a proper subset of Y" means that X uses fewer +** WHERE clause terms than Y and that every WHERE clause term used by X is +** also used by Y. +** +** This adjustment is omitted for SKIPSCAN loops. In a SKIPSCAN loop, the +** WhereLoop.nLTerm field is not an accurate measure of the number of WHERE +** clause terms covered, since some of the first nLTerm entries in aLTerm[] +** will be NULL (because they are skipped). That makes it more difficult +** to compare the loops. We could add extra code to do the comparison, and +** perhaps we will someday. But SKIPSCAN is sufficiently uncommon, and this +** adjustment is sufficient minor, that it is very difficult to construct +** a test case where the extra code would improve the query plan. Better +** to avoid the added complexity and just omit cost adjustments to SKIPSCAN +** loops. +*/ +static void whereLoopAdjustCost(const WhereLoop *p, WhereLoop *pTemplate){ + if( (pTemplate->wsFlags & WHERE_INDEXED)==0 ) return; + if( (pTemplate->wsFlags & WHERE_SKIPSCAN)!=0 ) return; + for(; p; p=p->pNextLoop){ + if( p->iTab!=pTemplate->iTab ) continue; + if( (p->wsFlags & WHERE_INDEXED)==0 ) continue; + if( (p->wsFlags & WHERE_SKIPSCAN)!=0 ) continue; + if( whereLoopCheaperProperSubset(p, pTemplate) ){ + /* Adjust pTemplate cost downward so that it is cheaper than its + ** subset p */ + pTemplate->rRun = p->rRun; + pTemplate->nOut = p->nOut - 1; + }else if( whereLoopCheaperProperSubset(pTemplate, p) ){ + /* Adjust pTemplate cost upward so that it is costlier than p since + ** pTemplate is a proper subset of p */ + pTemplate->rRun = p->rRun; + pTemplate->nOut = p->nOut + 1; + } + } +} + +/* +** Search the list of WhereLoops in *ppPrev looking for one that can be +** supplanted by pTemplate. +** +** Return NULL if the WhereLoop list contains an entry that can supplant +** pTemplate, in other words if pTemplate does not belong on the list. +** +** If pX is a WhereLoop that pTemplate can supplant, then return the +** link that points to pX. +** +** If pTemplate cannot supplant any existing element of the list but needs +** to be added to the list, then return a pointer to the tail of the list. +*/ +static WhereLoop **whereLoopFindLesser( + WhereLoop **ppPrev, + const WhereLoop *pTemplate +){ + WhereLoop *p; + for(p=(*ppPrev); p; ppPrev=&p->pNextLoop, p=*ppPrev){ + if( p->iTab!=pTemplate->iTab || p->iSortIdx!=pTemplate->iSortIdx ){ + /* If either the iTab or iSortIdx values for two WhereLoop are different + ** then those WhereLoops need to be considered separately. Neither is + ** a candidate to replace the other. */ + continue; + } + /* In the current implementation, the rSetup value is either zero + ** or the cost of building an automatic index (NlogN) and the NlogN + ** is the same for compatible WhereLoops. */ + assert( p->rSetup==0 || pTemplate->rSetup==0 + || p->rSetup==pTemplate->rSetup ); + + /* whereLoopAddBtree() always generates and inserts the automatic index + ** case first. Hence compatible candidate WhereLoops never have a larger + ** rSetup. Call this SETUP-INVARIANT */ + assert( p->rSetup>=pTemplate->rSetup ); + + /* If existing WhereLoop p is better than pTemplate, pTemplate can be + ** discarded. WhereLoop p is better if: + ** (1) p has no more dependencies than pTemplate, and + ** (2) p has an equal or lower cost than pTemplate + */ + if( (p->prereq & pTemplate->prereq)==p->prereq /* (1) */ + && p->rSetup<=pTemplate->rSetup /* (2a) */ + && p->rRun<=pTemplate->rRun /* (2b) */ + && p->nOut<=pTemplate->nOut /* (2c) */ + ){ + return 0; /* Discard pTemplate */ + } + + /* If pTemplate is always better than p, then cause p to be overwritten + ** with pTemplate. pTemplate is better than p if: + ** (1) pTemplate has no more dependences than p, and + ** (2) pTemplate has an equal or lower cost than p. + */ + if( (p->prereq & pTemplate->prereq)==pTemplate->prereq /* (1) */ + && p->rRun>=pTemplate->rRun /* (2a) */ + && p->nOut>=pTemplate->nOut /* (2b) */ + ){ + assert( p->rSetup>=pTemplate->rSetup ); /* SETUP-INVARIANT above */ + break; /* Cause p to be overwritten by pTemplate */ + } + } + return ppPrev; +} + +/* +** Insert or replace a WhereLoop entry using the template supplied. +** +** An existing WhereLoop entry might be overwritten if the new template +** is better and has fewer dependencies. Or the template will be ignored +** and no insert will occur if an existing WhereLoop is faster and has +** fewer dependencies than the template. Otherwise a new WhereLoop is +** added based on the template. +** +** If pBuilder->pOrSet is not NULL then we care about only the +** prerequisites and rRun and nOut costs of the N best loops. That +** information is gathered in the pBuilder->pOrSet object. This special +** processing mode is used only for OR clause processing. +** +** When accumulating multiple loops (when pBuilder->pOrSet is NULL) we +** still might overwrite similar loops with the new template if the +** new template is better. Loops may be overwritten if the following +** conditions are met: +** +** (1) They have the same iTab. +** (2) They have the same iSortIdx. +** (3) The template has same or fewer dependencies than the current loop +** (4) The template has the same or lower cost than the current loop +*/ +static int whereLoopInsert(WhereLoopBuilder *pBuilder, WhereLoop *pTemplate){ + WhereLoop **ppPrev, *p; + WhereInfo *pWInfo = pBuilder->pWInfo; + sqlite3 *db = pWInfo->pParse->db; + + /* If pBuilder->pOrSet is defined, then only keep track of the costs + ** and prereqs. + */ + if( pBuilder->pOrSet!=0 ){ +#if WHERETRACE_ENABLED + u16 n = pBuilder->pOrSet->n; + int x = +#endif + whereOrInsert(pBuilder->pOrSet, pTemplate->prereq, pTemplate->rRun, + pTemplate->nOut); +#if WHERETRACE_ENABLED /* 0x8 */ + if( sqlite3WhereTrace & 0x8 ){ + sqlite3DebugPrintf(x?" or-%d: ":" or-X: ", n); + whereLoopPrint(pTemplate, pBuilder->pWC); + } +#endif + return SQLITE_OK; + } + + /* Look for an existing WhereLoop to replace with pTemplate + */ + whereLoopAdjustCost(pWInfo->pLoops, pTemplate); + ppPrev = whereLoopFindLesser(&pWInfo->pLoops, pTemplate); + + if( ppPrev==0 ){ + /* There already exists a WhereLoop on the list that is better + ** than pTemplate, so just ignore pTemplate */ +#if WHERETRACE_ENABLED /* 0x8 */ + if( sqlite3WhereTrace & 0x8 ){ + sqlite3DebugPrintf("ins-noop: "); + whereLoopPrint(pTemplate, pBuilder->pWC); + } +#endif + return SQLITE_OK; + }else{ + p = *ppPrev; + } + + /* If we reach this point it means that either p[] should be overwritten + ** with pTemplate[] if p[] exists, or if p==NULL then allocate a new + ** WhereLoop and insert it. + */ +#if WHERETRACE_ENABLED /* 0x8 */ + if( sqlite3WhereTrace & 0x8 ){ + if( p!=0 ){ + sqlite3DebugPrintf("ins-del: "); + whereLoopPrint(p, pBuilder->pWC); + } + sqlite3DebugPrintf("ins-new: "); + whereLoopPrint(pTemplate, pBuilder->pWC); + } +#endif + if( p==0 ){ + /* Allocate a new WhereLoop to add to the end of the list */ + *ppPrev = p = sqlite3DbMallocRaw(db, sizeof(WhereLoop)); + if( p==0 ) return SQLITE_NOMEM; + whereLoopInit(p); + p->pNextLoop = 0; + }else{ + /* We will be overwriting WhereLoop p[]. But before we do, first + ** go through the rest of the list and delete any other entries besides + ** p[] that are also supplated by pTemplate */ + WhereLoop **ppTail = &p->pNextLoop; + WhereLoop *pToDel; + while( *ppTail ){ + ppTail = whereLoopFindLesser(ppTail, pTemplate); + if( NEVER(ppTail==0) ) break; + pToDel = *ppTail; + if( pToDel==0 ) break; + *ppTail = pToDel->pNextLoop; +#if WHERETRACE_ENABLED /* 0x8 */ + if( sqlite3WhereTrace & 0x8 ){ + sqlite3DebugPrintf("ins-del: "); + whereLoopPrint(pToDel, pBuilder->pWC); + } +#endif + whereLoopDelete(db, pToDel); + } + } + whereLoopXfer(db, p, pTemplate); + if( (p->wsFlags & WHERE_VIRTUALTABLE)==0 ){ + Index *pIndex = p->u.btree.pIndex; + if( pIndex && pIndex->tnum==0 ){ + p->u.btree.pIndex = 0; + } + } + return SQLITE_OK; +} + +/* +** Adjust the WhereLoop.nOut value downward to account for terms of the +** WHERE clause that reference the loop but which are not used by an +** index. +** +** In the current implementation, the first extra WHERE clause term reduces +** the number of output rows by a factor of 10 and each additional term +** reduces the number of output rows by sqrt(2). +*/ +static void whereLoopOutputAdjust(WhereClause *pWC, WhereLoop *pLoop){ + WhereTerm *pTerm, *pX; + Bitmask notAllowed = ~(pLoop->prereq|pLoop->maskSelf); + int i, j; + + if( !OptimizationEnabled(pWC->pWInfo->pParse->db, SQLITE_AdjustOutEst) ){ + return; + } + for(i=pWC->nTerm, pTerm=pWC->a; i>0; i--, pTerm++){ + if( (pTerm->wtFlags & TERM_VIRTUAL)!=0 ) break; + if( (pTerm->prereqAll & pLoop->maskSelf)==0 ) continue; + if( (pTerm->prereqAll & notAllowed)!=0 ) continue; + for(j=pLoop->nLTerm-1; j>=0; j--){ + pX = pLoop->aLTerm[j]; + if( pX==0 ) continue; + if( pX==pTerm ) break; + if( pX->iParent>=0 && (&pWC->a[pX->iParent])==pTerm ) break; + } + if( j<0 ){ + pLoop->nOut += (pTerm->truthProb<=0 ? pTerm->truthProb : -1); + } + } +} + +/* +** We have so far matched pBuilder->pNew->u.btree.nEq terms of the +** index pIndex. Try to match one more. +** +** When this function is called, pBuilder->pNew->nOut contains the +** number of rows expected to be visited by filtering using the nEq +** terms only. If it is modified, this value is restored before this +** function returns. +** +** If pProbe->tnum==0, that means pIndex is a fake index used for the +** INTEGER PRIMARY KEY. +*/ +static int whereLoopAddBtreeIndex( + WhereLoopBuilder *pBuilder, /* The WhereLoop factory */ + struct SrcList_item *pSrc, /* FROM clause term being analyzed */ + Index *pProbe, /* An index on pSrc */ + LogEst nInMul /* log(Number of iterations due to IN) */ +){ + WhereInfo *pWInfo = pBuilder->pWInfo; /* WHERE analyse context */ + Parse *pParse = pWInfo->pParse; /* Parsing context */ + sqlite3 *db = pParse->db; /* Database connection malloc context */ + WhereLoop *pNew; /* Template WhereLoop under construction */ + WhereTerm *pTerm; /* A WhereTerm under consideration */ + int opMask; /* Valid operators for constraints */ + WhereScan scan; /* Iterator for WHERE terms */ + Bitmask saved_prereq; /* Original value of pNew->prereq */ + u16 saved_nLTerm; /* Original value of pNew->nLTerm */ + u16 saved_nEq; /* Original value of pNew->u.btree.nEq */ + u16 saved_nSkip; /* Original value of pNew->u.btree.nSkip */ + u32 saved_wsFlags; /* Original value of pNew->wsFlags */ + LogEst saved_nOut; /* Original value of pNew->nOut */ + int iCol; /* Index of the column in the table */ + int rc = SQLITE_OK; /* Return code */ + LogEst rLogSize; /* Logarithm of table size */ + WhereTerm *pTop = 0, *pBtm = 0; /* Top and bottom range constraints */ + + pNew = pBuilder->pNew; + if( db->mallocFailed ) return SQLITE_NOMEM; + + assert( (pNew->wsFlags & WHERE_VIRTUALTABLE)==0 ); + assert( (pNew->wsFlags & WHERE_TOP_LIMIT)==0 ); + if( pNew->wsFlags & WHERE_BTM_LIMIT ){ + opMask = WO_LT|WO_LE; + }else if( pProbe->tnum<=0 || (pSrc->jointype & JT_LEFT)!=0 ){ + opMask = WO_EQ|WO_IN|WO_GT|WO_GE|WO_LT|WO_LE; + }else{ + opMask = WO_EQ|WO_IN|WO_ISNULL|WO_GT|WO_GE|WO_LT|WO_LE; + } + if( pProbe->bUnordered ) opMask &= ~(WO_GT|WO_GE|WO_LT|WO_LE); + + assert( pNew->u.btree.nEq<=pProbe->nKeyCol ); + if( pNew->u.btree.nEq < pProbe->nKeyCol ){ + iCol = pProbe->aiColumn[pNew->u.btree.nEq]; + }else{ + iCol = -1; + } + pTerm = whereScanInit(&scan, pBuilder->pWC, pSrc->iCursor, iCol, + opMask, pProbe); + saved_nEq = pNew->u.btree.nEq; + saved_nSkip = pNew->u.btree.nSkip; + saved_nLTerm = pNew->nLTerm; + saved_wsFlags = pNew->wsFlags; + saved_prereq = pNew->prereq; + saved_nOut = pNew->nOut; + pNew->rSetup = 0; + rLogSize = estLog(pProbe->aiRowLogEst[0]); + + /* Consider using a skip-scan if there are no WHERE clause constraints + ** available for the left-most terms of the index, and if the average + ** number of repeats in the left-most terms is at least 18. + ** + ** The magic number 18 is selected on the basis that scanning 17 rows + ** is almost always quicker than an index seek (even though if the index + ** contains fewer than 2^17 rows we assume otherwise in other parts of + ** the code). And, even if it is not, it should not be too much slower. + ** On the other hand, the extra seeks could end up being significantly + ** more expensive. */ + assert( 42==sqlite3LogEst(18) ); + if( pTerm==0 + && saved_nEq==saved_nSkip + && saved_nEq+1nKeyCol + && pProbe->aiRowLogEst[saved_nEq+1]>=42 /* TUNING: Minimum for skip-scan */ + && (rc = whereLoopResize(db, pNew, pNew->nLTerm+1))==SQLITE_OK + ){ + LogEst nIter; + pNew->u.btree.nEq++; + pNew->u.btree.nSkip++; + pNew->aLTerm[pNew->nLTerm++] = 0; + pNew->wsFlags |= WHERE_SKIPSCAN; + nIter = pProbe->aiRowLogEst[saved_nEq] - pProbe->aiRowLogEst[saved_nEq+1]; + pNew->nOut -= nIter; + whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, nIter + nInMul); + pNew->nOut = saved_nOut; + } + for(; rc==SQLITE_OK && pTerm!=0; pTerm = whereScanNext(&scan)){ + u16 eOp = pTerm->eOperator; /* Shorthand for pTerm->eOperator */ + LogEst rCostIdx; + LogEst nOutUnadjusted; /* nOut before IN() and WHERE adjustments */ + int nIn = 0; +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + int nRecValid = pBuilder->nRecValid; +#endif + if( (eOp==WO_ISNULL || (pTerm->wtFlags&TERM_VNULL)!=0) + && (iCol<0 || pSrc->pTab->aCol[iCol].notNull) + ){ + continue; /* ignore IS [NOT] NULL constraints on NOT NULL columns */ + } + if( pTerm->prereqRight & pNew->maskSelf ) continue; + + pNew->wsFlags = saved_wsFlags; + pNew->u.btree.nEq = saved_nEq; + pNew->nLTerm = saved_nLTerm; + if( whereLoopResize(db, pNew, pNew->nLTerm+1) ) break; /* OOM */ + pNew->aLTerm[pNew->nLTerm++] = pTerm; + pNew->prereq = (saved_prereq | pTerm->prereqRight) & ~pNew->maskSelf; + + assert( nInMul==0 + || (pNew->wsFlags & WHERE_COLUMN_NULL)!=0 + || (pNew->wsFlags & WHERE_COLUMN_IN)!=0 + || (pNew->wsFlags & WHERE_SKIPSCAN)!=0 + ); + + if( eOp & WO_IN ){ + Expr *pExpr = pTerm->pExpr; + pNew->wsFlags |= WHERE_COLUMN_IN; + if( ExprHasProperty(pExpr, EP_xIsSelect) ){ + /* "x IN (SELECT ...)": TUNING: the SELECT returns 25 rows */ + nIn = 46; assert( 46==sqlite3LogEst(25) ); + }else if( ALWAYS(pExpr->x.pList && pExpr->x.pList->nExpr) ){ + /* "x IN (value, value, ...)" */ + nIn = sqlite3LogEst(pExpr->x.pList->nExpr); + } + assert( nIn>0 ); /* RHS always has 2 or more terms... The parser + ** changes "x IN (?)" into "x=?". */ + + }else if( eOp & (WO_EQ) ){ + pNew->wsFlags |= WHERE_COLUMN_EQ; + if( iCol<0 || (nInMul==0 && pNew->u.btree.nEq==pProbe->nKeyCol-1) ){ + if( iCol>=0 && pProbe->onError==OE_None ){ + pNew->wsFlags |= WHERE_UNQ_WANTED; + }else{ + pNew->wsFlags |= WHERE_ONEROW; + } + } + }else if( eOp & WO_ISNULL ){ + pNew->wsFlags |= WHERE_COLUMN_NULL; + }else if( eOp & (WO_GT|WO_GE) ){ + testcase( eOp & WO_GT ); + testcase( eOp & WO_GE ); + pNew->wsFlags |= WHERE_COLUMN_RANGE|WHERE_BTM_LIMIT; + pBtm = pTerm; + pTop = 0; + }else{ + assert( eOp & (WO_LT|WO_LE) ); + testcase( eOp & WO_LT ); + testcase( eOp & WO_LE ); + pNew->wsFlags |= WHERE_COLUMN_RANGE|WHERE_TOP_LIMIT; + pTop = pTerm; + pBtm = (pNew->wsFlags & WHERE_BTM_LIMIT)!=0 ? + pNew->aLTerm[pNew->nLTerm-2] : 0; + } + + /* At this point pNew->nOut is set to the number of rows expected to + ** be visited by the index scan before considering term pTerm, or the + ** values of nIn and nInMul. In other words, assuming that all + ** "x IN(...)" terms are replaced with "x = ?". This block updates + ** the value of pNew->nOut to account for pTerm (but not nIn/nInMul). */ + assert( pNew->nOut==saved_nOut ); + if( pNew->wsFlags & WHERE_COLUMN_RANGE ){ + /* Adjust nOut using stat3/stat4 data. Or, if there is no stat3/stat4 + ** data, using some other estimate. */ + whereRangeScanEst(pParse, pBuilder, pBtm, pTop, pNew); + }else{ + int nEq = ++pNew->u.btree.nEq; + assert( eOp & (WO_ISNULL|WO_EQ|WO_IN) ); + + assert( pNew->nOut==saved_nOut ); + if( pTerm->truthProb<=0 && iCol>=0 ){ + assert( (eOp & WO_IN) || nIn==0 ); + testcase( eOp & WO_IN ); + pNew->nOut += pTerm->truthProb; + pNew->nOut -= nIn; + }else{ +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + tRowcnt nOut = 0; + if( nInMul==0 + && pProbe->nSample + && pNew->u.btree.nEq<=pProbe->nSampleCol + && OptimizationEnabled(db, SQLITE_Stat3) + && ((eOp & WO_IN)==0 || !ExprHasProperty(pTerm->pExpr, EP_xIsSelect)) + ){ + Expr *pExpr = pTerm->pExpr; + if( (eOp & (WO_EQ|WO_ISNULL))!=0 ){ + testcase( eOp & WO_EQ ); + testcase( eOp & WO_ISNULL ); + rc = whereEqualScanEst(pParse, pBuilder, pExpr->pRight, &nOut); + }else{ + rc = whereInScanEst(pParse, pBuilder, pExpr->x.pList, &nOut); + } + assert( rc!=SQLITE_OK || nOut>0 ); + if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; + if( rc!=SQLITE_OK ) break; /* Jump out of the pTerm loop */ + if( nOut ){ + pNew->nOut = sqlite3LogEst(nOut); + if( pNew->nOut>saved_nOut ) pNew->nOut = saved_nOut; + pNew->nOut -= nIn; + } + } + if( nOut==0 ) +#endif + { + pNew->nOut += (pProbe->aiRowLogEst[nEq] - pProbe->aiRowLogEst[nEq-1]); + if( eOp & WO_ISNULL ){ + /* TUNING: If there is no likelihood() value, assume that a + ** "col IS NULL" expression matches twice as many rows + ** as (col=?). */ + pNew->nOut += 10; + } + } + } + } + + /* Set rCostIdx to the cost of visiting selected rows in index. Add + ** it to pNew->rRun, which is currently set to the cost of the index + ** seek only. Then, if this is a non-covering index, add the cost of + ** visiting the rows in the main table. */ + rCostIdx = pNew->nOut + 1 + (15*pProbe->szIdxRow)/pSrc->pTab->szTabRow; + pNew->rRun = sqlite3LogEstAdd(rLogSize, rCostIdx); + if( (pNew->wsFlags & (WHERE_IDX_ONLY|WHERE_IPK))==0 ){ + pNew->rRun = sqlite3LogEstAdd(pNew->rRun, pNew->nOut + 16); + } + + nOutUnadjusted = pNew->nOut; + pNew->rRun += nInMul + nIn; + pNew->nOut += nInMul + nIn; + whereLoopOutputAdjust(pBuilder->pWC, pNew); + rc = whereLoopInsert(pBuilder, pNew); + + if( pNew->wsFlags & WHERE_COLUMN_RANGE ){ + pNew->nOut = saved_nOut; + }else{ + pNew->nOut = nOutUnadjusted; + } + + if( (pNew->wsFlags & WHERE_TOP_LIMIT)==0 + && pNew->u.btree.nEq<(pProbe->nKeyCol + (pProbe->zName!=0)) + ){ + whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, nInMul+nIn); + } + pNew->nOut = saved_nOut; +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + pBuilder->nRecValid = nRecValid; +#endif + } + pNew->prereq = saved_prereq; + pNew->u.btree.nEq = saved_nEq; + pNew->u.btree.nSkip = saved_nSkip; + pNew->wsFlags = saved_wsFlags; + pNew->nOut = saved_nOut; + pNew->nLTerm = saved_nLTerm; + return rc; +} + +/* +** Return True if it is possible that pIndex might be useful in +** implementing the ORDER BY clause in pBuilder. +** +** Return False if pBuilder does not contain an ORDER BY clause or +** if there is no way for pIndex to be useful in implementing that +** ORDER BY clause. +*/ +static int indexMightHelpWithOrderBy( + WhereLoopBuilder *pBuilder, + Index *pIndex, + int iCursor +){ + ExprList *pOB; + int ii, jj; + + if( pIndex->bUnordered ) return 0; + if( (pOB = pBuilder->pWInfo->pOrderBy)==0 ) return 0; + for(ii=0; iinExpr; ii++){ + Expr *pExpr = sqlite3ExprSkipCollate(pOB->a[ii].pExpr); + if( pExpr->op!=TK_COLUMN ) return 0; + if( pExpr->iTable==iCursor ){ + for(jj=0; jjnKeyCol; jj++){ + if( pExpr->iColumn==pIndex->aiColumn[jj] ) return 1; + } + } + } + return 0; +} + +/* +** Return a bitmask where 1s indicate that the corresponding column of +** the table is used by an index. Only the first 63 columns are considered. +*/ +static Bitmask columnsInIndex(Index *pIdx){ + Bitmask m = 0; + int j; + for(j=pIdx->nColumn-1; j>=0; j--){ + int x = pIdx->aiColumn[j]; + if( x>=0 ){ + testcase( x==BMS-1 ); + testcase( x==BMS-2 ); + if( xa; inTerm; i++, pTerm++){ + if( sqlite3ExprImpliesExpr(pTerm->pExpr, pWhere, iTab) ) return 1; + } + return 0; +} + +/* +** Add all WhereLoop objects for a single table of the join where the table +** is idenfied by pBuilder->pNew->iTab. That table is guaranteed to be +** a b-tree table, not a virtual table. +** +** The costs (WhereLoop.rRun) of the b-tree loops added by this function +** are calculated as follows: +** +** For a full scan, assuming the table (or index) contains nRow rows: +** +** cost = nRow * 3.0 // full-table scan +** cost = nRow * K // scan of covering index +** cost = nRow * (K+3.0) // scan of non-covering index +** +** where K is a value between 1.1 and 3.0 set based on the relative +** estimated average size of the index and table records. +** +** For an index scan, where nVisit is the number of index rows visited +** by the scan, and nSeek is the number of seek operations required on +** the index b-tree: +** +** cost = nSeek * (log(nRow) + K * nVisit) // covering index +** cost = nSeek * (log(nRow) + (K+3.0) * nVisit) // non-covering index +** +** Normally, nSeek is 1. nSeek values greater than 1 come about if the +** WHERE clause includes "x IN (....)" terms used in place of "x=?". Or when +** implicit "x IN (SELECT x FROM tbl)" terms are added for skip-scans. +*/ +static int whereLoopAddBtree( + WhereLoopBuilder *pBuilder, /* WHERE clause information */ + Bitmask mExtra /* Extra prerequesites for using this table */ +){ + WhereInfo *pWInfo; /* WHERE analysis context */ + Index *pProbe; /* An index we are evaluating */ + Index sPk; /* A fake index object for the primary key */ + LogEst aiRowEstPk[2]; /* The aiRowLogEst[] value for the sPk index */ + i16 aiColumnPk = -1; /* The aColumn[] value for the sPk index */ + SrcList *pTabList; /* The FROM clause */ + struct SrcList_item *pSrc; /* The FROM clause btree term to add */ + WhereLoop *pNew; /* Template WhereLoop object */ + int rc = SQLITE_OK; /* Return code */ + int iSortIdx = 1; /* Index number */ + int b; /* A boolean value */ + LogEst rSize; /* number of rows in the table */ + LogEst rLogSize; /* Logarithm of the number of rows in the table */ + WhereClause *pWC; /* The parsed WHERE clause */ + Table *pTab; /* Table being queried */ + + pNew = pBuilder->pNew; + pWInfo = pBuilder->pWInfo; + pTabList = pWInfo->pTabList; + pSrc = pTabList->a + pNew->iTab; + pTab = pSrc->pTab; + pWC = pBuilder->pWC; + assert( !IsVirtual(pSrc->pTab) ); + + if( pSrc->pIndex ){ + /* An INDEXED BY clause specifies a particular index to use */ + pProbe = pSrc->pIndex; + }else if( !HasRowid(pTab) ){ + pProbe = pTab->pIndex; + }else{ + /* There is no INDEXED BY clause. Create a fake Index object in local + ** variable sPk to represent the rowid primary key index. Make this + ** fake index the first in a chain of Index objects with all of the real + ** indices to follow */ + Index *pFirst; /* First of real indices on the table */ + memset(&sPk, 0, sizeof(Index)); + sPk.nKeyCol = 1; + sPk.aiColumn = &aiColumnPk; + sPk.aiRowLogEst = aiRowEstPk; + sPk.onError = OE_Replace; + sPk.pTable = pTab; + sPk.szIdxRow = pTab->szTabRow; + aiRowEstPk[0] = pTab->nRowLogEst; + aiRowEstPk[1] = 0; + pFirst = pSrc->pTab->pIndex; + if( pSrc->notIndexed==0 ){ + /* The real indices of the table are only considered if the + ** NOT INDEXED qualifier is omitted from the FROM clause */ + sPk.pNext = pFirst; + } + pProbe = &sPk; + } + rSize = pTab->nRowLogEst; + rLogSize = estLog(rSize); + +#ifndef SQLITE_OMIT_AUTOMATIC_INDEX + /* Automatic indexes */ + if( !pBuilder->pOrSet + && (pWInfo->pParse->db->flags & SQLITE_AutoIndex)!=0 + && pSrc->pIndex==0 + && !pSrc->viaCoroutine + && !pSrc->notIndexed + && HasRowid(pTab) + && !pSrc->isCorrelated + && !pSrc->isRecursive + ){ + /* Generate auto-index WhereLoops */ + WhereTerm *pTerm; + WhereTerm *pWCEnd = pWC->a + pWC->nTerm; + for(pTerm=pWC->a; rc==SQLITE_OK && pTermprereqRight & pNew->maskSelf ) continue; + if( termCanDriveIndex(pTerm, pSrc, 0) ){ + pNew->u.btree.nEq = 1; + pNew->u.btree.nSkip = 0; + pNew->u.btree.pIndex = 0; + pNew->nLTerm = 1; + pNew->aLTerm[0] = pTerm; + /* TUNING: One-time cost for computing the automatic index is + ** approximately 7*N*log2(N) where N is the number of rows in + ** the table being indexed. */ + pNew->rSetup = rLogSize + rSize + 28; assert( 28==sqlite3LogEst(7) ); + /* TUNING: Each index lookup yields 20 rows in the table. This + ** is more than the usual guess of 10 rows, since we have no way + ** of knowning how selective the index will ultimately be. It would + ** not be unreasonable to make this value much larger. */ + pNew->nOut = 43; assert( 43==sqlite3LogEst(20) ); + pNew->rRun = sqlite3LogEstAdd(rLogSize,pNew->nOut); + pNew->wsFlags = WHERE_AUTO_INDEX; + pNew->prereq = mExtra | pTerm->prereqRight; + rc = whereLoopInsert(pBuilder, pNew); + } + } + } +#endif /* SQLITE_OMIT_AUTOMATIC_INDEX */ + + /* Loop over all indices + */ + for(; rc==SQLITE_OK && pProbe; pProbe=pProbe->pNext, iSortIdx++){ + if( pProbe->pPartIdxWhere!=0 + && !whereUsablePartialIndex(pNew->iTab, pWC, pProbe->pPartIdxWhere) ){ + continue; /* Partial index inappropriate for this query */ + } + rSize = pProbe->aiRowLogEst[0]; + pNew->u.btree.nEq = 0; + pNew->u.btree.nSkip = 0; + pNew->nLTerm = 0; + pNew->iSortIdx = 0; + pNew->rSetup = 0; + pNew->prereq = mExtra; + pNew->nOut = rSize; + pNew->u.btree.pIndex = pProbe; + b = indexMightHelpWithOrderBy(pBuilder, pProbe, pSrc->iCursor); + /* The ONEPASS_DESIRED flags never occurs together with ORDER BY */ + assert( (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 || b==0 ); + if( pProbe->tnum<=0 ){ + /* Integer primary key index */ + pNew->wsFlags = WHERE_IPK; + + /* Full table scan */ + pNew->iSortIdx = b ? iSortIdx : 0; + /* TUNING: Cost of full table scan is (N*3.0). */ + pNew->rRun = rSize + 16; + whereLoopOutputAdjust(pWC, pNew); + rc = whereLoopInsert(pBuilder, pNew); + pNew->nOut = rSize; + if( rc ) break; + }else{ + Bitmask m; + if( pProbe->isCovering ){ + pNew->wsFlags = WHERE_IDX_ONLY | WHERE_INDEXED; + m = 0; + }else{ + m = pSrc->colUsed & ~columnsInIndex(pProbe); + pNew->wsFlags = (m==0) ? (WHERE_IDX_ONLY|WHERE_INDEXED) : WHERE_INDEXED; + } + + /* Full scan via index */ + if( b + || !HasRowid(pTab) + || ( m==0 + && pProbe->bUnordered==0 + && (pProbe->szIdxRowszTabRow) + && (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 + && sqlite3GlobalConfig.bUseCis + && OptimizationEnabled(pWInfo->pParse->db, SQLITE_CoverIdxScan) + ) + ){ + pNew->iSortIdx = b ? iSortIdx : 0; + + /* The cost of visiting the index rows is N*K, where K is + ** between 1.1 and 3.0, depending on the relative sizes of the + ** index and table rows. If this is a non-covering index scan, + ** also add the cost of visiting table rows (N*3.0). */ + pNew->rRun = rSize + 1 + (15*pProbe->szIdxRow)/pTab->szTabRow; + if( m!=0 ){ + pNew->rRun = sqlite3LogEstAdd(pNew->rRun, rSize+16); + } + + whereLoopOutputAdjust(pWC, pNew); + rc = whereLoopInsert(pBuilder, pNew); + pNew->nOut = rSize; + if( rc ) break; + } + } + + rc = whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, 0); +#ifdef SQLITE_ENABLE_STAT3_OR_STAT4 + sqlite3Stat4ProbeFree(pBuilder->pRec); + pBuilder->nRecValid = 0; + pBuilder->pRec = 0; +#endif + + /* If there was an INDEXED BY clause, then only that one index is + ** considered. */ + if( pSrc->pIndex ) break; + } + return rc; +} + +#ifndef SQLITE_OMIT_VIRTUALTABLE +/* +** Add all WhereLoop objects for a table of the join identified by +** pBuilder->pNew->iTab. That table is guaranteed to be a virtual table. +*/ +static int whereLoopAddVirtual( + WhereLoopBuilder *pBuilder, /* WHERE clause information */ + Bitmask mExtra +){ + WhereInfo *pWInfo; /* WHERE analysis context */ + Parse *pParse; /* The parsing context */ + WhereClause *pWC; /* The WHERE clause */ + struct SrcList_item *pSrc; /* The FROM clause term to search */ + Table *pTab; + sqlite3 *db; + sqlite3_index_info *pIdxInfo; + struct sqlite3_index_constraint *pIdxCons; + struct sqlite3_index_constraint_usage *pUsage; + WhereTerm *pTerm; + int i, j; + int iTerm, mxTerm; + int nConstraint; + int seenIn = 0; /* True if an IN operator is seen */ + int seenVar = 0; /* True if a non-constant constraint is seen */ + int iPhase; /* 0: const w/o IN, 1: const, 2: no IN, 2: IN */ + WhereLoop *pNew; + int rc = SQLITE_OK; + + pWInfo = pBuilder->pWInfo; + pParse = pWInfo->pParse; + db = pParse->db; + pWC = pBuilder->pWC; + pNew = pBuilder->pNew; + pSrc = &pWInfo->pTabList->a[pNew->iTab]; + pTab = pSrc->pTab; + assert( IsVirtual(pTab) ); + pIdxInfo = allocateIndexInfo(pParse, pWC, pSrc, pBuilder->pOrderBy); + if( pIdxInfo==0 ) return SQLITE_NOMEM; + pNew->prereq = 0; + pNew->rSetup = 0; + pNew->wsFlags = WHERE_VIRTUALTABLE; + pNew->nLTerm = 0; + pNew->u.vtab.needFree = 0; + pUsage = pIdxInfo->aConstraintUsage; + nConstraint = pIdxInfo->nConstraint; + if( whereLoopResize(db, pNew, nConstraint) ){ + sqlite3DbFree(db, pIdxInfo); + return SQLITE_NOMEM; + } + + for(iPhase=0; iPhase<=3; iPhase++){ + if( !seenIn && (iPhase&1)!=0 ){ + iPhase++; + if( iPhase>3 ) break; + } + if( !seenVar && iPhase>1 ) break; + pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint; + for(i=0; inConstraint; i++, pIdxCons++){ + j = pIdxCons->iTermOffset; + pTerm = &pWC->a[j]; + switch( iPhase ){ + case 0: /* Constants without IN operator */ + pIdxCons->usable = 0; + if( (pTerm->eOperator & WO_IN)!=0 ){ + seenIn = 1; + } + if( pTerm->prereqRight!=0 ){ + seenVar = 1; + }else if( (pTerm->eOperator & WO_IN)==0 ){ + pIdxCons->usable = 1; + } + break; + case 1: /* Constants with IN operators */ + assert( seenIn ); + pIdxCons->usable = (pTerm->prereqRight==0); + break; + case 2: /* Variables without IN */ + assert( seenVar ); + pIdxCons->usable = (pTerm->eOperator & WO_IN)==0; + break; + default: /* Variables with IN */ + assert( seenVar && seenIn ); + pIdxCons->usable = 1; + break; + } + } + memset(pUsage, 0, sizeof(pUsage[0])*pIdxInfo->nConstraint); + if( pIdxInfo->needToFreeIdxStr ) sqlite3_free(pIdxInfo->idxStr); + pIdxInfo->idxStr = 0; + pIdxInfo->idxNum = 0; + pIdxInfo->needToFreeIdxStr = 0; + pIdxInfo->orderByConsumed = 0; + pIdxInfo->estimatedCost = SQLITE_BIG_DBL / (double)2; + pIdxInfo->estimatedRows = 25; + rc = vtabBestIndex(pParse, pTab, pIdxInfo); + if( rc ) goto whereLoopAddVtab_exit; + pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint; + pNew->prereq = mExtra; + mxTerm = -1; + assert( pNew->nLSlot>=nConstraint ); + for(i=0; iaLTerm[i] = 0; + pNew->u.vtab.omitMask = 0; + for(i=0; i=0 ){ + j = pIdxCons->iTermOffset; + if( iTerm>=nConstraint + || j<0 + || j>=pWC->nTerm + || pNew->aLTerm[iTerm]!=0 + ){ + rc = SQLITE_ERROR; + sqlite3ErrorMsg(pParse, "%s.xBestIndex() malfunction", pTab->zName); + goto whereLoopAddVtab_exit; + } + testcase( iTerm==nConstraint-1 ); + testcase( j==0 ); + testcase( j==pWC->nTerm-1 ); + pTerm = &pWC->a[j]; + pNew->prereq |= pTerm->prereqRight; + assert( iTermnLSlot ); + pNew->aLTerm[iTerm] = pTerm; + if( iTerm>mxTerm ) mxTerm = iTerm; + testcase( iTerm==15 ); + testcase( iTerm==16 ); + if( iTerm<16 && pUsage[i].omit ) pNew->u.vtab.omitMask |= 1<eOperator & WO_IN)!=0 ){ + if( pUsage[i].omit==0 ){ + /* Do not attempt to use an IN constraint if the virtual table + ** says that the equivalent EQ constraint cannot be safely omitted. + ** If we do attempt to use such a constraint, some rows might be + ** repeated in the output. */ + break; + } + /* A virtual table that is constrained by an IN clause may not + ** consume the ORDER BY clause because (1) the order of IN terms + ** is not necessarily related to the order of output terms and + ** (2) Multiple outputs from a single IN value will not merge + ** together. */ + pIdxInfo->orderByConsumed = 0; + } + } + } + if( i>=nConstraint ){ + pNew->nLTerm = mxTerm+1; + assert( pNew->nLTerm<=pNew->nLSlot ); + pNew->u.vtab.idxNum = pIdxInfo->idxNum; + pNew->u.vtab.needFree = pIdxInfo->needToFreeIdxStr; + pIdxInfo->needToFreeIdxStr = 0; + pNew->u.vtab.idxStr = pIdxInfo->idxStr; + pNew->u.vtab.isOrdered = (i8)(pIdxInfo->orderByConsumed ? + pIdxInfo->nOrderBy : 0); + pNew->rSetup = 0; + pNew->rRun = sqlite3LogEstFromDouble(pIdxInfo->estimatedCost); + pNew->nOut = sqlite3LogEst(pIdxInfo->estimatedRows); + whereLoopInsert(pBuilder, pNew); + if( pNew->u.vtab.needFree ){ + sqlite3_free(pNew->u.vtab.idxStr); + pNew->u.vtab.needFree = 0; + } + } + } + +whereLoopAddVtab_exit: + if( pIdxInfo->needToFreeIdxStr ) sqlite3_free(pIdxInfo->idxStr); + sqlite3DbFree(db, pIdxInfo); + return rc; +} +#endif /* SQLITE_OMIT_VIRTUALTABLE */ + +/* +** Add WhereLoop entries to handle OR terms. This works for either +** btrees or virtual tables. +*/ +static int whereLoopAddOr(WhereLoopBuilder *pBuilder, Bitmask mExtra){ + WhereInfo *pWInfo = pBuilder->pWInfo; + WhereClause *pWC; + WhereLoop *pNew; + WhereTerm *pTerm, *pWCEnd; + int rc = SQLITE_OK; + int iCur; + WhereClause tempWC; + WhereLoopBuilder sSubBuild; + WhereOrSet sSum, sCur; + struct SrcList_item *pItem; + + pWC = pBuilder->pWC; + if( pWInfo->wctrlFlags & WHERE_AND_ONLY ) return SQLITE_OK; + pWCEnd = pWC->a + pWC->nTerm; + pNew = pBuilder->pNew; + memset(&sSum, 0, sizeof(sSum)); + pItem = pWInfo->pTabList->a + pNew->iTab; + iCur = pItem->iCursor; + + for(pTerm=pWC->a; pTermeOperator & WO_OR)!=0 + && (pTerm->u.pOrInfo->indexable & pNew->maskSelf)!=0 + ){ + WhereClause * const pOrWC = &pTerm->u.pOrInfo->wc; + WhereTerm * const pOrWCEnd = &pOrWC->a[pOrWC->nTerm]; + WhereTerm *pOrTerm; + int once = 1; + int i, j; + + sSubBuild = *pBuilder; + sSubBuild.pOrderBy = 0; + sSubBuild.pOrSet = &sCur; + + for(pOrTerm=pOrWC->a; pOrTermeOperator & WO_AND)!=0 ){ + sSubBuild.pWC = &pOrTerm->u.pAndInfo->wc; + }else if( pOrTerm->leftCursor==iCur ){ + tempWC.pWInfo = pWC->pWInfo; + tempWC.pOuter = pWC; + tempWC.op = TK_AND; + tempWC.nTerm = 1; + tempWC.a = pOrTerm; + sSubBuild.pWC = &tempWC; + }else{ + continue; + } + sCur.n = 0; +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( IsVirtual(pItem->pTab) ){ + rc = whereLoopAddVirtual(&sSubBuild, mExtra); + }else +#endif + { + rc = whereLoopAddBtree(&sSubBuild, mExtra); + } + assert( rc==SQLITE_OK || sCur.n==0 ); + if( sCur.n==0 ){ + sSum.n = 0; + break; + }else if( once ){ + whereOrMove(&sSum, &sCur); + once = 0; + }else{ + WhereOrSet sPrev; + whereOrMove(&sPrev, &sSum); + sSum.n = 0; + for(i=0; inLTerm = 1; + pNew->aLTerm[0] = pTerm; + pNew->wsFlags = WHERE_MULTI_OR; + pNew->rSetup = 0; + pNew->iSortIdx = 0; + memset(&pNew->u, 0, sizeof(pNew->u)); + for(i=0; rc==SQLITE_OK && irRun = sSum.a[i].rRun + 1; + pNew->nOut = sSum.a[i].nOut; + pNew->prereq = sSum.a[i].prereq; + rc = whereLoopInsert(pBuilder, pNew); + } + } + } + return rc; +} + +/* +** Add all WhereLoop objects for all tables +*/ +static int whereLoopAddAll(WhereLoopBuilder *pBuilder){ + WhereInfo *pWInfo = pBuilder->pWInfo; + Bitmask mExtra = 0; + Bitmask mPrior = 0; + int iTab; + SrcList *pTabList = pWInfo->pTabList; + struct SrcList_item *pItem; + sqlite3 *db = pWInfo->pParse->db; + int nTabList = pWInfo->nLevel; + int rc = SQLITE_OK; + u8 priorJoinType = 0; + WhereLoop *pNew; + + /* Loop over the tables in the join, from left to right */ + pNew = pBuilder->pNew; + whereLoopInit(pNew); + for(iTab=0, pItem=pTabList->a; iTabiTab = iTab; + pNew->maskSelf = getMask(&pWInfo->sMaskSet, pItem->iCursor); + if( ((pItem->jointype|priorJoinType) & (JT_LEFT|JT_CROSS))!=0 ){ + mExtra = mPrior; + } + priorJoinType = pItem->jointype; + if( IsVirtual(pItem->pTab) ){ + rc = whereLoopAddVirtual(pBuilder, mExtra); + }else{ + rc = whereLoopAddBtree(pBuilder, mExtra); + } + if( rc==SQLITE_OK ){ + rc = whereLoopAddOr(pBuilder, mExtra); + } + mPrior |= pNew->maskSelf; + if( rc || db->mallocFailed ) break; + } + whereLoopClear(db, pNew); + return rc; +} + +/* +** Examine a WherePath (with the addition of the extra WhereLoop of the 5th +** parameters) to see if it outputs rows in the requested ORDER BY +** (or GROUP BY) without requiring a separate sort operation. Return N: +** +** N>0: N terms of the ORDER BY clause are satisfied +** N==0: No terms of the ORDER BY clause are satisfied +** N<0: Unknown yet how many terms of ORDER BY might be satisfied. +** +** Note that processing for WHERE_GROUPBY and WHERE_DISTINCTBY is not as +** strict. With GROUP BY and DISTINCT the only requirement is that +** equivalent rows appear immediately adjacent to one another. GROUP BY +** and DISTINCT do not require rows to appear in any particular order as long +** as equivelent rows are grouped together. Thus for GROUP BY and DISTINCT +** the pOrderBy terms can be matched in any order. With ORDER BY, the +** pOrderBy terms must be matched in strict left-to-right order. +*/ +static i8 wherePathSatisfiesOrderBy( + WhereInfo *pWInfo, /* The WHERE clause */ + ExprList *pOrderBy, /* ORDER BY or GROUP BY or DISTINCT clause to check */ + WherePath *pPath, /* The WherePath to check */ + u16 wctrlFlags, /* Might contain WHERE_GROUPBY or WHERE_DISTINCTBY */ + u16 nLoop, /* Number of entries in pPath->aLoop[] */ + WhereLoop *pLast, /* Add this WhereLoop to the end of pPath->aLoop[] */ + Bitmask *pRevMask /* OUT: Mask of WhereLoops to run in reverse order */ +){ + u8 revSet; /* True if rev is known */ + u8 rev; /* Composite sort order */ + u8 revIdx; /* Index sort order */ + u8 isOrderDistinct; /* All prior WhereLoops are order-distinct */ + u8 distinctColumns; /* True if the loop has UNIQUE NOT NULL columns */ + u8 isMatch; /* iColumn matches a term of the ORDER BY clause */ + u16 nKeyCol; /* Number of key columns in pIndex */ + u16 nColumn; /* Total number of ordered columns in the index */ + u16 nOrderBy; /* Number terms in the ORDER BY clause */ + int iLoop; /* Index of WhereLoop in pPath being processed */ + int i, j; /* Loop counters */ + int iCur; /* Cursor number for current WhereLoop */ + int iColumn; /* A column number within table iCur */ + WhereLoop *pLoop = 0; /* Current WhereLoop being processed. */ + WhereTerm *pTerm; /* A single term of the WHERE clause */ + Expr *pOBExpr; /* An expression from the ORDER BY clause */ + CollSeq *pColl; /* COLLATE function from an ORDER BY clause term */ + Index *pIndex; /* The index associated with pLoop */ + sqlite3 *db = pWInfo->pParse->db; /* Database connection */ + Bitmask obSat = 0; /* Mask of ORDER BY terms satisfied so far */ + Bitmask obDone; /* Mask of all ORDER BY terms */ + Bitmask orderDistinctMask; /* Mask of all well-ordered loops */ + Bitmask ready; /* Mask of inner loops */ + + /* + ** We say the WhereLoop is "one-row" if it generates no more than one + ** row of output. A WhereLoop is one-row if all of the following are true: + ** (a) All index columns match with WHERE_COLUMN_EQ. + ** (b) The index is unique + ** Any WhereLoop with an WHERE_COLUMN_EQ constraint on the rowid is one-row. + ** Every one-row WhereLoop will have the WHERE_ONEROW bit set in wsFlags. + ** + ** We say the WhereLoop is "order-distinct" if the set of columns from + ** that WhereLoop that are in the ORDER BY clause are different for every + ** row of the WhereLoop. Every one-row WhereLoop is automatically + ** order-distinct. A WhereLoop that has no columns in the ORDER BY clause + ** is not order-distinct. To be order-distinct is not quite the same as being + ** UNIQUE since a UNIQUE column or index can have multiple rows that + ** are NULL and NULL values are equivalent for the purpose of order-distinct. + ** To be order-distinct, the columns must be UNIQUE and NOT NULL. + ** + ** The rowid for a table is always UNIQUE and NOT NULL so whenever the + ** rowid appears in the ORDER BY clause, the corresponding WhereLoop is + ** automatically order-distinct. + */ + + assert( pOrderBy!=0 ); + if( nLoop && OptimizationDisabled(db, SQLITE_OrderByIdxJoin) ) return 0; + + nOrderBy = pOrderBy->nExpr; + testcase( nOrderBy==BMS-1 ); + if( nOrderBy>BMS-1 ) return 0; /* Cannot optimize overly large ORDER BYs */ + isOrderDistinct = 1; + obDone = MASKBIT(nOrderBy)-1; + orderDistinctMask = 0; + ready = 0; + for(iLoop=0; isOrderDistinct && obSat0 ) ready |= pLoop->maskSelf; + pLoop = iLoopaLoop[iLoop] : pLast; + if( pLoop->wsFlags & WHERE_VIRTUALTABLE ){ + if( pLoop->u.vtab.isOrdered ) obSat = obDone; + break; + } + iCur = pWInfo->pTabList->a[pLoop->iTab].iCursor; + + /* Mark off any ORDER BY term X that is a column in the table of + ** the current loop for which there is term in the WHERE + ** clause of the form X IS NULL or X=? that reference only outer + ** loops. + */ + for(i=0; ia[i].pExpr); + if( pOBExpr->op!=TK_COLUMN ) continue; + if( pOBExpr->iTable!=iCur ) continue; + pTerm = findTerm(&pWInfo->sWC, iCur, pOBExpr->iColumn, + ~ready, WO_EQ|WO_ISNULL, 0); + if( pTerm==0 ) continue; + if( (pTerm->eOperator&WO_EQ)!=0 && pOBExpr->iColumn>=0 ){ + const char *z1, *z2; + pColl = sqlite3ExprCollSeq(pWInfo->pParse, pOrderBy->a[i].pExpr); + if( !pColl ) pColl = db->pDfltColl; + z1 = pColl->zName; + pColl = sqlite3ExprCollSeq(pWInfo->pParse, pTerm->pExpr); + if( !pColl ) pColl = db->pDfltColl; + z2 = pColl->zName; + if( sqlite3StrICmp(z1, z2)!=0 ) continue; + } + obSat |= MASKBIT(i); + } + + if( (pLoop->wsFlags & WHERE_ONEROW)==0 ){ + if( pLoop->wsFlags & WHERE_IPK ){ + pIndex = 0; + nKeyCol = 0; + nColumn = 1; + }else if( (pIndex = pLoop->u.btree.pIndex)==0 || pIndex->bUnordered ){ + return 0; + }else{ + nKeyCol = pIndex->nKeyCol; + nColumn = pIndex->nColumn; + assert( nColumn==nKeyCol+1 || !HasRowid(pIndex->pTable) ); + assert( pIndex->aiColumn[nColumn-1]==(-1) || !HasRowid(pIndex->pTable)); + isOrderDistinct = pIndex->onError!=OE_None; + } + + /* Loop through all columns of the index and deal with the ones + ** that are not constrained by == or IN. + */ + rev = revSet = 0; + distinctColumns = 0; + for(j=0; ju.btree.nEq + && pLoop->u.btree.nSkip==0 + && ((i = pLoop->aLTerm[j]->eOperator) & (WO_EQ|WO_ISNULL))!=0 + ){ + if( i & WO_ISNULL ){ + testcase( isOrderDistinct ); + isOrderDistinct = 0; + } + continue; + } + + /* Get the column number in the table (iColumn) and sort order + ** (revIdx) for the j-th column of the index. + */ + if( pIndex ){ + iColumn = pIndex->aiColumn[j]; + revIdx = pIndex->aSortOrder[j]; + if( iColumn==pIndex->pTable->iPKey ) iColumn = -1; + }else{ + iColumn = -1; + revIdx = 0; + } + + /* An unconstrained column that might be NULL means that this + ** WhereLoop is not well-ordered + */ + if( isOrderDistinct + && iColumn>=0 + && j>=pLoop->u.btree.nEq + && pIndex->pTable->aCol[iColumn].notNull==0 + ){ + isOrderDistinct = 0; + } + + /* Find the ORDER BY term that corresponds to the j-th column + ** of the index and mark that ORDER BY term off + */ + bOnce = 1; + isMatch = 0; + for(i=0; bOnce && ia[i].pExpr); + testcase( wctrlFlags & WHERE_GROUPBY ); + testcase( wctrlFlags & WHERE_DISTINCTBY ); + if( (wctrlFlags & (WHERE_GROUPBY|WHERE_DISTINCTBY))==0 ) bOnce = 0; + if( pOBExpr->op!=TK_COLUMN ) continue; + if( pOBExpr->iTable!=iCur ) continue; + if( pOBExpr->iColumn!=iColumn ) continue; + if( iColumn>=0 ){ + pColl = sqlite3ExprCollSeq(pWInfo->pParse, pOrderBy->a[i].pExpr); + if( !pColl ) pColl = db->pDfltColl; + if( sqlite3StrICmp(pColl->zName, pIndex->azColl[j])!=0 ) continue; + } + isMatch = 1; + break; + } + if( isMatch && (pWInfo->wctrlFlags & WHERE_GROUPBY)==0 ){ + /* Make sure the sort order is compatible in an ORDER BY clause. + ** Sort order is irrelevant for a GROUP BY clause. */ + if( revSet ){ + if( (rev ^ revIdx)!=pOrderBy->a[i].sortOrder ) isMatch = 0; + }else{ + rev = revIdx ^ pOrderBy->a[i].sortOrder; + if( rev ) *pRevMask |= MASKBIT(iLoop); + revSet = 1; + } + } + if( isMatch ){ + if( iColumn<0 ){ + testcase( distinctColumns==0 ); + distinctColumns = 1; + } + obSat |= MASKBIT(i); + }else{ + /* No match found */ + if( j==0 || jmaskSelf; + for(i=0; ia[i].pExpr; + mTerm = exprTableUsage(&pWInfo->sMaskSet,p); + if( mTerm==0 && !sqlite3ExprIsConstant(p) ) continue; + if( (mTerm&~orderDistinctMask)==0 ){ + obSat |= MASKBIT(i); + } + } + } + } /* End the loop over all WhereLoops from outer-most down to inner-most */ + if( obSat==obDone ) return (i8)nOrderBy; + if( !isOrderDistinct ){ + for(i=nOrderBy-1; i>0; i--){ + Bitmask m = MASKBIT(i) - 1; + if( (obSat&m)==m ) return i; + } + return 0; + } + return -1; +} + + +/* +** If the WHERE_GROUPBY flag is set in the mask passed to sqlite3WhereBegin(), +** the planner assumes that the specified pOrderBy list is actually a GROUP +** BY clause - and so any order that groups rows as required satisfies the +** request. +** +** Normally, in this case it is not possible for the caller to determine +** whether or not the rows are really being delivered in sorted order, or +** just in some other order that provides the required grouping. However, +** if the WHERE_SORTBYGROUP flag is also passed to sqlite3WhereBegin(), then +** this function may be called on the returned WhereInfo object. It returns +** true if the rows really will be sorted in the specified order, or false +** otherwise. +** +** For example, assuming: +** +** CREATE INDEX i1 ON t1(x, Y); +** +** then +** +** SELECT * FROM t1 GROUP BY x,y ORDER BY x,y; -- IsSorted()==1 +** SELECT * FROM t1 GROUP BY y,x ORDER BY y,x; -- IsSorted()==0 +*/ +SQLITE_PRIVATE int sqlite3WhereIsSorted(WhereInfo *pWInfo){ + assert( pWInfo->wctrlFlags & WHERE_GROUPBY ); + assert( pWInfo->wctrlFlags & WHERE_SORTBYGROUP ); + return pWInfo->sorted; +} + +#ifdef WHERETRACE_ENABLED +/* For debugging use only: */ +static const char *wherePathName(WherePath *pPath, int nLoop, WhereLoop *pLast){ + static char zName[65]; + int i; + for(i=0; iaLoop[i]->cId; } + if( pLast ) zName[i++] = pLast->cId; + zName[i] = 0; + return zName; +} +#endif + +/* +** Given the list of WhereLoop objects at pWInfo->pLoops, this routine +** attempts to find the lowest cost path that visits each WhereLoop +** once. This path is then loaded into the pWInfo->a[].pWLoop fields. +** +** Assume that the total number of output rows that will need to be sorted +** will be nRowEst (in the 10*log2 representation). Or, ignore sorting +** costs if nRowEst==0. +** +** Return SQLITE_OK on success or SQLITE_NOMEM of a memory allocation +** error occurs. +*/ +static int wherePathSolver(WhereInfo *pWInfo, LogEst nRowEst){ + int mxChoice; /* Maximum number of simultaneous paths tracked */ + int nLoop; /* Number of terms in the join */ + Parse *pParse; /* Parsing context */ + sqlite3 *db; /* The database connection */ + int iLoop; /* Loop counter over the terms of the join */ + int ii, jj; /* Loop counters */ + int mxI = 0; /* Index of next entry to replace */ + int nOrderBy; /* Number of ORDER BY clause terms */ + LogEst rCost; /* Cost of a path */ + LogEst nOut; /* Number of outputs */ + LogEst mxCost = 0; /* Maximum cost of a set of paths */ + LogEst mxOut = 0; /* Maximum nOut value on the set of paths */ + int nTo, nFrom; /* Number of valid entries in aTo[] and aFrom[] */ + WherePath *aFrom; /* All nFrom paths at the previous level */ + WherePath *aTo; /* The nTo best paths at the current level */ + WherePath *pFrom; /* An element of aFrom[] that we are working on */ + WherePath *pTo; /* An element of aTo[] that we are working on */ + WhereLoop *pWLoop; /* One of the WhereLoop objects */ + WhereLoop **pX; /* Used to divy up the pSpace memory */ + char *pSpace; /* Temporary memory used by this routine */ + + pParse = pWInfo->pParse; + db = pParse->db; + nLoop = pWInfo->nLevel; + /* TUNING: For simple queries, only the best path is tracked. + ** For 2-way joins, the 5 best paths are followed. + ** For joins of 3 or more tables, track the 10 best paths */ + mxChoice = (nLoop<=1) ? 1 : (nLoop==2 ? 5 : 10); + assert( nLoop<=pWInfo->pTabList->nSrc ); + WHERETRACE(0x002, ("---- begin solver\n")); + + /* Allocate and initialize space for aTo and aFrom */ + ii = (sizeof(WherePath)+sizeof(WhereLoop*)*nLoop)*mxChoice*2; + pSpace = sqlite3DbMallocRaw(db, ii); + if( pSpace==0 ) return SQLITE_NOMEM; + aTo = (WherePath*)pSpace; + aFrom = aTo+mxChoice; + memset(aFrom, 0, sizeof(aFrom[0])); + pX = (WhereLoop**)(aFrom+mxChoice); + for(ii=mxChoice*2, pFrom=aTo; ii>0; ii--, pFrom++, pX += nLoop){ + pFrom->aLoop = pX; + } + + /* Seed the search with a single WherePath containing zero WhereLoops. + ** + ** TUNING: Do not let the number of iterations go above 25. If the cost + ** of computing an automatic index is not paid back within the first 25 + ** rows, then do not use the automatic index. */ + aFrom[0].nRow = MIN(pParse->nQueryLoop, 46); assert( 46==sqlite3LogEst(25) ); + nFrom = 1; + + /* Precompute the cost of sorting the final result set, if the caller + ** to sqlite3WhereBegin() was concerned about sorting */ + if( pWInfo->pOrderBy==0 || nRowEst==0 ){ + aFrom[0].isOrdered = 0; + nOrderBy = 0; + }else{ + aFrom[0].isOrdered = nLoop>0 ? -1 : 1; + nOrderBy = pWInfo->pOrderBy->nExpr; + } + + /* Compute successively longer WherePaths using the previous generation + ** of WherePaths as the basis for the next. Keep track of the mxChoice + ** best paths at each generation */ + for(iLoop=0; iLooppLoops; pWLoop; pWLoop=pWLoop->pNextLoop){ + Bitmask maskNew; + Bitmask revMask = 0; + i8 isOrdered = pFrom->isOrdered; + if( (pWLoop->prereq & ~pFrom->maskLoop)!=0 ) continue; + if( (pWLoop->maskSelf & pFrom->maskLoop)!=0 ) continue; + /* At this point, pWLoop is a candidate to be the next loop. + ** Compute its cost */ + rCost = sqlite3LogEstAdd(pWLoop->rSetup,pWLoop->rRun + pFrom->nRow); + rCost = sqlite3LogEstAdd(rCost, pFrom->rCost); + nOut = pFrom->nRow + pWLoop->nOut; + maskNew = pFrom->maskLoop | pWLoop->maskSelf; + if( isOrdered<0 ){ + isOrdered = wherePathSatisfiesOrderBy(pWInfo, + pWInfo->pOrderBy, pFrom, pWInfo->wctrlFlags, + iLoop, pWLoop, &revMask); + if( isOrdered>=0 && isOrdered0 && 66==sqlite3LogEst(100) ); + rScale = sqlite3LogEst((nOrderBy-isOrdered)*100/nOrderBy) - 66; + rSortCost = nRowEst + estLog(nRowEst) + rScale + 16; + + /* TUNING: The cost of implementing DISTINCT using a B-TREE is + ** similar but with a larger constant of proportionality. + ** Multiply by an additional factor of 3.0. */ + if( pWInfo->wctrlFlags & WHERE_WANT_DISTINCT ){ + rSortCost += 16; + } + WHERETRACE(0x002, + ("---- sort cost=%-3d (%d/%d) increases cost %3d to %-3d\n", + rSortCost, (nOrderBy-isOrdered), nOrderBy, rCost, + sqlite3LogEstAdd(rCost,rSortCost))); + rCost = sqlite3LogEstAdd(rCost, rSortCost); + } + }else{ + revMask = pFrom->revLoop; + } + /* Check to see if pWLoop should be added to the mxChoice best so far */ + for(jj=0, pTo=aTo; jjmaskLoop==maskNew + && ((pTo->isOrdered^isOrdered)&80)==0 + && ((pTo->rCost<=rCost && pTo->nRow<=nOut) || + (pTo->rCost>=rCost && pTo->nRow>=nOut)) + ){ + testcase( jj==nTo-1 ); + break; + } + } + if( jj>=nTo ){ + if( nTo>=mxChoice && rCost>=mxCost ){ +#ifdef WHERETRACE_ENABLED /* 0x4 */ + if( sqlite3WhereTrace&0x4 ){ + sqlite3DebugPrintf("Skip %s cost=%-3d,%3d order=%c\n", + wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, + isOrdered>=0 ? isOrdered+'0' : '?'); + } +#endif + continue; + } + /* Add a new Path to the aTo[] set */ + if( nTo=0 ? isOrdered+'0' : '?'); + } +#endif + }else{ + if( pTo->rCost<=rCost && pTo->nRow<=nOut ){ +#ifdef WHERETRACE_ENABLED /* 0x4 */ + if( sqlite3WhereTrace&0x4 ){ + sqlite3DebugPrintf( + "Skip %s cost=%-3d,%3d order=%c", + wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, + isOrdered>=0 ? isOrdered+'0' : '?'); + sqlite3DebugPrintf(" vs %s cost=%-3d,%d order=%c\n", + wherePathName(pTo, iLoop+1, 0), pTo->rCost, pTo->nRow, + pTo->isOrdered>=0 ? pTo->isOrdered+'0' : '?'); + } +#endif + testcase( pTo->rCost==rCost ); + continue; + } + testcase( pTo->rCost==rCost+1 ); + /* A new and better score for a previously created equivalent path */ +#ifdef WHERETRACE_ENABLED /* 0x4 */ + if( sqlite3WhereTrace&0x4 ){ + sqlite3DebugPrintf( + "Update %s cost=%-3d,%3d order=%c", + wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, + isOrdered>=0 ? isOrdered+'0' : '?'); + sqlite3DebugPrintf(" was %s cost=%-3d,%3d order=%c\n", + wherePathName(pTo, iLoop+1, 0), pTo->rCost, pTo->nRow, + pTo->isOrdered>=0 ? pTo->isOrdered+'0' : '?'); + } +#endif + } + /* pWLoop is a winner. Add it to the set of best so far */ + pTo->maskLoop = pFrom->maskLoop | pWLoop->maskSelf; + pTo->revLoop = revMask; + pTo->nRow = nOut; + pTo->rCost = rCost; + pTo->isOrdered = isOrdered; + memcpy(pTo->aLoop, pFrom->aLoop, sizeof(WhereLoop*)*iLoop); + pTo->aLoop[iLoop] = pWLoop; + if( nTo>=mxChoice ){ + mxI = 0; + mxCost = aTo[0].rCost; + mxOut = aTo[0].nRow; + for(jj=1, pTo=&aTo[1]; jjrCost>mxCost || (pTo->rCost==mxCost && pTo->nRow>mxOut) ){ + mxCost = pTo->rCost; + mxOut = pTo->nRow; + mxI = jj; + } + } + } + } + } + +#ifdef WHERETRACE_ENABLED /* >=2 */ + if( sqlite3WhereTrace>=2 ){ + sqlite3DebugPrintf("---- after round %d ----\n", iLoop); + for(ii=0, pTo=aTo; iirCost, pTo->nRow, + pTo->isOrdered>=0 ? (pTo->isOrdered+'0') : '?'); + if( pTo->isOrdered>0 ){ + sqlite3DebugPrintf(" rev=0x%llx\n", pTo->revLoop); + }else{ + sqlite3DebugPrintf("\n"); + } + } + } +#endif + + /* Swap the roles of aFrom and aTo for the next generation */ + pFrom = aTo; + aTo = aFrom; + aFrom = pFrom; + nFrom = nTo; + } + + if( nFrom==0 ){ + sqlite3ErrorMsg(pParse, "no query solution"); + sqlite3DbFree(db, pSpace); + return SQLITE_ERROR; + } + + /* Find the lowest cost path. pFrom will be left pointing to that path */ + pFrom = aFrom; + for(ii=1; iirCost>aFrom[ii].rCost ) pFrom = &aFrom[ii]; + } + assert( pWInfo->nLevel==nLoop ); + /* Load the lowest cost path into pWInfo */ + for(iLoop=0; iLoopa + iLoop; + pLevel->pWLoop = pWLoop = pFrom->aLoop[iLoop]; + pLevel->iFrom = pWLoop->iTab; + pLevel->iTabCur = pWInfo->pTabList->a[pLevel->iFrom].iCursor; + } + if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT)!=0 + && (pWInfo->wctrlFlags & WHERE_DISTINCTBY)==0 + && pWInfo->eDistinct==WHERE_DISTINCT_NOOP + && nRowEst + ){ + Bitmask notUsed; + int rc = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pResultSet, pFrom, + WHERE_DISTINCTBY, nLoop-1, pFrom->aLoop[nLoop-1], ¬Used); + if( rc==pWInfo->pResultSet->nExpr ){ + pWInfo->eDistinct = WHERE_DISTINCT_ORDERED; + } + } + if( pWInfo->pOrderBy ){ + if( pWInfo->wctrlFlags & WHERE_DISTINCTBY ){ + if( pFrom->isOrdered==pWInfo->pOrderBy->nExpr ){ + pWInfo->eDistinct = WHERE_DISTINCT_ORDERED; + } + }else{ + pWInfo->nOBSat = pFrom->isOrdered; + if( pWInfo->nOBSat<0 ) pWInfo->nOBSat = 0; + pWInfo->revMask = pFrom->revLoop; + } + if( (pWInfo->wctrlFlags & WHERE_SORTBYGROUP) + && pWInfo->nOBSat==pWInfo->pOrderBy->nExpr + ){ + Bitmask notUsed = 0; + int nOrder = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pOrderBy, + pFrom, 0, nLoop-1, pFrom->aLoop[nLoop-1], ¬Used + ); + assert( pWInfo->sorted==0 ); + pWInfo->sorted = (nOrder==pWInfo->pOrderBy->nExpr); + } + } + + + pWInfo->nRowOut = pFrom->nRow; + + /* Free temporary memory and return success */ + sqlite3DbFree(db, pSpace); + return SQLITE_OK; +} + +/* +** Most queries use only a single table (they are not joins) and have +** simple == constraints against indexed fields. This routine attempts +** to plan those simple cases using much less ceremony than the +** general-purpose query planner, and thereby yield faster sqlite3_prepare() +** times for the common case. +** +** Return non-zero on success, if this query can be handled by this +** no-frills query planner. Return zero if this query needs the +** general-purpose query planner. +*/ +static int whereShortCut(WhereLoopBuilder *pBuilder){ + WhereInfo *pWInfo; + struct SrcList_item *pItem; + WhereClause *pWC; + WhereTerm *pTerm; + WhereLoop *pLoop; + int iCur; + int j; + Table *pTab; + Index *pIdx; + + pWInfo = pBuilder->pWInfo; + if( pWInfo->wctrlFlags & WHERE_FORCE_TABLE ) return 0; + assert( pWInfo->pTabList->nSrc>=1 ); + pItem = pWInfo->pTabList->a; + pTab = pItem->pTab; + if( IsVirtual(pTab) ) return 0; + if( pItem->zIndex ) return 0; + iCur = pItem->iCursor; + pWC = &pWInfo->sWC; + pLoop = pBuilder->pNew; + pLoop->wsFlags = 0; + pLoop->u.btree.nSkip = 0; + pTerm = findTerm(pWC, iCur, -1, 0, WO_EQ, 0); + if( pTerm ){ + pLoop->wsFlags = WHERE_COLUMN_EQ|WHERE_IPK|WHERE_ONEROW; + pLoop->aLTerm[0] = pTerm; + pLoop->nLTerm = 1; + pLoop->u.btree.nEq = 1; + /* TUNING: Cost of a rowid lookup is 10 */ + pLoop->rRun = 33; /* 33==sqlite3LogEst(10) */ + }else{ + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + assert( pLoop->aLTermSpace==pLoop->aLTerm ); + assert( ArraySize(pLoop->aLTermSpace)==4 ); + if( pIdx->onError==OE_None + || pIdx->pPartIdxWhere!=0 + || pIdx->nKeyCol>ArraySize(pLoop->aLTermSpace) + ) continue; + for(j=0; jnKeyCol; j++){ + pTerm = findTerm(pWC, iCur, pIdx->aiColumn[j], 0, WO_EQ, pIdx); + if( pTerm==0 ) break; + pLoop->aLTerm[j] = pTerm; + } + if( j!=pIdx->nKeyCol ) continue; + pLoop->wsFlags = WHERE_COLUMN_EQ|WHERE_ONEROW|WHERE_INDEXED; + if( pIdx->isCovering || (pItem->colUsed & ~columnsInIndex(pIdx))==0 ){ + pLoop->wsFlags |= WHERE_IDX_ONLY; + } + pLoop->nLTerm = j; + pLoop->u.btree.nEq = j; + pLoop->u.btree.pIndex = pIdx; + /* TUNING: Cost of a unique index lookup is 15 */ + pLoop->rRun = 39; /* 39==sqlite3LogEst(15) */ + break; + } + } + if( pLoop->wsFlags ){ + pLoop->nOut = (LogEst)1; + pWInfo->a[0].pWLoop = pLoop; + pLoop->maskSelf = getMask(&pWInfo->sMaskSet, iCur); + pWInfo->a[0].iTabCur = iCur; + pWInfo->nRowOut = 1; + if( pWInfo->pOrderBy ) pWInfo->nOBSat = pWInfo->pOrderBy->nExpr; + if( pWInfo->wctrlFlags & WHERE_WANT_DISTINCT ){ + pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; + } +#ifdef SQLITE_DEBUG + pLoop->cId = '0'; +#endif + return 1; + } + return 0; +} + +/* +** Generate the beginning of the loop used for WHERE clause processing. +** The return value is a pointer to an opaque structure that contains +** information needed to terminate the loop. Later, the calling routine +** should invoke sqlite3WhereEnd() with the return value of this function +** in order to complete the WHERE clause processing. +** +** If an error occurs, this routine returns NULL. +** +** The basic idea is to do a nested loop, one loop for each table in +** the FROM clause of a select. (INSERT and UPDATE statements are the +** same as a SELECT with only a single table in the FROM clause.) For +** example, if the SQL is this: +** +** SELECT * FROM t1, t2, t3 WHERE ...; +** +** Then the code generated is conceptually like the following: +** +** foreach row1 in t1 do \ Code generated +** foreach row2 in t2 do |-- by sqlite3WhereBegin() +** foreach row3 in t3 do / +** ... +** end \ Code generated +** end |-- by sqlite3WhereEnd() +** end / +** +** Note that the loops might not be nested in the order in which they +** appear in the FROM clause if a different order is better able to make +** use of indices. Note also that when the IN operator appears in +** the WHERE clause, it might result in additional nested loops for +** scanning through all values on the right-hand side of the IN. +** +** There are Btree cursors associated with each table. t1 uses cursor +** number pTabList->a[0].iCursor. t2 uses the cursor pTabList->a[1].iCursor. +** And so forth. This routine generates code to open those VDBE cursors +** and sqlite3WhereEnd() generates the code to close them. +** +** The code that sqlite3WhereBegin() generates leaves the cursors named +** in pTabList pointing at their appropriate entries. The [...] code +** can use OP_Column and OP_Rowid opcodes on these cursors to extract +** data from the various tables of the loop. +** +** If the WHERE clause is empty, the foreach loops must each scan their +** entire tables. Thus a three-way join is an O(N^3) operation. But if +** the tables have indices and there are terms in the WHERE clause that +** refer to those indices, a complete table scan can be avoided and the +** code will run much faster. Most of the work of this routine is checking +** to see if there are indices that can be used to speed up the loop. +** +** Terms of the WHERE clause are also used to limit which rows actually +** make it to the "..." in the middle of the loop. After each "foreach", +** terms of the WHERE clause that use only terms in that loop and outer +** loops are evaluated and if false a jump is made around all subsequent +** inner loops (or around the "..." if the test occurs within the inner- +** most loop) +** +** OUTER JOINS +** +** An outer join of tables t1 and t2 is conceptally coded as follows: +** +** foreach row1 in t1 do +** flag = 0 +** foreach row2 in t2 do +** start: +** ... +** flag = 1 +** end +** if flag==0 then +** move the row2 cursor to a null row +** goto start +** fi +** end +** +** ORDER BY CLAUSE PROCESSING +** +** pOrderBy is a pointer to the ORDER BY clause (or the GROUP BY clause +** if the WHERE_GROUPBY flag is set in wctrlFlags) of a SELECT statement +** if there is one. If there is no ORDER BY clause or if this routine +** is called from an UPDATE or DELETE statement, then pOrderBy is NULL. +** +** The iIdxCur parameter is the cursor number of an index. If +** WHERE_ONETABLE_ONLY is set, iIdxCur is the cursor number of an index +** to use for OR clause processing. The WHERE clause should use this +** specific cursor. If WHERE_ONEPASS_DESIRED is set, then iIdxCur is +** the first cursor in an array of cursors for all indices. iIdxCur should +** be used to compute the appropriate cursor depending on which index is +** used. +*/ +SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin( + Parse *pParse, /* The parser context */ + SrcList *pTabList, /* FROM clause: A list of all tables to be scanned */ + Expr *pWhere, /* The WHERE clause */ + ExprList *pOrderBy, /* An ORDER BY (or GROUP BY) clause, or NULL */ + ExprList *pResultSet, /* Result set of the query */ + u16 wctrlFlags, /* One of the WHERE_* flags defined in sqliteInt.h */ + int iIdxCur /* If WHERE_ONETABLE_ONLY is set, index cursor number */ +){ + int nByteWInfo; /* Num. bytes allocated for WhereInfo struct */ + int nTabList; /* Number of elements in pTabList */ + WhereInfo *pWInfo; /* Will become the return value of this function */ + Vdbe *v = pParse->pVdbe; /* The virtual database engine */ + Bitmask notReady; /* Cursors that are not yet positioned */ + WhereLoopBuilder sWLB; /* The WhereLoop builder */ + WhereMaskSet *pMaskSet; /* The expression mask set */ + WhereLevel *pLevel; /* A single level in pWInfo->a[] */ + WhereLoop *pLoop; /* Pointer to a single WhereLoop object */ + int ii; /* Loop counter */ + sqlite3 *db; /* Database connection */ + int rc; /* Return code */ + + + /* Variable initialization */ + db = pParse->db; + memset(&sWLB, 0, sizeof(sWLB)); + + /* An ORDER/GROUP BY clause of more than 63 terms cannot be optimized */ + testcase( pOrderBy && pOrderBy->nExpr==BMS-1 ); + if( pOrderBy && pOrderBy->nExpr>=BMS ) pOrderBy = 0; + sWLB.pOrderBy = pOrderBy; + + /* Disable the DISTINCT optimization if SQLITE_DistinctOpt is set via + ** sqlite3_test_ctrl(SQLITE_TESTCTRL_OPTIMIZATIONS,...) */ + if( OptimizationDisabled(db, SQLITE_DistinctOpt) ){ + wctrlFlags &= ~WHERE_WANT_DISTINCT; + } + + /* The number of tables in the FROM clause is limited by the number of + ** bits in a Bitmask + */ + testcase( pTabList->nSrc==BMS ); + if( pTabList->nSrc>BMS ){ + sqlite3ErrorMsg(pParse, "at most %d tables in a join", BMS); + return 0; + } + + /* This function normally generates a nested loop for all tables in + ** pTabList. But if the WHERE_ONETABLE_ONLY flag is set, then we should + ** only generate code for the first table in pTabList and assume that + ** any cursors associated with subsequent tables are uninitialized. + */ + nTabList = (wctrlFlags & WHERE_ONETABLE_ONLY) ? 1 : pTabList->nSrc; + + /* Allocate and initialize the WhereInfo structure that will become the + ** return value. A single allocation is used to store the WhereInfo + ** struct, the contents of WhereInfo.a[], the WhereClause structure + ** and the WhereMaskSet structure. Since WhereClause contains an 8-byte + ** field (type Bitmask) it must be aligned on an 8-byte boundary on + ** some architectures. Hence the ROUND8() below. + */ + nByteWInfo = ROUND8(sizeof(WhereInfo)+(nTabList-1)*sizeof(WhereLevel)); + pWInfo = sqlite3DbMallocZero(db, nByteWInfo + sizeof(WhereLoop)); + if( db->mallocFailed ){ + sqlite3DbFree(db, pWInfo); + pWInfo = 0; + goto whereBeginError; + } + pWInfo->aiCurOnePass[0] = pWInfo->aiCurOnePass[1] = -1; + pWInfo->nLevel = nTabList; + pWInfo->pParse = pParse; + pWInfo->pTabList = pTabList; + pWInfo->pOrderBy = pOrderBy; + pWInfo->pResultSet = pResultSet; + pWInfo->iBreak = pWInfo->iContinue = sqlite3VdbeMakeLabel(v); + pWInfo->wctrlFlags = wctrlFlags; + pWInfo->savedNQueryLoop = pParse->nQueryLoop; + pMaskSet = &pWInfo->sMaskSet; + sWLB.pWInfo = pWInfo; + sWLB.pWC = &pWInfo->sWC; + sWLB.pNew = (WhereLoop*)(((char*)pWInfo)+nByteWInfo); + assert( EIGHT_BYTE_ALIGNMENT(sWLB.pNew) ); + whereLoopInit(sWLB.pNew); +#ifdef SQLITE_DEBUG + sWLB.pNew->cId = '*'; +#endif + + /* Split the WHERE clause into separate subexpressions where each + ** subexpression is separated by an AND operator. + */ + initMaskSet(pMaskSet); + whereClauseInit(&pWInfo->sWC, pWInfo); + whereSplit(&pWInfo->sWC, pWhere, TK_AND); + + /* Special case: a WHERE clause that is constant. Evaluate the + ** expression and either jump over all of the code or fall thru. + */ + for(ii=0; iinTerm; ii++){ + if( nTabList==0 || sqlite3ExprIsConstantNotJoin(sWLB.pWC->a[ii].pExpr) ){ + sqlite3ExprIfFalse(pParse, sWLB.pWC->a[ii].pExpr, pWInfo->iBreak, + SQLITE_JUMPIFNULL); + sWLB.pWC->a[ii].wtFlags |= TERM_CODED; + } + } + + /* Special case: No FROM clause + */ + if( nTabList==0 ){ + if( pOrderBy ) pWInfo->nOBSat = pOrderBy->nExpr; + if( wctrlFlags & WHERE_WANT_DISTINCT ){ + pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; + } + } + + /* Assign a bit from the bitmask to every term in the FROM clause. + ** + ** When assigning bitmask values to FROM clause cursors, it must be + ** the case that if X is the bitmask for the N-th FROM clause term then + ** the bitmask for all FROM clause terms to the left of the N-th term + ** is (X-1). An expression from the ON clause of a LEFT JOIN can use + ** its Expr.iRightJoinTable value to find the bitmask of the right table + ** of the join. Subtracting one from the right table bitmask gives a + ** bitmask for all tables to the left of the join. Knowing the bitmask + ** for all tables to the left of a left join is important. Ticket #3015. + ** + ** Note that bitmasks are created for all pTabList->nSrc tables in + ** pTabList, not just the first nTabList tables. nTabList is normally + ** equal to pTabList->nSrc but might be shortened to 1 if the + ** WHERE_ONETABLE_ONLY flag is set. + */ + for(ii=0; iinSrc; ii++){ + createMask(pMaskSet, pTabList->a[ii].iCursor); + } +#ifndef NDEBUG + { + Bitmask toTheLeft = 0; + for(ii=0; iinSrc; ii++){ + Bitmask m = getMask(pMaskSet, pTabList->a[ii].iCursor); + assert( (m-1)==toTheLeft ); + toTheLeft |= m; + } + } +#endif + + /* Analyze all of the subexpressions. Note that exprAnalyze() might + ** add new virtual terms onto the end of the WHERE clause. We do not + ** want to analyze these virtual terms, so start analyzing at the end + ** and work forward so that the added virtual terms are never processed. + */ + exprAnalyzeAll(pTabList, &pWInfo->sWC); + if( db->mallocFailed ){ + goto whereBeginError; + } + + if( wctrlFlags & WHERE_WANT_DISTINCT ){ + if( isDistinctRedundant(pParse, pTabList, &pWInfo->sWC, pResultSet) ){ + /* The DISTINCT marking is pointless. Ignore it. */ + pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; + }else if( pOrderBy==0 ){ + /* Try to ORDER BY the result set to make distinct processing easier */ + pWInfo->wctrlFlags |= WHERE_DISTINCTBY; + pWInfo->pOrderBy = pResultSet; + } + } + + /* Construct the WhereLoop objects */ + WHERETRACE(0xffff,("*** Optimizer Start ***\n")); + /* Display all terms of the WHERE clause */ +#if defined(WHERETRACE_ENABLED) && defined(SQLITE_ENABLE_TREE_EXPLAIN) + if( sqlite3WhereTrace & 0x100 ){ + int i; + Vdbe *v = pParse->pVdbe; + sqlite3ExplainBegin(v); + for(i=0; inTerm; i++){ + sqlite3ExplainPrintf(v, "#%-2d ", i); + sqlite3ExplainPush(v); + whereExplainTerm(v, &sWLB.pWC->a[i]); + sqlite3ExplainPop(v); + sqlite3ExplainNL(v); + } + sqlite3ExplainFinish(v); + sqlite3DebugPrintf("%s", sqlite3VdbeExplanation(v)); + } +#endif + if( nTabList!=1 || whereShortCut(&sWLB)==0 ){ + rc = whereLoopAddAll(&sWLB); + if( rc ) goto whereBeginError; + + /* Display all of the WhereLoop objects if wheretrace is enabled */ +#ifdef WHERETRACE_ENABLED /* !=0 */ + if( sqlite3WhereTrace ){ + WhereLoop *p; + int i; + static char zLabel[] = "0123456789abcdefghijklmnopqrstuvwyxz" + "ABCDEFGHIJKLMNOPQRSTUVWYXZ"; + for(p=pWInfo->pLoops, i=0; p; p=p->pNextLoop, i++){ + p->cId = zLabel[i%sizeof(zLabel)]; + whereLoopPrint(p, sWLB.pWC); + } + } +#endif + + wherePathSolver(pWInfo, 0); + if( db->mallocFailed ) goto whereBeginError; + if( pWInfo->pOrderBy ){ + wherePathSolver(pWInfo, pWInfo->nRowOut+1); + if( db->mallocFailed ) goto whereBeginError; + } + } + if( pWInfo->pOrderBy==0 && (db->flags & SQLITE_ReverseOrder)!=0 ){ + pWInfo->revMask = (Bitmask)(-1); + } + if( pParse->nErr || NEVER(db->mallocFailed) ){ + goto whereBeginError; + } +#ifdef WHERETRACE_ENABLED /* !=0 */ + if( sqlite3WhereTrace ){ + int ii; + sqlite3DebugPrintf("---- Solution nRow=%d", pWInfo->nRowOut); + if( pWInfo->nOBSat>0 ){ + sqlite3DebugPrintf(" ORDERBY=%d,0x%llx", pWInfo->nOBSat, pWInfo->revMask); + } + switch( pWInfo->eDistinct ){ + case WHERE_DISTINCT_UNIQUE: { + sqlite3DebugPrintf(" DISTINCT=unique"); + break; + } + case WHERE_DISTINCT_ORDERED: { + sqlite3DebugPrintf(" DISTINCT=ordered"); + break; + } + case WHERE_DISTINCT_UNORDERED: { + sqlite3DebugPrintf(" DISTINCT=unordered"); + break; + } + } + sqlite3DebugPrintf("\n"); + for(ii=0; iinLevel; ii++){ + whereLoopPrint(pWInfo->a[ii].pWLoop, sWLB.pWC); + } + } +#endif + /* Attempt to omit tables from the join that do not effect the result */ + if( pWInfo->nLevel>=2 + && pResultSet!=0 + && OptimizationEnabled(db, SQLITE_OmitNoopJoin) + ){ + Bitmask tabUsed = exprListTableUsage(pMaskSet, pResultSet); + if( sWLB.pOrderBy ) tabUsed |= exprListTableUsage(pMaskSet, sWLB.pOrderBy); + while( pWInfo->nLevel>=2 ){ + WhereTerm *pTerm, *pEnd; + pLoop = pWInfo->a[pWInfo->nLevel-1].pWLoop; + if( (pWInfo->pTabList->a[pLoop->iTab].jointype & JT_LEFT)==0 ) break; + if( (wctrlFlags & WHERE_WANT_DISTINCT)==0 + && (pLoop->wsFlags & WHERE_ONEROW)==0 + ){ + break; + } + if( (tabUsed & pLoop->maskSelf)!=0 ) break; + pEnd = sWLB.pWC->a + sWLB.pWC->nTerm; + for(pTerm=sWLB.pWC->a; pTermprereqAll & pLoop->maskSelf)!=0 + && !ExprHasProperty(pTerm->pExpr, EP_FromJoin) + ){ + break; + } + } + if( pTerm drop loop %c not used\n", pLoop->cId)); + pWInfo->nLevel--; + nTabList--; + } + } + WHERETRACE(0xffff,("*** Optimizer Finished ***\n")); + pWInfo->pParse->nQueryLoop += pWInfo->nRowOut; + + /* If the caller is an UPDATE or DELETE statement that is requesting + ** to use a one-pass algorithm, determine if this is appropriate. + ** The one-pass algorithm only works if the WHERE clause constrains + ** the statement to update a single row. + */ + assert( (wctrlFlags & WHERE_ONEPASS_DESIRED)==0 || pWInfo->nLevel==1 ); + if( (wctrlFlags & WHERE_ONEPASS_DESIRED)!=0 + && (pWInfo->a[0].pWLoop->wsFlags & WHERE_ONEROW)!=0 ){ + pWInfo->okOnePass = 1; + if( HasRowid(pTabList->a[0].pTab) ){ + pWInfo->a[0].pWLoop->wsFlags &= ~WHERE_IDX_ONLY; + } + } + + /* Open all tables in the pTabList and any indices selected for + ** searching those tables. + */ + notReady = ~(Bitmask)0; + for(ii=0, pLevel=pWInfo->a; iia[pLevel->iFrom]; + pTab = pTabItem->pTab; + iDb = sqlite3SchemaToIndex(db, pTab->pSchema); + pLoop = pLevel->pWLoop; + if( (pTab->tabFlags & TF_Ephemeral)!=0 || pTab->pSelect ){ + /* Do nothing */ + }else +#ifndef SQLITE_OMIT_VIRTUALTABLE + if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ){ + const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); + int iCur = pTabItem->iCursor; + sqlite3VdbeAddOp4(v, OP_VOpen, iCur, 0, 0, pVTab, P4_VTAB); + }else if( IsVirtual(pTab) ){ + /* noop */ + }else +#endif + if( (pLoop->wsFlags & WHERE_IDX_ONLY)==0 + && (wctrlFlags & WHERE_OMIT_OPEN_CLOSE)==0 ){ + int op = OP_OpenRead; + if( pWInfo->okOnePass ){ + op = OP_OpenWrite; + pWInfo->aiCurOnePass[0] = pTabItem->iCursor; + }; + sqlite3OpenTable(pParse, pTabItem->iCursor, iDb, pTab, op); + assert( pTabItem->iCursor==pLevel->iTabCur ); + testcase( !pWInfo->okOnePass && pTab->nCol==BMS-1 ); + testcase( !pWInfo->okOnePass && pTab->nCol==BMS ); + if( !pWInfo->okOnePass && pTab->nColcolUsed; + int n = 0; + for(; b; b=b>>1, n++){} + sqlite3VdbeChangeP4(v, sqlite3VdbeCurrentAddr(v)-1, + SQLITE_INT_TO_PTR(n), P4_INT32); + assert( n<=pTab->nCol ); + } + }else{ + sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); + } + if( pLoop->wsFlags & WHERE_INDEXED ){ + Index *pIx = pLoop->u.btree.pIndex; + int iIndexCur; + int op = OP_OpenRead; + /* iIdxCur is always set if to a positive value if ONEPASS is possible */ + assert( iIdxCur!=0 || (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 ); + if( !HasRowid(pTab) && IsPrimaryKeyIndex(pIx) + && (wctrlFlags & WHERE_ONETABLE_ONLY)!=0 + ){ + /* This is one term of an OR-optimization using the PRIMARY KEY of a + ** WITHOUT ROWID table. No need for a separate index */ + iIndexCur = pLevel->iTabCur; + op = 0; + }else if( pWInfo->okOnePass ){ + Index *pJ = pTabItem->pTab->pIndex; + iIndexCur = iIdxCur; + assert( wctrlFlags & WHERE_ONEPASS_DESIRED ); + while( ALWAYS(pJ) && pJ!=pIx ){ + iIndexCur++; + pJ = pJ->pNext; + } + op = OP_OpenWrite; + pWInfo->aiCurOnePass[1] = iIndexCur; + }else if( iIdxCur && (wctrlFlags & WHERE_ONETABLE_ONLY)!=0 ){ + iIndexCur = iIdxCur; + }else{ + iIndexCur = pParse->nTab++; + } + pLevel->iIdxCur = iIndexCur; + assert( pIx->pSchema==pTab->pSchema ); + assert( iIndexCur>=0 ); + if( op ){ + sqlite3VdbeAddOp3(v, op, iIndexCur, pIx->tnum, iDb); + sqlite3VdbeSetP4KeyInfo(pParse, pIx); + VdbeComment((v, "%s", pIx->zName)); + } + } + if( iDb>=0 ) sqlite3CodeVerifySchema(pParse, iDb); + notReady &= ~getMask(&pWInfo->sMaskSet, pTabItem->iCursor); + } + pWInfo->iTop = sqlite3VdbeCurrentAddr(v); + if( db->mallocFailed ) goto whereBeginError; + + /* Generate the code to do the search. Each iteration of the for + ** loop below generates code for a single nested loop of the VM + ** program. + */ + notReady = ~(Bitmask)0; + for(ii=0; iia[ii]; +#ifndef SQLITE_OMIT_AUTOMATIC_INDEX + if( (pLevel->pWLoop->wsFlags & WHERE_AUTO_INDEX)!=0 ){ + constructAutomaticIndex(pParse, &pWInfo->sWC, + &pTabList->a[pLevel->iFrom], notReady, pLevel); + if( db->mallocFailed ) goto whereBeginError; + } +#endif + explainOneScan(pParse, pTabList, pLevel, ii, pLevel->iFrom, wctrlFlags); + pLevel->addrBody = sqlite3VdbeCurrentAddr(v); + notReady = codeOneLoopStart(pWInfo, ii, notReady); + pWInfo->iContinue = pLevel->addrCont; + } + + /* Done. */ + VdbeModuleComment((v, "Begin WHERE-core")); + return pWInfo; + + /* Jump here if malloc fails */ +whereBeginError: + if( pWInfo ){ + pParse->nQueryLoop = pWInfo->savedNQueryLoop; + whereInfoFree(db, pWInfo); + } + return 0; +} + +/* +** Generate the end of the WHERE loop. See comments on +** sqlite3WhereBegin() for additional information. +*/ +SQLITE_PRIVATE void sqlite3WhereEnd(WhereInfo *pWInfo){ + Parse *pParse = pWInfo->pParse; + Vdbe *v = pParse->pVdbe; + int i; + WhereLevel *pLevel; + WhereLoop *pLoop; + SrcList *pTabList = pWInfo->pTabList; + sqlite3 *db = pParse->db; + + /* Generate loop termination code. + */ + VdbeModuleComment((v, "End WHERE-core")); + sqlite3ExprCacheClear(pParse); + for(i=pWInfo->nLevel-1; i>=0; i--){ + int addr; + pLevel = &pWInfo->a[i]; + pLoop = pLevel->pWLoop; + sqlite3VdbeResolveLabel(v, pLevel->addrCont); + if( pLevel->op!=OP_Noop ){ + sqlite3VdbeAddOp3(v, pLevel->op, pLevel->p1, pLevel->p2, pLevel->p3); + sqlite3VdbeChangeP5(v, pLevel->p5); + VdbeCoverage(v); + VdbeCoverageIf(v, pLevel->op==OP_Next); + VdbeCoverageIf(v, pLevel->op==OP_Prev); + VdbeCoverageIf(v, pLevel->op==OP_VNext); + } + if( pLoop->wsFlags & WHERE_IN_ABLE && pLevel->u.in.nIn>0 ){ + struct InLoop *pIn; + int j; + sqlite3VdbeResolveLabel(v, pLevel->addrNxt); + for(j=pLevel->u.in.nIn, pIn=&pLevel->u.in.aInLoop[j-1]; j>0; j--, pIn--){ + sqlite3VdbeJumpHere(v, pIn->addrInTop+1); + sqlite3VdbeAddOp2(v, pIn->eEndLoopOp, pIn->iCur, pIn->addrInTop); + VdbeCoverage(v); + VdbeCoverageIf(v, pIn->eEndLoopOp==OP_PrevIfOpen); + VdbeCoverageIf(v, pIn->eEndLoopOp==OP_NextIfOpen); + sqlite3VdbeJumpHere(v, pIn->addrInTop-1); + } + sqlite3DbFree(db, pLevel->u.in.aInLoop); + } + sqlite3VdbeResolveLabel(v, pLevel->addrBrk); + if( pLevel->addrSkip ){ + sqlite3VdbeAddOp2(v, OP_Goto, 0, pLevel->addrSkip); + VdbeComment((v, "next skip-scan on %s", pLoop->u.btree.pIndex->zName)); + sqlite3VdbeJumpHere(v, pLevel->addrSkip); + sqlite3VdbeJumpHere(v, pLevel->addrSkip-2); + } + if( pLevel->iLeftJoin ){ + addr = sqlite3VdbeAddOp1(v, OP_IfPos, pLevel->iLeftJoin); VdbeCoverage(v); + assert( (pLoop->wsFlags & WHERE_IDX_ONLY)==0 + || (pLoop->wsFlags & WHERE_INDEXED)!=0 ); + if( (pLoop->wsFlags & WHERE_IDX_ONLY)==0 ){ + sqlite3VdbeAddOp1(v, OP_NullRow, pTabList->a[i].iCursor); + } + if( pLoop->wsFlags & WHERE_INDEXED ){ + sqlite3VdbeAddOp1(v, OP_NullRow, pLevel->iIdxCur); + } + if( pLevel->op==OP_Return ){ + sqlite3VdbeAddOp2(v, OP_Gosub, pLevel->p1, pLevel->addrFirst); + }else{ + sqlite3VdbeAddOp2(v, OP_Goto, 0, pLevel->addrFirst); + } + sqlite3VdbeJumpHere(v, addr); + } + VdbeModuleComment((v, "End WHERE-loop%d: %s", i, + pWInfo->pTabList->a[pLevel->iFrom].pTab->zName)); + } + + /* The "break" point is here, just past the end of the outer loop. + ** Set it. + */ + sqlite3VdbeResolveLabel(v, pWInfo->iBreak); + + assert( pWInfo->nLevel<=pTabList->nSrc ); + for(i=0, pLevel=pWInfo->a; inLevel; i++, pLevel++){ + int k, last; + VdbeOp *pOp; + Index *pIdx = 0; + struct SrcList_item *pTabItem = &pTabList->a[pLevel->iFrom]; + Table *pTab = pTabItem->pTab; + assert( pTab!=0 ); + pLoop = pLevel->pWLoop; + + /* For a co-routine, change all OP_Column references to the table of + ** the co-routine into OP_SCopy of result contained in a register. + ** OP_Rowid becomes OP_Null. + */ + if( pTabItem->viaCoroutine && !db->mallocFailed ){ + last = sqlite3VdbeCurrentAddr(v); + k = pLevel->addrBody; + pOp = sqlite3VdbeGetOp(v, k); + for(; kp1!=pLevel->iTabCur ) continue; + if( pOp->opcode==OP_Column ){ + pOp->opcode = OP_Copy; + pOp->p1 = pOp->p2 + pTabItem->regResult; + pOp->p2 = pOp->p3; + pOp->p3 = 0; + }else if( pOp->opcode==OP_Rowid ){ + pOp->opcode = OP_Null; + pOp->p1 = 0; + pOp->p3 = 0; + } + } + continue; + } + + /* Close all of the cursors that were opened by sqlite3WhereBegin. + ** Except, do not close cursors that will be reused by the OR optimization + ** (WHERE_OMIT_OPEN_CLOSE). And do not close the OP_OpenWrite cursors + ** created for the ONEPASS optimization. + */ + if( (pTab->tabFlags & TF_Ephemeral)==0 + && pTab->pSelect==0 + && (pWInfo->wctrlFlags & WHERE_OMIT_OPEN_CLOSE)==0 + ){ + int ws = pLoop->wsFlags; + if( !pWInfo->okOnePass && (ws & WHERE_IDX_ONLY)==0 ){ + sqlite3VdbeAddOp1(v, OP_Close, pTabItem->iCursor); + } + if( (ws & WHERE_INDEXED)!=0 + && (ws & (WHERE_IPK|WHERE_AUTO_INDEX))==0 + && pLevel->iIdxCur!=pWInfo->aiCurOnePass[1] + ){ + sqlite3VdbeAddOp1(v, OP_Close, pLevel->iIdxCur); + } + } + + /* If this scan uses an index, make VDBE code substitutions to read data + ** from the index instead of from the table where possible. In some cases + ** this optimization prevents the table from ever being read, which can + ** yield a significant performance boost. + ** + ** Calls to the code generator in between sqlite3WhereBegin and + ** sqlite3WhereEnd will have created code that references the table + ** directly. This loop scans all that code looking for opcodes + ** that reference the table and converts them into opcodes that + ** reference the index. + */ + if( pLoop->wsFlags & (WHERE_INDEXED|WHERE_IDX_ONLY) ){ + pIdx = pLoop->u.btree.pIndex; + }else if( pLoop->wsFlags & WHERE_MULTI_OR ){ + pIdx = pLevel->u.pCovidx; + } + if( pIdx && !db->mallocFailed ){ + last = sqlite3VdbeCurrentAddr(v); + k = pLevel->addrBody; + pOp = sqlite3VdbeGetOp(v, k); + for(; kp1!=pLevel->iTabCur ) continue; + if( pOp->opcode==OP_Column ){ + int x = pOp->p2; + assert( pIdx->pTable==pTab ); + if( !HasRowid(pTab) ){ + Index *pPk = sqlite3PrimaryKeyIndex(pTab); + x = pPk->aiColumn[x]; + } + x = sqlite3ColumnOfIndex(pIdx, x); + if( x>=0 ){ + pOp->p2 = x; + pOp->p1 = pLevel->iIdxCur; + } + assert( (pLoop->wsFlags & WHERE_IDX_ONLY)==0 || x>=0 ); + }else if( pOp->opcode==OP_Rowid ){ + pOp->p1 = pLevel->iIdxCur; + pOp->opcode = OP_IdxRowid; + } + } + } + } + + /* Final cleanup + */ + pParse->nQueryLoop = pWInfo->savedNQueryLoop; + whereInfoFree(db, pWInfo); + return; +} + +/************** End of where.c ***********************************************/ +/************** Begin file parse.c *******************************************/ +/* Driver template for the LEMON parser generator. +** The author disclaims copyright to this source code. +** +** This version of "lempar.c" is modified, slightly, for use by SQLite. +** The only modifications are the addition of a couple of NEVER() +** macros to disable tests that are needed in the case of a general +** LALR(1) grammar but which are always false in the +** specific grammar used by SQLite. +*/ +/* First off, code is included that follows the "include" declaration +** in the input grammar file. */ +/* #include */ + + +/* +** Disable all error recovery processing in the parser push-down +** automaton. +*/ +#define YYNOERRORRECOVERY 1 + +/* +** Make yytestcase() the same as testcase() +*/ +#define yytestcase(X) testcase(X) + +/* +** An instance of this structure holds information about the +** LIMIT clause of a SELECT statement. +*/ +struct LimitVal { + Expr *pLimit; /* The LIMIT expression. NULL if there is no limit */ + Expr *pOffset; /* The OFFSET expression. NULL if there is none */ +}; + +/* +** An instance of this structure is used to store the LIKE, +** GLOB, NOT LIKE, and NOT GLOB operators. +*/ +struct LikeOp { + Token eOperator; /* "like" or "glob" or "regexp" */ + int bNot; /* True if the NOT keyword is present */ +}; + +/* +** An instance of the following structure describes the event of a +** TRIGGER. "a" is the event type, one of TK_UPDATE, TK_INSERT, +** TK_DELETE, or TK_INSTEAD. If the event is of the form +** +** UPDATE ON (a,b,c) +** +** Then the "b" IdList records the list "a,b,c". +*/ +struct TrigEvent { int a; IdList * b; }; + +/* +** An instance of this structure holds the ATTACH key and the key type. +*/ +struct AttachKey { int type; Token key; }; + + + /* This is a utility routine used to set the ExprSpan.zStart and + ** ExprSpan.zEnd values of pOut so that the span covers the complete + ** range of text beginning with pStart and going to the end of pEnd. + */ + static void spanSet(ExprSpan *pOut, Token *pStart, Token *pEnd){ + pOut->zStart = pStart->z; + pOut->zEnd = &pEnd->z[pEnd->n]; + } + + /* Construct a new Expr object from a single identifier. Use the + ** new Expr to populate pOut. Set the span of pOut to be the identifier + ** that created the expression. + */ + static void spanExpr(ExprSpan *pOut, Parse *pParse, int op, Token *pValue){ + pOut->pExpr = sqlite3PExpr(pParse, op, 0, 0, pValue); + pOut->zStart = pValue->z; + pOut->zEnd = &pValue->z[pValue->n]; + } + + /* This routine constructs a binary expression node out of two ExprSpan + ** objects and uses the result to populate a new ExprSpan object. + */ + static void spanBinaryExpr( + ExprSpan *pOut, /* Write the result here */ + Parse *pParse, /* The parsing context. Errors accumulate here */ + int op, /* The binary operation */ + ExprSpan *pLeft, /* The left operand */ + ExprSpan *pRight /* The right operand */ + ){ + pOut->pExpr = sqlite3PExpr(pParse, op, pLeft->pExpr, pRight->pExpr, 0); + pOut->zStart = pLeft->zStart; + pOut->zEnd = pRight->zEnd; + } + + /* Construct an expression node for a unary postfix operator + */ + static void spanUnaryPostfix( + ExprSpan *pOut, /* Write the new expression node here */ + Parse *pParse, /* Parsing context to record errors */ + int op, /* The operator */ + ExprSpan *pOperand, /* The operand */ + Token *pPostOp /* The operand token for setting the span */ + ){ + pOut->pExpr = sqlite3PExpr(pParse, op, pOperand->pExpr, 0, 0); + pOut->zStart = pOperand->zStart; + pOut->zEnd = &pPostOp->z[pPostOp->n]; + } + + /* A routine to convert a binary TK_IS or TK_ISNOT expression into a + ** unary TK_ISNULL or TK_NOTNULL expression. */ + static void binaryToUnaryIfNull(Parse *pParse, Expr *pY, Expr *pA, int op){ + sqlite3 *db = pParse->db; + if( db->mallocFailed==0 && pY->op==TK_NULL ){ + pA->op = (u8)op; + sqlite3ExprDelete(db, pA->pRight); + pA->pRight = 0; + } + } + + /* Construct an expression node for a unary prefix operator + */ + static void spanUnaryPrefix( + ExprSpan *pOut, /* Write the new expression node here */ + Parse *pParse, /* Parsing context to record errors */ + int op, /* The operator */ + ExprSpan *pOperand, /* The operand */ + Token *pPreOp /* The operand token for setting the span */ + ){ + pOut->pExpr = sqlite3PExpr(pParse, op, pOperand->pExpr, 0, 0); + pOut->zStart = pPreOp->z; + pOut->zEnd = pOperand->zEnd; + } +/* Next is all token values, in a form suitable for use by makeheaders. +** This section will be null unless lemon is run with the -m switch. +*/ +/* +** These constants (all generated automatically by the parser generator) +** specify the various kinds of tokens (terminals) that the parser +** understands. +** +** Each symbol here is a terminal symbol in the grammar. +*/ +/* Make sure the INTERFACE macro is defined. +*/ +#ifndef INTERFACE +# define INTERFACE 1 +#endif +/* The next thing included is series of defines which control +** various aspects of the generated parser. +** YYCODETYPE is the data type used for storing terminal +** and nonterminal numbers. "unsigned char" is +** used if there are fewer than 250 terminals +** and nonterminals. "int" is used otherwise. +** YYNOCODE is a number of type YYCODETYPE which corresponds +** to no legal terminal or nonterminal number. This +** number is used to fill in empty slots of the hash +** table. +** YYFALLBACK If defined, this indicates that one or more tokens +** have fall-back values which should be used if the +** original value of the token will not parse. +** YYACTIONTYPE is the data type used for storing terminal +** and nonterminal numbers. "unsigned char" is +** used if there are fewer than 250 rules and +** states combined. "int" is used otherwise. +** sqlite3ParserTOKENTYPE is the data type used for minor tokens given +** directly to the parser from the tokenizer. +** YYMINORTYPE is the data type used for all minor tokens. +** This is typically a union of many types, one of +** which is sqlite3ParserTOKENTYPE. The entry in the union +** for base tokens is called "yy0". +** YYSTACKDEPTH is the maximum depth of the parser's stack. If +** zero the stack is dynamically sized using realloc() +** sqlite3ParserARG_SDECL A static variable declaration for the %extra_argument +** sqlite3ParserARG_PDECL A parameter declaration for the %extra_argument +** sqlite3ParserARG_STORE Code to store %extra_argument into yypParser +** sqlite3ParserARG_FETCH Code to extract %extra_argument from yypParser +** YYNSTATE the combined number of states. +** YYNRULE the number of rules in the grammar +** YYERRORSYMBOL is the code number of the error symbol. If not +** defined, then do no error processing. +*/ +#define YYCODETYPE unsigned char +#define YYNOCODE 254 +#define YYACTIONTYPE unsigned short int +#define YYWILDCARD 70 +#define sqlite3ParserTOKENTYPE Token +typedef union { + int yyinit; + sqlite3ParserTOKENTYPE yy0; + Select* yy3; + ExprList* yy14; + With* yy59; + SrcList* yy65; + struct LikeOp yy96; + Expr* yy132; + u8 yy186; + int yy328; + ExprSpan yy346; + struct TrigEvent yy378; + u16 yy381; + IdList* yy408; + struct {int value; int mask;} yy429; + TriggerStep* yy473; + struct LimitVal yy476; +} YYMINORTYPE; +#ifndef YYSTACKDEPTH +#define YYSTACKDEPTH 100 +#endif +#define sqlite3ParserARG_SDECL Parse *pParse; +#define sqlite3ParserARG_PDECL ,Parse *pParse +#define sqlite3ParserARG_FETCH Parse *pParse = yypParser->pParse +#define sqlite3ParserARG_STORE yypParser->pParse = pParse +#define YYNSTATE 642 +#define YYNRULE 327 +#define YYFALLBACK 1 +#define YY_NO_ACTION (YYNSTATE+YYNRULE+2) +#define YY_ACCEPT_ACTION (YYNSTATE+YYNRULE+1) +#define YY_ERROR_ACTION (YYNSTATE+YYNRULE) + +/* The yyzerominor constant is used to initialize instances of +** YYMINORTYPE objects to zero. */ +static const YYMINORTYPE yyzerominor = { 0 }; + +/* Define the yytestcase() macro to be a no-op if is not already defined +** otherwise. +** +** Applications can choose to define yytestcase() in the %include section +** to a macro that can assist in verifying code coverage. For production +** code the yytestcase() macro should be turned off. But it is useful +** for testing. +*/ +#ifndef yytestcase +# define yytestcase(X) +#endif + + +/* Next are the tables used to determine what action to take based on the +** current state and lookahead token. These tables are used to implement +** functions that take a state number and lookahead value and return an +** action integer. +** +** Suppose the action integer is N. Then the action is determined as +** follows +** +** 0 <= N < YYNSTATE Shift N. That is, push the lookahead +** token onto the stack and goto state N. +** +** YYNSTATE <= N < YYNSTATE+YYNRULE Reduce by rule N-YYNSTATE. +** +** N == YYNSTATE+YYNRULE A syntax error has occurred. +** +** N == YYNSTATE+YYNRULE+1 The parser accepts its input. +** +** N == YYNSTATE+YYNRULE+2 No such action. Denotes unused +** slots in the yy_action[] table. +** +** The action table is constructed as a single large table named yy_action[]. +** Given state S and lookahead X, the action is computed as +** +** yy_action[ yy_shift_ofst[S] + X ] +** +** If the index value yy_shift_ofst[S]+X is out of range or if the value +** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X or if yy_shift_ofst[S] +** is equal to YY_SHIFT_USE_DFLT, it means that the action is not in the table +** and that yy_default[S] should be used instead. +** +** The formula above is for computing the action when the lookahead is +** a terminal symbol. If the lookahead is a non-terminal (as occurs after +** a reduce action) then the yy_reduce_ofst[] array is used in place of +** the yy_shift_ofst[] array and YY_REDUCE_USE_DFLT is used in place of +** YY_SHIFT_USE_DFLT. +** +** The following are the tables generated in this section: +** +** yy_action[] A single table containing all actions. +** yy_lookahead[] A table containing the lookahead for each entry in +** yy_action. Used to detect hash collisions. +** yy_shift_ofst[] For each state, the offset into yy_action for +** shifting terminals. +** yy_reduce_ofst[] For each state, the offset into yy_action for +** shifting non-terminals after a reduce. +** yy_default[] Default action for each state. +*/ +#define YY_ACTTAB_COUNT (1497) +static const YYACTIONTYPE yy_action[] = { + /* 0 */ 306, 212, 432, 955, 639, 191, 955, 295, 559, 88, + /* 10 */ 88, 88, 88, 81, 86, 86, 86, 86, 85, 85, + /* 20 */ 84, 84, 84, 83, 330, 185, 184, 183, 635, 635, + /* 30 */ 292, 606, 606, 88, 88, 88, 88, 683, 86, 86, + /* 40 */ 86, 86, 85, 85, 84, 84, 84, 83, 330, 16, + /* 50 */ 436, 597, 89, 90, 80, 600, 599, 601, 601, 87, + /* 60 */ 87, 88, 88, 88, 88, 684, 86, 86, 86, 86, + /* 70 */ 85, 85, 84, 84, 84, 83, 330, 306, 559, 84, + /* 80 */ 84, 84, 83, 330, 65, 86, 86, 86, 86, 85, + /* 90 */ 85, 84, 84, 84, 83, 330, 635, 635, 634, 633, + /* 100 */ 182, 682, 550, 379, 376, 375, 17, 322, 606, 606, + /* 110 */ 371, 198, 479, 91, 374, 82, 79, 165, 85, 85, + /* 120 */ 84, 84, 84, 83, 330, 598, 635, 635, 107, 89, + /* 130 */ 90, 80, 600, 599, 601, 601, 87, 87, 88, 88, + /* 140 */ 88, 88, 186, 86, 86, 86, 86, 85, 85, 84, + /* 150 */ 84, 84, 83, 330, 306, 594, 594, 142, 328, 327, + /* 160 */ 484, 249, 344, 238, 635, 635, 634, 633, 585, 448, + /* 170 */ 526, 525, 229, 388, 1, 394, 450, 584, 449, 635, + /* 180 */ 635, 635, 635, 319, 395, 606, 606, 199, 157, 273, + /* 190 */ 382, 268, 381, 187, 635, 635, 634, 633, 311, 555, + /* 200 */ 266, 593, 593, 266, 347, 588, 89, 90, 80, 600, + /* 210 */ 599, 601, 601, 87, 87, 88, 88, 88, 88, 478, + /* 220 */ 86, 86, 86, 86, 85, 85, 84, 84, 84, 83, + /* 230 */ 330, 306, 272, 536, 634, 633, 146, 610, 197, 310, + /* 240 */ 575, 182, 482, 271, 379, 376, 375, 506, 21, 634, + /* 250 */ 633, 634, 633, 635, 635, 374, 611, 574, 548, 440, + /* 260 */ 111, 563, 606, 606, 634, 633, 324, 479, 608, 608, + /* 270 */ 608, 300, 435, 573, 119, 407, 210, 162, 562, 883, + /* 280 */ 592, 592, 306, 89, 90, 80, 600, 599, 601, 601, + /* 290 */ 87, 87, 88, 88, 88, 88, 506, 86, 86, 86, + /* 300 */ 86, 85, 85, 84, 84, 84, 83, 330, 620, 111, + /* 310 */ 635, 635, 361, 606, 606, 358, 249, 349, 248, 433, + /* 320 */ 243, 479, 586, 634, 633, 195, 611, 93, 119, 221, + /* 330 */ 575, 497, 534, 534, 89, 90, 80, 600, 599, 601, + /* 340 */ 601, 87, 87, 88, 88, 88, 88, 574, 86, 86, + /* 350 */ 86, 86, 85, 85, 84, 84, 84, 83, 330, 306, + /* 360 */ 77, 429, 638, 573, 589, 530, 240, 230, 242, 105, + /* 370 */ 249, 349, 248, 515, 588, 208, 460, 529, 564, 173, + /* 380 */ 634, 633, 970, 144, 430, 2, 424, 228, 380, 557, + /* 390 */ 606, 606, 190, 153, 159, 158, 514, 51, 632, 631, + /* 400 */ 630, 71, 536, 432, 954, 196, 610, 954, 614, 45, + /* 410 */ 18, 89, 90, 80, 600, 599, 601, 601, 87, 87, + /* 420 */ 88, 88, 88, 88, 261, 86, 86, 86, 86, 85, + /* 430 */ 85, 84, 84, 84, 83, 330, 306, 608, 608, 608, + /* 440 */ 542, 424, 402, 385, 241, 506, 451, 320, 211, 543, + /* 450 */ 164, 436, 386, 293, 451, 587, 108, 496, 111, 334, + /* 460 */ 391, 591, 424, 614, 27, 452, 453, 606, 606, 72, + /* 470 */ 257, 70, 259, 452, 339, 342, 564, 582, 68, 415, + /* 480 */ 469, 328, 327, 62, 614, 45, 110, 393, 89, 90, + /* 490 */ 80, 600, 599, 601, 601, 87, 87, 88, 88, 88, + /* 500 */ 88, 152, 86, 86, 86, 86, 85, 85, 84, 84, + /* 510 */ 84, 83, 330, 306, 110, 499, 520, 538, 402, 389, + /* 520 */ 424, 110, 566, 500, 593, 593, 454, 82, 79, 165, + /* 530 */ 424, 591, 384, 564, 340, 615, 188, 162, 424, 350, + /* 540 */ 616, 424, 614, 44, 606, 606, 445, 582, 300, 434, + /* 550 */ 151, 19, 614, 9, 568, 580, 348, 615, 469, 567, + /* 560 */ 614, 26, 616, 614, 45, 89, 90, 80, 600, 599, + /* 570 */ 601, 601, 87, 87, 88, 88, 88, 88, 411, 86, + /* 580 */ 86, 86, 86, 85, 85, 84, 84, 84, 83, 330, + /* 590 */ 306, 579, 110, 578, 521, 282, 433, 398, 400, 255, + /* 600 */ 486, 82, 79, 165, 487, 164, 82, 79, 165, 488, + /* 610 */ 488, 364, 387, 424, 544, 544, 509, 350, 362, 155, + /* 620 */ 191, 606, 606, 559, 642, 640, 333, 82, 79, 165, + /* 630 */ 305, 564, 507, 312, 357, 614, 45, 329, 596, 595, + /* 640 */ 194, 337, 89, 90, 80, 600, 599, 601, 601, 87, + /* 650 */ 87, 88, 88, 88, 88, 424, 86, 86, 86, 86, + /* 660 */ 85, 85, 84, 84, 84, 83, 330, 306, 20, 323, + /* 670 */ 150, 263, 211, 543, 421, 596, 595, 614, 22, 424, + /* 680 */ 193, 424, 284, 424, 391, 424, 509, 424, 577, 424, + /* 690 */ 186, 335, 424, 559, 424, 313, 120, 546, 606, 606, + /* 700 */ 67, 614, 47, 614, 50, 614, 48, 614, 100, 614, + /* 710 */ 99, 614, 101, 576, 614, 102, 614, 109, 326, 89, + /* 720 */ 90, 80, 600, 599, 601, 601, 87, 87, 88, 88, + /* 730 */ 88, 88, 424, 86, 86, 86, 86, 85, 85, 84, + /* 740 */ 84, 84, 83, 330, 306, 424, 311, 424, 585, 54, + /* 750 */ 424, 516, 517, 590, 614, 112, 424, 584, 424, 572, + /* 760 */ 424, 195, 424, 571, 424, 67, 424, 614, 94, 614, + /* 770 */ 98, 424, 614, 97, 264, 606, 606, 195, 614, 46, + /* 780 */ 614, 96, 614, 30, 614, 49, 614, 115, 614, 114, + /* 790 */ 418, 229, 388, 614, 113, 306, 89, 90, 80, 600, + /* 800 */ 599, 601, 601, 87, 87, 88, 88, 88, 88, 424, + /* 810 */ 86, 86, 86, 86, 85, 85, 84, 84, 84, 83, + /* 820 */ 330, 119, 424, 590, 110, 372, 606, 606, 195, 53, + /* 830 */ 250, 614, 29, 195, 472, 438, 729, 190, 302, 498, + /* 840 */ 14, 523, 641, 2, 614, 43, 306, 89, 90, 80, + /* 850 */ 600, 599, 601, 601, 87, 87, 88, 88, 88, 88, + /* 860 */ 424, 86, 86, 86, 86, 85, 85, 84, 84, 84, + /* 870 */ 83, 330, 424, 613, 964, 964, 354, 606, 606, 420, + /* 880 */ 312, 64, 614, 42, 391, 355, 283, 437, 301, 255, + /* 890 */ 414, 410, 495, 492, 614, 28, 471, 306, 89, 90, + /* 900 */ 80, 600, 599, 601, 601, 87, 87, 88, 88, 88, + /* 910 */ 88, 424, 86, 86, 86, 86, 85, 85, 84, 84, + /* 920 */ 84, 83, 330, 424, 110, 110, 110, 110, 606, 606, + /* 930 */ 110, 254, 13, 614, 41, 532, 531, 283, 481, 531, + /* 940 */ 457, 284, 119, 561, 356, 614, 40, 284, 306, 89, + /* 950 */ 78, 80, 600, 599, 601, 601, 87, 87, 88, 88, + /* 960 */ 88, 88, 424, 86, 86, 86, 86, 85, 85, 84, + /* 970 */ 84, 84, 83, 330, 110, 424, 341, 220, 555, 606, + /* 980 */ 606, 351, 555, 318, 614, 95, 413, 255, 83, 330, + /* 990 */ 284, 284, 255, 640, 333, 356, 255, 614, 39, 306, + /* 1000 */ 356, 90, 80, 600, 599, 601, 601, 87, 87, 88, + /* 1010 */ 88, 88, 88, 424, 86, 86, 86, 86, 85, 85, + /* 1020 */ 84, 84, 84, 83, 330, 424, 317, 316, 141, 465, + /* 1030 */ 606, 606, 219, 619, 463, 614, 10, 417, 462, 255, + /* 1040 */ 189, 510, 553, 351, 207, 363, 161, 614, 38, 315, + /* 1050 */ 218, 255, 255, 80, 600, 599, 601, 601, 87, 87, + /* 1060 */ 88, 88, 88, 88, 424, 86, 86, 86, 86, 85, + /* 1070 */ 85, 84, 84, 84, 83, 330, 76, 419, 255, 3, + /* 1080 */ 878, 461, 424, 247, 331, 331, 614, 37, 217, 76, + /* 1090 */ 419, 390, 3, 216, 215, 422, 4, 331, 331, 424, + /* 1100 */ 547, 12, 424, 545, 614, 36, 424, 541, 422, 424, + /* 1110 */ 540, 424, 214, 424, 408, 424, 539, 403, 605, 605, + /* 1120 */ 237, 614, 25, 119, 614, 24, 588, 408, 614, 45, + /* 1130 */ 118, 614, 35, 614, 34, 614, 33, 614, 23, 588, + /* 1140 */ 60, 223, 603, 602, 513, 378, 73, 74, 140, 139, + /* 1150 */ 424, 110, 265, 75, 426, 425, 59, 424, 610, 73, + /* 1160 */ 74, 549, 402, 404, 424, 373, 75, 426, 425, 604, + /* 1170 */ 138, 610, 614, 11, 392, 76, 419, 181, 3, 614, + /* 1180 */ 32, 271, 369, 331, 331, 493, 614, 31, 149, 608, + /* 1190 */ 608, 608, 607, 15, 422, 365, 614, 8, 137, 489, + /* 1200 */ 136, 190, 608, 608, 608, 607, 15, 485, 176, 135, + /* 1210 */ 7, 252, 477, 408, 174, 133, 175, 474, 57, 56, + /* 1220 */ 132, 130, 119, 76, 419, 588, 3, 468, 245, 464, + /* 1230 */ 171, 331, 331, 125, 123, 456, 447, 122, 446, 104, + /* 1240 */ 336, 231, 422, 166, 154, 73, 74, 332, 116, 431, + /* 1250 */ 121, 309, 75, 426, 425, 222, 106, 610, 308, 637, + /* 1260 */ 204, 408, 629, 627, 628, 6, 200, 428, 427, 290, + /* 1270 */ 203, 622, 201, 588, 62, 63, 289, 66, 419, 399, + /* 1280 */ 3, 401, 288, 92, 143, 331, 331, 287, 608, 608, + /* 1290 */ 608, 607, 15, 73, 74, 227, 422, 325, 69, 416, + /* 1300 */ 75, 426, 425, 612, 412, 610, 192, 61, 569, 209, + /* 1310 */ 396, 226, 278, 225, 383, 408, 527, 558, 276, 533, + /* 1320 */ 552, 528, 321, 523, 370, 508, 180, 588, 494, 179, + /* 1330 */ 366, 117, 253, 269, 522, 503, 608, 608, 608, 607, + /* 1340 */ 15, 551, 502, 58, 274, 524, 178, 73, 74, 304, + /* 1350 */ 501, 368, 303, 206, 75, 426, 425, 491, 360, 610, + /* 1360 */ 213, 177, 483, 131, 345, 298, 297, 296, 202, 294, + /* 1370 */ 480, 490, 466, 134, 172, 129, 444, 346, 470, 128, + /* 1380 */ 314, 459, 103, 127, 126, 148, 124, 167, 443, 235, + /* 1390 */ 608, 608, 608, 607, 15, 442, 439, 623, 234, 299, + /* 1400 */ 145, 583, 291, 377, 581, 160, 119, 156, 270, 636, + /* 1410 */ 971, 169, 279, 626, 520, 625, 473, 624, 170, 621, + /* 1420 */ 618, 119, 168, 55, 409, 423, 537, 609, 286, 285, + /* 1430 */ 405, 570, 560, 556, 5, 52, 458, 554, 147, 267, + /* 1440 */ 519, 504, 518, 406, 262, 239, 260, 512, 343, 511, + /* 1450 */ 258, 353, 565, 256, 224, 251, 359, 277, 275, 476, + /* 1460 */ 475, 246, 352, 244, 467, 455, 236, 233, 232, 307, + /* 1470 */ 441, 281, 205, 163, 397, 280, 535, 505, 330, 617, + /* 1480 */ 971, 971, 971, 971, 367, 971, 971, 971, 971, 971, + /* 1490 */ 971, 971, 971, 971, 971, 971, 338, +}; +static const YYCODETYPE yy_lookahead[] = { + /* 0 */ 19, 22, 22, 23, 1, 24, 26, 15, 27, 80, + /* 10 */ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, + /* 20 */ 91, 92, 93, 94, 95, 108, 109, 110, 27, 28, + /* 30 */ 23, 50, 51, 80, 81, 82, 83, 122, 85, 86, + /* 40 */ 87, 88, 89, 90, 91, 92, 93, 94, 95, 22, + /* 50 */ 70, 23, 71, 72, 73, 74, 75, 76, 77, 78, + /* 60 */ 79, 80, 81, 82, 83, 122, 85, 86, 87, 88, + /* 70 */ 89, 90, 91, 92, 93, 94, 95, 19, 97, 91, + /* 80 */ 92, 93, 94, 95, 26, 85, 86, 87, 88, 89, + /* 90 */ 90, 91, 92, 93, 94, 95, 27, 28, 97, 98, + /* 100 */ 99, 122, 211, 102, 103, 104, 79, 19, 50, 51, + /* 110 */ 19, 122, 59, 55, 113, 224, 225, 226, 89, 90, + /* 120 */ 91, 92, 93, 94, 95, 23, 27, 28, 26, 71, + /* 130 */ 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, + /* 140 */ 82, 83, 51, 85, 86, 87, 88, 89, 90, 91, + /* 150 */ 92, 93, 94, 95, 19, 132, 133, 58, 89, 90, + /* 160 */ 21, 108, 109, 110, 27, 28, 97, 98, 33, 100, + /* 170 */ 7, 8, 119, 120, 22, 19, 107, 42, 109, 27, + /* 180 */ 28, 27, 28, 95, 28, 50, 51, 99, 100, 101, + /* 190 */ 102, 103, 104, 105, 27, 28, 97, 98, 107, 152, + /* 200 */ 112, 132, 133, 112, 65, 69, 71, 72, 73, 74, + /* 210 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 11, + /* 220 */ 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, + /* 230 */ 95, 19, 101, 97, 97, 98, 24, 101, 122, 157, + /* 240 */ 12, 99, 103, 112, 102, 103, 104, 152, 22, 97, + /* 250 */ 98, 97, 98, 27, 28, 113, 27, 29, 91, 164, + /* 260 */ 165, 124, 50, 51, 97, 98, 219, 59, 132, 133, + /* 270 */ 134, 22, 23, 45, 66, 47, 212, 213, 124, 140, + /* 280 */ 132, 133, 19, 71, 72, 73, 74, 75, 76, 77, + /* 290 */ 78, 79, 80, 81, 82, 83, 152, 85, 86, 87, + /* 300 */ 88, 89, 90, 91, 92, 93, 94, 95, 164, 165, + /* 310 */ 27, 28, 230, 50, 51, 233, 108, 109, 110, 70, + /* 320 */ 16, 59, 23, 97, 98, 26, 97, 22, 66, 185, + /* 330 */ 12, 187, 27, 28, 71, 72, 73, 74, 75, 76, + /* 340 */ 77, 78, 79, 80, 81, 82, 83, 29, 85, 86, + /* 350 */ 87, 88, 89, 90, 91, 92, 93, 94, 95, 19, + /* 360 */ 22, 148, 149, 45, 23, 47, 62, 154, 64, 156, + /* 370 */ 108, 109, 110, 37, 69, 23, 163, 59, 26, 26, + /* 380 */ 97, 98, 144, 145, 146, 147, 152, 200, 52, 23, + /* 390 */ 50, 51, 26, 22, 89, 90, 60, 210, 7, 8, + /* 400 */ 9, 138, 97, 22, 23, 26, 101, 26, 174, 175, + /* 410 */ 197, 71, 72, 73, 74, 75, 76, 77, 78, 79, + /* 420 */ 80, 81, 82, 83, 16, 85, 86, 87, 88, 89, + /* 430 */ 90, 91, 92, 93, 94, 95, 19, 132, 133, 134, + /* 440 */ 23, 152, 208, 209, 140, 152, 152, 111, 195, 196, + /* 450 */ 98, 70, 163, 160, 152, 23, 22, 164, 165, 246, + /* 460 */ 207, 27, 152, 174, 175, 171, 172, 50, 51, 137, + /* 470 */ 62, 139, 64, 171, 172, 222, 124, 27, 138, 24, + /* 480 */ 163, 89, 90, 130, 174, 175, 197, 163, 71, 72, + /* 490 */ 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, + /* 500 */ 83, 22, 85, 86, 87, 88, 89, 90, 91, 92, + /* 510 */ 93, 94, 95, 19, 197, 181, 182, 23, 208, 209, + /* 520 */ 152, 197, 26, 189, 132, 133, 232, 224, 225, 226, + /* 530 */ 152, 97, 91, 26, 232, 116, 212, 213, 152, 222, + /* 540 */ 121, 152, 174, 175, 50, 51, 243, 97, 22, 23, + /* 550 */ 22, 234, 174, 175, 177, 23, 239, 116, 163, 177, + /* 560 */ 174, 175, 121, 174, 175, 71, 72, 73, 74, 75, + /* 570 */ 76, 77, 78, 79, 80, 81, 82, 83, 24, 85, + /* 580 */ 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, + /* 590 */ 19, 23, 197, 11, 23, 227, 70, 208, 220, 152, + /* 600 */ 31, 224, 225, 226, 35, 98, 224, 225, 226, 108, + /* 610 */ 109, 110, 115, 152, 117, 118, 27, 222, 49, 123, + /* 620 */ 24, 50, 51, 27, 0, 1, 2, 224, 225, 226, + /* 630 */ 166, 124, 168, 169, 239, 174, 175, 170, 171, 172, + /* 640 */ 22, 194, 71, 72, 73, 74, 75, 76, 77, 78, + /* 650 */ 79, 80, 81, 82, 83, 152, 85, 86, 87, 88, + /* 660 */ 89, 90, 91, 92, 93, 94, 95, 19, 22, 208, + /* 670 */ 24, 23, 195, 196, 170, 171, 172, 174, 175, 152, + /* 680 */ 26, 152, 152, 152, 207, 152, 97, 152, 23, 152, + /* 690 */ 51, 244, 152, 97, 152, 247, 248, 23, 50, 51, + /* 700 */ 26, 174, 175, 174, 175, 174, 175, 174, 175, 174, + /* 710 */ 175, 174, 175, 23, 174, 175, 174, 175, 188, 71, + /* 720 */ 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, + /* 730 */ 82, 83, 152, 85, 86, 87, 88, 89, 90, 91, + /* 740 */ 92, 93, 94, 95, 19, 152, 107, 152, 33, 24, + /* 750 */ 152, 100, 101, 27, 174, 175, 152, 42, 152, 23, + /* 760 */ 152, 26, 152, 23, 152, 26, 152, 174, 175, 174, + /* 770 */ 175, 152, 174, 175, 23, 50, 51, 26, 174, 175, + /* 780 */ 174, 175, 174, 175, 174, 175, 174, 175, 174, 175, + /* 790 */ 163, 119, 120, 174, 175, 19, 71, 72, 73, 74, + /* 800 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 152, + /* 810 */ 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, + /* 820 */ 95, 66, 152, 97, 197, 23, 50, 51, 26, 53, + /* 830 */ 23, 174, 175, 26, 23, 23, 23, 26, 26, 26, + /* 840 */ 36, 106, 146, 147, 174, 175, 19, 71, 72, 73, + /* 850 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, + /* 860 */ 152, 85, 86, 87, 88, 89, 90, 91, 92, 93, + /* 870 */ 94, 95, 152, 196, 119, 120, 19, 50, 51, 168, + /* 880 */ 169, 26, 174, 175, 207, 28, 152, 249, 250, 152, + /* 890 */ 163, 163, 163, 163, 174, 175, 163, 19, 71, 72, + /* 900 */ 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, + /* 910 */ 83, 152, 85, 86, 87, 88, 89, 90, 91, 92, + /* 920 */ 93, 94, 95, 152, 197, 197, 197, 197, 50, 51, + /* 930 */ 197, 194, 36, 174, 175, 191, 192, 152, 191, 192, + /* 940 */ 163, 152, 66, 124, 152, 174, 175, 152, 19, 71, + /* 950 */ 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, + /* 960 */ 82, 83, 152, 85, 86, 87, 88, 89, 90, 91, + /* 970 */ 92, 93, 94, 95, 197, 152, 100, 188, 152, 50, + /* 980 */ 51, 152, 152, 188, 174, 175, 252, 152, 94, 95, + /* 990 */ 152, 152, 152, 1, 2, 152, 152, 174, 175, 19, + /* 1000 */ 152, 72, 73, 74, 75, 76, 77, 78, 79, 80, + /* 1010 */ 81, 82, 83, 152, 85, 86, 87, 88, 89, 90, + /* 1020 */ 91, 92, 93, 94, 95, 152, 188, 188, 22, 194, + /* 1030 */ 50, 51, 240, 173, 194, 174, 175, 252, 194, 152, + /* 1040 */ 36, 181, 28, 152, 23, 219, 122, 174, 175, 219, + /* 1050 */ 221, 152, 152, 73, 74, 75, 76, 77, 78, 79, + /* 1060 */ 80, 81, 82, 83, 152, 85, 86, 87, 88, 89, + /* 1070 */ 90, 91, 92, 93, 94, 95, 19, 20, 152, 22, + /* 1080 */ 23, 194, 152, 240, 27, 28, 174, 175, 240, 19, + /* 1090 */ 20, 26, 22, 194, 194, 38, 22, 27, 28, 152, + /* 1100 */ 23, 22, 152, 116, 174, 175, 152, 23, 38, 152, + /* 1110 */ 23, 152, 221, 152, 57, 152, 23, 163, 50, 51, + /* 1120 */ 194, 174, 175, 66, 174, 175, 69, 57, 174, 175, + /* 1130 */ 40, 174, 175, 174, 175, 174, 175, 174, 175, 69, + /* 1140 */ 22, 53, 74, 75, 30, 53, 89, 90, 22, 22, + /* 1150 */ 152, 197, 23, 96, 97, 98, 22, 152, 101, 89, + /* 1160 */ 90, 91, 208, 209, 152, 53, 96, 97, 98, 101, + /* 1170 */ 22, 101, 174, 175, 152, 19, 20, 105, 22, 174, + /* 1180 */ 175, 112, 19, 27, 28, 20, 174, 175, 24, 132, + /* 1190 */ 133, 134, 135, 136, 38, 44, 174, 175, 107, 61, + /* 1200 */ 54, 26, 132, 133, 134, 135, 136, 54, 107, 22, + /* 1210 */ 5, 140, 1, 57, 36, 111, 122, 28, 79, 79, + /* 1220 */ 131, 123, 66, 19, 20, 69, 22, 1, 16, 20, + /* 1230 */ 125, 27, 28, 123, 111, 120, 23, 131, 23, 16, + /* 1240 */ 68, 142, 38, 15, 22, 89, 90, 3, 167, 4, + /* 1250 */ 248, 251, 96, 97, 98, 180, 180, 101, 251, 151, + /* 1260 */ 6, 57, 151, 13, 151, 26, 25, 151, 161, 202, + /* 1270 */ 153, 162, 153, 69, 130, 128, 203, 19, 20, 127, + /* 1280 */ 22, 126, 204, 129, 22, 27, 28, 205, 132, 133, + /* 1290 */ 134, 135, 136, 89, 90, 231, 38, 95, 137, 179, + /* 1300 */ 96, 97, 98, 206, 179, 101, 122, 107, 159, 159, + /* 1310 */ 125, 231, 216, 228, 107, 57, 184, 217, 216, 176, + /* 1320 */ 217, 176, 48, 106, 18, 184, 158, 69, 159, 158, + /* 1330 */ 46, 71, 237, 176, 176, 176, 132, 133, 134, 135, + /* 1340 */ 136, 217, 176, 137, 216, 178, 158, 89, 90, 179, + /* 1350 */ 176, 159, 179, 159, 96, 97, 98, 159, 159, 101, + /* 1360 */ 5, 158, 202, 22, 18, 10, 11, 12, 13, 14, + /* 1370 */ 190, 238, 17, 190, 158, 193, 41, 159, 202, 193, + /* 1380 */ 159, 202, 245, 193, 193, 223, 190, 32, 159, 34, + /* 1390 */ 132, 133, 134, 135, 136, 159, 39, 155, 43, 150, + /* 1400 */ 223, 177, 201, 178, 177, 186, 66, 199, 177, 152, + /* 1410 */ 253, 56, 215, 152, 182, 152, 202, 152, 63, 152, + /* 1420 */ 152, 66, 67, 242, 229, 152, 174, 152, 152, 152, + /* 1430 */ 152, 152, 152, 152, 199, 242, 202, 152, 198, 152, + /* 1440 */ 152, 152, 183, 192, 152, 215, 152, 183, 215, 183, + /* 1450 */ 152, 241, 214, 152, 211, 152, 152, 211, 211, 152, + /* 1460 */ 152, 241, 152, 152, 152, 152, 152, 152, 152, 114, + /* 1470 */ 152, 152, 235, 152, 152, 152, 174, 187, 95, 174, + /* 1480 */ 253, 253, 253, 253, 236, 253, 253, 253, 253, 253, + /* 1490 */ 253, 253, 253, 253, 253, 253, 141, +}; +#define YY_SHIFT_USE_DFLT (-86) +#define YY_SHIFT_COUNT (429) +#define YY_SHIFT_MIN (-85) +#define YY_SHIFT_MAX (1383) +static const short yy_shift_ofst[] = { + /* 0 */ 992, 1057, 1355, 1156, 1204, 1204, 1, 262, -19, 135, + /* 10 */ 135, 776, 1204, 1204, 1204, 1204, 69, 69, 53, 208, + /* 20 */ 283, 755, 58, 725, 648, 571, 494, 417, 340, 263, + /* 30 */ 212, 827, 827, 827, 827, 827, 827, 827, 827, 827, + /* 40 */ 827, 827, 827, 827, 827, 827, 878, 827, 929, 980, + /* 50 */ 980, 1070, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, + /* 60 */ 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, + /* 70 */ 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, + /* 80 */ 1258, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, + /* 90 */ 1204, 1204, 1204, 1204, -71, -47, -47, -47, -47, -47, + /* 100 */ 0, 29, -12, 283, 283, 139, 91, 392, 392, 894, + /* 110 */ 672, 726, 1383, -86, -86, -86, 88, 318, 318, 99, + /* 120 */ 381, -20, 283, 283, 283, 283, 283, 283, 283, 283, + /* 130 */ 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, + /* 140 */ 283, 283, 283, 283, 624, 876, 726, 672, 1340, 1340, + /* 150 */ 1340, 1340, 1340, 1340, -86, -86, -86, 305, 136, 136, + /* 160 */ 142, 167, 226, 154, 137, 152, 283, 283, 283, 283, + /* 170 */ 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, + /* 180 */ 283, 283, 283, 336, 336, 336, 283, 283, 352, 283, + /* 190 */ 283, 283, 283, 283, 228, 283, 283, 283, 283, 283, + /* 200 */ 283, 283, 283, 283, 283, 501, 569, 596, 596, 596, + /* 210 */ 507, 497, 441, 391, 353, 156, 156, 857, 353, 857, + /* 220 */ 735, 813, 639, 715, 156, 332, 715, 715, 496, 419, + /* 230 */ 646, 1357, 1184, 1184, 1335, 1335, 1184, 1341, 1260, 1144, + /* 240 */ 1346, 1346, 1346, 1346, 1184, 1306, 1144, 1341, 1260, 1260, + /* 250 */ 1144, 1184, 1306, 1206, 1284, 1184, 1184, 1306, 1184, 1306, + /* 260 */ 1184, 1306, 1262, 1207, 1207, 1207, 1274, 1262, 1207, 1217, + /* 270 */ 1207, 1274, 1207, 1207, 1185, 1200, 1185, 1200, 1185, 1200, + /* 280 */ 1184, 1184, 1161, 1262, 1202, 1202, 1262, 1154, 1155, 1147, + /* 290 */ 1152, 1144, 1241, 1239, 1250, 1250, 1254, 1254, 1254, 1254, + /* 300 */ -86, -86, -86, -86, -86, -86, 1068, 304, 526, 249, + /* 310 */ 408, -83, 434, 812, 27, 811, 807, 802, 751, 589, + /* 320 */ 651, 163, 131, 674, 366, 450, 299, 148, 23, 102, + /* 330 */ 229, -21, 1245, 1244, 1222, 1099, 1228, 1172, 1223, 1215, + /* 340 */ 1213, 1115, 1106, 1123, 1110, 1209, 1105, 1212, 1226, 1098, + /* 350 */ 1089, 1140, 1139, 1104, 1189, 1178, 1094, 1211, 1205, 1187, + /* 360 */ 1101, 1071, 1153, 1175, 1146, 1138, 1151, 1091, 1164, 1165, + /* 370 */ 1163, 1069, 1072, 1148, 1112, 1134, 1127, 1129, 1126, 1092, + /* 380 */ 1114, 1118, 1088, 1090, 1093, 1087, 1084, 987, 1079, 1077, + /* 390 */ 1074, 1065, 924, 1021, 1014, 1004, 1006, 819, 739, 896, + /* 400 */ 855, 804, 739, 740, 736, 690, 654, 665, 618, 582, + /* 410 */ 568, 528, 554, 379, 532, 479, 455, 379, 432, 371, + /* 420 */ 341, 28, 338, 116, -11, -57, -85, 7, -8, 3, +}; +#define YY_REDUCE_USE_DFLT (-110) +#define YY_REDUCE_COUNT (305) +#define YY_REDUCE_MIN (-109) +#define YY_REDUCE_MAX (1323) +static const short yy_reduce_ofst[] = { + /* 0 */ 238, 954, 213, 289, 310, 234, 144, 317, -109, 382, + /* 10 */ 377, 303, 461, 389, 378, 368, 302, 294, 253, 395, + /* 20 */ 293, 324, 403, 403, 403, 403, 403, 403, 403, 403, + /* 30 */ 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, + /* 40 */ 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, + /* 50 */ 403, 1022, 1012, 1005, 998, 963, 961, 959, 957, 950, + /* 60 */ 947, 930, 912, 873, 861, 823, 810, 771, 759, 720, + /* 70 */ 708, 670, 657, 619, 614, 612, 610, 608, 606, 604, + /* 80 */ 598, 595, 593, 580, 542, 540, 537, 535, 533, 531, + /* 90 */ 529, 527, 503, 386, 403, 403, 403, 403, 403, 403, + /* 100 */ 403, 403, 403, 95, 447, 82, 334, 504, 467, 403, + /* 110 */ 477, 464, 403, 403, 403, 403, 860, 747, 744, 785, + /* 120 */ 638, 638, 926, 891, 900, 899, 887, 844, 840, 835, + /* 130 */ 848, 830, 843, 829, 792, 839, 826, 737, 838, 795, + /* 140 */ 789, 47, 734, 530, 696, 777, 711, 677, 733, 730, + /* 150 */ 729, 728, 727, 627, 448, 64, 187, 1305, 1302, 1252, + /* 160 */ 1290, 1273, 1323, 1322, 1321, 1319, 1318, 1316, 1315, 1314, + /* 170 */ 1313, 1312, 1311, 1310, 1308, 1307, 1304, 1303, 1301, 1298, + /* 180 */ 1294, 1292, 1289, 1266, 1264, 1259, 1288, 1287, 1238, 1285, + /* 190 */ 1281, 1280, 1279, 1278, 1251, 1277, 1276, 1275, 1273, 1268, + /* 200 */ 1267, 1265, 1263, 1261, 1257, 1248, 1237, 1247, 1246, 1243, + /* 210 */ 1238, 1240, 1235, 1249, 1234, 1233, 1230, 1220, 1214, 1210, + /* 220 */ 1225, 1219, 1232, 1231, 1197, 1195, 1227, 1224, 1201, 1208, + /* 230 */ 1242, 1137, 1236, 1229, 1193, 1181, 1221, 1177, 1196, 1179, + /* 240 */ 1191, 1190, 1186, 1182, 1218, 1216, 1176, 1162, 1183, 1180, + /* 250 */ 1160, 1199, 1203, 1133, 1095, 1198, 1194, 1188, 1192, 1171, + /* 260 */ 1169, 1168, 1173, 1174, 1166, 1159, 1141, 1170, 1158, 1167, + /* 270 */ 1157, 1132, 1145, 1143, 1124, 1128, 1103, 1102, 1100, 1096, + /* 280 */ 1150, 1149, 1085, 1125, 1080, 1064, 1120, 1097, 1082, 1078, + /* 290 */ 1073, 1067, 1109, 1107, 1119, 1117, 1116, 1113, 1111, 1108, + /* 300 */ 1007, 1000, 1002, 1076, 1075, 1081, +}; +static const YYACTIONTYPE yy_default[] = { + /* 0 */ 647, 964, 964, 964, 878, 878, 969, 964, 774, 802, + /* 10 */ 802, 938, 969, 969, 969, 876, 969, 969, 969, 964, + /* 20 */ 969, 778, 808, 969, 969, 969, 969, 969, 969, 969, + /* 30 */ 969, 937, 939, 816, 815, 918, 789, 813, 806, 810, + /* 40 */ 879, 872, 873, 871, 875, 880, 969, 809, 841, 856, + /* 50 */ 840, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 60 */ 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 70 */ 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 80 */ 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 90 */ 969, 969, 969, 969, 850, 855, 862, 854, 851, 843, + /* 100 */ 842, 844, 845, 969, 969, 673, 739, 969, 969, 846, + /* 110 */ 969, 685, 847, 859, 858, 857, 680, 969, 969, 969, + /* 120 */ 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 130 */ 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 140 */ 969, 969, 969, 969, 647, 964, 969, 969, 964, 964, + /* 150 */ 964, 964, 964, 964, 956, 778, 768, 969, 969, 969, + /* 160 */ 969, 969, 969, 969, 969, 969, 969, 944, 942, 969, + /* 170 */ 891, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 180 */ 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 190 */ 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 200 */ 969, 969, 969, 969, 653, 969, 911, 774, 774, 774, + /* 210 */ 776, 754, 766, 655, 812, 791, 791, 923, 812, 923, + /* 220 */ 710, 733, 707, 802, 791, 874, 802, 802, 775, 766, + /* 230 */ 969, 949, 782, 782, 941, 941, 782, 821, 743, 812, + /* 240 */ 750, 750, 750, 750, 782, 670, 812, 821, 743, 743, + /* 250 */ 812, 782, 670, 917, 915, 782, 782, 670, 782, 670, + /* 260 */ 782, 670, 884, 741, 741, 741, 725, 884, 741, 710, + /* 270 */ 741, 725, 741, 741, 795, 790, 795, 790, 795, 790, + /* 280 */ 782, 782, 969, 884, 888, 888, 884, 807, 796, 805, + /* 290 */ 803, 812, 676, 728, 663, 663, 652, 652, 652, 652, + /* 300 */ 961, 961, 956, 712, 712, 695, 969, 969, 969, 969, + /* 310 */ 969, 969, 687, 969, 893, 969, 969, 969, 969, 969, + /* 320 */ 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 330 */ 969, 828, 969, 648, 951, 969, 969, 948, 969, 969, + /* 340 */ 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 350 */ 969, 969, 969, 969, 969, 969, 921, 969, 969, 969, + /* 360 */ 969, 969, 969, 914, 913, 969, 969, 969, 969, 969, + /* 370 */ 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + /* 380 */ 969, 969, 969, 969, 969, 969, 969, 757, 969, 969, + /* 390 */ 969, 761, 969, 969, 969, 969, 969, 969, 804, 969, + /* 400 */ 797, 969, 877, 969, 969, 969, 969, 969, 969, 969, + /* 410 */ 969, 969, 969, 966, 969, 969, 969, 965, 969, 969, + /* 420 */ 969, 969, 969, 830, 969, 829, 833, 969, 661, 969, + /* 430 */ 644, 649, 960, 963, 962, 959, 958, 957, 952, 950, + /* 440 */ 947, 946, 945, 943, 940, 936, 897, 895, 902, 901, + /* 450 */ 900, 899, 898, 896, 894, 892, 818, 817, 814, 811, + /* 460 */ 753, 935, 890, 752, 749, 748, 669, 953, 920, 929, + /* 470 */ 928, 927, 822, 926, 925, 924, 922, 919, 906, 820, + /* 480 */ 819, 744, 882, 881, 672, 910, 909, 908, 912, 916, + /* 490 */ 907, 784, 751, 671, 668, 675, 679, 731, 732, 740, + /* 500 */ 738, 737, 736, 735, 734, 730, 681, 686, 724, 709, + /* 510 */ 708, 717, 716, 722, 721, 720, 719, 718, 715, 714, + /* 520 */ 713, 706, 705, 711, 704, 727, 726, 723, 703, 747, + /* 530 */ 746, 745, 742, 702, 701, 700, 833, 699, 698, 838, + /* 540 */ 837, 866, 826, 755, 759, 758, 762, 763, 771, 770, + /* 550 */ 769, 780, 781, 793, 792, 824, 823, 794, 779, 773, + /* 560 */ 772, 788, 787, 786, 785, 777, 767, 799, 798, 868, + /* 570 */ 783, 867, 865, 934, 933, 932, 931, 930, 870, 967, + /* 580 */ 968, 887, 889, 886, 801, 800, 885, 869, 839, 836, + /* 590 */ 690, 691, 905, 904, 903, 693, 692, 689, 688, 863, + /* 600 */ 860, 852, 864, 861, 853, 849, 848, 834, 832, 831, + /* 610 */ 827, 835, 760, 756, 825, 765, 764, 697, 696, 694, + /* 620 */ 678, 677, 674, 667, 665, 664, 666, 662, 660, 659, + /* 630 */ 658, 657, 656, 684, 683, 682, 654, 651, 650, 646, + /* 640 */ 645, 643, +}; + +/* The next table maps tokens into fallback tokens. If a construct +** like the following: +** +** %fallback ID X Y Z. +** +** appears in the grammar, then ID becomes a fallback token for X, Y, +** and Z. Whenever one of the tokens X, Y, or Z is input to the parser +** but it does not parse, the type of the token is changed to ID and +** the parse is retried before an error is thrown. +*/ +#ifdef YYFALLBACK +static const YYCODETYPE yyFallback[] = { + 0, /* $ => nothing */ + 0, /* SEMI => nothing */ + 27, /* EXPLAIN => ID */ + 27, /* QUERY => ID */ + 27, /* PLAN => ID */ + 27, /* BEGIN => ID */ + 0, /* TRANSACTION => nothing */ + 27, /* DEFERRED => ID */ + 27, /* IMMEDIATE => ID */ + 27, /* EXCLUSIVE => ID */ + 0, /* COMMIT => nothing */ + 27, /* END => ID */ + 27, /* ROLLBACK => ID */ + 27, /* SAVEPOINT => ID */ + 27, /* RELEASE => ID */ + 0, /* TO => nothing */ + 0, /* TABLE => nothing */ + 0, /* CREATE => nothing */ + 27, /* IF => ID */ + 0, /* NOT => nothing */ + 0, /* EXISTS => nothing */ + 27, /* TEMP => ID */ + 0, /* LP => nothing */ + 0, /* RP => nothing */ + 0, /* AS => nothing */ + 27, /* WITHOUT => ID */ + 0, /* COMMA => nothing */ + 0, /* ID => nothing */ + 0, /* INDEXED => nothing */ + 27, /* ABORT => ID */ + 27, /* ACTION => ID */ + 27, /* AFTER => ID */ + 27, /* ANALYZE => ID */ + 27, /* ASC => ID */ + 27, /* ATTACH => ID */ + 27, /* BEFORE => ID */ + 27, /* BY => ID */ + 27, /* CASCADE => ID */ + 27, /* CAST => ID */ + 27, /* COLUMNKW => ID */ + 27, /* CONFLICT => ID */ + 27, /* DATABASE => ID */ + 27, /* DESC => ID */ + 27, /* DETACH => ID */ + 27, /* EACH => ID */ + 27, /* FAIL => ID */ + 27, /* FOR => ID */ + 27, /* IGNORE => ID */ + 27, /* INITIALLY => ID */ + 27, /* INSTEAD => ID */ + 27, /* LIKE_KW => ID */ + 27, /* MATCH => ID */ + 27, /* NO => ID */ + 27, /* KEY => ID */ + 27, /* OF => ID */ + 27, /* OFFSET => ID */ + 27, /* PRAGMA => ID */ + 27, /* RAISE => ID */ + 27, /* RECURSIVE => ID */ + 27, /* REPLACE => ID */ + 27, /* RESTRICT => ID */ + 27, /* ROW => ID */ + 27, /* TRIGGER => ID */ + 27, /* VACUUM => ID */ + 27, /* VIEW => ID */ + 27, /* VIRTUAL => ID */ + 27, /* WITH => ID */ + 27, /* REINDEX => ID */ + 27, /* RENAME => ID */ + 27, /* CTIME_KW => ID */ +}; +#endif /* YYFALLBACK */ + +/* The following structure represents a single element of the +** parser's stack. Information stored includes: +** +** + The state number for the parser at this level of the stack. +** +** + The value of the token stored at this level of the stack. +** (In other words, the "major" token.) +** +** + The semantic value stored at this level of the stack. This is +** the information used by the action routines in the grammar. +** It is sometimes called the "minor" token. +*/ +struct yyStackEntry { + YYACTIONTYPE stateno; /* The state-number */ + YYCODETYPE major; /* The major token value. This is the code + ** number for the token at this stack level */ + YYMINORTYPE minor; /* The user-supplied minor token value. This + ** is the value of the token */ +}; +typedef struct yyStackEntry yyStackEntry; + +/* The state of the parser is completely contained in an instance of +** the following structure */ +struct yyParser { + int yyidx; /* Index of top element in stack */ +#ifdef YYTRACKMAXSTACKDEPTH + int yyidxMax; /* Maximum value of yyidx */ +#endif + int yyerrcnt; /* Shifts left before out of the error */ + sqlite3ParserARG_SDECL /* A place to hold %extra_argument */ +#if YYSTACKDEPTH<=0 + int yystksz; /* Current side of the stack */ + yyStackEntry *yystack; /* The parser's stack */ +#else + yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ +#endif +}; +typedef struct yyParser yyParser; + +#ifndef NDEBUG +/* #include */ +static FILE *yyTraceFILE = 0; +static char *yyTracePrompt = 0; +#endif /* NDEBUG */ + +#ifndef NDEBUG +/* +** Turn parser tracing on by giving a stream to which to write the trace +** and a prompt to preface each trace message. Tracing is turned off +** by making either argument NULL +** +** Inputs: +**
            +**
          • A FILE* to which trace output should be written. +** If NULL, then tracing is turned off. +**
          • A prefix string written at the beginning of every +** line of trace output. If NULL, then tracing is +** turned off. +**
          +** +** Outputs: +** None. +*/ +SQLITE_PRIVATE void sqlite3ParserTrace(FILE *TraceFILE, char *zTracePrompt){ + yyTraceFILE = TraceFILE; + yyTracePrompt = zTracePrompt; + if( yyTraceFILE==0 ) yyTracePrompt = 0; + else if( yyTracePrompt==0 ) yyTraceFILE = 0; +} +#endif /* NDEBUG */ + +#ifndef NDEBUG +/* For tracing shifts, the names of all terminals and nonterminals +** are required. The following table supplies these names */ +static const char *const yyTokenName[] = { + "$", "SEMI", "EXPLAIN", "QUERY", + "PLAN", "BEGIN", "TRANSACTION", "DEFERRED", + "IMMEDIATE", "EXCLUSIVE", "COMMIT", "END", + "ROLLBACK", "SAVEPOINT", "RELEASE", "TO", + "TABLE", "CREATE", "IF", "NOT", + "EXISTS", "TEMP", "LP", "RP", + "AS", "WITHOUT", "COMMA", "ID", + "INDEXED", "ABORT", "ACTION", "AFTER", + "ANALYZE", "ASC", "ATTACH", "BEFORE", + "BY", "CASCADE", "CAST", "COLUMNKW", + "CONFLICT", "DATABASE", "DESC", "DETACH", + "EACH", "FAIL", "FOR", "IGNORE", + "INITIALLY", "INSTEAD", "LIKE_KW", "MATCH", + "NO", "KEY", "OF", "OFFSET", + "PRAGMA", "RAISE", "RECURSIVE", "REPLACE", + "RESTRICT", "ROW", "TRIGGER", "VACUUM", + "VIEW", "VIRTUAL", "WITH", "REINDEX", + "RENAME", "CTIME_KW", "ANY", "OR", + "AND", "IS", "BETWEEN", "IN", + "ISNULL", "NOTNULL", "NE", "EQ", + "GT", "LE", "LT", "GE", + "ESCAPE", "BITAND", "BITOR", "LSHIFT", + "RSHIFT", "PLUS", "MINUS", "STAR", + "SLASH", "REM", "CONCAT", "COLLATE", + "BITNOT", "STRING", "JOIN_KW", "CONSTRAINT", + "DEFAULT", "NULL", "PRIMARY", "UNIQUE", + "CHECK", "REFERENCES", "AUTOINCR", "ON", + "INSERT", "DELETE", "UPDATE", "SET", + "DEFERRABLE", "FOREIGN", "DROP", "UNION", + "ALL", "EXCEPT", "INTERSECT", "SELECT", + "VALUES", "DISTINCT", "DOT", "FROM", + "JOIN", "USING", "ORDER", "GROUP", + "HAVING", "LIMIT", "WHERE", "INTO", + "INTEGER", "FLOAT", "BLOB", "VARIABLE", + "CASE", "WHEN", "THEN", "ELSE", + "INDEX", "ALTER", "ADD", "error", + "input", "cmdlist", "ecmd", "explain", + "cmdx", "cmd", "transtype", "trans_opt", + "nm", "savepoint_opt", "create_table", "create_table_args", + "createkw", "temp", "ifnotexists", "dbnm", + "columnlist", "conslist_opt", "table_options", "select", + "column", "columnid", "type", "carglist", + "typetoken", "typename", "signed", "plus_num", + "minus_num", "ccons", "term", "expr", + "onconf", "sortorder", "autoinc", "idxlist_opt", + "refargs", "defer_subclause", "refarg", "refact", + "init_deferred_pred_opt", "conslist", "tconscomma", "tcons", + "idxlist", "defer_subclause_opt", "orconf", "resolvetype", + "raisetype", "ifexists", "fullname", "selectnowith", + "oneselect", "with", "multiselect_op", "distinct", + "selcollist", "from", "where_opt", "groupby_opt", + "having_opt", "orderby_opt", "limit_opt", "values", + "nexprlist", "exprlist", "sclp", "as", + "seltablist", "stl_prefix", "joinop", "indexed_opt", + "on_opt", "using_opt", "joinop2", "idlist", + "sortlist", "setlist", "insert_cmd", "inscollist_opt", + "likeop", "between_op", "in_op", "case_operand", + "case_exprlist", "case_else", "uniqueflag", "collate", + "nmnum", "trigger_decl", "trigger_cmd_list", "trigger_time", + "trigger_event", "foreach_clause", "when_clause", "trigger_cmd", + "trnm", "tridxby", "database_kw_opt", "key_opt", + "add_column_fullname", "kwcolumn_opt", "create_vtab", "vtabarglist", + "vtabarg", "vtabargtoken", "lp", "anylist", + "wqlist", +}; +#endif /* NDEBUG */ + +#ifndef NDEBUG +/* For tracing reduce actions, the names of all rules are required. +*/ +static const char *const yyRuleName[] = { + /* 0 */ "input ::= cmdlist", + /* 1 */ "cmdlist ::= cmdlist ecmd", + /* 2 */ "cmdlist ::= ecmd", + /* 3 */ "ecmd ::= SEMI", + /* 4 */ "ecmd ::= explain cmdx SEMI", + /* 5 */ "explain ::=", + /* 6 */ "explain ::= EXPLAIN", + /* 7 */ "explain ::= EXPLAIN QUERY PLAN", + /* 8 */ "cmdx ::= cmd", + /* 9 */ "cmd ::= BEGIN transtype trans_opt", + /* 10 */ "trans_opt ::=", + /* 11 */ "trans_opt ::= TRANSACTION", + /* 12 */ "trans_opt ::= TRANSACTION nm", + /* 13 */ "transtype ::=", + /* 14 */ "transtype ::= DEFERRED", + /* 15 */ "transtype ::= IMMEDIATE", + /* 16 */ "transtype ::= EXCLUSIVE", + /* 17 */ "cmd ::= COMMIT trans_opt", + /* 18 */ "cmd ::= END trans_opt", + /* 19 */ "cmd ::= ROLLBACK trans_opt", + /* 20 */ "savepoint_opt ::= SAVEPOINT", + /* 21 */ "savepoint_opt ::=", + /* 22 */ "cmd ::= SAVEPOINT nm", + /* 23 */ "cmd ::= RELEASE savepoint_opt nm", + /* 24 */ "cmd ::= ROLLBACK trans_opt TO savepoint_opt nm", + /* 25 */ "cmd ::= create_table create_table_args", + /* 26 */ "create_table ::= createkw temp TABLE ifnotexists nm dbnm", + /* 27 */ "createkw ::= CREATE", + /* 28 */ "ifnotexists ::=", + /* 29 */ "ifnotexists ::= IF NOT EXISTS", + /* 30 */ "temp ::= TEMP", + /* 31 */ "temp ::=", + /* 32 */ "create_table_args ::= LP columnlist conslist_opt RP table_options", + /* 33 */ "create_table_args ::= AS select", + /* 34 */ "table_options ::=", + /* 35 */ "table_options ::= WITHOUT nm", + /* 36 */ "columnlist ::= columnlist COMMA column", + /* 37 */ "columnlist ::= column", + /* 38 */ "column ::= columnid type carglist", + /* 39 */ "columnid ::= nm", + /* 40 */ "nm ::= ID|INDEXED", + /* 41 */ "nm ::= STRING", + /* 42 */ "nm ::= JOIN_KW", + /* 43 */ "type ::=", + /* 44 */ "type ::= typetoken", + /* 45 */ "typetoken ::= typename", + /* 46 */ "typetoken ::= typename LP signed RP", + /* 47 */ "typetoken ::= typename LP signed COMMA signed RP", + /* 48 */ "typename ::= ID|STRING", + /* 49 */ "typename ::= typename ID|STRING", + /* 50 */ "signed ::= plus_num", + /* 51 */ "signed ::= minus_num", + /* 52 */ "carglist ::= carglist ccons", + /* 53 */ "carglist ::=", + /* 54 */ "ccons ::= CONSTRAINT nm", + /* 55 */ "ccons ::= DEFAULT term", + /* 56 */ "ccons ::= DEFAULT LP expr RP", + /* 57 */ "ccons ::= DEFAULT PLUS term", + /* 58 */ "ccons ::= DEFAULT MINUS term", + /* 59 */ "ccons ::= DEFAULT ID|INDEXED", + /* 60 */ "ccons ::= NULL onconf", + /* 61 */ "ccons ::= NOT NULL onconf", + /* 62 */ "ccons ::= PRIMARY KEY sortorder onconf autoinc", + /* 63 */ "ccons ::= UNIQUE onconf", + /* 64 */ "ccons ::= CHECK LP expr RP", + /* 65 */ "ccons ::= REFERENCES nm idxlist_opt refargs", + /* 66 */ "ccons ::= defer_subclause", + /* 67 */ "ccons ::= COLLATE ID|STRING", + /* 68 */ "autoinc ::=", + /* 69 */ "autoinc ::= AUTOINCR", + /* 70 */ "refargs ::=", + /* 71 */ "refargs ::= refargs refarg", + /* 72 */ "refarg ::= MATCH nm", + /* 73 */ "refarg ::= ON INSERT refact", + /* 74 */ "refarg ::= ON DELETE refact", + /* 75 */ "refarg ::= ON UPDATE refact", + /* 76 */ "refact ::= SET NULL", + /* 77 */ "refact ::= SET DEFAULT", + /* 78 */ "refact ::= CASCADE", + /* 79 */ "refact ::= RESTRICT", + /* 80 */ "refact ::= NO ACTION", + /* 81 */ "defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt", + /* 82 */ "defer_subclause ::= DEFERRABLE init_deferred_pred_opt", + /* 83 */ "init_deferred_pred_opt ::=", + /* 84 */ "init_deferred_pred_opt ::= INITIALLY DEFERRED", + /* 85 */ "init_deferred_pred_opt ::= INITIALLY IMMEDIATE", + /* 86 */ "conslist_opt ::=", + /* 87 */ "conslist_opt ::= COMMA conslist", + /* 88 */ "conslist ::= conslist tconscomma tcons", + /* 89 */ "conslist ::= tcons", + /* 90 */ "tconscomma ::= COMMA", + /* 91 */ "tconscomma ::=", + /* 92 */ "tcons ::= CONSTRAINT nm", + /* 93 */ "tcons ::= PRIMARY KEY LP idxlist autoinc RP onconf", + /* 94 */ "tcons ::= UNIQUE LP idxlist RP onconf", + /* 95 */ "tcons ::= CHECK LP expr RP onconf", + /* 96 */ "tcons ::= FOREIGN KEY LP idxlist RP REFERENCES nm idxlist_opt refargs defer_subclause_opt", + /* 97 */ "defer_subclause_opt ::=", + /* 98 */ "defer_subclause_opt ::= defer_subclause", + /* 99 */ "onconf ::=", + /* 100 */ "onconf ::= ON CONFLICT resolvetype", + /* 101 */ "orconf ::=", + /* 102 */ "orconf ::= OR resolvetype", + /* 103 */ "resolvetype ::= raisetype", + /* 104 */ "resolvetype ::= IGNORE", + /* 105 */ "resolvetype ::= REPLACE", + /* 106 */ "cmd ::= DROP TABLE ifexists fullname", + /* 107 */ "ifexists ::= IF EXISTS", + /* 108 */ "ifexists ::=", + /* 109 */ "cmd ::= createkw temp VIEW ifnotexists nm dbnm AS select", + /* 110 */ "cmd ::= DROP VIEW ifexists fullname", + /* 111 */ "cmd ::= select", + /* 112 */ "select ::= with selectnowith", + /* 113 */ "selectnowith ::= oneselect", + /* 114 */ "selectnowith ::= selectnowith multiselect_op oneselect", + /* 115 */ "multiselect_op ::= UNION", + /* 116 */ "multiselect_op ::= UNION ALL", + /* 117 */ "multiselect_op ::= EXCEPT|INTERSECT", + /* 118 */ "oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt", + /* 119 */ "oneselect ::= values", + /* 120 */ "values ::= VALUES LP nexprlist RP", + /* 121 */ "values ::= values COMMA LP exprlist RP", + /* 122 */ "distinct ::= DISTINCT", + /* 123 */ "distinct ::= ALL", + /* 124 */ "distinct ::=", + /* 125 */ "sclp ::= selcollist COMMA", + /* 126 */ "sclp ::=", + /* 127 */ "selcollist ::= sclp expr as", + /* 128 */ "selcollist ::= sclp STAR", + /* 129 */ "selcollist ::= sclp nm DOT STAR", + /* 130 */ "as ::= AS nm", + /* 131 */ "as ::= ID|STRING", + /* 132 */ "as ::=", + /* 133 */ "from ::=", + /* 134 */ "from ::= FROM seltablist", + /* 135 */ "stl_prefix ::= seltablist joinop", + /* 136 */ "stl_prefix ::=", + /* 137 */ "seltablist ::= stl_prefix nm dbnm as indexed_opt on_opt using_opt", + /* 138 */ "seltablist ::= stl_prefix LP select RP as on_opt using_opt", + /* 139 */ "seltablist ::= stl_prefix LP seltablist RP as on_opt using_opt", + /* 140 */ "dbnm ::=", + /* 141 */ "dbnm ::= DOT nm", + /* 142 */ "fullname ::= nm dbnm", + /* 143 */ "joinop ::= COMMA|JOIN", + /* 144 */ "joinop ::= JOIN_KW JOIN", + /* 145 */ "joinop ::= JOIN_KW nm JOIN", + /* 146 */ "joinop ::= JOIN_KW nm nm JOIN", + /* 147 */ "on_opt ::= ON expr", + /* 148 */ "on_opt ::=", + /* 149 */ "indexed_opt ::=", + /* 150 */ "indexed_opt ::= INDEXED BY nm", + /* 151 */ "indexed_opt ::= NOT INDEXED", + /* 152 */ "using_opt ::= USING LP idlist RP", + /* 153 */ "using_opt ::=", + /* 154 */ "orderby_opt ::=", + /* 155 */ "orderby_opt ::= ORDER BY sortlist", + /* 156 */ "sortlist ::= sortlist COMMA expr sortorder", + /* 157 */ "sortlist ::= expr sortorder", + /* 158 */ "sortorder ::= ASC", + /* 159 */ "sortorder ::= DESC", + /* 160 */ "sortorder ::=", + /* 161 */ "groupby_opt ::=", + /* 162 */ "groupby_opt ::= GROUP BY nexprlist", + /* 163 */ "having_opt ::=", + /* 164 */ "having_opt ::= HAVING expr", + /* 165 */ "limit_opt ::=", + /* 166 */ "limit_opt ::= LIMIT expr", + /* 167 */ "limit_opt ::= LIMIT expr OFFSET expr", + /* 168 */ "limit_opt ::= LIMIT expr COMMA expr", + /* 169 */ "cmd ::= with DELETE FROM fullname indexed_opt where_opt", + /* 170 */ "where_opt ::=", + /* 171 */ "where_opt ::= WHERE expr", + /* 172 */ "cmd ::= with UPDATE orconf fullname indexed_opt SET setlist where_opt", + /* 173 */ "setlist ::= setlist COMMA nm EQ expr", + /* 174 */ "setlist ::= nm EQ expr", + /* 175 */ "cmd ::= with insert_cmd INTO fullname inscollist_opt select", + /* 176 */ "cmd ::= with insert_cmd INTO fullname inscollist_opt DEFAULT VALUES", + /* 177 */ "insert_cmd ::= INSERT orconf", + /* 178 */ "insert_cmd ::= REPLACE", + /* 179 */ "inscollist_opt ::=", + /* 180 */ "inscollist_opt ::= LP idlist RP", + /* 181 */ "idlist ::= idlist COMMA nm", + /* 182 */ "idlist ::= nm", + /* 183 */ "expr ::= term", + /* 184 */ "expr ::= LP expr RP", + /* 185 */ "term ::= NULL", + /* 186 */ "expr ::= ID|INDEXED", + /* 187 */ "expr ::= JOIN_KW", + /* 188 */ "expr ::= nm DOT nm", + /* 189 */ "expr ::= nm DOT nm DOT nm", + /* 190 */ "term ::= INTEGER|FLOAT|BLOB", + /* 191 */ "term ::= STRING", + /* 192 */ "expr ::= VARIABLE", + /* 193 */ "expr ::= expr COLLATE ID|STRING", + /* 194 */ "expr ::= CAST LP expr AS typetoken RP", + /* 195 */ "expr ::= ID|INDEXED LP distinct exprlist RP", + /* 196 */ "expr ::= ID|INDEXED LP STAR RP", + /* 197 */ "term ::= CTIME_KW", + /* 198 */ "expr ::= expr AND expr", + /* 199 */ "expr ::= expr OR expr", + /* 200 */ "expr ::= expr LT|GT|GE|LE expr", + /* 201 */ "expr ::= expr EQ|NE expr", + /* 202 */ "expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr", + /* 203 */ "expr ::= expr PLUS|MINUS expr", + /* 204 */ "expr ::= expr STAR|SLASH|REM expr", + /* 205 */ "expr ::= expr CONCAT expr", + /* 206 */ "likeop ::= LIKE_KW|MATCH", + /* 207 */ "likeop ::= NOT LIKE_KW|MATCH", + /* 208 */ "expr ::= expr likeop expr", + /* 209 */ "expr ::= expr likeop expr ESCAPE expr", + /* 210 */ "expr ::= expr ISNULL|NOTNULL", + /* 211 */ "expr ::= expr NOT NULL", + /* 212 */ "expr ::= expr IS expr", + /* 213 */ "expr ::= expr IS NOT expr", + /* 214 */ "expr ::= NOT expr", + /* 215 */ "expr ::= BITNOT expr", + /* 216 */ "expr ::= MINUS expr", + /* 217 */ "expr ::= PLUS expr", + /* 218 */ "between_op ::= BETWEEN", + /* 219 */ "between_op ::= NOT BETWEEN", + /* 220 */ "expr ::= expr between_op expr AND expr", + /* 221 */ "in_op ::= IN", + /* 222 */ "in_op ::= NOT IN", + /* 223 */ "expr ::= expr in_op LP exprlist RP", + /* 224 */ "expr ::= LP select RP", + /* 225 */ "expr ::= expr in_op LP select RP", + /* 226 */ "expr ::= expr in_op nm dbnm", + /* 227 */ "expr ::= EXISTS LP select RP", + /* 228 */ "expr ::= CASE case_operand case_exprlist case_else END", + /* 229 */ "case_exprlist ::= case_exprlist WHEN expr THEN expr", + /* 230 */ "case_exprlist ::= WHEN expr THEN expr", + /* 231 */ "case_else ::= ELSE expr", + /* 232 */ "case_else ::=", + /* 233 */ "case_operand ::= expr", + /* 234 */ "case_operand ::=", + /* 235 */ "exprlist ::= nexprlist", + /* 236 */ "exprlist ::=", + /* 237 */ "nexprlist ::= nexprlist COMMA expr", + /* 238 */ "nexprlist ::= expr", + /* 239 */ "cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP idxlist RP where_opt", + /* 240 */ "uniqueflag ::= UNIQUE", + /* 241 */ "uniqueflag ::=", + /* 242 */ "idxlist_opt ::=", + /* 243 */ "idxlist_opt ::= LP idxlist RP", + /* 244 */ "idxlist ::= idxlist COMMA nm collate sortorder", + /* 245 */ "idxlist ::= nm collate sortorder", + /* 246 */ "collate ::=", + /* 247 */ "collate ::= COLLATE ID|STRING", + /* 248 */ "cmd ::= DROP INDEX ifexists fullname", + /* 249 */ "cmd ::= VACUUM", + /* 250 */ "cmd ::= VACUUM nm", + /* 251 */ "cmd ::= PRAGMA nm dbnm", + /* 252 */ "cmd ::= PRAGMA nm dbnm EQ nmnum", + /* 253 */ "cmd ::= PRAGMA nm dbnm LP nmnum RP", + /* 254 */ "cmd ::= PRAGMA nm dbnm EQ minus_num", + /* 255 */ "cmd ::= PRAGMA nm dbnm LP minus_num RP", + /* 256 */ "nmnum ::= plus_num", + /* 257 */ "nmnum ::= nm", + /* 258 */ "nmnum ::= ON", + /* 259 */ "nmnum ::= DELETE", + /* 260 */ "nmnum ::= DEFAULT", + /* 261 */ "plus_num ::= PLUS INTEGER|FLOAT", + /* 262 */ "plus_num ::= INTEGER|FLOAT", + /* 263 */ "minus_num ::= MINUS INTEGER|FLOAT", + /* 264 */ "cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END", + /* 265 */ "trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause", + /* 266 */ "trigger_time ::= BEFORE", + /* 267 */ "trigger_time ::= AFTER", + /* 268 */ "trigger_time ::= INSTEAD OF", + /* 269 */ "trigger_time ::=", + /* 270 */ "trigger_event ::= DELETE|INSERT", + /* 271 */ "trigger_event ::= UPDATE", + /* 272 */ "trigger_event ::= UPDATE OF idlist", + /* 273 */ "foreach_clause ::=", + /* 274 */ "foreach_clause ::= FOR EACH ROW", + /* 275 */ "when_clause ::=", + /* 276 */ "when_clause ::= WHEN expr", + /* 277 */ "trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI", + /* 278 */ "trigger_cmd_list ::= trigger_cmd SEMI", + /* 279 */ "trnm ::= nm", + /* 280 */ "trnm ::= nm DOT nm", + /* 281 */ "tridxby ::=", + /* 282 */ "tridxby ::= INDEXED BY nm", + /* 283 */ "tridxby ::= NOT INDEXED", + /* 284 */ "trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist where_opt", + /* 285 */ "trigger_cmd ::= insert_cmd INTO trnm inscollist_opt select", + /* 286 */ "trigger_cmd ::= DELETE FROM trnm tridxby where_opt", + /* 287 */ "trigger_cmd ::= select", + /* 288 */ "expr ::= RAISE LP IGNORE RP", + /* 289 */ "expr ::= RAISE LP raisetype COMMA nm RP", + /* 290 */ "raisetype ::= ROLLBACK", + /* 291 */ "raisetype ::= ABORT", + /* 292 */ "raisetype ::= FAIL", + /* 293 */ "cmd ::= DROP TRIGGER ifexists fullname", + /* 294 */ "cmd ::= ATTACH database_kw_opt expr AS expr key_opt", + /* 295 */ "cmd ::= DETACH database_kw_opt expr", + /* 296 */ "key_opt ::=", + /* 297 */ "key_opt ::= KEY expr", + /* 298 */ "database_kw_opt ::= DATABASE", + /* 299 */ "database_kw_opt ::=", + /* 300 */ "cmd ::= REINDEX", + /* 301 */ "cmd ::= REINDEX nm dbnm", + /* 302 */ "cmd ::= ANALYZE", + /* 303 */ "cmd ::= ANALYZE nm dbnm", + /* 304 */ "cmd ::= ALTER TABLE fullname RENAME TO nm", + /* 305 */ "cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt column", + /* 306 */ "add_column_fullname ::= fullname", + /* 307 */ "kwcolumn_opt ::=", + /* 308 */ "kwcolumn_opt ::= COLUMNKW", + /* 309 */ "cmd ::= create_vtab", + /* 310 */ "cmd ::= create_vtab LP vtabarglist RP", + /* 311 */ "create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm", + /* 312 */ "vtabarglist ::= vtabarg", + /* 313 */ "vtabarglist ::= vtabarglist COMMA vtabarg", + /* 314 */ "vtabarg ::=", + /* 315 */ "vtabarg ::= vtabarg vtabargtoken", + /* 316 */ "vtabargtoken ::= ANY", + /* 317 */ "vtabargtoken ::= lp anylist RP", + /* 318 */ "lp ::= LP", + /* 319 */ "anylist ::=", + /* 320 */ "anylist ::= anylist LP anylist RP", + /* 321 */ "anylist ::= anylist ANY", + /* 322 */ "with ::=", + /* 323 */ "with ::= WITH wqlist", + /* 324 */ "with ::= WITH RECURSIVE wqlist", + /* 325 */ "wqlist ::= nm idxlist_opt AS LP select RP", + /* 326 */ "wqlist ::= wqlist COMMA nm idxlist_opt AS LP select RP", +}; +#endif /* NDEBUG */ + + +#if YYSTACKDEPTH<=0 +/* +** Try to increase the size of the parser stack. +*/ +static void yyGrowStack(yyParser *p){ + int newSize; + yyStackEntry *pNew; + + newSize = p->yystksz*2 + 100; + pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); + if( pNew ){ + p->yystack = pNew; + p->yystksz = newSize; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sStack grows to %d entries!\n", + yyTracePrompt, p->yystksz); + } +#endif + } +} +#endif + +/* +** This function allocates a new parser. +** The only argument is a pointer to a function which works like +** malloc. +** +** Inputs: +** A pointer to the function used to allocate memory. +** +** Outputs: +** A pointer to a parser. This pointer is used in subsequent calls +** to sqlite3Parser and sqlite3ParserFree. +*/ +SQLITE_PRIVATE void *sqlite3ParserAlloc(void *(*mallocProc)(size_t)){ + yyParser *pParser; + pParser = (yyParser*)(*mallocProc)( (size_t)sizeof(yyParser) ); + if( pParser ){ + pParser->yyidx = -1; +#ifdef YYTRACKMAXSTACKDEPTH + pParser->yyidxMax = 0; +#endif +#if YYSTACKDEPTH<=0 + pParser->yystack = NULL; + pParser->yystksz = 0; + yyGrowStack(pParser); +#endif + } + return pParser; +} + +/* The following function deletes the value associated with a +** symbol. The symbol can be either a terminal or nonterminal. +** "yymajor" is the symbol code, and "yypminor" is a pointer to +** the value. +*/ +static void yy_destructor( + yyParser *yypParser, /* The parser */ + YYCODETYPE yymajor, /* Type code for object to destroy */ + YYMINORTYPE *yypminor /* The object to be destroyed */ +){ + sqlite3ParserARG_FETCH; + switch( yymajor ){ + /* Here is inserted the actions which take place when a + ** terminal or non-terminal is destroyed. This can happen + ** when the symbol is popped from the stack during a + ** reduce or during error processing or when a parser is + ** being destroyed before it is finished parsing. + ** + ** Note: during a reduce, the only symbols destroyed are those + ** which appear on the RHS of the rule, but which are not used + ** inside the C code. + */ + case 163: /* select */ + case 195: /* selectnowith */ + case 196: /* oneselect */ + case 207: /* values */ +{ +sqlite3SelectDelete(pParse->db, (yypminor->yy3)); +} + break; + case 174: /* term */ + case 175: /* expr */ +{ +sqlite3ExprDelete(pParse->db, (yypminor->yy346).pExpr); +} + break; + case 179: /* idxlist_opt */ + case 188: /* idxlist */ + case 200: /* selcollist */ + case 203: /* groupby_opt */ + case 205: /* orderby_opt */ + case 208: /* nexprlist */ + case 209: /* exprlist */ + case 210: /* sclp */ + case 220: /* sortlist */ + case 221: /* setlist */ + case 228: /* case_exprlist */ +{ +sqlite3ExprListDelete(pParse->db, (yypminor->yy14)); +} + break; + case 194: /* fullname */ + case 201: /* from */ + case 212: /* seltablist */ + case 213: /* stl_prefix */ +{ +sqlite3SrcListDelete(pParse->db, (yypminor->yy65)); +} + break; + case 197: /* with */ + case 252: /* wqlist */ +{ +sqlite3WithDelete(pParse->db, (yypminor->yy59)); +} + break; + case 202: /* where_opt */ + case 204: /* having_opt */ + case 216: /* on_opt */ + case 227: /* case_operand */ + case 229: /* case_else */ + case 238: /* when_clause */ + case 243: /* key_opt */ +{ +sqlite3ExprDelete(pParse->db, (yypminor->yy132)); +} + break; + case 217: /* using_opt */ + case 219: /* idlist */ + case 223: /* inscollist_opt */ +{ +sqlite3IdListDelete(pParse->db, (yypminor->yy408)); +} + break; + case 234: /* trigger_cmd_list */ + case 239: /* trigger_cmd */ +{ +sqlite3DeleteTriggerStep(pParse->db, (yypminor->yy473)); +} + break; + case 236: /* trigger_event */ +{ +sqlite3IdListDelete(pParse->db, (yypminor->yy378).b); +} + break; + default: break; /* If no destructor action specified: do nothing */ + } +} + +/* +** Pop the parser's stack once. +** +** If there is a destructor routine associated with the token which +** is popped from the stack, then call it. +** +** Return the major token number for the symbol popped. +*/ +static int yy_pop_parser_stack(yyParser *pParser){ + YYCODETYPE yymajor; + yyStackEntry *yytos = &pParser->yystack[pParser->yyidx]; + + /* There is no mechanism by which the parser stack can be popped below + ** empty in SQLite. */ + if( NEVER(pParser->yyidx<0) ) return 0; +#ifndef NDEBUG + if( yyTraceFILE && pParser->yyidx>=0 ){ + fprintf(yyTraceFILE,"%sPopping %s\n", + yyTracePrompt, + yyTokenName[yytos->major]); + } +#endif + yymajor = yytos->major; + yy_destructor(pParser, yymajor, &yytos->minor); + pParser->yyidx--; + return yymajor; +} + +/* +** Deallocate and destroy a parser. Destructors are all called for +** all stack elements before shutting the parser down. +** +** Inputs: +**
            +**
          • A pointer to the parser. This should be a pointer +** obtained from sqlite3ParserAlloc. +**
          • A pointer to a function used to reclaim memory obtained +** from malloc. +**
          +*/ +SQLITE_PRIVATE void sqlite3ParserFree( + void *p, /* The parser to be deleted */ + void (*freeProc)(void*) /* Function used to reclaim memory */ +){ + yyParser *pParser = (yyParser*)p; + /* In SQLite, we never try to destroy a parser that was not successfully + ** created in the first place. */ + if( NEVER(pParser==0) ) return; + while( pParser->yyidx>=0 ) yy_pop_parser_stack(pParser); +#if YYSTACKDEPTH<=0 + free(pParser->yystack); +#endif + (*freeProc)((void*)pParser); +} + +/* +** Return the peak depth of the stack for a parser. +*/ +#ifdef YYTRACKMAXSTACKDEPTH +SQLITE_PRIVATE int sqlite3ParserStackPeak(void *p){ + yyParser *pParser = (yyParser*)p; + return pParser->yyidxMax; +} +#endif + +/* +** Find the appropriate action for a parser given the terminal +** look-ahead token iLookAhead. +** +** If the look-ahead token is YYNOCODE, then check to see if the action is +** independent of the look-ahead. If it is, return the action, otherwise +** return YY_NO_ACTION. +*/ +static int yy_find_shift_action( + yyParser *pParser, /* The parser */ + YYCODETYPE iLookAhead /* The look-ahead token */ +){ + int i; + int stateno = pParser->yystack[pParser->yyidx].stateno; + + if( stateno>YY_SHIFT_COUNT + || (i = yy_shift_ofst[stateno])==YY_SHIFT_USE_DFLT ){ + return yy_default[stateno]; + } + assert( iLookAhead!=YYNOCODE ); + i += iLookAhead; + if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){ + if( iLookAhead>0 ){ +#ifdef YYFALLBACK + YYCODETYPE iFallback; /* Fallback token */ + if( iLookAhead %s\n", + yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]); + } +#endif + return yy_find_shift_action(pParser, iFallback); + } +#endif +#ifdef YYWILDCARD + { + int j = i - iLookAhead + YYWILDCARD; + if( +#if YY_SHIFT_MIN+YYWILDCARD<0 + j>=0 && +#endif +#if YY_SHIFT_MAX+YYWILDCARD>=YY_ACTTAB_COUNT + j %s\n", + yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[YYWILDCARD]); + } +#endif /* NDEBUG */ + return yy_action[j]; + } + } +#endif /* YYWILDCARD */ + } + return yy_default[stateno]; + }else{ + return yy_action[i]; + } +} + +/* +** Find the appropriate action for a parser given the non-terminal +** look-ahead token iLookAhead. +** +** If the look-ahead token is YYNOCODE, then check to see if the action is +** independent of the look-ahead. If it is, return the action, otherwise +** return YY_NO_ACTION. +*/ +static int yy_find_reduce_action( + int stateno, /* Current state number */ + YYCODETYPE iLookAhead /* The look-ahead token */ +){ + int i; +#ifdef YYERRORSYMBOL + if( stateno>YY_REDUCE_COUNT ){ + return yy_default[stateno]; + } +#else + assert( stateno<=YY_REDUCE_COUNT ); +#endif + i = yy_reduce_ofst[stateno]; + assert( i!=YY_REDUCE_USE_DFLT ); + assert( iLookAhead!=YYNOCODE ); + i += iLookAhead; +#ifdef YYERRORSYMBOL + if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){ + return yy_default[stateno]; + } +#else + assert( i>=0 && iyyidx--; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt); + } +#endif + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + /* Here code is inserted which will execute if the parser + ** stack every overflows */ + + UNUSED_PARAMETER(yypMinor); /* Silence some compiler warnings */ + sqlite3ErrorMsg(pParse, "parser stack overflow"); + sqlite3ParserARG_STORE; /* Suppress warning about unused %extra_argument var */ +} + +/* +** Perform a shift action. +*/ +static void yy_shift( + yyParser *yypParser, /* The parser to be shifted */ + int yyNewState, /* The new state to shift in */ + int yyMajor, /* The major token to shift in */ + YYMINORTYPE *yypMinor /* Pointer to the minor token to shift in */ +){ + yyStackEntry *yytos; + yypParser->yyidx++; +#ifdef YYTRACKMAXSTACKDEPTH + if( yypParser->yyidx>yypParser->yyidxMax ){ + yypParser->yyidxMax = yypParser->yyidx; + } +#endif +#if YYSTACKDEPTH>0 + if( yypParser->yyidx>=YYSTACKDEPTH ){ + yyStackOverflow(yypParser, yypMinor); + return; + } +#else + if( yypParser->yyidx>=yypParser->yystksz ){ + yyGrowStack(yypParser); + if( yypParser->yyidx>=yypParser->yystksz ){ + yyStackOverflow(yypParser, yypMinor); + return; + } + } +#endif + yytos = &yypParser->yystack[yypParser->yyidx]; + yytos->stateno = (YYACTIONTYPE)yyNewState; + yytos->major = (YYCODETYPE)yyMajor; + yytos->minor = *yypMinor; +#ifndef NDEBUG + if( yyTraceFILE && yypParser->yyidx>0 ){ + int i; + fprintf(yyTraceFILE,"%sShift %d\n",yyTracePrompt,yyNewState); + fprintf(yyTraceFILE,"%sStack:",yyTracePrompt); + for(i=1; i<=yypParser->yyidx; i++) + fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]); + fprintf(yyTraceFILE,"\n"); + } +#endif +} + +/* The following table contains information about every rule that +** is used during the reduce. +*/ +static const struct { + YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ + unsigned char nrhs; /* Number of right-hand side symbols in the rule */ +} yyRuleInfo[] = { + { 144, 1 }, + { 145, 2 }, + { 145, 1 }, + { 146, 1 }, + { 146, 3 }, + { 147, 0 }, + { 147, 1 }, + { 147, 3 }, + { 148, 1 }, + { 149, 3 }, + { 151, 0 }, + { 151, 1 }, + { 151, 2 }, + { 150, 0 }, + { 150, 1 }, + { 150, 1 }, + { 150, 1 }, + { 149, 2 }, + { 149, 2 }, + { 149, 2 }, + { 153, 1 }, + { 153, 0 }, + { 149, 2 }, + { 149, 3 }, + { 149, 5 }, + { 149, 2 }, + { 154, 6 }, + { 156, 1 }, + { 158, 0 }, + { 158, 3 }, + { 157, 1 }, + { 157, 0 }, + { 155, 5 }, + { 155, 2 }, + { 162, 0 }, + { 162, 2 }, + { 160, 3 }, + { 160, 1 }, + { 164, 3 }, + { 165, 1 }, + { 152, 1 }, + { 152, 1 }, + { 152, 1 }, + { 166, 0 }, + { 166, 1 }, + { 168, 1 }, + { 168, 4 }, + { 168, 6 }, + { 169, 1 }, + { 169, 2 }, + { 170, 1 }, + { 170, 1 }, + { 167, 2 }, + { 167, 0 }, + { 173, 2 }, + { 173, 2 }, + { 173, 4 }, + { 173, 3 }, + { 173, 3 }, + { 173, 2 }, + { 173, 2 }, + { 173, 3 }, + { 173, 5 }, + { 173, 2 }, + { 173, 4 }, + { 173, 4 }, + { 173, 1 }, + { 173, 2 }, + { 178, 0 }, + { 178, 1 }, + { 180, 0 }, + { 180, 2 }, + { 182, 2 }, + { 182, 3 }, + { 182, 3 }, + { 182, 3 }, + { 183, 2 }, + { 183, 2 }, + { 183, 1 }, + { 183, 1 }, + { 183, 2 }, + { 181, 3 }, + { 181, 2 }, + { 184, 0 }, + { 184, 2 }, + { 184, 2 }, + { 161, 0 }, + { 161, 2 }, + { 185, 3 }, + { 185, 1 }, + { 186, 1 }, + { 186, 0 }, + { 187, 2 }, + { 187, 7 }, + { 187, 5 }, + { 187, 5 }, + { 187, 10 }, + { 189, 0 }, + { 189, 1 }, + { 176, 0 }, + { 176, 3 }, + { 190, 0 }, + { 190, 2 }, + { 191, 1 }, + { 191, 1 }, + { 191, 1 }, + { 149, 4 }, + { 193, 2 }, + { 193, 0 }, + { 149, 8 }, + { 149, 4 }, + { 149, 1 }, + { 163, 2 }, + { 195, 1 }, + { 195, 3 }, + { 198, 1 }, + { 198, 2 }, + { 198, 1 }, + { 196, 9 }, + { 196, 1 }, + { 207, 4 }, + { 207, 5 }, + { 199, 1 }, + { 199, 1 }, + { 199, 0 }, + { 210, 2 }, + { 210, 0 }, + { 200, 3 }, + { 200, 2 }, + { 200, 4 }, + { 211, 2 }, + { 211, 1 }, + { 211, 0 }, + { 201, 0 }, + { 201, 2 }, + { 213, 2 }, + { 213, 0 }, + { 212, 7 }, + { 212, 7 }, + { 212, 7 }, + { 159, 0 }, + { 159, 2 }, + { 194, 2 }, + { 214, 1 }, + { 214, 2 }, + { 214, 3 }, + { 214, 4 }, + { 216, 2 }, + { 216, 0 }, + { 215, 0 }, + { 215, 3 }, + { 215, 2 }, + { 217, 4 }, + { 217, 0 }, + { 205, 0 }, + { 205, 3 }, + { 220, 4 }, + { 220, 2 }, + { 177, 1 }, + { 177, 1 }, + { 177, 0 }, + { 203, 0 }, + { 203, 3 }, + { 204, 0 }, + { 204, 2 }, + { 206, 0 }, + { 206, 2 }, + { 206, 4 }, + { 206, 4 }, + { 149, 6 }, + { 202, 0 }, + { 202, 2 }, + { 149, 8 }, + { 221, 5 }, + { 221, 3 }, + { 149, 6 }, + { 149, 7 }, + { 222, 2 }, + { 222, 1 }, + { 223, 0 }, + { 223, 3 }, + { 219, 3 }, + { 219, 1 }, + { 175, 1 }, + { 175, 3 }, + { 174, 1 }, + { 175, 1 }, + { 175, 1 }, + { 175, 3 }, + { 175, 5 }, + { 174, 1 }, + { 174, 1 }, + { 175, 1 }, + { 175, 3 }, + { 175, 6 }, + { 175, 5 }, + { 175, 4 }, + { 174, 1 }, + { 175, 3 }, + { 175, 3 }, + { 175, 3 }, + { 175, 3 }, + { 175, 3 }, + { 175, 3 }, + { 175, 3 }, + { 175, 3 }, + { 224, 1 }, + { 224, 2 }, + { 175, 3 }, + { 175, 5 }, + { 175, 2 }, + { 175, 3 }, + { 175, 3 }, + { 175, 4 }, + { 175, 2 }, + { 175, 2 }, + { 175, 2 }, + { 175, 2 }, + { 225, 1 }, + { 225, 2 }, + { 175, 5 }, + { 226, 1 }, + { 226, 2 }, + { 175, 5 }, + { 175, 3 }, + { 175, 5 }, + { 175, 4 }, + { 175, 4 }, + { 175, 5 }, + { 228, 5 }, + { 228, 4 }, + { 229, 2 }, + { 229, 0 }, + { 227, 1 }, + { 227, 0 }, + { 209, 1 }, + { 209, 0 }, + { 208, 3 }, + { 208, 1 }, + { 149, 12 }, + { 230, 1 }, + { 230, 0 }, + { 179, 0 }, + { 179, 3 }, + { 188, 5 }, + { 188, 3 }, + { 231, 0 }, + { 231, 2 }, + { 149, 4 }, + { 149, 1 }, + { 149, 2 }, + { 149, 3 }, + { 149, 5 }, + { 149, 6 }, + { 149, 5 }, + { 149, 6 }, + { 232, 1 }, + { 232, 1 }, + { 232, 1 }, + { 232, 1 }, + { 232, 1 }, + { 171, 2 }, + { 171, 1 }, + { 172, 2 }, + { 149, 5 }, + { 233, 11 }, + { 235, 1 }, + { 235, 1 }, + { 235, 2 }, + { 235, 0 }, + { 236, 1 }, + { 236, 1 }, + { 236, 3 }, + { 237, 0 }, + { 237, 3 }, + { 238, 0 }, + { 238, 2 }, + { 234, 3 }, + { 234, 2 }, + { 240, 1 }, + { 240, 3 }, + { 241, 0 }, + { 241, 3 }, + { 241, 2 }, + { 239, 7 }, + { 239, 5 }, + { 239, 5 }, + { 239, 1 }, + { 175, 4 }, + { 175, 6 }, + { 192, 1 }, + { 192, 1 }, + { 192, 1 }, + { 149, 4 }, + { 149, 6 }, + { 149, 3 }, + { 243, 0 }, + { 243, 2 }, + { 242, 1 }, + { 242, 0 }, + { 149, 1 }, + { 149, 3 }, + { 149, 1 }, + { 149, 3 }, + { 149, 6 }, + { 149, 6 }, + { 244, 1 }, + { 245, 0 }, + { 245, 1 }, + { 149, 1 }, + { 149, 4 }, + { 246, 8 }, + { 247, 1 }, + { 247, 3 }, + { 248, 0 }, + { 248, 2 }, + { 249, 1 }, + { 249, 3 }, + { 250, 1 }, + { 251, 0 }, + { 251, 4 }, + { 251, 2 }, + { 197, 0 }, + { 197, 2 }, + { 197, 3 }, + { 252, 6 }, + { 252, 8 }, +}; + +static void yy_accept(yyParser*); /* Forward Declaration */ + +/* +** Perform a reduce action and the shift that must immediately +** follow the reduce. +*/ +static void yy_reduce( + yyParser *yypParser, /* The parser */ + int yyruleno /* Number of the rule by which to reduce */ +){ + int yygoto; /* The next state */ + int yyact; /* The next action */ + YYMINORTYPE yygotominor; /* The LHS of the rule reduced */ + yyStackEntry *yymsp; /* The top of the parser's stack */ + int yysize; /* Amount to pop the stack */ + sqlite3ParserARG_FETCH; + yymsp = &yypParser->yystack[yypParser->yyidx]; +#ifndef NDEBUG + if( yyTraceFILE && yyruleno>=0 + && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){ + fprintf(yyTraceFILE, "%sReduce [%s].\n", yyTracePrompt, + yyRuleName[yyruleno]); + } +#endif /* NDEBUG */ + + /* Silence complaints from purify about yygotominor being uninitialized + ** in some cases when it is copied into the stack after the following + ** switch. yygotominor is uninitialized when a rule reduces that does + ** not set the value of its left-hand side nonterminal. Leaving the + ** value of the nonterminal uninitialized is utterly harmless as long + ** as the value is never used. So really the only thing this code + ** accomplishes is to quieten purify. + ** + ** 2007-01-16: The wireshark project (www.wireshark.org) reports that + ** without this code, their parser segfaults. I'm not sure what there + ** parser is doing to make this happen. This is the second bug report + ** from wireshark this week. Clearly they are stressing Lemon in ways + ** that it has not been previously stressed... (SQLite ticket #2172) + */ + /*memset(&yygotominor, 0, sizeof(yygotominor));*/ + yygotominor = yyzerominor; + + + switch( yyruleno ){ + /* Beginning here are the reduction cases. A typical example + ** follows: + ** case 0: + ** #line + ** { ... } // User supplied code + ** #line + ** break; + */ + case 5: /* explain ::= */ +{ sqlite3BeginParse(pParse, 0); } + break; + case 6: /* explain ::= EXPLAIN */ +{ sqlite3BeginParse(pParse, 1); } + break; + case 7: /* explain ::= EXPLAIN QUERY PLAN */ +{ sqlite3BeginParse(pParse, 2); } + break; + case 8: /* cmdx ::= cmd */ +{ sqlite3FinishCoding(pParse); } + break; + case 9: /* cmd ::= BEGIN transtype trans_opt */ +{sqlite3BeginTransaction(pParse, yymsp[-1].minor.yy328);} + break; + case 13: /* transtype ::= */ +{yygotominor.yy328 = TK_DEFERRED;} + break; + case 14: /* transtype ::= DEFERRED */ + case 15: /* transtype ::= IMMEDIATE */ yytestcase(yyruleno==15); + case 16: /* transtype ::= EXCLUSIVE */ yytestcase(yyruleno==16); + case 115: /* multiselect_op ::= UNION */ yytestcase(yyruleno==115); + case 117: /* multiselect_op ::= EXCEPT|INTERSECT */ yytestcase(yyruleno==117); +{yygotominor.yy328 = yymsp[0].major;} + break; + case 17: /* cmd ::= COMMIT trans_opt */ + case 18: /* cmd ::= END trans_opt */ yytestcase(yyruleno==18); +{sqlite3CommitTransaction(pParse);} + break; + case 19: /* cmd ::= ROLLBACK trans_opt */ +{sqlite3RollbackTransaction(pParse);} + break; + case 22: /* cmd ::= SAVEPOINT nm */ +{ + sqlite3Savepoint(pParse, SAVEPOINT_BEGIN, &yymsp[0].minor.yy0); +} + break; + case 23: /* cmd ::= RELEASE savepoint_opt nm */ +{ + sqlite3Savepoint(pParse, SAVEPOINT_RELEASE, &yymsp[0].minor.yy0); +} + break; + case 24: /* cmd ::= ROLLBACK trans_opt TO savepoint_opt nm */ +{ + sqlite3Savepoint(pParse, SAVEPOINT_ROLLBACK, &yymsp[0].minor.yy0); +} + break; + case 26: /* create_table ::= createkw temp TABLE ifnotexists nm dbnm */ +{ + sqlite3StartTable(pParse,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0,yymsp[-4].minor.yy328,0,0,yymsp[-2].minor.yy328); +} + break; + case 27: /* createkw ::= CREATE */ +{ + pParse->db->lookaside.bEnabled = 0; + yygotominor.yy0 = yymsp[0].minor.yy0; +} + break; + case 28: /* ifnotexists ::= */ + case 31: /* temp ::= */ yytestcase(yyruleno==31); + case 68: /* autoinc ::= */ yytestcase(yyruleno==68); + case 81: /* defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt */ yytestcase(yyruleno==81); + case 83: /* init_deferred_pred_opt ::= */ yytestcase(yyruleno==83); + case 85: /* init_deferred_pred_opt ::= INITIALLY IMMEDIATE */ yytestcase(yyruleno==85); + case 97: /* defer_subclause_opt ::= */ yytestcase(yyruleno==97); + case 108: /* ifexists ::= */ yytestcase(yyruleno==108); + case 218: /* between_op ::= BETWEEN */ yytestcase(yyruleno==218); + case 221: /* in_op ::= IN */ yytestcase(yyruleno==221); +{yygotominor.yy328 = 0;} + break; + case 29: /* ifnotexists ::= IF NOT EXISTS */ + case 30: /* temp ::= TEMP */ yytestcase(yyruleno==30); + case 69: /* autoinc ::= AUTOINCR */ yytestcase(yyruleno==69); + case 84: /* init_deferred_pred_opt ::= INITIALLY DEFERRED */ yytestcase(yyruleno==84); + case 107: /* ifexists ::= IF EXISTS */ yytestcase(yyruleno==107); + case 219: /* between_op ::= NOT BETWEEN */ yytestcase(yyruleno==219); + case 222: /* in_op ::= NOT IN */ yytestcase(yyruleno==222); +{yygotominor.yy328 = 1;} + break; + case 32: /* create_table_args ::= LP columnlist conslist_opt RP table_options */ +{ + sqlite3EndTable(pParse,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0,yymsp[0].minor.yy186,0); +} + break; + case 33: /* create_table_args ::= AS select */ +{ + sqlite3EndTable(pParse,0,0,0,yymsp[0].minor.yy3); + sqlite3SelectDelete(pParse->db, yymsp[0].minor.yy3); +} + break; + case 34: /* table_options ::= */ +{yygotominor.yy186 = 0;} + break; + case 35: /* table_options ::= WITHOUT nm */ +{ + if( yymsp[0].minor.yy0.n==5 && sqlite3_strnicmp(yymsp[0].minor.yy0.z,"rowid",5)==0 ){ + yygotominor.yy186 = TF_WithoutRowid; + }else{ + yygotominor.yy186 = 0; + sqlite3ErrorMsg(pParse, "unknown table option: %.*s", yymsp[0].minor.yy0.n, yymsp[0].minor.yy0.z); + } +} + break; + case 38: /* column ::= columnid type carglist */ +{ + yygotominor.yy0.z = yymsp[-2].minor.yy0.z; + yygotominor.yy0.n = (int)(pParse->sLastToken.z-yymsp[-2].minor.yy0.z) + pParse->sLastToken.n; +} + break; + case 39: /* columnid ::= nm */ +{ + sqlite3AddColumn(pParse,&yymsp[0].minor.yy0); + yygotominor.yy0 = yymsp[0].minor.yy0; + pParse->constraintName.n = 0; +} + break; + case 40: /* nm ::= ID|INDEXED */ + case 41: /* nm ::= STRING */ yytestcase(yyruleno==41); + case 42: /* nm ::= JOIN_KW */ yytestcase(yyruleno==42); + case 45: /* typetoken ::= typename */ yytestcase(yyruleno==45); + case 48: /* typename ::= ID|STRING */ yytestcase(yyruleno==48); + case 130: /* as ::= AS nm */ yytestcase(yyruleno==130); + case 131: /* as ::= ID|STRING */ yytestcase(yyruleno==131); + case 141: /* dbnm ::= DOT nm */ yytestcase(yyruleno==141); + case 150: /* indexed_opt ::= INDEXED BY nm */ yytestcase(yyruleno==150); + case 247: /* collate ::= COLLATE ID|STRING */ yytestcase(yyruleno==247); + case 256: /* nmnum ::= plus_num */ yytestcase(yyruleno==256); + case 257: /* nmnum ::= nm */ yytestcase(yyruleno==257); + case 258: /* nmnum ::= ON */ yytestcase(yyruleno==258); + case 259: /* nmnum ::= DELETE */ yytestcase(yyruleno==259); + case 260: /* nmnum ::= DEFAULT */ yytestcase(yyruleno==260); + case 261: /* plus_num ::= PLUS INTEGER|FLOAT */ yytestcase(yyruleno==261); + case 262: /* plus_num ::= INTEGER|FLOAT */ yytestcase(yyruleno==262); + case 263: /* minus_num ::= MINUS INTEGER|FLOAT */ yytestcase(yyruleno==263); + case 279: /* trnm ::= nm */ yytestcase(yyruleno==279); +{yygotominor.yy0 = yymsp[0].minor.yy0;} + break; + case 44: /* type ::= typetoken */ +{sqlite3AddColumnType(pParse,&yymsp[0].minor.yy0);} + break; + case 46: /* typetoken ::= typename LP signed RP */ +{ + yygotominor.yy0.z = yymsp[-3].minor.yy0.z; + yygotominor.yy0.n = (int)(&yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n] - yymsp[-3].minor.yy0.z); +} + break; + case 47: /* typetoken ::= typename LP signed COMMA signed RP */ +{ + yygotominor.yy0.z = yymsp[-5].minor.yy0.z; + yygotominor.yy0.n = (int)(&yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n] - yymsp[-5].minor.yy0.z); +} + break; + case 49: /* typename ::= typename ID|STRING */ +{yygotominor.yy0.z=yymsp[-1].minor.yy0.z; yygotominor.yy0.n=yymsp[0].minor.yy0.n+(int)(yymsp[0].minor.yy0.z-yymsp[-1].minor.yy0.z);} + break; + case 54: /* ccons ::= CONSTRAINT nm */ + case 92: /* tcons ::= CONSTRAINT nm */ yytestcase(yyruleno==92); +{pParse->constraintName = yymsp[0].minor.yy0;} + break; + case 55: /* ccons ::= DEFAULT term */ + case 57: /* ccons ::= DEFAULT PLUS term */ yytestcase(yyruleno==57); +{sqlite3AddDefaultValue(pParse,&yymsp[0].minor.yy346);} + break; + case 56: /* ccons ::= DEFAULT LP expr RP */ +{sqlite3AddDefaultValue(pParse,&yymsp[-1].minor.yy346);} + break; + case 58: /* ccons ::= DEFAULT MINUS term */ +{ + ExprSpan v; + v.pExpr = sqlite3PExpr(pParse, TK_UMINUS, yymsp[0].minor.yy346.pExpr, 0, 0); + v.zStart = yymsp[-1].minor.yy0.z; + v.zEnd = yymsp[0].minor.yy346.zEnd; + sqlite3AddDefaultValue(pParse,&v); +} + break; + case 59: /* ccons ::= DEFAULT ID|INDEXED */ +{ + ExprSpan v; + spanExpr(&v, pParse, TK_STRING, &yymsp[0].minor.yy0); + sqlite3AddDefaultValue(pParse,&v); +} + break; + case 61: /* ccons ::= NOT NULL onconf */ +{sqlite3AddNotNull(pParse, yymsp[0].minor.yy328);} + break; + case 62: /* ccons ::= PRIMARY KEY sortorder onconf autoinc */ +{sqlite3AddPrimaryKey(pParse,0,yymsp[-1].minor.yy328,yymsp[0].minor.yy328,yymsp[-2].minor.yy328);} + break; + case 63: /* ccons ::= UNIQUE onconf */ +{sqlite3CreateIndex(pParse,0,0,0,0,yymsp[0].minor.yy328,0,0,0,0);} + break; + case 64: /* ccons ::= CHECK LP expr RP */ +{sqlite3AddCheckConstraint(pParse,yymsp[-1].minor.yy346.pExpr);} + break; + case 65: /* ccons ::= REFERENCES nm idxlist_opt refargs */ +{sqlite3CreateForeignKey(pParse,0,&yymsp[-2].minor.yy0,yymsp[-1].minor.yy14,yymsp[0].minor.yy328);} + break; + case 66: /* ccons ::= defer_subclause */ +{sqlite3DeferForeignKey(pParse,yymsp[0].minor.yy328);} + break; + case 67: /* ccons ::= COLLATE ID|STRING */ +{sqlite3AddCollateType(pParse, &yymsp[0].minor.yy0);} + break; + case 70: /* refargs ::= */ +{ yygotominor.yy328 = OE_None*0x0101; /* EV: R-19803-45884 */} + break; + case 71: /* refargs ::= refargs refarg */ +{ yygotominor.yy328 = (yymsp[-1].minor.yy328 & ~yymsp[0].minor.yy429.mask) | yymsp[0].minor.yy429.value; } + break; + case 72: /* refarg ::= MATCH nm */ + case 73: /* refarg ::= ON INSERT refact */ yytestcase(yyruleno==73); +{ yygotominor.yy429.value = 0; yygotominor.yy429.mask = 0x000000; } + break; + case 74: /* refarg ::= ON DELETE refact */ +{ yygotominor.yy429.value = yymsp[0].minor.yy328; yygotominor.yy429.mask = 0x0000ff; } + break; + case 75: /* refarg ::= ON UPDATE refact */ +{ yygotominor.yy429.value = yymsp[0].minor.yy328<<8; yygotominor.yy429.mask = 0x00ff00; } + break; + case 76: /* refact ::= SET NULL */ +{ yygotominor.yy328 = OE_SetNull; /* EV: R-33326-45252 */} + break; + case 77: /* refact ::= SET DEFAULT */ +{ yygotominor.yy328 = OE_SetDflt; /* EV: R-33326-45252 */} + break; + case 78: /* refact ::= CASCADE */ +{ yygotominor.yy328 = OE_Cascade; /* EV: R-33326-45252 */} + break; + case 79: /* refact ::= RESTRICT */ +{ yygotominor.yy328 = OE_Restrict; /* EV: R-33326-45252 */} + break; + case 80: /* refact ::= NO ACTION */ +{ yygotominor.yy328 = OE_None; /* EV: R-33326-45252 */} + break; + case 82: /* defer_subclause ::= DEFERRABLE init_deferred_pred_opt */ + case 98: /* defer_subclause_opt ::= defer_subclause */ yytestcase(yyruleno==98); + case 100: /* onconf ::= ON CONFLICT resolvetype */ yytestcase(yyruleno==100); + case 103: /* resolvetype ::= raisetype */ yytestcase(yyruleno==103); +{yygotominor.yy328 = yymsp[0].minor.yy328;} + break; + case 86: /* conslist_opt ::= */ +{yygotominor.yy0.n = 0; yygotominor.yy0.z = 0;} + break; + case 87: /* conslist_opt ::= COMMA conslist */ +{yygotominor.yy0 = yymsp[-1].minor.yy0;} + break; + case 90: /* tconscomma ::= COMMA */ +{pParse->constraintName.n = 0;} + break; + case 93: /* tcons ::= PRIMARY KEY LP idxlist autoinc RP onconf */ +{sqlite3AddPrimaryKey(pParse,yymsp[-3].minor.yy14,yymsp[0].minor.yy328,yymsp[-2].minor.yy328,0);} + break; + case 94: /* tcons ::= UNIQUE LP idxlist RP onconf */ +{sqlite3CreateIndex(pParse,0,0,0,yymsp[-2].minor.yy14,yymsp[0].minor.yy328,0,0,0,0);} + break; + case 95: /* tcons ::= CHECK LP expr RP onconf */ +{sqlite3AddCheckConstraint(pParse,yymsp[-2].minor.yy346.pExpr);} + break; + case 96: /* tcons ::= FOREIGN KEY LP idxlist RP REFERENCES nm idxlist_opt refargs defer_subclause_opt */ +{ + sqlite3CreateForeignKey(pParse, yymsp[-6].minor.yy14, &yymsp[-3].minor.yy0, yymsp[-2].minor.yy14, yymsp[-1].minor.yy328); + sqlite3DeferForeignKey(pParse, yymsp[0].minor.yy328); +} + break; + case 99: /* onconf ::= */ +{yygotominor.yy328 = OE_Default;} + break; + case 101: /* orconf ::= */ +{yygotominor.yy186 = OE_Default;} + break; + case 102: /* orconf ::= OR resolvetype */ +{yygotominor.yy186 = (u8)yymsp[0].minor.yy328;} + break; + case 104: /* resolvetype ::= IGNORE */ +{yygotominor.yy328 = OE_Ignore;} + break; + case 105: /* resolvetype ::= REPLACE */ +{yygotominor.yy328 = OE_Replace;} + break; + case 106: /* cmd ::= DROP TABLE ifexists fullname */ +{ + sqlite3DropTable(pParse, yymsp[0].minor.yy65, 0, yymsp[-1].minor.yy328); +} + break; + case 109: /* cmd ::= createkw temp VIEW ifnotexists nm dbnm AS select */ +{ + sqlite3CreateView(pParse, &yymsp[-7].minor.yy0, &yymsp[-3].minor.yy0, &yymsp[-2].minor.yy0, yymsp[0].minor.yy3, yymsp[-6].minor.yy328, yymsp[-4].minor.yy328); +} + break; + case 110: /* cmd ::= DROP VIEW ifexists fullname */ +{ + sqlite3DropTable(pParse, yymsp[0].minor.yy65, 1, yymsp[-1].minor.yy328); +} + break; + case 111: /* cmd ::= select */ +{ + SelectDest dest = {SRT_Output, 0, 0, 0, 0, 0}; + sqlite3Select(pParse, yymsp[0].minor.yy3, &dest); + sqlite3ExplainBegin(pParse->pVdbe); + sqlite3ExplainSelect(pParse->pVdbe, yymsp[0].minor.yy3); + sqlite3ExplainFinish(pParse->pVdbe); + sqlite3SelectDelete(pParse->db, yymsp[0].minor.yy3); +} + break; + case 112: /* select ::= with selectnowith */ +{ + Select *p = yymsp[0].minor.yy3, *pNext, *pLoop; + if( p ){ + int cnt = 0, mxSelect; + p->pWith = yymsp[-1].minor.yy59; + if( p->pPrior ){ + pNext = 0; + for(pLoop=p; pLoop; pNext=pLoop, pLoop=pLoop->pPrior, cnt++){ + pLoop->pNext = pNext; + pLoop->selFlags |= SF_Compound; + } + mxSelect = pParse->db->aLimit[SQLITE_LIMIT_COMPOUND_SELECT]; + if( mxSelect && cnt>mxSelect ){ + sqlite3ErrorMsg(pParse, "too many terms in compound SELECT"); + } + } + }else{ + sqlite3WithDelete(pParse->db, yymsp[-1].minor.yy59); + } + yygotominor.yy3 = p; +} + break; + case 113: /* selectnowith ::= oneselect */ + case 119: /* oneselect ::= values */ yytestcase(yyruleno==119); +{yygotominor.yy3 = yymsp[0].minor.yy3;} + break; + case 114: /* selectnowith ::= selectnowith multiselect_op oneselect */ +{ + Select *pRhs = yymsp[0].minor.yy3; + if( pRhs && pRhs->pPrior ){ + SrcList *pFrom; + Token x; + x.n = 0; + pFrom = sqlite3SrcListAppendFromTerm(pParse,0,0,0,&x,pRhs,0,0); + pRhs = sqlite3SelectNew(pParse,0,pFrom,0,0,0,0,0,0,0); + } + if( pRhs ){ + pRhs->op = (u8)yymsp[-1].minor.yy328; + pRhs->pPrior = yymsp[-2].minor.yy3; + if( yymsp[-1].minor.yy328!=TK_ALL ) pParse->hasCompound = 1; + }else{ + sqlite3SelectDelete(pParse->db, yymsp[-2].minor.yy3); + } + yygotominor.yy3 = pRhs; +} + break; + case 116: /* multiselect_op ::= UNION ALL */ +{yygotominor.yy328 = TK_ALL;} + break; + case 118: /* oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt */ +{ + yygotominor.yy3 = sqlite3SelectNew(pParse,yymsp[-6].minor.yy14,yymsp[-5].minor.yy65,yymsp[-4].minor.yy132,yymsp[-3].minor.yy14,yymsp[-2].minor.yy132,yymsp[-1].minor.yy14,yymsp[-7].minor.yy381,yymsp[0].minor.yy476.pLimit,yymsp[0].minor.yy476.pOffset); +} + break; + case 120: /* values ::= VALUES LP nexprlist RP */ +{ + yygotominor.yy3 = sqlite3SelectNew(pParse,yymsp[-1].minor.yy14,0,0,0,0,0,SF_Values,0,0); +} + break; + case 121: /* values ::= values COMMA LP exprlist RP */ +{ + Select *pRight = sqlite3SelectNew(pParse,yymsp[-1].minor.yy14,0,0,0,0,0,SF_Values,0,0); + if( pRight ){ + pRight->op = TK_ALL; + pRight->pPrior = yymsp[-4].minor.yy3; + yygotominor.yy3 = pRight; + }else{ + yygotominor.yy3 = yymsp[-4].minor.yy3; + } +} + break; + case 122: /* distinct ::= DISTINCT */ +{yygotominor.yy381 = SF_Distinct;} + break; + case 123: /* distinct ::= ALL */ + case 124: /* distinct ::= */ yytestcase(yyruleno==124); +{yygotominor.yy381 = 0;} + break; + case 125: /* sclp ::= selcollist COMMA */ + case 243: /* idxlist_opt ::= LP idxlist RP */ yytestcase(yyruleno==243); +{yygotominor.yy14 = yymsp[-1].minor.yy14;} + break; + case 126: /* sclp ::= */ + case 154: /* orderby_opt ::= */ yytestcase(yyruleno==154); + case 161: /* groupby_opt ::= */ yytestcase(yyruleno==161); + case 236: /* exprlist ::= */ yytestcase(yyruleno==236); + case 242: /* idxlist_opt ::= */ yytestcase(yyruleno==242); +{yygotominor.yy14 = 0;} + break; + case 127: /* selcollist ::= sclp expr as */ +{ + yygotominor.yy14 = sqlite3ExprListAppend(pParse, yymsp[-2].minor.yy14, yymsp[-1].minor.yy346.pExpr); + if( yymsp[0].minor.yy0.n>0 ) sqlite3ExprListSetName(pParse, yygotominor.yy14, &yymsp[0].minor.yy0, 1); + sqlite3ExprListSetSpan(pParse,yygotominor.yy14,&yymsp[-1].minor.yy346); +} + break; + case 128: /* selcollist ::= sclp STAR */ +{ + Expr *p = sqlite3Expr(pParse->db, TK_ALL, 0); + yygotominor.yy14 = sqlite3ExprListAppend(pParse, yymsp[-1].minor.yy14, p); +} + break; + case 129: /* selcollist ::= sclp nm DOT STAR */ +{ + Expr *pRight = sqlite3PExpr(pParse, TK_ALL, 0, 0, &yymsp[0].minor.yy0); + Expr *pLeft = sqlite3PExpr(pParse, TK_ID, 0, 0, &yymsp[-2].minor.yy0); + Expr *pDot = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight, 0); + yygotominor.yy14 = sqlite3ExprListAppend(pParse,yymsp[-3].minor.yy14, pDot); +} + break; + case 132: /* as ::= */ +{yygotominor.yy0.n = 0;} + break; + case 133: /* from ::= */ +{yygotominor.yy65 = sqlite3DbMallocZero(pParse->db, sizeof(*yygotominor.yy65));} + break; + case 134: /* from ::= FROM seltablist */ +{ + yygotominor.yy65 = yymsp[0].minor.yy65; + sqlite3SrcListShiftJoinType(yygotominor.yy65); +} + break; + case 135: /* stl_prefix ::= seltablist joinop */ +{ + yygotominor.yy65 = yymsp[-1].minor.yy65; + if( ALWAYS(yygotominor.yy65 && yygotominor.yy65->nSrc>0) ) yygotominor.yy65->a[yygotominor.yy65->nSrc-1].jointype = (u8)yymsp[0].minor.yy328; +} + break; + case 136: /* stl_prefix ::= */ +{yygotominor.yy65 = 0;} + break; + case 137: /* seltablist ::= stl_prefix nm dbnm as indexed_opt on_opt using_opt */ +{ + yygotominor.yy65 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy65,&yymsp[-5].minor.yy0,&yymsp[-4].minor.yy0,&yymsp[-3].minor.yy0,0,yymsp[-1].minor.yy132,yymsp[0].minor.yy408); + sqlite3SrcListIndexedBy(pParse, yygotominor.yy65, &yymsp[-2].minor.yy0); +} + break; + case 138: /* seltablist ::= stl_prefix LP select RP as on_opt using_opt */ +{ + yygotominor.yy65 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy65,0,0,&yymsp[-2].minor.yy0,yymsp[-4].minor.yy3,yymsp[-1].minor.yy132,yymsp[0].minor.yy408); + } + break; + case 139: /* seltablist ::= stl_prefix LP seltablist RP as on_opt using_opt */ +{ + if( yymsp[-6].minor.yy65==0 && yymsp[-2].minor.yy0.n==0 && yymsp[-1].minor.yy132==0 && yymsp[0].minor.yy408==0 ){ + yygotominor.yy65 = yymsp[-4].minor.yy65; + }else if( yymsp[-4].minor.yy65->nSrc==1 ){ + yygotominor.yy65 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy65,0,0,&yymsp[-2].minor.yy0,0,yymsp[-1].minor.yy132,yymsp[0].minor.yy408); + if( yygotominor.yy65 ){ + struct SrcList_item *pNew = &yygotominor.yy65->a[yygotominor.yy65->nSrc-1]; + struct SrcList_item *pOld = yymsp[-4].minor.yy65->a; + pNew->zName = pOld->zName; + pNew->zDatabase = pOld->zDatabase; + pNew->pSelect = pOld->pSelect; + pOld->zName = pOld->zDatabase = 0; + pOld->pSelect = 0; + } + sqlite3SrcListDelete(pParse->db, yymsp[-4].minor.yy65); + }else{ + Select *pSubquery; + sqlite3SrcListShiftJoinType(yymsp[-4].minor.yy65); + pSubquery = sqlite3SelectNew(pParse,0,yymsp[-4].minor.yy65,0,0,0,0,SF_NestedFrom,0,0); + yygotominor.yy65 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy65,0,0,&yymsp[-2].minor.yy0,pSubquery,yymsp[-1].minor.yy132,yymsp[0].minor.yy408); + } + } + break; + case 140: /* dbnm ::= */ + case 149: /* indexed_opt ::= */ yytestcase(yyruleno==149); +{yygotominor.yy0.z=0; yygotominor.yy0.n=0;} + break; + case 142: /* fullname ::= nm dbnm */ +{yygotominor.yy65 = sqlite3SrcListAppend(pParse->db,0,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0);} + break; + case 143: /* joinop ::= COMMA|JOIN */ +{ yygotominor.yy328 = JT_INNER; } + break; + case 144: /* joinop ::= JOIN_KW JOIN */ +{ yygotominor.yy328 = sqlite3JoinType(pParse,&yymsp[-1].minor.yy0,0,0); } + break; + case 145: /* joinop ::= JOIN_KW nm JOIN */ +{ yygotominor.yy328 = sqlite3JoinType(pParse,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0,0); } + break; + case 146: /* joinop ::= JOIN_KW nm nm JOIN */ +{ yygotominor.yy328 = sqlite3JoinType(pParse,&yymsp[-3].minor.yy0,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0); } + break; + case 147: /* on_opt ::= ON expr */ + case 164: /* having_opt ::= HAVING expr */ yytestcase(yyruleno==164); + case 171: /* where_opt ::= WHERE expr */ yytestcase(yyruleno==171); + case 231: /* case_else ::= ELSE expr */ yytestcase(yyruleno==231); + case 233: /* case_operand ::= expr */ yytestcase(yyruleno==233); +{yygotominor.yy132 = yymsp[0].minor.yy346.pExpr;} + break; + case 148: /* on_opt ::= */ + case 163: /* having_opt ::= */ yytestcase(yyruleno==163); + case 170: /* where_opt ::= */ yytestcase(yyruleno==170); + case 232: /* case_else ::= */ yytestcase(yyruleno==232); + case 234: /* case_operand ::= */ yytestcase(yyruleno==234); +{yygotominor.yy132 = 0;} + break; + case 151: /* indexed_opt ::= NOT INDEXED */ +{yygotominor.yy0.z=0; yygotominor.yy0.n=1;} + break; + case 152: /* using_opt ::= USING LP idlist RP */ + case 180: /* inscollist_opt ::= LP idlist RP */ yytestcase(yyruleno==180); +{yygotominor.yy408 = yymsp[-1].minor.yy408;} + break; + case 153: /* using_opt ::= */ + case 179: /* inscollist_opt ::= */ yytestcase(yyruleno==179); +{yygotominor.yy408 = 0;} + break; + case 155: /* orderby_opt ::= ORDER BY sortlist */ + case 162: /* groupby_opt ::= GROUP BY nexprlist */ yytestcase(yyruleno==162); + case 235: /* exprlist ::= nexprlist */ yytestcase(yyruleno==235); +{yygotominor.yy14 = yymsp[0].minor.yy14;} + break; + case 156: /* sortlist ::= sortlist COMMA expr sortorder */ +{ + yygotominor.yy14 = sqlite3ExprListAppend(pParse,yymsp[-3].minor.yy14,yymsp[-1].minor.yy346.pExpr); + if( yygotominor.yy14 ) yygotominor.yy14->a[yygotominor.yy14->nExpr-1].sortOrder = (u8)yymsp[0].minor.yy328; +} + break; + case 157: /* sortlist ::= expr sortorder */ +{ + yygotominor.yy14 = sqlite3ExprListAppend(pParse,0,yymsp[-1].minor.yy346.pExpr); + if( yygotominor.yy14 && ALWAYS(yygotominor.yy14->a) ) yygotominor.yy14->a[0].sortOrder = (u8)yymsp[0].minor.yy328; +} + break; + case 158: /* sortorder ::= ASC */ + case 160: /* sortorder ::= */ yytestcase(yyruleno==160); +{yygotominor.yy328 = SQLITE_SO_ASC;} + break; + case 159: /* sortorder ::= DESC */ +{yygotominor.yy328 = SQLITE_SO_DESC;} + break; + case 165: /* limit_opt ::= */ +{yygotominor.yy476.pLimit = 0; yygotominor.yy476.pOffset = 0;} + break; + case 166: /* limit_opt ::= LIMIT expr */ +{yygotominor.yy476.pLimit = yymsp[0].minor.yy346.pExpr; yygotominor.yy476.pOffset = 0;} + break; + case 167: /* limit_opt ::= LIMIT expr OFFSET expr */ +{yygotominor.yy476.pLimit = yymsp[-2].minor.yy346.pExpr; yygotominor.yy476.pOffset = yymsp[0].minor.yy346.pExpr;} + break; + case 168: /* limit_opt ::= LIMIT expr COMMA expr */ +{yygotominor.yy476.pOffset = yymsp[-2].minor.yy346.pExpr; yygotominor.yy476.pLimit = yymsp[0].minor.yy346.pExpr;} + break; + case 169: /* cmd ::= with DELETE FROM fullname indexed_opt where_opt */ +{ + sqlite3WithPush(pParse, yymsp[-5].minor.yy59, 1); + sqlite3SrcListIndexedBy(pParse, yymsp[-2].minor.yy65, &yymsp[-1].minor.yy0); + sqlite3DeleteFrom(pParse,yymsp[-2].minor.yy65,yymsp[0].minor.yy132); +} + break; + case 172: /* cmd ::= with UPDATE orconf fullname indexed_opt SET setlist where_opt */ +{ + sqlite3WithPush(pParse, yymsp[-7].minor.yy59, 1); + sqlite3SrcListIndexedBy(pParse, yymsp[-4].minor.yy65, &yymsp[-3].minor.yy0); + sqlite3ExprListCheckLength(pParse,yymsp[-1].minor.yy14,"set list"); + sqlite3Update(pParse,yymsp[-4].minor.yy65,yymsp[-1].minor.yy14,yymsp[0].minor.yy132,yymsp[-5].minor.yy186); +} + break; + case 173: /* setlist ::= setlist COMMA nm EQ expr */ +{ + yygotominor.yy14 = sqlite3ExprListAppend(pParse, yymsp[-4].minor.yy14, yymsp[0].minor.yy346.pExpr); + sqlite3ExprListSetName(pParse, yygotominor.yy14, &yymsp[-2].minor.yy0, 1); +} + break; + case 174: /* setlist ::= nm EQ expr */ +{ + yygotominor.yy14 = sqlite3ExprListAppend(pParse, 0, yymsp[0].minor.yy346.pExpr); + sqlite3ExprListSetName(pParse, yygotominor.yy14, &yymsp[-2].minor.yy0, 1); +} + break; + case 175: /* cmd ::= with insert_cmd INTO fullname inscollist_opt select */ +{ + sqlite3WithPush(pParse, yymsp[-5].minor.yy59, 1); + sqlite3Insert(pParse, yymsp[-2].minor.yy65, yymsp[0].minor.yy3, yymsp[-1].minor.yy408, yymsp[-4].minor.yy186); +} + break; + case 176: /* cmd ::= with insert_cmd INTO fullname inscollist_opt DEFAULT VALUES */ +{ + sqlite3WithPush(pParse, yymsp[-6].minor.yy59, 1); + sqlite3Insert(pParse, yymsp[-3].minor.yy65, 0, yymsp[-2].minor.yy408, yymsp[-5].minor.yy186); +} + break; + case 177: /* insert_cmd ::= INSERT orconf */ +{yygotominor.yy186 = yymsp[0].minor.yy186;} + break; + case 178: /* insert_cmd ::= REPLACE */ +{yygotominor.yy186 = OE_Replace;} + break; + case 181: /* idlist ::= idlist COMMA nm */ +{yygotominor.yy408 = sqlite3IdListAppend(pParse->db,yymsp[-2].minor.yy408,&yymsp[0].minor.yy0);} + break; + case 182: /* idlist ::= nm */ +{yygotominor.yy408 = sqlite3IdListAppend(pParse->db,0,&yymsp[0].minor.yy0);} + break; + case 183: /* expr ::= term */ +{yygotominor.yy346 = yymsp[0].minor.yy346;} + break; + case 184: /* expr ::= LP expr RP */ +{yygotominor.yy346.pExpr = yymsp[-1].minor.yy346.pExpr; spanSet(&yygotominor.yy346,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0);} + break; + case 185: /* term ::= NULL */ + case 190: /* term ::= INTEGER|FLOAT|BLOB */ yytestcase(yyruleno==190); + case 191: /* term ::= STRING */ yytestcase(yyruleno==191); +{spanExpr(&yygotominor.yy346, pParse, yymsp[0].major, &yymsp[0].minor.yy0);} + break; + case 186: /* expr ::= ID|INDEXED */ + case 187: /* expr ::= JOIN_KW */ yytestcase(yyruleno==187); +{spanExpr(&yygotominor.yy346, pParse, TK_ID, &yymsp[0].minor.yy0);} + break; + case 188: /* expr ::= nm DOT nm */ +{ + Expr *temp1 = sqlite3PExpr(pParse, TK_ID, 0, 0, &yymsp[-2].minor.yy0); + Expr *temp2 = sqlite3PExpr(pParse, TK_ID, 0, 0, &yymsp[0].minor.yy0); + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_DOT, temp1, temp2, 0); + spanSet(&yygotominor.yy346,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0); +} + break; + case 189: /* expr ::= nm DOT nm DOT nm */ +{ + Expr *temp1 = sqlite3PExpr(pParse, TK_ID, 0, 0, &yymsp[-4].minor.yy0); + Expr *temp2 = sqlite3PExpr(pParse, TK_ID, 0, 0, &yymsp[-2].minor.yy0); + Expr *temp3 = sqlite3PExpr(pParse, TK_ID, 0, 0, &yymsp[0].minor.yy0); + Expr *temp4 = sqlite3PExpr(pParse, TK_DOT, temp2, temp3, 0); + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_DOT, temp1, temp4, 0); + spanSet(&yygotominor.yy346,&yymsp[-4].minor.yy0,&yymsp[0].minor.yy0); +} + break; + case 192: /* expr ::= VARIABLE */ +{ + if( yymsp[0].minor.yy0.n>=2 && yymsp[0].minor.yy0.z[0]=='#' && sqlite3Isdigit(yymsp[0].minor.yy0.z[1]) ){ + /* When doing a nested parse, one can include terms in an expression + ** that look like this: #1 #2 ... These terms refer to registers + ** in the virtual machine. #N is the N-th register. */ + if( pParse->nested==0 ){ + sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &yymsp[0].minor.yy0); + yygotominor.yy346.pExpr = 0; + }else{ + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_REGISTER, 0, 0, &yymsp[0].minor.yy0); + if( yygotominor.yy346.pExpr ) sqlite3GetInt32(&yymsp[0].minor.yy0.z[1], &yygotominor.yy346.pExpr->iTable); + } + }else{ + spanExpr(&yygotominor.yy346, pParse, TK_VARIABLE, &yymsp[0].minor.yy0); + sqlite3ExprAssignVarNumber(pParse, yygotominor.yy346.pExpr); + } + spanSet(&yygotominor.yy346, &yymsp[0].minor.yy0, &yymsp[0].minor.yy0); +} + break; + case 193: /* expr ::= expr COLLATE ID|STRING */ +{ + yygotominor.yy346.pExpr = sqlite3ExprAddCollateToken(pParse, yymsp[-2].minor.yy346.pExpr, &yymsp[0].minor.yy0); + yygotominor.yy346.zStart = yymsp[-2].minor.yy346.zStart; + yygotominor.yy346.zEnd = &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n]; +} + break; + case 194: /* expr ::= CAST LP expr AS typetoken RP */ +{ + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_CAST, yymsp[-3].minor.yy346.pExpr, 0, &yymsp[-1].minor.yy0); + spanSet(&yygotominor.yy346,&yymsp[-5].minor.yy0,&yymsp[0].minor.yy0); +} + break; + case 195: /* expr ::= ID|INDEXED LP distinct exprlist RP */ +{ + if( yymsp[-1].minor.yy14 && yymsp[-1].minor.yy14->nExpr>pParse->db->aLimit[SQLITE_LIMIT_FUNCTION_ARG] ){ + sqlite3ErrorMsg(pParse, "too many arguments on function %T", &yymsp[-4].minor.yy0); + } + yygotominor.yy346.pExpr = sqlite3ExprFunction(pParse, yymsp[-1].minor.yy14, &yymsp[-4].minor.yy0); + spanSet(&yygotominor.yy346,&yymsp[-4].minor.yy0,&yymsp[0].minor.yy0); + if( yymsp[-2].minor.yy381 && yygotominor.yy346.pExpr ){ + yygotominor.yy346.pExpr->flags |= EP_Distinct; + } +} + break; + case 196: /* expr ::= ID|INDEXED LP STAR RP */ +{ + yygotominor.yy346.pExpr = sqlite3ExprFunction(pParse, 0, &yymsp[-3].minor.yy0); + spanSet(&yygotominor.yy346,&yymsp[-3].minor.yy0,&yymsp[0].minor.yy0); +} + break; + case 197: /* term ::= CTIME_KW */ +{ + yygotominor.yy346.pExpr = sqlite3ExprFunction(pParse, 0, &yymsp[0].minor.yy0); + spanSet(&yygotominor.yy346, &yymsp[0].minor.yy0, &yymsp[0].minor.yy0); +} + break; + case 198: /* expr ::= expr AND expr */ + case 199: /* expr ::= expr OR expr */ yytestcase(yyruleno==199); + case 200: /* expr ::= expr LT|GT|GE|LE expr */ yytestcase(yyruleno==200); + case 201: /* expr ::= expr EQ|NE expr */ yytestcase(yyruleno==201); + case 202: /* expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr */ yytestcase(yyruleno==202); + case 203: /* expr ::= expr PLUS|MINUS expr */ yytestcase(yyruleno==203); + case 204: /* expr ::= expr STAR|SLASH|REM expr */ yytestcase(yyruleno==204); + case 205: /* expr ::= expr CONCAT expr */ yytestcase(yyruleno==205); +{spanBinaryExpr(&yygotominor.yy346,pParse,yymsp[-1].major,&yymsp[-2].minor.yy346,&yymsp[0].minor.yy346);} + break; + case 206: /* likeop ::= LIKE_KW|MATCH */ +{yygotominor.yy96.eOperator = yymsp[0].minor.yy0; yygotominor.yy96.bNot = 0;} + break; + case 207: /* likeop ::= NOT LIKE_KW|MATCH */ +{yygotominor.yy96.eOperator = yymsp[0].minor.yy0; yygotominor.yy96.bNot = 1;} + break; + case 208: /* expr ::= expr likeop expr */ +{ + ExprList *pList; + pList = sqlite3ExprListAppend(pParse,0, yymsp[0].minor.yy346.pExpr); + pList = sqlite3ExprListAppend(pParse,pList, yymsp[-2].minor.yy346.pExpr); + yygotominor.yy346.pExpr = sqlite3ExprFunction(pParse, pList, &yymsp[-1].minor.yy96.eOperator); + if( yymsp[-1].minor.yy96.bNot ) yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_NOT, yygotominor.yy346.pExpr, 0, 0); + yygotominor.yy346.zStart = yymsp[-2].minor.yy346.zStart; + yygotominor.yy346.zEnd = yymsp[0].minor.yy346.zEnd; + if( yygotominor.yy346.pExpr ) yygotominor.yy346.pExpr->flags |= EP_InfixFunc; +} + break; + case 209: /* expr ::= expr likeop expr ESCAPE expr */ +{ + ExprList *pList; + pList = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy346.pExpr); + pList = sqlite3ExprListAppend(pParse,pList, yymsp[-4].minor.yy346.pExpr); + pList = sqlite3ExprListAppend(pParse,pList, yymsp[0].minor.yy346.pExpr); + yygotominor.yy346.pExpr = sqlite3ExprFunction(pParse, pList, &yymsp[-3].minor.yy96.eOperator); + if( yymsp[-3].minor.yy96.bNot ) yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_NOT, yygotominor.yy346.pExpr, 0, 0); + yygotominor.yy346.zStart = yymsp[-4].minor.yy346.zStart; + yygotominor.yy346.zEnd = yymsp[0].minor.yy346.zEnd; + if( yygotominor.yy346.pExpr ) yygotominor.yy346.pExpr->flags |= EP_InfixFunc; +} + break; + case 210: /* expr ::= expr ISNULL|NOTNULL */ +{spanUnaryPostfix(&yygotominor.yy346,pParse,yymsp[0].major,&yymsp[-1].minor.yy346,&yymsp[0].minor.yy0);} + break; + case 211: /* expr ::= expr NOT NULL */ +{spanUnaryPostfix(&yygotominor.yy346,pParse,TK_NOTNULL,&yymsp[-2].minor.yy346,&yymsp[0].minor.yy0);} + break; + case 212: /* expr ::= expr IS expr */ +{ + spanBinaryExpr(&yygotominor.yy346,pParse,TK_IS,&yymsp[-2].minor.yy346,&yymsp[0].minor.yy346); + binaryToUnaryIfNull(pParse, yymsp[0].minor.yy346.pExpr, yygotominor.yy346.pExpr, TK_ISNULL); +} + break; + case 213: /* expr ::= expr IS NOT expr */ +{ + spanBinaryExpr(&yygotominor.yy346,pParse,TK_ISNOT,&yymsp[-3].minor.yy346,&yymsp[0].minor.yy346); + binaryToUnaryIfNull(pParse, yymsp[0].minor.yy346.pExpr, yygotominor.yy346.pExpr, TK_NOTNULL); +} + break; + case 214: /* expr ::= NOT expr */ + case 215: /* expr ::= BITNOT expr */ yytestcase(yyruleno==215); +{spanUnaryPrefix(&yygotominor.yy346,pParse,yymsp[-1].major,&yymsp[0].minor.yy346,&yymsp[-1].minor.yy0);} + break; + case 216: /* expr ::= MINUS expr */ +{spanUnaryPrefix(&yygotominor.yy346,pParse,TK_UMINUS,&yymsp[0].minor.yy346,&yymsp[-1].minor.yy0);} + break; + case 217: /* expr ::= PLUS expr */ +{spanUnaryPrefix(&yygotominor.yy346,pParse,TK_UPLUS,&yymsp[0].minor.yy346,&yymsp[-1].minor.yy0);} + break; + case 220: /* expr ::= expr between_op expr AND expr */ +{ + ExprList *pList = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy346.pExpr); + pList = sqlite3ExprListAppend(pParse,pList, yymsp[0].minor.yy346.pExpr); + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_BETWEEN, yymsp[-4].minor.yy346.pExpr, 0, 0); + if( yygotominor.yy346.pExpr ){ + yygotominor.yy346.pExpr->x.pList = pList; + }else{ + sqlite3ExprListDelete(pParse->db, pList); + } + if( yymsp[-3].minor.yy328 ) yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_NOT, yygotominor.yy346.pExpr, 0, 0); + yygotominor.yy346.zStart = yymsp[-4].minor.yy346.zStart; + yygotominor.yy346.zEnd = yymsp[0].minor.yy346.zEnd; +} + break; + case 223: /* expr ::= expr in_op LP exprlist RP */ +{ + if( yymsp[-1].minor.yy14==0 ){ + /* Expressions of the form + ** + ** expr1 IN () + ** expr1 NOT IN () + ** + ** simplify to constants 0 (false) and 1 (true), respectively, + ** regardless of the value of expr1. + */ + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, &sqlite3IntTokens[yymsp[-3].minor.yy328]); + sqlite3ExprDelete(pParse->db, yymsp[-4].minor.yy346.pExpr); + }else if( yymsp[-1].minor.yy14->nExpr==1 ){ + /* Expressions of the form: + ** + ** expr1 IN (?1) + ** expr1 NOT IN (?2) + ** + ** with exactly one value on the RHS can be simplified to something + ** like this: + ** + ** expr1 == ?1 + ** expr1 <> ?2 + ** + ** But, the RHS of the == or <> is marked with the EP_Generic flag + ** so that it may not contribute to the computation of comparison + ** affinity or the collating sequence to use for comparison. Otherwise, + ** the semantics would be subtly different from IN or NOT IN. + */ + Expr *pRHS = yymsp[-1].minor.yy14->a[0].pExpr; + yymsp[-1].minor.yy14->a[0].pExpr = 0; + sqlite3ExprListDelete(pParse->db, yymsp[-1].minor.yy14); + /* pRHS cannot be NULL because a malloc error would have been detected + ** before now and control would have never reached this point */ + if( ALWAYS(pRHS) ){ + pRHS->flags &= ~EP_Collate; + pRHS->flags |= EP_Generic; + } + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, yymsp[-3].minor.yy328 ? TK_NE : TK_EQ, yymsp[-4].minor.yy346.pExpr, pRHS, 0); + }else{ + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_IN, yymsp[-4].minor.yy346.pExpr, 0, 0); + if( yygotominor.yy346.pExpr ){ + yygotominor.yy346.pExpr->x.pList = yymsp[-1].minor.yy14; + sqlite3ExprSetHeight(pParse, yygotominor.yy346.pExpr); + }else{ + sqlite3ExprListDelete(pParse->db, yymsp[-1].minor.yy14); + } + if( yymsp[-3].minor.yy328 ) yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_NOT, yygotominor.yy346.pExpr, 0, 0); + } + yygotominor.yy346.zStart = yymsp[-4].minor.yy346.zStart; + yygotominor.yy346.zEnd = &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n]; + } + break; + case 224: /* expr ::= LP select RP */ +{ + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_SELECT, 0, 0, 0); + if( yygotominor.yy346.pExpr ){ + yygotominor.yy346.pExpr->x.pSelect = yymsp[-1].minor.yy3; + ExprSetProperty(yygotominor.yy346.pExpr, EP_xIsSelect); + sqlite3ExprSetHeight(pParse, yygotominor.yy346.pExpr); + }else{ + sqlite3SelectDelete(pParse->db, yymsp[-1].minor.yy3); + } + yygotominor.yy346.zStart = yymsp[-2].minor.yy0.z; + yygotominor.yy346.zEnd = &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n]; + } + break; + case 225: /* expr ::= expr in_op LP select RP */ +{ + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_IN, yymsp[-4].minor.yy346.pExpr, 0, 0); + if( yygotominor.yy346.pExpr ){ + yygotominor.yy346.pExpr->x.pSelect = yymsp[-1].minor.yy3; + ExprSetProperty(yygotominor.yy346.pExpr, EP_xIsSelect); + sqlite3ExprSetHeight(pParse, yygotominor.yy346.pExpr); + }else{ + sqlite3SelectDelete(pParse->db, yymsp[-1].minor.yy3); + } + if( yymsp[-3].minor.yy328 ) yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_NOT, yygotominor.yy346.pExpr, 0, 0); + yygotominor.yy346.zStart = yymsp[-4].minor.yy346.zStart; + yygotominor.yy346.zEnd = &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n]; + } + break; + case 226: /* expr ::= expr in_op nm dbnm */ +{ + SrcList *pSrc = sqlite3SrcListAppend(pParse->db, 0,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0); + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_IN, yymsp[-3].minor.yy346.pExpr, 0, 0); + if( yygotominor.yy346.pExpr ){ + yygotominor.yy346.pExpr->x.pSelect = sqlite3SelectNew(pParse, 0,pSrc,0,0,0,0,0,0,0); + ExprSetProperty(yygotominor.yy346.pExpr, EP_xIsSelect); + sqlite3ExprSetHeight(pParse, yygotominor.yy346.pExpr); + }else{ + sqlite3SrcListDelete(pParse->db, pSrc); + } + if( yymsp[-2].minor.yy328 ) yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_NOT, yygotominor.yy346.pExpr, 0, 0); + yygotominor.yy346.zStart = yymsp[-3].minor.yy346.zStart; + yygotominor.yy346.zEnd = yymsp[0].minor.yy0.z ? &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n] : &yymsp[-1].minor.yy0.z[yymsp[-1].minor.yy0.n]; + } + break; + case 227: /* expr ::= EXISTS LP select RP */ +{ + Expr *p = yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_EXISTS, 0, 0, 0); + if( p ){ + p->x.pSelect = yymsp[-1].minor.yy3; + ExprSetProperty(p, EP_xIsSelect); + sqlite3ExprSetHeight(pParse, p); + }else{ + sqlite3SelectDelete(pParse->db, yymsp[-1].minor.yy3); + } + yygotominor.yy346.zStart = yymsp[-3].minor.yy0.z; + yygotominor.yy346.zEnd = &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n]; + } + break; + case 228: /* expr ::= CASE case_operand case_exprlist case_else END */ +{ + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_CASE, yymsp[-3].minor.yy132, 0, 0); + if( yygotominor.yy346.pExpr ){ + yygotominor.yy346.pExpr->x.pList = yymsp[-1].minor.yy132 ? sqlite3ExprListAppend(pParse,yymsp[-2].minor.yy14,yymsp[-1].minor.yy132) : yymsp[-2].minor.yy14; + sqlite3ExprSetHeight(pParse, yygotominor.yy346.pExpr); + }else{ + sqlite3ExprListDelete(pParse->db, yymsp[-2].minor.yy14); + sqlite3ExprDelete(pParse->db, yymsp[-1].minor.yy132); + } + yygotominor.yy346.zStart = yymsp[-4].minor.yy0.z; + yygotominor.yy346.zEnd = &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n]; +} + break; + case 229: /* case_exprlist ::= case_exprlist WHEN expr THEN expr */ +{ + yygotominor.yy14 = sqlite3ExprListAppend(pParse,yymsp[-4].minor.yy14, yymsp[-2].minor.yy346.pExpr); + yygotominor.yy14 = sqlite3ExprListAppend(pParse,yygotominor.yy14, yymsp[0].minor.yy346.pExpr); +} + break; + case 230: /* case_exprlist ::= WHEN expr THEN expr */ +{ + yygotominor.yy14 = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy346.pExpr); + yygotominor.yy14 = sqlite3ExprListAppend(pParse,yygotominor.yy14, yymsp[0].minor.yy346.pExpr); +} + break; + case 237: /* nexprlist ::= nexprlist COMMA expr */ +{yygotominor.yy14 = sqlite3ExprListAppend(pParse,yymsp[-2].minor.yy14,yymsp[0].minor.yy346.pExpr);} + break; + case 238: /* nexprlist ::= expr */ +{yygotominor.yy14 = sqlite3ExprListAppend(pParse,0,yymsp[0].minor.yy346.pExpr);} + break; + case 239: /* cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP idxlist RP where_opt */ +{ + sqlite3CreateIndex(pParse, &yymsp[-7].minor.yy0, &yymsp[-6].minor.yy0, + sqlite3SrcListAppend(pParse->db,0,&yymsp[-4].minor.yy0,0), yymsp[-2].minor.yy14, yymsp[-10].minor.yy328, + &yymsp[-11].minor.yy0, yymsp[0].minor.yy132, SQLITE_SO_ASC, yymsp[-8].minor.yy328); +} + break; + case 240: /* uniqueflag ::= UNIQUE */ + case 291: /* raisetype ::= ABORT */ yytestcase(yyruleno==291); +{yygotominor.yy328 = OE_Abort;} + break; + case 241: /* uniqueflag ::= */ +{yygotominor.yy328 = OE_None;} + break; + case 244: /* idxlist ::= idxlist COMMA nm collate sortorder */ +{ + Expr *p = sqlite3ExprAddCollateToken(pParse, 0, &yymsp[-1].minor.yy0); + yygotominor.yy14 = sqlite3ExprListAppend(pParse,yymsp[-4].minor.yy14, p); + sqlite3ExprListSetName(pParse,yygotominor.yy14,&yymsp[-2].minor.yy0,1); + sqlite3ExprListCheckLength(pParse, yygotominor.yy14, "index"); + if( yygotominor.yy14 ) yygotominor.yy14->a[yygotominor.yy14->nExpr-1].sortOrder = (u8)yymsp[0].minor.yy328; +} + break; + case 245: /* idxlist ::= nm collate sortorder */ +{ + Expr *p = sqlite3ExprAddCollateToken(pParse, 0, &yymsp[-1].minor.yy0); + yygotominor.yy14 = sqlite3ExprListAppend(pParse,0, p); + sqlite3ExprListSetName(pParse, yygotominor.yy14, &yymsp[-2].minor.yy0, 1); + sqlite3ExprListCheckLength(pParse, yygotominor.yy14, "index"); + if( yygotominor.yy14 ) yygotominor.yy14->a[yygotominor.yy14->nExpr-1].sortOrder = (u8)yymsp[0].minor.yy328; +} + break; + case 246: /* collate ::= */ +{yygotominor.yy0.z = 0; yygotominor.yy0.n = 0;} + break; + case 248: /* cmd ::= DROP INDEX ifexists fullname */ +{sqlite3DropIndex(pParse, yymsp[0].minor.yy65, yymsp[-1].minor.yy328);} + break; + case 249: /* cmd ::= VACUUM */ + case 250: /* cmd ::= VACUUM nm */ yytestcase(yyruleno==250); +{sqlite3Vacuum(pParse);} + break; + case 251: /* cmd ::= PRAGMA nm dbnm */ +{sqlite3Pragma(pParse,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0,0,0);} + break; + case 252: /* cmd ::= PRAGMA nm dbnm EQ nmnum */ +{sqlite3Pragma(pParse,&yymsp[-3].minor.yy0,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0,0);} + break; + case 253: /* cmd ::= PRAGMA nm dbnm LP nmnum RP */ +{sqlite3Pragma(pParse,&yymsp[-4].minor.yy0,&yymsp[-3].minor.yy0,&yymsp[-1].minor.yy0,0);} + break; + case 254: /* cmd ::= PRAGMA nm dbnm EQ minus_num */ +{sqlite3Pragma(pParse,&yymsp[-3].minor.yy0,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0,1);} + break; + case 255: /* cmd ::= PRAGMA nm dbnm LP minus_num RP */ +{sqlite3Pragma(pParse,&yymsp[-4].minor.yy0,&yymsp[-3].minor.yy0,&yymsp[-1].minor.yy0,1);} + break; + case 264: /* cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END */ +{ + Token all; + all.z = yymsp[-3].minor.yy0.z; + all.n = (int)(yymsp[0].minor.yy0.z - yymsp[-3].minor.yy0.z) + yymsp[0].minor.yy0.n; + sqlite3FinishTrigger(pParse, yymsp[-1].minor.yy473, &all); +} + break; + case 265: /* trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause */ +{ + sqlite3BeginTrigger(pParse, &yymsp[-7].minor.yy0, &yymsp[-6].minor.yy0, yymsp[-5].minor.yy328, yymsp[-4].minor.yy378.a, yymsp[-4].minor.yy378.b, yymsp[-2].minor.yy65, yymsp[0].minor.yy132, yymsp[-10].minor.yy328, yymsp[-8].minor.yy328); + yygotominor.yy0 = (yymsp[-6].minor.yy0.n==0?yymsp[-7].minor.yy0:yymsp[-6].minor.yy0); +} + break; + case 266: /* trigger_time ::= BEFORE */ + case 269: /* trigger_time ::= */ yytestcase(yyruleno==269); +{ yygotominor.yy328 = TK_BEFORE; } + break; + case 267: /* trigger_time ::= AFTER */ +{ yygotominor.yy328 = TK_AFTER; } + break; + case 268: /* trigger_time ::= INSTEAD OF */ +{ yygotominor.yy328 = TK_INSTEAD;} + break; + case 270: /* trigger_event ::= DELETE|INSERT */ + case 271: /* trigger_event ::= UPDATE */ yytestcase(yyruleno==271); +{yygotominor.yy378.a = yymsp[0].major; yygotominor.yy378.b = 0;} + break; + case 272: /* trigger_event ::= UPDATE OF idlist */ +{yygotominor.yy378.a = TK_UPDATE; yygotominor.yy378.b = yymsp[0].minor.yy408;} + break; + case 275: /* when_clause ::= */ + case 296: /* key_opt ::= */ yytestcase(yyruleno==296); +{ yygotominor.yy132 = 0; } + break; + case 276: /* when_clause ::= WHEN expr */ + case 297: /* key_opt ::= KEY expr */ yytestcase(yyruleno==297); +{ yygotominor.yy132 = yymsp[0].minor.yy346.pExpr; } + break; + case 277: /* trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI */ +{ + assert( yymsp[-2].minor.yy473!=0 ); + yymsp[-2].minor.yy473->pLast->pNext = yymsp[-1].minor.yy473; + yymsp[-2].minor.yy473->pLast = yymsp[-1].minor.yy473; + yygotominor.yy473 = yymsp[-2].minor.yy473; +} + break; + case 278: /* trigger_cmd_list ::= trigger_cmd SEMI */ +{ + assert( yymsp[-1].minor.yy473!=0 ); + yymsp[-1].minor.yy473->pLast = yymsp[-1].minor.yy473; + yygotominor.yy473 = yymsp[-1].minor.yy473; +} + break; + case 280: /* trnm ::= nm DOT nm */ +{ + yygotominor.yy0 = yymsp[0].minor.yy0; + sqlite3ErrorMsg(pParse, + "qualified table names are not allowed on INSERT, UPDATE, and DELETE " + "statements within triggers"); +} + break; + case 282: /* tridxby ::= INDEXED BY nm */ +{ + sqlite3ErrorMsg(pParse, + "the INDEXED BY clause is not allowed on UPDATE or DELETE statements " + "within triggers"); +} + break; + case 283: /* tridxby ::= NOT INDEXED */ +{ + sqlite3ErrorMsg(pParse, + "the NOT INDEXED clause is not allowed on UPDATE or DELETE statements " + "within triggers"); +} + break; + case 284: /* trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist where_opt */ +{ yygotominor.yy473 = sqlite3TriggerUpdateStep(pParse->db, &yymsp[-4].minor.yy0, yymsp[-1].minor.yy14, yymsp[0].minor.yy132, yymsp[-5].minor.yy186); } + break; + case 285: /* trigger_cmd ::= insert_cmd INTO trnm inscollist_opt select */ +{yygotominor.yy473 = sqlite3TriggerInsertStep(pParse->db, &yymsp[-2].minor.yy0, yymsp[-1].minor.yy408, yymsp[0].minor.yy3, yymsp[-4].minor.yy186);} + break; + case 286: /* trigger_cmd ::= DELETE FROM trnm tridxby where_opt */ +{yygotominor.yy473 = sqlite3TriggerDeleteStep(pParse->db, &yymsp[-2].minor.yy0, yymsp[0].minor.yy132);} + break; + case 287: /* trigger_cmd ::= select */ +{yygotominor.yy473 = sqlite3TriggerSelectStep(pParse->db, yymsp[0].minor.yy3); } + break; + case 288: /* expr ::= RAISE LP IGNORE RP */ +{ + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_RAISE, 0, 0, 0); + if( yygotominor.yy346.pExpr ){ + yygotominor.yy346.pExpr->affinity = OE_Ignore; + } + yygotominor.yy346.zStart = yymsp[-3].minor.yy0.z; + yygotominor.yy346.zEnd = &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n]; +} + break; + case 289: /* expr ::= RAISE LP raisetype COMMA nm RP */ +{ + yygotominor.yy346.pExpr = sqlite3PExpr(pParse, TK_RAISE, 0, 0, &yymsp[-1].minor.yy0); + if( yygotominor.yy346.pExpr ) { + yygotominor.yy346.pExpr->affinity = (char)yymsp[-3].minor.yy328; + } + yygotominor.yy346.zStart = yymsp[-5].minor.yy0.z; + yygotominor.yy346.zEnd = &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n]; +} + break; + case 290: /* raisetype ::= ROLLBACK */ +{yygotominor.yy328 = OE_Rollback;} + break; + case 292: /* raisetype ::= FAIL */ +{yygotominor.yy328 = OE_Fail;} + break; + case 293: /* cmd ::= DROP TRIGGER ifexists fullname */ +{ + sqlite3DropTrigger(pParse,yymsp[0].minor.yy65,yymsp[-1].minor.yy328); +} + break; + case 294: /* cmd ::= ATTACH database_kw_opt expr AS expr key_opt */ +{ + sqlite3Attach(pParse, yymsp[-3].minor.yy346.pExpr, yymsp[-1].minor.yy346.pExpr, yymsp[0].minor.yy132); +} + break; + case 295: /* cmd ::= DETACH database_kw_opt expr */ +{ + sqlite3Detach(pParse, yymsp[0].minor.yy346.pExpr); +} + break; + case 300: /* cmd ::= REINDEX */ +{sqlite3Reindex(pParse, 0, 0);} + break; + case 301: /* cmd ::= REINDEX nm dbnm */ +{sqlite3Reindex(pParse, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0);} + break; + case 302: /* cmd ::= ANALYZE */ +{sqlite3Analyze(pParse, 0, 0);} + break; + case 303: /* cmd ::= ANALYZE nm dbnm */ +{sqlite3Analyze(pParse, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0);} + break; + case 304: /* cmd ::= ALTER TABLE fullname RENAME TO nm */ +{ + sqlite3AlterRenameTable(pParse,yymsp[-3].minor.yy65,&yymsp[0].minor.yy0); +} + break; + case 305: /* cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt column */ +{ + sqlite3AlterFinishAddColumn(pParse, &yymsp[0].minor.yy0); +} + break; + case 306: /* add_column_fullname ::= fullname */ +{ + pParse->db->lookaside.bEnabled = 0; + sqlite3AlterBeginAddColumn(pParse, yymsp[0].minor.yy65); +} + break; + case 309: /* cmd ::= create_vtab */ +{sqlite3VtabFinishParse(pParse,0);} + break; + case 310: /* cmd ::= create_vtab LP vtabarglist RP */ +{sqlite3VtabFinishParse(pParse,&yymsp[0].minor.yy0);} + break; + case 311: /* create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm */ +{ + sqlite3VtabBeginParse(pParse, &yymsp[-3].minor.yy0, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, yymsp[-4].minor.yy328); +} + break; + case 314: /* vtabarg ::= */ +{sqlite3VtabArgInit(pParse);} + break; + case 316: /* vtabargtoken ::= ANY */ + case 317: /* vtabargtoken ::= lp anylist RP */ yytestcase(yyruleno==317); + case 318: /* lp ::= LP */ yytestcase(yyruleno==318); +{sqlite3VtabArgExtend(pParse,&yymsp[0].minor.yy0);} + break; + case 322: /* with ::= */ +{yygotominor.yy59 = 0;} + break; + case 323: /* with ::= WITH wqlist */ + case 324: /* with ::= WITH RECURSIVE wqlist */ yytestcase(yyruleno==324); +{ yygotominor.yy59 = yymsp[0].minor.yy59; } + break; + case 325: /* wqlist ::= nm idxlist_opt AS LP select RP */ +{ + yygotominor.yy59 = sqlite3WithAdd(pParse, 0, &yymsp[-5].minor.yy0, yymsp[-4].minor.yy14, yymsp[-1].minor.yy3); +} + break; + case 326: /* wqlist ::= wqlist COMMA nm idxlist_opt AS LP select RP */ +{ + yygotominor.yy59 = sqlite3WithAdd(pParse, yymsp[-7].minor.yy59, &yymsp[-5].minor.yy0, yymsp[-4].minor.yy14, yymsp[-1].minor.yy3); +} + break; + default: + /* (0) input ::= cmdlist */ yytestcase(yyruleno==0); + /* (1) cmdlist ::= cmdlist ecmd */ yytestcase(yyruleno==1); + /* (2) cmdlist ::= ecmd */ yytestcase(yyruleno==2); + /* (3) ecmd ::= SEMI */ yytestcase(yyruleno==3); + /* (4) ecmd ::= explain cmdx SEMI */ yytestcase(yyruleno==4); + /* (10) trans_opt ::= */ yytestcase(yyruleno==10); + /* (11) trans_opt ::= TRANSACTION */ yytestcase(yyruleno==11); + /* (12) trans_opt ::= TRANSACTION nm */ yytestcase(yyruleno==12); + /* (20) savepoint_opt ::= SAVEPOINT */ yytestcase(yyruleno==20); + /* (21) savepoint_opt ::= */ yytestcase(yyruleno==21); + /* (25) cmd ::= create_table create_table_args */ yytestcase(yyruleno==25); + /* (36) columnlist ::= columnlist COMMA column */ yytestcase(yyruleno==36); + /* (37) columnlist ::= column */ yytestcase(yyruleno==37); + /* (43) type ::= */ yytestcase(yyruleno==43); + /* (50) signed ::= plus_num */ yytestcase(yyruleno==50); + /* (51) signed ::= minus_num */ yytestcase(yyruleno==51); + /* (52) carglist ::= carglist ccons */ yytestcase(yyruleno==52); + /* (53) carglist ::= */ yytestcase(yyruleno==53); + /* (60) ccons ::= NULL onconf */ yytestcase(yyruleno==60); + /* (88) conslist ::= conslist tconscomma tcons */ yytestcase(yyruleno==88); + /* (89) conslist ::= tcons */ yytestcase(yyruleno==89); + /* (91) tconscomma ::= */ yytestcase(yyruleno==91); + /* (273) foreach_clause ::= */ yytestcase(yyruleno==273); + /* (274) foreach_clause ::= FOR EACH ROW */ yytestcase(yyruleno==274); + /* (281) tridxby ::= */ yytestcase(yyruleno==281); + /* (298) database_kw_opt ::= DATABASE */ yytestcase(yyruleno==298); + /* (299) database_kw_opt ::= */ yytestcase(yyruleno==299); + /* (307) kwcolumn_opt ::= */ yytestcase(yyruleno==307); + /* (308) kwcolumn_opt ::= COLUMNKW */ yytestcase(yyruleno==308); + /* (312) vtabarglist ::= vtabarg */ yytestcase(yyruleno==312); + /* (313) vtabarglist ::= vtabarglist COMMA vtabarg */ yytestcase(yyruleno==313); + /* (315) vtabarg ::= vtabarg vtabargtoken */ yytestcase(yyruleno==315); + /* (319) anylist ::= */ yytestcase(yyruleno==319); + /* (320) anylist ::= anylist LP anylist RP */ yytestcase(yyruleno==320); + /* (321) anylist ::= anylist ANY */ yytestcase(yyruleno==321); + break; + }; + assert( yyruleno>=0 && yyrulenoyyidx -= yysize; + yyact = yy_find_reduce_action(yymsp[-yysize].stateno,(YYCODETYPE)yygoto); + if( yyact < YYNSTATE ){ +#ifdef NDEBUG + /* If we are not debugging and the reduce action popped at least + ** one element off the stack, then we can push the new element back + ** onto the stack here, and skip the stack overflow test in yy_shift(). + ** That gives a significant speed improvement. */ + if( yysize ){ + yypParser->yyidx++; + yymsp -= yysize-1; + yymsp->stateno = (YYACTIONTYPE)yyact; + yymsp->major = (YYCODETYPE)yygoto; + yymsp->minor = yygotominor; + }else +#endif + { + yy_shift(yypParser,yyact,yygoto,&yygotominor); + } + }else{ + assert( yyact == YYNSTATE + YYNRULE + 1 ); + yy_accept(yypParser); + } +} + +/* +** The following code executes when the parse fails +*/ +#ifndef YYNOERRORRECOVERY +static void yy_parse_failed( + yyParser *yypParser /* The parser */ +){ + sqlite3ParserARG_FETCH; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); + } +#endif + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + /* Here code is inserted which will be executed whenever the + ** parser fails */ + sqlite3ParserARG_STORE; /* Suppress warning about unused %extra_argument variable */ +} +#endif /* YYNOERRORRECOVERY */ + +/* +** The following code executes when a syntax error first occurs. +*/ +static void yy_syntax_error( + yyParser *yypParser, /* The parser */ + int yymajor, /* The major type of the error token */ + YYMINORTYPE yyminor /* The minor type of the error token */ +){ + sqlite3ParserARG_FETCH; +#define TOKEN (yyminor.yy0) + + UNUSED_PARAMETER(yymajor); /* Silence some compiler warnings */ + assert( TOKEN.z[0] ); /* The tokenizer always gives us a token */ + sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &TOKEN); + sqlite3ParserARG_STORE; /* Suppress warning about unused %extra_argument variable */ +} + +/* +** The following is executed when the parser accepts +*/ +static void yy_accept( + yyParser *yypParser /* The parser */ +){ + sqlite3ParserARG_FETCH; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); + } +#endif + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + /* Here code is inserted which will be executed whenever the + ** parser accepts */ + sqlite3ParserARG_STORE; /* Suppress warning about unused %extra_argument variable */ +} + +/* The main parser program. +** The first argument is a pointer to a structure obtained from +** "sqlite3ParserAlloc" which describes the current state of the parser. +** The second argument is the major token number. The third is +** the minor token. The fourth optional argument is whatever the +** user wants (and specified in the grammar) and is available for +** use by the action routines. +** +** Inputs: +**
            +**
          • A pointer to the parser (an opaque structure.) +**
          • The major token number. +**
          • The minor token number. +**
          • An option argument of a grammar-specified type. +**
          +** +** Outputs: +** None. +*/ +SQLITE_PRIVATE void sqlite3Parser( + void *yyp, /* The parser */ + int yymajor, /* The major token code number */ + sqlite3ParserTOKENTYPE yyminor /* The value for the token */ + sqlite3ParserARG_PDECL /* Optional %extra_argument parameter */ +){ + YYMINORTYPE yyminorunion; + int yyact; /* The parser action. */ +#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) + int yyendofinput; /* True if we are at the end of input */ +#endif +#ifdef YYERRORSYMBOL + int yyerrorhit = 0; /* True if yymajor has invoked an error */ +#endif + yyParser *yypParser; /* The parser */ + + /* (re)initialize the parser, if necessary */ + yypParser = (yyParser*)yyp; + if( yypParser->yyidx<0 ){ +#if YYSTACKDEPTH<=0 + if( yypParser->yystksz <=0 ){ + /*memset(&yyminorunion, 0, sizeof(yyminorunion));*/ + yyminorunion = yyzerominor; + yyStackOverflow(yypParser, &yyminorunion); + return; + } +#endif + yypParser->yyidx = 0; + yypParser->yyerrcnt = -1; + yypParser->yystack[0].stateno = 0; + yypParser->yystack[0].major = 0; + } + yyminorunion.yy0 = yyminor; +#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) + yyendofinput = (yymajor==0); +#endif + sqlite3ParserARG_STORE; + +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sInput %s\n",yyTracePrompt,yyTokenName[yymajor]); + } +#endif + + do{ + yyact = yy_find_shift_action(yypParser,(YYCODETYPE)yymajor); + if( yyactyyerrcnt--; + yymajor = YYNOCODE; + }else if( yyact < YYNSTATE + YYNRULE ){ + yy_reduce(yypParser,yyact-YYNSTATE); + }else{ + assert( yyact == YY_ERROR_ACTION ); +#ifdef YYERRORSYMBOL + int yymx; +#endif +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sSyntax Error!\n",yyTracePrompt); + } +#endif +#ifdef YYERRORSYMBOL + /* A syntax error has occurred. + ** The response to an error depends upon whether or not the + ** grammar defines an error token "ERROR". + ** + ** This is what we do if the grammar does define ERROR: + ** + ** * Call the %syntax_error function. + ** + ** * Begin popping the stack until we enter a state where + ** it is legal to shift the error symbol, then shift + ** the error symbol. + ** + ** * Set the error count to three. + ** + ** * Begin accepting and shifting new tokens. No new error + ** processing will occur until three tokens have been + ** shifted successfully. + ** + */ + if( yypParser->yyerrcnt<0 ){ + yy_syntax_error(yypParser,yymajor,yyminorunion); + } + yymx = yypParser->yystack[yypParser->yyidx].major; + if( yymx==YYERRORSYMBOL || yyerrorhit ){ +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sDiscard input token %s\n", + yyTracePrompt,yyTokenName[yymajor]); + } +#endif + yy_destructor(yypParser, (YYCODETYPE)yymajor,&yyminorunion); + yymajor = YYNOCODE; + }else{ + while( + yypParser->yyidx >= 0 && + yymx != YYERRORSYMBOL && + (yyact = yy_find_reduce_action( + yypParser->yystack[yypParser->yyidx].stateno, + YYERRORSYMBOL)) >= YYNSTATE + ){ + yy_pop_parser_stack(yypParser); + } + if( yypParser->yyidx < 0 || yymajor==0 ){ + yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); + yy_parse_failed(yypParser); + yymajor = YYNOCODE; + }else if( yymx!=YYERRORSYMBOL ){ + YYMINORTYPE u2; + u2.YYERRSYMDT = 0; + yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2); + } + } + yypParser->yyerrcnt = 3; + yyerrorhit = 1; +#elif defined(YYNOERRORRECOVERY) + /* If the YYNOERRORRECOVERY macro is defined, then do not attempt to + ** do any kind of error recovery. Instead, simply invoke the syntax + ** error routine and continue going as if nothing had happened. + ** + ** Applications can set this macro (for example inside %include) if + ** they intend to abandon the parse upon the first syntax error seen. + */ + yy_syntax_error(yypParser,yymajor,yyminorunion); + yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); + yymajor = YYNOCODE; + +#else /* YYERRORSYMBOL is not defined */ + /* This is what we do if the grammar does not define ERROR: + ** + ** * Report an error message, and throw away the input token. + ** + ** * If the input token is $, then fail the parse. + ** + ** As before, subsequent error messages are suppressed until + ** three input tokens have been successfully shifted. + */ + if( yypParser->yyerrcnt<=0 ){ + yy_syntax_error(yypParser,yymajor,yyminorunion); + } + yypParser->yyerrcnt = 3; + yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); + if( yyendofinput ){ + yy_parse_failed(yypParser); + } + yymajor = YYNOCODE; +#endif + } + }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 ); + return; +} + +/************** End of parse.c ***********************************************/ +/************** Begin file tokenize.c ****************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** An tokenizer for SQL +** +** This file contains C code that splits an SQL input string up into +** individual tokens and sends those tokens one-by-one over to the +** parser for analysis. +*/ +/* #include */ + +/* +** The charMap() macro maps alphabetic characters into their +** lower-case ASCII equivalent. On ASCII machines, this is just +** an upper-to-lower case map. On EBCDIC machines we also need +** to adjust the encoding. Only alphabetic characters and underscores +** need to be translated. +*/ +#ifdef SQLITE_ASCII +# define charMap(X) sqlite3UpperToLower[(unsigned char)X] +#endif +#ifdef SQLITE_EBCDIC +# define charMap(X) ebcdicToAscii[(unsigned char)X] +const unsigned char ebcdicToAscii[] = { +/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 1x */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 2x */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 3x */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 4x */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 5x */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, /* 6x */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 7x */ + 0, 97, 98, 99,100,101,102,103,104,105, 0, 0, 0, 0, 0, 0, /* 8x */ + 0,106,107,108,109,110,111,112,113,114, 0, 0, 0, 0, 0, 0, /* 9x */ + 0, 0,115,116,117,118,119,120,121,122, 0, 0, 0, 0, 0, 0, /* Ax */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Bx */ + 0, 97, 98, 99,100,101,102,103,104,105, 0, 0, 0, 0, 0, 0, /* Cx */ + 0,106,107,108,109,110,111,112,113,114, 0, 0, 0, 0, 0, 0, /* Dx */ + 0, 0,115,116,117,118,119,120,121,122, 0, 0, 0, 0, 0, 0, /* Ex */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Fx */ +}; +#endif + +/* +** The sqlite3KeywordCode function looks up an identifier to determine if +** it is a keyword. If it is a keyword, the token code of that keyword is +** returned. If the input is not a keyword, TK_ID is returned. +** +** The implementation of this routine was generated by a program, +** mkkeywordhash.h, located in the tool subdirectory of the distribution. +** The output of the mkkeywordhash.c program is written into a file +** named keywordhash.h and then included into this source file by +** the #include below. +*/ +/************** Include keywordhash.h in the middle of tokenize.c ************/ +/************** Begin file keywordhash.h *************************************/ +/***** This file contains automatically generated code ****** +** +** The code in this file has been automatically generated by +** +** sqlite/tool/mkkeywordhash.c +** +** The code in this file implements a function that determines whether +** or not a given identifier is really an SQL keyword. The same thing +** might be implemented more directly using a hand-written hash table. +** But by using this automatically generated code, the size of the code +** is substantially reduced. This is important for embedded applications +** on platforms with limited memory. +*/ +/* Hash score: 182 */ +static int keywordCode(const char *z, int n){ + /* zText[] encodes 834 bytes of keywords in 554 bytes */ + /* REINDEXEDESCAPEACHECKEYBEFOREIGNOREGEXPLAINSTEADDATABASELECT */ + /* ABLEFTHENDEFERRABLELSEXCEPTRANSACTIONATURALTERAISEXCLUSIVE */ + /* XISTSAVEPOINTERSECTRIGGEREFERENCESCONSTRAINTOFFSETEMPORARY */ + /* UNIQUERYWITHOUTERELEASEATTACHAVINGROUPDATEBEGINNERECURSIVE */ + /* BETWEENOTNULLIKECASCADELETECASECOLLATECREATECURRENT_DATEDETACH */ + /* IMMEDIATEJOINSERTMATCHPLANALYZEPRAGMABORTVALUESVIRTUALIMITWHEN */ + /* WHERENAMEAFTEREPLACEANDEFAULTAUTOINCREMENTCASTCOLUMNCOMMIT */ + /* CONFLICTCROSSCURRENT_TIMESTAMPRIMARYDEFERREDISTINCTDROPFAIL */ + /* FROMFULLGLOBYIFISNULLORDERESTRICTRIGHTROLLBACKROWUNIONUSING */ + /* VACUUMVIEWINITIALLY */ + static const char zText[553] = { + 'R','E','I','N','D','E','X','E','D','E','S','C','A','P','E','A','C','H', + 'E','C','K','E','Y','B','E','F','O','R','E','I','G','N','O','R','E','G', + 'E','X','P','L','A','I','N','S','T','E','A','D','D','A','T','A','B','A', + 'S','E','L','E','C','T','A','B','L','E','F','T','H','E','N','D','E','F', + 'E','R','R','A','B','L','E','L','S','E','X','C','E','P','T','R','A','N', + 'S','A','C','T','I','O','N','A','T','U','R','A','L','T','E','R','A','I', + 'S','E','X','C','L','U','S','I','V','E','X','I','S','T','S','A','V','E', + 'P','O','I','N','T','E','R','S','E','C','T','R','I','G','G','E','R','E', + 'F','E','R','E','N','C','E','S','C','O','N','S','T','R','A','I','N','T', + 'O','F','F','S','E','T','E','M','P','O','R','A','R','Y','U','N','I','Q', + 'U','E','R','Y','W','I','T','H','O','U','T','E','R','E','L','E','A','S', + 'E','A','T','T','A','C','H','A','V','I','N','G','R','O','U','P','D','A', + 'T','E','B','E','G','I','N','N','E','R','E','C','U','R','S','I','V','E', + 'B','E','T','W','E','E','N','O','T','N','U','L','L','I','K','E','C','A', + 'S','C','A','D','E','L','E','T','E','C','A','S','E','C','O','L','L','A', + 'T','E','C','R','E','A','T','E','C','U','R','R','E','N','T','_','D','A', + 'T','E','D','E','T','A','C','H','I','M','M','E','D','I','A','T','E','J', + 'O','I','N','S','E','R','T','M','A','T','C','H','P','L','A','N','A','L', + 'Y','Z','E','P','R','A','G','M','A','B','O','R','T','V','A','L','U','E', + 'S','V','I','R','T','U','A','L','I','M','I','T','W','H','E','N','W','H', + 'E','R','E','N','A','M','E','A','F','T','E','R','E','P','L','A','C','E', + 'A','N','D','E','F','A','U','L','T','A','U','T','O','I','N','C','R','E', + 'M','E','N','T','C','A','S','T','C','O','L','U','M','N','C','O','M','M', + 'I','T','C','O','N','F','L','I','C','T','C','R','O','S','S','C','U','R', + 'R','E','N','T','_','T','I','M','E','S','T','A','M','P','R','I','M','A', + 'R','Y','D','E','F','E','R','R','E','D','I','S','T','I','N','C','T','D', + 'R','O','P','F','A','I','L','F','R','O','M','F','U','L','L','G','L','O', + 'B','Y','I','F','I','S','N','U','L','L','O','R','D','E','R','E','S','T', + 'R','I','C','T','R','I','G','H','T','R','O','L','L','B','A','C','K','R', + 'O','W','U','N','I','O','N','U','S','I','N','G','V','A','C','U','U','M', + 'V','I','E','W','I','N','I','T','I','A','L','L','Y', + }; + static const unsigned char aHash[127] = { + 76, 105, 117, 74, 0, 45, 0, 0, 82, 0, 77, 0, 0, + 42, 12, 78, 15, 0, 116, 85, 54, 112, 0, 19, 0, 0, + 121, 0, 119, 115, 0, 22, 93, 0, 9, 0, 0, 70, 71, + 0, 69, 6, 0, 48, 90, 102, 0, 118, 101, 0, 0, 44, + 0, 103, 24, 0, 17, 0, 122, 53, 23, 0, 5, 110, 25, + 96, 0, 0, 124, 106, 60, 123, 57, 28, 55, 0, 91, 0, + 100, 26, 0, 99, 0, 0, 0, 95, 92, 97, 88, 109, 14, + 39, 108, 0, 81, 0, 18, 89, 111, 32, 0, 120, 80, 113, + 62, 46, 84, 0, 0, 94, 40, 59, 114, 0, 36, 0, 0, + 29, 0, 86, 63, 64, 0, 20, 61, 0, 56, + }; + static const unsigned char aNext[124] = { + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 33, 0, 21, 0, 0, 0, 0, 0, 50, + 0, 43, 3, 47, 0, 0, 0, 0, 30, 0, 58, 0, 38, + 0, 0, 0, 1, 66, 0, 0, 67, 0, 41, 0, 0, 0, + 0, 0, 0, 49, 65, 0, 0, 0, 0, 31, 52, 16, 34, + 10, 0, 0, 0, 0, 0, 0, 0, 11, 72, 79, 0, 8, + 0, 104, 98, 0, 107, 0, 87, 0, 75, 51, 0, 27, 37, + 73, 83, 0, 35, 68, 0, 0, + }; + static const unsigned char aLen[124] = { + 7, 7, 5, 4, 6, 4, 5, 3, 6, 7, 3, 6, 6, + 7, 7, 3, 8, 2, 6, 5, 4, 4, 3, 10, 4, 6, + 11, 6, 2, 7, 5, 5, 9, 6, 9, 9, 7, 10, 10, + 4, 6, 2, 3, 9, 4, 2, 6, 5, 7, 4, 5, 7, + 6, 6, 5, 6, 5, 5, 9, 7, 7, 3, 2, 4, 4, + 7, 3, 6, 4, 7, 6, 12, 6, 9, 4, 6, 5, 4, + 7, 6, 5, 6, 7, 5, 4, 5, 6, 5, 7, 3, 7, + 13, 2, 2, 4, 6, 6, 8, 5, 17, 12, 7, 8, 8, + 2, 4, 4, 4, 4, 4, 2, 2, 6, 5, 8, 5, 8, + 3, 5, 5, 6, 4, 9, 3, + }; + static const unsigned short int aOffset[124] = { + 0, 2, 2, 8, 9, 14, 16, 20, 23, 25, 25, 29, 33, + 36, 41, 46, 48, 53, 54, 59, 62, 65, 67, 69, 78, 81, + 86, 91, 95, 96, 101, 105, 109, 117, 122, 128, 136, 142, 152, + 159, 162, 162, 165, 167, 167, 171, 176, 179, 184, 184, 188, 192, + 199, 204, 209, 212, 218, 221, 225, 234, 240, 240, 240, 243, 246, + 250, 251, 255, 261, 265, 272, 278, 290, 296, 305, 307, 313, 318, + 320, 327, 332, 337, 343, 349, 354, 358, 361, 367, 371, 378, 380, + 387, 389, 391, 400, 404, 410, 416, 424, 429, 429, 445, 452, 459, + 460, 467, 471, 475, 479, 483, 486, 488, 490, 496, 500, 508, 513, + 521, 524, 529, 534, 540, 544, 549, + }; + static const unsigned char aCode[124] = { + TK_REINDEX, TK_INDEXED, TK_INDEX, TK_DESC, TK_ESCAPE, + TK_EACH, TK_CHECK, TK_KEY, TK_BEFORE, TK_FOREIGN, + TK_FOR, TK_IGNORE, TK_LIKE_KW, TK_EXPLAIN, TK_INSTEAD, + TK_ADD, TK_DATABASE, TK_AS, TK_SELECT, TK_TABLE, + TK_JOIN_KW, TK_THEN, TK_END, TK_DEFERRABLE, TK_ELSE, + TK_EXCEPT, TK_TRANSACTION,TK_ACTION, TK_ON, TK_JOIN_KW, + TK_ALTER, TK_RAISE, TK_EXCLUSIVE, TK_EXISTS, TK_SAVEPOINT, + TK_INTERSECT, TK_TRIGGER, TK_REFERENCES, TK_CONSTRAINT, TK_INTO, + TK_OFFSET, TK_OF, TK_SET, TK_TEMP, TK_TEMP, + TK_OR, TK_UNIQUE, TK_QUERY, TK_WITHOUT, TK_WITH, + TK_JOIN_KW, TK_RELEASE, TK_ATTACH, TK_HAVING, TK_GROUP, + TK_UPDATE, TK_BEGIN, TK_JOIN_KW, TK_RECURSIVE, TK_BETWEEN, + TK_NOTNULL, TK_NOT, TK_NO, TK_NULL, TK_LIKE_KW, + TK_CASCADE, TK_ASC, TK_DELETE, TK_CASE, TK_COLLATE, + TK_CREATE, TK_CTIME_KW, TK_DETACH, TK_IMMEDIATE, TK_JOIN, + TK_INSERT, TK_MATCH, TK_PLAN, TK_ANALYZE, TK_PRAGMA, + TK_ABORT, TK_VALUES, TK_VIRTUAL, TK_LIMIT, TK_WHEN, + TK_WHERE, TK_RENAME, TK_AFTER, TK_REPLACE, TK_AND, + TK_DEFAULT, TK_AUTOINCR, TK_TO, TK_IN, TK_CAST, + TK_COLUMNKW, TK_COMMIT, TK_CONFLICT, TK_JOIN_KW, TK_CTIME_KW, + TK_CTIME_KW, TK_PRIMARY, TK_DEFERRED, TK_DISTINCT, TK_IS, + TK_DROP, TK_FAIL, TK_FROM, TK_JOIN_KW, TK_LIKE_KW, + TK_BY, TK_IF, TK_ISNULL, TK_ORDER, TK_RESTRICT, + TK_JOIN_KW, TK_ROLLBACK, TK_ROW, TK_UNION, TK_USING, + TK_VACUUM, TK_VIEW, TK_INITIALLY, TK_ALL, + }; + int h, i; + if( n<2 ) return TK_ID; + h = ((charMap(z[0])*4) ^ + (charMap(z[n-1])*3) ^ + n) % 127; + for(i=((int)aHash[h])-1; i>=0; i=((int)aNext[i])-1){ + if( aLen[i]==n && sqlite3StrNICmp(&zText[aOffset[i]],z,n)==0 ){ + testcase( i==0 ); /* REINDEX */ + testcase( i==1 ); /* INDEXED */ + testcase( i==2 ); /* INDEX */ + testcase( i==3 ); /* DESC */ + testcase( i==4 ); /* ESCAPE */ + testcase( i==5 ); /* EACH */ + testcase( i==6 ); /* CHECK */ + testcase( i==7 ); /* KEY */ + testcase( i==8 ); /* BEFORE */ + testcase( i==9 ); /* FOREIGN */ + testcase( i==10 ); /* FOR */ + testcase( i==11 ); /* IGNORE */ + testcase( i==12 ); /* REGEXP */ + testcase( i==13 ); /* EXPLAIN */ + testcase( i==14 ); /* INSTEAD */ + testcase( i==15 ); /* ADD */ + testcase( i==16 ); /* DATABASE */ + testcase( i==17 ); /* AS */ + testcase( i==18 ); /* SELECT */ + testcase( i==19 ); /* TABLE */ + testcase( i==20 ); /* LEFT */ + testcase( i==21 ); /* THEN */ + testcase( i==22 ); /* END */ + testcase( i==23 ); /* DEFERRABLE */ + testcase( i==24 ); /* ELSE */ + testcase( i==25 ); /* EXCEPT */ + testcase( i==26 ); /* TRANSACTION */ + testcase( i==27 ); /* ACTION */ + testcase( i==28 ); /* ON */ + testcase( i==29 ); /* NATURAL */ + testcase( i==30 ); /* ALTER */ + testcase( i==31 ); /* RAISE */ + testcase( i==32 ); /* EXCLUSIVE */ + testcase( i==33 ); /* EXISTS */ + testcase( i==34 ); /* SAVEPOINT */ + testcase( i==35 ); /* INTERSECT */ + testcase( i==36 ); /* TRIGGER */ + testcase( i==37 ); /* REFERENCES */ + testcase( i==38 ); /* CONSTRAINT */ + testcase( i==39 ); /* INTO */ + testcase( i==40 ); /* OFFSET */ + testcase( i==41 ); /* OF */ + testcase( i==42 ); /* SET */ + testcase( i==43 ); /* TEMPORARY */ + testcase( i==44 ); /* TEMP */ + testcase( i==45 ); /* OR */ + testcase( i==46 ); /* UNIQUE */ + testcase( i==47 ); /* QUERY */ + testcase( i==48 ); /* WITHOUT */ + testcase( i==49 ); /* WITH */ + testcase( i==50 ); /* OUTER */ + testcase( i==51 ); /* RELEASE */ + testcase( i==52 ); /* ATTACH */ + testcase( i==53 ); /* HAVING */ + testcase( i==54 ); /* GROUP */ + testcase( i==55 ); /* UPDATE */ + testcase( i==56 ); /* BEGIN */ + testcase( i==57 ); /* INNER */ + testcase( i==58 ); /* RECURSIVE */ + testcase( i==59 ); /* BETWEEN */ + testcase( i==60 ); /* NOTNULL */ + testcase( i==61 ); /* NOT */ + testcase( i==62 ); /* NO */ + testcase( i==63 ); /* NULL */ + testcase( i==64 ); /* LIKE */ + testcase( i==65 ); /* CASCADE */ + testcase( i==66 ); /* ASC */ + testcase( i==67 ); /* DELETE */ + testcase( i==68 ); /* CASE */ + testcase( i==69 ); /* COLLATE */ + testcase( i==70 ); /* CREATE */ + testcase( i==71 ); /* CURRENT_DATE */ + testcase( i==72 ); /* DETACH */ + testcase( i==73 ); /* IMMEDIATE */ + testcase( i==74 ); /* JOIN */ + testcase( i==75 ); /* INSERT */ + testcase( i==76 ); /* MATCH */ + testcase( i==77 ); /* PLAN */ + testcase( i==78 ); /* ANALYZE */ + testcase( i==79 ); /* PRAGMA */ + testcase( i==80 ); /* ABORT */ + testcase( i==81 ); /* VALUES */ + testcase( i==82 ); /* VIRTUAL */ + testcase( i==83 ); /* LIMIT */ + testcase( i==84 ); /* WHEN */ + testcase( i==85 ); /* WHERE */ + testcase( i==86 ); /* RENAME */ + testcase( i==87 ); /* AFTER */ + testcase( i==88 ); /* REPLACE */ + testcase( i==89 ); /* AND */ + testcase( i==90 ); /* DEFAULT */ + testcase( i==91 ); /* AUTOINCREMENT */ + testcase( i==92 ); /* TO */ + testcase( i==93 ); /* IN */ + testcase( i==94 ); /* CAST */ + testcase( i==95 ); /* COLUMN */ + testcase( i==96 ); /* COMMIT */ + testcase( i==97 ); /* CONFLICT */ + testcase( i==98 ); /* CROSS */ + testcase( i==99 ); /* CURRENT_TIMESTAMP */ + testcase( i==100 ); /* CURRENT_TIME */ + testcase( i==101 ); /* PRIMARY */ + testcase( i==102 ); /* DEFERRED */ + testcase( i==103 ); /* DISTINCT */ + testcase( i==104 ); /* IS */ + testcase( i==105 ); /* DROP */ + testcase( i==106 ); /* FAIL */ + testcase( i==107 ); /* FROM */ + testcase( i==108 ); /* FULL */ + testcase( i==109 ); /* GLOB */ + testcase( i==110 ); /* BY */ + testcase( i==111 ); /* IF */ + testcase( i==112 ); /* ISNULL */ + testcase( i==113 ); /* ORDER */ + testcase( i==114 ); /* RESTRICT */ + testcase( i==115 ); /* RIGHT */ + testcase( i==116 ); /* ROLLBACK */ + testcase( i==117 ); /* ROW */ + testcase( i==118 ); /* UNION */ + testcase( i==119 ); /* USING */ + testcase( i==120 ); /* VACUUM */ + testcase( i==121 ); /* VIEW */ + testcase( i==122 ); /* INITIALLY */ + testcase( i==123 ); /* ALL */ + return aCode[i]; + } + } + return TK_ID; +} +SQLITE_PRIVATE int sqlite3KeywordCode(const unsigned char *z, int n){ + return keywordCode((char*)z, n); +} +#define SQLITE_N_KEYWORD 124 + +/************** End of keywordhash.h *****************************************/ +/************** Continuing where we left off in tokenize.c *******************/ + + +/* +** If X is a character that can be used in an identifier then +** IdChar(X) will be true. Otherwise it is false. +** +** For ASCII, any character with the high-order bit set is +** allowed in an identifier. For 7-bit characters, +** sqlite3IsIdChar[X] must be 1. +** +** For EBCDIC, the rules are more complex but have the same +** end result. +** +** Ticket #1066. the SQL standard does not allow '$' in the +** middle of identfiers. But many SQL implementations do. +** SQLite will allow '$' in identifiers for compatibility. +** But the feature is undocumented. +*/ +#ifdef SQLITE_ASCII +#define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0) +#endif +#ifdef SQLITE_EBCDIC +SQLITE_PRIVATE const char sqlite3IsEbcdicIdChar[] = { +/* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF */ + 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 4x */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, /* 5x */ + 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, /* 6x */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, /* 7x */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, /* 8x */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, /* 9x */ + 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, /* Ax */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Bx */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Cx */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Dx */ + 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Ex */ + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, /* Fx */ +}; +#define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40])) +#endif + + +/* +** Return the length of the token that begins at z[0]. +** Store the token type in *tokenType before returning. +*/ +SQLITE_PRIVATE int sqlite3GetToken(const unsigned char *z, int *tokenType){ + int i, c; + switch( *z ){ + case ' ': case '\t': case '\n': case '\f': case '\r': { + testcase( z[0]==' ' ); + testcase( z[0]=='\t' ); + testcase( z[0]=='\n' ); + testcase( z[0]=='\f' ); + testcase( z[0]=='\r' ); + for(i=1; sqlite3Isspace(z[i]); i++){} + *tokenType = TK_SPACE; + return i; + } + case '-': { + if( z[1]=='-' ){ + for(i=2; (c=z[i])!=0 && c!='\n'; i++){} + *tokenType = TK_SPACE; /* IMP: R-22934-25134 */ + return i; + } + *tokenType = TK_MINUS; + return 1; + } + case '(': { + *tokenType = TK_LP; + return 1; + } + case ')': { + *tokenType = TK_RP; + return 1; + } + case ';': { + *tokenType = TK_SEMI; + return 1; + } + case '+': { + *tokenType = TK_PLUS; + return 1; + } + case '*': { + *tokenType = TK_STAR; + return 1; + } + case '/': { + if( z[1]!='*' || z[2]==0 ){ + *tokenType = TK_SLASH; + return 1; + } + for(i=3, c=z[2]; (c!='*' || z[i]!='/') && (c=z[i])!=0; i++){} + if( c ) i++; + *tokenType = TK_SPACE; /* IMP: R-22934-25134 */ + return i; + } + case '%': { + *tokenType = TK_REM; + return 1; + } + case '=': { + *tokenType = TK_EQ; + return 1 + (z[1]=='='); + } + case '<': { + if( (c=z[1])=='=' ){ + *tokenType = TK_LE; + return 2; + }else if( c=='>' ){ + *tokenType = TK_NE; + return 2; + }else if( c=='<' ){ + *tokenType = TK_LSHIFT; + return 2; + }else{ + *tokenType = TK_LT; + return 1; + } + } + case '>': { + if( (c=z[1])=='=' ){ + *tokenType = TK_GE; + return 2; + }else if( c=='>' ){ + *tokenType = TK_RSHIFT; + return 2; + }else{ + *tokenType = TK_GT; + return 1; + } + } + case '!': { + if( z[1]!='=' ){ + *tokenType = TK_ILLEGAL; + return 2; + }else{ + *tokenType = TK_NE; + return 2; + } + } + case '|': { + if( z[1]!='|' ){ + *tokenType = TK_BITOR; + return 1; + }else{ + *tokenType = TK_CONCAT; + return 2; + } + } + case ',': { + *tokenType = TK_COMMA; + return 1; + } + case '&': { + *tokenType = TK_BITAND; + return 1; + } + case '~': { + *tokenType = TK_BITNOT; + return 1; + } + case '`': + case '\'': + case '"': { + int delim = z[0]; + testcase( delim=='`' ); + testcase( delim=='\'' ); + testcase( delim=='"' ); + for(i=1; (c=z[i])!=0; i++){ + if( c==delim ){ + if( z[i+1]==delim ){ + i++; + }else{ + break; + } + } + } + if( c=='\'' ){ + *tokenType = TK_STRING; + return i+1; + }else if( c!=0 ){ + *tokenType = TK_ID; + return i+1; + }else{ + *tokenType = TK_ILLEGAL; + return i; + } + } + case '.': { +#ifndef SQLITE_OMIT_FLOATING_POINT + if( !sqlite3Isdigit(z[1]) ) +#endif + { + *tokenType = TK_DOT; + return 1; + } + /* If the next character is a digit, this is a floating point + ** number that begins with ".". Fall thru into the next case */ + } + case '0': case '1': case '2': case '3': case '4': + case '5': case '6': case '7': case '8': case '9': { + testcase( z[0]=='0' ); testcase( z[0]=='1' ); testcase( z[0]=='2' ); + testcase( z[0]=='3' ); testcase( z[0]=='4' ); testcase( z[0]=='5' ); + testcase( z[0]=='6' ); testcase( z[0]=='7' ); testcase( z[0]=='8' ); + testcase( z[0]=='9' ); + *tokenType = TK_INTEGER; + for(i=0; sqlite3Isdigit(z[i]); i++){} +#ifndef SQLITE_OMIT_FLOATING_POINT + if( z[i]=='.' ){ + i++; + while( sqlite3Isdigit(z[i]) ){ i++; } + *tokenType = TK_FLOAT; + } + if( (z[i]=='e' || z[i]=='E') && + ( sqlite3Isdigit(z[i+1]) + || ((z[i+1]=='+' || z[i+1]=='-') && sqlite3Isdigit(z[i+2])) + ) + ){ + i += 2; + while( sqlite3Isdigit(z[i]) ){ i++; } + *tokenType = TK_FLOAT; + } +#endif + while( IdChar(z[i]) ){ + *tokenType = TK_ILLEGAL; + i++; + } + return i; + } + case '[': { + for(i=1, c=z[0]; c!=']' && (c=z[i])!=0; i++){} + *tokenType = c==']' ? TK_ID : TK_ILLEGAL; + return i; + } + case '?': { + *tokenType = TK_VARIABLE; + for(i=1; sqlite3Isdigit(z[i]); i++){} + return i; + } +#ifndef SQLITE_OMIT_TCL_VARIABLE + case '$': +#endif + case '@': /* For compatibility with MS SQL Server */ + case '#': + case ':': { + int n = 0; + testcase( z[0]=='$' ); testcase( z[0]=='@' ); + testcase( z[0]==':' ); testcase( z[0]=='#' ); + *tokenType = TK_VARIABLE; + for(i=1; (c=z[i])!=0; i++){ + if( IdChar(c) ){ + n++; +#ifndef SQLITE_OMIT_TCL_VARIABLE + }else if( c=='(' && n>0 ){ + do{ + i++; + }while( (c=z[i])!=0 && !sqlite3Isspace(c) && c!=')' ); + if( c==')' ){ + i++; + }else{ + *tokenType = TK_ILLEGAL; + } + break; + }else if( c==':' && z[i+1]==':' ){ + i++; +#endif + }else{ + break; + } + } + if( n==0 ) *tokenType = TK_ILLEGAL; + return i; + } +#ifndef SQLITE_OMIT_BLOB_LITERAL + case 'x': case 'X': { + testcase( z[0]=='x' ); testcase( z[0]=='X' ); + if( z[1]=='\'' ){ + *tokenType = TK_BLOB; + for(i=2; sqlite3Isxdigit(z[i]); i++){} + if( z[i]!='\'' || i%2 ){ + *tokenType = TK_ILLEGAL; + while( z[i] && z[i]!='\'' ){ i++; } + } + if( z[i] ) i++; + return i; + } + /* Otherwise fall through to the next case */ + } +#endif + default: { + if( !IdChar(*z) ){ + break; + } + for(i=1; IdChar(z[i]); i++){} + *tokenType = keywordCode((char*)z, i); + return i; + } + } + *tokenType = TK_ILLEGAL; + return 1; +} + +/* +** Run the parser on the given SQL string. The parser structure is +** passed in. An SQLITE_ status code is returned. If an error occurs +** then an and attempt is made to write an error message into +** memory obtained from sqlite3_malloc() and to make *pzErrMsg point to that +** error message. +*/ +SQLITE_PRIVATE int sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg){ + int nErr = 0; /* Number of errors encountered */ + int i; /* Loop counter */ + void *pEngine; /* The LEMON-generated LALR(1) parser */ + int tokenType; /* type of the next token */ + int lastTokenParsed = -1; /* type of the previous token */ + u8 enableLookaside; /* Saved value of db->lookaside.bEnabled */ + sqlite3 *db = pParse->db; /* The database connection */ + int mxSqlLen; /* Max length of an SQL string */ + + + mxSqlLen = db->aLimit[SQLITE_LIMIT_SQL_LENGTH]; + if( db->nVdbeActive==0 ){ + db->u1.isInterrupted = 0; + } + pParse->rc = SQLITE_OK; + pParse->zTail = zSql; + i = 0; + assert( pzErrMsg!=0 ); + pEngine = sqlite3ParserAlloc((void*(*)(size_t))sqlite3Malloc); + if( pEngine==0 ){ + db->mallocFailed = 1; + return SQLITE_NOMEM; + } + assert( pParse->pNewTable==0 ); + assert( pParse->pNewTrigger==0 ); + assert( pParse->nVar==0 ); + assert( pParse->nzVar==0 ); + assert( pParse->azVar==0 ); + enableLookaside = db->lookaside.bEnabled; + if( db->lookaside.pStart ) db->lookaside.bEnabled = 1; + while( !db->mallocFailed && zSql[i]!=0 ){ + assert( i>=0 ); + pParse->sLastToken.z = &zSql[i]; + pParse->sLastToken.n = sqlite3GetToken((unsigned char*)&zSql[i],&tokenType); + i += pParse->sLastToken.n; + if( i>mxSqlLen ){ + pParse->rc = SQLITE_TOOBIG; + break; + } + switch( tokenType ){ + case TK_SPACE: { + if( db->u1.isInterrupted ){ + sqlite3ErrorMsg(pParse, "interrupt"); + pParse->rc = SQLITE_INTERRUPT; + goto abort_parse; + } + break; + } + case TK_ILLEGAL: { + sqlite3DbFree(db, *pzErrMsg); + *pzErrMsg = sqlite3MPrintf(db, "unrecognized token: \"%T\"", + &pParse->sLastToken); + nErr++; + goto abort_parse; + } + case TK_SEMI: { + pParse->zTail = &zSql[i]; + /* Fall thru into the default case */ + } + default: { + sqlite3Parser(pEngine, tokenType, pParse->sLastToken, pParse); + lastTokenParsed = tokenType; + if( pParse->rc!=SQLITE_OK ){ + goto abort_parse; + } + break; + } + } + } +abort_parse: + if( zSql[i]==0 && nErr==0 && pParse->rc==SQLITE_OK ){ + if( lastTokenParsed!=TK_SEMI ){ + sqlite3Parser(pEngine, TK_SEMI, pParse->sLastToken, pParse); + pParse->zTail = &zSql[i]; + } + sqlite3Parser(pEngine, 0, pParse->sLastToken, pParse); + } +#ifdef YYTRACKMAXSTACKDEPTH + sqlite3StatusSet(SQLITE_STATUS_PARSER_STACK, + sqlite3ParserStackPeak(pEngine) + ); +#endif /* YYDEBUG */ + sqlite3ParserFree(pEngine, sqlite3_free); + db->lookaside.bEnabled = enableLookaside; + if( db->mallocFailed ){ + pParse->rc = SQLITE_NOMEM; + } + if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){ + sqlite3SetString(&pParse->zErrMsg, db, "%s", sqlite3ErrStr(pParse->rc)); + } + assert( pzErrMsg!=0 ); + if( pParse->zErrMsg ){ + *pzErrMsg = pParse->zErrMsg; + sqlite3_log(pParse->rc, "%s", *pzErrMsg); + pParse->zErrMsg = 0; + nErr++; + } + if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){ + sqlite3VdbeDelete(pParse->pVdbe); + pParse->pVdbe = 0; + } +#ifndef SQLITE_OMIT_SHARED_CACHE + if( pParse->nested==0 ){ + sqlite3DbFree(db, pParse->aTableLock); + pParse->aTableLock = 0; + pParse->nTableLock = 0; + } +#endif +#ifndef SQLITE_OMIT_VIRTUALTABLE + sqlite3_free(pParse->apVtabLock); +#endif + + if( !IN_DECLARE_VTAB ){ + /* If the pParse->declareVtab flag is set, do not delete any table + ** structure built up in pParse->pNewTable. The calling code (see vtab.c) + ** will take responsibility for freeing the Table structure. + */ + sqlite3DeleteTable(db, pParse->pNewTable); + } + + if( pParse->bFreeWith ) sqlite3WithDelete(db, pParse->pWith); + sqlite3DeleteTrigger(db, pParse->pNewTrigger); + for(i=pParse->nzVar-1; i>=0; i--) sqlite3DbFree(db, pParse->azVar[i]); + sqlite3DbFree(db, pParse->azVar); + while( pParse->pAinc ){ + AutoincInfo *p = pParse->pAinc; + pParse->pAinc = p->pNext; + sqlite3DbFree(db, p); + } + while( pParse->pZombieTab ){ + Table *p = pParse->pZombieTab; + pParse->pZombieTab = p->pNextZombie; + sqlite3DeleteTable(db, p); + } + if( nErr>0 && pParse->rc==SQLITE_OK ){ + pParse->rc = SQLITE_ERROR; + } + return nErr; +} + +/************** End of tokenize.c ********************************************/ +/************** Begin file complete.c ****************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** An tokenizer for SQL +** +** This file contains C code that implements the sqlite3_complete() API. +** This code used to be part of the tokenizer.c source file. But by +** separating it out, the code will be automatically omitted from +** static links that do not use it. +*/ +#ifndef SQLITE_OMIT_COMPLETE + +/* +** This is defined in tokenize.c. We just have to import the definition. +*/ +#ifndef SQLITE_AMALGAMATION +#ifdef SQLITE_ASCII +#define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0) +#endif +#ifdef SQLITE_EBCDIC +SQLITE_PRIVATE const char sqlite3IsEbcdicIdChar[]; +#define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40])) +#endif +#endif /* SQLITE_AMALGAMATION */ + + +/* +** Token types used by the sqlite3_complete() routine. See the header +** comments on that procedure for additional information. +*/ +#define tkSEMI 0 +#define tkWS 1 +#define tkOTHER 2 +#ifndef SQLITE_OMIT_TRIGGER +#define tkEXPLAIN 3 +#define tkCREATE 4 +#define tkTEMP 5 +#define tkTRIGGER 6 +#define tkEND 7 +#endif + +/* +** Return TRUE if the given SQL string ends in a semicolon. +** +** Special handling is require for CREATE TRIGGER statements. +** Whenever the CREATE TRIGGER keywords are seen, the statement +** must end with ";END;". +** +** This implementation uses a state machine with 8 states: +** +** (0) INVALID We have not yet seen a non-whitespace character. +** +** (1) START At the beginning or end of an SQL statement. This routine +** returns 1 if it ends in the START state and 0 if it ends +** in any other state. +** +** (2) NORMAL We are in the middle of statement which ends with a single +** semicolon. +** +** (3) EXPLAIN The keyword EXPLAIN has been seen at the beginning of +** a statement. +** +** (4) CREATE The keyword CREATE has been seen at the beginning of a +** statement, possibly preceeded by EXPLAIN and/or followed by +** TEMP or TEMPORARY +** +** (5) TRIGGER We are in the middle of a trigger definition that must be +** ended by a semicolon, the keyword END, and another semicolon. +** +** (6) SEMI We've seen the first semicolon in the ";END;" that occurs at +** the end of a trigger definition. +** +** (7) END We've seen the ";END" of the ";END;" that occurs at the end +** of a trigger difinition. +** +** Transitions between states above are determined by tokens extracted +** from the input. The following tokens are significant: +** +** (0) tkSEMI A semicolon. +** (1) tkWS Whitespace. +** (2) tkOTHER Any other SQL token. +** (3) tkEXPLAIN The "explain" keyword. +** (4) tkCREATE The "create" keyword. +** (5) tkTEMP The "temp" or "temporary" keyword. +** (6) tkTRIGGER The "trigger" keyword. +** (7) tkEND The "end" keyword. +** +** Whitespace never causes a state transition and is always ignored. +** This means that a SQL string of all whitespace is invalid. +** +** If we compile with SQLITE_OMIT_TRIGGER, all of the computation needed +** to recognize the end of a trigger can be omitted. All we have to do +** is look for a semicolon that is not part of an string or comment. +*/ +SQLITE_API int sqlite3_complete(const char *zSql){ + u8 state = 0; /* Current state, using numbers defined in header comment */ + u8 token; /* Value of the next token */ + +#ifndef SQLITE_OMIT_TRIGGER + /* A complex statement machine used to detect the end of a CREATE TRIGGER + ** statement. This is the normal case. + */ + static const u8 trans[8][8] = { + /* Token: */ + /* State: ** SEMI WS OTHER EXPLAIN CREATE TEMP TRIGGER END */ + /* 0 INVALID: */ { 1, 0, 2, 3, 4, 2, 2, 2, }, + /* 1 START: */ { 1, 1, 2, 3, 4, 2, 2, 2, }, + /* 2 NORMAL: */ { 1, 2, 2, 2, 2, 2, 2, 2, }, + /* 3 EXPLAIN: */ { 1, 3, 3, 2, 4, 2, 2, 2, }, + /* 4 CREATE: */ { 1, 4, 2, 2, 2, 4, 5, 2, }, + /* 5 TRIGGER: */ { 6, 5, 5, 5, 5, 5, 5, 5, }, + /* 6 SEMI: */ { 6, 6, 5, 5, 5, 5, 5, 7, }, + /* 7 END: */ { 1, 7, 5, 5, 5, 5, 5, 5, }, + }; +#else + /* If triggers are not supported by this compile then the statement machine + ** used to detect the end of a statement is much simplier + */ + static const u8 trans[3][3] = { + /* Token: */ + /* State: ** SEMI WS OTHER */ + /* 0 INVALID: */ { 1, 0, 2, }, + /* 1 START: */ { 1, 1, 2, }, + /* 2 NORMAL: */ { 1, 2, 2, }, + }; +#endif /* SQLITE_OMIT_TRIGGER */ + + while( *zSql ){ + switch( *zSql ){ + case ';': { /* A semicolon */ + token = tkSEMI; + break; + } + case ' ': + case '\r': + case '\t': + case '\n': + case '\f': { /* White space is ignored */ + token = tkWS; + break; + } + case '/': { /* C-style comments */ + if( zSql[1]!='*' ){ + token = tkOTHER; + break; + } + zSql += 2; + while( zSql[0] && (zSql[0]!='*' || zSql[1]!='/') ){ zSql++; } + if( zSql[0]==0 ) return 0; + zSql++; + token = tkWS; + break; + } + case '-': { /* SQL-style comments from "--" to end of line */ + if( zSql[1]!='-' ){ + token = tkOTHER; + break; + } + while( *zSql && *zSql!='\n' ){ zSql++; } + if( *zSql==0 ) return state==1; + token = tkWS; + break; + } + case '[': { /* Microsoft-style identifiers in [...] */ + zSql++; + while( *zSql && *zSql!=']' ){ zSql++; } + if( *zSql==0 ) return 0; + token = tkOTHER; + break; + } + case '`': /* Grave-accent quoted symbols used by MySQL */ + case '"': /* single- and double-quoted strings */ + case '\'': { + int c = *zSql; + zSql++; + while( *zSql && *zSql!=c ){ zSql++; } + if( *zSql==0 ) return 0; + token = tkOTHER; + break; + } + default: { +#ifdef SQLITE_EBCDIC + unsigned char c; +#endif + if( IdChar((u8)*zSql) ){ + /* Keywords and unquoted identifiers */ + int nId; + for(nId=1; IdChar(zSql[nId]); nId++){} +#ifdef SQLITE_OMIT_TRIGGER + token = tkOTHER; +#else + switch( *zSql ){ + case 'c': case 'C': { + if( nId==6 && sqlite3StrNICmp(zSql, "create", 6)==0 ){ + token = tkCREATE; + }else{ + token = tkOTHER; + } + break; + } + case 't': case 'T': { + if( nId==7 && sqlite3StrNICmp(zSql, "trigger", 7)==0 ){ + token = tkTRIGGER; + }else if( nId==4 && sqlite3StrNICmp(zSql, "temp", 4)==0 ){ + token = tkTEMP; + }else if( nId==9 && sqlite3StrNICmp(zSql, "temporary", 9)==0 ){ + token = tkTEMP; + }else{ + token = tkOTHER; + } + break; + } + case 'e': case 'E': { + if( nId==3 && sqlite3StrNICmp(zSql, "end", 3)==0 ){ + token = tkEND; + }else +#ifndef SQLITE_OMIT_EXPLAIN + if( nId==7 && sqlite3StrNICmp(zSql, "explain", 7)==0 ){ + token = tkEXPLAIN; + }else +#endif + { + token = tkOTHER; + } + break; + } + default: { + token = tkOTHER; + break; + } + } +#endif /* SQLITE_OMIT_TRIGGER */ + zSql += nId-1; + }else{ + /* Operators and special symbols */ + token = tkOTHER; + } + break; + } + } + state = trans[state][token]; + zSql++; + } + return state==1; +} + +#ifndef SQLITE_OMIT_UTF16 +/* +** This routine is the same as the sqlite3_complete() routine described +** above, except that the parameter is required to be UTF-16 encoded, not +** UTF-8. +*/ +SQLITE_API int sqlite3_complete16(const void *zSql){ + sqlite3_value *pVal; + char const *zSql8; + int rc = SQLITE_NOMEM; + +#ifndef SQLITE_OMIT_AUTOINIT + rc = sqlite3_initialize(); + if( rc ) return rc; +#endif + pVal = sqlite3ValueNew(0); + sqlite3ValueSetStr(pVal, -1, zSql, SQLITE_UTF16NATIVE, SQLITE_STATIC); + zSql8 = sqlite3ValueText(pVal, SQLITE_UTF8); + if( zSql8 ){ + rc = sqlite3_complete(zSql8); + }else{ + rc = SQLITE_NOMEM; + } + sqlite3ValueFree(pVal); + return sqlite3ApiExit(0, rc); +} +#endif /* SQLITE_OMIT_UTF16 */ +#endif /* SQLITE_OMIT_COMPLETE */ + +/************** End of complete.c ********************************************/ +/************** Begin file main.c ********************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** Main file for the SQLite library. The routines in this file +** implement the programmer interface to the library. Routines in +** other files are for internal use by SQLite and should not be +** accessed by users of the library. +*/ + +#ifdef SQLITE_ENABLE_FTS3 +/************** Include fts3.h in the middle of main.c ***********************/ +/************** Begin file fts3.h ********************************************/ +/* +** 2006 Oct 10 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This header file is used by programs that want to link against the +** FTS3 library. All it does is declare the sqlite3Fts3Init() interface. +*/ + +#if 0 +extern "C" { +#endif /* __cplusplus */ + +SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db); + +#if 0 +} /* extern "C" */ +#endif /* __cplusplus */ + +/************** End of fts3.h ************************************************/ +/************** Continuing where we left off in main.c ***********************/ +#endif +#ifdef SQLITE_ENABLE_RTREE +/************** Include rtree.h in the middle of main.c **********************/ +/************** Begin file rtree.h *******************************************/ +/* +** 2008 May 26 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This header file is used by programs that want to link against the +** RTREE library. All it does is declare the sqlite3RtreeInit() interface. +*/ + +#if 0 +extern "C" { +#endif /* __cplusplus */ + +SQLITE_PRIVATE int sqlite3RtreeInit(sqlite3 *db); + +#if 0 +} /* extern "C" */ +#endif /* __cplusplus */ + +/************** End of rtree.h ***********************************************/ +/************** Continuing where we left off in main.c ***********************/ +#endif +#ifdef SQLITE_ENABLE_ICU +/************** Include sqliteicu.h in the middle of main.c ******************/ +/************** Begin file sqliteicu.h ***************************************/ +/* +** 2008 May 26 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This header file is used by programs that want to link against the +** ICU extension. All it does is declare the sqlite3IcuInit() interface. +*/ + +#if 0 +extern "C" { +#endif /* __cplusplus */ + +SQLITE_PRIVATE int sqlite3IcuInit(sqlite3 *db); + +#if 0 +} /* extern "C" */ +#endif /* __cplusplus */ + + +/************** End of sqliteicu.h *******************************************/ +/************** Continuing where we left off in main.c ***********************/ +#endif + +#ifndef SQLITE_AMALGAMATION +/* IMPLEMENTATION-OF: R-46656-45156 The sqlite3_version[] string constant +** contains the text of SQLITE_VERSION macro. +*/ +SQLITE_API const char sqlite3_version[] = SQLITE_VERSION; +#endif + +/* IMPLEMENTATION-OF: R-53536-42575 The sqlite3_libversion() function returns +** a pointer to the to the sqlite3_version[] string constant. +*/ +SQLITE_API const char *sqlite3_libversion(void){ return sqlite3_version; } + +/* IMPLEMENTATION-OF: R-63124-39300 The sqlite3_sourceid() function returns a +** pointer to a string constant whose value is the same as the +** SQLITE_SOURCE_ID C preprocessor macro. +*/ +SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; } + +/* IMPLEMENTATION-OF: R-35210-63508 The sqlite3_libversion_number() function +** returns an integer equal to SQLITE_VERSION_NUMBER. +*/ +SQLITE_API int sqlite3_libversion_number(void){ return SQLITE_VERSION_NUMBER; } + +/* IMPLEMENTATION-OF: R-20790-14025 The sqlite3_threadsafe() function returns +** zero if and only if SQLite was compiled with mutexing code omitted due to +** the SQLITE_THREADSAFE compile-time option being set to 0. +*/ +SQLITE_API int sqlite3_threadsafe(void){ return SQLITE_THREADSAFE; } + +#if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE) +/* +** If the following function pointer is not NULL and if +** SQLITE_ENABLE_IOTRACE is enabled, then messages describing +** I/O active are written using this function. These messages +** are intended for debugging activity only. +*/ +SQLITE_PRIVATE void (*sqlite3IoTrace)(const char*, ...) = 0; +#endif + +/* +** If the following global variable points to a string which is the +** name of a directory, then that directory will be used to store +** temporary files. +** +** See also the "PRAGMA temp_store_directory" SQL command. +*/ +SQLITE_API char *sqlite3_temp_directory = 0; + +/* +** If the following global variable points to a string which is the +** name of a directory, then that directory will be used to store +** all database files specified with a relative pathname. +** +** See also the "PRAGMA data_store_directory" SQL command. +*/ +SQLITE_API char *sqlite3_data_directory = 0; + +/* +** Initialize SQLite. +** +** This routine must be called to initialize the memory allocation, +** VFS, and mutex subsystems prior to doing any serious work with +** SQLite. But as long as you do not compile with SQLITE_OMIT_AUTOINIT +** this routine will be called automatically by key routines such as +** sqlite3_open(). +** +** This routine is a no-op except on its very first call for the process, +** or for the first call after a call to sqlite3_shutdown. +** +** The first thread to call this routine runs the initialization to +** completion. If subsequent threads call this routine before the first +** thread has finished the initialization process, then the subsequent +** threads must block until the first thread finishes with the initialization. +** +** The first thread might call this routine recursively. Recursive +** calls to this routine should not block, of course. Otherwise the +** initialization process would never complete. +** +** Let X be the first thread to enter this routine. Let Y be some other +** thread. Then while the initial invocation of this routine by X is +** incomplete, it is required that: +** +** * Calls to this routine from Y must block until the outer-most +** call by X completes. +** +** * Recursive calls to this routine from thread X return immediately +** without blocking. +*/ +SQLITE_API int sqlite3_initialize(void){ + MUTEX_LOGIC( sqlite3_mutex *pMaster; ) /* The main static mutex */ + int rc; /* Result code */ +#ifdef SQLITE_EXTRA_INIT + int bRunExtraInit = 0; /* Extra initialization needed */ +#endif + +#ifdef SQLITE_OMIT_WSD + rc = sqlite3_wsd_init(4096, 24); + if( rc!=SQLITE_OK ){ + return rc; + } +#endif + + /* If SQLite is already completely initialized, then this call + ** to sqlite3_initialize() should be a no-op. But the initialization + ** must be complete. So isInit must not be set until the very end + ** of this routine. + */ + if( sqlite3GlobalConfig.isInit ) return SQLITE_OK; + + /* Make sure the mutex subsystem is initialized. If unable to + ** initialize the mutex subsystem, return early with the error. + ** If the system is so sick that we are unable to allocate a mutex, + ** there is not much SQLite is going to be able to do. + ** + ** The mutex subsystem must take care of serializing its own + ** initialization. + */ + rc = sqlite3MutexInit(); + if( rc ) return rc; + + /* Initialize the malloc() system and the recursive pInitMutex mutex. + ** This operation is protected by the STATIC_MASTER mutex. Note that + ** MutexAlloc() is called for a static mutex prior to initializing the + ** malloc subsystem - this implies that the allocation of a static + ** mutex must not require support from the malloc subsystem. + */ + MUTEX_LOGIC( pMaster = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER); ) + sqlite3_mutex_enter(pMaster); + sqlite3GlobalConfig.isMutexInit = 1; + if( !sqlite3GlobalConfig.isMallocInit ){ + rc = sqlite3MallocInit(); + } + if( rc==SQLITE_OK ){ + sqlite3GlobalConfig.isMallocInit = 1; + if( !sqlite3GlobalConfig.pInitMutex ){ + sqlite3GlobalConfig.pInitMutex = + sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE); + if( sqlite3GlobalConfig.bCoreMutex && !sqlite3GlobalConfig.pInitMutex ){ + rc = SQLITE_NOMEM; + } + } + } + if( rc==SQLITE_OK ){ + sqlite3GlobalConfig.nRefInitMutex++; + } + sqlite3_mutex_leave(pMaster); + + /* If rc is not SQLITE_OK at this point, then either the malloc + ** subsystem could not be initialized or the system failed to allocate + ** the pInitMutex mutex. Return an error in either case. */ + if( rc!=SQLITE_OK ){ + return rc; + } + + /* Do the rest of the initialization under the recursive mutex so + ** that we will be able to handle recursive calls into + ** sqlite3_initialize(). The recursive calls normally come through + ** sqlite3_os_init() when it invokes sqlite3_vfs_register(), but other + ** recursive calls might also be possible. + ** + ** IMPLEMENTATION-OF: R-00140-37445 SQLite automatically serializes calls + ** to the xInit method, so the xInit method need not be threadsafe. + ** + ** The following mutex is what serializes access to the appdef pcache xInit + ** methods. The sqlite3_pcache_methods.xInit() all is embedded in the + ** call to sqlite3PcacheInitialize(). + */ + sqlite3_mutex_enter(sqlite3GlobalConfig.pInitMutex); + if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){ + FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions); + sqlite3GlobalConfig.inProgress = 1; + memset(pHash, 0, sizeof(sqlite3GlobalFunctions)); + sqlite3RegisterGlobalFunctions(); + if( sqlite3GlobalConfig.isPCacheInit==0 ){ + rc = sqlite3PcacheInitialize(); + } + if( rc==SQLITE_OK ){ + sqlite3GlobalConfig.isPCacheInit = 1; + rc = sqlite3OsInit(); + } + if( rc==SQLITE_OK ){ + sqlite3PCacheBufferSetup( sqlite3GlobalConfig.pPage, + sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage); + sqlite3GlobalConfig.isInit = 1; +#ifdef SQLITE_EXTRA_INIT + bRunExtraInit = 1; +#endif + } + sqlite3GlobalConfig.inProgress = 0; + } + sqlite3_mutex_leave(sqlite3GlobalConfig.pInitMutex); + + /* Go back under the static mutex and clean up the recursive + ** mutex to prevent a resource leak. + */ + sqlite3_mutex_enter(pMaster); + sqlite3GlobalConfig.nRefInitMutex--; + if( sqlite3GlobalConfig.nRefInitMutex<=0 ){ + assert( sqlite3GlobalConfig.nRefInitMutex==0 ); + sqlite3_mutex_free(sqlite3GlobalConfig.pInitMutex); + sqlite3GlobalConfig.pInitMutex = 0; + } + sqlite3_mutex_leave(pMaster); + + /* The following is just a sanity check to make sure SQLite has + ** been compiled correctly. It is important to run this code, but + ** we don't want to run it too often and soak up CPU cycles for no + ** reason. So we run it once during initialization. + */ +#ifndef NDEBUG +#ifndef SQLITE_OMIT_FLOATING_POINT + /* This section of code's only "output" is via assert() statements. */ + if ( rc==SQLITE_OK ){ + u64 x = (((u64)1)<<63)-1; + double y; + assert(sizeof(x)==8); + assert(sizeof(x)==sizeof(y)); + memcpy(&y, &x, 8); + assert( sqlite3IsNaN(y) ); + } +#endif +#endif + + /* Do extra initialization steps requested by the SQLITE_EXTRA_INIT + ** compile-time option. + */ +#ifdef SQLITE_EXTRA_INIT + if( bRunExtraInit ){ + int SQLITE_EXTRA_INIT(const char*); + rc = SQLITE_EXTRA_INIT(0); + } +#endif + + return rc; +} + +/* +** Undo the effects of sqlite3_initialize(). Must not be called while +** there are outstanding database connections or memory allocations or +** while any part of SQLite is otherwise in use in any thread. This +** routine is not threadsafe. But it is safe to invoke this routine +** on when SQLite is already shut down. If SQLite is already shut down +** when this routine is invoked, then this routine is a harmless no-op. +*/ +SQLITE_API int sqlite3_shutdown(void){ + if( sqlite3GlobalConfig.isInit ){ +#ifdef SQLITE_EXTRA_SHUTDOWN + void SQLITE_EXTRA_SHUTDOWN(void); + SQLITE_EXTRA_SHUTDOWN(); +#endif + sqlite3_os_end(); + sqlite3_reset_auto_extension(); + sqlite3GlobalConfig.isInit = 0; + } + if( sqlite3GlobalConfig.isPCacheInit ){ + sqlite3PcacheShutdown(); + sqlite3GlobalConfig.isPCacheInit = 0; + } + if( sqlite3GlobalConfig.isMallocInit ){ + sqlite3MallocEnd(); + sqlite3GlobalConfig.isMallocInit = 0; + +#ifndef SQLITE_OMIT_SHUTDOWN_DIRECTORIES + /* The heap subsystem has now been shutdown and these values are supposed + ** to be NULL or point to memory that was obtained from sqlite3_malloc(), + ** which would rely on that heap subsystem; therefore, make sure these + ** values cannot refer to heap memory that was just invalidated when the + ** heap subsystem was shutdown. This is only done if the current call to + ** this function resulted in the heap subsystem actually being shutdown. + */ + sqlite3_data_directory = 0; + sqlite3_temp_directory = 0; +#endif + } + if( sqlite3GlobalConfig.isMutexInit ){ + sqlite3MutexEnd(); + sqlite3GlobalConfig.isMutexInit = 0; + } + + return SQLITE_OK; +} + +/* +** This API allows applications to modify the global configuration of +** the SQLite library at run-time. +** +** This routine should only be called when there are no outstanding +** database connections or memory allocations. This routine is not +** threadsafe. Failure to heed these warnings can lead to unpredictable +** behavior. +*/ +SQLITE_API int sqlite3_config(int op, ...){ + va_list ap; + int rc = SQLITE_OK; + + /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while + ** the SQLite library is in use. */ + if( sqlite3GlobalConfig.isInit ) return SQLITE_MISUSE_BKPT; + + va_start(ap, op); + switch( op ){ + + /* Mutex configuration options are only available in a threadsafe + ** compile. + */ +#if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 + case SQLITE_CONFIG_SINGLETHREAD: { + /* Disable all mutexing */ + sqlite3GlobalConfig.bCoreMutex = 0; + sqlite3GlobalConfig.bFullMutex = 0; + break; + } + case SQLITE_CONFIG_MULTITHREAD: { + /* Disable mutexing of database connections */ + /* Enable mutexing of core data structures */ + sqlite3GlobalConfig.bCoreMutex = 1; + sqlite3GlobalConfig.bFullMutex = 0; + break; + } + case SQLITE_CONFIG_SERIALIZED: { + /* Enable all mutexing */ + sqlite3GlobalConfig.bCoreMutex = 1; + sqlite3GlobalConfig.bFullMutex = 1; + break; + } + case SQLITE_CONFIG_MUTEX: { + /* Specify an alternative mutex implementation */ + sqlite3GlobalConfig.mutex = *va_arg(ap, sqlite3_mutex_methods*); + break; + } + case SQLITE_CONFIG_GETMUTEX: { + /* Retrieve the current mutex implementation */ + *va_arg(ap, sqlite3_mutex_methods*) = sqlite3GlobalConfig.mutex; + break; + } +#endif + + + case SQLITE_CONFIG_MALLOC: { + /* Specify an alternative malloc implementation */ + sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*); + break; + } + case SQLITE_CONFIG_GETMALLOC: { + /* Retrieve the current malloc() implementation */ + if( sqlite3GlobalConfig.m.xMalloc==0 ) sqlite3MemSetDefault(); + *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m; + break; + } + case SQLITE_CONFIG_MEMSTATUS: { + /* Enable or disable the malloc status collection */ + sqlite3GlobalConfig.bMemstat = va_arg(ap, int); + break; + } + case SQLITE_CONFIG_SCRATCH: { + /* Designate a buffer for scratch memory space */ + sqlite3GlobalConfig.pScratch = va_arg(ap, void*); + sqlite3GlobalConfig.szScratch = va_arg(ap, int); + sqlite3GlobalConfig.nScratch = va_arg(ap, int); + break; + } + case SQLITE_CONFIG_PAGECACHE: { + /* Designate a buffer for page cache memory space */ + sqlite3GlobalConfig.pPage = va_arg(ap, void*); + sqlite3GlobalConfig.szPage = va_arg(ap, int); + sqlite3GlobalConfig.nPage = va_arg(ap, int); + break; + } + + case SQLITE_CONFIG_PCACHE: { + /* no-op */ + break; + } + case SQLITE_CONFIG_GETPCACHE: { + /* now an error */ + rc = SQLITE_ERROR; + break; + } + + case SQLITE_CONFIG_PCACHE2: { + /* Specify an alternative page cache implementation */ + sqlite3GlobalConfig.pcache2 = *va_arg(ap, sqlite3_pcache_methods2*); + break; + } + case SQLITE_CONFIG_GETPCACHE2: { + if( sqlite3GlobalConfig.pcache2.xInit==0 ){ + sqlite3PCacheSetDefault(); + } + *va_arg(ap, sqlite3_pcache_methods2*) = sqlite3GlobalConfig.pcache2; + break; + } + +#if defined(SQLITE_ENABLE_MEMSYS3) || defined(SQLITE_ENABLE_MEMSYS5) + case SQLITE_CONFIG_HEAP: { + /* Designate a buffer for heap memory space */ + sqlite3GlobalConfig.pHeap = va_arg(ap, void*); + sqlite3GlobalConfig.nHeap = va_arg(ap, int); + sqlite3GlobalConfig.mnReq = va_arg(ap, int); + + if( sqlite3GlobalConfig.mnReq<1 ){ + sqlite3GlobalConfig.mnReq = 1; + }else if( sqlite3GlobalConfig.mnReq>(1<<12) ){ + /* cap min request size at 2^12 */ + sqlite3GlobalConfig.mnReq = (1<<12); + } + + if( sqlite3GlobalConfig.pHeap==0 ){ + /* If the heap pointer is NULL, then restore the malloc implementation + ** back to NULL pointers too. This will cause the malloc to go + ** back to its default implementation when sqlite3_initialize() is + ** run. + */ + memset(&sqlite3GlobalConfig.m, 0, sizeof(sqlite3GlobalConfig.m)); + }else{ + /* The heap pointer is not NULL, then install one of the + ** mem5.c/mem3.c methods. The enclosing #if guarantees at + ** least one of these methods is currently enabled. + */ +#ifdef SQLITE_ENABLE_MEMSYS3 + sqlite3GlobalConfig.m = *sqlite3MemGetMemsys3(); +#endif +#ifdef SQLITE_ENABLE_MEMSYS5 + sqlite3GlobalConfig.m = *sqlite3MemGetMemsys5(); +#endif + } + break; + } +#endif + + case SQLITE_CONFIG_LOOKASIDE: { + sqlite3GlobalConfig.szLookaside = va_arg(ap, int); + sqlite3GlobalConfig.nLookaside = va_arg(ap, int); + break; + } + + /* Record a pointer to the logger function and its first argument. + ** The default is NULL. Logging is disabled if the function pointer is + ** NULL. + */ + case SQLITE_CONFIG_LOG: { + /* MSVC is picky about pulling func ptrs from va lists. + ** http://support.microsoft.com/kb/47961 + ** sqlite3GlobalConfig.xLog = va_arg(ap, void(*)(void*,int,const char*)); + */ + typedef void(*LOGFUNC_t)(void*,int,const char*); + sqlite3GlobalConfig.xLog = va_arg(ap, LOGFUNC_t); + sqlite3GlobalConfig.pLogArg = va_arg(ap, void*); + break; + } + + case SQLITE_CONFIG_URI: { + sqlite3GlobalConfig.bOpenUri = va_arg(ap, int); + break; + } + + case SQLITE_CONFIG_COVERING_INDEX_SCAN: { + sqlite3GlobalConfig.bUseCis = va_arg(ap, int); + break; + } + +#ifdef SQLITE_ENABLE_SQLLOG + case SQLITE_CONFIG_SQLLOG: { + typedef void(*SQLLOGFUNC_t)(void*, sqlite3*, const char*, int); + sqlite3GlobalConfig.xSqllog = va_arg(ap, SQLLOGFUNC_t); + sqlite3GlobalConfig.pSqllogArg = va_arg(ap, void *); + break; + } +#endif + + case SQLITE_CONFIG_MMAP_SIZE: { + sqlite3_int64 szMmap = va_arg(ap, sqlite3_int64); + sqlite3_int64 mxMmap = va_arg(ap, sqlite3_int64); + if( mxMmap<0 || mxMmap>SQLITE_MAX_MMAP_SIZE ){ + mxMmap = SQLITE_MAX_MMAP_SIZE; + } + sqlite3GlobalConfig.mxMmap = mxMmap; + if( szMmap<0 ) szMmap = SQLITE_DEFAULT_MMAP_SIZE; + if( szMmap>mxMmap) szMmap = mxMmap; + sqlite3GlobalConfig.szMmap = szMmap; + break; + } + +#if SQLITE_OS_WIN && defined(SQLITE_WIN32_MALLOC) + case SQLITE_CONFIG_WIN32_HEAPSIZE: { + sqlite3GlobalConfig.nHeap = va_arg(ap, int); + break; + } +#endif + + default: { + rc = SQLITE_ERROR; + break; + } + } + va_end(ap); + return rc; +} + +/* +** Set up the lookaside buffers for a database connection. +** Return SQLITE_OK on success. +** If lookaside is already active, return SQLITE_BUSY. +** +** The sz parameter is the number of bytes in each lookaside slot. +** The cnt parameter is the number of slots. If pStart is NULL the +** space for the lookaside memory is obtained from sqlite3_malloc(). +** If pStart is not NULL then it is sz*cnt bytes of memory to use for +** the lookaside memory. +*/ +static int setupLookaside(sqlite3 *db, void *pBuf, int sz, int cnt){ + void *pStart; + if( db->lookaside.nOut ){ + return SQLITE_BUSY; + } + /* Free any existing lookaside buffer for this handle before + ** allocating a new one so we don't have to have space for + ** both at the same time. + */ + if( db->lookaside.bMalloced ){ + sqlite3_free(db->lookaside.pStart); + } + /* The size of a lookaside slot after ROUNDDOWN8 needs to be larger + ** than a pointer to be useful. + */ + sz = ROUNDDOWN8(sz); /* IMP: R-33038-09382 */ + if( sz<=(int)sizeof(LookasideSlot*) ) sz = 0; + if( cnt<0 ) cnt = 0; + if( sz==0 || cnt==0 ){ + sz = 0; + pStart = 0; + }else if( pBuf==0 ){ + sqlite3BeginBenignMalloc(); + pStart = sqlite3Malloc( sz*cnt ); /* IMP: R-61949-35727 */ + sqlite3EndBenignMalloc(); + if( pStart ) cnt = sqlite3MallocSize(pStart)/sz; + }else{ + pStart = pBuf; + } + db->lookaside.pStart = pStart; + db->lookaside.pFree = 0; + db->lookaside.sz = (u16)sz; + if( pStart ){ + int i; + LookasideSlot *p; + assert( sz > (int)sizeof(LookasideSlot*) ); + p = (LookasideSlot*)pStart; + for(i=cnt-1; i>=0; i--){ + p->pNext = db->lookaside.pFree; + db->lookaside.pFree = p; + p = (LookasideSlot*)&((u8*)p)[sz]; + } + db->lookaside.pEnd = p; + db->lookaside.bEnabled = 1; + db->lookaside.bMalloced = pBuf==0 ?1:0; + }else{ + db->lookaside.pStart = db; + db->lookaside.pEnd = db; + db->lookaside.bEnabled = 0; + db->lookaside.bMalloced = 0; + } + return SQLITE_OK; +} + +/* +** Return the mutex associated with a database connection. +*/ +SQLITE_API sqlite3_mutex *sqlite3_db_mutex(sqlite3 *db){ + return db->mutex; +} + +/* +** Free up as much memory as we can from the given database +** connection. +*/ +SQLITE_API int sqlite3_db_release_memory(sqlite3 *db){ + int i; + sqlite3_mutex_enter(db->mutex); + sqlite3BtreeEnterAll(db); + for(i=0; inDb; i++){ + Btree *pBt = db->aDb[i].pBt; + if( pBt ){ + Pager *pPager = sqlite3BtreePager(pBt); + sqlite3PagerShrink(pPager); + } + } + sqlite3BtreeLeaveAll(db); + sqlite3_mutex_leave(db->mutex); + return SQLITE_OK; +} + +/* +** Configuration settings for an individual database connection +*/ +SQLITE_API int sqlite3_db_config(sqlite3 *db, int op, ...){ + va_list ap; + int rc; + va_start(ap, op); + switch( op ){ + case SQLITE_DBCONFIG_LOOKASIDE: { + void *pBuf = va_arg(ap, void*); /* IMP: R-26835-10964 */ + int sz = va_arg(ap, int); /* IMP: R-47871-25994 */ + int cnt = va_arg(ap, int); /* IMP: R-04460-53386 */ + rc = setupLookaside(db, pBuf, sz, cnt); + break; + } + default: { + static const struct { + int op; /* The opcode */ + u32 mask; /* Mask of the bit in sqlite3.flags to set/clear */ + } aFlagOp[] = { + { SQLITE_DBCONFIG_ENABLE_FKEY, SQLITE_ForeignKeys }, + { SQLITE_DBCONFIG_ENABLE_TRIGGER, SQLITE_EnableTrigger }, + }; + unsigned int i; + rc = SQLITE_ERROR; /* IMP: R-42790-23372 */ + for(i=0; iflags; + if( onoff>0 ){ + db->flags |= aFlagOp[i].mask; + }else if( onoff==0 ){ + db->flags &= ~aFlagOp[i].mask; + } + if( oldFlags!=db->flags ){ + sqlite3ExpirePreparedStatements(db); + } + if( pRes ){ + *pRes = (db->flags & aFlagOp[i].mask)!=0; + } + rc = SQLITE_OK; + break; + } + } + break; + } + } + va_end(ap); + return rc; +} + + +/* +** Return true if the buffer z[0..n-1] contains all spaces. +*/ +static int allSpaces(const char *z, int n){ + while( n>0 && z[n-1]==' ' ){ n--; } + return n==0; +} + +/* +** This is the default collating function named "BINARY" which is always +** available. +** +** If the padFlag argument is not NULL then space padding at the end +** of strings is ignored. This implements the RTRIM collation. +*/ +static int binCollFunc( + void *padFlag, + int nKey1, const void *pKey1, + int nKey2, const void *pKey2 +){ + int rc, n; + n = nKey1lastRowid; +} + +/* +** Return the number of changes in the most recent call to sqlite3_exec(). +*/ +SQLITE_API int sqlite3_changes(sqlite3 *db){ + return db->nChange; +} + +/* +** Return the number of changes since the database handle was opened. +*/ +SQLITE_API int sqlite3_total_changes(sqlite3 *db){ + return db->nTotalChange; +} + +/* +** Close all open savepoints. This function only manipulates fields of the +** database handle object, it does not close any savepoints that may be open +** at the b-tree/pager level. +*/ +SQLITE_PRIVATE void sqlite3CloseSavepoints(sqlite3 *db){ + while( db->pSavepoint ){ + Savepoint *pTmp = db->pSavepoint; + db->pSavepoint = pTmp->pNext; + sqlite3DbFree(db, pTmp); + } + db->nSavepoint = 0; + db->nStatement = 0; + db->isTransactionSavepoint = 0; +} + +/* +** Invoke the destructor function associated with FuncDef p, if any. Except, +** if this is not the last copy of the function, do not invoke it. Multiple +** copies of a single function are created when create_function() is called +** with SQLITE_ANY as the encoding. +*/ +static void functionDestroy(sqlite3 *db, FuncDef *p){ + FuncDestructor *pDestructor = p->pDestructor; + if( pDestructor ){ + pDestructor->nRef--; + if( pDestructor->nRef==0 ){ + pDestructor->xDestroy(pDestructor->pUserData); + sqlite3DbFree(db, pDestructor); + } + } +} + +/* +** Disconnect all sqlite3_vtab objects that belong to database connection +** db. This is called when db is being closed. +*/ +static void disconnectAllVtab(sqlite3 *db){ +#ifndef SQLITE_OMIT_VIRTUALTABLE + int i; + sqlite3BtreeEnterAll(db); + for(i=0; inDb; i++){ + Schema *pSchema = db->aDb[i].pSchema; + if( db->aDb[i].pSchema ){ + HashElem *p; + for(p=sqliteHashFirst(&pSchema->tblHash); p; p=sqliteHashNext(p)){ + Table *pTab = (Table *)sqliteHashData(p); + if( IsVirtual(pTab) ) sqlite3VtabDisconnect(db, pTab); + } + } + } + sqlite3VtabUnlockList(db); + sqlite3BtreeLeaveAll(db); +#else + UNUSED_PARAMETER(db); +#endif +} + +/* +** Return TRUE if database connection db has unfinalized prepared +** statements or unfinished sqlite3_backup objects. +*/ +static int connectionIsBusy(sqlite3 *db){ + int j; + assert( sqlite3_mutex_held(db->mutex) ); + if( db->pVdbe ) return 1; + for(j=0; jnDb; j++){ + Btree *pBt = db->aDb[j].pBt; + if( pBt && sqlite3BtreeIsInBackup(pBt) ) return 1; + } + return 0; +} + +/* +** Close an existing SQLite database +*/ +static int sqlite3Close(sqlite3 *db, int forceZombie){ + if( !db ){ + return SQLITE_OK; + } + if( !sqlite3SafetyCheckSickOrOk(db) ){ + return SQLITE_MISUSE_BKPT; + } + sqlite3_mutex_enter(db->mutex); + + /* Force xDisconnect calls on all virtual tables */ + disconnectAllVtab(db); + + /* If a transaction is open, the disconnectAllVtab() call above + ** will not have called the xDisconnect() method on any virtual + ** tables in the db->aVTrans[] array. The following sqlite3VtabRollback() + ** call will do so. We need to do this before the check for active + ** SQL statements below, as the v-table implementation may be storing + ** some prepared statements internally. + */ + sqlite3VtabRollback(db); + + /* Legacy behavior (sqlite3_close() behavior) is to return + ** SQLITE_BUSY if the connection can not be closed immediately. + */ + if( !forceZombie && connectionIsBusy(db) ){ + sqlite3Error(db, SQLITE_BUSY, "unable to close due to unfinalized " + "statements or unfinished backups"); + sqlite3_mutex_leave(db->mutex); + return SQLITE_BUSY; + } + +#ifdef SQLITE_ENABLE_SQLLOG + if( sqlite3GlobalConfig.xSqllog ){ + /* Closing the handle. Fourth parameter is passed the value 2. */ + sqlite3GlobalConfig.xSqllog(sqlite3GlobalConfig.pSqllogArg, db, 0, 2); + } +#endif + + /* Convert the connection into a zombie and then close it. + */ + db->magic = SQLITE_MAGIC_ZOMBIE; + sqlite3LeaveMutexAndCloseZombie(db); + return SQLITE_OK; +} + +/* +** Two variations on the public interface for closing a database +** connection. The sqlite3_close() version returns SQLITE_BUSY and +** leaves the connection option if there are unfinalized prepared +** statements or unfinished sqlite3_backups. The sqlite3_close_v2() +** version forces the connection to become a zombie if there are +** unclosed resources, and arranges for deallocation when the last +** prepare statement or sqlite3_backup closes. +*/ +SQLITE_API int sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); } +SQLITE_API int sqlite3_close_v2(sqlite3 *db){ return sqlite3Close(db,1); } + + +/* +** Close the mutex on database connection db. +** +** Furthermore, if database connection db is a zombie (meaning that there +** has been a prior call to sqlite3_close(db) or sqlite3_close_v2(db)) and +** every sqlite3_stmt has now been finalized and every sqlite3_backup has +** finished, then free all resources. +*/ +SQLITE_PRIVATE void sqlite3LeaveMutexAndCloseZombie(sqlite3 *db){ + HashElem *i; /* Hash table iterator */ + int j; + + /* If there are outstanding sqlite3_stmt or sqlite3_backup objects + ** or if the connection has not yet been closed by sqlite3_close_v2(), + ** then just leave the mutex and return. + */ + if( db->magic!=SQLITE_MAGIC_ZOMBIE || connectionIsBusy(db) ){ + sqlite3_mutex_leave(db->mutex); + return; + } + + /* If we reach this point, it means that the database connection has + ** closed all sqlite3_stmt and sqlite3_backup objects and has been + ** passed to sqlite3_close (meaning that it is a zombie). Therefore, + ** go ahead and free all resources. + */ + + /* If a transaction is open, roll it back. This also ensures that if + ** any database schemas have been modified by an uncommitted transaction + ** they are reset. And that the required b-tree mutex is held to make + ** the pager rollback and schema reset an atomic operation. */ + sqlite3RollbackAll(db, SQLITE_OK); + + /* Free any outstanding Savepoint structures. */ + sqlite3CloseSavepoints(db); + + /* Close all database connections */ + for(j=0; jnDb; j++){ + struct Db *pDb = &db->aDb[j]; + if( pDb->pBt ){ + sqlite3BtreeClose(pDb->pBt); + pDb->pBt = 0; + if( j!=1 ){ + pDb->pSchema = 0; + } + } + } + /* Clear the TEMP schema separately and last */ + if( db->aDb[1].pSchema ){ + sqlite3SchemaClear(db->aDb[1].pSchema); + } + sqlite3VtabUnlockList(db); + + /* Free up the array of auxiliary databases */ + sqlite3CollapseDatabaseArray(db); + assert( db->nDb<=2 ); + assert( db->aDb==db->aDbStatic ); + + /* Tell the code in notify.c that the connection no longer holds any + ** locks and does not require any further unlock-notify callbacks. + */ + sqlite3ConnectionClosed(db); + + for(j=0; jaFunc.a); j++){ + FuncDef *pNext, *pHash, *p; + for(p=db->aFunc.a[j]; p; p=pHash){ + pHash = p->pHash; + while( p ){ + functionDestroy(db, p); + pNext = p->pNext; + sqlite3DbFree(db, p); + p = pNext; + } + } + } + for(i=sqliteHashFirst(&db->aCollSeq); i; i=sqliteHashNext(i)){ + CollSeq *pColl = (CollSeq *)sqliteHashData(i); + /* Invoke any destructors registered for collation sequence user data. */ + for(j=0; j<3; j++){ + if( pColl[j].xDel ){ + pColl[j].xDel(pColl[j].pUser); + } + } + sqlite3DbFree(db, pColl); + } + sqlite3HashClear(&db->aCollSeq); +#ifndef SQLITE_OMIT_VIRTUALTABLE + for(i=sqliteHashFirst(&db->aModule); i; i=sqliteHashNext(i)){ + Module *pMod = (Module *)sqliteHashData(i); + if( pMod->xDestroy ){ + pMod->xDestroy(pMod->pAux); + } + sqlite3DbFree(db, pMod); + } + sqlite3HashClear(&db->aModule); +#endif + + sqlite3Error(db, SQLITE_OK, 0); /* Deallocates any cached error strings. */ + sqlite3ValueFree(db->pErr); + sqlite3CloseExtensions(db); + + db->magic = SQLITE_MAGIC_ERROR; + + /* The temp-database schema is allocated differently from the other schema + ** objects (using sqliteMalloc() directly, instead of sqlite3BtreeSchema()). + ** So it needs to be freed here. Todo: Why not roll the temp schema into + ** the same sqliteMalloc() as the one that allocates the database + ** structure? + */ + sqlite3DbFree(db, db->aDb[1].pSchema); + sqlite3_mutex_leave(db->mutex); + db->magic = SQLITE_MAGIC_CLOSED; + sqlite3_mutex_free(db->mutex); + assert( db->lookaside.nOut==0 ); /* Fails on a lookaside memory leak */ + if( db->lookaside.bMalloced ){ + sqlite3_free(db->lookaside.pStart); + } + sqlite3_free(db); +} + +/* +** Rollback all database files. If tripCode is not SQLITE_OK, then +** any open cursors are invalidated ("tripped" - as in "tripping a circuit +** breaker") and made to return tripCode if there are any further +** attempts to use that cursor. +*/ +SQLITE_PRIVATE void sqlite3RollbackAll(sqlite3 *db, int tripCode){ + int i; + int inTrans = 0; + assert( sqlite3_mutex_held(db->mutex) ); + sqlite3BeginBenignMalloc(); + + /* Obtain all b-tree mutexes before making any calls to BtreeRollback(). + ** This is important in case the transaction being rolled back has + ** modified the database schema. If the b-tree mutexes are not taken + ** here, then another shared-cache connection might sneak in between + ** the database rollback and schema reset, which can cause false + ** corruption reports in some cases. */ + sqlite3BtreeEnterAll(db); + + for(i=0; inDb; i++){ + Btree *p = db->aDb[i].pBt; + if( p ){ + if( sqlite3BtreeIsInTrans(p) ){ + inTrans = 1; + } + sqlite3BtreeRollback(p, tripCode); + } + } + sqlite3VtabRollback(db); + sqlite3EndBenignMalloc(); + + if( (db->flags&SQLITE_InternChanges)!=0 && db->init.busy==0 ){ + sqlite3ExpirePreparedStatements(db); + sqlite3ResetAllSchemasOfConnection(db); + } + sqlite3BtreeLeaveAll(db); + + /* Any deferred constraint violations have now been resolved. */ + db->nDeferredCons = 0; + db->nDeferredImmCons = 0; + db->flags &= ~SQLITE_DeferFKs; + + /* If one has been configured, invoke the rollback-hook callback */ + if( db->xRollbackCallback && (inTrans || !db->autoCommit) ){ + db->xRollbackCallback(db->pRollbackArg); + } +} + +/* +** Return a static string containing the name corresponding to the error code +** specified in the argument. +*/ +#if defined(SQLITE_TEST) +SQLITE_PRIVATE const char *sqlite3ErrName(int rc){ + const char *zName = 0; + int i, origRc = rc; + for(i=0; i<2 && zName==0; i++, rc &= 0xff){ + switch( rc ){ + case SQLITE_OK: zName = "SQLITE_OK"; break; + case SQLITE_ERROR: zName = "SQLITE_ERROR"; break; + case SQLITE_INTERNAL: zName = "SQLITE_INTERNAL"; break; + case SQLITE_PERM: zName = "SQLITE_PERM"; break; + case SQLITE_ABORT: zName = "SQLITE_ABORT"; break; + case SQLITE_ABORT_ROLLBACK: zName = "SQLITE_ABORT_ROLLBACK"; break; + case SQLITE_BUSY: zName = "SQLITE_BUSY"; break; + case SQLITE_BUSY_RECOVERY: zName = "SQLITE_BUSY_RECOVERY"; break; + case SQLITE_BUSY_SNAPSHOT: zName = "SQLITE_BUSY_SNAPSHOT"; break; + case SQLITE_LOCKED: zName = "SQLITE_LOCKED"; break; + case SQLITE_LOCKED_SHAREDCACHE: zName = "SQLITE_LOCKED_SHAREDCACHE";break; + case SQLITE_NOMEM: zName = "SQLITE_NOMEM"; break; + case SQLITE_READONLY: zName = "SQLITE_READONLY"; break; + case SQLITE_READONLY_RECOVERY: zName = "SQLITE_READONLY_RECOVERY"; break; + case SQLITE_READONLY_CANTLOCK: zName = "SQLITE_READONLY_CANTLOCK"; break; + case SQLITE_READONLY_ROLLBACK: zName = "SQLITE_READONLY_ROLLBACK"; break; + case SQLITE_READONLY_DBMOVED: zName = "SQLITE_READONLY_DBMOVED"; break; + case SQLITE_INTERRUPT: zName = "SQLITE_INTERRUPT"; break; + case SQLITE_IOERR: zName = "SQLITE_IOERR"; break; + case SQLITE_IOERR_READ: zName = "SQLITE_IOERR_READ"; break; + case SQLITE_IOERR_SHORT_READ: zName = "SQLITE_IOERR_SHORT_READ"; break; + case SQLITE_IOERR_WRITE: zName = "SQLITE_IOERR_WRITE"; break; + case SQLITE_IOERR_FSYNC: zName = "SQLITE_IOERR_FSYNC"; break; + case SQLITE_IOERR_DIR_FSYNC: zName = "SQLITE_IOERR_DIR_FSYNC"; break; + case SQLITE_IOERR_TRUNCATE: zName = "SQLITE_IOERR_TRUNCATE"; break; + case SQLITE_IOERR_FSTAT: zName = "SQLITE_IOERR_FSTAT"; break; + case SQLITE_IOERR_UNLOCK: zName = "SQLITE_IOERR_UNLOCK"; break; + case SQLITE_IOERR_RDLOCK: zName = "SQLITE_IOERR_RDLOCK"; break; + case SQLITE_IOERR_DELETE: zName = "SQLITE_IOERR_DELETE"; break; + case SQLITE_IOERR_BLOCKED: zName = "SQLITE_IOERR_BLOCKED"; break; + case SQLITE_IOERR_NOMEM: zName = "SQLITE_IOERR_NOMEM"; break; + case SQLITE_IOERR_ACCESS: zName = "SQLITE_IOERR_ACCESS"; break; + case SQLITE_IOERR_CHECKRESERVEDLOCK: + zName = "SQLITE_IOERR_CHECKRESERVEDLOCK"; break; + case SQLITE_IOERR_LOCK: zName = "SQLITE_IOERR_LOCK"; break; + case SQLITE_IOERR_CLOSE: zName = "SQLITE_IOERR_CLOSE"; break; + case SQLITE_IOERR_DIR_CLOSE: zName = "SQLITE_IOERR_DIR_CLOSE"; break; + case SQLITE_IOERR_SHMOPEN: zName = "SQLITE_IOERR_SHMOPEN"; break; + case SQLITE_IOERR_SHMSIZE: zName = "SQLITE_IOERR_SHMSIZE"; break; + case SQLITE_IOERR_SHMLOCK: zName = "SQLITE_IOERR_SHMLOCK"; break; + case SQLITE_IOERR_SHMMAP: zName = "SQLITE_IOERR_SHMMAP"; break; + case SQLITE_IOERR_SEEK: zName = "SQLITE_IOERR_SEEK"; break; + case SQLITE_IOERR_DELETE_NOENT: zName = "SQLITE_IOERR_DELETE_NOENT";break; + case SQLITE_IOERR_MMAP: zName = "SQLITE_IOERR_MMAP"; break; + case SQLITE_IOERR_GETTEMPPATH: zName = "SQLITE_IOERR_GETTEMPPATH"; break; + case SQLITE_IOERR_CONVPATH: zName = "SQLITE_IOERR_CONVPATH"; break; + case SQLITE_CORRUPT: zName = "SQLITE_CORRUPT"; break; + case SQLITE_CORRUPT_VTAB: zName = "SQLITE_CORRUPT_VTAB"; break; + case SQLITE_NOTFOUND: zName = "SQLITE_NOTFOUND"; break; + case SQLITE_FULL: zName = "SQLITE_FULL"; break; + case SQLITE_CANTOPEN: zName = "SQLITE_CANTOPEN"; break; + case SQLITE_CANTOPEN_NOTEMPDIR: zName = "SQLITE_CANTOPEN_NOTEMPDIR";break; + case SQLITE_CANTOPEN_ISDIR: zName = "SQLITE_CANTOPEN_ISDIR"; break; + case SQLITE_CANTOPEN_FULLPATH: zName = "SQLITE_CANTOPEN_FULLPATH"; break; + case SQLITE_CANTOPEN_CONVPATH: zName = "SQLITE_CANTOPEN_CONVPATH"; break; + case SQLITE_PROTOCOL: zName = "SQLITE_PROTOCOL"; break; + case SQLITE_EMPTY: zName = "SQLITE_EMPTY"; break; + case SQLITE_SCHEMA: zName = "SQLITE_SCHEMA"; break; + case SQLITE_TOOBIG: zName = "SQLITE_TOOBIG"; break; + case SQLITE_CONSTRAINT: zName = "SQLITE_CONSTRAINT"; break; + case SQLITE_CONSTRAINT_UNIQUE: zName = "SQLITE_CONSTRAINT_UNIQUE"; break; + case SQLITE_CONSTRAINT_TRIGGER: zName = "SQLITE_CONSTRAINT_TRIGGER";break; + case SQLITE_CONSTRAINT_FOREIGNKEY: + zName = "SQLITE_CONSTRAINT_FOREIGNKEY"; break; + case SQLITE_CONSTRAINT_CHECK: zName = "SQLITE_CONSTRAINT_CHECK"; break; + case SQLITE_CONSTRAINT_PRIMARYKEY: + zName = "SQLITE_CONSTRAINT_PRIMARYKEY"; break; + case SQLITE_CONSTRAINT_NOTNULL: zName = "SQLITE_CONSTRAINT_NOTNULL";break; + case SQLITE_CONSTRAINT_COMMITHOOK: + zName = "SQLITE_CONSTRAINT_COMMITHOOK"; break; + case SQLITE_CONSTRAINT_VTAB: zName = "SQLITE_CONSTRAINT_VTAB"; break; + case SQLITE_CONSTRAINT_FUNCTION: + zName = "SQLITE_CONSTRAINT_FUNCTION"; break; + case SQLITE_CONSTRAINT_ROWID: zName = "SQLITE_CONSTRAINT_ROWID"; break; + case SQLITE_MISMATCH: zName = "SQLITE_MISMATCH"; break; + case SQLITE_MISUSE: zName = "SQLITE_MISUSE"; break; + case SQLITE_NOLFS: zName = "SQLITE_NOLFS"; break; + case SQLITE_AUTH: zName = "SQLITE_AUTH"; break; + case SQLITE_FORMAT: zName = "SQLITE_FORMAT"; break; + case SQLITE_RANGE: zName = "SQLITE_RANGE"; break; + case SQLITE_NOTADB: zName = "SQLITE_NOTADB"; break; + case SQLITE_ROW: zName = "SQLITE_ROW"; break; + case SQLITE_NOTICE: zName = "SQLITE_NOTICE"; break; + case SQLITE_NOTICE_RECOVER_WAL: zName = "SQLITE_NOTICE_RECOVER_WAL";break; + case SQLITE_NOTICE_RECOVER_ROLLBACK: + zName = "SQLITE_NOTICE_RECOVER_ROLLBACK"; break; + case SQLITE_WARNING: zName = "SQLITE_WARNING"; break; + case SQLITE_WARNING_AUTOINDEX: zName = "SQLITE_WARNING_AUTOINDEX"; break; + case SQLITE_DONE: zName = "SQLITE_DONE"; break; + } + } + if( zName==0 ){ + static char zBuf[50]; + sqlite3_snprintf(sizeof(zBuf), zBuf, "SQLITE_UNKNOWN(%d)", origRc); + zName = zBuf; + } + return zName; +} +#endif + +/* +** Return a static string that describes the kind of error specified in the +** argument. +*/ +SQLITE_PRIVATE const char *sqlite3ErrStr(int rc){ + static const char* const aMsg[] = { + /* SQLITE_OK */ "not an error", + /* SQLITE_ERROR */ "SQL logic error or missing database", + /* SQLITE_INTERNAL */ 0, + /* SQLITE_PERM */ "access permission denied", + /* SQLITE_ABORT */ "callback requested query abort", + /* SQLITE_BUSY */ "database is locked", + /* SQLITE_LOCKED */ "database table is locked", + /* SQLITE_NOMEM */ "out of memory", + /* SQLITE_READONLY */ "attempt to write a readonly database", + /* SQLITE_INTERRUPT */ "interrupted", + /* SQLITE_IOERR */ "disk I/O error", + /* SQLITE_CORRUPT */ "database disk image is malformed", + /* SQLITE_NOTFOUND */ "unknown operation", + /* SQLITE_FULL */ "database or disk is full", + /* SQLITE_CANTOPEN */ "unable to open database file", + /* SQLITE_PROTOCOL */ "locking protocol", + /* SQLITE_EMPTY */ "table contains no data", + /* SQLITE_SCHEMA */ "database schema has changed", + /* SQLITE_TOOBIG */ "string or blob too big", + /* SQLITE_CONSTRAINT */ "constraint failed", + /* SQLITE_MISMATCH */ "datatype mismatch", + /* SQLITE_MISUSE */ "library routine called out of sequence", + /* SQLITE_NOLFS */ "large file support is disabled", + /* SQLITE_AUTH */ "authorization denied", + /* SQLITE_FORMAT */ "auxiliary database format error", + /* SQLITE_RANGE */ "bind or column index out of range", + /* SQLITE_NOTADB */ "file is encrypted or is not a database", + }; + const char *zErr = "unknown error"; + switch( rc ){ + case SQLITE_ABORT_ROLLBACK: { + zErr = "abort due to ROLLBACK"; + break; + } + default: { + rc &= 0xff; + if( ALWAYS(rc>=0) && rcbusyTimeout; + int delay, prior; + + assert( count>=0 ); + if( count < NDELAY ){ + delay = delays[count]; + prior = totals[count]; + }else{ + delay = delays[NDELAY-1]; + prior = totals[NDELAY-1] + delay*(count-(NDELAY-1)); + } + if( prior + delay > timeout ){ + delay = timeout - prior; + if( delay<=0 ) return 0; + } + sqlite3OsSleep(db->pVfs, delay*1000); + return 1; +#else + sqlite3 *db = (sqlite3 *)ptr; + int timeout = ((sqlite3 *)ptr)->busyTimeout; + if( (count+1)*1000 > timeout ){ + return 0; + } + sqlite3OsSleep(db->pVfs, 1000000); + return 1; +#endif +} + +/* +** Invoke the given busy handler. +** +** This routine is called when an operation failed with a lock. +** If this routine returns non-zero, the lock is retried. If it +** returns 0, the operation aborts with an SQLITE_BUSY error. +*/ +SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler *p){ + int rc; + if( NEVER(p==0) || p->xFunc==0 || p->nBusy<0 ) return 0; + rc = p->xFunc(p->pArg, p->nBusy); + if( rc==0 ){ + p->nBusy = -1; + }else{ + p->nBusy++; + } + return rc; +} + +/* +** This routine sets the busy callback for an Sqlite database to the +** given callback function with the given argument. +*/ +SQLITE_API int sqlite3_busy_handler( + sqlite3 *db, + int (*xBusy)(void*,int), + void *pArg +){ + sqlite3_mutex_enter(db->mutex); + db->busyHandler.xFunc = xBusy; + db->busyHandler.pArg = pArg; + db->busyHandler.nBusy = 0; + db->busyTimeout = 0; + sqlite3_mutex_leave(db->mutex); + return SQLITE_OK; +} + +#ifndef SQLITE_OMIT_PROGRESS_CALLBACK +/* +** This routine sets the progress callback for an Sqlite database to the +** given callback function with the given argument. The progress callback will +** be invoked every nOps opcodes. +*/ +SQLITE_API void sqlite3_progress_handler( + sqlite3 *db, + int nOps, + int (*xProgress)(void*), + void *pArg +){ + sqlite3_mutex_enter(db->mutex); + if( nOps>0 ){ + db->xProgress = xProgress; + db->nProgressOps = (unsigned)nOps; + db->pProgressArg = pArg; + }else{ + db->xProgress = 0; + db->nProgressOps = 0; + db->pProgressArg = 0; + } + sqlite3_mutex_leave(db->mutex); +} +#endif + + +/* +** This routine installs a default busy handler that waits for the +** specified number of milliseconds before returning 0. +*/ +SQLITE_API int sqlite3_busy_timeout(sqlite3 *db, int ms){ + if( ms>0 ){ + sqlite3_busy_handler(db, sqliteDefaultBusyCallback, (void*)db); + db->busyTimeout = ms; + }else{ + sqlite3_busy_handler(db, 0, 0); + } + return SQLITE_OK; +} + +/* +** Cause any pending operation to stop at its earliest opportunity. +*/ +SQLITE_API void sqlite3_interrupt(sqlite3 *db){ + db->u1.isInterrupted = 1; +} + + +/* +** This function is exactly the same as sqlite3_create_function(), except +** that it is designed to be called by internal code. The difference is +** that if a malloc() fails in sqlite3_create_function(), an error code +** is returned and the mallocFailed flag cleared. +*/ +SQLITE_PRIVATE int sqlite3CreateFunc( + sqlite3 *db, + const char *zFunctionName, + int nArg, + int enc, + void *pUserData, + void (*xFunc)(sqlite3_context*,int,sqlite3_value **), + void (*xStep)(sqlite3_context*,int,sqlite3_value **), + void (*xFinal)(sqlite3_context*), + FuncDestructor *pDestructor +){ + FuncDef *p; + int nName; + int extraFlags; + + assert( sqlite3_mutex_held(db->mutex) ); + if( zFunctionName==0 || + (xFunc && (xFinal || xStep)) || + (!xFunc && (xFinal && !xStep)) || + (!xFunc && (!xFinal && xStep)) || + (nArg<-1 || nArg>SQLITE_MAX_FUNCTION_ARG) || + (255<(nName = sqlite3Strlen30( zFunctionName))) ){ + return SQLITE_MISUSE_BKPT; + } + + assert( SQLITE_FUNC_CONSTANT==SQLITE_DETERMINISTIC ); + extraFlags = enc & SQLITE_DETERMINISTIC; + enc &= (SQLITE_FUNC_ENCMASK|SQLITE_ANY); + +#ifndef SQLITE_OMIT_UTF16 + /* If SQLITE_UTF16 is specified as the encoding type, transform this + ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the + ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally. + ** + ** If SQLITE_ANY is specified, add three versions of the function + ** to the hash table. + */ + if( enc==SQLITE_UTF16 ){ + enc = SQLITE_UTF16NATIVE; + }else if( enc==SQLITE_ANY ){ + int rc; + rc = sqlite3CreateFunc(db, zFunctionName, nArg, SQLITE_UTF8|extraFlags, + pUserData, xFunc, xStep, xFinal, pDestructor); + if( rc==SQLITE_OK ){ + rc = sqlite3CreateFunc(db, zFunctionName, nArg, SQLITE_UTF16LE|extraFlags, + pUserData, xFunc, xStep, xFinal, pDestructor); + } + if( rc!=SQLITE_OK ){ + return rc; + } + enc = SQLITE_UTF16BE; + } +#else + enc = SQLITE_UTF8; +#endif + + /* Check if an existing function is being overridden or deleted. If so, + ** and there are active VMs, then return SQLITE_BUSY. If a function + ** is being overridden/deleted but there are no active VMs, allow the + ** operation to continue but invalidate all precompiled statements. + */ + p = sqlite3FindFunction(db, zFunctionName, nName, nArg, (u8)enc, 0); + if( p && (p->funcFlags & SQLITE_FUNC_ENCMASK)==enc && p->nArg==nArg ){ + if( db->nVdbeActive ){ + sqlite3Error(db, SQLITE_BUSY, + "unable to delete/modify user-function due to active statements"); + assert( !db->mallocFailed ); + return SQLITE_BUSY; + }else{ + sqlite3ExpirePreparedStatements(db); + } + } + + p = sqlite3FindFunction(db, zFunctionName, nName, nArg, (u8)enc, 1); + assert(p || db->mallocFailed); + if( !p ){ + return SQLITE_NOMEM; + } + + /* If an older version of the function with a configured destructor is + ** being replaced invoke the destructor function here. */ + functionDestroy(db, p); + + if( pDestructor ){ + pDestructor->nRef++; + } + p->pDestructor = pDestructor; + p->funcFlags = (p->funcFlags & SQLITE_FUNC_ENCMASK) | extraFlags; + testcase( p->funcFlags & SQLITE_DETERMINISTIC ); + p->xFunc = xFunc; + p->xStep = xStep; + p->xFinalize = xFinal; + p->pUserData = pUserData; + p->nArg = (u16)nArg; + return SQLITE_OK; +} + +/* +** Create new user functions. +*/ +SQLITE_API int sqlite3_create_function( + sqlite3 *db, + const char *zFunc, + int nArg, + int enc, + void *p, + void (*xFunc)(sqlite3_context*,int,sqlite3_value **), + void (*xStep)(sqlite3_context*,int,sqlite3_value **), + void (*xFinal)(sqlite3_context*) +){ + return sqlite3_create_function_v2(db, zFunc, nArg, enc, p, xFunc, xStep, + xFinal, 0); +} + +SQLITE_API int sqlite3_create_function_v2( + sqlite3 *db, + const char *zFunc, + int nArg, + int enc, + void *p, + void (*xFunc)(sqlite3_context*,int,sqlite3_value **), + void (*xStep)(sqlite3_context*,int,sqlite3_value **), + void (*xFinal)(sqlite3_context*), + void (*xDestroy)(void *) +){ + int rc = SQLITE_ERROR; + FuncDestructor *pArg = 0; + sqlite3_mutex_enter(db->mutex); + if( xDestroy ){ + pArg = (FuncDestructor *)sqlite3DbMallocZero(db, sizeof(FuncDestructor)); + if( !pArg ){ + xDestroy(p); + goto out; + } + pArg->xDestroy = xDestroy; + pArg->pUserData = p; + } + rc = sqlite3CreateFunc(db, zFunc, nArg, enc, p, xFunc, xStep, xFinal, pArg); + if( pArg && pArg->nRef==0 ){ + assert( rc!=SQLITE_OK ); + xDestroy(p); + sqlite3DbFree(db, pArg); + } + + out: + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +#ifndef SQLITE_OMIT_UTF16 +SQLITE_API int sqlite3_create_function16( + sqlite3 *db, + const void *zFunctionName, + int nArg, + int eTextRep, + void *p, + void (*xFunc)(sqlite3_context*,int,sqlite3_value**), + void (*xStep)(sqlite3_context*,int,sqlite3_value**), + void (*xFinal)(sqlite3_context*) +){ + int rc; + char *zFunc8; + sqlite3_mutex_enter(db->mutex); + assert( !db->mallocFailed ); + zFunc8 = sqlite3Utf16to8(db, zFunctionName, -1, SQLITE_UTF16NATIVE); + rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xFunc, xStep, xFinal,0); + sqlite3DbFree(db, zFunc8); + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} +#endif + + +/* +** Declare that a function has been overloaded by a virtual table. +** +** If the function already exists as a regular global function, then +** this routine is a no-op. If the function does not exist, then create +** a new one that always throws a run-time error. +** +** When virtual tables intend to provide an overloaded function, they +** should call this routine to make sure the global function exists. +** A global function must exist in order for name resolution to work +** properly. +*/ +SQLITE_API int sqlite3_overload_function( + sqlite3 *db, + const char *zName, + int nArg +){ + int nName = sqlite3Strlen30(zName); + int rc = SQLITE_OK; + sqlite3_mutex_enter(db->mutex); + if( sqlite3FindFunction(db, zName, nName, nArg, SQLITE_UTF8, 0)==0 ){ + rc = sqlite3CreateFunc(db, zName, nArg, SQLITE_UTF8, + 0, sqlite3InvalidFunction, 0, 0, 0); + } + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +#ifndef SQLITE_OMIT_TRACE +/* +** Register a trace function. The pArg from the previously registered trace +** is returned. +** +** A NULL trace function means that no tracing is executes. A non-NULL +** trace is a pointer to a function that is invoked at the start of each +** SQL statement. +*/ +SQLITE_API void *sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg){ + void *pOld; + sqlite3_mutex_enter(db->mutex); + pOld = db->pTraceArg; + db->xTrace = xTrace; + db->pTraceArg = pArg; + sqlite3_mutex_leave(db->mutex); + return pOld; +} +/* +** Register a profile function. The pArg from the previously registered +** profile function is returned. +** +** A NULL profile function means that no profiling is executes. A non-NULL +** profile is a pointer to a function that is invoked at the conclusion of +** each SQL statement that is run. +*/ +SQLITE_API void *sqlite3_profile( + sqlite3 *db, + void (*xProfile)(void*,const char*,sqlite_uint64), + void *pArg +){ + void *pOld; + sqlite3_mutex_enter(db->mutex); + pOld = db->pProfileArg; + db->xProfile = xProfile; + db->pProfileArg = pArg; + sqlite3_mutex_leave(db->mutex); + return pOld; +} +#endif /* SQLITE_OMIT_TRACE */ + +/* +** Register a function to be invoked when a transaction commits. +** If the invoked function returns non-zero, then the commit becomes a +** rollback. +*/ +SQLITE_API void *sqlite3_commit_hook( + sqlite3 *db, /* Attach the hook to this database */ + int (*xCallback)(void*), /* Function to invoke on each commit */ + void *pArg /* Argument to the function */ +){ + void *pOld; + sqlite3_mutex_enter(db->mutex); + pOld = db->pCommitArg; + db->xCommitCallback = xCallback; + db->pCommitArg = pArg; + sqlite3_mutex_leave(db->mutex); + return pOld; +} + +/* +** Register a callback to be invoked each time a row is updated, +** inserted or deleted using this database connection. +*/ +SQLITE_API void *sqlite3_update_hook( + sqlite3 *db, /* Attach the hook to this database */ + void (*xCallback)(void*,int,char const *,char const *,sqlite_int64), + void *pArg /* Argument to the function */ +){ + void *pRet; + sqlite3_mutex_enter(db->mutex); + pRet = db->pUpdateArg; + db->xUpdateCallback = xCallback; + db->pUpdateArg = pArg; + sqlite3_mutex_leave(db->mutex); + return pRet; +} + +/* +** Register a callback to be invoked each time a transaction is rolled +** back by this database connection. +*/ +SQLITE_API void *sqlite3_rollback_hook( + sqlite3 *db, /* Attach the hook to this database */ + void (*xCallback)(void*), /* Callback function */ + void *pArg /* Argument to the function */ +){ + void *pRet; + sqlite3_mutex_enter(db->mutex); + pRet = db->pRollbackArg; + db->xRollbackCallback = xCallback; + db->pRollbackArg = pArg; + sqlite3_mutex_leave(db->mutex); + return pRet; +} + +#ifndef SQLITE_OMIT_WAL +/* +** The sqlite3_wal_hook() callback registered by sqlite3_wal_autocheckpoint(). +** Invoke sqlite3_wal_checkpoint if the number of frames in the log file +** is greater than sqlite3.pWalArg cast to an integer (the value configured by +** wal_autocheckpoint()). +*/ +SQLITE_PRIVATE int sqlite3WalDefaultHook( + void *pClientData, /* Argument */ + sqlite3 *db, /* Connection */ + const char *zDb, /* Database */ + int nFrame /* Size of WAL */ +){ + if( nFrame>=SQLITE_PTR_TO_INT(pClientData) ){ + sqlite3BeginBenignMalloc(); + sqlite3_wal_checkpoint(db, zDb); + sqlite3EndBenignMalloc(); + } + return SQLITE_OK; +} +#endif /* SQLITE_OMIT_WAL */ + +/* +** Configure an sqlite3_wal_hook() callback to automatically checkpoint +** a database after committing a transaction if there are nFrame or +** more frames in the log file. Passing zero or a negative value as the +** nFrame parameter disables automatic checkpoints entirely. +** +** The callback registered by this function replaces any existing callback +** registered using sqlite3_wal_hook(). Likewise, registering a callback +** using sqlite3_wal_hook() disables the automatic checkpoint mechanism +** configured by this function. +*/ +SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){ +#ifdef SQLITE_OMIT_WAL + UNUSED_PARAMETER(db); + UNUSED_PARAMETER(nFrame); +#else + if( nFrame>0 ){ + sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame)); + }else{ + sqlite3_wal_hook(db, 0, 0); + } +#endif + return SQLITE_OK; +} + +/* +** Register a callback to be invoked each time a transaction is written +** into the write-ahead-log by this database connection. +*/ +SQLITE_API void *sqlite3_wal_hook( + sqlite3 *db, /* Attach the hook to this db handle */ + int(*xCallback)(void *, sqlite3*, const char*, int), + void *pArg /* First argument passed to xCallback() */ +){ +#ifndef SQLITE_OMIT_WAL + void *pRet; + sqlite3_mutex_enter(db->mutex); + pRet = db->pWalArg; + db->xWalCallback = xCallback; + db->pWalArg = pArg; + sqlite3_mutex_leave(db->mutex); + return pRet; +#else + return 0; +#endif +} + +/* +** Checkpoint database zDb. +*/ +SQLITE_API int sqlite3_wal_checkpoint_v2( + sqlite3 *db, /* Database handle */ + const char *zDb, /* Name of attached database (or NULL) */ + int eMode, /* SQLITE_CHECKPOINT_* value */ + int *pnLog, /* OUT: Size of WAL log in frames */ + int *pnCkpt /* OUT: Total number of frames checkpointed */ +){ +#ifdef SQLITE_OMIT_WAL + return SQLITE_OK; +#else + int rc; /* Return code */ + int iDb = SQLITE_MAX_ATTACHED; /* sqlite3.aDb[] index of db to checkpoint */ + + /* Initialize the output variables to -1 in case an error occurs. */ + if( pnLog ) *pnLog = -1; + if( pnCkpt ) *pnCkpt = -1; + + assert( SQLITE_CHECKPOINT_FULL>SQLITE_CHECKPOINT_PASSIVE ); + assert( SQLITE_CHECKPOINT_FULLSQLITE_CHECKPOINT_RESTART ){ + return SQLITE_MISUSE; + } + + sqlite3_mutex_enter(db->mutex); + if( zDb && zDb[0] ){ + iDb = sqlite3FindDbName(db, zDb); + } + if( iDb<0 ){ + rc = SQLITE_ERROR; + sqlite3Error(db, SQLITE_ERROR, "unknown database: %s", zDb); + }else{ + rc = sqlite3Checkpoint(db, iDb, eMode, pnLog, pnCkpt); + sqlite3Error(db, rc, 0); + } + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +#endif +} + + +/* +** Checkpoint database zDb. If zDb is NULL, or if the buffer zDb points +** to contains a zero-length string, all attached databases are +** checkpointed. +*/ +SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb){ + return sqlite3_wal_checkpoint_v2(db, zDb, SQLITE_CHECKPOINT_PASSIVE, 0, 0); +} + +#ifndef SQLITE_OMIT_WAL +/* +** Run a checkpoint on database iDb. This is a no-op if database iDb is +** not currently open in WAL mode. +** +** If a transaction is open on the database being checkpointed, this +** function returns SQLITE_LOCKED and a checkpoint is not attempted. If +** an error occurs while running the checkpoint, an SQLite error code is +** returned (i.e. SQLITE_IOERR). Otherwise, SQLITE_OK. +** +** The mutex on database handle db should be held by the caller. The mutex +** associated with the specific b-tree being checkpointed is taken by +** this function while the checkpoint is running. +** +** If iDb is passed SQLITE_MAX_ATTACHED, then all attached databases are +** checkpointed. If an error is encountered it is returned immediately - +** no attempt is made to checkpoint any remaining databases. +** +** Parameter eMode is one of SQLITE_CHECKPOINT_PASSIVE, FULL or RESTART. +*/ +SQLITE_PRIVATE int sqlite3Checkpoint(sqlite3 *db, int iDb, int eMode, int *pnLog, int *pnCkpt){ + int rc = SQLITE_OK; /* Return code */ + int i; /* Used to iterate through attached dbs */ + int bBusy = 0; /* True if SQLITE_BUSY has been encountered */ + + assert( sqlite3_mutex_held(db->mutex) ); + assert( !pnLog || *pnLog==-1 ); + assert( !pnCkpt || *pnCkpt==-1 ); + + for(i=0; inDb && rc==SQLITE_OK; i++){ + if( i==iDb || iDb==SQLITE_MAX_ATTACHED ){ + rc = sqlite3BtreeCheckpoint(db->aDb[i].pBt, eMode, pnLog, pnCkpt); + pnLog = 0; + pnCkpt = 0; + if( rc==SQLITE_BUSY ){ + bBusy = 1; + rc = SQLITE_OK; + } + } + } + + return (rc==SQLITE_OK && bBusy) ? SQLITE_BUSY : rc; +} +#endif /* SQLITE_OMIT_WAL */ + +/* +** This function returns true if main-memory should be used instead of +** a temporary file for transient pager files and statement journals. +** The value returned depends on the value of db->temp_store (runtime +** parameter) and the compile time value of SQLITE_TEMP_STORE. The +** following table describes the relationship between these two values +** and this functions return value. +** +** SQLITE_TEMP_STORE db->temp_store Location of temporary database +** ----------------- -------------- ------------------------------ +** 0 any file (return 0) +** 1 1 file (return 0) +** 1 2 memory (return 1) +** 1 0 file (return 0) +** 2 1 file (return 0) +** 2 2 memory (return 1) +** 2 0 memory (return 1) +** 3 any memory (return 1) +*/ +SQLITE_PRIVATE int sqlite3TempInMemory(const sqlite3 *db){ +#if SQLITE_TEMP_STORE==1 + return ( db->temp_store==2 ); +#endif +#if SQLITE_TEMP_STORE==2 + return ( db->temp_store!=1 ); +#endif +#if SQLITE_TEMP_STORE==3 + return 1; +#endif +#if SQLITE_TEMP_STORE<1 || SQLITE_TEMP_STORE>3 + return 0; +#endif +} + +/* +** Return UTF-8 encoded English language explanation of the most recent +** error. +*/ +SQLITE_API const char *sqlite3_errmsg(sqlite3 *db){ + const char *z; + if( !db ){ + return sqlite3ErrStr(SQLITE_NOMEM); + } + if( !sqlite3SafetyCheckSickOrOk(db) ){ + return sqlite3ErrStr(SQLITE_MISUSE_BKPT); + } + sqlite3_mutex_enter(db->mutex); + if( db->mallocFailed ){ + z = sqlite3ErrStr(SQLITE_NOMEM); + }else{ + testcase( db->pErr==0 ); + z = (char*)sqlite3_value_text(db->pErr); + assert( !db->mallocFailed ); + if( z==0 ){ + z = sqlite3ErrStr(db->errCode); + } + } + sqlite3_mutex_leave(db->mutex); + return z; +} + +#ifndef SQLITE_OMIT_UTF16 +/* +** Return UTF-16 encoded English language explanation of the most recent +** error. +*/ +SQLITE_API const void *sqlite3_errmsg16(sqlite3 *db){ + static const u16 outOfMem[] = { + 'o', 'u', 't', ' ', 'o', 'f', ' ', 'm', 'e', 'm', 'o', 'r', 'y', 0 + }; + static const u16 misuse[] = { + 'l', 'i', 'b', 'r', 'a', 'r', 'y', ' ', + 'r', 'o', 'u', 't', 'i', 'n', 'e', ' ', + 'c', 'a', 'l', 'l', 'e', 'd', ' ', + 'o', 'u', 't', ' ', + 'o', 'f', ' ', + 's', 'e', 'q', 'u', 'e', 'n', 'c', 'e', 0 + }; + + const void *z; + if( !db ){ + return (void *)outOfMem; + } + if( !sqlite3SafetyCheckSickOrOk(db) ){ + return (void *)misuse; + } + sqlite3_mutex_enter(db->mutex); + if( db->mallocFailed ){ + z = (void *)outOfMem; + }else{ + z = sqlite3_value_text16(db->pErr); + if( z==0 ){ + sqlite3Error(db, db->errCode, sqlite3ErrStr(db->errCode)); + z = sqlite3_value_text16(db->pErr); + } + /* A malloc() may have failed within the call to sqlite3_value_text16() + ** above. If this is the case, then the db->mallocFailed flag needs to + ** be cleared before returning. Do this directly, instead of via + ** sqlite3ApiExit(), to avoid setting the database handle error message. + */ + db->mallocFailed = 0; + } + sqlite3_mutex_leave(db->mutex); + return z; +} +#endif /* SQLITE_OMIT_UTF16 */ + +/* +** Return the most recent error code generated by an SQLite routine. If NULL is +** passed to this function, we assume a malloc() failed during sqlite3_open(). +*/ +SQLITE_API int sqlite3_errcode(sqlite3 *db){ + if( db && !sqlite3SafetyCheckSickOrOk(db) ){ + return SQLITE_MISUSE_BKPT; + } + if( !db || db->mallocFailed ){ + return SQLITE_NOMEM; + } + return db->errCode & db->errMask; +} +SQLITE_API int sqlite3_extended_errcode(sqlite3 *db){ + if( db && !sqlite3SafetyCheckSickOrOk(db) ){ + return SQLITE_MISUSE_BKPT; + } + if( !db || db->mallocFailed ){ + return SQLITE_NOMEM; + } + return db->errCode; +} + +/* +** Return a string that describes the kind of error specified in the +** argument. For now, this simply calls the internal sqlite3ErrStr() +** function. +*/ +SQLITE_API const char *sqlite3_errstr(int rc){ + return sqlite3ErrStr(rc); +} + +/* +** Invalidate all cached KeyInfo objects for database connection "db" +*/ +static void invalidateCachedKeyInfo(sqlite3 *db){ + Db *pDb; /* A single database */ + int iDb; /* The database index number */ + HashElem *k; /* For looping over tables in pDb */ + Table *pTab; /* A table in the database */ + Index *pIdx; /* Each index */ + + for(iDb=0, pDb=db->aDb; iDbnDb; iDb++, pDb++){ + if( pDb->pBt==0 ) continue; + sqlite3BtreeEnter(pDb->pBt); + for(k=sqliteHashFirst(&pDb->pSchema->tblHash); k; k=sqliteHashNext(k)){ + pTab = (Table*)sqliteHashData(k); + for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ + if( pIdx->pKeyInfo && pIdx->pKeyInfo->db==db ){ + sqlite3KeyInfoUnref(pIdx->pKeyInfo); + pIdx->pKeyInfo = 0; + } + } + } + sqlite3BtreeLeave(pDb->pBt); + } +} + +/* +** Create a new collating function for database "db". The name is zName +** and the encoding is enc. +*/ +static int createCollation( + sqlite3* db, + const char *zName, + u8 enc, + void* pCtx, + int(*xCompare)(void*,int,const void*,int,const void*), + void(*xDel)(void*) +){ + CollSeq *pColl; + int enc2; + int nName = sqlite3Strlen30(zName); + + assert( sqlite3_mutex_held(db->mutex) ); + + /* If SQLITE_UTF16 is specified as the encoding type, transform this + ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the + ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally. + */ + enc2 = enc; + testcase( enc2==SQLITE_UTF16 ); + testcase( enc2==SQLITE_UTF16_ALIGNED ); + if( enc2==SQLITE_UTF16 || enc2==SQLITE_UTF16_ALIGNED ){ + enc2 = SQLITE_UTF16NATIVE; + } + if( enc2SQLITE_UTF16BE ){ + return SQLITE_MISUSE_BKPT; + } + + /* Check if this call is removing or replacing an existing collation + ** sequence. If so, and there are active VMs, return busy. If there + ** are no active VMs, invalidate any pre-compiled statements. + */ + pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, 0); + if( pColl && pColl->xCmp ){ + if( db->nVdbeActive ){ + sqlite3Error(db, SQLITE_BUSY, + "unable to delete/modify collation sequence due to active statements"); + return SQLITE_BUSY; + } + sqlite3ExpirePreparedStatements(db); + invalidateCachedKeyInfo(db); + + /* If collation sequence pColl was created directly by a call to + ** sqlite3_create_collation, and not generated by synthCollSeq(), + ** then any copies made by synthCollSeq() need to be invalidated. + ** Also, collation destructor - CollSeq.xDel() - function may need + ** to be called. + */ + if( (pColl->enc & ~SQLITE_UTF16_ALIGNED)==enc2 ){ + CollSeq *aColl = sqlite3HashFind(&db->aCollSeq, zName, nName); + int j; + for(j=0; j<3; j++){ + CollSeq *p = &aColl[j]; + if( p->enc==pColl->enc ){ + if( p->xDel ){ + p->xDel(p->pUser); + } + p->xCmp = 0; + } + } + } + } + + pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, 1); + if( pColl==0 ) return SQLITE_NOMEM; + pColl->xCmp = xCompare; + pColl->pUser = pCtx; + pColl->xDel = xDel; + pColl->enc = (u8)(enc2 | (enc & SQLITE_UTF16_ALIGNED)); + sqlite3Error(db, SQLITE_OK, 0); + return SQLITE_OK; +} + + +/* +** This array defines hard upper bounds on limit values. The +** initializer must be kept in sync with the SQLITE_LIMIT_* +** #defines in sqlite3.h. +*/ +static const int aHardLimit[] = { + SQLITE_MAX_LENGTH, + SQLITE_MAX_SQL_LENGTH, + SQLITE_MAX_COLUMN, + SQLITE_MAX_EXPR_DEPTH, + SQLITE_MAX_COMPOUND_SELECT, + SQLITE_MAX_VDBE_OP, + SQLITE_MAX_FUNCTION_ARG, + SQLITE_MAX_ATTACHED, + SQLITE_MAX_LIKE_PATTERN_LENGTH, + SQLITE_MAX_VARIABLE_NUMBER, + SQLITE_MAX_TRIGGER_DEPTH, +}; + +/* +** Make sure the hard limits are set to reasonable values +*/ +#if SQLITE_MAX_LENGTH<100 +# error SQLITE_MAX_LENGTH must be at least 100 +#endif +#if SQLITE_MAX_SQL_LENGTH<100 +# error SQLITE_MAX_SQL_LENGTH must be at least 100 +#endif +#if SQLITE_MAX_SQL_LENGTH>SQLITE_MAX_LENGTH +# error SQLITE_MAX_SQL_LENGTH must not be greater than SQLITE_MAX_LENGTH +#endif +#if SQLITE_MAX_COMPOUND_SELECT<2 +# error SQLITE_MAX_COMPOUND_SELECT must be at least 2 +#endif +#if SQLITE_MAX_VDBE_OP<40 +# error SQLITE_MAX_VDBE_OP must be at least 40 +#endif +#if SQLITE_MAX_FUNCTION_ARG<0 || SQLITE_MAX_FUNCTION_ARG>1000 +# error SQLITE_MAX_FUNCTION_ARG must be between 0 and 1000 +#endif +#if SQLITE_MAX_ATTACHED<0 || SQLITE_MAX_ATTACHED>62 +# error SQLITE_MAX_ATTACHED must be between 0 and 62 +#endif +#if SQLITE_MAX_LIKE_PATTERN_LENGTH<1 +# error SQLITE_MAX_LIKE_PATTERN_LENGTH must be at least 1 +#endif +#if SQLITE_MAX_COLUMN>32767 +# error SQLITE_MAX_COLUMN must not exceed 32767 +#endif +#if SQLITE_MAX_TRIGGER_DEPTH<1 +# error SQLITE_MAX_TRIGGER_DEPTH must be at least 1 +#endif + + +/* +** Change the value of a limit. Report the old value. +** If an invalid limit index is supplied, report -1. +** Make no changes but still report the old value if the +** new limit is negative. +** +** A new lower limit does not shrink existing constructs. +** It merely prevents new constructs that exceed the limit +** from forming. +*/ +SQLITE_API int sqlite3_limit(sqlite3 *db, int limitId, int newLimit){ + int oldLimit; + + + /* EVIDENCE-OF: R-30189-54097 For each limit category SQLITE_LIMIT_NAME + ** there is a hard upper bound set at compile-time by a C preprocessor + ** macro called SQLITE_MAX_NAME. (The "_LIMIT_" in the name is changed to + ** "_MAX_".) + */ + assert( aHardLimit[SQLITE_LIMIT_LENGTH]==SQLITE_MAX_LENGTH ); + assert( aHardLimit[SQLITE_LIMIT_SQL_LENGTH]==SQLITE_MAX_SQL_LENGTH ); + assert( aHardLimit[SQLITE_LIMIT_COLUMN]==SQLITE_MAX_COLUMN ); + assert( aHardLimit[SQLITE_LIMIT_EXPR_DEPTH]==SQLITE_MAX_EXPR_DEPTH ); + assert( aHardLimit[SQLITE_LIMIT_COMPOUND_SELECT]==SQLITE_MAX_COMPOUND_SELECT); + assert( aHardLimit[SQLITE_LIMIT_VDBE_OP]==SQLITE_MAX_VDBE_OP ); + assert( aHardLimit[SQLITE_LIMIT_FUNCTION_ARG]==SQLITE_MAX_FUNCTION_ARG ); + assert( aHardLimit[SQLITE_LIMIT_ATTACHED]==SQLITE_MAX_ATTACHED ); + assert( aHardLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]== + SQLITE_MAX_LIKE_PATTERN_LENGTH ); + assert( aHardLimit[SQLITE_LIMIT_VARIABLE_NUMBER]==SQLITE_MAX_VARIABLE_NUMBER); + assert( aHardLimit[SQLITE_LIMIT_TRIGGER_DEPTH]==SQLITE_MAX_TRIGGER_DEPTH ); + assert( SQLITE_LIMIT_TRIGGER_DEPTH==(SQLITE_N_LIMIT-1) ); + + + if( limitId<0 || limitId>=SQLITE_N_LIMIT ){ + return -1; + } + oldLimit = db->aLimit[limitId]; + if( newLimit>=0 ){ /* IMP: R-52476-28732 */ + if( newLimit>aHardLimit[limitId] ){ + newLimit = aHardLimit[limitId]; /* IMP: R-51463-25634 */ + } + db->aLimit[limitId] = newLimit; + } + return oldLimit; /* IMP: R-53341-35419 */ +} + +/* +** This function is used to parse both URIs and non-URI filenames passed by the +** user to API functions sqlite3_open() or sqlite3_open_v2(), and for database +** URIs specified as part of ATTACH statements. +** +** The first argument to this function is the name of the VFS to use (or +** a NULL to signify the default VFS) if the URI does not contain a "vfs=xxx" +** query parameter. The second argument contains the URI (or non-URI filename) +** itself. When this function is called the *pFlags variable should contain +** the default flags to open the database handle with. The value stored in +** *pFlags may be updated before returning if the URI filename contains +** "cache=xxx" or "mode=xxx" query parameters. +** +** If successful, SQLITE_OK is returned. In this case *ppVfs is set to point to +** the VFS that should be used to open the database file. *pzFile is set to +** point to a buffer containing the name of the file to open. It is the +** responsibility of the caller to eventually call sqlite3_free() to release +** this buffer. +** +** If an error occurs, then an SQLite error code is returned and *pzErrMsg +** may be set to point to a buffer containing an English language error +** message. It is the responsibility of the caller to eventually release +** this buffer by calling sqlite3_free(). +*/ +SQLITE_PRIVATE int sqlite3ParseUri( + const char *zDefaultVfs, /* VFS to use if no "vfs=xxx" query option */ + const char *zUri, /* Nul-terminated URI to parse */ + unsigned int *pFlags, /* IN/OUT: SQLITE_OPEN_XXX flags */ + sqlite3_vfs **ppVfs, /* OUT: VFS to use */ + char **pzFile, /* OUT: Filename component of URI */ + char **pzErrMsg /* OUT: Error message (if rc!=SQLITE_OK) */ +){ + int rc = SQLITE_OK; + unsigned int flags = *pFlags; + const char *zVfs = zDefaultVfs; + char *zFile; + char c; + int nUri = sqlite3Strlen30(zUri); + + assert( *pzErrMsg==0 ); + + if( ((flags & SQLITE_OPEN_URI) || sqlite3GlobalConfig.bOpenUri) + && nUri>=5 && memcmp(zUri, "file:", 5)==0 + ){ + char *zOpt; + int eState; /* Parser state when parsing URI */ + int iIn; /* Input character index */ + int iOut = 0; /* Output character index */ + int nByte = nUri+2; /* Bytes of space to allocate */ + + /* Make sure the SQLITE_OPEN_URI flag is set to indicate to the VFS xOpen + ** method that there may be extra parameters following the file-name. */ + flags |= SQLITE_OPEN_URI; + + for(iIn=0; iIn=0 && octet<256 ); + if( octet==0 ){ + /* This branch is taken when "%00" appears within the URI. In this + ** case we ignore all text in the remainder of the path, name or + ** value currently being parsed. So ignore the current character + ** and skip to the next "?", "=" or "&", as appropriate. */ + while( (c = zUri[iIn])!=0 && c!='#' + && (eState!=0 || c!='?') + && (eState!=1 || (c!='=' && c!='&')) + && (eState!=2 || c!='&') + ){ + iIn++; + } + continue; + } + c = octet; + }else if( eState==1 && (c=='&' || c=='=') ){ + if( zFile[iOut-1]==0 ){ + /* An empty option name. Ignore this option altogether. */ + while( zUri[iIn] && zUri[iIn]!='#' && zUri[iIn-1]!='&' ) iIn++; + continue; + } + if( c=='&' ){ + zFile[iOut++] = '\0'; + }else{ + eState = 2; + } + c = 0; + }else if( (eState==0 && c=='?') || (eState==2 && c=='&') ){ + c = 0; + eState = 1; + } + zFile[iOut++] = c; + } + if( eState==1 ) zFile[iOut++] = '\0'; + zFile[iOut++] = '\0'; + zFile[iOut++] = '\0'; + + /* Check if there were any options specified that should be interpreted + ** here. Options that are interpreted here include "vfs" and those that + ** correspond to flags that may be passed to the sqlite3_open_v2() + ** method. */ + zOpt = &zFile[sqlite3Strlen30(zFile)+1]; + while( zOpt[0] ){ + int nOpt = sqlite3Strlen30(zOpt); + char *zVal = &zOpt[nOpt+1]; + int nVal = sqlite3Strlen30(zVal); + + if( nOpt==3 && memcmp("vfs", zOpt, 3)==0 ){ + zVfs = zVal; + }else{ + struct OpenMode { + const char *z; + int mode; + } *aMode = 0; + char *zModeType = 0; + int mask = 0; + int limit = 0; + + if( nOpt==5 && memcmp("cache", zOpt, 5)==0 ){ + static struct OpenMode aCacheMode[] = { + { "shared", SQLITE_OPEN_SHAREDCACHE }, + { "private", SQLITE_OPEN_PRIVATECACHE }, + { 0, 0 } + }; + + mask = SQLITE_OPEN_SHAREDCACHE|SQLITE_OPEN_PRIVATECACHE; + aMode = aCacheMode; + limit = mask; + zModeType = "cache"; + } + if( nOpt==4 && memcmp("mode", zOpt, 4)==0 ){ + static struct OpenMode aOpenMode[] = { + { "ro", SQLITE_OPEN_READONLY }, + { "rw", SQLITE_OPEN_READWRITE }, + { "rwc", SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE }, + { "memory", SQLITE_OPEN_MEMORY }, + { 0, 0 } + }; + + mask = SQLITE_OPEN_READONLY | SQLITE_OPEN_READWRITE + | SQLITE_OPEN_CREATE | SQLITE_OPEN_MEMORY; + aMode = aOpenMode; + limit = mask & flags; + zModeType = "access"; + } + + if( aMode ){ + int i; + int mode = 0; + for(i=0; aMode[i].z; i++){ + const char *z = aMode[i].z; + if( nVal==sqlite3Strlen30(z) && 0==memcmp(zVal, z, nVal) ){ + mode = aMode[i].mode; + break; + } + } + if( mode==0 ){ + *pzErrMsg = sqlite3_mprintf("no such %s mode: %s", zModeType, zVal); + rc = SQLITE_ERROR; + goto parse_uri_out; + } + if( (mode & ~SQLITE_OPEN_MEMORY)>limit ){ + *pzErrMsg = sqlite3_mprintf("%s mode not allowed: %s", + zModeType, zVal); + rc = SQLITE_PERM; + goto parse_uri_out; + } + flags = (flags & ~mask) | mode; + } + } + + zOpt = &zVal[nVal+1]; + } + + }else{ + zFile = sqlite3_malloc(nUri+2); + if( !zFile ) return SQLITE_NOMEM; + memcpy(zFile, zUri, nUri); + zFile[nUri] = '\0'; + zFile[nUri+1] = '\0'; + flags &= ~SQLITE_OPEN_URI; + } + + *ppVfs = sqlite3_vfs_find(zVfs); + if( *ppVfs==0 ){ + *pzErrMsg = sqlite3_mprintf("no such vfs: %s", zVfs); + rc = SQLITE_ERROR; + } + parse_uri_out: + if( rc!=SQLITE_OK ){ + sqlite3_free(zFile); + zFile = 0; + } + *pFlags = flags; + *pzFile = zFile; + return rc; +} + + +/* +** This routine does the work of opening a database on behalf of +** sqlite3_open() and sqlite3_open16(). The database filename "zFilename" +** is UTF-8 encoded. +*/ +static int openDatabase( + const char *zFilename, /* Database filename UTF-8 encoded */ + sqlite3 **ppDb, /* OUT: Returned database handle */ + unsigned int flags, /* Operational flags */ + const char *zVfs /* Name of the VFS to use */ +){ + sqlite3 *db; /* Store allocated handle here */ + int rc; /* Return code */ + int isThreadsafe; /* True for threadsafe connections */ + char *zOpen = 0; /* Filename argument to pass to BtreeOpen() */ + char *zErrMsg = 0; /* Error message from sqlite3ParseUri() */ + + *ppDb = 0; +#ifndef SQLITE_OMIT_AUTOINIT + rc = sqlite3_initialize(); + if( rc ) return rc; +#endif + + /* Only allow sensible combinations of bits in the flags argument. + ** Throw an error if any non-sense combination is used. If we + ** do not block illegal combinations here, it could trigger + ** assert() statements in deeper layers. Sensible combinations + ** are: + ** + ** 1: SQLITE_OPEN_READONLY + ** 2: SQLITE_OPEN_READWRITE + ** 6: SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE + */ + assert( SQLITE_OPEN_READONLY == 0x01 ); + assert( SQLITE_OPEN_READWRITE == 0x02 ); + assert( SQLITE_OPEN_CREATE == 0x04 ); + testcase( (1<<(flags&7))==0x02 ); /* READONLY */ + testcase( (1<<(flags&7))==0x04 ); /* READWRITE */ + testcase( (1<<(flags&7))==0x40 ); /* READWRITE | CREATE */ + if( ((1<<(flags&7)) & 0x46)==0 ) return SQLITE_MISUSE_BKPT; + + if( sqlite3GlobalConfig.bCoreMutex==0 ){ + isThreadsafe = 0; + }else if( flags & SQLITE_OPEN_NOMUTEX ){ + isThreadsafe = 0; + }else if( flags & SQLITE_OPEN_FULLMUTEX ){ + isThreadsafe = 1; + }else{ + isThreadsafe = sqlite3GlobalConfig.bFullMutex; + } + if( flags & SQLITE_OPEN_PRIVATECACHE ){ + flags &= ~SQLITE_OPEN_SHAREDCACHE; + }else if( sqlite3GlobalConfig.sharedCacheEnabled ){ + flags |= SQLITE_OPEN_SHAREDCACHE; + } + + /* Remove harmful bits from the flags parameter + ** + ** The SQLITE_OPEN_NOMUTEX and SQLITE_OPEN_FULLMUTEX flags were + ** dealt with in the previous code block. Besides these, the only + ** valid input flags for sqlite3_open_v2() are SQLITE_OPEN_READONLY, + ** SQLITE_OPEN_READWRITE, SQLITE_OPEN_CREATE, SQLITE_OPEN_SHAREDCACHE, + ** SQLITE_OPEN_PRIVATECACHE, and some reserved bits. Silently mask + ** off all other flags. + */ + flags &= ~( SQLITE_OPEN_DELETEONCLOSE | + SQLITE_OPEN_EXCLUSIVE | + SQLITE_OPEN_MAIN_DB | + SQLITE_OPEN_TEMP_DB | + SQLITE_OPEN_TRANSIENT_DB | + SQLITE_OPEN_MAIN_JOURNAL | + SQLITE_OPEN_TEMP_JOURNAL | + SQLITE_OPEN_SUBJOURNAL | + SQLITE_OPEN_MASTER_JOURNAL | + SQLITE_OPEN_NOMUTEX | + SQLITE_OPEN_FULLMUTEX | + SQLITE_OPEN_WAL + ); + + /* Allocate the sqlite data structure */ + db = sqlite3MallocZero( sizeof(sqlite3) ); + if( db==0 ) goto opendb_out; + if( isThreadsafe ){ + db->mutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE); + if( db->mutex==0 ){ + sqlite3_free(db); + db = 0; + goto opendb_out; + } + } + sqlite3_mutex_enter(db->mutex); + db->errMask = 0xff; + db->nDb = 2; + db->magic = SQLITE_MAGIC_BUSY; + db->aDb = db->aDbStatic; + + assert( sizeof(db->aLimit)==sizeof(aHardLimit) ); + memcpy(db->aLimit, aHardLimit, sizeof(db->aLimit)); + db->autoCommit = 1; + db->nextAutovac = -1; + db->szMmap = sqlite3GlobalConfig.szMmap; + db->nextPagesize = 0; + db->flags |= SQLITE_ShortColNames | SQLITE_EnableTrigger | SQLITE_CacheSpill +#if !defined(SQLITE_DEFAULT_AUTOMATIC_INDEX) || SQLITE_DEFAULT_AUTOMATIC_INDEX + | SQLITE_AutoIndex +#endif +#if SQLITE_DEFAULT_FILE_FORMAT<4 + | SQLITE_LegacyFileFmt +#endif +#ifdef SQLITE_ENABLE_LOAD_EXTENSION + | SQLITE_LoadExtension +#endif +#if SQLITE_DEFAULT_RECURSIVE_TRIGGERS + | SQLITE_RecTriggers +#endif +#if defined(SQLITE_DEFAULT_FOREIGN_KEYS) && SQLITE_DEFAULT_FOREIGN_KEYS + | SQLITE_ForeignKeys +#endif + ; + sqlite3HashInit(&db->aCollSeq); +#ifndef SQLITE_OMIT_VIRTUALTABLE + sqlite3HashInit(&db->aModule); +#endif + + /* Add the default collation sequence BINARY. BINARY works for both UTF-8 + ** and UTF-16, so add a version for each to avoid any unnecessary + ** conversions. The only error that can occur here is a malloc() failure. + */ + createCollation(db, "BINARY", SQLITE_UTF8, 0, binCollFunc, 0); + createCollation(db, "BINARY", SQLITE_UTF16BE, 0, binCollFunc, 0); + createCollation(db, "BINARY", SQLITE_UTF16LE, 0, binCollFunc, 0); + createCollation(db, "RTRIM", SQLITE_UTF8, (void*)1, binCollFunc, 0); + if( db->mallocFailed ){ + goto opendb_out; + } + db->pDfltColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "BINARY", 0); + assert( db->pDfltColl!=0 ); + + /* Also add a UTF-8 case-insensitive collation sequence. */ + createCollation(db, "NOCASE", SQLITE_UTF8, 0, nocaseCollatingFunc, 0); + + /* Parse the filename/URI argument. */ + db->openFlags = flags; + rc = sqlite3ParseUri(zVfs, zFilename, &flags, &db->pVfs, &zOpen, &zErrMsg); + if( rc!=SQLITE_OK ){ + if( rc==SQLITE_NOMEM ) db->mallocFailed = 1; + sqlite3Error(db, rc, zErrMsg ? "%s" : 0, zErrMsg); + sqlite3_free(zErrMsg); + goto opendb_out; + } + + /* Open the backend database driver */ + rc = sqlite3BtreeOpen(db->pVfs, zOpen, db, &db->aDb[0].pBt, 0, + flags | SQLITE_OPEN_MAIN_DB); + if( rc!=SQLITE_OK ){ + if( rc==SQLITE_IOERR_NOMEM ){ + rc = SQLITE_NOMEM; + } + sqlite3Error(db, rc, 0); + goto opendb_out; + } + db->aDb[0].pSchema = sqlite3SchemaGet(db, db->aDb[0].pBt); + db->aDb[1].pSchema = sqlite3SchemaGet(db, 0); + + + /* The default safety_level for the main database is 'full'; for the temp + ** database it is 'NONE'. This matches the pager layer defaults. + */ + db->aDb[0].zName = "main"; + db->aDb[0].safety_level = 3; + db->aDb[1].zName = "temp"; + db->aDb[1].safety_level = 1; + + db->magic = SQLITE_MAGIC_OPEN; + if( db->mallocFailed ){ + goto opendb_out; + } + + /* Register all built-in functions, but do not attempt to read the + ** database schema yet. This is delayed until the first time the database + ** is accessed. + */ + sqlite3Error(db, SQLITE_OK, 0); + sqlite3RegisterBuiltinFunctions(db); + + /* Load automatic extensions - extensions that have been registered + ** using the sqlite3_automatic_extension() API. + */ + rc = sqlite3_errcode(db); + if( rc==SQLITE_OK ){ + sqlite3AutoLoadExtensions(db); + rc = sqlite3_errcode(db); + if( rc!=SQLITE_OK ){ + goto opendb_out; + } + } + +#ifdef SQLITE_ENABLE_FTS1 + if( !db->mallocFailed ){ + extern int sqlite3Fts1Init(sqlite3*); + rc = sqlite3Fts1Init(db); + } +#endif + +#ifdef SQLITE_ENABLE_FTS2 + if( !db->mallocFailed && rc==SQLITE_OK ){ + extern int sqlite3Fts2Init(sqlite3*); + rc = sqlite3Fts2Init(db); + } +#endif + +#ifdef SQLITE_ENABLE_FTS3 + if( !db->mallocFailed && rc==SQLITE_OK ){ + rc = sqlite3Fts3Init(db); + } +#endif + +#ifdef SQLITE_ENABLE_ICU + if( !db->mallocFailed && rc==SQLITE_OK ){ + rc = sqlite3IcuInit(db); + } +#endif + +#ifdef SQLITE_ENABLE_RTREE + if( !db->mallocFailed && rc==SQLITE_OK){ + rc = sqlite3RtreeInit(db); + } +#endif + + /* -DSQLITE_DEFAULT_LOCKING_MODE=1 makes EXCLUSIVE the default locking + ** mode. -DSQLITE_DEFAULT_LOCKING_MODE=0 make NORMAL the default locking + ** mode. Doing nothing at all also makes NORMAL the default. + */ +#ifdef SQLITE_DEFAULT_LOCKING_MODE + db->dfltLockMode = SQLITE_DEFAULT_LOCKING_MODE; + sqlite3PagerLockingMode(sqlite3BtreePager(db->aDb[0].pBt), + SQLITE_DEFAULT_LOCKING_MODE); +#endif + + if( rc ) sqlite3Error(db, rc, 0); + + /* Enable the lookaside-malloc subsystem */ + setupLookaside(db, 0, sqlite3GlobalConfig.szLookaside, + sqlite3GlobalConfig.nLookaside); + + sqlite3_wal_autocheckpoint(db, SQLITE_DEFAULT_WAL_AUTOCHECKPOINT); + +opendb_out: + sqlite3_free(zOpen); + if( db ){ + assert( db->mutex!=0 || isThreadsafe==0 || sqlite3GlobalConfig.bFullMutex==0 ); + sqlite3_mutex_leave(db->mutex); + } + rc = sqlite3_errcode(db); + assert( db!=0 || rc==SQLITE_NOMEM ); + if( rc==SQLITE_NOMEM ){ + sqlite3_close(db); + db = 0; + }else if( rc!=SQLITE_OK ){ + db->magic = SQLITE_MAGIC_SICK; + } + *ppDb = db; +#ifdef SQLITE_ENABLE_SQLLOG + if( sqlite3GlobalConfig.xSqllog ){ + /* Opening a db handle. Fourth parameter is passed 0. */ + void *pArg = sqlite3GlobalConfig.pSqllogArg; + sqlite3GlobalConfig.xSqllog(pArg, db, zFilename, 0); + } +#endif + return sqlite3ApiExit(0, rc); +} + +/* +** Open a new database handle. +*/ +SQLITE_API int sqlite3_open( + const char *zFilename, + sqlite3 **ppDb +){ + return openDatabase(zFilename, ppDb, + SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0); +} +SQLITE_API int sqlite3_open_v2( + const char *filename, /* Database filename (UTF-8) */ + sqlite3 **ppDb, /* OUT: SQLite db handle */ + int flags, /* Flags */ + const char *zVfs /* Name of VFS module to use */ +){ + return openDatabase(filename, ppDb, (unsigned int)flags, zVfs); +} + +#ifndef SQLITE_OMIT_UTF16 +/* +** Open a new database handle. +*/ +SQLITE_API int sqlite3_open16( + const void *zFilename, + sqlite3 **ppDb +){ + char const *zFilename8; /* zFilename encoded in UTF-8 instead of UTF-16 */ + sqlite3_value *pVal; + int rc; + + assert( zFilename ); + assert( ppDb ); + *ppDb = 0; +#ifndef SQLITE_OMIT_AUTOINIT + rc = sqlite3_initialize(); + if( rc ) return rc; +#endif + pVal = sqlite3ValueNew(0); + sqlite3ValueSetStr(pVal, -1, zFilename, SQLITE_UTF16NATIVE, SQLITE_STATIC); + zFilename8 = sqlite3ValueText(pVal, SQLITE_UTF8); + if( zFilename8 ){ + rc = openDatabase(zFilename8, ppDb, + SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0); + assert( *ppDb || rc==SQLITE_NOMEM ); + if( rc==SQLITE_OK && !DbHasProperty(*ppDb, 0, DB_SchemaLoaded) ){ + ENC(*ppDb) = SQLITE_UTF16NATIVE; + } + }else{ + rc = SQLITE_NOMEM; + } + sqlite3ValueFree(pVal); + + return sqlite3ApiExit(0, rc); +} +#endif /* SQLITE_OMIT_UTF16 */ + +/* +** Register a new collation sequence with the database handle db. +*/ +SQLITE_API int sqlite3_create_collation( + sqlite3* db, + const char *zName, + int enc, + void* pCtx, + int(*xCompare)(void*,int,const void*,int,const void*) +){ + int rc; + sqlite3_mutex_enter(db->mutex); + assert( !db->mallocFailed ); + rc = createCollation(db, zName, (u8)enc, pCtx, xCompare, 0); + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +/* +** Register a new collation sequence with the database handle db. +*/ +SQLITE_API int sqlite3_create_collation_v2( + sqlite3* db, + const char *zName, + int enc, + void* pCtx, + int(*xCompare)(void*,int,const void*,int,const void*), + void(*xDel)(void*) +){ + int rc; + sqlite3_mutex_enter(db->mutex); + assert( !db->mallocFailed ); + rc = createCollation(db, zName, (u8)enc, pCtx, xCompare, xDel); + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +#ifndef SQLITE_OMIT_UTF16 +/* +** Register a new collation sequence with the database handle db. +*/ +SQLITE_API int sqlite3_create_collation16( + sqlite3* db, + const void *zName, + int enc, + void* pCtx, + int(*xCompare)(void*,int,const void*,int,const void*) +){ + int rc = SQLITE_OK; + char *zName8; + sqlite3_mutex_enter(db->mutex); + assert( !db->mallocFailed ); + zName8 = sqlite3Utf16to8(db, zName, -1, SQLITE_UTF16NATIVE); + if( zName8 ){ + rc = createCollation(db, zName8, (u8)enc, pCtx, xCompare, 0); + sqlite3DbFree(db, zName8); + } + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} +#endif /* SQLITE_OMIT_UTF16 */ + +/* +** Register a collation sequence factory callback with the database handle +** db. Replace any previously installed collation sequence factory. +*/ +SQLITE_API int sqlite3_collation_needed( + sqlite3 *db, + void *pCollNeededArg, + void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*) +){ + sqlite3_mutex_enter(db->mutex); + db->xCollNeeded = xCollNeeded; + db->xCollNeeded16 = 0; + db->pCollNeededArg = pCollNeededArg; + sqlite3_mutex_leave(db->mutex); + return SQLITE_OK; +} + +#ifndef SQLITE_OMIT_UTF16 +/* +** Register a collation sequence factory callback with the database handle +** db. Replace any previously installed collation sequence factory. +*/ +SQLITE_API int sqlite3_collation_needed16( + sqlite3 *db, + void *pCollNeededArg, + void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*) +){ + sqlite3_mutex_enter(db->mutex); + db->xCollNeeded = 0; + db->xCollNeeded16 = xCollNeeded16; + db->pCollNeededArg = pCollNeededArg; + sqlite3_mutex_leave(db->mutex); + return SQLITE_OK; +} +#endif /* SQLITE_OMIT_UTF16 */ + +#ifndef SQLITE_OMIT_DEPRECATED +/* +** This function is now an anachronism. It used to be used to recover from a +** malloc() failure, but SQLite now does this automatically. +*/ +SQLITE_API int sqlite3_global_recover(void){ + return SQLITE_OK; +} +#endif + +/* +** Test to see whether or not the database connection is in autocommit +** mode. Return TRUE if it is and FALSE if not. Autocommit mode is on +** by default. Autocommit is disabled by a BEGIN statement and reenabled +** by the next COMMIT or ROLLBACK. +*/ +SQLITE_API int sqlite3_get_autocommit(sqlite3 *db){ + return db->autoCommit; +} + +/* +** The following routines are subtitutes for constants SQLITE_CORRUPT, +** SQLITE_MISUSE, SQLITE_CANTOPEN, SQLITE_IOERR and possibly other error +** constants. They server two purposes: +** +** 1. Serve as a convenient place to set a breakpoint in a debugger +** to detect when version error conditions occurs. +** +** 2. Invoke sqlite3_log() to provide the source code location where +** a low-level error is first detected. +*/ +SQLITE_PRIVATE int sqlite3CorruptError(int lineno){ + testcase( sqlite3GlobalConfig.xLog!=0 ); + sqlite3_log(SQLITE_CORRUPT, + "database corruption at line %d of [%.10s]", + lineno, 20+sqlite3_sourceid()); + return SQLITE_CORRUPT; +} +SQLITE_PRIVATE int sqlite3MisuseError(int lineno){ + testcase( sqlite3GlobalConfig.xLog!=0 ); + sqlite3_log(SQLITE_MISUSE, + "misuse at line %d of [%.10s]", + lineno, 20+sqlite3_sourceid()); + return SQLITE_MISUSE; +} +SQLITE_PRIVATE int sqlite3CantopenError(int lineno){ + testcase( sqlite3GlobalConfig.xLog!=0 ); + sqlite3_log(SQLITE_CANTOPEN, + "cannot open file at line %d of [%.10s]", + lineno, 20+sqlite3_sourceid()); + return SQLITE_CANTOPEN; +} + + +#ifndef SQLITE_OMIT_DEPRECATED +/* +** This is a convenience routine that makes sure that all thread-specific +** data for this thread has been deallocated. +** +** SQLite no longer uses thread-specific data so this routine is now a +** no-op. It is retained for historical compatibility. +*/ +SQLITE_API void sqlite3_thread_cleanup(void){ +} +#endif + +/* +** Return meta information about a specific column of a database table. +** See comment in sqlite3.h (sqlite.h.in) for details. +*/ +#ifdef SQLITE_ENABLE_COLUMN_METADATA +SQLITE_API int sqlite3_table_column_metadata( + sqlite3 *db, /* Connection handle */ + const char *zDbName, /* Database name or NULL */ + const char *zTableName, /* Table name */ + const char *zColumnName, /* Column name */ + char const **pzDataType, /* OUTPUT: Declared data type */ + char const **pzCollSeq, /* OUTPUT: Collation sequence name */ + int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */ + int *pPrimaryKey, /* OUTPUT: True if column part of PK */ + int *pAutoinc /* OUTPUT: True if column is auto-increment */ +){ + int rc; + char *zErrMsg = 0; + Table *pTab = 0; + Column *pCol = 0; + int iCol; + + char const *zDataType = 0; + char const *zCollSeq = 0; + int notnull = 0; + int primarykey = 0; + int autoinc = 0; + + /* Ensure the database schema has been loaded */ + sqlite3_mutex_enter(db->mutex); + sqlite3BtreeEnterAll(db); + rc = sqlite3Init(db, &zErrMsg); + if( SQLITE_OK!=rc ){ + goto error_out; + } + + /* Locate the table in question */ + pTab = sqlite3FindTable(db, zTableName, zDbName); + if( !pTab || pTab->pSelect ){ + pTab = 0; + goto error_out; + } + + /* Find the column for which info is requested */ + if( sqlite3IsRowid(zColumnName) ){ + iCol = pTab->iPKey; + if( iCol>=0 ){ + pCol = &pTab->aCol[iCol]; + } + }else{ + for(iCol=0; iColnCol; iCol++){ + pCol = &pTab->aCol[iCol]; + if( 0==sqlite3StrICmp(pCol->zName, zColumnName) ){ + break; + } + } + if( iCol==pTab->nCol ){ + pTab = 0; + goto error_out; + } + } + + /* The following block stores the meta information that will be returned + ** to the caller in local variables zDataType, zCollSeq, notnull, primarykey + ** and autoinc. At this point there are two possibilities: + ** + ** 1. The specified column name was rowid", "oid" or "_rowid_" + ** and there is no explicitly declared IPK column. + ** + ** 2. The table is not a view and the column name identified an + ** explicitly declared column. Copy meta information from *pCol. + */ + if( pCol ){ + zDataType = pCol->zType; + zCollSeq = pCol->zColl; + notnull = pCol->notNull!=0; + primarykey = (pCol->colFlags & COLFLAG_PRIMKEY)!=0; + autoinc = pTab->iPKey==iCol && (pTab->tabFlags & TF_Autoincrement)!=0; + }else{ + zDataType = "INTEGER"; + primarykey = 1; + } + if( !zCollSeq ){ + zCollSeq = "BINARY"; + } + +error_out: + sqlite3BtreeLeaveAll(db); + + /* Whether the function call succeeded or failed, set the output parameters + ** to whatever their local counterparts contain. If an error did occur, + ** this has the effect of zeroing all output parameters. + */ + if( pzDataType ) *pzDataType = zDataType; + if( pzCollSeq ) *pzCollSeq = zCollSeq; + if( pNotNull ) *pNotNull = notnull; + if( pPrimaryKey ) *pPrimaryKey = primarykey; + if( pAutoinc ) *pAutoinc = autoinc; + + if( SQLITE_OK==rc && !pTab ){ + sqlite3DbFree(db, zErrMsg); + zErrMsg = sqlite3MPrintf(db, "no such table column: %s.%s", zTableName, + zColumnName); + rc = SQLITE_ERROR; + } + sqlite3Error(db, rc, (zErrMsg?"%s":0), zErrMsg); + sqlite3DbFree(db, zErrMsg); + rc = sqlite3ApiExit(db, rc); + sqlite3_mutex_leave(db->mutex); + return rc; +} +#endif + +/* +** Sleep for a little while. Return the amount of time slept. +*/ +SQLITE_API int sqlite3_sleep(int ms){ + sqlite3_vfs *pVfs; + int rc; + pVfs = sqlite3_vfs_find(0); + if( pVfs==0 ) return 0; + + /* This function works in milliseconds, but the underlying OsSleep() + ** API uses microseconds. Hence the 1000's. + */ + rc = (sqlite3OsSleep(pVfs, 1000*ms)/1000); + return rc; +} + +/* +** Enable or disable the extended result codes. +*/ +SQLITE_API int sqlite3_extended_result_codes(sqlite3 *db, int onoff){ + sqlite3_mutex_enter(db->mutex); + db->errMask = onoff ? 0xffffffff : 0xff; + sqlite3_mutex_leave(db->mutex); + return SQLITE_OK; +} + +/* +** Invoke the xFileControl method on a particular database. +*/ +SQLITE_API int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){ + int rc = SQLITE_ERROR; + Btree *pBtree; + + sqlite3_mutex_enter(db->mutex); + pBtree = sqlite3DbNameToBtree(db, zDbName); + if( pBtree ){ + Pager *pPager; + sqlite3_file *fd; + sqlite3BtreeEnter(pBtree); + pPager = sqlite3BtreePager(pBtree); + assert( pPager!=0 ); + fd = sqlite3PagerFile(pPager); + assert( fd!=0 ); + if( op==SQLITE_FCNTL_FILE_POINTER ){ + *(sqlite3_file**)pArg = fd; + rc = SQLITE_OK; + }else if( fd->pMethods ){ + rc = sqlite3OsFileControl(fd, op, pArg); + }else{ + rc = SQLITE_NOTFOUND; + } + sqlite3BtreeLeave(pBtree); + } + sqlite3_mutex_leave(db->mutex); + return rc; +} + +/* +** Interface to the testing logic. +*/ +SQLITE_API int sqlite3_test_control(int op, ...){ + int rc = 0; +#ifndef SQLITE_OMIT_BUILTIN_TEST + va_list ap; + va_start(ap, op); + switch( op ){ + + /* + ** Save the current state of the PRNG. + */ + case SQLITE_TESTCTRL_PRNG_SAVE: { + sqlite3PrngSaveState(); + break; + } + + /* + ** Restore the state of the PRNG to the last state saved using + ** PRNG_SAVE. If PRNG_SAVE has never before been called, then + ** this verb acts like PRNG_RESET. + */ + case SQLITE_TESTCTRL_PRNG_RESTORE: { + sqlite3PrngRestoreState(); + break; + } + + /* + ** Reset the PRNG back to its uninitialized state. The next call + ** to sqlite3_randomness() will reseed the PRNG using a single call + ** to the xRandomness method of the default VFS. + */ + case SQLITE_TESTCTRL_PRNG_RESET: { + sqlite3_randomness(0,0); + break; + } + + /* + ** sqlite3_test_control(BITVEC_TEST, size, program) + ** + ** Run a test against a Bitvec object of size. The program argument + ** is an array of integers that defines the test. Return -1 on a + ** memory allocation error, 0 on success, or non-zero for an error. + ** See the sqlite3BitvecBuiltinTest() for additional information. + */ + case SQLITE_TESTCTRL_BITVEC_TEST: { + int sz = va_arg(ap, int); + int *aProg = va_arg(ap, int*); + rc = sqlite3BitvecBuiltinTest(sz, aProg); + break; + } + + /* + ** sqlite3_test_control(FAULT_INSTALL, xCallback) + ** + ** Arrange to invoke xCallback() whenever sqlite3FaultSim() is called, + ** if xCallback is not NULL. + ** + ** As a test of the fault simulator mechanism itself, sqlite3FaultSim(0) + ** is called immediately after installing the new callback and the return + ** value from sqlite3FaultSim(0) becomes the return from + ** sqlite3_test_control(). + */ + case SQLITE_TESTCTRL_FAULT_INSTALL: { + /* MSVC is picky about pulling func ptrs from va lists. + ** http://support.microsoft.com/kb/47961 + ** sqlite3Config.xTestCallback = va_arg(ap, int(*)(int)); + */ + typedef int(*TESTCALLBACKFUNC_t)(int); + sqlite3Config.xTestCallback = va_arg(ap, TESTCALLBACKFUNC_t); + rc = sqlite3FaultSim(0); + break; + } + + /* + ** sqlite3_test_control(BENIGN_MALLOC_HOOKS, xBegin, xEnd) + ** + ** Register hooks to call to indicate which malloc() failures + ** are benign. + */ + case SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS: { + typedef void (*void_function)(void); + void_function xBenignBegin; + void_function xBenignEnd; + xBenignBegin = va_arg(ap, void_function); + xBenignEnd = va_arg(ap, void_function); + sqlite3BenignMallocHooks(xBenignBegin, xBenignEnd); + break; + } + + /* + ** sqlite3_test_control(SQLITE_TESTCTRL_PENDING_BYTE, unsigned int X) + ** + ** Set the PENDING byte to the value in the argument, if X>0. + ** Make no changes if X==0. Return the value of the pending byte + ** as it existing before this routine was called. + ** + ** IMPORTANT: Changing the PENDING byte from 0x40000000 results in + ** an incompatible database file format. Changing the PENDING byte + ** while any database connection is open results in undefined and + ** dileterious behavior. + */ + case SQLITE_TESTCTRL_PENDING_BYTE: { + rc = PENDING_BYTE; +#ifndef SQLITE_OMIT_WSD + { + unsigned int newVal = va_arg(ap, unsigned int); + if( newVal ) sqlite3PendingByte = newVal; + } +#endif + break; + } + + /* + ** sqlite3_test_control(SQLITE_TESTCTRL_ASSERT, int X) + ** + ** This action provides a run-time test to see whether or not + ** assert() was enabled at compile-time. If X is true and assert() + ** is enabled, then the return value is true. If X is true and + ** assert() is disabled, then the return value is zero. If X is + ** false and assert() is enabled, then the assertion fires and the + ** process aborts. If X is false and assert() is disabled, then the + ** return value is zero. + */ + case SQLITE_TESTCTRL_ASSERT: { + volatile int x = 0; + assert( (x = va_arg(ap,int))!=0 ); + rc = x; + break; + } + + + /* + ** sqlite3_test_control(SQLITE_TESTCTRL_ALWAYS, int X) + ** + ** This action provides a run-time test to see how the ALWAYS and + ** NEVER macros were defined at compile-time. + ** + ** The return value is ALWAYS(X). + ** + ** The recommended test is X==2. If the return value is 2, that means + ** ALWAYS() and NEVER() are both no-op pass-through macros, which is the + ** default setting. If the return value is 1, then ALWAYS() is either + ** hard-coded to true or else it asserts if its argument is false. + ** The first behavior (hard-coded to true) is the case if + ** SQLITE_TESTCTRL_ASSERT shows that assert() is disabled and the second + ** behavior (assert if the argument to ALWAYS() is false) is the case if + ** SQLITE_TESTCTRL_ASSERT shows that assert() is enabled. + ** + ** The run-time test procedure might look something like this: + ** + ** if( sqlite3_test_control(SQLITE_TESTCTRL_ALWAYS, 2)==2 ){ + ** // ALWAYS() and NEVER() are no-op pass-through macros + ** }else if( sqlite3_test_control(SQLITE_TESTCTRL_ASSERT, 1) ){ + ** // ALWAYS(x) asserts that x is true. NEVER(x) asserts x is false. + ** }else{ + ** // ALWAYS(x) is a constant 1. NEVER(x) is a constant 0. + ** } + */ + case SQLITE_TESTCTRL_ALWAYS: { + int x = va_arg(ap,int); + rc = ALWAYS(x); + break; + } + + /* + ** sqlite3_test_control(SQLITE_TESTCTRL_BYTEORDER); + ** + ** The integer returned reveals the byte-order of the computer on which + ** SQLite is running: + ** + ** 1 big-endian, determined at run-time + ** 10 little-endian, determined at run-time + ** 432101 big-endian, determined at compile-time + ** 123410 little-endian, determined at compile-time + */ + case SQLITE_TESTCTRL_BYTEORDER: { + rc = SQLITE_BYTEORDER*100 + SQLITE_LITTLEENDIAN*10 + SQLITE_BIGENDIAN; + break; + } + + /* sqlite3_test_control(SQLITE_TESTCTRL_RESERVE, sqlite3 *db, int N) + ** + ** Set the nReserve size to N for the main database on the database + ** connection db. + */ + case SQLITE_TESTCTRL_RESERVE: { + sqlite3 *db = va_arg(ap, sqlite3*); + int x = va_arg(ap,int); + sqlite3_mutex_enter(db->mutex); + sqlite3BtreeSetPageSize(db->aDb[0].pBt, 0, x, 0); + sqlite3_mutex_leave(db->mutex); + break; + } + + /* sqlite3_test_control(SQLITE_TESTCTRL_OPTIMIZATIONS, sqlite3 *db, int N) + ** + ** Enable or disable various optimizations for testing purposes. The + ** argument N is a bitmask of optimizations to be disabled. For normal + ** operation N should be 0. The idea is that a test program (like the + ** SQL Logic Test or SLT test module) can run the same SQL multiple times + ** with various optimizations disabled to verify that the same answer + ** is obtained in every case. + */ + case SQLITE_TESTCTRL_OPTIMIZATIONS: { + sqlite3 *db = va_arg(ap, sqlite3*); + db->dbOptFlags = (u16)(va_arg(ap, int) & 0xffff); + break; + } + +#ifdef SQLITE_N_KEYWORD + /* sqlite3_test_control(SQLITE_TESTCTRL_ISKEYWORD, const char *zWord) + ** + ** If zWord is a keyword recognized by the parser, then return the + ** number of keywords. Or if zWord is not a keyword, return 0. + ** + ** This test feature is only available in the amalgamation since + ** the SQLITE_N_KEYWORD macro is not defined in this file if SQLite + ** is built using separate source files. + */ + case SQLITE_TESTCTRL_ISKEYWORD: { + const char *zWord = va_arg(ap, const char*); + int n = sqlite3Strlen30(zWord); + rc = (sqlite3KeywordCode((u8*)zWord, n)!=TK_ID) ? SQLITE_N_KEYWORD : 0; + break; + } +#endif + + /* sqlite3_test_control(SQLITE_TESTCTRL_SCRATCHMALLOC, sz, &pNew, pFree); + ** + ** Pass pFree into sqlite3ScratchFree(). + ** If sz>0 then allocate a scratch buffer into pNew. + */ + case SQLITE_TESTCTRL_SCRATCHMALLOC: { + void *pFree, **ppNew; + int sz; + sz = va_arg(ap, int); + ppNew = va_arg(ap, void**); + pFree = va_arg(ap, void*); + if( sz ) *ppNew = sqlite3ScratchMalloc(sz); + sqlite3ScratchFree(pFree); + break; + } + + /* sqlite3_test_control(SQLITE_TESTCTRL_LOCALTIME_FAULT, int onoff); + ** + ** If parameter onoff is non-zero, configure the wrappers so that all + ** subsequent calls to localtime() and variants fail. If onoff is zero, + ** undo this setting. + */ + case SQLITE_TESTCTRL_LOCALTIME_FAULT: { + sqlite3GlobalConfig.bLocaltimeFault = va_arg(ap, int); + break; + } + +#if defined(SQLITE_ENABLE_TREE_EXPLAIN) + /* sqlite3_test_control(SQLITE_TESTCTRL_EXPLAIN_STMT, + ** sqlite3_stmt*,const char**); + ** + ** If compiled with SQLITE_ENABLE_TREE_EXPLAIN, each sqlite3_stmt holds + ** a string that describes the optimized parse tree. This test-control + ** returns a pointer to that string. + */ + case SQLITE_TESTCTRL_EXPLAIN_STMT: { + sqlite3_stmt *pStmt = va_arg(ap, sqlite3_stmt*); + const char **pzRet = va_arg(ap, const char**); + *pzRet = sqlite3VdbeExplanation((Vdbe*)pStmt); + break; + } +#endif + + /* sqlite3_test_control(SQLITE_TESTCTRL_NEVER_CORRUPT, int); + ** + ** Set or clear a flag that indicates that the database file is always well- + ** formed and never corrupt. This flag is clear by default, indicating that + ** database files might have arbitrary corruption. Setting the flag during + ** testing causes certain assert() statements in the code to be activated + ** that demonstrat invariants on well-formed database files. + */ + case SQLITE_TESTCTRL_NEVER_CORRUPT: { + sqlite3GlobalConfig.neverCorrupt = va_arg(ap, int); + break; + } + + + /* sqlite3_test_control(SQLITE_TESTCTRL_VDBE_COVERAGE, xCallback, ptr); + ** + ** Set the VDBE coverage callback function to xCallback with context + ** pointer ptr. + */ + case SQLITE_TESTCTRL_VDBE_COVERAGE: { +#ifdef SQLITE_VDBE_COVERAGE + typedef void (*branch_callback)(void*,int,u8,u8); + sqlite3GlobalConfig.xVdbeBranch = va_arg(ap,branch_callback); + sqlite3GlobalConfig.pVdbeBranchArg = va_arg(ap,void*); +#endif + break; + } + + } + va_end(ap); +#endif /* SQLITE_OMIT_BUILTIN_TEST */ + return rc; +} + +/* +** This is a utility routine, useful to VFS implementations, that checks +** to see if a database file was a URI that contained a specific query +** parameter, and if so obtains the value of the query parameter. +** +** The zFilename argument is the filename pointer passed into the xOpen() +** method of a VFS implementation. The zParam argument is the name of the +** query parameter we seek. This routine returns the value of the zParam +** parameter if it exists. If the parameter does not exist, this routine +** returns a NULL pointer. +*/ +SQLITE_API const char *sqlite3_uri_parameter(const char *zFilename, const char *zParam){ + if( zFilename==0 ) return 0; + zFilename += sqlite3Strlen30(zFilename) + 1; + while( zFilename[0] ){ + int x = strcmp(zFilename, zParam); + zFilename += sqlite3Strlen30(zFilename) + 1; + if( x==0 ) return zFilename; + zFilename += sqlite3Strlen30(zFilename) + 1; + } + return 0; +} + +/* +** Return a boolean value for a query parameter. +*/ +SQLITE_API int sqlite3_uri_boolean(const char *zFilename, const char *zParam, int bDflt){ + const char *z = sqlite3_uri_parameter(zFilename, zParam); + bDflt = bDflt!=0; + return z ? sqlite3GetBoolean(z, bDflt) : bDflt; +} + +/* +** Return a 64-bit integer value for a query parameter. +*/ +SQLITE_API sqlite3_int64 sqlite3_uri_int64( + const char *zFilename, /* Filename as passed to xOpen */ + const char *zParam, /* URI parameter sought */ + sqlite3_int64 bDflt /* return if parameter is missing */ +){ + const char *z = sqlite3_uri_parameter(zFilename, zParam); + sqlite3_int64 v; + if( z && sqlite3Atoi64(z, &v, sqlite3Strlen30(z), SQLITE_UTF8)==SQLITE_OK ){ + bDflt = v; + } + return bDflt; +} + +/* +** Return the Btree pointer identified by zDbName. Return NULL if not found. +*/ +SQLITE_PRIVATE Btree *sqlite3DbNameToBtree(sqlite3 *db, const char *zDbName){ + int i; + for(i=0; inDb; i++){ + if( db->aDb[i].pBt + && (zDbName==0 || sqlite3StrICmp(zDbName, db->aDb[i].zName)==0) + ){ + return db->aDb[i].pBt; + } + } + return 0; +} + +/* +** Return the filename of the database associated with a database +** connection. +*/ +SQLITE_API const char *sqlite3_db_filename(sqlite3 *db, const char *zDbName){ + Btree *pBt = sqlite3DbNameToBtree(db, zDbName); + return pBt ? sqlite3BtreeGetFilename(pBt) : 0; +} + +/* +** Return 1 if database is read-only or 0 if read/write. Return -1 if +** no such database exists. +*/ +SQLITE_API int sqlite3_db_readonly(sqlite3 *db, const char *zDbName){ + Btree *pBt = sqlite3DbNameToBtree(db, zDbName); + return pBt ? sqlite3BtreeIsReadonly(pBt) : -1; +} + +/************** End of main.c ************************************************/ +/************** Begin file notify.c ******************************************/ +/* +** 2009 March 3 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** +** This file contains the implementation of the sqlite3_unlock_notify() +** API method and its associated functionality. +*/ + +/* Omit this entire file if SQLITE_ENABLE_UNLOCK_NOTIFY is not defined. */ +#ifdef SQLITE_ENABLE_UNLOCK_NOTIFY + +/* +** Public interfaces: +** +** sqlite3ConnectionBlocked() +** sqlite3ConnectionUnlocked() +** sqlite3ConnectionClosed() +** sqlite3_unlock_notify() +*/ + +#define assertMutexHeld() \ + assert( sqlite3_mutex_held(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)) ) + +/* +** Head of a linked list of all sqlite3 objects created by this process +** for which either sqlite3.pBlockingConnection or sqlite3.pUnlockConnection +** is not NULL. This variable may only accessed while the STATIC_MASTER +** mutex is held. +*/ +static sqlite3 *SQLITE_WSD sqlite3BlockedList = 0; + +#ifndef NDEBUG +/* +** This function is a complex assert() that verifies the following +** properties of the blocked connections list: +** +** 1) Each entry in the list has a non-NULL value for either +** pUnlockConnection or pBlockingConnection, or both. +** +** 2) All entries in the list that share a common value for +** xUnlockNotify are grouped together. +** +** 3) If the argument db is not NULL, then none of the entries in the +** blocked connections list have pUnlockConnection or pBlockingConnection +** set to db. This is used when closing connection db. +*/ +static void checkListProperties(sqlite3 *db){ + sqlite3 *p; + for(p=sqlite3BlockedList; p; p=p->pNextBlocked){ + int seen = 0; + sqlite3 *p2; + + /* Verify property (1) */ + assert( p->pUnlockConnection || p->pBlockingConnection ); + + /* Verify property (2) */ + for(p2=sqlite3BlockedList; p2!=p; p2=p2->pNextBlocked){ + if( p2->xUnlockNotify==p->xUnlockNotify ) seen = 1; + assert( p2->xUnlockNotify==p->xUnlockNotify || !seen ); + assert( db==0 || p->pUnlockConnection!=db ); + assert( db==0 || p->pBlockingConnection!=db ); + } + } +} +#else +# define checkListProperties(x) +#endif + +/* +** Remove connection db from the blocked connections list. If connection +** db is not currently a part of the list, this function is a no-op. +*/ +static void removeFromBlockedList(sqlite3 *db){ + sqlite3 **pp; + assertMutexHeld(); + for(pp=&sqlite3BlockedList; *pp; pp = &(*pp)->pNextBlocked){ + if( *pp==db ){ + *pp = (*pp)->pNextBlocked; + break; + } + } +} + +/* +** Add connection db to the blocked connections list. It is assumed +** that it is not already a part of the list. +*/ +static void addToBlockedList(sqlite3 *db){ + sqlite3 **pp; + assertMutexHeld(); + for( + pp=&sqlite3BlockedList; + *pp && (*pp)->xUnlockNotify!=db->xUnlockNotify; + pp=&(*pp)->pNextBlocked + ); + db->pNextBlocked = *pp; + *pp = db; +} + +/* +** Obtain the STATIC_MASTER mutex. +*/ +static void enterMutex(void){ + sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); + checkListProperties(0); +} + +/* +** Release the STATIC_MASTER mutex. +*/ +static void leaveMutex(void){ + assertMutexHeld(); + checkListProperties(0); + sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); +} + +/* +** Register an unlock-notify callback. +** +** This is called after connection "db" has attempted some operation +** but has received an SQLITE_LOCKED error because another connection +** (call it pOther) in the same process was busy using the same shared +** cache. pOther is found by looking at db->pBlockingConnection. +** +** If there is no blocking connection, the callback is invoked immediately, +** before this routine returns. +** +** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate +** a deadlock. +** +** Otherwise, make arrangements to invoke xNotify when pOther drops +** its locks. +** +** Each call to this routine overrides any prior callbacks registered +** on the same "db". If xNotify==0 then any prior callbacks are immediately +** cancelled. +*/ +SQLITE_API int sqlite3_unlock_notify( + sqlite3 *db, + void (*xNotify)(void **, int), + void *pArg +){ + int rc = SQLITE_OK; + + sqlite3_mutex_enter(db->mutex); + enterMutex(); + + if( xNotify==0 ){ + removeFromBlockedList(db); + db->pBlockingConnection = 0; + db->pUnlockConnection = 0; + db->xUnlockNotify = 0; + db->pUnlockArg = 0; + }else if( 0==db->pBlockingConnection ){ + /* The blocking transaction has been concluded. Or there never was a + ** blocking transaction. In either case, invoke the notify callback + ** immediately. + */ + xNotify(&pArg, 1); + }else{ + sqlite3 *p; + + for(p=db->pBlockingConnection; p && p!=db; p=p->pUnlockConnection){} + if( p ){ + rc = SQLITE_LOCKED; /* Deadlock detected. */ + }else{ + db->pUnlockConnection = db->pBlockingConnection; + db->xUnlockNotify = xNotify; + db->pUnlockArg = pArg; + removeFromBlockedList(db); + addToBlockedList(db); + } + } + + leaveMutex(); + assert( !db->mallocFailed ); + sqlite3Error(db, rc, (rc?"database is deadlocked":0)); + sqlite3_mutex_leave(db->mutex); + return rc; +} + +/* +** This function is called while stepping or preparing a statement +** associated with connection db. The operation will return SQLITE_LOCKED +** to the user because it requires a lock that will not be available +** until connection pBlocker concludes its current transaction. +*/ +SQLITE_PRIVATE void sqlite3ConnectionBlocked(sqlite3 *db, sqlite3 *pBlocker){ + enterMutex(); + if( db->pBlockingConnection==0 && db->pUnlockConnection==0 ){ + addToBlockedList(db); + } + db->pBlockingConnection = pBlocker; + leaveMutex(); +} + +/* +** This function is called when +** the transaction opened by database db has just finished. Locks held +** by database connection db have been released. +** +** This function loops through each entry in the blocked connections +** list and does the following: +** +** 1) If the sqlite3.pBlockingConnection member of a list entry is +** set to db, then set pBlockingConnection=0. +** +** 2) If the sqlite3.pUnlockConnection member of a list entry is +** set to db, then invoke the configured unlock-notify callback and +** set pUnlockConnection=0. +** +** 3) If the two steps above mean that pBlockingConnection==0 and +** pUnlockConnection==0, remove the entry from the blocked connections +** list. +*/ +SQLITE_PRIVATE void sqlite3ConnectionUnlocked(sqlite3 *db){ + void (*xUnlockNotify)(void **, int) = 0; /* Unlock-notify cb to invoke */ + int nArg = 0; /* Number of entries in aArg[] */ + sqlite3 **pp; /* Iterator variable */ + void **aArg; /* Arguments to the unlock callback */ + void **aDyn = 0; /* Dynamically allocated space for aArg[] */ + void *aStatic[16]; /* Starter space for aArg[]. No malloc required */ + + aArg = aStatic; + enterMutex(); /* Enter STATIC_MASTER mutex */ + + /* This loop runs once for each entry in the blocked-connections list. */ + for(pp=&sqlite3BlockedList; *pp; /* no-op */ ){ + sqlite3 *p = *pp; + + /* Step 1. */ + if( p->pBlockingConnection==db ){ + p->pBlockingConnection = 0; + } + + /* Step 2. */ + if( p->pUnlockConnection==db ){ + assert( p->xUnlockNotify ); + if( p->xUnlockNotify!=xUnlockNotify && nArg!=0 ){ + xUnlockNotify(aArg, nArg); + nArg = 0; + } + + sqlite3BeginBenignMalloc(); + assert( aArg==aDyn || (aDyn==0 && aArg==aStatic) ); + assert( nArg<=(int)ArraySize(aStatic) || aArg==aDyn ); + if( (!aDyn && nArg==(int)ArraySize(aStatic)) + || (aDyn && nArg==(int)(sqlite3MallocSize(aDyn)/sizeof(void*))) + ){ + /* The aArg[] array needs to grow. */ + void **pNew = (void **)sqlite3Malloc(nArg*sizeof(void *)*2); + if( pNew ){ + memcpy(pNew, aArg, nArg*sizeof(void *)); + sqlite3_free(aDyn); + aDyn = aArg = pNew; + }else{ + /* This occurs when the array of context pointers that need to + ** be passed to the unlock-notify callback is larger than the + ** aStatic[] array allocated on the stack and the attempt to + ** allocate a larger array from the heap has failed. + ** + ** This is a difficult situation to handle. Returning an error + ** code to the caller is insufficient, as even if an error code + ** is returned the transaction on connection db will still be + ** closed and the unlock-notify callbacks on blocked connections + ** will go unissued. This might cause the application to wait + ** indefinitely for an unlock-notify callback that will never + ** arrive. + ** + ** Instead, invoke the unlock-notify callback with the context + ** array already accumulated. We can then clear the array and + ** begin accumulating any further context pointers without + ** requiring any dynamic allocation. This is sub-optimal because + ** it means that instead of one callback with a large array of + ** context pointers the application will receive two or more + ** callbacks with smaller arrays of context pointers, which will + ** reduce the applications ability to prioritize multiple + ** connections. But it is the best that can be done under the + ** circumstances. + */ + xUnlockNotify(aArg, nArg); + nArg = 0; + } + } + sqlite3EndBenignMalloc(); + + aArg[nArg++] = p->pUnlockArg; + xUnlockNotify = p->xUnlockNotify; + p->pUnlockConnection = 0; + p->xUnlockNotify = 0; + p->pUnlockArg = 0; + } + + /* Step 3. */ + if( p->pBlockingConnection==0 && p->pUnlockConnection==0 ){ + /* Remove connection p from the blocked connections list. */ + *pp = p->pNextBlocked; + p->pNextBlocked = 0; + }else{ + pp = &p->pNextBlocked; + } + } + + if( nArg!=0 ){ + xUnlockNotify(aArg, nArg); + } + sqlite3_free(aDyn); + leaveMutex(); /* Leave STATIC_MASTER mutex */ +} + +/* +** This is called when the database connection passed as an argument is +** being closed. The connection is removed from the blocked list. +*/ +SQLITE_PRIVATE void sqlite3ConnectionClosed(sqlite3 *db){ + sqlite3ConnectionUnlocked(db); + enterMutex(); + removeFromBlockedList(db); + checkListProperties(db); + leaveMutex(); +} +#endif + +/************** End of notify.c **********************************************/ +/************** Begin file fts3.c ********************************************/ +/* +** 2006 Oct 10 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This is an SQLite module implementing full-text search. +*/ + +/* +** The code in this file is only compiled if: +** +** * The FTS3 module is being built as an extension +** (in which case SQLITE_CORE is not defined), or +** +** * The FTS3 module is being built into the core of +** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). +*/ + +/* The full-text index is stored in a series of b+tree (-like) +** structures called segments which map terms to doclists. The +** structures are like b+trees in layout, but are constructed from the +** bottom up in optimal fashion and are not updatable. Since trees +** are built from the bottom up, things will be described from the +** bottom up. +** +** +**** Varints **** +** The basic unit of encoding is a variable-length integer called a +** varint. We encode variable-length integers in little-endian order +** using seven bits * per byte as follows: +** +** KEY: +** A = 0xxxxxxx 7 bits of data and one flag bit +** B = 1xxxxxxx 7 bits of data and one flag bit +** +** 7 bits - A +** 14 bits - BA +** 21 bits - BBA +** and so on. +** +** This is similar in concept to how sqlite encodes "varints" but +** the encoding is not the same. SQLite varints are big-endian +** are are limited to 9 bytes in length whereas FTS3 varints are +** little-endian and can be up to 10 bytes in length (in theory). +** +** Example encodings: +** +** 1: 0x01 +** 127: 0x7f +** 128: 0x81 0x00 +** +** +**** Document lists **** +** A doclist (document list) holds a docid-sorted list of hits for a +** given term. Doclists hold docids and associated token positions. +** A docid is the unique integer identifier for a single document. +** A position is the index of a word within the document. The first +** word of the document has a position of 0. +** +** FTS3 used to optionally store character offsets using a compile-time +** option. But that functionality is no longer supported. +** +** A doclist is stored like this: +** +** array { +** varint docid; (delta from previous doclist) +** array { (position list for column 0) +** varint position; (2 more than the delta from previous position) +** } +** array { +** varint POS_COLUMN; (marks start of position list for new column) +** varint column; (index of new column) +** array { +** varint position; (2 more than the delta from previous position) +** } +** } +** varint POS_END; (marks end of positions for this document. +** } +** +** Here, array { X } means zero or more occurrences of X, adjacent in +** memory. A "position" is an index of a token in the token stream +** generated by the tokenizer. Note that POS_END and POS_COLUMN occur +** in the same logical place as the position element, and act as sentinals +** ending a position list array. POS_END is 0. POS_COLUMN is 1. +** The positions numbers are not stored literally but rather as two more +** than the difference from the prior position, or the just the position plus +** 2 for the first position. Example: +** +** label: A B C D E F G H I J K +** value: 123 5 9 1 1 14 35 0 234 72 0 +** +** The 123 value is the first docid. For column zero in this document +** there are two matches at positions 3 and 10 (5-2 and 9-2+3). The 1 +** at D signals the start of a new column; the 1 at E indicates that the +** new column is column number 1. There are two positions at 12 and 45 +** (14-2 and 35-2+12). The 0 at H indicate the end-of-document. The +** 234 at I is the delta to next docid (357). It has one position 70 +** (72-2) and then terminates with the 0 at K. +** +** A "position-list" is the list of positions for multiple columns for +** a single docid. A "column-list" is the set of positions for a single +** column. Hence, a position-list consists of one or more column-lists, +** a document record consists of a docid followed by a position-list and +** a doclist consists of one or more document records. +** +** A bare doclist omits the position information, becoming an +** array of varint-encoded docids. +** +**** Segment leaf nodes **** +** Segment leaf nodes store terms and doclists, ordered by term. Leaf +** nodes are written using LeafWriter, and read using LeafReader (to +** iterate through a single leaf node's data) and LeavesReader (to +** iterate through a segment's entire leaf layer). Leaf nodes have +** the format: +** +** varint iHeight; (height from leaf level, always 0) +** varint nTerm; (length of first term) +** char pTerm[nTerm]; (content of first term) +** varint nDoclist; (length of term's associated doclist) +** char pDoclist[nDoclist]; (content of doclist) +** array { +** (further terms are delta-encoded) +** varint nPrefix; (length of prefix shared with previous term) +** varint nSuffix; (length of unshared suffix) +** char pTermSuffix[nSuffix];(unshared suffix of next term) +** varint nDoclist; (length of term's associated doclist) +** char pDoclist[nDoclist]; (content of doclist) +** } +** +** Here, array { X } means zero or more occurrences of X, adjacent in +** memory. +** +** Leaf nodes are broken into blocks which are stored contiguously in +** the %_segments table in sorted order. This means that when the end +** of a node is reached, the next term is in the node with the next +** greater node id. +** +** New data is spilled to a new leaf node when the current node +** exceeds LEAF_MAX bytes (default 2048). New data which itself is +** larger than STANDALONE_MIN (default 1024) is placed in a standalone +** node (a leaf node with a single term and doclist). The goal of +** these settings is to pack together groups of small doclists while +** making it efficient to directly access large doclists. The +** assumption is that large doclists represent terms which are more +** likely to be query targets. +** +** TODO(shess) It may be useful for blocking decisions to be more +** dynamic. For instance, it may make more sense to have a 2.5k leaf +** node rather than splitting into 2k and .5k nodes. My intuition is +** that this might extend through 2x or 4x the pagesize. +** +** +**** Segment interior nodes **** +** Segment interior nodes store blockids for subtree nodes and terms +** to describe what data is stored by the each subtree. Interior +** nodes are written using InteriorWriter, and read using +** InteriorReader. InteriorWriters are created as needed when +** SegmentWriter creates new leaf nodes, or when an interior node +** itself grows too big and must be split. The format of interior +** nodes: +** +** varint iHeight; (height from leaf level, always >0) +** varint iBlockid; (block id of node's leftmost subtree) +** optional { +** varint nTerm; (length of first term) +** char pTerm[nTerm]; (content of first term) +** array { +** (further terms are delta-encoded) +** varint nPrefix; (length of shared prefix with previous term) +** varint nSuffix; (length of unshared suffix) +** char pTermSuffix[nSuffix]; (unshared suffix of next term) +** } +** } +** +** Here, optional { X } means an optional element, while array { X } +** means zero or more occurrences of X, adjacent in memory. +** +** An interior node encodes n terms separating n+1 subtrees. The +** subtree blocks are contiguous, so only the first subtree's blockid +** is encoded. The subtree at iBlockid will contain all terms less +** than the first term encoded (or all terms if no term is encoded). +** Otherwise, for terms greater than or equal to pTerm[i] but less +** than pTerm[i+1], the subtree for that term will be rooted at +** iBlockid+i. Interior nodes only store enough term data to +** distinguish adjacent children (if the rightmost term of the left +** child is "something", and the leftmost term of the right child is +** "wicked", only "w" is stored). +** +** New data is spilled to a new interior node at the same height when +** the current node exceeds INTERIOR_MAX bytes (default 2048). +** INTERIOR_MIN_TERMS (default 7) keeps large terms from monopolizing +** interior nodes and making the tree too skinny. The interior nodes +** at a given height are naturally tracked by interior nodes at +** height+1, and so on. +** +** +**** Segment directory **** +** The segment directory in table %_segdir stores meta-information for +** merging and deleting segments, and also the root node of the +** segment's tree. +** +** The root node is the top node of the segment's tree after encoding +** the entire segment, restricted to ROOT_MAX bytes (default 1024). +** This could be either a leaf node or an interior node. If the top +** node requires more than ROOT_MAX bytes, it is flushed to %_segments +** and a new root interior node is generated (which should always fit +** within ROOT_MAX because it only needs space for 2 varints, the +** height and the blockid of the previous root). +** +** The meta-information in the segment directory is: +** level - segment level (see below) +** idx - index within level +** - (level,idx uniquely identify a segment) +** start_block - first leaf node +** leaves_end_block - last leaf node +** end_block - last block (including interior nodes) +** root - contents of root node +** +** If the root node is a leaf node, then start_block, +** leaves_end_block, and end_block are all 0. +** +** +**** Segment merging **** +** To amortize update costs, segments are grouped into levels and +** merged in batches. Each increase in level represents exponentially +** more documents. +** +** New documents (actually, document updates) are tokenized and +** written individually (using LeafWriter) to a level 0 segment, with +** incrementing idx. When idx reaches MERGE_COUNT (default 16), all +** level 0 segments are merged into a single level 1 segment. Level 1 +** is populated like level 0, and eventually MERGE_COUNT level 1 +** segments are merged to a single level 2 segment (representing +** MERGE_COUNT^2 updates), and so on. +** +** A segment merge traverses all segments at a given level in +** parallel, performing a straightforward sorted merge. Since segment +** leaf nodes are written in to the %_segments table in order, this +** merge traverses the underlying sqlite disk structures efficiently. +** After the merge, all segment blocks from the merged level are +** deleted. +** +** MERGE_COUNT controls how often we merge segments. 16 seems to be +** somewhat of a sweet spot for insertion performance. 32 and 64 show +** very similar performance numbers to 16 on insertion, though they're +** a tiny bit slower (perhaps due to more overhead in merge-time +** sorting). 8 is about 20% slower than 16, 4 about 50% slower than +** 16, 2 about 66% slower than 16. +** +** At query time, high MERGE_COUNT increases the number of segments +** which need to be scanned and merged. For instance, with 100k docs +** inserted: +** +** MERGE_COUNT segments +** 16 25 +** 8 12 +** 4 10 +** 2 6 +** +** This appears to have only a moderate impact on queries for very +** frequent terms (which are somewhat dominated by segment merge +** costs), and infrequent and non-existent terms still seem to be fast +** even with many segments. +** +** TODO(shess) That said, it would be nice to have a better query-side +** argument for MERGE_COUNT of 16. Also, it is possible/likely that +** optimizations to things like doclist merging will swing the sweet +** spot around. +** +** +** +**** Handling of deletions and updates **** +** Since we're using a segmented structure, with no docid-oriented +** index into the term index, we clearly cannot simply update the term +** index when a document is deleted or updated. For deletions, we +** write an empty doclist (varint(docid) varint(POS_END)), for updates +** we simply write the new doclist. Segment merges overwrite older +** data for a particular docid with newer data, so deletes or updates +** will eventually overtake the earlier data and knock it out. The +** query logic likewise merges doclists so that newer data knocks out +** older data. +*/ + +/************** Include fts3Int.h in the middle of fts3.c ********************/ +/************** Begin file fts3Int.h *****************************************/ +/* +** 2009 Nov 12 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +*/ +#ifndef _FTSINT_H +#define _FTSINT_H + +#if !defined(NDEBUG) && !defined(SQLITE_DEBUG) +# define NDEBUG 1 +#endif + +/* +** FTS4 is really an extension for FTS3. It is enabled using the +** SQLITE_ENABLE_FTS3 macro. But to avoid confusion we also all +** the SQLITE_ENABLE_FTS4 macro to serve as an alisse for SQLITE_ENABLE_FTS3. +*/ +#if defined(SQLITE_ENABLE_FTS4) && !defined(SQLITE_ENABLE_FTS3) +# define SQLITE_ENABLE_FTS3 +#endif + +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* If not building as part of the core, include sqlite3ext.h. */ +#ifndef SQLITE_CORE +SQLITE_EXTENSION_INIT3 +#endif + +/************** Include fts3_tokenizer.h in the middle of fts3Int.h **********/ +/************** Begin file fts3_tokenizer.h **********************************/ +/* +** 2006 July 10 +** +** The author disclaims copyright to this source code. +** +************************************************************************* +** Defines the interface to tokenizers used by fulltext-search. There +** are three basic components: +** +** sqlite3_tokenizer_module is a singleton defining the tokenizer +** interface functions. This is essentially the class structure for +** tokenizers. +** +** sqlite3_tokenizer is used to define a particular tokenizer, perhaps +** including customization information defined at creation time. +** +** sqlite3_tokenizer_cursor is generated by a tokenizer to generate +** tokens from a particular input. +*/ +#ifndef _FTS3_TOKENIZER_H_ +#define _FTS3_TOKENIZER_H_ + +/* TODO(shess) Only used for SQLITE_OK and SQLITE_DONE at this time. +** If tokenizers are to be allowed to call sqlite3_*() functions, then +** we will need a way to register the API consistently. +*/ + +/* +** Structures used by the tokenizer interface. When a new tokenizer +** implementation is registered, the caller provides a pointer to +** an sqlite3_tokenizer_module containing pointers to the callback +** functions that make up an implementation. +** +** When an fts3 table is created, it passes any arguments passed to +** the tokenizer clause of the CREATE VIRTUAL TABLE statement to the +** sqlite3_tokenizer_module.xCreate() function of the requested tokenizer +** implementation. The xCreate() function in turn returns an +** sqlite3_tokenizer structure representing the specific tokenizer to +** be used for the fts3 table (customized by the tokenizer clause arguments). +** +** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen() +** method is called. It returns an sqlite3_tokenizer_cursor object +** that may be used to tokenize a specific input buffer based on +** the tokenization rules supplied by a specific sqlite3_tokenizer +** object. +*/ +typedef struct sqlite3_tokenizer_module sqlite3_tokenizer_module; +typedef struct sqlite3_tokenizer sqlite3_tokenizer; +typedef struct sqlite3_tokenizer_cursor sqlite3_tokenizer_cursor; + +struct sqlite3_tokenizer_module { + + /* + ** Structure version. Should always be set to 0 or 1. + */ + int iVersion; + + /* + ** Create a new tokenizer. The values in the argv[] array are the + ** arguments passed to the "tokenizer" clause of the CREATE VIRTUAL + ** TABLE statement that created the fts3 table. For example, if + ** the following SQL is executed: + ** + ** CREATE .. USING fts3( ... , tokenizer arg1 arg2) + ** + ** then argc is set to 2, and the argv[] array contains pointers + ** to the strings "arg1" and "arg2". + ** + ** This method should return either SQLITE_OK (0), or an SQLite error + ** code. If SQLITE_OK is returned, then *ppTokenizer should be set + ** to point at the newly created tokenizer structure. The generic + ** sqlite3_tokenizer.pModule variable should not be initialized by + ** this callback. The caller will do so. + */ + int (*xCreate)( + int argc, /* Size of argv array */ + const char *const*argv, /* Tokenizer argument strings */ + sqlite3_tokenizer **ppTokenizer /* OUT: Created tokenizer */ + ); + + /* + ** Destroy an existing tokenizer. The fts3 module calls this method + ** exactly once for each successful call to xCreate(). + */ + int (*xDestroy)(sqlite3_tokenizer *pTokenizer); + + /* + ** Create a tokenizer cursor to tokenize an input buffer. The caller + ** is responsible for ensuring that the input buffer remains valid + ** until the cursor is closed (using the xClose() method). + */ + int (*xOpen)( + sqlite3_tokenizer *pTokenizer, /* Tokenizer object */ + const char *pInput, int nBytes, /* Input buffer */ + sqlite3_tokenizer_cursor **ppCursor /* OUT: Created tokenizer cursor */ + ); + + /* + ** Destroy an existing tokenizer cursor. The fts3 module calls this + ** method exactly once for each successful call to xOpen(). + */ + int (*xClose)(sqlite3_tokenizer_cursor *pCursor); + + /* + ** Retrieve the next token from the tokenizer cursor pCursor. This + ** method should either return SQLITE_OK and set the values of the + ** "OUT" variables identified below, or SQLITE_DONE to indicate that + ** the end of the buffer has been reached, or an SQLite error code. + ** + ** *ppToken should be set to point at a buffer containing the + ** normalized version of the token (i.e. after any case-folding and/or + ** stemming has been performed). *pnBytes should be set to the length + ** of this buffer in bytes. The input text that generated the token is + ** identified by the byte offsets returned in *piStartOffset and + ** *piEndOffset. *piStartOffset should be set to the index of the first + ** byte of the token in the input buffer. *piEndOffset should be set + ** to the index of the first byte just past the end of the token in + ** the input buffer. + ** + ** The buffer *ppToken is set to point at is managed by the tokenizer + ** implementation. It is only required to be valid until the next call + ** to xNext() or xClose(). + */ + /* TODO(shess) current implementation requires pInput to be + ** nul-terminated. This should either be fixed, or pInput/nBytes + ** should be converted to zInput. + */ + int (*xNext)( + sqlite3_tokenizer_cursor *pCursor, /* Tokenizer cursor */ + const char **ppToken, int *pnBytes, /* OUT: Normalized text for token */ + int *piStartOffset, /* OUT: Byte offset of token in input buffer */ + int *piEndOffset, /* OUT: Byte offset of end of token in input buffer */ + int *piPosition /* OUT: Number of tokens returned before this one */ + ); + + /*********************************************************************** + ** Methods below this point are only available if iVersion>=1. + */ + + /* + ** Configure the language id of a tokenizer cursor. + */ + int (*xLanguageid)(sqlite3_tokenizer_cursor *pCsr, int iLangid); +}; + +struct sqlite3_tokenizer { + const sqlite3_tokenizer_module *pModule; /* The module for this tokenizer */ + /* Tokenizer implementations will typically add additional fields */ +}; + +struct sqlite3_tokenizer_cursor { + sqlite3_tokenizer *pTokenizer; /* Tokenizer for this cursor. */ + /* Tokenizer implementations will typically add additional fields */ +}; + +int fts3_global_term_cnt(int iTerm, int iCol); +int fts3_term_cnt(int iTerm, int iCol); + + +#endif /* _FTS3_TOKENIZER_H_ */ + +/************** End of fts3_tokenizer.h **************************************/ +/************** Continuing where we left off in fts3Int.h ********************/ +/************** Include fts3_hash.h in the middle of fts3Int.h ***************/ +/************** Begin file fts3_hash.h ***************************************/ +/* +** 2001 September 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This is the header file for the generic hash-table implementation +** used in SQLite. We've modified it slightly to serve as a standalone +** hash table implementation for the full-text indexing module. +** +*/ +#ifndef _FTS3_HASH_H_ +#define _FTS3_HASH_H_ + +/* Forward declarations of structures. */ +typedef struct Fts3Hash Fts3Hash; +typedef struct Fts3HashElem Fts3HashElem; + +/* A complete hash table is an instance of the following structure. +** The internals of this structure are intended to be opaque -- client +** code should not attempt to access or modify the fields of this structure +** directly. Change this structure only by using the routines below. +** However, many of the "procedures" and "functions" for modifying and +** accessing this structure are really macros, so we can't really make +** this structure opaque. +*/ +struct Fts3Hash { + char keyClass; /* HASH_INT, _POINTER, _STRING, _BINARY */ + char copyKey; /* True if copy of key made on insert */ + int count; /* Number of entries in this table */ + Fts3HashElem *first; /* The first element of the array */ + int htsize; /* Number of buckets in the hash table */ + struct _fts3ht { /* the hash table */ + int count; /* Number of entries with this hash */ + Fts3HashElem *chain; /* Pointer to first entry with this hash */ + } *ht; +}; + +/* Each element in the hash table is an instance of the following +** structure. All elements are stored on a single doubly-linked list. +** +** Again, this structure is intended to be opaque, but it can't really +** be opaque because it is used by macros. +*/ +struct Fts3HashElem { + Fts3HashElem *next, *prev; /* Next and previous elements in the table */ + void *data; /* Data associated with this element */ + void *pKey; int nKey; /* Key associated with this element */ +}; + +/* +** There are 2 different modes of operation for a hash table: +** +** FTS3_HASH_STRING pKey points to a string that is nKey bytes long +** (including the null-terminator, if any). Case +** is respected in comparisons. +** +** FTS3_HASH_BINARY pKey points to binary data nKey bytes long. +** memcmp() is used to compare keys. +** +** A copy of the key is made if the copyKey parameter to fts3HashInit is 1. +*/ +#define FTS3_HASH_STRING 1 +#define FTS3_HASH_BINARY 2 + +/* +** Access routines. To delete, insert a NULL pointer. +*/ +SQLITE_PRIVATE void sqlite3Fts3HashInit(Fts3Hash *pNew, char keyClass, char copyKey); +SQLITE_PRIVATE void *sqlite3Fts3HashInsert(Fts3Hash*, const void *pKey, int nKey, void *pData); +SQLITE_PRIVATE void *sqlite3Fts3HashFind(const Fts3Hash*, const void *pKey, int nKey); +SQLITE_PRIVATE void sqlite3Fts3HashClear(Fts3Hash*); +SQLITE_PRIVATE Fts3HashElem *sqlite3Fts3HashFindElem(const Fts3Hash *, const void *, int); + +/* +** Shorthand for the functions above +*/ +#define fts3HashInit sqlite3Fts3HashInit +#define fts3HashInsert sqlite3Fts3HashInsert +#define fts3HashFind sqlite3Fts3HashFind +#define fts3HashClear sqlite3Fts3HashClear +#define fts3HashFindElem sqlite3Fts3HashFindElem + +/* +** Macros for looping over all elements of a hash table. The idiom is +** like this: +** +** Fts3Hash h; +** Fts3HashElem *p; +** ... +** for(p=fts3HashFirst(&h); p; p=fts3HashNext(p)){ +** SomeStructure *pData = fts3HashData(p); +** // do something with pData +** } +*/ +#define fts3HashFirst(H) ((H)->first) +#define fts3HashNext(E) ((E)->next) +#define fts3HashData(E) ((E)->data) +#define fts3HashKey(E) ((E)->pKey) +#define fts3HashKeysize(E) ((E)->nKey) + +/* +** Number of entries in a hash table +*/ +#define fts3HashCount(H) ((H)->count) + +#endif /* _FTS3_HASH_H_ */ + +/************** End of fts3_hash.h *******************************************/ +/************** Continuing where we left off in fts3Int.h ********************/ + +/* +** This constant determines the maximum depth of an FTS expression tree +** that the library will create and use. FTS uses recursion to perform +** various operations on the query tree, so the disadvantage of a large +** limit is that it may allow very large queries to use large amounts +** of stack space (perhaps causing a stack overflow). +*/ +#ifndef SQLITE_FTS3_MAX_EXPR_DEPTH +# define SQLITE_FTS3_MAX_EXPR_DEPTH 12 +#endif + + +/* +** This constant controls how often segments are merged. Once there are +** FTS3_MERGE_COUNT segments of level N, they are merged into a single +** segment of level N+1. +*/ +#define FTS3_MERGE_COUNT 16 + +/* +** This is the maximum amount of data (in bytes) to store in the +** Fts3Table.pendingTerms hash table. Normally, the hash table is +** populated as documents are inserted/updated/deleted in a transaction +** and used to create a new segment when the transaction is committed. +** However if this limit is reached midway through a transaction, a new +** segment is created and the hash table cleared immediately. +*/ +#define FTS3_MAX_PENDING_DATA (1*1024*1024) + +/* +** Macro to return the number of elements in an array. SQLite has a +** similar macro called ArraySize(). Use a different name to avoid +** a collision when building an amalgamation with built-in FTS3. +*/ +#define SizeofArray(X) ((int)(sizeof(X)/sizeof(X[0]))) + + +#ifndef MIN +# define MIN(x,y) ((x)<(y)?(x):(y)) +#endif +#ifndef MAX +# define MAX(x,y) ((x)>(y)?(x):(y)) +#endif + +/* +** Maximum length of a varint encoded integer. The varint format is different +** from that used by SQLite, so the maximum length is 10, not 9. +*/ +#define FTS3_VARINT_MAX 10 + +/* +** FTS4 virtual tables may maintain multiple indexes - one index of all terms +** in the document set and zero or more prefix indexes. All indexes are stored +** as one or more b+-trees in the %_segments and %_segdir tables. +** +** It is possible to determine which index a b+-tree belongs to based on the +** value stored in the "%_segdir.level" column. Given this value L, the index +** that the b+-tree belongs to is (L<<10). In other words, all b+-trees with +** level values between 0 and 1023 (inclusive) belong to index 0, all levels +** between 1024 and 2047 to index 1, and so on. +** +** It is considered impossible for an index to use more than 1024 levels. In +** theory though this may happen, but only after at least +** (FTS3_MERGE_COUNT^1024) separate flushes of the pending-terms tables. +*/ +#define FTS3_SEGDIR_MAXLEVEL 1024 +#define FTS3_SEGDIR_MAXLEVEL_STR "1024" + +/* +** The testcase() macro is only used by the amalgamation. If undefined, +** make it a no-op. +*/ +#ifndef testcase +# define testcase(X) +#endif + +/* +** Terminator values for position-lists and column-lists. +*/ +#define POS_COLUMN (1) /* Column-list terminator */ +#define POS_END (0) /* Position-list terminator */ + +/* +** This section provides definitions to allow the +** FTS3 extension to be compiled outside of the +** amalgamation. +*/ +#ifndef SQLITE_AMALGAMATION +/* +** Macros indicating that conditional expressions are always true or +** false. +*/ +#ifdef SQLITE_COVERAGE_TEST +# define ALWAYS(x) (1) +# define NEVER(X) (0) +#else +# define ALWAYS(x) (x) +# define NEVER(x) (x) +#endif + +/* +** Internal types used by SQLite. +*/ +typedef unsigned char u8; /* 1-byte (or larger) unsigned integer */ +typedef short int i16; /* 2-byte (or larger) signed integer */ +typedef unsigned int u32; /* 4-byte unsigned integer */ +typedef sqlite3_uint64 u64; /* 8-byte unsigned integer */ +typedef sqlite3_int64 i64; /* 8-byte signed integer */ + +/* +** Macro used to suppress compiler warnings for unused parameters. +*/ +#define UNUSED_PARAMETER(x) (void)(x) + +/* +** Activate assert() only if SQLITE_TEST is enabled. +*/ +#if !defined(NDEBUG) && !defined(SQLITE_DEBUG) +# define NDEBUG 1 +#endif + +/* +** The TESTONLY macro is used to enclose variable declarations or +** other bits of code that are needed to support the arguments +** within testcase() and assert() macros. +*/ +#if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) +# define TESTONLY(X) X +#else +# define TESTONLY(X) +#endif + +#endif /* SQLITE_AMALGAMATION */ + +#ifdef SQLITE_DEBUG +SQLITE_PRIVATE int sqlite3Fts3Corrupt(void); +# define FTS_CORRUPT_VTAB sqlite3Fts3Corrupt() +#else +# define FTS_CORRUPT_VTAB SQLITE_CORRUPT_VTAB +#endif + +typedef struct Fts3Table Fts3Table; +typedef struct Fts3Cursor Fts3Cursor; +typedef struct Fts3Expr Fts3Expr; +typedef struct Fts3Phrase Fts3Phrase; +typedef struct Fts3PhraseToken Fts3PhraseToken; + +typedef struct Fts3Doclist Fts3Doclist; +typedef struct Fts3SegFilter Fts3SegFilter; +typedef struct Fts3DeferredToken Fts3DeferredToken; +typedef struct Fts3SegReader Fts3SegReader; +typedef struct Fts3MultiSegReader Fts3MultiSegReader; + +/* +** A connection to a fulltext index is an instance of the following +** structure. The xCreate and xConnect methods create an instance +** of this structure and xDestroy and xDisconnect free that instance. +** All other methods receive a pointer to the structure as one of their +** arguments. +*/ +struct Fts3Table { + sqlite3_vtab base; /* Base class used by SQLite core */ + sqlite3 *db; /* The database connection */ + const char *zDb; /* logical database name */ + const char *zName; /* virtual table name */ + int nColumn; /* number of named columns in virtual table */ + char **azColumn; /* column names. malloced */ + u8 *abNotindexed; /* True for 'notindexed' columns */ + sqlite3_tokenizer *pTokenizer; /* tokenizer for inserts and queries */ + char *zContentTbl; /* content=xxx option, or NULL */ + char *zLanguageid; /* languageid=xxx option, or NULL */ + int nAutoincrmerge; /* Value configured by 'automerge' */ + u32 nLeafAdd; /* Number of leaf blocks added this trans */ + + /* Precompiled statements used by the implementation. Each of these + ** statements is run and reset within a single virtual table API call. + */ + sqlite3_stmt *aStmt[40]; + + char *zReadExprlist; + char *zWriteExprlist; + + int nNodeSize; /* Soft limit for node size */ + u8 bFts4; /* True for FTS4, false for FTS3 */ + u8 bHasStat; /* True if %_stat table exists (2==unknown) */ + u8 bHasDocsize; /* True if %_docsize table exists */ + u8 bDescIdx; /* True if doclists are in reverse order */ + u8 bIgnoreSavepoint; /* True to ignore xSavepoint invocations */ + int nPgsz; /* Page size for host database */ + char *zSegmentsTbl; /* Name of %_segments table */ + sqlite3_blob *pSegments; /* Blob handle open on %_segments table */ + + /* + ** The following array of hash tables is used to buffer pending index + ** updates during transactions. All pending updates buffered at any one + ** time must share a common language-id (see the FTS4 langid= feature). + ** The current language id is stored in variable iPrevLangid. + ** + ** A single FTS4 table may have multiple full-text indexes. For each index + ** there is an entry in the aIndex[] array. Index 0 is an index of all the + ** terms that appear in the document set. Each subsequent index in aIndex[] + ** is an index of prefixes of a specific length. + ** + ** Variable nPendingData contains an estimate the memory consumed by the + ** pending data structures, including hash table overhead, but not including + ** malloc overhead. When nPendingData exceeds nMaxPendingData, all hash + ** tables are flushed to disk. Variable iPrevDocid is the docid of the most + ** recently inserted record. + */ + int nIndex; /* Size of aIndex[] */ + struct Fts3Index { + int nPrefix; /* Prefix length (0 for main terms index) */ + Fts3Hash hPending; /* Pending terms table for this index */ + } *aIndex; + int nMaxPendingData; /* Max pending data before flush to disk */ + int nPendingData; /* Current bytes of pending data */ + sqlite_int64 iPrevDocid; /* Docid of most recently inserted document */ + int iPrevLangid; /* Langid of recently inserted document */ + +#if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) + /* State variables used for validating that the transaction control + ** methods of the virtual table are called at appropriate times. These + ** values do not contribute to FTS functionality; they are used for + ** verifying the operation of the SQLite core. + */ + int inTransaction; /* True after xBegin but before xCommit/xRollback */ + int mxSavepoint; /* Largest valid xSavepoint integer */ +#endif + +#ifdef SQLITE_TEST + /* True to disable the incremental doclist optimization. This is controled + ** by special insert command 'test-no-incr-doclist'. */ + int bNoIncrDoclist; +#endif +}; + +/* +** When the core wants to read from the virtual table, it creates a +** virtual table cursor (an instance of the following structure) using +** the xOpen method. Cursors are destroyed using the xClose method. +*/ +struct Fts3Cursor { + sqlite3_vtab_cursor base; /* Base class used by SQLite core */ + i16 eSearch; /* Search strategy (see below) */ + u8 isEof; /* True if at End Of Results */ + u8 isRequireSeek; /* True if must seek pStmt to %_content row */ + sqlite3_stmt *pStmt; /* Prepared statement in use by the cursor */ + Fts3Expr *pExpr; /* Parsed MATCH query string */ + int iLangid; /* Language being queried for */ + int nPhrase; /* Number of matchable phrases in query */ + Fts3DeferredToken *pDeferred; /* Deferred search tokens, if any */ + sqlite3_int64 iPrevId; /* Previous id read from aDoclist */ + char *pNextId; /* Pointer into the body of aDoclist */ + char *aDoclist; /* List of docids for full-text queries */ + int nDoclist; /* Size of buffer at aDoclist */ + u8 bDesc; /* True to sort in descending order */ + int eEvalmode; /* An FTS3_EVAL_XX constant */ + int nRowAvg; /* Average size of database rows, in pages */ + sqlite3_int64 nDoc; /* Documents in table */ + i64 iMinDocid; /* Minimum docid to return */ + i64 iMaxDocid; /* Maximum docid to return */ + int isMatchinfoNeeded; /* True when aMatchinfo[] needs filling in */ + u32 *aMatchinfo; /* Information about most recent match */ + int nMatchinfo; /* Number of elements in aMatchinfo[] */ + char *zMatchinfo; /* Matchinfo specification */ +}; + +#define FTS3_EVAL_FILTER 0 +#define FTS3_EVAL_NEXT 1 +#define FTS3_EVAL_MATCHINFO 2 + +/* +** The Fts3Cursor.eSearch member is always set to one of the following. +** Actualy, Fts3Cursor.eSearch can be greater than or equal to +** FTS3_FULLTEXT_SEARCH. If so, then Fts3Cursor.eSearch - 2 is the index +** of the column to be searched. For example, in +** +** CREATE VIRTUAL TABLE ex1 USING fts3(a,b,c,d); +** SELECT docid FROM ex1 WHERE b MATCH 'one two three'; +** +** Because the LHS of the MATCH operator is 2nd column "b", +** Fts3Cursor.eSearch will be set to FTS3_FULLTEXT_SEARCH+1. (+0 for a, +** +1 for b, +2 for c, +3 for d.) If the LHS of MATCH were "ex1" +** indicating that all columns should be searched, +** then eSearch would be set to FTS3_FULLTEXT_SEARCH+4. +*/ +#define FTS3_FULLSCAN_SEARCH 0 /* Linear scan of %_content table */ +#define FTS3_DOCID_SEARCH 1 /* Lookup by rowid on %_content table */ +#define FTS3_FULLTEXT_SEARCH 2 /* Full-text index search */ + +/* +** The lower 16-bits of the sqlite3_index_info.idxNum value set by +** the xBestIndex() method contains the Fts3Cursor.eSearch value described +** above. The upper 16-bits contain a combination of the following +** bits, used to describe extra constraints on full-text searches. +*/ +#define FTS3_HAVE_LANGID 0x00010000 /* languageid=? */ +#define FTS3_HAVE_DOCID_GE 0x00020000 /* docid>=? */ +#define FTS3_HAVE_DOCID_LE 0x00040000 /* docid<=? */ + +struct Fts3Doclist { + char *aAll; /* Array containing doclist (or NULL) */ + int nAll; /* Size of a[] in bytes */ + char *pNextDocid; /* Pointer to next docid */ + + sqlite3_int64 iDocid; /* Current docid (if pList!=0) */ + int bFreeList; /* True if pList should be sqlite3_free()d */ + char *pList; /* Pointer to position list following iDocid */ + int nList; /* Length of position list */ +}; + +/* +** A "phrase" is a sequence of one or more tokens that must match in +** sequence. A single token is the base case and the most common case. +** For a sequence of tokens contained in double-quotes (i.e. "one two three") +** nToken will be the number of tokens in the string. +*/ +struct Fts3PhraseToken { + char *z; /* Text of the token */ + int n; /* Number of bytes in buffer z */ + int isPrefix; /* True if token ends with a "*" character */ + int bFirst; /* True if token must appear at position 0 */ + + /* Variables above this point are populated when the expression is + ** parsed (by code in fts3_expr.c). Below this point the variables are + ** used when evaluating the expression. */ + Fts3DeferredToken *pDeferred; /* Deferred token object for this token */ + Fts3MultiSegReader *pSegcsr; /* Segment-reader for this token */ +}; + +struct Fts3Phrase { + /* Cache of doclist for this phrase. */ + Fts3Doclist doclist; + int bIncr; /* True if doclist is loaded incrementally */ + int iDoclistToken; + + /* Variables below this point are populated by fts3_expr.c when parsing + ** a MATCH expression. Everything above is part of the evaluation phase. + */ + int nToken; /* Number of tokens in the phrase */ + int iColumn; /* Index of column this phrase must match */ + Fts3PhraseToken aToken[1]; /* One entry for each token in the phrase */ +}; + +/* +** A tree of these objects forms the RHS of a MATCH operator. +** +** If Fts3Expr.eType is FTSQUERY_PHRASE and isLoaded is true, then aDoclist +** points to a malloced buffer, size nDoclist bytes, containing the results +** of this phrase query in FTS3 doclist format. As usual, the initial +** "Length" field found in doclists stored on disk is omitted from this +** buffer. +** +** Variable aMI is used only for FTSQUERY_NEAR nodes to store the global +** matchinfo data. If it is not NULL, it points to an array of size nCol*3, +** where nCol is the number of columns in the queried FTS table. The array +** is populated as follows: +** +** aMI[iCol*3 + 0] = Undefined +** aMI[iCol*3 + 1] = Number of occurrences +** aMI[iCol*3 + 2] = Number of rows containing at least one instance +** +** The aMI array is allocated using sqlite3_malloc(). It should be freed +** when the expression node is. +*/ +struct Fts3Expr { + int eType; /* One of the FTSQUERY_XXX values defined below */ + int nNear; /* Valid if eType==FTSQUERY_NEAR */ + Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */ + Fts3Expr *pLeft; /* Left operand */ + Fts3Expr *pRight; /* Right operand */ + Fts3Phrase *pPhrase; /* Valid if eType==FTSQUERY_PHRASE */ + + /* The following are used by the fts3_eval.c module. */ + sqlite3_int64 iDocid; /* Current docid */ + u8 bEof; /* True this expression is at EOF already */ + u8 bStart; /* True if iDocid is valid */ + u8 bDeferred; /* True if this expression is entirely deferred */ + + u32 *aMI; +}; + +/* +** Candidate values for Fts3Query.eType. Note that the order of the first +** four values is in order of precedence when parsing expressions. For +** example, the following: +** +** "a OR b AND c NOT d NEAR e" +** +** is equivalent to: +** +** "a OR (b AND (c NOT (d NEAR e)))" +*/ +#define FTSQUERY_NEAR 1 +#define FTSQUERY_NOT 2 +#define FTSQUERY_AND 3 +#define FTSQUERY_OR 4 +#define FTSQUERY_PHRASE 5 + + +/* fts3_write.c */ +SQLITE_PRIVATE int sqlite3Fts3UpdateMethod(sqlite3_vtab*,int,sqlite3_value**,sqlite3_int64*); +SQLITE_PRIVATE int sqlite3Fts3PendingTermsFlush(Fts3Table *); +SQLITE_PRIVATE void sqlite3Fts3PendingTermsClear(Fts3Table *); +SQLITE_PRIVATE int sqlite3Fts3Optimize(Fts3Table *); +SQLITE_PRIVATE int sqlite3Fts3SegReaderNew(int, int, sqlite3_int64, + sqlite3_int64, sqlite3_int64, const char *, int, Fts3SegReader**); +SQLITE_PRIVATE int sqlite3Fts3SegReaderPending( + Fts3Table*,int,const char*,int,int,Fts3SegReader**); +SQLITE_PRIVATE void sqlite3Fts3SegReaderFree(Fts3SegReader *); +SQLITE_PRIVATE int sqlite3Fts3AllSegdirs(Fts3Table*, int, int, int, sqlite3_stmt **); +SQLITE_PRIVATE int sqlite3Fts3ReadBlock(Fts3Table*, sqlite3_int64, char **, int*, int*); + +SQLITE_PRIVATE int sqlite3Fts3SelectDoctotal(Fts3Table *, sqlite3_stmt **); +SQLITE_PRIVATE int sqlite3Fts3SelectDocsize(Fts3Table *, sqlite3_int64, sqlite3_stmt **); + +#ifndef SQLITE_DISABLE_FTS4_DEFERRED +SQLITE_PRIVATE void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *); +SQLITE_PRIVATE int sqlite3Fts3DeferToken(Fts3Cursor *, Fts3PhraseToken *, int); +SQLITE_PRIVATE int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *); +SQLITE_PRIVATE void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *); +SQLITE_PRIVATE int sqlite3Fts3DeferredTokenList(Fts3DeferredToken *, char **, int *); +#else +# define sqlite3Fts3FreeDeferredTokens(x) +# define sqlite3Fts3DeferToken(x,y,z) SQLITE_OK +# define sqlite3Fts3CacheDeferredDoclists(x) SQLITE_OK +# define sqlite3Fts3FreeDeferredDoclists(x) +# define sqlite3Fts3DeferredTokenList(x,y,z) SQLITE_OK +#endif + +SQLITE_PRIVATE void sqlite3Fts3SegmentsClose(Fts3Table *); +SQLITE_PRIVATE int sqlite3Fts3MaxLevel(Fts3Table *, int *); + +/* Special values interpreted by sqlite3SegReaderCursor() */ +#define FTS3_SEGCURSOR_PENDING -1 +#define FTS3_SEGCURSOR_ALL -2 + +SQLITE_PRIVATE int sqlite3Fts3SegReaderStart(Fts3Table*, Fts3MultiSegReader*, Fts3SegFilter*); +SQLITE_PRIVATE int sqlite3Fts3SegReaderStep(Fts3Table *, Fts3MultiSegReader *); +SQLITE_PRIVATE void sqlite3Fts3SegReaderFinish(Fts3MultiSegReader *); + +SQLITE_PRIVATE int sqlite3Fts3SegReaderCursor(Fts3Table *, + int, int, int, const char *, int, int, int, Fts3MultiSegReader *); + +/* Flags allowed as part of the 4th argument to SegmentReaderIterate() */ +#define FTS3_SEGMENT_REQUIRE_POS 0x00000001 +#define FTS3_SEGMENT_IGNORE_EMPTY 0x00000002 +#define FTS3_SEGMENT_COLUMN_FILTER 0x00000004 +#define FTS3_SEGMENT_PREFIX 0x00000008 +#define FTS3_SEGMENT_SCAN 0x00000010 +#define FTS3_SEGMENT_FIRST 0x00000020 + +/* Type passed as 4th argument to SegmentReaderIterate() */ +struct Fts3SegFilter { + const char *zTerm; + int nTerm; + int iCol; + int flags; +}; + +struct Fts3MultiSegReader { + /* Used internally by sqlite3Fts3SegReaderXXX() calls */ + Fts3SegReader **apSegment; /* Array of Fts3SegReader objects */ + int nSegment; /* Size of apSegment array */ + int nAdvance; /* How many seg-readers to advance */ + Fts3SegFilter *pFilter; /* Pointer to filter object */ + char *aBuffer; /* Buffer to merge doclists in */ + int nBuffer; /* Allocated size of aBuffer[] in bytes */ + + int iColFilter; /* If >=0, filter for this column */ + int bRestart; + + /* Used by fts3.c only. */ + int nCost; /* Cost of running iterator */ + int bLookup; /* True if a lookup of a single entry. */ + + /* Output values. Valid only after Fts3SegReaderStep() returns SQLITE_ROW. */ + char *zTerm; /* Pointer to term buffer */ + int nTerm; /* Size of zTerm in bytes */ + char *aDoclist; /* Pointer to doclist buffer */ + int nDoclist; /* Size of aDoclist[] in bytes */ +}; + +SQLITE_PRIVATE int sqlite3Fts3Incrmerge(Fts3Table*,int,int); + +#define fts3GetVarint32(p, piVal) ( \ + (*(u8*)(p)&0x80) ? sqlite3Fts3GetVarint32(p, piVal) : (*piVal=*(u8*)(p), 1) \ +) + +/* fts3.c */ +SQLITE_PRIVATE int sqlite3Fts3PutVarint(char *, sqlite3_int64); +SQLITE_PRIVATE int sqlite3Fts3GetVarint(const char *, sqlite_int64 *); +SQLITE_PRIVATE int sqlite3Fts3GetVarint32(const char *, int *); +SQLITE_PRIVATE int sqlite3Fts3VarintLen(sqlite3_uint64); +SQLITE_PRIVATE void sqlite3Fts3Dequote(char *); +SQLITE_PRIVATE void sqlite3Fts3DoclistPrev(int,char*,int,char**,sqlite3_int64*,int*,u8*); +SQLITE_PRIVATE int sqlite3Fts3EvalPhraseStats(Fts3Cursor *, Fts3Expr *, u32 *); +SQLITE_PRIVATE int sqlite3Fts3FirstFilter(sqlite3_int64, char *, int, char *); +SQLITE_PRIVATE void sqlite3Fts3CreateStatTable(int*, Fts3Table*); + +/* fts3_tokenizer.c */ +SQLITE_PRIVATE const char *sqlite3Fts3NextToken(const char *, int *); +SQLITE_PRIVATE int sqlite3Fts3InitHashTable(sqlite3 *, Fts3Hash *, const char *); +SQLITE_PRIVATE int sqlite3Fts3InitTokenizer(Fts3Hash *pHash, const char *, + sqlite3_tokenizer **, char ** +); +SQLITE_PRIVATE int sqlite3Fts3IsIdChar(char); + +/* fts3_snippet.c */ +SQLITE_PRIVATE void sqlite3Fts3Offsets(sqlite3_context*, Fts3Cursor*); +SQLITE_PRIVATE void sqlite3Fts3Snippet(sqlite3_context *, Fts3Cursor *, const char *, + const char *, const char *, int, int +); +SQLITE_PRIVATE void sqlite3Fts3Matchinfo(sqlite3_context *, Fts3Cursor *, const char *); + +/* fts3_expr.c */ +SQLITE_PRIVATE int sqlite3Fts3ExprParse(sqlite3_tokenizer *, int, + char **, int, int, int, const char *, int, Fts3Expr **, char ** +); +SQLITE_PRIVATE void sqlite3Fts3ExprFree(Fts3Expr *); +#ifdef SQLITE_TEST +SQLITE_PRIVATE int sqlite3Fts3ExprInitTestInterface(sqlite3 *db); +SQLITE_PRIVATE int sqlite3Fts3InitTerm(sqlite3 *db); +#endif + +SQLITE_PRIVATE int sqlite3Fts3OpenTokenizer(sqlite3_tokenizer *, int, const char *, int, + sqlite3_tokenizer_cursor ** +); + +/* fts3_aux.c */ +SQLITE_PRIVATE int sqlite3Fts3InitAux(sqlite3 *db); + +SQLITE_PRIVATE void sqlite3Fts3EvalPhraseCleanup(Fts3Phrase *); + +SQLITE_PRIVATE int sqlite3Fts3MsrIncrStart( + Fts3Table*, Fts3MultiSegReader*, int, const char*, int); +SQLITE_PRIVATE int sqlite3Fts3MsrIncrNext( + Fts3Table *, Fts3MultiSegReader *, sqlite3_int64 *, char **, int *); +SQLITE_PRIVATE int sqlite3Fts3EvalPhrasePoslist(Fts3Cursor *, Fts3Expr *, int iCol, char **); +SQLITE_PRIVATE int sqlite3Fts3MsrOvfl(Fts3Cursor *, Fts3MultiSegReader *, int *); +SQLITE_PRIVATE int sqlite3Fts3MsrIncrRestart(Fts3MultiSegReader *pCsr); + +/* fts3_tokenize_vtab.c */ +SQLITE_PRIVATE int sqlite3Fts3InitTok(sqlite3*, Fts3Hash *); + +/* fts3_unicode2.c (functions generated by parsing unicode text files) */ +#ifdef SQLITE_ENABLE_FTS4_UNICODE61 +SQLITE_PRIVATE int sqlite3FtsUnicodeFold(int, int); +SQLITE_PRIVATE int sqlite3FtsUnicodeIsalnum(int); +SQLITE_PRIVATE int sqlite3FtsUnicodeIsdiacritic(int); +#endif + +#endif /* !SQLITE_CORE || SQLITE_ENABLE_FTS3 */ +#endif /* _FTSINT_H */ + +/************** End of fts3Int.h *********************************************/ +/************** Continuing where we left off in fts3.c ***********************/ +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +#if defined(SQLITE_ENABLE_FTS3) && !defined(SQLITE_CORE) +# define SQLITE_CORE 1 +#endif + +/* #include */ +/* #include */ +/* #include */ +/* #include */ +/* #include */ +/* #include */ + +#ifndef SQLITE_CORE + SQLITE_EXTENSION_INIT1 +#endif + +static int fts3EvalNext(Fts3Cursor *pCsr); +static int fts3EvalStart(Fts3Cursor *pCsr); +static int fts3TermSegReaderCursor( + Fts3Cursor *, const char *, int, int, Fts3MultiSegReader **); + +/* +** Write a 64-bit variable-length integer to memory starting at p[0]. +** The length of data written will be between 1 and FTS3_VARINT_MAX bytes. +** The number of bytes written is returned. +*/ +SQLITE_PRIVATE int sqlite3Fts3PutVarint(char *p, sqlite_int64 v){ + unsigned char *q = (unsigned char *) p; + sqlite_uint64 vu = v; + do{ + *q++ = (unsigned char) ((vu & 0x7f) | 0x80); + vu >>= 7; + }while( vu!=0 ); + q[-1] &= 0x7f; /* turn off high bit in final byte */ + assert( q - (unsigned char *)p <= FTS3_VARINT_MAX ); + return (int) (q - (unsigned char *)p); +} + +#define GETVARINT_STEP(v, ptr, shift, mask1, mask2, var, ret) \ + v = (v & mask1) | ( (*ptr++) << shift ); \ + if( (v & mask2)==0 ){ var = v; return ret; } +#define GETVARINT_INIT(v, ptr, shift, mask1, mask2, var, ret) \ + v = (*ptr++); \ + if( (v & mask2)==0 ){ var = v; return ret; } + +/* +** Read a 64-bit variable-length integer from memory starting at p[0]. +** Return the number of bytes read, or 0 on error. +** The value is stored in *v. +*/ +SQLITE_PRIVATE int sqlite3Fts3GetVarint(const char *p, sqlite_int64 *v){ + const char *pStart = p; + u32 a; + u64 b; + int shift; + + GETVARINT_INIT(a, p, 0, 0x00, 0x80, *v, 1); + GETVARINT_STEP(a, p, 7, 0x7F, 0x4000, *v, 2); + GETVARINT_STEP(a, p, 14, 0x3FFF, 0x200000, *v, 3); + GETVARINT_STEP(a, p, 21, 0x1FFFFF, 0x10000000, *v, 4); + b = (a & 0x0FFFFFFF ); + + for(shift=28; shift<=63; shift+=7){ + u64 c = *p++; + b += (c&0x7F) << shift; + if( (c & 0x80)==0 ) break; + } + *v = b; + return (int)(p - pStart); +} + +/* +** Similar to sqlite3Fts3GetVarint(), except that the output is truncated to a +** 32-bit integer before it is returned. +*/ +SQLITE_PRIVATE int sqlite3Fts3GetVarint32(const char *p, int *pi){ + u32 a; + +#ifndef fts3GetVarint32 + GETVARINT_INIT(a, p, 0, 0x00, 0x80, *pi, 1); +#else + a = (*p++); + assert( a & 0x80 ); +#endif + + GETVARINT_STEP(a, p, 7, 0x7F, 0x4000, *pi, 2); + GETVARINT_STEP(a, p, 14, 0x3FFF, 0x200000, *pi, 3); + GETVARINT_STEP(a, p, 21, 0x1FFFFF, 0x10000000, *pi, 4); + a = (a & 0x0FFFFFFF ); + *pi = (int)(a | ((u32)(*p & 0x0F) << 28)); + return 5; +} + +/* +** Return the number of bytes required to encode v as a varint +*/ +SQLITE_PRIVATE int sqlite3Fts3VarintLen(sqlite3_uint64 v){ + int i = 0; + do{ + i++; + v >>= 7; + }while( v!=0 ); + return i; +} + +/* +** Convert an SQL-style quoted string into a normal string by removing +** the quote characters. The conversion is done in-place. If the +** input does not begin with a quote character, then this routine +** is a no-op. +** +** Examples: +** +** "abc" becomes abc +** 'xyz' becomes xyz +** [pqr] becomes pqr +** `mno` becomes mno +** +*/ +SQLITE_PRIVATE void sqlite3Fts3Dequote(char *z){ + char quote; /* Quote character (if any ) */ + + quote = z[0]; + if( quote=='[' || quote=='\'' || quote=='"' || quote=='`' ){ + int iIn = 1; /* Index of next byte to read from input */ + int iOut = 0; /* Index of next byte to write to output */ + + /* If the first byte was a '[', then the close-quote character is a ']' */ + if( quote=='[' ) quote = ']'; + + while( ALWAYS(z[iIn]) ){ + if( z[iIn]==quote ){ + if( z[iIn+1]!=quote ) break; + z[iOut++] = quote; + iIn += 2; + }else{ + z[iOut++] = z[iIn++]; + } + } + z[iOut] = '\0'; + } +} + +/* +** Read a single varint from the doclist at *pp and advance *pp to point +** to the first byte past the end of the varint. Add the value of the varint +** to *pVal. +*/ +static void fts3GetDeltaVarint(char **pp, sqlite3_int64 *pVal){ + sqlite3_int64 iVal; + *pp += sqlite3Fts3GetVarint(*pp, &iVal); + *pVal += iVal; +} + +/* +** When this function is called, *pp points to the first byte following a +** varint that is part of a doclist (or position-list, or any other list +** of varints). This function moves *pp to point to the start of that varint, +** and sets *pVal by the varint value. +** +** Argument pStart points to the first byte of the doclist that the +** varint is part of. +*/ +static void fts3GetReverseVarint( + char **pp, + char *pStart, + sqlite3_int64 *pVal +){ + sqlite3_int64 iVal; + char *p; + + /* Pointer p now points at the first byte past the varint we are + ** interested in. So, unless the doclist is corrupt, the 0x80 bit is + ** clear on character p[-1]. */ + for(p = (*pp)-2; p>=pStart && *p&0x80; p--); + p++; + *pp = p; + + sqlite3Fts3GetVarint(p, &iVal); + *pVal = iVal; +} + +/* +** The xDisconnect() virtual table method. +*/ +static int fts3DisconnectMethod(sqlite3_vtab *pVtab){ + Fts3Table *p = (Fts3Table *)pVtab; + int i; + + assert( p->nPendingData==0 ); + assert( p->pSegments==0 ); + + /* Free any prepared statements held */ + for(i=0; iaStmt); i++){ + sqlite3_finalize(p->aStmt[i]); + } + sqlite3_free(p->zSegmentsTbl); + sqlite3_free(p->zReadExprlist); + sqlite3_free(p->zWriteExprlist); + sqlite3_free(p->zContentTbl); + sqlite3_free(p->zLanguageid); + + /* Invoke the tokenizer destructor to free the tokenizer. */ + p->pTokenizer->pModule->xDestroy(p->pTokenizer); + + sqlite3_free(p); + return SQLITE_OK; +} + +/* +** Construct one or more SQL statements from the format string given +** and then evaluate those statements. The success code is written +** into *pRc. +** +** If *pRc is initially non-zero then this routine is a no-op. +*/ +static void fts3DbExec( + int *pRc, /* Success code */ + sqlite3 *db, /* Database in which to run SQL */ + const char *zFormat, /* Format string for SQL */ + ... /* Arguments to the format string */ +){ + va_list ap; + char *zSql; + if( *pRc ) return; + va_start(ap, zFormat); + zSql = sqlite3_vmprintf(zFormat, ap); + va_end(ap); + if( zSql==0 ){ + *pRc = SQLITE_NOMEM; + }else{ + *pRc = sqlite3_exec(db, zSql, 0, 0, 0); + sqlite3_free(zSql); + } +} + +/* +** The xDestroy() virtual table method. +*/ +static int fts3DestroyMethod(sqlite3_vtab *pVtab){ + Fts3Table *p = (Fts3Table *)pVtab; + int rc = SQLITE_OK; /* Return code */ + const char *zDb = p->zDb; /* Name of database (e.g. "main", "temp") */ + sqlite3 *db = p->db; /* Database handle */ + + /* Drop the shadow tables */ + if( p->zContentTbl==0 ){ + fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_content'", zDb, p->zName); + } + fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_segments'", zDb,p->zName); + fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_segdir'", zDb, p->zName); + fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_docsize'", zDb, p->zName); + fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_stat'", zDb, p->zName); + + /* If everything has worked, invoke fts3DisconnectMethod() to free the + ** memory associated with the Fts3Table structure and return SQLITE_OK. + ** Otherwise, return an SQLite error code. + */ + return (rc==SQLITE_OK ? fts3DisconnectMethod(pVtab) : rc); +} + + +/* +** Invoke sqlite3_declare_vtab() to declare the schema for the FTS3 table +** passed as the first argument. This is done as part of the xConnect() +** and xCreate() methods. +** +** If *pRc is non-zero when this function is called, it is a no-op. +** Otherwise, if an error occurs, an SQLite error code is stored in *pRc +** before returning. +*/ +static void fts3DeclareVtab(int *pRc, Fts3Table *p){ + if( *pRc==SQLITE_OK ){ + int i; /* Iterator variable */ + int rc; /* Return code */ + char *zSql; /* SQL statement passed to declare_vtab() */ + char *zCols; /* List of user defined columns */ + const char *zLanguageid; + + zLanguageid = (p->zLanguageid ? p->zLanguageid : "__langid"); + sqlite3_vtab_config(p->db, SQLITE_VTAB_CONSTRAINT_SUPPORT, 1); + + /* Create a list of user columns for the virtual table */ + zCols = sqlite3_mprintf("%Q, ", p->azColumn[0]); + for(i=1; zCols && inColumn; i++){ + zCols = sqlite3_mprintf("%z%Q, ", zCols, p->azColumn[i]); + } + + /* Create the whole "CREATE TABLE" statement to pass to SQLite */ + zSql = sqlite3_mprintf( + "CREATE TABLE x(%s %Q HIDDEN, docid HIDDEN, %Q HIDDEN)", + zCols, p->zName, zLanguageid + ); + if( !zCols || !zSql ){ + rc = SQLITE_NOMEM; + }else{ + rc = sqlite3_declare_vtab(p->db, zSql); + } + + sqlite3_free(zSql); + sqlite3_free(zCols); + *pRc = rc; + } +} + +/* +** Create the %_stat table if it does not already exist. +*/ +SQLITE_PRIVATE void sqlite3Fts3CreateStatTable(int *pRc, Fts3Table *p){ + fts3DbExec(pRc, p->db, + "CREATE TABLE IF NOT EXISTS %Q.'%q_stat'" + "(id INTEGER PRIMARY KEY, value BLOB);", + p->zDb, p->zName + ); + if( (*pRc)==SQLITE_OK ) p->bHasStat = 1; +} + +/* +** Create the backing store tables (%_content, %_segments and %_segdir) +** required by the FTS3 table passed as the only argument. This is done +** as part of the vtab xCreate() method. +** +** If the p->bHasDocsize boolean is true (indicating that this is an +** FTS4 table, not an FTS3 table) then also create the %_docsize and +** %_stat tables required by FTS4. +*/ +static int fts3CreateTables(Fts3Table *p){ + int rc = SQLITE_OK; /* Return code */ + int i; /* Iterator variable */ + sqlite3 *db = p->db; /* The database connection */ + + if( p->zContentTbl==0 ){ + const char *zLanguageid = p->zLanguageid; + char *zContentCols; /* Columns of %_content table */ + + /* Create a list of user columns for the content table */ + zContentCols = sqlite3_mprintf("docid INTEGER PRIMARY KEY"); + for(i=0; zContentCols && inColumn; i++){ + char *z = p->azColumn[i]; + zContentCols = sqlite3_mprintf("%z, 'c%d%q'", zContentCols, i, z); + } + if( zLanguageid && zContentCols ){ + zContentCols = sqlite3_mprintf("%z, langid", zContentCols, zLanguageid); + } + if( zContentCols==0 ) rc = SQLITE_NOMEM; + + /* Create the content table */ + fts3DbExec(&rc, db, + "CREATE TABLE %Q.'%q_content'(%s)", + p->zDb, p->zName, zContentCols + ); + sqlite3_free(zContentCols); + } + + /* Create other tables */ + fts3DbExec(&rc, db, + "CREATE TABLE %Q.'%q_segments'(blockid INTEGER PRIMARY KEY, block BLOB);", + p->zDb, p->zName + ); + fts3DbExec(&rc, db, + "CREATE TABLE %Q.'%q_segdir'(" + "level INTEGER," + "idx INTEGER," + "start_block INTEGER," + "leaves_end_block INTEGER," + "end_block INTEGER," + "root BLOB," + "PRIMARY KEY(level, idx)" + ");", + p->zDb, p->zName + ); + if( p->bHasDocsize ){ + fts3DbExec(&rc, db, + "CREATE TABLE %Q.'%q_docsize'(docid INTEGER PRIMARY KEY, size BLOB);", + p->zDb, p->zName + ); + } + assert( p->bHasStat==p->bFts4 ); + if( p->bHasStat ){ + sqlite3Fts3CreateStatTable(&rc, p); + } + return rc; +} + +/* +** Store the current database page-size in bytes in p->nPgsz. +** +** If *pRc is non-zero when this function is called, it is a no-op. +** Otherwise, if an error occurs, an SQLite error code is stored in *pRc +** before returning. +*/ +static void fts3DatabasePageSize(int *pRc, Fts3Table *p){ + if( *pRc==SQLITE_OK ){ + int rc; /* Return code */ + char *zSql; /* SQL text "PRAGMA %Q.page_size" */ + sqlite3_stmt *pStmt; /* Compiled "PRAGMA %Q.page_size" statement */ + + zSql = sqlite3_mprintf("PRAGMA %Q.page_size", p->zDb); + if( !zSql ){ + rc = SQLITE_NOMEM; + }else{ + rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0); + if( rc==SQLITE_OK ){ + sqlite3_step(pStmt); + p->nPgsz = sqlite3_column_int(pStmt, 0); + rc = sqlite3_finalize(pStmt); + }else if( rc==SQLITE_AUTH ){ + p->nPgsz = 1024; + rc = SQLITE_OK; + } + } + assert( p->nPgsz>0 || rc!=SQLITE_OK ); + sqlite3_free(zSql); + *pRc = rc; + } +} + +/* +** "Special" FTS4 arguments are column specifications of the following form: +** +** = +** +** There may not be whitespace surrounding the "=" character. The +** term may be quoted, but the may not. +*/ +static int fts3IsSpecialColumn( + const char *z, + int *pnKey, + char **pzValue +){ + char *zValue; + const char *zCsr = z; + + while( *zCsr!='=' ){ + if( *zCsr=='\0' ) return 0; + zCsr++; + } + + *pnKey = (int)(zCsr-z); + zValue = sqlite3_mprintf("%s", &zCsr[1]); + if( zValue ){ + sqlite3Fts3Dequote(zValue); + } + *pzValue = zValue; + return 1; +} + +/* +** Append the output of a printf() style formatting to an existing string. +*/ +static void fts3Appendf( + int *pRc, /* IN/OUT: Error code */ + char **pz, /* IN/OUT: Pointer to string buffer */ + const char *zFormat, /* Printf format string to append */ + ... /* Arguments for printf format string */ +){ + if( *pRc==SQLITE_OK ){ + va_list ap; + char *z; + va_start(ap, zFormat); + z = sqlite3_vmprintf(zFormat, ap); + va_end(ap); + if( z && *pz ){ + char *z2 = sqlite3_mprintf("%s%s", *pz, z); + sqlite3_free(z); + z = z2; + } + if( z==0 ) *pRc = SQLITE_NOMEM; + sqlite3_free(*pz); + *pz = z; + } +} + +/* +** Return a copy of input string zInput enclosed in double-quotes (") and +** with all double quote characters escaped. For example: +** +** fts3QuoteId("un \"zip\"") -> "un \"\"zip\"\"" +** +** The pointer returned points to memory obtained from sqlite3_malloc(). It +** is the callers responsibility to call sqlite3_free() to release this +** memory. +*/ +static char *fts3QuoteId(char const *zInput){ + int nRet; + char *zRet; + nRet = 2 + (int)strlen(zInput)*2 + 1; + zRet = sqlite3_malloc(nRet); + if( zRet ){ + int i; + char *z = zRet; + *(z++) = '"'; + for(i=0; zInput[i]; i++){ + if( zInput[i]=='"' ) *(z++) = '"'; + *(z++) = zInput[i]; + } + *(z++) = '"'; + *(z++) = '\0'; + } + return zRet; +} + +/* +** Return a list of comma separated SQL expressions and a FROM clause that +** could be used in a SELECT statement such as the following: +** +** SELECT FROM %_content AS x ... +** +** to return the docid, followed by each column of text data in order +** from left to write. If parameter zFunc is not NULL, then instead of +** being returned directly each column of text data is passed to an SQL +** function named zFunc first. For example, if zFunc is "unzip" and the +** table has the three user-defined columns "a", "b", and "c", the following +** string is returned: +** +** "docid, unzip(x.'a'), unzip(x.'b'), unzip(x.'c') FROM %_content AS x" +** +** The pointer returned points to a buffer allocated by sqlite3_malloc(). It +** is the responsibility of the caller to eventually free it. +** +** If *pRc is not SQLITE_OK when this function is called, it is a no-op (and +** a NULL pointer is returned). Otherwise, if an OOM error is encountered +** by this function, NULL is returned and *pRc is set to SQLITE_NOMEM. If +** no error occurs, *pRc is left unmodified. +*/ +static char *fts3ReadExprList(Fts3Table *p, const char *zFunc, int *pRc){ + char *zRet = 0; + char *zFree = 0; + char *zFunction; + int i; + + if( p->zContentTbl==0 ){ + if( !zFunc ){ + zFunction = ""; + }else{ + zFree = zFunction = fts3QuoteId(zFunc); + } + fts3Appendf(pRc, &zRet, "docid"); + for(i=0; inColumn; i++){ + fts3Appendf(pRc, &zRet, ",%s(x.'c%d%q')", zFunction, i, p->azColumn[i]); + } + if( p->zLanguageid ){ + fts3Appendf(pRc, &zRet, ", x.%Q", "langid"); + } + sqlite3_free(zFree); + }else{ + fts3Appendf(pRc, &zRet, "rowid"); + for(i=0; inColumn; i++){ + fts3Appendf(pRc, &zRet, ", x.'%q'", p->azColumn[i]); + } + if( p->zLanguageid ){ + fts3Appendf(pRc, &zRet, ", x.%Q", p->zLanguageid); + } + } + fts3Appendf(pRc, &zRet, " FROM '%q'.'%q%s' AS x", + p->zDb, + (p->zContentTbl ? p->zContentTbl : p->zName), + (p->zContentTbl ? "" : "_content") + ); + return zRet; +} + +/* +** Return a list of N comma separated question marks, where N is the number +** of columns in the %_content table (one for the docid plus one for each +** user-defined text column). +** +** If argument zFunc is not NULL, then all but the first question mark +** is preceded by zFunc and an open bracket, and followed by a closed +** bracket. For example, if zFunc is "zip" and the FTS3 table has three +** user-defined text columns, the following string is returned: +** +** "?, zip(?), zip(?), zip(?)" +** +** The pointer returned points to a buffer allocated by sqlite3_malloc(). It +** is the responsibility of the caller to eventually free it. +** +** If *pRc is not SQLITE_OK when this function is called, it is a no-op (and +** a NULL pointer is returned). Otherwise, if an OOM error is encountered +** by this function, NULL is returned and *pRc is set to SQLITE_NOMEM. If +** no error occurs, *pRc is left unmodified. +*/ +static char *fts3WriteExprList(Fts3Table *p, const char *zFunc, int *pRc){ + char *zRet = 0; + char *zFree = 0; + char *zFunction; + int i; + + if( !zFunc ){ + zFunction = ""; + }else{ + zFree = zFunction = fts3QuoteId(zFunc); + } + fts3Appendf(pRc, &zRet, "?"); + for(i=0; inColumn; i++){ + fts3Appendf(pRc, &zRet, ",%s(?)", zFunction); + } + if( p->zLanguageid ){ + fts3Appendf(pRc, &zRet, ", ?"); + } + sqlite3_free(zFree); + return zRet; +} + +/* +** This function interprets the string at (*pp) as a non-negative integer +** value. It reads the integer and sets *pnOut to the value read, then +** sets *pp to point to the byte immediately following the last byte of +** the integer value. +** +** Only decimal digits ('0'..'9') may be part of an integer value. +** +** If *pp does not being with a decimal digit SQLITE_ERROR is returned and +** the output value undefined. Otherwise SQLITE_OK is returned. +** +** This function is used when parsing the "prefix=" FTS4 parameter. +*/ +static int fts3GobbleInt(const char **pp, int *pnOut){ + const char *p; /* Iterator pointer */ + int nInt = 0; /* Output value */ + + for(p=*pp; p[0]>='0' && p[0]<='9'; p++){ + nInt = nInt * 10 + (p[0] - '0'); + } + if( p==*pp ) return SQLITE_ERROR; + *pnOut = nInt; + *pp = p; + return SQLITE_OK; +} + +/* +** This function is called to allocate an array of Fts3Index structures +** representing the indexes maintained by the current FTS table. FTS tables +** always maintain the main "terms" index, but may also maintain one or +** more "prefix" indexes, depending on the value of the "prefix=" parameter +** (if any) specified as part of the CREATE VIRTUAL TABLE statement. +** +** Argument zParam is passed the value of the "prefix=" option if one was +** specified, or NULL otherwise. +** +** If no error occurs, SQLITE_OK is returned and *apIndex set to point to +** the allocated array. *pnIndex is set to the number of elements in the +** array. If an error does occur, an SQLite error code is returned. +** +** Regardless of whether or not an error is returned, it is the responsibility +** of the caller to call sqlite3_free() on the output array to free it. +*/ +static int fts3PrefixParameter( + const char *zParam, /* ABC in prefix=ABC parameter to parse */ + int *pnIndex, /* OUT: size of *apIndex[] array */ + struct Fts3Index **apIndex /* OUT: Array of indexes for this table */ +){ + struct Fts3Index *aIndex; /* Allocated array */ + int nIndex = 1; /* Number of entries in array */ + + if( zParam && zParam[0] ){ + const char *p; + nIndex++; + for(p=zParam; *p; p++){ + if( *p==',' ) nIndex++; + } + } + + aIndex = sqlite3_malloc(sizeof(struct Fts3Index) * nIndex); + *apIndex = aIndex; + *pnIndex = nIndex; + if( !aIndex ){ + return SQLITE_NOMEM; + } + + memset(aIndex, 0, sizeof(struct Fts3Index) * nIndex); + if( zParam ){ + const char *p = zParam; + int i; + for(i=1; i module name ("fts3" or "fts4") +** argv[1] -> database name +** argv[2] -> table name +** argv[...] -> "column name" and other module argument fields. +*/ +static int fts3InitVtab( + int isCreate, /* True for xCreate, false for xConnect */ + sqlite3 *db, /* The SQLite database connection */ + void *pAux, /* Hash table containing tokenizers */ + int argc, /* Number of elements in argv array */ + const char * const *argv, /* xCreate/xConnect argument array */ + sqlite3_vtab **ppVTab, /* Write the resulting vtab structure here */ + char **pzErr /* Write any error message here */ +){ + Fts3Hash *pHash = (Fts3Hash *)pAux; + Fts3Table *p = 0; /* Pointer to allocated vtab */ + int rc = SQLITE_OK; /* Return code */ + int i; /* Iterator variable */ + int nByte; /* Size of allocation used for *p */ + int iCol; /* Column index */ + int nString = 0; /* Bytes required to hold all column names */ + int nCol = 0; /* Number of columns in the FTS table */ + char *zCsr; /* Space for holding column names */ + int nDb; /* Bytes required to hold database name */ + int nName; /* Bytes required to hold table name */ + int isFts4 = (argv[0][3]=='4'); /* True for FTS4, false for FTS3 */ + const char **aCol; /* Array of column names */ + sqlite3_tokenizer *pTokenizer = 0; /* Tokenizer for this table */ + + int nIndex; /* Size of aIndex[] array */ + struct Fts3Index *aIndex = 0; /* Array of indexes for this table */ + + /* The results of parsing supported FTS4 key=value options: */ + int bNoDocsize = 0; /* True to omit %_docsize table */ + int bDescIdx = 0; /* True to store descending indexes */ + char *zPrefix = 0; /* Prefix parameter value (or NULL) */ + char *zCompress = 0; /* compress=? parameter (or NULL) */ + char *zUncompress = 0; /* uncompress=? parameter (or NULL) */ + char *zContent = 0; /* content=? parameter (or NULL) */ + char *zLanguageid = 0; /* languageid=? parameter (or NULL) */ + char **azNotindexed = 0; /* The set of notindexed= columns */ + int nNotindexed = 0; /* Size of azNotindexed[] array */ + + assert( strlen(argv[0])==4 ); + assert( (sqlite3_strnicmp(argv[0], "fts4", 4)==0 && isFts4) + || (sqlite3_strnicmp(argv[0], "fts3", 4)==0 && !isFts4) + ); + + nDb = (int)strlen(argv[1]) + 1; + nName = (int)strlen(argv[2]) + 1; + + nByte = sizeof(const char *) * (argc-2); + aCol = (const char **)sqlite3_malloc(nByte); + if( aCol ){ + memset((void*)aCol, 0, nByte); + azNotindexed = (char **)sqlite3_malloc(nByte); + } + if( azNotindexed ){ + memset(azNotindexed, 0, nByte); + } + if( !aCol || !azNotindexed ){ + rc = SQLITE_NOMEM; + goto fts3_init_out; + } + + /* Loop through all of the arguments passed by the user to the FTS3/4 + ** module (i.e. all the column names and special arguments). This loop + ** does the following: + ** + ** + Figures out the number of columns the FTSX table will have, and + ** the number of bytes of space that must be allocated to store copies + ** of the column names. + ** + ** + If there is a tokenizer specification included in the arguments, + ** initializes the tokenizer pTokenizer. + */ + for(i=3; rc==SQLITE_OK && i8 + && 0==sqlite3_strnicmp(z, "tokenize", 8) + && 0==sqlite3Fts3IsIdChar(z[8]) + ){ + rc = sqlite3Fts3InitTokenizer(pHash, &z[9], &pTokenizer, pzErr); + } + + /* Check if it is an FTS4 special argument. */ + else if( isFts4 && fts3IsSpecialColumn(z, &nKey, &zVal) ){ + struct Fts4Option { + const char *zOpt; + int nOpt; + } aFts4Opt[] = { + { "matchinfo", 9 }, /* 0 -> MATCHINFO */ + { "prefix", 6 }, /* 1 -> PREFIX */ + { "compress", 8 }, /* 2 -> COMPRESS */ + { "uncompress", 10 }, /* 3 -> UNCOMPRESS */ + { "order", 5 }, /* 4 -> ORDER */ + { "content", 7 }, /* 5 -> CONTENT */ + { "languageid", 10 }, /* 6 -> LANGUAGEID */ + { "notindexed", 10 } /* 7 -> NOTINDEXED */ + }; + + int iOpt; + if( !zVal ){ + rc = SQLITE_NOMEM; + }else{ + for(iOpt=0; iOptnOpt && !sqlite3_strnicmp(z, pOp->zOpt, pOp->nOpt) ){ + break; + } + } + if( iOpt==SizeofArray(aFts4Opt) ){ + *pzErr = sqlite3_mprintf("unrecognized parameter: %s", z); + rc = SQLITE_ERROR; + }else{ + switch( iOpt ){ + case 0: /* MATCHINFO */ + if( strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "fts3", 4) ){ + *pzErr = sqlite3_mprintf("unrecognized matchinfo: %s", zVal); + rc = SQLITE_ERROR; + } + bNoDocsize = 1; + break; + + case 1: /* PREFIX */ + sqlite3_free(zPrefix); + zPrefix = zVal; + zVal = 0; + break; + + case 2: /* COMPRESS */ + sqlite3_free(zCompress); + zCompress = zVal; + zVal = 0; + break; + + case 3: /* UNCOMPRESS */ + sqlite3_free(zUncompress); + zUncompress = zVal; + zVal = 0; + break; + + case 4: /* ORDER */ + if( (strlen(zVal)!=3 || sqlite3_strnicmp(zVal, "asc", 3)) + && (strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "desc", 4)) + ){ + *pzErr = sqlite3_mprintf("unrecognized order: %s", zVal); + rc = SQLITE_ERROR; + } + bDescIdx = (zVal[0]=='d' || zVal[0]=='D'); + break; + + case 5: /* CONTENT */ + sqlite3_free(zContent); + zContent = zVal; + zVal = 0; + break; + + case 6: /* LANGUAGEID */ + assert( iOpt==6 ); + sqlite3_free(zLanguageid); + zLanguageid = zVal; + zVal = 0; + break; + + case 7: /* NOTINDEXED */ + azNotindexed[nNotindexed++] = zVal; + zVal = 0; + break; + } + } + sqlite3_free(zVal); + } + } + + /* Otherwise, the argument is a column name. */ + else { + nString += (int)(strlen(z) + 1); + aCol[nCol++] = z; + } + } + + /* If a content=xxx option was specified, the following: + ** + ** 1. Ignore any compress= and uncompress= options. + ** + ** 2. If no column names were specified as part of the CREATE VIRTUAL + ** TABLE statement, use all columns from the content table. + */ + if( rc==SQLITE_OK && zContent ){ + sqlite3_free(zCompress); + sqlite3_free(zUncompress); + zCompress = 0; + zUncompress = 0; + if( nCol==0 ){ + sqlite3_free((void*)aCol); + aCol = 0; + rc = fts3ContentColumns(db, argv[1], zContent, &aCol, &nCol, &nString); + + /* If a languageid= option was specified, remove the language id + ** column from the aCol[] array. */ + if( rc==SQLITE_OK && zLanguageid ){ + int j; + for(j=0; jdb = db; + p->nColumn = nCol; + p->nPendingData = 0; + p->azColumn = (char **)&p[1]; + p->pTokenizer = pTokenizer; + p->nMaxPendingData = FTS3_MAX_PENDING_DATA; + p->bHasDocsize = (isFts4 && bNoDocsize==0); + p->bHasStat = isFts4; + p->bFts4 = isFts4; + p->bDescIdx = bDescIdx; + p->nAutoincrmerge = 0xff; /* 0xff means setting unknown */ + p->zContentTbl = zContent; + p->zLanguageid = zLanguageid; + zContent = 0; + zLanguageid = 0; + TESTONLY( p->inTransaction = -1 ); + TESTONLY( p->mxSavepoint = -1 ); + + p->aIndex = (struct Fts3Index *)&p->azColumn[nCol]; + memcpy(p->aIndex, aIndex, sizeof(struct Fts3Index) * nIndex); + p->nIndex = nIndex; + for(i=0; iaIndex[i].hPending, FTS3_HASH_STRING, 1); + } + p->abNotindexed = (u8 *)&p->aIndex[nIndex]; + + /* Fill in the zName and zDb fields of the vtab structure. */ + zCsr = (char *)&p->abNotindexed[nCol]; + p->zName = zCsr; + memcpy(zCsr, argv[2], nName); + zCsr += nName; + p->zDb = zCsr; + memcpy(zCsr, argv[1], nDb); + zCsr += nDb; + + /* Fill in the azColumn array */ + for(iCol=0; iColazColumn[iCol] = zCsr; + zCsr += n+1; + assert( zCsr <= &((char *)p)[nByte] ); + } + + /* Fill in the abNotindexed array */ + for(iCol=0; iColazColumn[iCol]); + for(i=0; iazColumn[iCol], zNot, n) + ){ + p->abNotindexed[iCol] = 1; + sqlite3_free(zNot); + azNotindexed[i] = 0; + } + } + } + for(i=0; izReadExprlist = fts3ReadExprList(p, zUncompress, &rc); + p->zWriteExprlist = fts3WriteExprList(p, zCompress, &rc); + if( rc!=SQLITE_OK ) goto fts3_init_out; + + /* If this is an xCreate call, create the underlying tables in the + ** database. TODO: For xConnect(), it could verify that said tables exist. + */ + if( isCreate ){ + rc = fts3CreateTables(p); + } + + /* Check to see if a legacy fts3 table has been "upgraded" by the + ** addition of a %_stat table so that it can use incremental merge. + */ + if( !isFts4 && !isCreate ){ + p->bHasStat = 2; + } + + /* Figure out the page-size for the database. This is required in order to + ** estimate the cost of loading large doclists from the database. */ + fts3DatabasePageSize(&rc, p); + p->nNodeSize = p->nPgsz-35; + + /* Declare the table schema to SQLite. */ + fts3DeclareVtab(&rc, p); + +fts3_init_out: + sqlite3_free(zPrefix); + sqlite3_free(aIndex); + sqlite3_free(zCompress); + sqlite3_free(zUncompress); + sqlite3_free(zContent); + sqlite3_free(zLanguageid); + for(i=0; ipModule->xDestroy(pTokenizer); + } + }else{ + assert( p->pSegments==0 ); + *ppVTab = &p->base; + } + return rc; +} + +/* +** The xConnect() and xCreate() methods for the virtual table. All the +** work is done in function fts3InitVtab(). +*/ +static int fts3ConnectMethod( + sqlite3 *db, /* Database connection */ + void *pAux, /* Pointer to tokenizer hash table */ + int argc, /* Number of elements in argv array */ + const char * const *argv, /* xCreate/xConnect argument array */ + sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */ + char **pzErr /* OUT: sqlite3_malloc'd error message */ +){ + return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr); +} +static int fts3CreateMethod( + sqlite3 *db, /* Database connection */ + void *pAux, /* Pointer to tokenizer hash table */ + int argc, /* Number of elements in argv array */ + const char * const *argv, /* xCreate/xConnect argument array */ + sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */ + char **pzErr /* OUT: sqlite3_malloc'd error message */ +){ + return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr); +} + +/* +** Set the pIdxInfo->estimatedRows variable to nRow. Unless this +** extension is currently being used by a version of SQLite too old to +** support estimatedRows. In that case this function is a no-op. +*/ +static void fts3SetEstimatedRows(sqlite3_index_info *pIdxInfo, i64 nRow){ +#if SQLITE_VERSION_NUMBER>=3008002 + if( sqlite3_libversion_number()>=3008002 ){ + pIdxInfo->estimatedRows = nRow; + } +#endif +} + +/* +** Implementation of the xBestIndex method for FTS3 tables. There +** are three possible strategies, in order of preference: +** +** 1. Direct lookup by rowid or docid. +** 2. Full-text search using a MATCH operator on a non-docid column. +** 3. Linear scan of %_content table. +*/ +static int fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){ + Fts3Table *p = (Fts3Table *)pVTab; + int i; /* Iterator variable */ + int iCons = -1; /* Index of constraint to use */ + + int iLangidCons = -1; /* Index of langid=x constraint, if present */ + int iDocidGe = -1; /* Index of docid>=x constraint, if present */ + int iDocidLe = -1; /* Index of docid<=x constraint, if present */ + int iIdx; + + /* By default use a full table scan. This is an expensive option, + ** so search through the constraints to see if a more efficient + ** strategy is possible. + */ + pInfo->idxNum = FTS3_FULLSCAN_SEARCH; + pInfo->estimatedCost = 5000000; + for(i=0; inConstraint; i++){ + int bDocid; /* True if this constraint is on docid */ + struct sqlite3_index_constraint *pCons = &pInfo->aConstraint[i]; + if( pCons->usable==0 ){ + if( pCons->op==SQLITE_INDEX_CONSTRAINT_MATCH ){ + /* There exists an unusable MATCH constraint. This means that if + ** the planner does elect to use the results of this call as part + ** of the overall query plan the user will see an "unable to use + ** function MATCH in the requested context" error. To discourage + ** this, return a very high cost here. */ + pInfo->idxNum = FTS3_FULLSCAN_SEARCH; + pInfo->estimatedCost = 1e50; + fts3SetEstimatedRows(pInfo, ((sqlite3_int64)1) << 50); + return SQLITE_OK; + } + continue; + } + + bDocid = (pCons->iColumn<0 || pCons->iColumn==p->nColumn+1); + + /* A direct lookup on the rowid or docid column. Assign a cost of 1.0. */ + if( iCons<0 && pCons->op==SQLITE_INDEX_CONSTRAINT_EQ && bDocid ){ + pInfo->idxNum = FTS3_DOCID_SEARCH; + pInfo->estimatedCost = 1.0; + iCons = i; + } + + /* A MATCH constraint. Use a full-text search. + ** + ** If there is more than one MATCH constraint available, use the first + ** one encountered. If there is both a MATCH constraint and a direct + ** rowid/docid lookup, prefer the MATCH strategy. This is done even + ** though the rowid/docid lookup is faster than a MATCH query, selecting + ** it would lead to an "unable to use function MATCH in the requested + ** context" error. + */ + if( pCons->op==SQLITE_INDEX_CONSTRAINT_MATCH + && pCons->iColumn>=0 && pCons->iColumn<=p->nColumn + ){ + pInfo->idxNum = FTS3_FULLTEXT_SEARCH + pCons->iColumn; + pInfo->estimatedCost = 2.0; + iCons = i; + } + + /* Equality constraint on the langid column */ + if( pCons->op==SQLITE_INDEX_CONSTRAINT_EQ + && pCons->iColumn==p->nColumn + 2 + ){ + iLangidCons = i; + } + + if( bDocid ){ + switch( pCons->op ){ + case SQLITE_INDEX_CONSTRAINT_GE: + case SQLITE_INDEX_CONSTRAINT_GT: + iDocidGe = i; + break; + + case SQLITE_INDEX_CONSTRAINT_LE: + case SQLITE_INDEX_CONSTRAINT_LT: + iDocidLe = i; + break; + } + } + } + + iIdx = 1; + if( iCons>=0 ){ + pInfo->aConstraintUsage[iCons].argvIndex = iIdx++; + pInfo->aConstraintUsage[iCons].omit = 1; + } + if( iLangidCons>=0 ){ + pInfo->idxNum |= FTS3_HAVE_LANGID; + pInfo->aConstraintUsage[iLangidCons].argvIndex = iIdx++; + } + if( iDocidGe>=0 ){ + pInfo->idxNum |= FTS3_HAVE_DOCID_GE; + pInfo->aConstraintUsage[iDocidGe].argvIndex = iIdx++; + } + if( iDocidLe>=0 ){ + pInfo->idxNum |= FTS3_HAVE_DOCID_LE; + pInfo->aConstraintUsage[iDocidLe].argvIndex = iIdx++; + } + + /* Regardless of the strategy selected, FTS can deliver rows in rowid (or + ** docid) order. Both ascending and descending are possible. + */ + if( pInfo->nOrderBy==1 ){ + struct sqlite3_index_orderby *pOrder = &pInfo->aOrderBy[0]; + if( pOrder->iColumn<0 || pOrder->iColumn==p->nColumn+1 ){ + if( pOrder->desc ){ + pInfo->idxStr = "DESC"; + }else{ + pInfo->idxStr = "ASC"; + } + pInfo->orderByConsumed = 1; + } + } + + assert( p->pSegments==0 ); + return SQLITE_OK; +} + +/* +** Implementation of xOpen method. +*/ +static int fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ + sqlite3_vtab_cursor *pCsr; /* Allocated cursor */ + + UNUSED_PARAMETER(pVTab); + + /* Allocate a buffer large enough for an Fts3Cursor structure. If the + ** allocation succeeds, zero it and return SQLITE_OK. Otherwise, + ** if the allocation fails, return SQLITE_NOMEM. + */ + *ppCsr = pCsr = (sqlite3_vtab_cursor *)sqlite3_malloc(sizeof(Fts3Cursor)); + if( !pCsr ){ + return SQLITE_NOMEM; + } + memset(pCsr, 0, sizeof(Fts3Cursor)); + return SQLITE_OK; +} + +/* +** Close the cursor. For additional information see the documentation +** on the xClose method of the virtual table interface. +*/ +static int fts3CloseMethod(sqlite3_vtab_cursor *pCursor){ + Fts3Cursor *pCsr = (Fts3Cursor *)pCursor; + assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); + sqlite3_finalize(pCsr->pStmt); + sqlite3Fts3ExprFree(pCsr->pExpr); + sqlite3Fts3FreeDeferredTokens(pCsr); + sqlite3_free(pCsr->aDoclist); + sqlite3_free(pCsr->aMatchinfo); + assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); + sqlite3_free(pCsr); + return SQLITE_OK; +} + +/* +** If pCsr->pStmt has not been prepared (i.e. if pCsr->pStmt==0), then +** compose and prepare an SQL statement of the form: +** +** "SELECT FROM %_content WHERE rowid = ?" +** +** (or the equivalent for a content=xxx table) and set pCsr->pStmt to +** it. If an error occurs, return an SQLite error code. +** +** Otherwise, set *ppStmt to point to pCsr->pStmt and return SQLITE_OK. +*/ +static int fts3CursorSeekStmt(Fts3Cursor *pCsr, sqlite3_stmt **ppStmt){ + int rc = SQLITE_OK; + if( pCsr->pStmt==0 ){ + Fts3Table *p = (Fts3Table *)pCsr->base.pVtab; + char *zSql; + zSql = sqlite3_mprintf("SELECT %s WHERE rowid = ?", p->zReadExprlist); + if( !zSql ) return SQLITE_NOMEM; + rc = sqlite3_prepare_v2(p->db, zSql, -1, &pCsr->pStmt, 0); + sqlite3_free(zSql); + } + *ppStmt = pCsr->pStmt; + return rc; +} + +/* +** Position the pCsr->pStmt statement so that it is on the row +** of the %_content table that contains the last match. Return +** SQLITE_OK on success. +*/ +static int fts3CursorSeek(sqlite3_context *pContext, Fts3Cursor *pCsr){ + int rc = SQLITE_OK; + if( pCsr->isRequireSeek ){ + sqlite3_stmt *pStmt = 0; + + rc = fts3CursorSeekStmt(pCsr, &pStmt); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pCsr->pStmt, 1, pCsr->iPrevId); + pCsr->isRequireSeek = 0; + if( SQLITE_ROW==sqlite3_step(pCsr->pStmt) ){ + return SQLITE_OK; + }else{ + rc = sqlite3_reset(pCsr->pStmt); + if( rc==SQLITE_OK && ((Fts3Table *)pCsr->base.pVtab)->zContentTbl==0 ){ + /* If no row was found and no error has occurred, then the %_content + ** table is missing a row that is present in the full-text index. + ** The data structures are corrupt. */ + rc = FTS_CORRUPT_VTAB; + pCsr->isEof = 1; + } + } + } + } + + if( rc!=SQLITE_OK && pContext ){ + sqlite3_result_error_code(pContext, rc); + } + return rc; +} + +/* +** This function is used to process a single interior node when searching +** a b-tree for a term or term prefix. The node data is passed to this +** function via the zNode/nNode parameters. The term to search for is +** passed in zTerm/nTerm. +** +** If piFirst is not NULL, then this function sets *piFirst to the blockid +** of the child node that heads the sub-tree that may contain the term. +** +** If piLast is not NULL, then *piLast is set to the right-most child node +** that heads a sub-tree that may contain a term for which zTerm/nTerm is +** a prefix. +** +** If an OOM error occurs, SQLITE_NOMEM is returned. Otherwise, SQLITE_OK. +*/ +static int fts3ScanInteriorNode( + const char *zTerm, /* Term to select leaves for */ + int nTerm, /* Size of term zTerm in bytes */ + const char *zNode, /* Buffer containing segment interior node */ + int nNode, /* Size of buffer at zNode */ + sqlite3_int64 *piFirst, /* OUT: Selected child node */ + sqlite3_int64 *piLast /* OUT: Selected child node */ +){ + int rc = SQLITE_OK; /* Return code */ + const char *zCsr = zNode; /* Cursor to iterate through node */ + const char *zEnd = &zCsr[nNode];/* End of interior node buffer */ + char *zBuffer = 0; /* Buffer to load terms into */ + int nAlloc = 0; /* Size of allocated buffer */ + int isFirstTerm = 1; /* True when processing first term on page */ + sqlite3_int64 iChild; /* Block id of child node to descend to */ + + /* Skip over the 'height' varint that occurs at the start of every + ** interior node. Then load the blockid of the left-child of the b-tree + ** node into variable iChild. + ** + ** Even if the data structure on disk is corrupted, this (reading two + ** varints from the buffer) does not risk an overread. If zNode is a + ** root node, then the buffer comes from a SELECT statement. SQLite does + ** not make this guarantee explicitly, but in practice there are always + ** either more than 20 bytes of allocated space following the nNode bytes of + ** contents, or two zero bytes. Or, if the node is read from the %_segments + ** table, then there are always 20 bytes of zeroed padding following the + ** nNode bytes of content (see sqlite3Fts3ReadBlock() for details). + */ + zCsr += sqlite3Fts3GetVarint(zCsr, &iChild); + zCsr += sqlite3Fts3GetVarint(zCsr, &iChild); + if( zCsr>zEnd ){ + return FTS_CORRUPT_VTAB; + } + + while( zCsrzEnd ){ + rc = FTS_CORRUPT_VTAB; + goto finish_scan; + } + if( nPrefix+nSuffix>nAlloc ){ + char *zNew; + nAlloc = (nPrefix+nSuffix) * 2; + zNew = (char *)sqlite3_realloc(zBuffer, nAlloc); + if( !zNew ){ + rc = SQLITE_NOMEM; + goto finish_scan; + } + zBuffer = zNew; + } + assert( zBuffer ); + memcpy(&zBuffer[nPrefix], zCsr, nSuffix); + nBuffer = nPrefix + nSuffix; + zCsr += nSuffix; + + /* Compare the term we are searching for with the term just loaded from + ** the interior node. If the specified term is greater than or equal + ** to the term from the interior node, then all terms on the sub-tree + ** headed by node iChild are smaller than zTerm. No need to search + ** iChild. + ** + ** If the interior node term is larger than the specified term, then + ** the tree headed by iChild may contain the specified term. + */ + cmp = memcmp(zTerm, zBuffer, (nBuffer>nTerm ? nTerm : nBuffer)); + if( piFirst && (cmp<0 || (cmp==0 && nBuffer>nTerm)) ){ + *piFirst = iChild; + piFirst = 0; + } + + if( piLast && cmp<0 ){ + *piLast = iChild; + piLast = 0; + } + + iChild++; + }; + + if( piFirst ) *piFirst = iChild; + if( piLast ) *piLast = iChild; + + finish_scan: + sqlite3_free(zBuffer); + return rc; +} + + +/* +** The buffer pointed to by argument zNode (size nNode bytes) contains an +** interior node of a b-tree segment. The zTerm buffer (size nTerm bytes) +** contains a term. This function searches the sub-tree headed by the zNode +** node for the range of leaf nodes that may contain the specified term +** or terms for which the specified term is a prefix. +** +** If piLeaf is not NULL, then *piLeaf is set to the blockid of the +** left-most leaf node in the tree that may contain the specified term. +** If piLeaf2 is not NULL, then *piLeaf2 is set to the blockid of the +** right-most leaf node that may contain a term for which the specified +** term is a prefix. +** +** It is possible that the range of returned leaf nodes does not contain +** the specified term or any terms for which it is a prefix. However, if the +** segment does contain any such terms, they are stored within the identified +** range. Because this function only inspects interior segment nodes (and +** never loads leaf nodes into memory), it is not possible to be sure. +** +** If an error occurs, an error code other than SQLITE_OK is returned. +*/ +static int fts3SelectLeaf( + Fts3Table *p, /* Virtual table handle */ + const char *zTerm, /* Term to select leaves for */ + int nTerm, /* Size of term zTerm in bytes */ + const char *zNode, /* Buffer containing segment interior node */ + int nNode, /* Size of buffer at zNode */ + sqlite3_int64 *piLeaf, /* Selected leaf node */ + sqlite3_int64 *piLeaf2 /* Selected leaf node */ +){ + int rc; /* Return code */ + int iHeight; /* Height of this node in tree */ + + assert( piLeaf || piLeaf2 ); + + fts3GetVarint32(zNode, &iHeight); + rc = fts3ScanInteriorNode(zTerm, nTerm, zNode, nNode, piLeaf, piLeaf2); + assert( !piLeaf2 || !piLeaf || rc!=SQLITE_OK || (*piLeaf<=*piLeaf2) ); + + if( rc==SQLITE_OK && iHeight>1 ){ + char *zBlob = 0; /* Blob read from %_segments table */ + int nBlob; /* Size of zBlob in bytes */ + + if( piLeaf && piLeaf2 && (*piLeaf!=*piLeaf2) ){ + rc = sqlite3Fts3ReadBlock(p, *piLeaf, &zBlob, &nBlob, 0); + if( rc==SQLITE_OK ){ + rc = fts3SelectLeaf(p, zTerm, nTerm, zBlob, nBlob, piLeaf, 0); + } + sqlite3_free(zBlob); + piLeaf = 0; + zBlob = 0; + } + + if( rc==SQLITE_OK ){ + rc = sqlite3Fts3ReadBlock(p, piLeaf?*piLeaf:*piLeaf2, &zBlob, &nBlob, 0); + } + if( rc==SQLITE_OK ){ + rc = fts3SelectLeaf(p, zTerm, nTerm, zBlob, nBlob, piLeaf, piLeaf2); + } + sqlite3_free(zBlob); + } + + return rc; +} + +/* +** This function is used to create delta-encoded serialized lists of FTS3 +** varints. Each call to this function appends a single varint to a list. +*/ +static void fts3PutDeltaVarint( + char **pp, /* IN/OUT: Output pointer */ + sqlite3_int64 *piPrev, /* IN/OUT: Previous value written to list */ + sqlite3_int64 iVal /* Write this value to the list */ +){ + assert( iVal-*piPrev > 0 || (*piPrev==0 && iVal==0) ); + *pp += sqlite3Fts3PutVarint(*pp, iVal-*piPrev); + *piPrev = iVal; +} + +/* +** When this function is called, *ppPoslist is assumed to point to the +** start of a position-list. After it returns, *ppPoslist points to the +** first byte after the position-list. +** +** A position list is list of positions (delta encoded) and columns for +** a single document record of a doclist. So, in other words, this +** routine advances *ppPoslist so that it points to the next docid in +** the doclist, or to the first byte past the end of the doclist. +** +** If pp is not NULL, then the contents of the position list are copied +** to *pp. *pp is set to point to the first byte past the last byte copied +** before this function returns. +*/ +static void fts3PoslistCopy(char **pp, char **ppPoslist){ + char *pEnd = *ppPoslist; + char c = 0; + + /* The end of a position list is marked by a zero encoded as an FTS3 + ** varint. A single POS_END (0) byte. Except, if the 0 byte is preceded by + ** a byte with the 0x80 bit set, then it is not a varint 0, but the tail + ** of some other, multi-byte, value. + ** + ** The following while-loop moves pEnd to point to the first byte that is not + ** immediately preceded by a byte with the 0x80 bit set. Then increments + ** pEnd once more so that it points to the byte immediately following the + ** last byte in the position-list. + */ + while( *pEnd | c ){ + c = *pEnd++ & 0x80; + testcase( c!=0 && (*pEnd)==0 ); + } + pEnd++; /* Advance past the POS_END terminator byte */ + + if( pp ){ + int n = (int)(pEnd - *ppPoslist); + char *p = *pp; + memcpy(p, *ppPoslist, n); + p += n; + *pp = p; + } + *ppPoslist = pEnd; +} + +/* +** When this function is called, *ppPoslist is assumed to point to the +** start of a column-list. After it returns, *ppPoslist points to the +** to the terminator (POS_COLUMN or POS_END) byte of the column-list. +** +** A column-list is list of delta-encoded positions for a single column +** within a single document within a doclist. +** +** The column-list is terminated either by a POS_COLUMN varint (1) or +** a POS_END varint (0). This routine leaves *ppPoslist pointing to +** the POS_COLUMN or POS_END that terminates the column-list. +** +** If pp is not NULL, then the contents of the column-list are copied +** to *pp. *pp is set to point to the first byte past the last byte copied +** before this function returns. The POS_COLUMN or POS_END terminator +** is not copied into *pp. +*/ +static void fts3ColumnlistCopy(char **pp, char **ppPoslist){ + char *pEnd = *ppPoslist; + char c = 0; + + /* A column-list is terminated by either a 0x01 or 0x00 byte that is + ** not part of a multi-byte varint. + */ + while( 0xFE & (*pEnd | c) ){ + c = *pEnd++ & 0x80; + testcase( c!=0 && ((*pEnd)&0xfe)==0 ); + } + if( pp ){ + int n = (int)(pEnd - *ppPoslist); + char *p = *pp; + memcpy(p, *ppPoslist, n); + p += n; + *pp = p; + } + *ppPoslist = pEnd; +} + +/* +** Value used to signify the end of an position-list. This is safe because +** it is not possible to have a document with 2^31 terms. +*/ +#define POSITION_LIST_END 0x7fffffff + +/* +** This function is used to help parse position-lists. When this function is +** called, *pp may point to the start of the next varint in the position-list +** being parsed, or it may point to 1 byte past the end of the position-list +** (in which case **pp will be a terminator bytes POS_END (0) or +** (1)). +** +** If *pp points past the end of the current position-list, set *pi to +** POSITION_LIST_END and return. Otherwise, read the next varint from *pp, +** increment the current value of *pi by the value read, and set *pp to +** point to the next value before returning. +** +** Before calling this routine *pi must be initialized to the value of +** the previous position, or zero if we are reading the first position +** in the position-list. Because positions are delta-encoded, the value +** of the previous position is needed in order to compute the value of +** the next position. +*/ +static void fts3ReadNextPos( + char **pp, /* IN/OUT: Pointer into position-list buffer */ + sqlite3_int64 *pi /* IN/OUT: Value read from position-list */ +){ + if( (**pp)&0xFE ){ + fts3GetDeltaVarint(pp, pi); + *pi -= 2; + }else{ + *pi = POSITION_LIST_END; + } +} + +/* +** If parameter iCol is not 0, write an POS_COLUMN (1) byte followed by +** the value of iCol encoded as a varint to *pp. This will start a new +** column list. +** +** Set *pp to point to the byte just after the last byte written before +** returning (do not modify it if iCol==0). Return the total number of bytes +** written (0 if iCol==0). +*/ +static int fts3PutColNumber(char **pp, int iCol){ + int n = 0; /* Number of bytes written */ + if( iCol ){ + char *p = *pp; /* Output pointer */ + n = 1 + sqlite3Fts3PutVarint(&p[1], iCol); + *p = 0x01; + *pp = &p[n]; + } + return n; +} + +/* +** Compute the union of two position lists. The output written +** into *pp contains all positions of both *pp1 and *pp2 in sorted +** order and with any duplicates removed. All pointers are +** updated appropriately. The caller is responsible for insuring +** that there is enough space in *pp to hold the complete output. +*/ +static void fts3PoslistMerge( + char **pp, /* Output buffer */ + char **pp1, /* Left input list */ + char **pp2 /* Right input list */ +){ + char *p = *pp; + char *p1 = *pp1; + char *p2 = *pp2; + + while( *p1 || *p2 ){ + int iCol1; /* The current column index in pp1 */ + int iCol2; /* The current column index in pp2 */ + + if( *p1==POS_COLUMN ) fts3GetVarint32(&p1[1], &iCol1); + else if( *p1==POS_END ) iCol1 = POSITION_LIST_END; + else iCol1 = 0; + + if( *p2==POS_COLUMN ) fts3GetVarint32(&p2[1], &iCol2); + else if( *p2==POS_END ) iCol2 = POSITION_LIST_END; + else iCol2 = 0; + + if( iCol1==iCol2 ){ + sqlite3_int64 i1 = 0; /* Last position from pp1 */ + sqlite3_int64 i2 = 0; /* Last position from pp2 */ + sqlite3_int64 iPrev = 0; + int n = fts3PutColNumber(&p, iCol1); + p1 += n; + p2 += n; + + /* At this point, both p1 and p2 point to the start of column-lists + ** for the same column (the column with index iCol1 and iCol2). + ** A column-list is a list of non-negative delta-encoded varints, each + ** incremented by 2 before being stored. Each list is terminated by a + ** POS_END (0) or POS_COLUMN (1). The following block merges the two lists + ** and writes the results to buffer p. p is left pointing to the byte + ** after the list written. No terminator (POS_END or POS_COLUMN) is + ** written to the output. + */ + fts3GetDeltaVarint(&p1, &i1); + fts3GetDeltaVarint(&p2, &i2); + do { + fts3PutDeltaVarint(&p, &iPrev, (i1pos(*pp1) && pos(*pp2)-pos(*pp1)<=nToken). i.e. +** when the *pp1 token appears before the *pp2 token, but not more than nToken +** slots before it. +** +** e.g. nToken==1 searches for adjacent positions. +*/ +static int fts3PoslistPhraseMerge( + char **pp, /* IN/OUT: Preallocated output buffer */ + int nToken, /* Maximum difference in token positions */ + int isSaveLeft, /* Save the left position */ + int isExact, /* If *pp1 is exactly nTokens before *pp2 */ + char **pp1, /* IN/OUT: Left input list */ + char **pp2 /* IN/OUT: Right input list */ +){ + char *p = *pp; + char *p1 = *pp1; + char *p2 = *pp2; + int iCol1 = 0; + int iCol2 = 0; + + /* Never set both isSaveLeft and isExact for the same invocation. */ + assert( isSaveLeft==0 || isExact==0 ); + + assert( p!=0 && *p1!=0 && *p2!=0 ); + if( *p1==POS_COLUMN ){ + p1++; + p1 += fts3GetVarint32(p1, &iCol1); + } + if( *p2==POS_COLUMN ){ + p2++; + p2 += fts3GetVarint32(p2, &iCol2); + } + + while( 1 ){ + if( iCol1==iCol2 ){ + char *pSave = p; + sqlite3_int64 iPrev = 0; + sqlite3_int64 iPos1 = 0; + sqlite3_int64 iPos2 = 0; + + if( iCol1 ){ + *p++ = POS_COLUMN; + p += sqlite3Fts3PutVarint(p, iCol1); + } + + assert( *p1!=POS_END && *p1!=POS_COLUMN ); + assert( *p2!=POS_END && *p2!=POS_COLUMN ); + fts3GetDeltaVarint(&p1, &iPos1); iPos1 -= 2; + fts3GetDeltaVarint(&p2, &iPos2); iPos2 -= 2; + + while( 1 ){ + if( iPos2==iPos1+nToken + || (isExact==0 && iPos2>iPos1 && iPos2<=iPos1+nToken) + ){ + sqlite3_int64 iSave; + iSave = isSaveLeft ? iPos1 : iPos2; + fts3PutDeltaVarint(&p, &iPrev, iSave+2); iPrev -= 2; + pSave = 0; + assert( p ); + } + if( (!isSaveLeft && iPos2<=(iPos1+nToken)) || iPos2<=iPos1 ){ + if( (*p2&0xFE)==0 ) break; + fts3GetDeltaVarint(&p2, &iPos2); iPos2 -= 2; + }else{ + if( (*p1&0xFE)==0 ) break; + fts3GetDeltaVarint(&p1, &iPos1); iPos1 -= 2; + } + } + + if( pSave ){ + assert( pp && p ); + p = pSave; + } + + fts3ColumnlistCopy(0, &p1); + fts3ColumnlistCopy(0, &p2); + assert( (*p1&0xFE)==0 && (*p2&0xFE)==0 ); + if( 0==*p1 || 0==*p2 ) break; + + p1++; + p1 += fts3GetVarint32(p1, &iCol1); + p2++; + p2 += fts3GetVarint32(p2, &iCol2); + } + + /* Advance pointer p1 or p2 (whichever corresponds to the smaller of + ** iCol1 and iCol2) so that it points to either the 0x00 that marks the + ** end of the position list, or the 0x01 that precedes the next + ** column-number in the position list. + */ + else if( iCol1=pEnd ){ + *pp = 0; + }else{ + sqlite3_int64 iVal; + *pp += sqlite3Fts3GetVarint(*pp, &iVal); + if( bDescIdx ){ + *pVal -= iVal; + }else{ + *pVal += iVal; + } + } +} + +/* +** This function is used to write a single varint to a buffer. The varint +** is written to *pp. Before returning, *pp is set to point 1 byte past the +** end of the value written. +** +** If *pbFirst is zero when this function is called, the value written to +** the buffer is that of parameter iVal. +** +** If *pbFirst is non-zero when this function is called, then the value +** written is either (iVal-*piPrev) (if bDescIdx is zero) or (*piPrev-iVal) +** (if bDescIdx is non-zero). +** +** Before returning, this function always sets *pbFirst to 1 and *piPrev +** to the value of parameter iVal. +*/ +static void fts3PutDeltaVarint3( + char **pp, /* IN/OUT: Output pointer */ + int bDescIdx, /* True for descending docids */ + sqlite3_int64 *piPrev, /* IN/OUT: Previous value written to list */ + int *pbFirst, /* IN/OUT: True after first int written */ + sqlite3_int64 iVal /* Write this value to the list */ +){ + sqlite3_int64 iWrite; + if( bDescIdx==0 || *pbFirst==0 ){ + iWrite = iVal - *piPrev; + }else{ + iWrite = *piPrev - iVal; + } + assert( *pbFirst || *piPrev==0 ); + assert( *pbFirst==0 || iWrite>0 ); + *pp += sqlite3Fts3PutVarint(*pp, iWrite); + *piPrev = iVal; + *pbFirst = 1; +} + + +/* +** This macro is used by various functions that merge doclists. The two +** arguments are 64-bit docid values. If the value of the stack variable +** bDescDoclist is 0 when this macro is invoked, then it returns (i1-i2). +** Otherwise, (i2-i1). +** +** Using this makes it easier to write code that can merge doclists that are +** sorted in either ascending or descending order. +*/ +#define DOCID_CMP(i1, i2) ((bDescDoclist?-1:1) * (i1-i2)) + +/* +** This function does an "OR" merge of two doclists (output contains all +** positions contained in either argument doclist). If the docids in the +** input doclists are sorted in ascending order, parameter bDescDoclist +** should be false. If they are sorted in ascending order, it should be +** passed a non-zero value. +** +** If no error occurs, *paOut is set to point at an sqlite3_malloc'd buffer +** containing the output doclist and SQLITE_OK is returned. In this case +** *pnOut is set to the number of bytes in the output doclist. +** +** If an error occurs, an SQLite error code is returned. The output values +** are undefined in this case. +*/ +static int fts3DoclistOrMerge( + int bDescDoclist, /* True if arguments are desc */ + char *a1, int n1, /* First doclist */ + char *a2, int n2, /* Second doclist */ + char **paOut, int *pnOut /* OUT: Malloc'd doclist */ +){ + sqlite3_int64 i1 = 0; + sqlite3_int64 i2 = 0; + sqlite3_int64 iPrev = 0; + char *pEnd1 = &a1[n1]; + char *pEnd2 = &a2[n2]; + char *p1 = a1; + char *p2 = a2; + char *p; + char *aOut; + int bFirstOut = 0; + + *paOut = 0; + *pnOut = 0; + + /* Allocate space for the output. Both the input and output doclists + ** are delta encoded. If they are in ascending order (bDescDoclist==0), + ** then the first docid in each list is simply encoded as a varint. For + ** each subsequent docid, the varint stored is the difference between the + ** current and previous docid (a positive number - since the list is in + ** ascending order). + ** + ** The first docid written to the output is therefore encoded using the + ** same number of bytes as it is in whichever of the input lists it is + ** read from. And each subsequent docid read from the same input list + ** consumes either the same or less bytes as it did in the input (since + ** the difference between it and the previous value in the output must + ** be a positive value less than or equal to the delta value read from + ** the input list). The same argument applies to all but the first docid + ** read from the 'other' list. And to the contents of all position lists + ** that will be copied and merged from the input to the output. + ** + ** However, if the first docid copied to the output is a negative number, + ** then the encoding of the first docid from the 'other' input list may + ** be larger in the output than it was in the input (since the delta value + ** may be a larger positive integer than the actual docid). + ** + ** The space required to store the output is therefore the sum of the + ** sizes of the two inputs, plus enough space for exactly one of the input + ** docids to grow. + ** + ** A symetric argument may be made if the doclists are in descending + ** order. + */ + aOut = sqlite3_malloc(n1+n2+FTS3_VARINT_MAX-1); + if( !aOut ) return SQLITE_NOMEM; + + p = aOut; + fts3GetDeltaVarint3(&p1, pEnd1, 0, &i1); + fts3GetDeltaVarint3(&p2, pEnd2, 0, &i2); + while( p1 || p2 ){ + sqlite3_int64 iDiff = DOCID_CMP(i1, i2); + + if( p2 && p1 && iDiff==0 ){ + fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i1); + fts3PoslistMerge(&p, &p1, &p2); + fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); + fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); + }else if( !p2 || (p1 && iDiff<0) ){ + fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i1); + fts3PoslistCopy(&p, &p1); + fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); + }else{ + fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i2); + fts3PoslistCopy(&p, &p2); + fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); + } + } + + *paOut = aOut; + *pnOut = (int)(p-aOut); + assert( *pnOut<=n1+n2+FTS3_VARINT_MAX-1 ); + return SQLITE_OK; +} + +/* +** This function does a "phrase" merge of two doclists. In a phrase merge, +** the output contains a copy of each position from the right-hand input +** doclist for which there is a position in the left-hand input doclist +** exactly nDist tokens before it. +** +** If the docids in the input doclists are sorted in ascending order, +** parameter bDescDoclist should be false. If they are sorted in ascending +** order, it should be passed a non-zero value. +** +** The right-hand input doclist is overwritten by this function. +*/ +static void fts3DoclistPhraseMerge( + int bDescDoclist, /* True if arguments are desc */ + int nDist, /* Distance from left to right (1=adjacent) */ + char *aLeft, int nLeft, /* Left doclist */ + char *aRight, int *pnRight /* IN/OUT: Right/output doclist */ +){ + sqlite3_int64 i1 = 0; + sqlite3_int64 i2 = 0; + sqlite3_int64 iPrev = 0; + char *pEnd1 = &aLeft[nLeft]; + char *pEnd2 = &aRight[*pnRight]; + char *p1 = aLeft; + char *p2 = aRight; + char *p; + int bFirstOut = 0; + char *aOut = aRight; + + assert( nDist>0 ); + + p = aOut; + fts3GetDeltaVarint3(&p1, pEnd1, 0, &i1); + fts3GetDeltaVarint3(&p2, pEnd2, 0, &i2); + + while( p1 && p2 ){ + sqlite3_int64 iDiff = DOCID_CMP(i1, i2); + if( iDiff==0 ){ + char *pSave = p; + sqlite3_int64 iPrevSave = iPrev; + int bFirstOutSave = bFirstOut; + + fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i1); + if( 0==fts3PoslistPhraseMerge(&p, nDist, 0, 1, &p1, &p2) ){ + p = pSave; + iPrev = iPrevSave; + bFirstOut = bFirstOutSave; + } + fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); + fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); + }else if( iDiff<0 ){ + fts3PoslistCopy(0, &p1); + fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); + }else{ + fts3PoslistCopy(0, &p2); + fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); + } + } + + *pnRight = (int)(p - aOut); +} + +/* +** Argument pList points to a position list nList bytes in size. This +** function checks to see if the position list contains any entries for +** a token in position 0 (of any column). If so, it writes argument iDelta +** to the output buffer pOut, followed by a position list consisting only +** of the entries from pList at position 0, and terminated by an 0x00 byte. +** The value returned is the number of bytes written to pOut (if any). +*/ +SQLITE_PRIVATE int sqlite3Fts3FirstFilter( + sqlite3_int64 iDelta, /* Varint that may be written to pOut */ + char *pList, /* Position list (no 0x00 term) */ + int nList, /* Size of pList in bytes */ + char *pOut /* Write output here */ +){ + int nOut = 0; + int bWritten = 0; /* True once iDelta has been written */ + char *p = pList; + char *pEnd = &pList[nList]; + + if( *p!=0x01 ){ + if( *p==0x02 ){ + nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta); + pOut[nOut++] = 0x02; + bWritten = 1; + } + fts3ColumnlistCopy(0, &p); + } + + while( paaOutput); i++){ + if( pTS->aaOutput[i] ){ + if( !aOut ){ + aOut = pTS->aaOutput[i]; + nOut = pTS->anOutput[i]; + pTS->aaOutput[i] = 0; + }else{ + int nNew; + char *aNew; + + int rc = fts3DoclistOrMerge(p->bDescIdx, + pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, &aNew, &nNew + ); + if( rc!=SQLITE_OK ){ + sqlite3_free(aOut); + return rc; + } + + sqlite3_free(pTS->aaOutput[i]); + sqlite3_free(aOut); + pTS->aaOutput[i] = 0; + aOut = aNew; + nOut = nNew; + } + } + } + + pTS->aaOutput[0] = aOut; + pTS->anOutput[0] = nOut; + return SQLITE_OK; +} + +/* +** Merge the doclist aDoclist/nDoclist into the TermSelect object passed +** as the first argument. The merge is an "OR" merge (see function +** fts3DoclistOrMerge() for details). +** +** This function is called with the doclist for each term that matches +** a queried prefix. It merges all these doclists into one, the doclist +** for the specified prefix. Since there can be a very large number of +** doclists to merge, the merging is done pair-wise using the TermSelect +** object. +** +** This function returns SQLITE_OK if the merge is successful, or an +** SQLite error code (SQLITE_NOMEM) if an error occurs. +*/ +static int fts3TermSelectMerge( + Fts3Table *p, /* FTS table handle */ + TermSelect *pTS, /* TermSelect object to merge into */ + char *aDoclist, /* Pointer to doclist */ + int nDoclist /* Size of aDoclist in bytes */ +){ + if( pTS->aaOutput[0]==0 ){ + /* If this is the first term selected, copy the doclist to the output + ** buffer using memcpy(). */ + pTS->aaOutput[0] = sqlite3_malloc(nDoclist); + pTS->anOutput[0] = nDoclist; + if( pTS->aaOutput[0] ){ + memcpy(pTS->aaOutput[0], aDoclist, nDoclist); + }else{ + return SQLITE_NOMEM; + } + }else{ + char *aMerge = aDoclist; + int nMerge = nDoclist; + int iOut; + + for(iOut=0; iOutaaOutput); iOut++){ + if( pTS->aaOutput[iOut]==0 ){ + assert( iOut>0 ); + pTS->aaOutput[iOut] = aMerge; + pTS->anOutput[iOut] = nMerge; + break; + }else{ + char *aNew; + int nNew; + + int rc = fts3DoclistOrMerge(p->bDescIdx, aMerge, nMerge, + pTS->aaOutput[iOut], pTS->anOutput[iOut], &aNew, &nNew + ); + if( rc!=SQLITE_OK ){ + if( aMerge!=aDoclist ) sqlite3_free(aMerge); + return rc; + } + + if( aMerge!=aDoclist ) sqlite3_free(aMerge); + sqlite3_free(pTS->aaOutput[iOut]); + pTS->aaOutput[iOut] = 0; + + aMerge = aNew; + nMerge = nNew; + if( (iOut+1)==SizeofArray(pTS->aaOutput) ){ + pTS->aaOutput[iOut] = aMerge; + pTS->anOutput[iOut] = nMerge; + } + } + } + } + return SQLITE_OK; +} + +/* +** Append SegReader object pNew to the end of the pCsr->apSegment[] array. +*/ +static int fts3SegReaderCursorAppend( + Fts3MultiSegReader *pCsr, + Fts3SegReader *pNew +){ + if( (pCsr->nSegment%16)==0 ){ + Fts3SegReader **apNew; + int nByte = (pCsr->nSegment + 16)*sizeof(Fts3SegReader*); + apNew = (Fts3SegReader **)sqlite3_realloc(pCsr->apSegment, nByte); + if( !apNew ){ + sqlite3Fts3SegReaderFree(pNew); + return SQLITE_NOMEM; + } + pCsr->apSegment = apNew; + } + pCsr->apSegment[pCsr->nSegment++] = pNew; + return SQLITE_OK; +} + +/* +** Add seg-reader objects to the Fts3MultiSegReader object passed as the +** 8th argument. +** +** This function returns SQLITE_OK if successful, or an SQLite error code +** otherwise. +*/ +static int fts3SegReaderCursor( + Fts3Table *p, /* FTS3 table handle */ + int iLangid, /* Language id */ + int iIndex, /* Index to search (from 0 to p->nIndex-1) */ + int iLevel, /* Level of segments to scan */ + const char *zTerm, /* Term to query for */ + int nTerm, /* Size of zTerm in bytes */ + int isPrefix, /* True for a prefix search */ + int isScan, /* True to scan from zTerm to EOF */ + Fts3MultiSegReader *pCsr /* Cursor object to populate */ +){ + int rc = SQLITE_OK; /* Error code */ + sqlite3_stmt *pStmt = 0; /* Statement to iterate through segments */ + int rc2; /* Result of sqlite3_reset() */ + + /* If iLevel is less than 0 and this is not a scan, include a seg-reader + ** for the pending-terms. If this is a scan, then this call must be being + ** made by an fts4aux module, not an FTS table. In this case calling + ** Fts3SegReaderPending might segfault, as the data structures used by + ** fts4aux are not completely populated. So it's easiest to filter these + ** calls out here. */ + if( iLevel<0 && p->aIndex ){ + Fts3SegReader *pSeg = 0; + rc = sqlite3Fts3SegReaderPending(p, iIndex, zTerm, nTerm, isPrefix, &pSeg); + if( rc==SQLITE_OK && pSeg ){ + rc = fts3SegReaderCursorAppend(pCsr, pSeg); + } + } + + if( iLevel!=FTS3_SEGCURSOR_PENDING ){ + if( rc==SQLITE_OK ){ + rc = sqlite3Fts3AllSegdirs(p, iLangid, iIndex, iLevel, &pStmt); + } + + while( rc==SQLITE_OK && SQLITE_ROW==(rc = sqlite3_step(pStmt)) ){ + Fts3SegReader *pSeg = 0; + + /* Read the values returned by the SELECT into local variables. */ + sqlite3_int64 iStartBlock = sqlite3_column_int64(pStmt, 1); + sqlite3_int64 iLeavesEndBlock = sqlite3_column_int64(pStmt, 2); + sqlite3_int64 iEndBlock = sqlite3_column_int64(pStmt, 3); + int nRoot = sqlite3_column_bytes(pStmt, 4); + char const *zRoot = sqlite3_column_blob(pStmt, 4); + + /* If zTerm is not NULL, and this segment is not stored entirely on its + ** root node, the range of leaves scanned can be reduced. Do this. */ + if( iStartBlock && zTerm ){ + sqlite3_int64 *pi = (isPrefix ? &iLeavesEndBlock : 0); + rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &iStartBlock, pi); + if( rc!=SQLITE_OK ) goto finished; + if( isPrefix==0 && isScan==0 ) iLeavesEndBlock = iStartBlock; + } + + rc = sqlite3Fts3SegReaderNew(pCsr->nSegment+1, + (isPrefix==0 && isScan==0), + iStartBlock, iLeavesEndBlock, + iEndBlock, zRoot, nRoot, &pSeg + ); + if( rc!=SQLITE_OK ) goto finished; + rc = fts3SegReaderCursorAppend(pCsr, pSeg); + } + } + + finished: + rc2 = sqlite3_reset(pStmt); + if( rc==SQLITE_DONE ) rc = rc2; + + return rc; +} + +/* +** Set up a cursor object for iterating through a full-text index or a +** single level therein. +*/ +SQLITE_PRIVATE int sqlite3Fts3SegReaderCursor( + Fts3Table *p, /* FTS3 table handle */ + int iLangid, /* Language-id to search */ + int iIndex, /* Index to search (from 0 to p->nIndex-1) */ + int iLevel, /* Level of segments to scan */ + const char *zTerm, /* Term to query for */ + int nTerm, /* Size of zTerm in bytes */ + int isPrefix, /* True for a prefix search */ + int isScan, /* True to scan from zTerm to EOF */ + Fts3MultiSegReader *pCsr /* Cursor object to populate */ +){ + assert( iIndex>=0 && iIndexnIndex ); + assert( iLevel==FTS3_SEGCURSOR_ALL + || iLevel==FTS3_SEGCURSOR_PENDING + || iLevel>=0 + ); + assert( iLevelbase.pVtab; + + if( isPrefix ){ + for(i=1; bFound==0 && inIndex; i++){ + if( p->aIndex[i].nPrefix==nTerm ){ + bFound = 1; + rc = sqlite3Fts3SegReaderCursor(p, pCsr->iLangid, + i, FTS3_SEGCURSOR_ALL, zTerm, nTerm, 0, 0, pSegcsr + ); + pSegcsr->bLookup = 1; + } + } + + for(i=1; bFound==0 && inIndex; i++){ + if( p->aIndex[i].nPrefix==nTerm+1 ){ + bFound = 1; + rc = sqlite3Fts3SegReaderCursor(p, pCsr->iLangid, + i, FTS3_SEGCURSOR_ALL, zTerm, nTerm, 1, 0, pSegcsr + ); + if( rc==SQLITE_OK ){ + rc = fts3SegReaderCursorAddZero( + p, pCsr->iLangid, zTerm, nTerm, pSegcsr + ); + } + } + } + } + + if( bFound==0 ){ + rc = sqlite3Fts3SegReaderCursor(p, pCsr->iLangid, + 0, FTS3_SEGCURSOR_ALL, zTerm, nTerm, isPrefix, 0, pSegcsr + ); + pSegcsr->bLookup = !isPrefix; + } + } + + *ppSegcsr = pSegcsr; + return rc; +} + +/* +** Free an Fts3MultiSegReader allocated by fts3TermSegReaderCursor(). +*/ +static void fts3SegReaderCursorFree(Fts3MultiSegReader *pSegcsr){ + sqlite3Fts3SegReaderFinish(pSegcsr); + sqlite3_free(pSegcsr); +} + +/* +** This function retrieves the doclist for the specified term (or term +** prefix) from the database. +*/ +static int fts3TermSelect( + Fts3Table *p, /* Virtual table handle */ + Fts3PhraseToken *pTok, /* Token to query for */ + int iColumn, /* Column to query (or -ve for all columns) */ + int *pnOut, /* OUT: Size of buffer at *ppOut */ + char **ppOut /* OUT: Malloced result buffer */ +){ + int rc; /* Return code */ + Fts3MultiSegReader *pSegcsr; /* Seg-reader cursor for this term */ + TermSelect tsc; /* Object for pair-wise doclist merging */ + Fts3SegFilter filter; /* Segment term filter configuration */ + + pSegcsr = pTok->pSegcsr; + memset(&tsc, 0, sizeof(TermSelect)); + + filter.flags = FTS3_SEGMENT_IGNORE_EMPTY | FTS3_SEGMENT_REQUIRE_POS + | (pTok->isPrefix ? FTS3_SEGMENT_PREFIX : 0) + | (pTok->bFirst ? FTS3_SEGMENT_FIRST : 0) + | (iColumnnColumn ? FTS3_SEGMENT_COLUMN_FILTER : 0); + filter.iCol = iColumn; + filter.zTerm = pTok->z; + filter.nTerm = pTok->n; + + rc = sqlite3Fts3SegReaderStart(p, pSegcsr, &filter); + while( SQLITE_OK==rc + && SQLITE_ROW==(rc = sqlite3Fts3SegReaderStep(p, pSegcsr)) + ){ + rc = fts3TermSelectMerge(p, &tsc, pSegcsr->aDoclist, pSegcsr->nDoclist); + } + + if( rc==SQLITE_OK ){ + rc = fts3TermSelectFinishMerge(p, &tsc); + } + if( rc==SQLITE_OK ){ + *ppOut = tsc.aaOutput[0]; + *pnOut = tsc.anOutput[0]; + }else{ + int i; + for(i=0; ipSegcsr = 0; + return rc; +} + +/* +** This function counts the total number of docids in the doclist stored +** in buffer aList[], size nList bytes. +** +** If the isPoslist argument is true, then it is assumed that the doclist +** contains a position-list following each docid. Otherwise, it is assumed +** that the doclist is simply a list of docids stored as delta encoded +** varints. +*/ +static int fts3DoclistCountDocids(char *aList, int nList){ + int nDoc = 0; /* Return value */ + if( aList ){ + char *aEnd = &aList[nList]; /* Pointer to one byte after EOF */ + char *p = aList; /* Cursor */ + while( peSearch==FTS3_DOCID_SEARCH || pCsr->eSearch==FTS3_FULLSCAN_SEARCH ){ + if( SQLITE_ROW!=sqlite3_step(pCsr->pStmt) ){ + pCsr->isEof = 1; + rc = sqlite3_reset(pCsr->pStmt); + }else{ + pCsr->iPrevId = sqlite3_column_int64(pCsr->pStmt, 0); + rc = SQLITE_OK; + } + }else{ + rc = fts3EvalNext((Fts3Cursor *)pCursor); + } + assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); + return rc; +} + +/* +** The following are copied from sqliteInt.h. +** +** Constants for the largest and smallest possible 64-bit signed integers. +** These macros are designed to work correctly on both 32-bit and 64-bit +** compilers. +*/ +#ifndef SQLITE_AMALGAMATION +# define LARGEST_INT64 (0xffffffff|(((sqlite3_int64)0x7fffffff)<<32)) +# define SMALLEST_INT64 (((sqlite3_int64)-1) - LARGEST_INT64) +#endif + +/* +** If the numeric type of argument pVal is "integer", then return it +** converted to a 64-bit signed integer. Otherwise, return a copy of +** the second parameter, iDefault. +*/ +static sqlite3_int64 fts3DocidRange(sqlite3_value *pVal, i64 iDefault){ + if( pVal ){ + int eType = sqlite3_value_numeric_type(pVal); + if( eType==SQLITE_INTEGER ){ + return sqlite3_value_int64(pVal); + } + } + return iDefault; +} + +/* +** This is the xFilter interface for the virtual table. See +** the virtual table xFilter method documentation for additional +** information. +** +** If idxNum==FTS3_FULLSCAN_SEARCH then do a full table scan against +** the %_content table. +** +** If idxNum==FTS3_DOCID_SEARCH then do a docid lookup for a single entry +** in the %_content table. +** +** If idxNum>=FTS3_FULLTEXT_SEARCH then use the full text index. The +** column on the left-hand side of the MATCH operator is column +** number idxNum-FTS3_FULLTEXT_SEARCH, 0 indexed. argv[0] is the right-hand +** side of the MATCH operator. +*/ +static int fts3FilterMethod( + sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */ + int idxNum, /* Strategy index */ + const char *idxStr, /* Unused */ + int nVal, /* Number of elements in apVal */ + sqlite3_value **apVal /* Arguments for the indexing scheme */ +){ + int rc; + char *zSql; /* SQL statement used to access %_content */ + int eSearch; + Fts3Table *p = (Fts3Table *)pCursor->pVtab; + Fts3Cursor *pCsr = (Fts3Cursor *)pCursor; + + sqlite3_value *pCons = 0; /* The MATCH or rowid constraint, if any */ + sqlite3_value *pLangid = 0; /* The "langid = ?" constraint, if any */ + sqlite3_value *pDocidGe = 0; /* The "docid >= ?" constraint, if any */ + sqlite3_value *pDocidLe = 0; /* The "docid <= ?" constraint, if any */ + int iIdx; + + UNUSED_PARAMETER(idxStr); + UNUSED_PARAMETER(nVal); + + eSearch = (idxNum & 0x0000FFFF); + assert( eSearch>=0 && eSearch<=(FTS3_FULLTEXT_SEARCH+p->nColumn) ); + assert( p->pSegments==0 ); + + /* Collect arguments into local variables */ + iIdx = 0; + if( eSearch!=FTS3_FULLSCAN_SEARCH ) pCons = apVal[iIdx++]; + if( idxNum & FTS3_HAVE_LANGID ) pLangid = apVal[iIdx++]; + if( idxNum & FTS3_HAVE_DOCID_GE ) pDocidGe = apVal[iIdx++]; + if( idxNum & FTS3_HAVE_DOCID_LE ) pDocidLe = apVal[iIdx++]; + assert( iIdx==nVal ); + + /* In case the cursor has been used before, clear it now. */ + sqlite3_finalize(pCsr->pStmt); + sqlite3_free(pCsr->aDoclist); + sqlite3Fts3ExprFree(pCsr->pExpr); + memset(&pCursor[1], 0, sizeof(Fts3Cursor)-sizeof(sqlite3_vtab_cursor)); + + /* Set the lower and upper bounds on docids to return */ + pCsr->iMinDocid = fts3DocidRange(pDocidGe, SMALLEST_INT64); + pCsr->iMaxDocid = fts3DocidRange(pDocidLe, LARGEST_INT64); + + if( idxStr ){ + pCsr->bDesc = (idxStr[0]=='D'); + }else{ + pCsr->bDesc = p->bDescIdx; + } + pCsr->eSearch = (i16)eSearch; + + if( eSearch!=FTS3_DOCID_SEARCH && eSearch!=FTS3_FULLSCAN_SEARCH ){ + int iCol = eSearch-FTS3_FULLTEXT_SEARCH; + const char *zQuery = (const char *)sqlite3_value_text(pCons); + + if( zQuery==0 && sqlite3_value_type(pCons)!=SQLITE_NULL ){ + return SQLITE_NOMEM; + } + + pCsr->iLangid = 0; + if( pLangid ) pCsr->iLangid = sqlite3_value_int(pLangid); + + assert( p->base.zErrMsg==0 ); + rc = sqlite3Fts3ExprParse(p->pTokenizer, pCsr->iLangid, + p->azColumn, p->bFts4, p->nColumn, iCol, zQuery, -1, &pCsr->pExpr, + &p->base.zErrMsg + ); + if( rc!=SQLITE_OK ){ + return rc; + } + + rc = fts3EvalStart(pCsr); + sqlite3Fts3SegmentsClose(p); + if( rc!=SQLITE_OK ) return rc; + pCsr->pNextId = pCsr->aDoclist; + pCsr->iPrevId = 0; + } + + /* Compile a SELECT statement for this cursor. For a full-table-scan, the + ** statement loops through all rows of the %_content table. For a + ** full-text query or docid lookup, the statement retrieves a single + ** row by docid. + */ + if( eSearch==FTS3_FULLSCAN_SEARCH ){ + zSql = sqlite3_mprintf( + "SELECT %s ORDER BY rowid %s", + p->zReadExprlist, (pCsr->bDesc ? "DESC" : "ASC") + ); + if( zSql ){ + rc = sqlite3_prepare_v2(p->db, zSql, -1, &pCsr->pStmt, 0); + sqlite3_free(zSql); + }else{ + rc = SQLITE_NOMEM; + } + }else if( eSearch==FTS3_DOCID_SEARCH ){ + rc = fts3CursorSeekStmt(pCsr, &pCsr->pStmt); + if( rc==SQLITE_OK ){ + rc = sqlite3_bind_value(pCsr->pStmt, 1, pCons); + } + } + if( rc!=SQLITE_OK ) return rc; + + return fts3NextMethod(pCursor); +} + +/* +** This is the xEof method of the virtual table. SQLite calls this +** routine to find out if it has reached the end of a result set. +*/ +static int fts3EofMethod(sqlite3_vtab_cursor *pCursor){ + return ((Fts3Cursor *)pCursor)->isEof; +} + +/* +** This is the xRowid method. The SQLite core calls this routine to +** retrieve the rowid for the current row of the result set. fts3 +** exposes %_content.docid as the rowid for the virtual table. The +** rowid should be written to *pRowid. +*/ +static int fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){ + Fts3Cursor *pCsr = (Fts3Cursor *) pCursor; + *pRowid = pCsr->iPrevId; + return SQLITE_OK; +} + +/* +** This is the xColumn method, called by SQLite to request a value from +** the row that the supplied cursor currently points to. +** +** If: +** +** (iCol < p->nColumn) -> The value of the iCol'th user column. +** (iCol == p->nColumn) -> Magic column with the same name as the table. +** (iCol == p->nColumn+1) -> Docid column +** (iCol == p->nColumn+2) -> Langid column +*/ +static int fts3ColumnMethod( + sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ + sqlite3_context *pCtx, /* Context for sqlite3_result_xxx() calls */ + int iCol /* Index of column to read value from */ +){ + int rc = SQLITE_OK; /* Return Code */ + Fts3Cursor *pCsr = (Fts3Cursor *) pCursor; + Fts3Table *p = (Fts3Table *)pCursor->pVtab; + + /* The column value supplied by SQLite must be in range. */ + assert( iCol>=0 && iCol<=p->nColumn+2 ); + + if( iCol==p->nColumn+1 ){ + /* This call is a request for the "docid" column. Since "docid" is an + ** alias for "rowid", use the xRowid() method to obtain the value. + */ + sqlite3_result_int64(pCtx, pCsr->iPrevId); + }else if( iCol==p->nColumn ){ + /* The extra column whose name is the same as the table. + ** Return a blob which is a pointer to the cursor. */ + sqlite3_result_blob(pCtx, &pCsr, sizeof(pCsr), SQLITE_TRANSIENT); + }else if( iCol==p->nColumn+2 && pCsr->pExpr ){ + sqlite3_result_int64(pCtx, pCsr->iLangid); + }else{ + /* The requested column is either a user column (one that contains + ** indexed data), or the language-id column. */ + rc = fts3CursorSeek(0, pCsr); + + if( rc==SQLITE_OK ){ + if( iCol==p->nColumn+2 ){ + int iLangid = 0; + if( p->zLanguageid ){ + iLangid = sqlite3_column_int(pCsr->pStmt, p->nColumn+1); + } + sqlite3_result_int(pCtx, iLangid); + }else if( sqlite3_data_count(pCsr->pStmt)>(iCol+1) ){ + sqlite3_result_value(pCtx, sqlite3_column_value(pCsr->pStmt, iCol+1)); + } + } + } + + assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); + return rc; +} + +/* +** This function is the implementation of the xUpdate callback used by +** FTS3 virtual tables. It is invoked by SQLite each time a row is to be +** inserted, updated or deleted. +*/ +static int fts3UpdateMethod( + sqlite3_vtab *pVtab, /* Virtual table handle */ + int nArg, /* Size of argument array */ + sqlite3_value **apVal, /* Array of arguments */ + sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */ +){ + return sqlite3Fts3UpdateMethod(pVtab, nArg, apVal, pRowid); +} + +/* +** Implementation of xSync() method. Flush the contents of the pending-terms +** hash-table to the database. +*/ +static int fts3SyncMethod(sqlite3_vtab *pVtab){ + + /* Following an incremental-merge operation, assuming that the input + ** segments are not completely consumed (the usual case), they are updated + ** in place to remove the entries that have already been merged. This + ** involves updating the leaf block that contains the smallest unmerged + ** entry and each block (if any) between the leaf and the root node. So + ** if the height of the input segment b-trees is N, and input segments + ** are merged eight at a time, updating the input segments at the end + ** of an incremental-merge requires writing (8*(1+N)) blocks. N is usually + ** small - often between 0 and 2. So the overhead of the incremental + ** merge is somewhere between 8 and 24 blocks. To avoid this overhead + ** dwarfing the actual productive work accomplished, the incremental merge + ** is only attempted if it will write at least 64 leaf blocks. Hence + ** nMinMerge. + ** + ** Of course, updating the input segments also involves deleting a bunch + ** of blocks from the segments table. But this is not considered overhead + ** as it would also be required by a crisis-merge that used the same input + ** segments. + */ + const u32 nMinMerge = 64; /* Minimum amount of incr-merge work to do */ + + Fts3Table *p = (Fts3Table*)pVtab; + int rc = sqlite3Fts3PendingTermsFlush(p); + + if( rc==SQLITE_OK + && p->nLeafAdd>(nMinMerge/16) + && p->nAutoincrmerge && p->nAutoincrmerge!=0xff + ){ + int mxLevel = 0; /* Maximum relative level value in db */ + int A; /* Incr-merge parameter A */ + + rc = sqlite3Fts3MaxLevel(p, &mxLevel); + assert( rc==SQLITE_OK || mxLevel==0 ); + A = p->nLeafAdd * mxLevel; + A += (A/2); + if( A>(int)nMinMerge ) rc = sqlite3Fts3Incrmerge(p, A, p->nAutoincrmerge); + } + sqlite3Fts3SegmentsClose(p); + return rc; +} + +/* +** If it is currently unknown whether or not the FTS table has an %_stat +** table (if p->bHasStat==2), attempt to determine this (set p->bHasStat +** to 0 or 1). Return SQLITE_OK if successful, or an SQLite error code +** if an error occurs. +*/ +static int fts3SetHasStat(Fts3Table *p){ + int rc = SQLITE_OK; + if( p->bHasStat==2 ){ + const char *zFmt ="SELECT 1 FROM %Q.sqlite_master WHERE tbl_name='%q_stat'"; + char *zSql = sqlite3_mprintf(zFmt, p->zDb, p->zName); + if( zSql ){ + sqlite3_stmt *pStmt = 0; + rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, 0); + if( rc==SQLITE_OK ){ + int bHasStat = (sqlite3_step(pStmt)==SQLITE_ROW); + rc = sqlite3_finalize(pStmt); + if( rc==SQLITE_OK ) p->bHasStat = bHasStat; + } + sqlite3_free(zSql); + }else{ + rc = SQLITE_NOMEM; + } + } + return rc; +} + +/* +** Implementation of xBegin() method. +*/ +static int fts3BeginMethod(sqlite3_vtab *pVtab){ + Fts3Table *p = (Fts3Table*)pVtab; + UNUSED_PARAMETER(pVtab); + assert( p->pSegments==0 ); + assert( p->nPendingData==0 ); + assert( p->inTransaction!=1 ); + TESTONLY( p->inTransaction = 1 ); + TESTONLY( p->mxSavepoint = -1; ); + p->nLeafAdd = 0; + return fts3SetHasStat(p); +} + +/* +** Implementation of xCommit() method. This is a no-op. The contents of +** the pending-terms hash-table have already been flushed into the database +** by fts3SyncMethod(). +*/ +static int fts3CommitMethod(sqlite3_vtab *pVtab){ + TESTONLY( Fts3Table *p = (Fts3Table*)pVtab ); + UNUSED_PARAMETER(pVtab); + assert( p->nPendingData==0 ); + assert( p->inTransaction!=0 ); + assert( p->pSegments==0 ); + TESTONLY( p->inTransaction = 0 ); + TESTONLY( p->mxSavepoint = -1; ); + return SQLITE_OK; +} + +/* +** Implementation of xRollback(). Discard the contents of the pending-terms +** hash-table. Any changes made to the database are reverted by SQLite. +*/ +static int fts3RollbackMethod(sqlite3_vtab *pVtab){ + Fts3Table *p = (Fts3Table*)pVtab; + sqlite3Fts3PendingTermsClear(p); + assert( p->inTransaction!=0 ); + TESTONLY( p->inTransaction = 0 ); + TESTONLY( p->mxSavepoint = -1; ); + return SQLITE_OK; +} + +/* +** When called, *ppPoslist must point to the byte immediately following the +** end of a position-list. i.e. ( (*ppPoslist)[-1]==POS_END ). This function +** moves *ppPoslist so that it instead points to the first byte of the +** same position list. +*/ +static void fts3ReversePoslist(char *pStart, char **ppPoslist){ + char *p = &(*ppPoslist)[-2]; + char c = 0; + + while( p>pStart && (c=*p--)==0 ); + while( p>pStart && (*p & 0x80) | c ){ + c = *p--; + } + if( p>pStart ){ p = &p[2]; } + while( *p++&0x80 ); + *ppPoslist = p; +} + +/* +** Helper function used by the implementation of the overloaded snippet(), +** offsets() and optimize() SQL functions. +** +** If the value passed as the third argument is a blob of size +** sizeof(Fts3Cursor*), then the blob contents are copied to the +** output variable *ppCsr and SQLITE_OK is returned. Otherwise, an error +** message is written to context pContext and SQLITE_ERROR returned. The +** string passed via zFunc is used as part of the error message. +*/ +static int fts3FunctionArg( + sqlite3_context *pContext, /* SQL function call context */ + const char *zFunc, /* Function name */ + sqlite3_value *pVal, /* argv[0] passed to function */ + Fts3Cursor **ppCsr /* OUT: Store cursor handle here */ +){ + Fts3Cursor *pRet; + if( sqlite3_value_type(pVal)!=SQLITE_BLOB + || sqlite3_value_bytes(pVal)!=sizeof(Fts3Cursor *) + ){ + char *zErr = sqlite3_mprintf("illegal first argument to %s", zFunc); + sqlite3_result_error(pContext, zErr, -1); + sqlite3_free(zErr); + return SQLITE_ERROR; + } + memcpy(&pRet, sqlite3_value_blob(pVal), sizeof(Fts3Cursor *)); + *ppCsr = pRet; + return SQLITE_OK; +} + +/* +** Implementation of the snippet() function for FTS3 +*/ +static void fts3SnippetFunc( + sqlite3_context *pContext, /* SQLite function call context */ + int nVal, /* Size of apVal[] array */ + sqlite3_value **apVal /* Array of arguments */ +){ + Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */ + const char *zStart = ""; + const char *zEnd = ""; + const char *zEllipsis = "..."; + int iCol = -1; + int nToken = 15; /* Default number of tokens in snippet */ + + /* There must be at least one argument passed to this function (otherwise + ** the non-overloaded version would have been called instead of this one). + */ + assert( nVal>=1 ); + + if( nVal>6 ){ + sqlite3_result_error(pContext, + "wrong number of arguments to function snippet()", -1); + return; + } + if( fts3FunctionArg(pContext, "snippet", apVal[0], &pCsr) ) return; + + switch( nVal ){ + case 6: nToken = sqlite3_value_int(apVal[5]); + case 5: iCol = sqlite3_value_int(apVal[4]); + case 4: zEllipsis = (const char*)sqlite3_value_text(apVal[3]); + case 3: zEnd = (const char*)sqlite3_value_text(apVal[2]); + case 2: zStart = (const char*)sqlite3_value_text(apVal[1]); + } + if( !zEllipsis || !zEnd || !zStart ){ + sqlite3_result_error_nomem(pContext); + }else if( SQLITE_OK==fts3CursorSeek(pContext, pCsr) ){ + sqlite3Fts3Snippet(pContext, pCsr, zStart, zEnd, zEllipsis, iCol, nToken); + } +} + +/* +** Implementation of the offsets() function for FTS3 +*/ +static void fts3OffsetsFunc( + sqlite3_context *pContext, /* SQLite function call context */ + int nVal, /* Size of argument array */ + sqlite3_value **apVal /* Array of arguments */ +){ + Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */ + + UNUSED_PARAMETER(nVal); + + assert( nVal==1 ); + if( fts3FunctionArg(pContext, "offsets", apVal[0], &pCsr) ) return; + assert( pCsr ); + if( SQLITE_OK==fts3CursorSeek(pContext, pCsr) ){ + sqlite3Fts3Offsets(pContext, pCsr); + } +} + +/* +** Implementation of the special optimize() function for FTS3. This +** function merges all segments in the database to a single segment. +** Example usage is: +** +** SELECT optimize(t) FROM t LIMIT 1; +** +** where 't' is the name of an FTS3 table. +*/ +static void fts3OptimizeFunc( + sqlite3_context *pContext, /* SQLite function call context */ + int nVal, /* Size of argument array */ + sqlite3_value **apVal /* Array of arguments */ +){ + int rc; /* Return code */ + Fts3Table *p; /* Virtual table handle */ + Fts3Cursor *pCursor; /* Cursor handle passed through apVal[0] */ + + UNUSED_PARAMETER(nVal); + + assert( nVal==1 ); + if( fts3FunctionArg(pContext, "optimize", apVal[0], &pCursor) ) return; + p = (Fts3Table *)pCursor->base.pVtab; + assert( p ); + + rc = sqlite3Fts3Optimize(p); + + switch( rc ){ + case SQLITE_OK: + sqlite3_result_text(pContext, "Index optimized", -1, SQLITE_STATIC); + break; + case SQLITE_DONE: + sqlite3_result_text(pContext, "Index already optimal", -1, SQLITE_STATIC); + break; + default: + sqlite3_result_error_code(pContext, rc); + break; + } +} + +/* +** Implementation of the matchinfo() function for FTS3 +*/ +static void fts3MatchinfoFunc( + sqlite3_context *pContext, /* SQLite function call context */ + int nVal, /* Size of argument array */ + sqlite3_value **apVal /* Array of arguments */ +){ + Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */ + assert( nVal==1 || nVal==2 ); + if( SQLITE_OK==fts3FunctionArg(pContext, "matchinfo", apVal[0], &pCsr) ){ + const char *zArg = 0; + if( nVal>1 ){ + zArg = (const char *)sqlite3_value_text(apVal[1]); + } + sqlite3Fts3Matchinfo(pContext, pCsr, zArg); + } +} + +/* +** This routine implements the xFindFunction method for the FTS3 +** virtual table. +*/ +static int fts3FindFunctionMethod( + sqlite3_vtab *pVtab, /* Virtual table handle */ + int nArg, /* Number of SQL function arguments */ + const char *zName, /* Name of SQL function */ + void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ + void **ppArg /* Unused */ +){ + struct Overloaded { + const char *zName; + void (*xFunc)(sqlite3_context*,int,sqlite3_value**); + } aOverload[] = { + { "snippet", fts3SnippetFunc }, + { "offsets", fts3OffsetsFunc }, + { "optimize", fts3OptimizeFunc }, + { "matchinfo", fts3MatchinfoFunc }, + }; + int i; /* Iterator variable */ + + UNUSED_PARAMETER(pVtab); + UNUSED_PARAMETER(nArg); + UNUSED_PARAMETER(ppArg); + + for(i=0; idb; /* Database connection */ + int rc; /* Return Code */ + + /* At this point it must be known if the %_stat table exists or not. + ** So bHasStat may not be 2. */ + rc = fts3SetHasStat(p); + + /* As it happens, the pending terms table is always empty here. This is + ** because an "ALTER TABLE RENAME TABLE" statement inside a transaction + ** always opens a savepoint transaction. And the xSavepoint() method + ** flushes the pending terms table. But leave the (no-op) call to + ** PendingTermsFlush() in in case that changes. + */ + assert( p->nPendingData==0 ); + if( rc==SQLITE_OK ){ + rc = sqlite3Fts3PendingTermsFlush(p); + } + + if( p->zContentTbl==0 ){ + fts3DbExec(&rc, db, + "ALTER TABLE %Q.'%q_content' RENAME TO '%q_content';", + p->zDb, p->zName, zName + ); + } + + if( p->bHasDocsize ){ + fts3DbExec(&rc, db, + "ALTER TABLE %Q.'%q_docsize' RENAME TO '%q_docsize';", + p->zDb, p->zName, zName + ); + } + if( p->bHasStat ){ + fts3DbExec(&rc, db, + "ALTER TABLE %Q.'%q_stat' RENAME TO '%q_stat';", + p->zDb, p->zName, zName + ); + } + fts3DbExec(&rc, db, + "ALTER TABLE %Q.'%q_segments' RENAME TO '%q_segments';", + p->zDb, p->zName, zName + ); + fts3DbExec(&rc, db, + "ALTER TABLE %Q.'%q_segdir' RENAME TO '%q_segdir';", + p->zDb, p->zName, zName + ); + return rc; +} + +/* +** The xSavepoint() method. +** +** Flush the contents of the pending-terms table to disk. +*/ +static int fts3SavepointMethod(sqlite3_vtab *pVtab, int iSavepoint){ + int rc = SQLITE_OK; + UNUSED_PARAMETER(iSavepoint); + assert( ((Fts3Table *)pVtab)->inTransaction ); + assert( ((Fts3Table *)pVtab)->mxSavepoint < iSavepoint ); + TESTONLY( ((Fts3Table *)pVtab)->mxSavepoint = iSavepoint ); + if( ((Fts3Table *)pVtab)->bIgnoreSavepoint==0 ){ + rc = fts3SyncMethod(pVtab); + } + return rc; +} + +/* +** The xRelease() method. +** +** This is a no-op. +*/ +static int fts3ReleaseMethod(sqlite3_vtab *pVtab, int iSavepoint){ + TESTONLY( Fts3Table *p = (Fts3Table*)pVtab ); + UNUSED_PARAMETER(iSavepoint); + UNUSED_PARAMETER(pVtab); + assert( p->inTransaction ); + assert( p->mxSavepoint >= iSavepoint ); + TESTONLY( p->mxSavepoint = iSavepoint-1 ); + return SQLITE_OK; +} + +/* +** The xRollbackTo() method. +** +** Discard the contents of the pending terms table. +*/ +static int fts3RollbackToMethod(sqlite3_vtab *pVtab, int iSavepoint){ + Fts3Table *p = (Fts3Table*)pVtab; + UNUSED_PARAMETER(iSavepoint); + assert( p->inTransaction ); + assert( p->mxSavepoint >= iSavepoint ); + TESTONLY( p->mxSavepoint = iSavepoint ); + sqlite3Fts3PendingTermsClear(p); + return SQLITE_OK; +} + +static const sqlite3_module fts3Module = { + /* iVersion */ 2, + /* xCreate */ fts3CreateMethod, + /* xConnect */ fts3ConnectMethod, + /* xBestIndex */ fts3BestIndexMethod, + /* xDisconnect */ fts3DisconnectMethod, + /* xDestroy */ fts3DestroyMethod, + /* xOpen */ fts3OpenMethod, + /* xClose */ fts3CloseMethod, + /* xFilter */ fts3FilterMethod, + /* xNext */ fts3NextMethod, + /* xEof */ fts3EofMethod, + /* xColumn */ fts3ColumnMethod, + /* xRowid */ fts3RowidMethod, + /* xUpdate */ fts3UpdateMethod, + /* xBegin */ fts3BeginMethod, + /* xSync */ fts3SyncMethod, + /* xCommit */ fts3CommitMethod, + /* xRollback */ fts3RollbackMethod, + /* xFindFunction */ fts3FindFunctionMethod, + /* xRename */ fts3RenameMethod, + /* xSavepoint */ fts3SavepointMethod, + /* xRelease */ fts3ReleaseMethod, + /* xRollbackTo */ fts3RollbackToMethod, +}; + +/* +** This function is registered as the module destructor (called when an +** FTS3 enabled database connection is closed). It frees the memory +** allocated for the tokenizer hash table. +*/ +static void hashDestroy(void *p){ + Fts3Hash *pHash = (Fts3Hash *)p; + sqlite3Fts3HashClear(pHash); + sqlite3_free(pHash); +} + +/* +** The fts3 built-in tokenizers - "simple", "porter" and "icu"- are +** implemented in files fts3_tokenizer1.c, fts3_porter.c and fts3_icu.c +** respectively. The following three forward declarations are for functions +** declared in these files used to retrieve the respective implementations. +** +** Calling sqlite3Fts3SimpleTokenizerModule() sets the value pointed +** to by the argument to point to the "simple" tokenizer implementation. +** And so on. +*/ +SQLITE_PRIVATE void sqlite3Fts3SimpleTokenizerModule(sqlite3_tokenizer_module const**ppModule); +SQLITE_PRIVATE void sqlite3Fts3PorterTokenizerModule(sqlite3_tokenizer_module const**ppModule); +#ifdef SQLITE_ENABLE_FTS4_UNICODE61 +SQLITE_PRIVATE void sqlite3Fts3UnicodeTokenizer(sqlite3_tokenizer_module const**ppModule); +#endif +#ifdef SQLITE_ENABLE_ICU +SQLITE_PRIVATE void sqlite3Fts3IcuTokenizerModule(sqlite3_tokenizer_module const**ppModule); +#endif + +/* +** Initialize the fts3 extension. If this extension is built as part +** of the sqlite library, then this function is called directly by +** SQLite. If fts3 is built as a dynamically loadable extension, this +** function is called by the sqlite3_extension_init() entry point. +*/ +SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db){ + int rc = SQLITE_OK; + Fts3Hash *pHash = 0; + const sqlite3_tokenizer_module *pSimple = 0; + const sqlite3_tokenizer_module *pPorter = 0; +#ifdef SQLITE_ENABLE_FTS4_UNICODE61 + const sqlite3_tokenizer_module *pUnicode = 0; +#endif + +#ifdef SQLITE_ENABLE_ICU + const sqlite3_tokenizer_module *pIcu = 0; + sqlite3Fts3IcuTokenizerModule(&pIcu); +#endif + +#ifdef SQLITE_ENABLE_FTS4_UNICODE61 + sqlite3Fts3UnicodeTokenizer(&pUnicode); +#endif + +#ifdef SQLITE_TEST + rc = sqlite3Fts3InitTerm(db); + if( rc!=SQLITE_OK ) return rc; +#endif + + rc = sqlite3Fts3InitAux(db); + if( rc!=SQLITE_OK ) return rc; + + sqlite3Fts3SimpleTokenizerModule(&pSimple); + sqlite3Fts3PorterTokenizerModule(&pPorter); + + /* Allocate and initialize the hash-table used to store tokenizers. */ + pHash = sqlite3_malloc(sizeof(Fts3Hash)); + if( !pHash ){ + rc = SQLITE_NOMEM; + }else{ + sqlite3Fts3HashInit(pHash, FTS3_HASH_STRING, 1); + } + + /* Load the built-in tokenizers into the hash table */ + if( rc==SQLITE_OK ){ + if( sqlite3Fts3HashInsert(pHash, "simple", 7, (void *)pSimple) + || sqlite3Fts3HashInsert(pHash, "porter", 7, (void *)pPorter) + +#ifdef SQLITE_ENABLE_FTS4_UNICODE61 + || sqlite3Fts3HashInsert(pHash, "unicode61", 10, (void *)pUnicode) +#endif +#ifdef SQLITE_ENABLE_ICU + || (pIcu && sqlite3Fts3HashInsert(pHash, "icu", 4, (void *)pIcu)) +#endif + ){ + rc = SQLITE_NOMEM; + } + } + +#ifdef SQLITE_TEST + if( rc==SQLITE_OK ){ + rc = sqlite3Fts3ExprInitTestInterface(db); + } +#endif + + /* Create the virtual table wrapper around the hash-table and overload + ** the two scalar functions. If this is successful, register the + ** module with sqlite. + */ + if( SQLITE_OK==rc + && SQLITE_OK==(rc = sqlite3Fts3InitHashTable(db, pHash, "fts3_tokenizer")) + && SQLITE_OK==(rc = sqlite3_overload_function(db, "snippet", -1)) + && SQLITE_OK==(rc = sqlite3_overload_function(db, "offsets", 1)) + && SQLITE_OK==(rc = sqlite3_overload_function(db, "matchinfo", 1)) + && SQLITE_OK==(rc = sqlite3_overload_function(db, "matchinfo", 2)) + && SQLITE_OK==(rc = sqlite3_overload_function(db, "optimize", 1)) + ){ + rc = sqlite3_create_module_v2( + db, "fts3", &fts3Module, (void *)pHash, hashDestroy + ); + if( rc==SQLITE_OK ){ + rc = sqlite3_create_module_v2( + db, "fts4", &fts3Module, (void *)pHash, 0 + ); + } + if( rc==SQLITE_OK ){ + rc = sqlite3Fts3InitTok(db, (void *)pHash); + } + return rc; + } + + + /* An error has occurred. Delete the hash table and return the error code. */ + assert( rc!=SQLITE_OK ); + if( pHash ){ + sqlite3Fts3HashClear(pHash); + sqlite3_free(pHash); + } + return rc; +} + +/* +** Allocate an Fts3MultiSegReader for each token in the expression headed +** by pExpr. +** +** An Fts3SegReader object is a cursor that can seek or scan a range of +** entries within a single segment b-tree. An Fts3MultiSegReader uses multiple +** Fts3SegReader objects internally to provide an interface to seek or scan +** within the union of all segments of a b-tree. Hence the name. +** +** If the allocated Fts3MultiSegReader just seeks to a single entry in a +** segment b-tree (if the term is not a prefix or it is a prefix for which +** there exists prefix b-tree of the right length) then it may be traversed +** and merged incrementally. Otherwise, it has to be merged into an in-memory +** doclist and then traversed. +*/ +static void fts3EvalAllocateReaders( + Fts3Cursor *pCsr, /* FTS cursor handle */ + Fts3Expr *pExpr, /* Allocate readers for this expression */ + int *pnToken, /* OUT: Total number of tokens in phrase. */ + int *pnOr, /* OUT: Total number of OR nodes in expr. */ + int *pRc /* IN/OUT: Error code */ +){ + if( pExpr && SQLITE_OK==*pRc ){ + if( pExpr->eType==FTSQUERY_PHRASE ){ + int i; + int nToken = pExpr->pPhrase->nToken; + *pnToken += nToken; + for(i=0; ipPhrase->aToken[i]; + int rc = fts3TermSegReaderCursor(pCsr, + pToken->z, pToken->n, pToken->isPrefix, &pToken->pSegcsr + ); + if( rc!=SQLITE_OK ){ + *pRc = rc; + return; + } + } + assert( pExpr->pPhrase->iDoclistToken==0 ); + pExpr->pPhrase->iDoclistToken = -1; + }else{ + *pnOr += (pExpr->eType==FTSQUERY_OR); + fts3EvalAllocateReaders(pCsr, pExpr->pLeft, pnToken, pnOr, pRc); + fts3EvalAllocateReaders(pCsr, pExpr->pRight, pnToken, pnOr, pRc); + } + } +} + +/* +** Arguments pList/nList contain the doclist for token iToken of phrase p. +** It is merged into the main doclist stored in p->doclist.aAll/nAll. +** +** This function assumes that pList points to a buffer allocated using +** sqlite3_malloc(). This function takes responsibility for eventually +** freeing the buffer. +*/ +static void fts3EvalPhraseMergeToken( + Fts3Table *pTab, /* FTS Table pointer */ + Fts3Phrase *p, /* Phrase to merge pList/nList into */ + int iToken, /* Token pList/nList corresponds to */ + char *pList, /* Pointer to doclist */ + int nList /* Number of bytes in pList */ +){ + assert( iToken!=p->iDoclistToken ); + + if( pList==0 ){ + sqlite3_free(p->doclist.aAll); + p->doclist.aAll = 0; + p->doclist.nAll = 0; + } + + else if( p->iDoclistToken<0 ){ + p->doclist.aAll = pList; + p->doclist.nAll = nList; + } + + else if( p->doclist.aAll==0 ){ + sqlite3_free(pList); + } + + else { + char *pLeft; + char *pRight; + int nLeft; + int nRight; + int nDiff; + + if( p->iDoclistTokendoclist.aAll; + nLeft = p->doclist.nAll; + pRight = pList; + nRight = nList; + nDiff = iToken - p->iDoclistToken; + }else{ + pRight = p->doclist.aAll; + nRight = p->doclist.nAll; + pLeft = pList; + nLeft = nList; + nDiff = p->iDoclistToken - iToken; + } + + fts3DoclistPhraseMerge(pTab->bDescIdx, nDiff, pLeft, nLeft, pRight,&nRight); + sqlite3_free(pLeft); + p->doclist.aAll = pRight; + p->doclist.nAll = nRight; + } + + if( iToken>p->iDoclistToken ) p->iDoclistToken = iToken; +} + +/* +** Load the doclist for phrase p into p->doclist.aAll/nAll. The loaded doclist +** does not take deferred tokens into account. +** +** SQLITE_OK is returned if no error occurs, otherwise an SQLite error code. +*/ +static int fts3EvalPhraseLoad( + Fts3Cursor *pCsr, /* FTS Cursor handle */ + Fts3Phrase *p /* Phrase object */ +){ + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + int iToken; + int rc = SQLITE_OK; + + for(iToken=0; rc==SQLITE_OK && iTokennToken; iToken++){ + Fts3PhraseToken *pToken = &p->aToken[iToken]; + assert( pToken->pDeferred==0 || pToken->pSegcsr==0 ); + + if( pToken->pSegcsr ){ + int nThis = 0; + char *pThis = 0; + rc = fts3TermSelect(pTab, pToken, p->iColumn, &nThis, &pThis); + if( rc==SQLITE_OK ){ + fts3EvalPhraseMergeToken(pTab, p, iToken, pThis, nThis); + } + } + assert( pToken->pSegcsr==0 ); + } + + return rc; +} + +/* +** This function is called on each phrase after the position lists for +** any deferred tokens have been loaded into memory. It updates the phrases +** current position list to include only those positions that are really +** instances of the phrase (after considering deferred tokens). If this +** means that the phrase does not appear in the current row, doclist.pList +** and doclist.nList are both zeroed. +** +** SQLITE_OK is returned if no error occurs, otherwise an SQLite error code. +*/ +static int fts3EvalDeferredPhrase(Fts3Cursor *pCsr, Fts3Phrase *pPhrase){ + int iToken; /* Used to iterate through phrase tokens */ + char *aPoslist = 0; /* Position list for deferred tokens */ + int nPoslist = 0; /* Number of bytes in aPoslist */ + int iPrev = -1; /* Token number of previous deferred token */ + + assert( pPhrase->doclist.bFreeList==0 ); + + for(iToken=0; iTokennToken; iToken++){ + Fts3PhraseToken *pToken = &pPhrase->aToken[iToken]; + Fts3DeferredToken *pDeferred = pToken->pDeferred; + + if( pDeferred ){ + char *pList; + int nList; + int rc = sqlite3Fts3DeferredTokenList(pDeferred, &pList, &nList); + if( rc!=SQLITE_OK ) return rc; + + if( pList==0 ){ + sqlite3_free(aPoslist); + pPhrase->doclist.pList = 0; + pPhrase->doclist.nList = 0; + return SQLITE_OK; + + }else if( aPoslist==0 ){ + aPoslist = pList; + nPoslist = nList; + + }else{ + char *aOut = pList; + char *p1 = aPoslist; + char *p2 = aOut; + + assert( iPrev>=0 ); + fts3PoslistPhraseMerge(&aOut, iToken-iPrev, 0, 1, &p1, &p2); + sqlite3_free(aPoslist); + aPoslist = pList; + nPoslist = (int)(aOut - aPoslist); + if( nPoslist==0 ){ + sqlite3_free(aPoslist); + pPhrase->doclist.pList = 0; + pPhrase->doclist.nList = 0; + return SQLITE_OK; + } + } + iPrev = iToken; + } + } + + if( iPrev>=0 ){ + int nMaxUndeferred = pPhrase->iDoclistToken; + if( nMaxUndeferred<0 ){ + pPhrase->doclist.pList = aPoslist; + pPhrase->doclist.nList = nPoslist; + pPhrase->doclist.iDocid = pCsr->iPrevId; + pPhrase->doclist.bFreeList = 1; + }else{ + int nDistance; + char *p1; + char *p2; + char *aOut; + + if( nMaxUndeferred>iPrev ){ + p1 = aPoslist; + p2 = pPhrase->doclist.pList; + nDistance = nMaxUndeferred - iPrev; + }else{ + p1 = pPhrase->doclist.pList; + p2 = aPoslist; + nDistance = iPrev - nMaxUndeferred; + } + + aOut = (char *)sqlite3_malloc(nPoslist+8); + if( !aOut ){ + sqlite3_free(aPoslist); + return SQLITE_NOMEM; + } + + pPhrase->doclist.pList = aOut; + if( fts3PoslistPhraseMerge(&aOut, nDistance, 0, 1, &p1, &p2) ){ + pPhrase->doclist.bFreeList = 1; + pPhrase->doclist.nList = (int)(aOut - pPhrase->doclist.pList); + }else{ + sqlite3_free(aOut); + pPhrase->doclist.pList = 0; + pPhrase->doclist.nList = 0; + } + sqlite3_free(aPoslist); + } + } + + return SQLITE_OK; +} + +/* +** Maximum number of tokens a phrase may have to be considered for the +** incremental doclists strategy. +*/ +#define MAX_INCR_PHRASE_TOKENS 4 + +/* +** This function is called for each Fts3Phrase in a full-text query +** expression to initialize the mechanism for returning rows. Once this +** function has been called successfully on an Fts3Phrase, it may be +** used with fts3EvalPhraseNext() to iterate through the matching docids. +** +** If parameter bOptOk is true, then the phrase may (or may not) use the +** incremental loading strategy. Otherwise, the entire doclist is loaded into +** memory within this call. +** +** SQLITE_OK is returned if no error occurs, otherwise an SQLite error code. +*/ +static int fts3EvalPhraseStart(Fts3Cursor *pCsr, int bOptOk, Fts3Phrase *p){ + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + int rc = SQLITE_OK; /* Error code */ + int i; + + /* Determine if doclists may be loaded from disk incrementally. This is + ** possible if the bOptOk argument is true, the FTS doclists will be + ** scanned in forward order, and the phrase consists of + ** MAX_INCR_PHRASE_TOKENS or fewer tokens, none of which are are "^first" + ** tokens or prefix tokens that cannot use a prefix-index. */ + int bHaveIncr = 0; + int bIncrOk = (bOptOk + && pCsr->bDesc==pTab->bDescIdx + && p->nToken<=MAX_INCR_PHRASE_TOKENS && p->nToken>0 + && p->nToken<=MAX_INCR_PHRASE_TOKENS && p->nToken>0 +#ifdef SQLITE_TEST + && pTab->bNoIncrDoclist==0 +#endif + ); + for(i=0; bIncrOk==1 && inToken; i++){ + Fts3PhraseToken *pToken = &p->aToken[i]; + if( pToken->bFirst || (pToken->pSegcsr!=0 && !pToken->pSegcsr->bLookup) ){ + bIncrOk = 0; + } + if( pToken->pSegcsr ) bHaveIncr = 1; + } + + if( bIncrOk && bHaveIncr ){ + /* Use the incremental approach. */ + int iCol = (p->iColumn >= pTab->nColumn ? -1 : p->iColumn); + for(i=0; rc==SQLITE_OK && inToken; i++){ + Fts3PhraseToken *pToken = &p->aToken[i]; + Fts3MultiSegReader *pSegcsr = pToken->pSegcsr; + if( pSegcsr ){ + rc = sqlite3Fts3MsrIncrStart(pTab, pSegcsr, iCol, pToken->z, pToken->n); + } + } + p->bIncr = 1; + }else{ + /* Load the full doclist for the phrase into memory. */ + rc = fts3EvalPhraseLoad(pCsr, p); + p->bIncr = 0; + } + + assert( rc!=SQLITE_OK || p->nToken<1 || p->aToken[0].pSegcsr==0 || p->bIncr ); + return rc; +} + +/* +** This function is used to iterate backwards (from the end to start) +** through doclists. It is used by this module to iterate through phrase +** doclists in reverse and by the fts3_write.c module to iterate through +** pending-terms lists when writing to databases with "order=desc". +** +** The doclist may be sorted in ascending (parameter bDescIdx==0) or +** descending (parameter bDescIdx==1) order of docid. Regardless, this +** function iterates from the end of the doclist to the beginning. +*/ +SQLITE_PRIVATE void sqlite3Fts3DoclistPrev( + int bDescIdx, /* True if the doclist is desc */ + char *aDoclist, /* Pointer to entire doclist */ + int nDoclist, /* Length of aDoclist in bytes */ + char **ppIter, /* IN/OUT: Iterator pointer */ + sqlite3_int64 *piDocid, /* IN/OUT: Docid pointer */ + int *pnList, /* OUT: List length pointer */ + u8 *pbEof /* OUT: End-of-file flag */ +){ + char *p = *ppIter; + + assert( nDoclist>0 ); + assert( *pbEof==0 ); + assert( p || *piDocid==0 ); + assert( !p || (p>aDoclist && p<&aDoclist[nDoclist]) ); + + if( p==0 ){ + sqlite3_int64 iDocid = 0; + char *pNext = 0; + char *pDocid = aDoclist; + char *pEnd = &aDoclist[nDoclist]; + int iMul = 1; + + while( pDocid0 ); + assert( *pbEof==0 ); + assert( p || *piDocid==0 ); + assert( !p || (p>=aDoclist && p<=&aDoclist[nDoclist]) ); + + if( p==0 ){ + p = aDoclist; + p += sqlite3Fts3GetVarint(p, piDocid); + }else{ + fts3PoslistCopy(0, &p); + if( p>=&aDoclist[nDoclist] ){ + *pbEof = 1; + }else{ + sqlite3_int64 iVar; + p += sqlite3Fts3GetVarint(p, &iVar); + *piDocid += ((bDescIdx ? -1 : 1) * iVar); + } + } + + *ppIter = p; +} + +/* +** Advance the iterator pDL to the next entry in pDL->aAll/nAll. Set *pbEof +** to true if EOF is reached. +*/ +static void fts3EvalDlPhraseNext( + Fts3Table *pTab, + Fts3Doclist *pDL, + u8 *pbEof +){ + char *pIter; /* Used to iterate through aAll */ + char *pEnd = &pDL->aAll[pDL->nAll]; /* 1 byte past end of aAll */ + + if( pDL->pNextDocid ){ + pIter = pDL->pNextDocid; + }else{ + pIter = pDL->aAll; + } + + if( pIter>=pEnd ){ + /* We have already reached the end of this doclist. EOF. */ + *pbEof = 1; + }else{ + sqlite3_int64 iDelta; + pIter += sqlite3Fts3GetVarint(pIter, &iDelta); + if( pTab->bDescIdx==0 || pDL->pNextDocid==0 ){ + pDL->iDocid += iDelta; + }else{ + pDL->iDocid -= iDelta; + } + pDL->pList = pIter; + fts3PoslistCopy(0, &pIter); + pDL->nList = (int)(pIter - pDL->pList); + + /* pIter now points just past the 0x00 that terminates the position- + ** list for document pDL->iDocid. However, if this position-list was + ** edited in place by fts3EvalNearTrim(), then pIter may not actually + ** point to the start of the next docid value. The following line deals + ** with this case by advancing pIter past the zero-padding added by + ** fts3EvalNearTrim(). */ + while( pIterpNextDocid = pIter; + assert( pIter>=&pDL->aAll[pDL->nAll] || *pIter ); + *pbEof = 0; + } +} + +/* +** Helper type used by fts3EvalIncrPhraseNext() and incrPhraseTokenNext(). +*/ +typedef struct TokenDoclist TokenDoclist; +struct TokenDoclist { + int bIgnore; + sqlite3_int64 iDocid; + char *pList; + int nList; +}; + +/* +** Token pToken is an incrementally loaded token that is part of a +** multi-token phrase. Advance it to the next matching document in the +** database and populate output variable *p with the details of the new +** entry. Or, if the iterator has reached EOF, set *pbEof to true. +** +** If an error occurs, return an SQLite error code. Otherwise, return +** SQLITE_OK. +*/ +static int incrPhraseTokenNext( + Fts3Table *pTab, /* Virtual table handle */ + Fts3Phrase *pPhrase, /* Phrase to advance token of */ + int iToken, /* Specific token to advance */ + TokenDoclist *p, /* OUT: Docid and doclist for new entry */ + u8 *pbEof /* OUT: True if iterator is at EOF */ +){ + int rc = SQLITE_OK; + + if( pPhrase->iDoclistToken==iToken ){ + assert( p->bIgnore==0 ); + assert( pPhrase->aToken[iToken].pSegcsr==0 ); + fts3EvalDlPhraseNext(pTab, &pPhrase->doclist, pbEof); + p->pList = pPhrase->doclist.pList; + p->nList = pPhrase->doclist.nList; + p->iDocid = pPhrase->doclist.iDocid; + }else{ + Fts3PhraseToken *pToken = &pPhrase->aToken[iToken]; + assert( pToken->pDeferred==0 ); + assert( pToken->pSegcsr || pPhrase->iDoclistToken>=0 ); + if( pToken->pSegcsr ){ + assert( p->bIgnore==0 ); + rc = sqlite3Fts3MsrIncrNext( + pTab, pToken->pSegcsr, &p->iDocid, &p->pList, &p->nList + ); + if( p->pList==0 ) *pbEof = 1; + }else{ + p->bIgnore = 1; + } + } + + return rc; +} + + +/* +** The phrase iterator passed as the second argument: +** +** * features at least one token that uses an incremental doclist, and +** +** * does not contain any deferred tokens. +** +** Advance it to the next matching documnent in the database and populate +** the Fts3Doclist.pList and nList fields. +** +** If there is no "next" entry and no error occurs, then *pbEof is set to +** 1 before returning. Otherwise, if no error occurs and the iterator is +** successfully advanced, *pbEof is set to 0. +** +** If an error occurs, return an SQLite error code. Otherwise, return +** SQLITE_OK. +*/ +static int fts3EvalIncrPhraseNext( + Fts3Cursor *pCsr, /* FTS Cursor handle */ + Fts3Phrase *p, /* Phrase object to advance to next docid */ + u8 *pbEof /* OUT: Set to 1 if EOF */ +){ + int rc = SQLITE_OK; + Fts3Doclist *pDL = &p->doclist; + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + u8 bEof = 0; + + /* This is only called if it is guaranteed that the phrase has at least + ** one incremental token. In which case the bIncr flag is set. */ + assert( p->bIncr==1 ); + + if( p->nToken==1 && p->bIncr ){ + rc = sqlite3Fts3MsrIncrNext(pTab, p->aToken[0].pSegcsr, + &pDL->iDocid, &pDL->pList, &pDL->nList + ); + if( pDL->pList==0 ) bEof = 1; + }else{ + int bDescDoclist = pCsr->bDesc; + struct TokenDoclist a[MAX_INCR_PHRASE_TOKENS]; + + memset(a, 0, sizeof(a)); + assert( p->nToken<=MAX_INCR_PHRASE_TOKENS ); + assert( p->iDoclistTokennToken && bEof==0; i++){ + rc = incrPhraseTokenNext(pTab, p, i, &a[i], &bEof); + if( a[i].bIgnore==0 && (bMaxSet==0 || DOCID_CMP(iMax, a[i].iDocid)<0) ){ + iMax = a[i].iDocid; + bMaxSet = 1; + } + } + assert( rc!=SQLITE_OK || a[p->nToken-1].bIgnore==0 ); + assert( rc!=SQLITE_OK || bMaxSet ); + + /* Keep advancing iterators until they all point to the same document */ + for(i=0; inToken; i++){ + while( rc==SQLITE_OK && bEof==0 + && a[i].bIgnore==0 && DOCID_CMP(a[i].iDocid, iMax)<0 + ){ + rc = incrPhraseTokenNext(pTab, p, i, &a[i], &bEof); + if( DOCID_CMP(a[i].iDocid, iMax)>0 ){ + iMax = a[i].iDocid; + i = 0; + } + } + } + + /* Check if the current entries really are a phrase match */ + if( bEof==0 ){ + int nList = 0; + int nByte = a[p->nToken-1].nList; + char *aDoclist = sqlite3_malloc(nByte+1); + if( !aDoclist ) return SQLITE_NOMEM; + memcpy(aDoclist, a[p->nToken-1].pList, nByte+1); + + for(i=0; i<(p->nToken-1); i++){ + if( a[i].bIgnore==0 ){ + char *pL = a[i].pList; + char *pR = aDoclist; + char *pOut = aDoclist; + int nDist = p->nToken-1-i; + int res = fts3PoslistPhraseMerge(&pOut, nDist, 0, 1, &pL, &pR); + if( res==0 ) break; + nList = (int)(pOut - aDoclist); + } + } + if( i==(p->nToken-1) ){ + pDL->iDocid = iMax; + pDL->pList = aDoclist; + pDL->nList = nList; + pDL->bFreeList = 1; + break; + } + sqlite3_free(aDoclist); + } + } + } + + *pbEof = bEof; + return rc; +} + +/* +** Attempt to move the phrase iterator to point to the next matching docid. +** If an error occurs, return an SQLite error code. Otherwise, return +** SQLITE_OK. +** +** If there is no "next" entry and no error occurs, then *pbEof is set to +** 1 before returning. Otherwise, if no error occurs and the iterator is +** successfully advanced, *pbEof is set to 0. +*/ +static int fts3EvalPhraseNext( + Fts3Cursor *pCsr, /* FTS Cursor handle */ + Fts3Phrase *p, /* Phrase object to advance to next docid */ + u8 *pbEof /* OUT: Set to 1 if EOF */ +){ + int rc = SQLITE_OK; + Fts3Doclist *pDL = &p->doclist; + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + + if( p->bIncr ){ + rc = fts3EvalIncrPhraseNext(pCsr, p, pbEof); + }else if( pCsr->bDesc!=pTab->bDescIdx && pDL->nAll ){ + sqlite3Fts3DoclistPrev(pTab->bDescIdx, pDL->aAll, pDL->nAll, + &pDL->pNextDocid, &pDL->iDocid, &pDL->nList, pbEof + ); + pDL->pList = pDL->pNextDocid; + }else{ + fts3EvalDlPhraseNext(pTab, pDL, pbEof); + } + + return rc; +} + +/* +** +** If *pRc is not SQLITE_OK when this function is called, it is a no-op. +** Otherwise, fts3EvalPhraseStart() is called on all phrases within the +** expression. Also the Fts3Expr.bDeferred variable is set to true for any +** expressions for which all descendent tokens are deferred. +** +** If parameter bOptOk is zero, then it is guaranteed that the +** Fts3Phrase.doclist.aAll/nAll variables contain the entire doclist for +** each phrase in the expression (subject to deferred token processing). +** Or, if bOptOk is non-zero, then one or more tokens within the expression +** may be loaded incrementally, meaning doclist.aAll/nAll is not available. +** +** If an error occurs within this function, *pRc is set to an SQLite error +** code before returning. +*/ +static void fts3EvalStartReaders( + Fts3Cursor *pCsr, /* FTS Cursor handle */ + Fts3Expr *pExpr, /* Expression to initialize phrases in */ + int *pRc /* IN/OUT: Error code */ +){ + if( pExpr && SQLITE_OK==*pRc ){ + if( pExpr->eType==FTSQUERY_PHRASE ){ + int i; + int nToken = pExpr->pPhrase->nToken; + for(i=0; ipPhrase->aToken[i].pDeferred==0 ) break; + } + pExpr->bDeferred = (i==nToken); + *pRc = fts3EvalPhraseStart(pCsr, 1, pExpr->pPhrase); + }else{ + fts3EvalStartReaders(pCsr, pExpr->pLeft, pRc); + fts3EvalStartReaders(pCsr, pExpr->pRight, pRc); + pExpr->bDeferred = (pExpr->pLeft->bDeferred && pExpr->pRight->bDeferred); + } + } +} + +/* +** An array of the following structures is assembled as part of the process +** of selecting tokens to defer before the query starts executing (as part +** of the xFilter() method). There is one element in the array for each +** token in the FTS expression. +** +** Tokens are divided into AND/NEAR clusters. All tokens in a cluster belong +** to phrases that are connected only by AND and NEAR operators (not OR or +** NOT). When determining tokens to defer, each AND/NEAR cluster is considered +** separately. The root of a tokens AND/NEAR cluster is stored in +** Fts3TokenAndCost.pRoot. +*/ +typedef struct Fts3TokenAndCost Fts3TokenAndCost; +struct Fts3TokenAndCost { + Fts3Phrase *pPhrase; /* The phrase the token belongs to */ + int iToken; /* Position of token in phrase */ + Fts3PhraseToken *pToken; /* The token itself */ + Fts3Expr *pRoot; /* Root of NEAR/AND cluster */ + int nOvfl; /* Number of overflow pages to load doclist */ + int iCol; /* The column the token must match */ +}; + +/* +** This function is used to populate an allocated Fts3TokenAndCost array. +** +** If *pRc is not SQLITE_OK when this function is called, it is a no-op. +** Otherwise, if an error occurs during execution, *pRc is set to an +** SQLite error code. +*/ +static void fts3EvalTokenCosts( + Fts3Cursor *pCsr, /* FTS Cursor handle */ + Fts3Expr *pRoot, /* Root of current AND/NEAR cluster */ + Fts3Expr *pExpr, /* Expression to consider */ + Fts3TokenAndCost **ppTC, /* Write new entries to *(*ppTC)++ */ + Fts3Expr ***ppOr, /* Write new OR root to *(*ppOr)++ */ + int *pRc /* IN/OUT: Error code */ +){ + if( *pRc==SQLITE_OK ){ + if( pExpr->eType==FTSQUERY_PHRASE ){ + Fts3Phrase *pPhrase = pExpr->pPhrase; + int i; + for(i=0; *pRc==SQLITE_OK && inToken; i++){ + Fts3TokenAndCost *pTC = (*ppTC)++; + pTC->pPhrase = pPhrase; + pTC->iToken = i; + pTC->pRoot = pRoot; + pTC->pToken = &pPhrase->aToken[i]; + pTC->iCol = pPhrase->iColumn; + *pRc = sqlite3Fts3MsrOvfl(pCsr, pTC->pToken->pSegcsr, &pTC->nOvfl); + } + }else if( pExpr->eType!=FTSQUERY_NOT ){ + assert( pExpr->eType==FTSQUERY_OR + || pExpr->eType==FTSQUERY_AND + || pExpr->eType==FTSQUERY_NEAR + ); + assert( pExpr->pLeft && pExpr->pRight ); + if( pExpr->eType==FTSQUERY_OR ){ + pRoot = pExpr->pLeft; + **ppOr = pRoot; + (*ppOr)++; + } + fts3EvalTokenCosts(pCsr, pRoot, pExpr->pLeft, ppTC, ppOr, pRc); + if( pExpr->eType==FTSQUERY_OR ){ + pRoot = pExpr->pRight; + **ppOr = pRoot; + (*ppOr)++; + } + fts3EvalTokenCosts(pCsr, pRoot, pExpr->pRight, ppTC, ppOr, pRc); + } + } +} + +/* +** Determine the average document (row) size in pages. If successful, +** write this value to *pnPage and return SQLITE_OK. Otherwise, return +** an SQLite error code. +** +** The average document size in pages is calculated by first calculating +** determining the average size in bytes, B. If B is less than the amount +** of data that will fit on a single leaf page of an intkey table in +** this database, then the average docsize is 1. Otherwise, it is 1 plus +** the number of overflow pages consumed by a record B bytes in size. +*/ +static int fts3EvalAverageDocsize(Fts3Cursor *pCsr, int *pnPage){ + if( pCsr->nRowAvg==0 ){ + /* The average document size, which is required to calculate the cost + ** of each doclist, has not yet been determined. Read the required + ** data from the %_stat table to calculate it. + ** + ** Entry 0 of the %_stat table is a blob containing (nCol+1) FTS3 + ** varints, where nCol is the number of columns in the FTS3 table. + ** The first varint is the number of documents currently stored in + ** the table. The following nCol varints contain the total amount of + ** data stored in all rows of each column of the table, from left + ** to right. + */ + int rc; + Fts3Table *p = (Fts3Table*)pCsr->base.pVtab; + sqlite3_stmt *pStmt; + sqlite3_int64 nDoc = 0; + sqlite3_int64 nByte = 0; + const char *pEnd; + const char *a; + + rc = sqlite3Fts3SelectDoctotal(p, &pStmt); + if( rc!=SQLITE_OK ) return rc; + a = sqlite3_column_blob(pStmt, 0); + assert( a ); + + pEnd = &a[sqlite3_column_bytes(pStmt, 0)]; + a += sqlite3Fts3GetVarint(a, &nDoc); + while( anDoc = nDoc; + pCsr->nRowAvg = (int)(((nByte / nDoc) + p->nPgsz) / p->nPgsz); + assert( pCsr->nRowAvg>0 ); + rc = sqlite3_reset(pStmt); + if( rc!=SQLITE_OK ) return rc; + } + + *pnPage = pCsr->nRowAvg; + return SQLITE_OK; +} + +/* +** This function is called to select the tokens (if any) that will be +** deferred. The array aTC[] has already been populated when this is +** called. +** +** This function is called once for each AND/NEAR cluster in the +** expression. Each invocation determines which tokens to defer within +** the cluster with root node pRoot. See comments above the definition +** of struct Fts3TokenAndCost for more details. +** +** If no error occurs, SQLITE_OK is returned and sqlite3Fts3DeferToken() +** called on each token to defer. Otherwise, an SQLite error code is +** returned. +*/ +static int fts3EvalSelectDeferred( + Fts3Cursor *pCsr, /* FTS Cursor handle */ + Fts3Expr *pRoot, /* Consider tokens with this root node */ + Fts3TokenAndCost *aTC, /* Array of expression tokens and costs */ + int nTC /* Number of entries in aTC[] */ +){ + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + int nDocSize = 0; /* Number of pages per doc loaded */ + int rc = SQLITE_OK; /* Return code */ + int ii; /* Iterator variable for various purposes */ + int nOvfl = 0; /* Total overflow pages used by doclists */ + int nToken = 0; /* Total number of tokens in cluster */ + + int nMinEst = 0; /* The minimum count for any phrase so far. */ + int nLoad4 = 1; /* (Phrases that will be loaded)^4. */ + + /* Tokens are never deferred for FTS tables created using the content=xxx + ** option. The reason being that it is not guaranteed that the content + ** table actually contains the same data as the index. To prevent this from + ** causing any problems, the deferred token optimization is completely + ** disabled for content=xxx tables. */ + if( pTab->zContentTbl ){ + return SQLITE_OK; + } + + /* Count the tokens in this AND/NEAR cluster. If none of the doclists + ** associated with the tokens spill onto overflow pages, or if there is + ** only 1 token, exit early. No tokens to defer in this case. */ + for(ii=0; ii0 ); + + + /* Iterate through all tokens in this AND/NEAR cluster, in ascending order + ** of the number of overflow pages that will be loaded by the pager layer + ** to retrieve the entire doclist for the token from the full-text index. + ** Load the doclists for tokens that are either: + ** + ** a. The cheapest token in the entire query (i.e. the one visited by the + ** first iteration of this loop), or + ** + ** b. Part of a multi-token phrase. + ** + ** After each token doclist is loaded, merge it with the others from the + ** same phrase and count the number of documents that the merged doclist + ** contains. Set variable "nMinEst" to the smallest number of documents in + ** any phrase doclist for which 1 or more token doclists have been loaded. + ** Let nOther be the number of other phrases for which it is certain that + ** one or more tokens will not be deferred. + ** + ** Then, for each token, defer it if loading the doclist would result in + ** loading N or more overflow pages into memory, where N is computed as: + ** + ** (nMinEst + 4^nOther - 1) / (4^nOther) + */ + for(ii=0; iinOvfl) + ){ + pTC = &aTC[iTC]; + } + } + assert( pTC ); + + if( ii && pTC->nOvfl>=((nMinEst+(nLoad4/4)-1)/(nLoad4/4))*nDocSize ){ + /* The number of overflow pages to load for this (and therefore all + ** subsequent) tokens is greater than the estimated number of pages + ** that will be loaded if all subsequent tokens are deferred. + */ + Fts3PhraseToken *pToken = pTC->pToken; + rc = sqlite3Fts3DeferToken(pCsr, pToken, pTC->iCol); + fts3SegReaderCursorFree(pToken->pSegcsr); + pToken->pSegcsr = 0; + }else{ + /* Set nLoad4 to the value of (4^nOther) for the next iteration of the + ** for-loop. Except, limit the value to 2^24 to prevent it from + ** overflowing the 32-bit integer it is stored in. */ + if( ii<12 ) nLoad4 = nLoad4*4; + + if( ii==0 || (pTC->pPhrase->nToken>1 && ii!=nToken-1) ){ + /* Either this is the cheapest token in the entire query, or it is + ** part of a multi-token phrase. Either way, the entire doclist will + ** (eventually) be loaded into memory. It may as well be now. */ + Fts3PhraseToken *pToken = pTC->pToken; + int nList = 0; + char *pList = 0; + rc = fts3TermSelect(pTab, pToken, pTC->iCol, &nList, &pList); + assert( rc==SQLITE_OK || pList==0 ); + if( rc==SQLITE_OK ){ + int nCount; + fts3EvalPhraseMergeToken(pTab, pTC->pPhrase, pTC->iToken,pList,nList); + nCount = fts3DoclistCountDocids( + pTC->pPhrase->doclist.aAll, pTC->pPhrase->doclist.nAll + ); + if( ii==0 || nCountpToken = 0; + } + + return rc; +} + +/* +** This function is called from within the xFilter method. It initializes +** the full-text query currently stored in pCsr->pExpr. To iterate through +** the results of a query, the caller does: +** +** fts3EvalStart(pCsr); +** while( 1 ){ +** fts3EvalNext(pCsr); +** if( pCsr->bEof ) break; +** ... return row pCsr->iPrevId to the caller ... +** } +*/ +static int fts3EvalStart(Fts3Cursor *pCsr){ + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + int rc = SQLITE_OK; + int nToken = 0; + int nOr = 0; + + /* Allocate a MultiSegReader for each token in the expression. */ + fts3EvalAllocateReaders(pCsr, pCsr->pExpr, &nToken, &nOr, &rc); + + /* Determine which, if any, tokens in the expression should be deferred. */ +#ifndef SQLITE_DISABLE_FTS4_DEFERRED + if( rc==SQLITE_OK && nToken>1 && pTab->bFts4 ){ + Fts3TokenAndCost *aTC; + Fts3Expr **apOr; + aTC = (Fts3TokenAndCost *)sqlite3_malloc( + sizeof(Fts3TokenAndCost) * nToken + + sizeof(Fts3Expr *) * nOr * 2 + ); + apOr = (Fts3Expr **)&aTC[nToken]; + + if( !aTC ){ + rc = SQLITE_NOMEM; + }else{ + int ii; + Fts3TokenAndCost *pTC = aTC; + Fts3Expr **ppOr = apOr; + + fts3EvalTokenCosts(pCsr, 0, pCsr->pExpr, &pTC, &ppOr, &rc); + nToken = (int)(pTC-aTC); + nOr = (int)(ppOr-apOr); + + if( rc==SQLITE_OK ){ + rc = fts3EvalSelectDeferred(pCsr, 0, aTC, nToken); + for(ii=0; rc==SQLITE_OK && iipExpr, &rc); + return rc; +} + +/* +** Invalidate the current position list for phrase pPhrase. +*/ +static void fts3EvalInvalidatePoslist(Fts3Phrase *pPhrase){ + if( pPhrase->doclist.bFreeList ){ + sqlite3_free(pPhrase->doclist.pList); + } + pPhrase->doclist.pList = 0; + pPhrase->doclist.nList = 0; + pPhrase->doclist.bFreeList = 0; +} + +/* +** This function is called to edit the position list associated with +** the phrase object passed as the fifth argument according to a NEAR +** condition. For example: +** +** abc NEAR/5 "def ghi" +** +** Parameter nNear is passed the NEAR distance of the expression (5 in +** the example above). When this function is called, *paPoslist points to +** the position list, and *pnToken is the number of phrase tokens in, the +** phrase on the other side of the NEAR operator to pPhrase. For example, +** if pPhrase refers to the "def ghi" phrase, then *paPoslist points to +** the position list associated with phrase "abc". +** +** All positions in the pPhrase position list that are not sufficiently +** close to a position in the *paPoslist position list are removed. If this +** leaves 0 positions, zero is returned. Otherwise, non-zero. +** +** Before returning, *paPoslist is set to point to the position lsit +** associated with pPhrase. And *pnToken is set to the number of tokens in +** pPhrase. +*/ +static int fts3EvalNearTrim( + int nNear, /* NEAR distance. As in "NEAR/nNear". */ + char *aTmp, /* Temporary space to use */ + char **paPoslist, /* IN/OUT: Position list */ + int *pnToken, /* IN/OUT: Tokens in phrase of *paPoslist */ + Fts3Phrase *pPhrase /* The phrase object to trim the doclist of */ +){ + int nParam1 = nNear + pPhrase->nToken; + int nParam2 = nNear + *pnToken; + int nNew; + char *p2; + char *pOut; + int res; + + assert( pPhrase->doclist.pList ); + + p2 = pOut = pPhrase->doclist.pList; + res = fts3PoslistNearMerge( + &pOut, aTmp, nParam1, nParam2, paPoslist, &p2 + ); + if( res ){ + nNew = (int)(pOut - pPhrase->doclist.pList) - 1; + assert( pPhrase->doclist.pList[nNew]=='\0' ); + assert( nNew<=pPhrase->doclist.nList && nNew>0 ); + memset(&pPhrase->doclist.pList[nNew], 0, pPhrase->doclist.nList - nNew); + pPhrase->doclist.nList = nNew; + *paPoslist = pPhrase->doclist.pList; + *pnToken = pPhrase->nToken; + } + + return res; +} + +/* +** This function is a no-op if *pRc is other than SQLITE_OK when it is called. +** Otherwise, it advances the expression passed as the second argument to +** point to the next matching row in the database. Expressions iterate through +** matching rows in docid order. Ascending order if Fts3Cursor.bDesc is zero, +** or descending if it is non-zero. +** +** If an error occurs, *pRc is set to an SQLite error code. Otherwise, if +** successful, the following variables in pExpr are set: +** +** Fts3Expr.bEof (non-zero if EOF - there is no next row) +** Fts3Expr.iDocid (valid if bEof==0. The docid of the next row) +** +** If the expression is of type FTSQUERY_PHRASE, and the expression is not +** at EOF, then the following variables are populated with the position list +** for the phrase for the visited row: +** +** FTs3Expr.pPhrase->doclist.nList (length of pList in bytes) +** FTs3Expr.pPhrase->doclist.pList (pointer to position list) +** +** It says above that this function advances the expression to the next +** matching row. This is usually true, but there are the following exceptions: +** +** 1. Deferred tokens are not taken into account. If a phrase consists +** entirely of deferred tokens, it is assumed to match every row in +** the db. In this case the position-list is not populated at all. +** +** Or, if a phrase contains one or more deferred tokens and one or +** more non-deferred tokens, then the expression is advanced to the +** next possible match, considering only non-deferred tokens. In other +** words, if the phrase is "A B C", and "B" is deferred, the expression +** is advanced to the next row that contains an instance of "A * C", +** where "*" may match any single token. The position list in this case +** is populated as for "A * C" before returning. +** +** 2. NEAR is treated as AND. If the expression is "x NEAR y", it is +** advanced to point to the next row that matches "x AND y". +** +** See fts3EvalTestDeferredAndNear() for details on testing if a row is +** really a match, taking into account deferred tokens and NEAR operators. +*/ +static void fts3EvalNextRow( + Fts3Cursor *pCsr, /* FTS Cursor handle */ + Fts3Expr *pExpr, /* Expr. to advance to next matching row */ + int *pRc /* IN/OUT: Error code */ +){ + if( *pRc==SQLITE_OK ){ + int bDescDoclist = pCsr->bDesc; /* Used by DOCID_CMP() macro */ + assert( pExpr->bEof==0 ); + pExpr->bStart = 1; + + switch( pExpr->eType ){ + case FTSQUERY_NEAR: + case FTSQUERY_AND: { + Fts3Expr *pLeft = pExpr->pLeft; + Fts3Expr *pRight = pExpr->pRight; + assert( !pLeft->bDeferred || !pRight->bDeferred ); + + if( pLeft->bDeferred ){ + /* LHS is entirely deferred. So we assume it matches every row. + ** Advance the RHS iterator to find the next row visited. */ + fts3EvalNextRow(pCsr, pRight, pRc); + pExpr->iDocid = pRight->iDocid; + pExpr->bEof = pRight->bEof; + }else if( pRight->bDeferred ){ + /* RHS is entirely deferred. So we assume it matches every row. + ** Advance the LHS iterator to find the next row visited. */ + fts3EvalNextRow(pCsr, pLeft, pRc); + pExpr->iDocid = pLeft->iDocid; + pExpr->bEof = pLeft->bEof; + }else{ + /* Neither the RHS or LHS are deferred. */ + fts3EvalNextRow(pCsr, pLeft, pRc); + fts3EvalNextRow(pCsr, pRight, pRc); + while( !pLeft->bEof && !pRight->bEof && *pRc==SQLITE_OK ){ + sqlite3_int64 iDiff = DOCID_CMP(pLeft->iDocid, pRight->iDocid); + if( iDiff==0 ) break; + if( iDiff<0 ){ + fts3EvalNextRow(pCsr, pLeft, pRc); + }else{ + fts3EvalNextRow(pCsr, pRight, pRc); + } + } + pExpr->iDocid = pLeft->iDocid; + pExpr->bEof = (pLeft->bEof || pRight->bEof); + } + break; + } + + case FTSQUERY_OR: { + Fts3Expr *pLeft = pExpr->pLeft; + Fts3Expr *pRight = pExpr->pRight; + sqlite3_int64 iCmp = DOCID_CMP(pLeft->iDocid, pRight->iDocid); + + assert( pLeft->bStart || pLeft->iDocid==pRight->iDocid ); + assert( pRight->bStart || pLeft->iDocid==pRight->iDocid ); + + if( pRight->bEof || (pLeft->bEof==0 && iCmp<0) ){ + fts3EvalNextRow(pCsr, pLeft, pRc); + }else if( pLeft->bEof || (pRight->bEof==0 && iCmp>0) ){ + fts3EvalNextRow(pCsr, pRight, pRc); + }else{ + fts3EvalNextRow(pCsr, pLeft, pRc); + fts3EvalNextRow(pCsr, pRight, pRc); + } + + pExpr->bEof = (pLeft->bEof && pRight->bEof); + iCmp = DOCID_CMP(pLeft->iDocid, pRight->iDocid); + if( pRight->bEof || (pLeft->bEof==0 && iCmp<0) ){ + pExpr->iDocid = pLeft->iDocid; + }else{ + pExpr->iDocid = pRight->iDocid; + } + + break; + } + + case FTSQUERY_NOT: { + Fts3Expr *pLeft = pExpr->pLeft; + Fts3Expr *pRight = pExpr->pRight; + + if( pRight->bStart==0 ){ + fts3EvalNextRow(pCsr, pRight, pRc); + assert( *pRc!=SQLITE_OK || pRight->bStart ); + } + + fts3EvalNextRow(pCsr, pLeft, pRc); + if( pLeft->bEof==0 ){ + while( !*pRc + && !pRight->bEof + && DOCID_CMP(pLeft->iDocid, pRight->iDocid)>0 + ){ + fts3EvalNextRow(pCsr, pRight, pRc); + } + } + pExpr->iDocid = pLeft->iDocid; + pExpr->bEof = pLeft->bEof; + break; + } + + default: { + Fts3Phrase *pPhrase = pExpr->pPhrase; + fts3EvalInvalidatePoslist(pPhrase); + *pRc = fts3EvalPhraseNext(pCsr, pPhrase, &pExpr->bEof); + pExpr->iDocid = pPhrase->doclist.iDocid; + break; + } + } + } +} + +/* +** If *pRc is not SQLITE_OK, or if pExpr is not the root node of a NEAR +** cluster, then this function returns 1 immediately. +** +** Otherwise, it checks if the current row really does match the NEAR +** expression, using the data currently stored in the position lists +** (Fts3Expr->pPhrase.doclist.pList/nList) for each phrase in the expression. +** +** If the current row is a match, the position list associated with each +** phrase in the NEAR expression is edited in place to contain only those +** phrase instances sufficiently close to their peers to satisfy all NEAR +** constraints. In this case it returns 1. If the NEAR expression does not +** match the current row, 0 is returned. The position lists may or may not +** be edited if 0 is returned. +*/ +static int fts3EvalNearTest(Fts3Expr *pExpr, int *pRc){ + int res = 1; + + /* The following block runs if pExpr is the root of a NEAR query. + ** For example, the query: + ** + ** "w" NEAR "x" NEAR "y" NEAR "z" + ** + ** which is represented in tree form as: + ** + ** | + ** +--NEAR--+ <-- root of NEAR query + ** | | + ** +--NEAR--+ "z" + ** | | + ** +--NEAR--+ "y" + ** | | + ** "w" "x" + ** + ** The right-hand child of a NEAR node is always a phrase. The + ** left-hand child may be either a phrase or a NEAR node. There are + ** no exceptions to this - it's the way the parser in fts3_expr.c works. + */ + if( *pRc==SQLITE_OK + && pExpr->eType==FTSQUERY_NEAR + && pExpr->bEof==0 + && (pExpr->pParent==0 || pExpr->pParent->eType!=FTSQUERY_NEAR) + ){ + Fts3Expr *p; + int nTmp = 0; /* Bytes of temp space */ + char *aTmp; /* Temp space for PoslistNearMerge() */ + + /* Allocate temporary working space. */ + for(p=pExpr; p->pLeft; p=p->pLeft){ + nTmp += p->pRight->pPhrase->doclist.nList; + } + nTmp += p->pPhrase->doclist.nList; + if( nTmp==0 ){ + res = 0; + }else{ + aTmp = sqlite3_malloc(nTmp*2); + if( !aTmp ){ + *pRc = SQLITE_NOMEM; + res = 0; + }else{ + char *aPoslist = p->pPhrase->doclist.pList; + int nToken = p->pPhrase->nToken; + + for(p=p->pParent;res && p && p->eType==FTSQUERY_NEAR; p=p->pParent){ + Fts3Phrase *pPhrase = p->pRight->pPhrase; + int nNear = p->nNear; + res = fts3EvalNearTrim(nNear, aTmp, &aPoslist, &nToken, pPhrase); + } + + aPoslist = pExpr->pRight->pPhrase->doclist.pList; + nToken = pExpr->pRight->pPhrase->nToken; + for(p=pExpr->pLeft; p && res; p=p->pLeft){ + int nNear; + Fts3Phrase *pPhrase; + assert( p->pParent && p->pParent->pLeft==p ); + nNear = p->pParent->nNear; + pPhrase = ( + p->eType==FTSQUERY_NEAR ? p->pRight->pPhrase : p->pPhrase + ); + res = fts3EvalNearTrim(nNear, aTmp, &aPoslist, &nToken, pPhrase); + } + } + + sqlite3_free(aTmp); + } + } + + return res; +} + +/* +** This function is a helper function for fts3EvalTestDeferredAndNear(). +** Assuming no error occurs or has occurred, It returns non-zero if the +** expression passed as the second argument matches the row that pCsr +** currently points to, or zero if it does not. +** +** If *pRc is not SQLITE_OK when this function is called, it is a no-op. +** If an error occurs during execution of this function, *pRc is set to +** the appropriate SQLite error code. In this case the returned value is +** undefined. +*/ +static int fts3EvalTestExpr( + Fts3Cursor *pCsr, /* FTS cursor handle */ + Fts3Expr *pExpr, /* Expr to test. May or may not be root. */ + int *pRc /* IN/OUT: Error code */ +){ + int bHit = 1; /* Return value */ + if( *pRc==SQLITE_OK ){ + switch( pExpr->eType ){ + case FTSQUERY_NEAR: + case FTSQUERY_AND: + bHit = ( + fts3EvalTestExpr(pCsr, pExpr->pLeft, pRc) + && fts3EvalTestExpr(pCsr, pExpr->pRight, pRc) + && fts3EvalNearTest(pExpr, pRc) + ); + + /* If the NEAR expression does not match any rows, zero the doclist for + ** all phrases involved in the NEAR. This is because the snippet(), + ** offsets() and matchinfo() functions are not supposed to recognize + ** any instances of phrases that are part of unmatched NEAR queries. + ** For example if this expression: + ** + ** ... MATCH 'a OR (b NEAR c)' + ** + ** is matched against a row containing: + ** + ** 'a b d e' + ** + ** then any snippet() should ony highlight the "a" term, not the "b" + ** (as "b" is part of a non-matching NEAR clause). + */ + if( bHit==0 + && pExpr->eType==FTSQUERY_NEAR + && (pExpr->pParent==0 || pExpr->pParent->eType!=FTSQUERY_NEAR) + ){ + Fts3Expr *p; + for(p=pExpr; p->pPhrase==0; p=p->pLeft){ + if( p->pRight->iDocid==pCsr->iPrevId ){ + fts3EvalInvalidatePoslist(p->pRight->pPhrase); + } + } + if( p->iDocid==pCsr->iPrevId ){ + fts3EvalInvalidatePoslist(p->pPhrase); + } + } + + break; + + case FTSQUERY_OR: { + int bHit1 = fts3EvalTestExpr(pCsr, pExpr->pLeft, pRc); + int bHit2 = fts3EvalTestExpr(pCsr, pExpr->pRight, pRc); + bHit = bHit1 || bHit2; + break; + } + + case FTSQUERY_NOT: + bHit = ( + fts3EvalTestExpr(pCsr, pExpr->pLeft, pRc) + && !fts3EvalTestExpr(pCsr, pExpr->pRight, pRc) + ); + break; + + default: { +#ifndef SQLITE_DISABLE_FTS4_DEFERRED + if( pCsr->pDeferred + && (pExpr->iDocid==pCsr->iPrevId || pExpr->bDeferred) + ){ + Fts3Phrase *pPhrase = pExpr->pPhrase; + assert( pExpr->bDeferred || pPhrase->doclist.bFreeList==0 ); + if( pExpr->bDeferred ){ + fts3EvalInvalidatePoslist(pPhrase); + } + *pRc = fts3EvalDeferredPhrase(pCsr, pPhrase); + bHit = (pPhrase->doclist.pList!=0); + pExpr->iDocid = pCsr->iPrevId; + }else +#endif + { + bHit = (pExpr->bEof==0 && pExpr->iDocid==pCsr->iPrevId); + } + break; + } + } + } + return bHit; +} + +/* +** This function is called as the second part of each xNext operation when +** iterating through the results of a full-text query. At this point the +** cursor points to a row that matches the query expression, with the +** following caveats: +** +** * Up until this point, "NEAR" operators in the expression have been +** treated as "AND". +** +** * Deferred tokens have not yet been considered. +** +** If *pRc is not SQLITE_OK when this function is called, it immediately +** returns 0. Otherwise, it tests whether or not after considering NEAR +** operators and deferred tokens the current row is still a match for the +** expression. It returns 1 if both of the following are true: +** +** 1. *pRc is SQLITE_OK when this function returns, and +** +** 2. After scanning the current FTS table row for the deferred tokens, +** it is determined that the row does *not* match the query. +** +** Or, if no error occurs and it seems the current row does match the FTS +** query, return 0. +*/ +static int fts3EvalTestDeferredAndNear(Fts3Cursor *pCsr, int *pRc){ + int rc = *pRc; + int bMiss = 0; + if( rc==SQLITE_OK ){ + + /* If there are one or more deferred tokens, load the current row into + ** memory and scan it to determine the position list for each deferred + ** token. Then, see if this row is really a match, considering deferred + ** tokens and NEAR operators (neither of which were taken into account + ** earlier, by fts3EvalNextRow()). + */ + if( pCsr->pDeferred ){ + rc = fts3CursorSeek(0, pCsr); + if( rc==SQLITE_OK ){ + rc = sqlite3Fts3CacheDeferredDoclists(pCsr); + } + } + bMiss = (0==fts3EvalTestExpr(pCsr, pCsr->pExpr, &rc)); + + /* Free the position-lists accumulated for each deferred token above. */ + sqlite3Fts3FreeDeferredDoclists(pCsr); + *pRc = rc; + } + return (rc==SQLITE_OK && bMiss); +} + +/* +** Advance to the next document that matches the FTS expression in +** Fts3Cursor.pExpr. +*/ +static int fts3EvalNext(Fts3Cursor *pCsr){ + int rc = SQLITE_OK; /* Return Code */ + Fts3Expr *pExpr = pCsr->pExpr; + assert( pCsr->isEof==0 ); + if( pExpr==0 ){ + pCsr->isEof = 1; + }else{ + do { + if( pCsr->isRequireSeek==0 ){ + sqlite3_reset(pCsr->pStmt); + } + assert( sqlite3_data_count(pCsr->pStmt)==0 ); + fts3EvalNextRow(pCsr, pExpr, &rc); + pCsr->isEof = pExpr->bEof; + pCsr->isRequireSeek = 1; + pCsr->isMatchinfoNeeded = 1; + pCsr->iPrevId = pExpr->iDocid; + }while( pCsr->isEof==0 && fts3EvalTestDeferredAndNear(pCsr, &rc) ); + } + + /* Check if the cursor is past the end of the docid range specified + ** by Fts3Cursor.iMinDocid/iMaxDocid. If so, set the EOF flag. */ + if( rc==SQLITE_OK && ( + (pCsr->bDesc==0 && pCsr->iPrevId>pCsr->iMaxDocid) + || (pCsr->bDesc!=0 && pCsr->iPrevIdiMinDocid) + )){ + pCsr->isEof = 1; + } + + return rc; +} + +/* +** Restart interation for expression pExpr so that the next call to +** fts3EvalNext() visits the first row. Do not allow incremental +** loading or merging of phrase doclists for this iteration. +** +** If *pRc is other than SQLITE_OK when this function is called, it is +** a no-op. If an error occurs within this function, *pRc is set to an +** SQLite error code before returning. +*/ +static void fts3EvalRestart( + Fts3Cursor *pCsr, + Fts3Expr *pExpr, + int *pRc +){ + if( pExpr && *pRc==SQLITE_OK ){ + Fts3Phrase *pPhrase = pExpr->pPhrase; + + if( pPhrase ){ + fts3EvalInvalidatePoslist(pPhrase); + if( pPhrase->bIncr ){ + int i; + for(i=0; inToken; i++){ + Fts3PhraseToken *pToken = &pPhrase->aToken[i]; + assert( pToken->pDeferred==0 ); + if( pToken->pSegcsr ){ + sqlite3Fts3MsrIncrRestart(pToken->pSegcsr); + } + } + *pRc = fts3EvalPhraseStart(pCsr, 0, pPhrase); + } + pPhrase->doclist.pNextDocid = 0; + pPhrase->doclist.iDocid = 0; + } + + pExpr->iDocid = 0; + pExpr->bEof = 0; + pExpr->bStart = 0; + + fts3EvalRestart(pCsr, pExpr->pLeft, pRc); + fts3EvalRestart(pCsr, pExpr->pRight, pRc); + } +} + +/* +** After allocating the Fts3Expr.aMI[] array for each phrase in the +** expression rooted at pExpr, the cursor iterates through all rows matched +** by pExpr, calling this function for each row. This function increments +** the values in Fts3Expr.aMI[] according to the position-list currently +** found in Fts3Expr.pPhrase->doclist.pList for each of the phrase +** expression nodes. +*/ +static void fts3EvalUpdateCounts(Fts3Expr *pExpr){ + if( pExpr ){ + Fts3Phrase *pPhrase = pExpr->pPhrase; + if( pPhrase && pPhrase->doclist.pList ){ + int iCol = 0; + char *p = pPhrase->doclist.pList; + + assert( *p ); + while( 1 ){ + u8 c = 0; + int iCnt = 0; + while( 0xFE & (*p | c) ){ + if( (c&0x80)==0 ) iCnt++; + c = *p++ & 0x80; + } + + /* aMI[iCol*3 + 1] = Number of occurrences + ** aMI[iCol*3 + 2] = Number of rows containing at least one instance + */ + pExpr->aMI[iCol*3 + 1] += iCnt; + pExpr->aMI[iCol*3 + 2] += (iCnt>0); + if( *p==0x00 ) break; + p++; + p += fts3GetVarint32(p, &iCol); + } + } + + fts3EvalUpdateCounts(pExpr->pLeft); + fts3EvalUpdateCounts(pExpr->pRight); + } +} + +/* +** Expression pExpr must be of type FTSQUERY_PHRASE. +** +** If it is not already allocated and populated, this function allocates and +** populates the Fts3Expr.aMI[] array for expression pExpr. If pExpr is part +** of a NEAR expression, then it also allocates and populates the same array +** for all other phrases that are part of the NEAR expression. +** +** SQLITE_OK is returned if the aMI[] array is successfully allocated and +** populated. Otherwise, if an error occurs, an SQLite error code is returned. +*/ +static int fts3EvalGatherStats( + Fts3Cursor *pCsr, /* Cursor object */ + Fts3Expr *pExpr /* FTSQUERY_PHRASE expression */ +){ + int rc = SQLITE_OK; /* Return code */ + + assert( pExpr->eType==FTSQUERY_PHRASE ); + if( pExpr->aMI==0 ){ + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + Fts3Expr *pRoot; /* Root of NEAR expression */ + Fts3Expr *p; /* Iterator used for several purposes */ + + sqlite3_int64 iPrevId = pCsr->iPrevId; + sqlite3_int64 iDocid; + u8 bEof; + + /* Find the root of the NEAR expression */ + pRoot = pExpr; + while( pRoot->pParent && pRoot->pParent->eType==FTSQUERY_NEAR ){ + pRoot = pRoot->pParent; + } + iDocid = pRoot->iDocid; + bEof = pRoot->bEof; + assert( pRoot->bStart ); + + /* Allocate space for the aMSI[] array of each FTSQUERY_PHRASE node */ + for(p=pRoot; p; p=p->pLeft){ + Fts3Expr *pE = (p->eType==FTSQUERY_PHRASE?p:p->pRight); + assert( pE->aMI==0 ); + pE->aMI = (u32 *)sqlite3_malloc(pTab->nColumn * 3 * sizeof(u32)); + if( !pE->aMI ) return SQLITE_NOMEM; + memset(pE->aMI, 0, pTab->nColumn * 3 * sizeof(u32)); + } + + fts3EvalRestart(pCsr, pRoot, &rc); + + while( pCsr->isEof==0 && rc==SQLITE_OK ){ + + do { + /* Ensure the %_content statement is reset. */ + if( pCsr->isRequireSeek==0 ) sqlite3_reset(pCsr->pStmt); + assert( sqlite3_data_count(pCsr->pStmt)==0 ); + + /* Advance to the next document */ + fts3EvalNextRow(pCsr, pRoot, &rc); + pCsr->isEof = pRoot->bEof; + pCsr->isRequireSeek = 1; + pCsr->isMatchinfoNeeded = 1; + pCsr->iPrevId = pRoot->iDocid; + }while( pCsr->isEof==0 + && pRoot->eType==FTSQUERY_NEAR + && fts3EvalTestDeferredAndNear(pCsr, &rc) + ); + + if( rc==SQLITE_OK && pCsr->isEof==0 ){ + fts3EvalUpdateCounts(pRoot); + } + } + + pCsr->isEof = 0; + pCsr->iPrevId = iPrevId; + + if( bEof ){ + pRoot->bEof = bEof; + }else{ + /* Caution: pRoot may iterate through docids in ascending or descending + ** order. For this reason, even though it seems more defensive, the + ** do loop can not be written: + ** + ** do {...} while( pRoot->iDocidbEof==0 ); + }while( pRoot->iDocid!=iDocid && rc==SQLITE_OK ); + fts3EvalTestDeferredAndNear(pCsr, &rc); + } + } + return rc; +} + +/* +** This function is used by the matchinfo() module to query a phrase +** expression node for the following information: +** +** 1. The total number of occurrences of the phrase in each column of +** the FTS table (considering all rows), and +** +** 2. For each column, the number of rows in the table for which the +** column contains at least one instance of the phrase. +** +** If no error occurs, SQLITE_OK is returned and the values for each column +** written into the array aiOut as follows: +** +** aiOut[iCol*3 + 1] = Number of occurrences +** aiOut[iCol*3 + 2] = Number of rows containing at least one instance +** +** Caveats: +** +** * If a phrase consists entirely of deferred tokens, then all output +** values are set to the number of documents in the table. In other +** words we assume that very common tokens occur exactly once in each +** column of each row of the table. +** +** * If a phrase contains some deferred tokens (and some non-deferred +** tokens), count the potential occurrence identified by considering +** the non-deferred tokens instead of actual phrase occurrences. +** +** * If the phrase is part of a NEAR expression, then only phrase instances +** that meet the NEAR constraint are included in the counts. +*/ +SQLITE_PRIVATE int sqlite3Fts3EvalPhraseStats( + Fts3Cursor *pCsr, /* FTS cursor handle */ + Fts3Expr *pExpr, /* Phrase expression */ + u32 *aiOut /* Array to write results into (see above) */ +){ + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + int rc = SQLITE_OK; + int iCol; + + if( pExpr->bDeferred && pExpr->pParent->eType!=FTSQUERY_NEAR ){ + assert( pCsr->nDoc>0 ); + for(iCol=0; iColnColumn; iCol++){ + aiOut[iCol*3 + 1] = (u32)pCsr->nDoc; + aiOut[iCol*3 + 2] = (u32)pCsr->nDoc; + } + }else{ + rc = fts3EvalGatherStats(pCsr, pExpr); + if( rc==SQLITE_OK ){ + assert( pExpr->aMI ); + for(iCol=0; iColnColumn; iCol++){ + aiOut[iCol*3 + 1] = pExpr->aMI[iCol*3 + 1]; + aiOut[iCol*3 + 2] = pExpr->aMI[iCol*3 + 2]; + } + } + } + + return rc; +} + +/* +** The expression pExpr passed as the second argument to this function +** must be of type FTSQUERY_PHRASE. +** +** The returned value is either NULL or a pointer to a buffer containing +** a position-list indicating the occurrences of the phrase in column iCol +** of the current row. +** +** More specifically, the returned buffer contains 1 varint for each +** occurrence of the phrase in the column, stored using the normal (delta+2) +** compression and is terminated by either an 0x01 or 0x00 byte. For example, +** if the requested column contains "a b X c d X X" and the position-list +** for 'X' is requested, the buffer returned may contain: +** +** 0x04 0x05 0x03 0x01 or 0x04 0x05 0x03 0x00 +** +** This function works regardless of whether or not the phrase is deferred, +** incremental, or neither. +*/ +SQLITE_PRIVATE int sqlite3Fts3EvalPhrasePoslist( + Fts3Cursor *pCsr, /* FTS3 cursor object */ + Fts3Expr *pExpr, /* Phrase to return doclist for */ + int iCol, /* Column to return position list for */ + char **ppOut /* OUT: Pointer to position list */ +){ + Fts3Phrase *pPhrase = pExpr->pPhrase; + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + char *pIter; + int iThis; + sqlite3_int64 iDocid; + + /* If this phrase is applies specifically to some column other than + ** column iCol, return a NULL pointer. */ + *ppOut = 0; + assert( iCol>=0 && iColnColumn ); + if( (pPhrase->iColumnnColumn && pPhrase->iColumn!=iCol) ){ + return SQLITE_OK; + } + + iDocid = pExpr->iDocid; + pIter = pPhrase->doclist.pList; + if( iDocid!=pCsr->iPrevId || pExpr->bEof ){ + int bDescDoclist = pTab->bDescIdx; /* For DOCID_CMP macro */ + int iMul; /* +1 if csr dir matches index dir, else -1 */ + int bOr = 0; + u8 bEof = 0; + u8 bTreeEof = 0; + Fts3Expr *p; /* Used to iterate from pExpr to root */ + Fts3Expr *pNear; /* Most senior NEAR ancestor (or pExpr) */ + + /* Check if this phrase descends from an OR expression node. If not, + ** return NULL. Otherwise, the entry that corresponds to docid + ** pCsr->iPrevId may lie earlier in the doclist buffer. Or, if the + ** tree that the node is part of has been marked as EOF, but the node + ** itself is not EOF, then it may point to an earlier entry. */ + pNear = pExpr; + for(p=pExpr->pParent; p; p=p->pParent){ + if( p->eType==FTSQUERY_OR ) bOr = 1; + if( p->eType==FTSQUERY_NEAR ) pNear = p; + if( p->bEof ) bTreeEof = 1; + } + if( bOr==0 ) return SQLITE_OK; + + /* This is the descendent of an OR node. In this case we cannot use + ** an incremental phrase. Load the entire doclist for the phrase + ** into memory in this case. */ + if( pPhrase->bIncr ){ + int rc = SQLITE_OK; + int bEofSave = pExpr->bEof; + fts3EvalRestart(pCsr, pExpr, &rc); + while( rc==SQLITE_OK && !pExpr->bEof ){ + fts3EvalNextRow(pCsr, pExpr, &rc); + if( bEofSave==0 && pExpr->iDocid==iDocid ) break; + } + pIter = pPhrase->doclist.pList; + assert( rc!=SQLITE_OK || pPhrase->bIncr==0 ); + if( rc!=SQLITE_OK ) return rc; + } + + iMul = ((pCsr->bDesc==bDescDoclist) ? 1 : -1); + while( bTreeEof==1 + && pNear->bEof==0 + && (DOCID_CMP(pNear->iDocid, pCsr->iPrevId) * iMul)<0 + ){ + int rc = SQLITE_OK; + fts3EvalNextRow(pCsr, pExpr, &rc); + if( rc!=SQLITE_OK ) return rc; + iDocid = pExpr->iDocid; + pIter = pPhrase->doclist.pList; + } + + bEof = (pPhrase->doclist.nAll==0); + assert( bDescDoclist==0 || bDescDoclist==1 ); + assert( pCsr->bDesc==0 || pCsr->bDesc==1 ); + + if( bEof==0 ){ + if( pCsr->bDesc==bDescDoclist ){ + int dummy; + if( pNear->bEof ){ + /* This expression is already at EOF. So position it to point to the + ** last entry in the doclist at pPhrase->doclist.aAll[]. Variable + ** iDocid is already set for this entry, so all that is required is + ** to set pIter to point to the first byte of the last position-list + ** in the doclist. + ** + ** It would also be correct to set pIter and iDocid to zero. In + ** this case, the first call to sqltie3Fts4DoclistPrev() below + ** would also move the iterator to point to the last entry in the + ** doclist. However, this is expensive, as to do so it has to + ** iterate through the entire doclist from start to finish (since + ** it does not know the docid for the last entry). */ + pIter = &pPhrase->doclist.aAll[pPhrase->doclist.nAll-1]; + fts3ReversePoslist(pPhrase->doclist.aAll, &pIter); + } + while( (pIter==0 || DOCID_CMP(iDocid, pCsr->iPrevId)>0 ) && bEof==0 ){ + sqlite3Fts3DoclistPrev( + bDescDoclist, pPhrase->doclist.aAll, pPhrase->doclist.nAll, + &pIter, &iDocid, &dummy, &bEof + ); + } + }else{ + if( pNear->bEof ){ + pIter = 0; + iDocid = 0; + } + while( (pIter==0 || DOCID_CMP(iDocid, pCsr->iPrevId)<0 ) && bEof==0 ){ + sqlite3Fts3DoclistNext( + bDescDoclist, pPhrase->doclist.aAll, pPhrase->doclist.nAll, + &pIter, &iDocid, &bEof + ); + } + } + } + + if( bEof || iDocid!=pCsr->iPrevId ) pIter = 0; + } + if( pIter==0 ) return SQLITE_OK; + + if( *pIter==0x01 ){ + pIter++; + pIter += fts3GetVarint32(pIter, &iThis); + }else{ + iThis = 0; + } + while( iThisdoclist, and +** * any Fts3MultiSegReader objects held by phrase tokens. +*/ +SQLITE_PRIVATE void sqlite3Fts3EvalPhraseCleanup(Fts3Phrase *pPhrase){ + if( pPhrase ){ + int i; + sqlite3_free(pPhrase->doclist.aAll); + fts3EvalInvalidatePoslist(pPhrase); + memset(&pPhrase->doclist, 0, sizeof(Fts3Doclist)); + for(i=0; inToken; i++){ + fts3SegReaderCursorFree(pPhrase->aToken[i].pSegcsr); + pPhrase->aToken[i].pSegcsr = 0; + } + } +} + + +/* +** Return SQLITE_CORRUPT_VTAB. +*/ +#ifdef SQLITE_DEBUG +SQLITE_PRIVATE int sqlite3Fts3Corrupt(){ + return SQLITE_CORRUPT_VTAB; +} +#endif + +#if !SQLITE_CORE +/* +** Initialize API pointer table, if required. +*/ +#ifdef _WIN32 +__declspec(dllexport) +#endif +SQLITE_API int sqlite3_fts3_init( + sqlite3 *db, + char **pzErrMsg, + const sqlite3_api_routines *pApi +){ + SQLITE_EXTENSION_INIT2(pApi) + return sqlite3Fts3Init(db); +} +#endif + +#endif + +/************** End of fts3.c ************************************************/ +/************** Begin file fts3_aux.c ****************************************/ +/* +** 2011 Jan 27 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +*/ +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* #include */ +/* #include */ + +typedef struct Fts3auxTable Fts3auxTable; +typedef struct Fts3auxCursor Fts3auxCursor; + +struct Fts3auxTable { + sqlite3_vtab base; /* Base class used by SQLite core */ + Fts3Table *pFts3Tab; +}; + +struct Fts3auxCursor { + sqlite3_vtab_cursor base; /* Base class used by SQLite core */ + Fts3MultiSegReader csr; /* Must be right after "base" */ + Fts3SegFilter filter; + char *zStop; + int nStop; /* Byte-length of string zStop */ + int iLangid; /* Language id to query */ + int isEof; /* True if cursor is at EOF */ + sqlite3_int64 iRowid; /* Current rowid */ + + int iCol; /* Current value of 'col' column */ + int nStat; /* Size of aStat[] array */ + struct Fts3auxColstats { + sqlite3_int64 nDoc; /* 'documents' values for current csr row */ + sqlite3_int64 nOcc; /* 'occurrences' values for current csr row */ + } *aStat; +}; + +/* +** Schema of the terms table. +*/ +#define FTS3_AUX_SCHEMA \ + "CREATE TABLE x(term, col, documents, occurrences, languageid HIDDEN)" + +/* +** This function does all the work for both the xConnect and xCreate methods. +** These tables have no persistent representation of their own, so xConnect +** and xCreate are identical operations. +*/ +static int fts3auxConnectMethod( + sqlite3 *db, /* Database connection */ + void *pUnused, /* Unused */ + int argc, /* Number of elements in argv array */ + const char * const *argv, /* xCreate/xConnect argument array */ + sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */ + char **pzErr /* OUT: sqlite3_malloc'd error message */ +){ + char const *zDb; /* Name of database (e.g. "main") */ + char const *zFts3; /* Name of fts3 table */ + int nDb; /* Result of strlen(zDb) */ + int nFts3; /* Result of strlen(zFts3) */ + int nByte; /* Bytes of space to allocate here */ + int rc; /* value returned by declare_vtab() */ + Fts3auxTable *p; /* Virtual table object to return */ + + UNUSED_PARAMETER(pUnused); + + /* The user should invoke this in one of two forms: + ** + ** CREATE VIRTUAL TABLE xxx USING fts4aux(fts4-table); + ** CREATE VIRTUAL TABLE xxx USING fts4aux(fts4-table-db, fts4-table); + */ + if( argc!=4 && argc!=5 ) goto bad_args; + + zDb = argv[1]; + nDb = (int)strlen(zDb); + if( argc==5 ){ + if( nDb==4 && 0==sqlite3_strnicmp("temp", zDb, 4) ){ + zDb = argv[3]; + nDb = (int)strlen(zDb); + zFts3 = argv[4]; + }else{ + goto bad_args; + } + }else{ + zFts3 = argv[3]; + } + nFts3 = (int)strlen(zFts3); + + rc = sqlite3_declare_vtab(db, FTS3_AUX_SCHEMA); + if( rc!=SQLITE_OK ) return rc; + + nByte = sizeof(Fts3auxTable) + sizeof(Fts3Table) + nDb + nFts3 + 2; + p = (Fts3auxTable *)sqlite3_malloc(nByte); + if( !p ) return SQLITE_NOMEM; + memset(p, 0, nByte); + + p->pFts3Tab = (Fts3Table *)&p[1]; + p->pFts3Tab->zDb = (char *)&p->pFts3Tab[1]; + p->pFts3Tab->zName = &p->pFts3Tab->zDb[nDb+1]; + p->pFts3Tab->db = db; + p->pFts3Tab->nIndex = 1; + + memcpy((char *)p->pFts3Tab->zDb, zDb, nDb); + memcpy((char *)p->pFts3Tab->zName, zFts3, nFts3); + sqlite3Fts3Dequote((char *)p->pFts3Tab->zName); + + *ppVtab = (sqlite3_vtab *)p; + return SQLITE_OK; + + bad_args: + *pzErr = sqlite3_mprintf("invalid arguments to fts4aux constructor"); + return SQLITE_ERROR; +} + +/* +** This function does the work for both the xDisconnect and xDestroy methods. +** These tables have no persistent representation of their own, so xDisconnect +** and xDestroy are identical operations. +*/ +static int fts3auxDisconnectMethod(sqlite3_vtab *pVtab){ + Fts3auxTable *p = (Fts3auxTable *)pVtab; + Fts3Table *pFts3 = p->pFts3Tab; + int i; + + /* Free any prepared statements held */ + for(i=0; iaStmt); i++){ + sqlite3_finalize(pFts3->aStmt[i]); + } + sqlite3_free(pFts3->zSegmentsTbl); + sqlite3_free(p); + return SQLITE_OK; +} + +#define FTS4AUX_EQ_CONSTRAINT 1 +#define FTS4AUX_GE_CONSTRAINT 2 +#define FTS4AUX_LE_CONSTRAINT 4 + +/* +** xBestIndex - Analyze a WHERE and ORDER BY clause. +*/ +static int fts3auxBestIndexMethod( + sqlite3_vtab *pVTab, + sqlite3_index_info *pInfo +){ + int i; + int iEq = -1; + int iGe = -1; + int iLe = -1; + int iLangid = -1; + int iNext = 1; /* Next free argvIndex value */ + + UNUSED_PARAMETER(pVTab); + + /* This vtab delivers always results in "ORDER BY term ASC" order. */ + if( pInfo->nOrderBy==1 + && pInfo->aOrderBy[0].iColumn==0 + && pInfo->aOrderBy[0].desc==0 + ){ + pInfo->orderByConsumed = 1; + } + + /* Search for equality and range constraints on the "term" column. + ** And equality constraints on the hidden "languageid" column. */ + for(i=0; inConstraint; i++){ + if( pInfo->aConstraint[i].usable ){ + int op = pInfo->aConstraint[i].op; + int iCol = pInfo->aConstraint[i].iColumn; + + if( iCol==0 ){ + if( op==SQLITE_INDEX_CONSTRAINT_EQ ) iEq = i; + if( op==SQLITE_INDEX_CONSTRAINT_LT ) iLe = i; + if( op==SQLITE_INDEX_CONSTRAINT_LE ) iLe = i; + if( op==SQLITE_INDEX_CONSTRAINT_GT ) iGe = i; + if( op==SQLITE_INDEX_CONSTRAINT_GE ) iGe = i; + } + if( iCol==4 ){ + if( op==SQLITE_INDEX_CONSTRAINT_EQ ) iLangid = i; + } + } + } + + if( iEq>=0 ){ + pInfo->idxNum = FTS4AUX_EQ_CONSTRAINT; + pInfo->aConstraintUsage[iEq].argvIndex = iNext++; + pInfo->estimatedCost = 5; + }else{ + pInfo->idxNum = 0; + pInfo->estimatedCost = 20000; + if( iGe>=0 ){ + pInfo->idxNum += FTS4AUX_GE_CONSTRAINT; + pInfo->aConstraintUsage[iGe].argvIndex = iNext++; + pInfo->estimatedCost /= 2; + } + if( iLe>=0 ){ + pInfo->idxNum += FTS4AUX_LE_CONSTRAINT; + pInfo->aConstraintUsage[iLe].argvIndex = iNext++; + pInfo->estimatedCost /= 2; + } + } + if( iLangid>=0 ){ + pInfo->aConstraintUsage[iLangid].argvIndex = iNext++; + pInfo->estimatedCost--; + } + + return SQLITE_OK; +} + +/* +** xOpen - Open a cursor. +*/ +static int fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ + Fts3auxCursor *pCsr; /* Pointer to cursor object to return */ + + UNUSED_PARAMETER(pVTab); + + pCsr = (Fts3auxCursor *)sqlite3_malloc(sizeof(Fts3auxCursor)); + if( !pCsr ) return SQLITE_NOMEM; + memset(pCsr, 0, sizeof(Fts3auxCursor)); + + *ppCsr = (sqlite3_vtab_cursor *)pCsr; + return SQLITE_OK; +} + +/* +** xClose - Close a cursor. +*/ +static int fts3auxCloseMethod(sqlite3_vtab_cursor *pCursor){ + Fts3Table *pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab; + Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; + + sqlite3Fts3SegmentsClose(pFts3); + sqlite3Fts3SegReaderFinish(&pCsr->csr); + sqlite3_free((void *)pCsr->filter.zTerm); + sqlite3_free(pCsr->zStop); + sqlite3_free(pCsr->aStat); + sqlite3_free(pCsr); + return SQLITE_OK; +} + +static int fts3auxGrowStatArray(Fts3auxCursor *pCsr, int nSize){ + if( nSize>pCsr->nStat ){ + struct Fts3auxColstats *aNew; + aNew = (struct Fts3auxColstats *)sqlite3_realloc(pCsr->aStat, + sizeof(struct Fts3auxColstats) * nSize + ); + if( aNew==0 ) return SQLITE_NOMEM; + memset(&aNew[pCsr->nStat], 0, + sizeof(struct Fts3auxColstats) * (nSize - pCsr->nStat) + ); + pCsr->aStat = aNew; + pCsr->nStat = nSize; + } + return SQLITE_OK; +} + +/* +** xNext - Advance the cursor to the next row, if any. +*/ +static int fts3auxNextMethod(sqlite3_vtab_cursor *pCursor){ + Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; + Fts3Table *pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab; + int rc; + + /* Increment our pretend rowid value. */ + pCsr->iRowid++; + + for(pCsr->iCol++; pCsr->iColnStat; pCsr->iCol++){ + if( pCsr->aStat[pCsr->iCol].nDoc>0 ) return SQLITE_OK; + } + + rc = sqlite3Fts3SegReaderStep(pFts3, &pCsr->csr); + if( rc==SQLITE_ROW ){ + int i = 0; + int nDoclist = pCsr->csr.nDoclist; + char *aDoclist = pCsr->csr.aDoclist; + int iCol; + + int eState = 0; + + if( pCsr->zStop ){ + int n = (pCsr->nStopcsr.nTerm) ? pCsr->nStop : pCsr->csr.nTerm; + int mc = memcmp(pCsr->zStop, pCsr->csr.zTerm, n); + if( mc<0 || (mc==0 && pCsr->csr.nTerm>pCsr->nStop) ){ + pCsr->isEof = 1; + return SQLITE_OK; + } + } + + if( fts3auxGrowStatArray(pCsr, 2) ) return SQLITE_NOMEM; + memset(pCsr->aStat, 0, sizeof(struct Fts3auxColstats) * pCsr->nStat); + iCol = 0; + + while( iaStat[0].nDoc++; + eState = 1; + iCol = 0; + break; + + /* State 1. In this state we are expecting either a 1, indicating + ** that the following integer will be a column number, or the + ** start of a position list for column 0. + ** + ** The only difference between state 1 and state 2 is that if the + ** integer encountered in state 1 is not 0 or 1, then we need to + ** increment the column 0 "nDoc" count for this term. + */ + case 1: + assert( iCol==0 ); + if( v>1 ){ + pCsr->aStat[1].nDoc++; + } + eState = 2; + /* fall through */ + + case 2: + if( v==0 ){ /* 0x00. Next integer will be a docid. */ + eState = 0; + }else if( v==1 ){ /* 0x01. Next integer will be a column number. */ + eState = 3; + }else{ /* 2 or greater. A position. */ + pCsr->aStat[iCol+1].nOcc++; + pCsr->aStat[0].nOcc++; + } + break; + + /* State 3. The integer just read is a column number. */ + default: assert( eState==3 ); + iCol = (int)v; + if( fts3auxGrowStatArray(pCsr, iCol+2) ) return SQLITE_NOMEM; + pCsr->aStat[iCol+1].nDoc++; + eState = 2; + break; + } + } + + pCsr->iCol = 0; + rc = SQLITE_OK; + }else{ + pCsr->isEof = 1; + } + return rc; +} + +/* +** xFilter - Initialize a cursor to point at the start of its data. +*/ +static int fts3auxFilterMethod( + sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */ + int idxNum, /* Strategy index */ + const char *idxStr, /* Unused */ + int nVal, /* Number of elements in apVal */ + sqlite3_value **apVal /* Arguments for the indexing scheme */ +){ + Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; + Fts3Table *pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab; + int rc; + int isScan = 0; + int iLangVal = 0; /* Language id to query */ + + int iEq = -1; /* Index of term=? value in apVal */ + int iGe = -1; /* Index of term>=? value in apVal */ + int iLe = -1; /* Index of term<=? value in apVal */ + int iLangid = -1; /* Index of languageid=? value in apVal */ + int iNext = 0; + + UNUSED_PARAMETER(nVal); + UNUSED_PARAMETER(idxStr); + + assert( idxStr==0 ); + assert( idxNum==FTS4AUX_EQ_CONSTRAINT || idxNum==0 + || idxNum==FTS4AUX_LE_CONSTRAINT || idxNum==FTS4AUX_GE_CONSTRAINT + || idxNum==(FTS4AUX_LE_CONSTRAINT|FTS4AUX_GE_CONSTRAINT) + ); + + if( idxNum==FTS4AUX_EQ_CONSTRAINT ){ + iEq = iNext++; + }else{ + isScan = 1; + if( idxNum & FTS4AUX_GE_CONSTRAINT ){ + iGe = iNext++; + } + if( idxNum & FTS4AUX_LE_CONSTRAINT ){ + iLe = iNext++; + } + } + if( iNextfilter.zTerm); + sqlite3Fts3SegReaderFinish(&pCsr->csr); + sqlite3_free((void *)pCsr->filter.zTerm); + sqlite3_free(pCsr->aStat); + memset(&pCsr->csr, 0, ((u8*)&pCsr[1]) - (u8*)&pCsr->csr); + + pCsr->filter.flags = FTS3_SEGMENT_REQUIRE_POS|FTS3_SEGMENT_IGNORE_EMPTY; + if( isScan ) pCsr->filter.flags |= FTS3_SEGMENT_SCAN; + + if( iEq>=0 || iGe>=0 ){ + const unsigned char *zStr = sqlite3_value_text(apVal[0]); + assert( (iEq==0 && iGe==-1) || (iEq==-1 && iGe==0) ); + if( zStr ){ + pCsr->filter.zTerm = sqlite3_mprintf("%s", zStr); + pCsr->filter.nTerm = sqlite3_value_bytes(apVal[0]); + if( pCsr->filter.zTerm==0 ) return SQLITE_NOMEM; + } + } + + if( iLe>=0 ){ + pCsr->zStop = sqlite3_mprintf("%s", sqlite3_value_text(apVal[iLe])); + pCsr->nStop = sqlite3_value_bytes(apVal[iLe]); + if( pCsr->zStop==0 ) return SQLITE_NOMEM; + } + + if( iLangid>=0 ){ + iLangVal = sqlite3_value_int(apVal[iLangid]); + + /* If the user specified a negative value for the languageid, use zero + ** instead. This works, as the "languageid=?" constraint will also + ** be tested by the VDBE layer. The test will always be false (since + ** this module will not return a row with a negative languageid), and + ** so the overall query will return zero rows. */ + if( iLangVal<0 ) iLangVal = 0; + } + pCsr->iLangid = iLangVal; + + rc = sqlite3Fts3SegReaderCursor(pFts3, iLangVal, 0, FTS3_SEGCURSOR_ALL, + pCsr->filter.zTerm, pCsr->filter.nTerm, 0, isScan, &pCsr->csr + ); + if( rc==SQLITE_OK ){ + rc = sqlite3Fts3SegReaderStart(pFts3, &pCsr->csr, &pCsr->filter); + } + + if( rc==SQLITE_OK ) rc = fts3auxNextMethod(pCursor); + return rc; +} + +/* +** xEof - Return true if the cursor is at EOF, or false otherwise. +*/ +static int fts3auxEofMethod(sqlite3_vtab_cursor *pCursor){ + Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; + return pCsr->isEof; +} + +/* +** xColumn - Return a column value. +*/ +static int fts3auxColumnMethod( + sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ + sqlite3_context *pCtx, /* Context for sqlite3_result_xxx() calls */ + int iCol /* Index of column to read value from */ +){ + Fts3auxCursor *p = (Fts3auxCursor *)pCursor; + + assert( p->isEof==0 ); + switch( iCol ){ + case 0: /* term */ + sqlite3_result_text(pCtx, p->csr.zTerm, p->csr.nTerm, SQLITE_TRANSIENT); + break; + + case 1: /* col */ + if( p->iCol ){ + sqlite3_result_int(pCtx, p->iCol-1); + }else{ + sqlite3_result_text(pCtx, "*", -1, SQLITE_STATIC); + } + break; + + case 2: /* documents */ + sqlite3_result_int64(pCtx, p->aStat[p->iCol].nDoc); + break; + + case 3: /* occurrences */ + sqlite3_result_int64(pCtx, p->aStat[p->iCol].nOcc); + break; + + default: /* languageid */ + assert( iCol==4 ); + sqlite3_result_int(pCtx, p->iLangid); + break; + } + + return SQLITE_OK; +} + +/* +** xRowid - Return the current rowid for the cursor. +*/ +static int fts3auxRowidMethod( + sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ + sqlite_int64 *pRowid /* OUT: Rowid value */ +){ + Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; + *pRowid = pCsr->iRowid; + return SQLITE_OK; +} + +/* +** Register the fts3aux module with database connection db. Return SQLITE_OK +** if successful or an error code if sqlite3_create_module() fails. +*/ +SQLITE_PRIVATE int sqlite3Fts3InitAux(sqlite3 *db){ + static const sqlite3_module fts3aux_module = { + 0, /* iVersion */ + fts3auxConnectMethod, /* xCreate */ + fts3auxConnectMethod, /* xConnect */ + fts3auxBestIndexMethod, /* xBestIndex */ + fts3auxDisconnectMethod, /* xDisconnect */ + fts3auxDisconnectMethod, /* xDestroy */ + fts3auxOpenMethod, /* xOpen */ + fts3auxCloseMethod, /* xClose */ + fts3auxFilterMethod, /* xFilter */ + fts3auxNextMethod, /* xNext */ + fts3auxEofMethod, /* xEof */ + fts3auxColumnMethod, /* xColumn */ + fts3auxRowidMethod, /* xRowid */ + 0, /* xUpdate */ + 0, /* xBegin */ + 0, /* xSync */ + 0, /* xCommit */ + 0, /* xRollback */ + 0, /* xFindFunction */ + 0, /* xRename */ + 0, /* xSavepoint */ + 0, /* xRelease */ + 0 /* xRollbackTo */ + }; + int rc; /* Return code */ + + rc = sqlite3_create_module(db, "fts4aux", &fts3aux_module, 0); + return rc; +} + +#endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ + +/************** End of fts3_aux.c ********************************************/ +/************** Begin file fts3_expr.c ***************************************/ +/* +** 2008 Nov 28 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This module contains code that implements a parser for fts3 query strings +** (the right-hand argument to the MATCH operator). Because the supported +** syntax is relatively simple, the whole tokenizer/parser system is +** hand-coded. +*/ +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* +** By default, this module parses the legacy syntax that has been +** traditionally used by fts3. Or, if SQLITE_ENABLE_FTS3_PARENTHESIS +** is defined, then it uses the new syntax. The differences between +** the new and the old syntaxes are: +** +** a) The new syntax supports parenthesis. The old does not. +** +** b) The new syntax supports the AND and NOT operators. The old does not. +** +** c) The old syntax supports the "-" token qualifier. This is not +** supported by the new syntax (it is replaced by the NOT operator). +** +** d) When using the old syntax, the OR operator has a greater precedence +** than an implicit AND. When using the new, both implicity and explicit +** AND operators have a higher precedence than OR. +** +** If compiled with SQLITE_TEST defined, then this module exports the +** symbol "int sqlite3_fts3_enable_parentheses". Setting this variable +** to zero causes the module to use the old syntax. If it is set to +** non-zero the new syntax is activated. This is so both syntaxes can +** be tested using a single build of testfixture. +** +** The following describes the syntax supported by the fts3 MATCH +** operator in a similar format to that used by the lemon parser +** generator. This module does not use actually lemon, it uses a +** custom parser. +** +** query ::= andexpr (OR andexpr)*. +** +** andexpr ::= notexpr (AND? notexpr)*. +** +** notexpr ::= nearexpr (NOT nearexpr|-TOKEN)*. +** notexpr ::= LP query RP. +** +** nearexpr ::= phrase (NEAR distance_opt nearexpr)*. +** +** distance_opt ::= . +** distance_opt ::= / INTEGER. +** +** phrase ::= TOKEN. +** phrase ::= COLUMN:TOKEN. +** phrase ::= "TOKEN TOKEN TOKEN...". +*/ + +#ifdef SQLITE_TEST +SQLITE_API int sqlite3_fts3_enable_parentheses = 0; +#else +# ifdef SQLITE_ENABLE_FTS3_PARENTHESIS +# define sqlite3_fts3_enable_parentheses 1 +# else +# define sqlite3_fts3_enable_parentheses 0 +# endif +#endif + +/* +** Default span for NEAR operators. +*/ +#define SQLITE_FTS3_DEFAULT_NEAR_PARAM 10 + +/* #include */ +/* #include */ + +/* +** isNot: +** This variable is used by function getNextNode(). When getNextNode() is +** called, it sets ParseContext.isNot to true if the 'next node' is a +** FTSQUERY_PHRASE with a unary "-" attached to it. i.e. "mysql" in the +** FTS3 query "sqlite -mysql". Otherwise, ParseContext.isNot is set to +** zero. +*/ +typedef struct ParseContext ParseContext; +struct ParseContext { + sqlite3_tokenizer *pTokenizer; /* Tokenizer module */ + int iLangid; /* Language id used with tokenizer */ + const char **azCol; /* Array of column names for fts3 table */ + int bFts4; /* True to allow FTS4-only syntax */ + int nCol; /* Number of entries in azCol[] */ + int iDefaultCol; /* Default column to query */ + int isNot; /* True if getNextNode() sees a unary - */ + sqlite3_context *pCtx; /* Write error message here */ + int nNest; /* Number of nested brackets */ +}; + +/* +** This function is equivalent to the standard isspace() function. +** +** The standard isspace() can be awkward to use safely, because although it +** is defined to accept an argument of type int, its behavior when passed +** an integer that falls outside of the range of the unsigned char type +** is undefined (and sometimes, "undefined" means segfault). This wrapper +** is defined to accept an argument of type char, and always returns 0 for +** any values that fall outside of the range of the unsigned char type (i.e. +** negative values). +*/ +static int fts3isspace(char c){ + return c==' ' || c=='\t' || c=='\n' || c=='\r' || c=='\v' || c=='\f'; +} + +/* +** Allocate nByte bytes of memory using sqlite3_malloc(). If successful, +** zero the memory before returning a pointer to it. If unsuccessful, +** return NULL. +*/ +static void *fts3MallocZero(int nByte){ + void *pRet = sqlite3_malloc(nByte); + if( pRet ) memset(pRet, 0, nByte); + return pRet; +} + +SQLITE_PRIVATE int sqlite3Fts3OpenTokenizer( + sqlite3_tokenizer *pTokenizer, + int iLangid, + const char *z, + int n, + sqlite3_tokenizer_cursor **ppCsr +){ + sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; + sqlite3_tokenizer_cursor *pCsr = 0; + int rc; + + rc = pModule->xOpen(pTokenizer, z, n, &pCsr); + assert( rc==SQLITE_OK || pCsr==0 ); + if( rc==SQLITE_OK ){ + pCsr->pTokenizer = pTokenizer; + if( pModule->iVersion>=1 ){ + rc = pModule->xLanguageid(pCsr, iLangid); + if( rc!=SQLITE_OK ){ + pModule->xClose(pCsr); + pCsr = 0; + } + } + } + *ppCsr = pCsr; + return rc; +} + +/* +** Function getNextNode(), which is called by fts3ExprParse(), may itself +** call fts3ExprParse(). So this forward declaration is required. +*/ +static int fts3ExprParse(ParseContext *, const char *, int, Fts3Expr **, int *); + +/* +** Extract the next token from buffer z (length n) using the tokenizer +** and other information (column names etc.) in pParse. Create an Fts3Expr +** structure of type FTSQUERY_PHRASE containing a phrase consisting of this +** single token and set *ppExpr to point to it. If the end of the buffer is +** reached before a token is found, set *ppExpr to zero. It is the +** responsibility of the caller to eventually deallocate the allocated +** Fts3Expr structure (if any) by passing it to sqlite3_free(). +** +** Return SQLITE_OK if successful, or SQLITE_NOMEM if a memory allocation +** fails. +*/ +static int getNextToken( + ParseContext *pParse, /* fts3 query parse context */ + int iCol, /* Value for Fts3Phrase.iColumn */ + const char *z, int n, /* Input string */ + Fts3Expr **ppExpr, /* OUT: expression */ + int *pnConsumed /* OUT: Number of bytes consumed */ +){ + sqlite3_tokenizer *pTokenizer = pParse->pTokenizer; + sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; + int rc; + sqlite3_tokenizer_cursor *pCursor; + Fts3Expr *pRet = 0; + int i = 0; + + /* Set variable i to the maximum number of bytes of input to tokenize. */ + for(i=0; iiLangid, z, i, &pCursor); + if( rc==SQLITE_OK ){ + const char *zToken; + int nToken = 0, iStart = 0, iEnd = 0, iPosition = 0; + int nByte; /* total space to allocate */ + + rc = pModule->xNext(pCursor, &zToken, &nToken, &iStart, &iEnd, &iPosition); + if( rc==SQLITE_OK ){ + nByte = sizeof(Fts3Expr) + sizeof(Fts3Phrase) + nToken; + pRet = (Fts3Expr *)fts3MallocZero(nByte); + if( !pRet ){ + rc = SQLITE_NOMEM; + }else{ + pRet->eType = FTSQUERY_PHRASE; + pRet->pPhrase = (Fts3Phrase *)&pRet[1]; + pRet->pPhrase->nToken = 1; + pRet->pPhrase->iColumn = iCol; + pRet->pPhrase->aToken[0].n = nToken; + pRet->pPhrase->aToken[0].z = (char *)&pRet->pPhrase[1]; + memcpy(pRet->pPhrase->aToken[0].z, zToken, nToken); + + if( iEndpPhrase->aToken[0].isPrefix = 1; + iEnd++; + } + + while( 1 ){ + if( !sqlite3_fts3_enable_parentheses + && iStart>0 && z[iStart-1]=='-' + ){ + pParse->isNot = 1; + iStart--; + }else if( pParse->bFts4 && iStart>0 && z[iStart-1]=='^' ){ + pRet->pPhrase->aToken[0].bFirst = 1; + iStart--; + }else{ + break; + } + } + + } + *pnConsumed = iEnd; + }else if( i && rc==SQLITE_DONE ){ + rc = SQLITE_OK; + } + + pModule->xClose(pCursor); + } + + *ppExpr = pRet; + return rc; +} + + +/* +** Enlarge a memory allocation. If an out-of-memory allocation occurs, +** then free the old allocation. +*/ +static void *fts3ReallocOrFree(void *pOrig, int nNew){ + void *pRet = sqlite3_realloc(pOrig, nNew); + if( !pRet ){ + sqlite3_free(pOrig); + } + return pRet; +} + +/* +** Buffer zInput, length nInput, contains the contents of a quoted string +** that appeared as part of an fts3 query expression. Neither quote character +** is included in the buffer. This function attempts to tokenize the entire +** input buffer and create an Fts3Expr structure of type FTSQUERY_PHRASE +** containing the results. +** +** If successful, SQLITE_OK is returned and *ppExpr set to point at the +** allocated Fts3Expr structure. Otherwise, either SQLITE_NOMEM (out of memory +** error) or SQLITE_ERROR (tokenization error) is returned and *ppExpr set +** to 0. +*/ +static int getNextString( + ParseContext *pParse, /* fts3 query parse context */ + const char *zInput, int nInput, /* Input string */ + Fts3Expr **ppExpr /* OUT: expression */ +){ + sqlite3_tokenizer *pTokenizer = pParse->pTokenizer; + sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; + int rc; + Fts3Expr *p = 0; + sqlite3_tokenizer_cursor *pCursor = 0; + char *zTemp = 0; + int nTemp = 0; + + const int nSpace = sizeof(Fts3Expr) + sizeof(Fts3Phrase); + int nToken = 0; + + /* The final Fts3Expr data structure, including the Fts3Phrase, + ** Fts3PhraseToken structures token buffers are all stored as a single + ** allocation so that the expression can be freed with a single call to + ** sqlite3_free(). Setting this up requires a two pass approach. + ** + ** The first pass, in the block below, uses a tokenizer cursor to iterate + ** through the tokens in the expression. This pass uses fts3ReallocOrFree() + ** to assemble data in two dynamic buffers: + ** + ** Buffer p: Points to the Fts3Expr structure, followed by the Fts3Phrase + ** structure, followed by the array of Fts3PhraseToken + ** structures. This pass only populates the Fts3PhraseToken array. + ** + ** Buffer zTemp: Contains copies of all tokens. + ** + ** The second pass, in the block that begins "if( rc==SQLITE_DONE )" below, + ** appends buffer zTemp to buffer p, and fills in the Fts3Expr and Fts3Phrase + ** structures. + */ + rc = sqlite3Fts3OpenTokenizer( + pTokenizer, pParse->iLangid, zInput, nInput, &pCursor); + if( rc==SQLITE_OK ){ + int ii; + for(ii=0; rc==SQLITE_OK; ii++){ + const char *zByte; + int nByte = 0, iBegin = 0, iEnd = 0, iPos = 0; + rc = pModule->xNext(pCursor, &zByte, &nByte, &iBegin, &iEnd, &iPos); + if( rc==SQLITE_OK ){ + Fts3PhraseToken *pToken; + + p = fts3ReallocOrFree(p, nSpace + ii*sizeof(Fts3PhraseToken)); + if( !p ) goto no_mem; + + zTemp = fts3ReallocOrFree(zTemp, nTemp + nByte); + if( !zTemp ) goto no_mem; + + assert( nToken==ii ); + pToken = &((Fts3Phrase *)(&p[1]))->aToken[ii]; + memset(pToken, 0, sizeof(Fts3PhraseToken)); + + memcpy(&zTemp[nTemp], zByte, nByte); + nTemp += nByte; + + pToken->n = nByte; + pToken->isPrefix = (iEndbFirst = (iBegin>0 && zInput[iBegin-1]=='^'); + nToken = ii+1; + } + } + + pModule->xClose(pCursor); + pCursor = 0; + } + + if( rc==SQLITE_DONE ){ + int jj; + char *zBuf = 0; + + p = fts3ReallocOrFree(p, nSpace + nToken*sizeof(Fts3PhraseToken) + nTemp); + if( !p ) goto no_mem; + memset(p, 0, (char *)&(((Fts3Phrase *)&p[1])->aToken[0])-(char *)p); + p->eType = FTSQUERY_PHRASE; + p->pPhrase = (Fts3Phrase *)&p[1]; + p->pPhrase->iColumn = pParse->iDefaultCol; + p->pPhrase->nToken = nToken; + + zBuf = (char *)&p->pPhrase->aToken[nToken]; + if( zTemp ){ + memcpy(zBuf, zTemp, nTemp); + sqlite3_free(zTemp); + }else{ + assert( nTemp==0 ); + } + + for(jj=0; jjpPhrase->nToken; jj++){ + p->pPhrase->aToken[jj].z = zBuf; + zBuf += p->pPhrase->aToken[jj].n; + } + rc = SQLITE_OK; + } + + *ppExpr = p; + return rc; +no_mem: + + if( pCursor ){ + pModule->xClose(pCursor); + } + sqlite3_free(zTemp); + sqlite3_free(p); + *ppExpr = 0; + return SQLITE_NOMEM; +} + +/* +** The output variable *ppExpr is populated with an allocated Fts3Expr +** structure, or set to 0 if the end of the input buffer is reached. +** +** Returns an SQLite error code. SQLITE_OK if everything works, SQLITE_NOMEM +** if a malloc failure occurs, or SQLITE_ERROR if a parse error is encountered. +** If SQLITE_ERROR is returned, pContext is populated with an error message. +*/ +static int getNextNode( + ParseContext *pParse, /* fts3 query parse context */ + const char *z, int n, /* Input string */ + Fts3Expr **ppExpr, /* OUT: expression */ + int *pnConsumed /* OUT: Number of bytes consumed */ +){ + static const struct Fts3Keyword { + char *z; /* Keyword text */ + unsigned char n; /* Length of the keyword */ + unsigned char parenOnly; /* Only valid in paren mode */ + unsigned char eType; /* Keyword code */ + } aKeyword[] = { + { "OR" , 2, 0, FTSQUERY_OR }, + { "AND", 3, 1, FTSQUERY_AND }, + { "NOT", 3, 1, FTSQUERY_NOT }, + { "NEAR", 4, 0, FTSQUERY_NEAR } + }; + int ii; + int iCol; + int iColLen; + int rc; + Fts3Expr *pRet = 0; + + const char *zInput = z; + int nInput = n; + + pParse->isNot = 0; + + /* Skip over any whitespace before checking for a keyword, an open or + ** close bracket, or a quoted string. + */ + while( nInput>0 && fts3isspace(*zInput) ){ + nInput--; + zInput++; + } + if( nInput==0 ){ + return SQLITE_DONE; + } + + /* See if we are dealing with a keyword. */ + for(ii=0; ii<(int)(sizeof(aKeyword)/sizeof(struct Fts3Keyword)); ii++){ + const struct Fts3Keyword *pKey = &aKeyword[ii]; + + if( (pKey->parenOnly & ~sqlite3_fts3_enable_parentheses)!=0 ){ + continue; + } + + if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){ + int nNear = SQLITE_FTS3_DEFAULT_NEAR_PARAM; + int nKey = pKey->n; + char cNext; + + /* If this is a "NEAR" keyword, check for an explicit nearness. */ + if( pKey->eType==FTSQUERY_NEAR ){ + assert( nKey==4 ); + if( zInput[4]=='/' && zInput[5]>='0' && zInput[5]<='9' ){ + nNear = 0; + for(nKey=5; zInput[nKey]>='0' && zInput[nKey]<='9'; nKey++){ + nNear = nNear * 10 + (zInput[nKey] - '0'); + } + } + } + + /* At this point this is probably a keyword. But for that to be true, + ** the next byte must contain either whitespace, an open or close + ** parenthesis, a quote character, or EOF. + */ + cNext = zInput[nKey]; + if( fts3isspace(cNext) + || cNext=='"' || cNext=='(' || cNext==')' || cNext==0 + ){ + pRet = (Fts3Expr *)fts3MallocZero(sizeof(Fts3Expr)); + if( !pRet ){ + return SQLITE_NOMEM; + } + pRet->eType = pKey->eType; + pRet->nNear = nNear; + *ppExpr = pRet; + *pnConsumed = (int)((zInput - z) + nKey); + return SQLITE_OK; + } + + /* Turns out that wasn't a keyword after all. This happens if the + ** user has supplied a token such as "ORacle". Continue. + */ + } + } + + /* See if we are dealing with a quoted phrase. If this is the case, then + ** search for the closing quote and pass the whole string to getNextString() + ** for processing. This is easy to do, as fts3 has no syntax for escaping + ** a quote character embedded in a string. + */ + if( *zInput=='"' ){ + for(ii=1; iinNest++; + rc = fts3ExprParse(pParse, zInput+1, nInput-1, ppExpr, &nConsumed); + if( rc==SQLITE_OK && !*ppExpr ){ rc = SQLITE_DONE; } + *pnConsumed = (int)(zInput - z) + 1 + nConsumed; + return rc; + }else if( *zInput==')' ){ + pParse->nNest--; + *pnConsumed = (int)((zInput - z) + 1); + *ppExpr = 0; + return SQLITE_DONE; + } + } + + /* If control flows to this point, this must be a regular token, or + ** the end of the input. Read a regular token using the sqlite3_tokenizer + ** interface. Before doing so, figure out if there is an explicit + ** column specifier for the token. + ** + ** TODO: Strangely, it is not possible to associate a column specifier + ** with a quoted phrase, only with a single token. Not sure if this was + ** an implementation artifact or an intentional decision when fts3 was + ** first implemented. Whichever it was, this module duplicates the + ** limitation. + */ + iCol = pParse->iDefaultCol; + iColLen = 0; + for(ii=0; iinCol; ii++){ + const char *zStr = pParse->azCol[ii]; + int nStr = (int)strlen(zStr); + if( nInput>nStr && zInput[nStr]==':' + && sqlite3_strnicmp(zStr, zInput, nStr)==0 + ){ + iCol = ii; + iColLen = (int)((zInput - z) + nStr + 1); + break; + } + } + rc = getNextToken(pParse, iCol, &z[iColLen], n-iColLen, ppExpr, pnConsumed); + *pnConsumed += iColLen; + return rc; +} + +/* +** The argument is an Fts3Expr structure for a binary operator (any type +** except an FTSQUERY_PHRASE). Return an integer value representing the +** precedence of the operator. Lower values have a higher precedence (i.e. +** group more tightly). For example, in the C language, the == operator +** groups more tightly than ||, and would therefore have a higher precedence. +** +** When using the new fts3 query syntax (when SQLITE_ENABLE_FTS3_PARENTHESIS +** is defined), the order of the operators in precedence from highest to +** lowest is: +** +** NEAR +** NOT +** AND (including implicit ANDs) +** OR +** +** Note that when using the old query syntax, the OR operator has a higher +** precedence than the AND operator. +*/ +static int opPrecedence(Fts3Expr *p){ + assert( p->eType!=FTSQUERY_PHRASE ); + if( sqlite3_fts3_enable_parentheses ){ + return p->eType; + }else if( p->eType==FTSQUERY_NEAR ){ + return 1; + }else if( p->eType==FTSQUERY_OR ){ + return 2; + } + assert( p->eType==FTSQUERY_AND ); + return 3; +} + +/* +** Argument ppHead contains a pointer to the current head of a query +** expression tree being parsed. pPrev is the expression node most recently +** inserted into the tree. This function adds pNew, which is always a binary +** operator node, into the expression tree based on the relative precedence +** of pNew and the existing nodes of the tree. This may result in the head +** of the tree changing, in which case *ppHead is set to the new root node. +*/ +static void insertBinaryOperator( + Fts3Expr **ppHead, /* Pointer to the root node of a tree */ + Fts3Expr *pPrev, /* Node most recently inserted into the tree */ + Fts3Expr *pNew /* New binary node to insert into expression tree */ +){ + Fts3Expr *pSplit = pPrev; + while( pSplit->pParent && opPrecedence(pSplit->pParent)<=opPrecedence(pNew) ){ + pSplit = pSplit->pParent; + } + + if( pSplit->pParent ){ + assert( pSplit->pParent->pRight==pSplit ); + pSplit->pParent->pRight = pNew; + pNew->pParent = pSplit->pParent; + }else{ + *ppHead = pNew; + } + pNew->pLeft = pSplit; + pSplit->pParent = pNew; +} + +/* +** Parse the fts3 query expression found in buffer z, length n. This function +** returns either when the end of the buffer is reached or an unmatched +** closing bracket - ')' - is encountered. +** +** If successful, SQLITE_OK is returned, *ppExpr is set to point to the +** parsed form of the expression and *pnConsumed is set to the number of +** bytes read from buffer z. Otherwise, *ppExpr is set to 0 and SQLITE_NOMEM +** (out of memory error) or SQLITE_ERROR (parse error) is returned. +*/ +static int fts3ExprParse( + ParseContext *pParse, /* fts3 query parse context */ + const char *z, int n, /* Text of MATCH query */ + Fts3Expr **ppExpr, /* OUT: Parsed query structure */ + int *pnConsumed /* OUT: Number of bytes consumed */ +){ + Fts3Expr *pRet = 0; + Fts3Expr *pPrev = 0; + Fts3Expr *pNotBranch = 0; /* Only used in legacy parse mode */ + int nIn = n; + const char *zIn = z; + int rc = SQLITE_OK; + int isRequirePhrase = 1; + + while( rc==SQLITE_OK ){ + Fts3Expr *p = 0; + int nByte = 0; + + rc = getNextNode(pParse, zIn, nIn, &p, &nByte); + assert( nByte>0 || (rc!=SQLITE_OK && p==0) ); + if( rc==SQLITE_OK ){ + if( p ){ + int isPhrase; + + if( !sqlite3_fts3_enable_parentheses + && p->eType==FTSQUERY_PHRASE && pParse->isNot + ){ + /* Create an implicit NOT operator. */ + Fts3Expr *pNot = fts3MallocZero(sizeof(Fts3Expr)); + if( !pNot ){ + sqlite3Fts3ExprFree(p); + rc = SQLITE_NOMEM; + goto exprparse_out; + } + pNot->eType = FTSQUERY_NOT; + pNot->pRight = p; + p->pParent = pNot; + if( pNotBranch ){ + pNot->pLeft = pNotBranch; + pNotBranch->pParent = pNot; + } + pNotBranch = pNot; + p = pPrev; + }else{ + int eType = p->eType; + isPhrase = (eType==FTSQUERY_PHRASE || p->pLeft); + + /* The isRequirePhrase variable is set to true if a phrase or + ** an expression contained in parenthesis is required. If a + ** binary operator (AND, OR, NOT or NEAR) is encounted when + ** isRequirePhrase is set, this is a syntax error. + */ + if( !isPhrase && isRequirePhrase ){ + sqlite3Fts3ExprFree(p); + rc = SQLITE_ERROR; + goto exprparse_out; + } + + if( isPhrase && !isRequirePhrase ){ + /* Insert an implicit AND operator. */ + Fts3Expr *pAnd; + assert( pRet && pPrev ); + pAnd = fts3MallocZero(sizeof(Fts3Expr)); + if( !pAnd ){ + sqlite3Fts3ExprFree(p); + rc = SQLITE_NOMEM; + goto exprparse_out; + } + pAnd->eType = FTSQUERY_AND; + insertBinaryOperator(&pRet, pPrev, pAnd); + pPrev = pAnd; + } + + /* This test catches attempts to make either operand of a NEAR + ** operator something other than a phrase. For example, either of + ** the following: + ** + ** (bracketed expression) NEAR phrase + ** phrase NEAR (bracketed expression) + ** + ** Return an error in either case. + */ + if( pPrev && ( + (eType==FTSQUERY_NEAR && !isPhrase && pPrev->eType!=FTSQUERY_PHRASE) + || (eType!=FTSQUERY_PHRASE && isPhrase && pPrev->eType==FTSQUERY_NEAR) + )){ + sqlite3Fts3ExprFree(p); + rc = SQLITE_ERROR; + goto exprparse_out; + } + + if( isPhrase ){ + if( pRet ){ + assert( pPrev && pPrev->pLeft && pPrev->pRight==0 ); + pPrev->pRight = p; + p->pParent = pPrev; + }else{ + pRet = p; + } + }else{ + insertBinaryOperator(&pRet, pPrev, p); + } + isRequirePhrase = !isPhrase; + } + pPrev = p; + } + assert( nByte>0 ); + } + assert( rc!=SQLITE_OK || (nByte>0 && nByte<=nIn) ); + nIn -= nByte; + zIn += nByte; + } + + if( rc==SQLITE_DONE && pRet && isRequirePhrase ){ + rc = SQLITE_ERROR; + } + + if( rc==SQLITE_DONE ){ + rc = SQLITE_OK; + if( !sqlite3_fts3_enable_parentheses && pNotBranch ){ + if( !pRet ){ + rc = SQLITE_ERROR; + }else{ + Fts3Expr *pIter = pNotBranch; + while( pIter->pLeft ){ + pIter = pIter->pLeft; + } + pIter->pLeft = pRet; + pRet->pParent = pIter; + pRet = pNotBranch; + } + } + } + *pnConsumed = n - nIn; + +exprparse_out: + if( rc!=SQLITE_OK ){ + sqlite3Fts3ExprFree(pRet); + sqlite3Fts3ExprFree(pNotBranch); + pRet = 0; + } + *ppExpr = pRet; + return rc; +} + +/* +** Return SQLITE_ERROR if the maximum depth of the expression tree passed +** as the only argument is more than nMaxDepth. +*/ +static int fts3ExprCheckDepth(Fts3Expr *p, int nMaxDepth){ + int rc = SQLITE_OK; + if( p ){ + if( nMaxDepth<0 ){ + rc = SQLITE_TOOBIG; + }else{ + rc = fts3ExprCheckDepth(p->pLeft, nMaxDepth-1); + if( rc==SQLITE_OK ){ + rc = fts3ExprCheckDepth(p->pRight, nMaxDepth-1); + } + } + } + return rc; +} + +/* +** This function attempts to transform the expression tree at (*pp) to +** an equivalent but more balanced form. The tree is modified in place. +** If successful, SQLITE_OK is returned and (*pp) set to point to the +** new root expression node. +** +** nMaxDepth is the maximum allowable depth of the balanced sub-tree. +** +** Otherwise, if an error occurs, an SQLite error code is returned and +** expression (*pp) freed. +*/ +static int fts3ExprBalance(Fts3Expr **pp, int nMaxDepth){ + int rc = SQLITE_OK; /* Return code */ + Fts3Expr *pRoot = *pp; /* Initial root node */ + Fts3Expr *pFree = 0; /* List of free nodes. Linked by pParent. */ + int eType = pRoot->eType; /* Type of node in this tree */ + + if( nMaxDepth==0 ){ + rc = SQLITE_ERROR; + } + + if( rc==SQLITE_OK && (eType==FTSQUERY_AND || eType==FTSQUERY_OR) ){ + Fts3Expr **apLeaf; + apLeaf = (Fts3Expr **)sqlite3_malloc(sizeof(Fts3Expr *) * nMaxDepth); + if( 0==apLeaf ){ + rc = SQLITE_NOMEM; + }else{ + memset(apLeaf, 0, sizeof(Fts3Expr *) * nMaxDepth); + } + + if( rc==SQLITE_OK ){ + int i; + Fts3Expr *p; + + /* Set $p to point to the left-most leaf in the tree of eType nodes. */ + for(p=pRoot; p->eType==eType; p=p->pLeft){ + assert( p->pParent==0 || p->pParent->pLeft==p ); + assert( p->pLeft && p->pRight ); + } + + /* This loop runs once for each leaf in the tree of eType nodes. */ + while( 1 ){ + int iLvl; + Fts3Expr *pParent = p->pParent; /* Current parent of p */ + + assert( pParent==0 || pParent->pLeft==p ); + p->pParent = 0; + if( pParent ){ + pParent->pLeft = 0; + }else{ + pRoot = 0; + } + rc = fts3ExprBalance(&p, nMaxDepth-1); + if( rc!=SQLITE_OK ) break; + + for(iLvl=0; p && iLvlpLeft = apLeaf[iLvl]; + pFree->pRight = p; + pFree->pLeft->pParent = pFree; + pFree->pRight->pParent = pFree; + + p = pFree; + pFree = pFree->pParent; + p->pParent = 0; + apLeaf[iLvl] = 0; + } + } + if( p ){ + sqlite3Fts3ExprFree(p); + rc = SQLITE_TOOBIG; + break; + } + + /* If that was the last leaf node, break out of the loop */ + if( pParent==0 ) break; + + /* Set $p to point to the next leaf in the tree of eType nodes */ + for(p=pParent->pRight; p->eType==eType; p=p->pLeft); + + /* Remove pParent from the original tree. */ + assert( pParent->pParent==0 || pParent->pParent->pLeft==pParent ); + pParent->pRight->pParent = pParent->pParent; + if( pParent->pParent ){ + pParent->pParent->pLeft = pParent->pRight; + }else{ + assert( pParent==pRoot ); + pRoot = pParent->pRight; + } + + /* Link pParent into the free node list. It will be used as an + ** internal node of the new tree. */ + pParent->pParent = pFree; + pFree = pParent; + } + + if( rc==SQLITE_OK ){ + p = 0; + for(i=0; ipParent = 0; + }else{ + assert( pFree!=0 ); + pFree->pRight = p; + pFree->pLeft = apLeaf[i]; + pFree->pLeft->pParent = pFree; + pFree->pRight->pParent = pFree; + + p = pFree; + pFree = pFree->pParent; + p->pParent = 0; + } + } + } + pRoot = p; + }else{ + /* An error occurred. Delete the contents of the apLeaf[] array + ** and pFree list. Everything else is cleaned up by the call to + ** sqlite3Fts3ExprFree(pRoot) below. */ + Fts3Expr *pDel; + for(i=0; ipParent; + sqlite3_free(pDel); + } + } + + assert( pFree==0 ); + sqlite3_free( apLeaf ); + } + } + + if( rc!=SQLITE_OK ){ + sqlite3Fts3ExprFree(pRoot); + pRoot = 0; + } + *pp = pRoot; + return rc; +} + +/* +** This function is similar to sqlite3Fts3ExprParse(), with the following +** differences: +** +** 1. It does not do expression rebalancing. +** 2. It does not check that the expression does not exceed the +** maximum allowable depth. +** 3. Even if it fails, *ppExpr may still be set to point to an +** expression tree. It should be deleted using sqlite3Fts3ExprFree() +** in this case. +*/ +static int fts3ExprParseUnbalanced( + sqlite3_tokenizer *pTokenizer, /* Tokenizer module */ + int iLangid, /* Language id for tokenizer */ + char **azCol, /* Array of column names for fts3 table */ + int bFts4, /* True to allow FTS4-only syntax */ + int nCol, /* Number of entries in azCol[] */ + int iDefaultCol, /* Default column to query */ + const char *z, int n, /* Text of MATCH query */ + Fts3Expr **ppExpr /* OUT: Parsed query structure */ +){ + int nParsed; + int rc; + ParseContext sParse; + + memset(&sParse, 0, sizeof(ParseContext)); + sParse.pTokenizer = pTokenizer; + sParse.iLangid = iLangid; + sParse.azCol = (const char **)azCol; + sParse.nCol = nCol; + sParse.iDefaultCol = iDefaultCol; + sParse.bFts4 = bFts4; + if( z==0 ){ + *ppExpr = 0; + return SQLITE_OK; + } + if( n<0 ){ + n = (int)strlen(z); + } + rc = fts3ExprParse(&sParse, z, n, ppExpr, &nParsed); + assert( rc==SQLITE_OK || *ppExpr==0 ); + + /* Check for mismatched parenthesis */ + if( rc==SQLITE_OK && sParse.nNest ){ + rc = SQLITE_ERROR; + } + + return rc; +} + +/* +** Parameters z and n contain a pointer to and length of a buffer containing +** an fts3 query expression, respectively. This function attempts to parse the +** query expression and create a tree of Fts3Expr structures representing the +** parsed expression. If successful, *ppExpr is set to point to the head +** of the parsed expression tree and SQLITE_OK is returned. If an error +** occurs, either SQLITE_NOMEM (out-of-memory error) or SQLITE_ERROR (parse +** error) is returned and *ppExpr is set to 0. +** +** If parameter n is a negative number, then z is assumed to point to a +** nul-terminated string and the length is determined using strlen(). +** +** The first parameter, pTokenizer, is passed the fts3 tokenizer module to +** use to normalize query tokens while parsing the expression. The azCol[] +** array, which is assumed to contain nCol entries, should contain the names +** of each column in the target fts3 table, in order from left to right. +** Column names must be nul-terminated strings. +** +** The iDefaultCol parameter should be passed the index of the table column +** that appears on the left-hand-side of the MATCH operator (the default +** column to match against for tokens for which a column name is not explicitly +** specified as part of the query string), or -1 if tokens may by default +** match any table column. +*/ +SQLITE_PRIVATE int sqlite3Fts3ExprParse( + sqlite3_tokenizer *pTokenizer, /* Tokenizer module */ + int iLangid, /* Language id for tokenizer */ + char **azCol, /* Array of column names for fts3 table */ + int bFts4, /* True to allow FTS4-only syntax */ + int nCol, /* Number of entries in azCol[] */ + int iDefaultCol, /* Default column to query */ + const char *z, int n, /* Text of MATCH query */ + Fts3Expr **ppExpr, /* OUT: Parsed query structure */ + char **pzErr /* OUT: Error message (sqlite3_malloc) */ +){ + int rc = fts3ExprParseUnbalanced( + pTokenizer, iLangid, azCol, bFts4, nCol, iDefaultCol, z, n, ppExpr + ); + + /* Rebalance the expression. And check that its depth does not exceed + ** SQLITE_FTS3_MAX_EXPR_DEPTH. */ + if( rc==SQLITE_OK && *ppExpr ){ + rc = fts3ExprBalance(ppExpr, SQLITE_FTS3_MAX_EXPR_DEPTH); + if( rc==SQLITE_OK ){ + rc = fts3ExprCheckDepth(*ppExpr, SQLITE_FTS3_MAX_EXPR_DEPTH); + } + } + + if( rc!=SQLITE_OK ){ + sqlite3Fts3ExprFree(*ppExpr); + *ppExpr = 0; + if( rc==SQLITE_TOOBIG ){ + *pzErr = sqlite3_mprintf( + "FTS expression tree is too large (maximum depth %d)", + SQLITE_FTS3_MAX_EXPR_DEPTH + ); + rc = SQLITE_ERROR; + }else if( rc==SQLITE_ERROR ){ + *pzErr = sqlite3_mprintf("malformed MATCH expression: [%s]", z); + } + } + + return rc; +} + +/* +** Free a single node of an expression tree. +*/ +static void fts3FreeExprNode(Fts3Expr *p){ + assert( p->eType==FTSQUERY_PHRASE || p->pPhrase==0 ); + sqlite3Fts3EvalPhraseCleanup(p->pPhrase); + sqlite3_free(p->aMI); + sqlite3_free(p); +} + +/* +** Free a parsed fts3 query expression allocated by sqlite3Fts3ExprParse(). +** +** This function would be simpler if it recursively called itself. But +** that would mean passing a sufficiently large expression to ExprParse() +** could cause a stack overflow. +*/ +SQLITE_PRIVATE void sqlite3Fts3ExprFree(Fts3Expr *pDel){ + Fts3Expr *p; + assert( pDel==0 || pDel->pParent==0 ); + for(p=pDel; p && (p->pLeft||p->pRight); p=(p->pLeft ? p->pLeft : p->pRight)){ + assert( p->pParent==0 || p==p->pParent->pRight || p==p->pParent->pLeft ); + } + while( p ){ + Fts3Expr *pParent = p->pParent; + fts3FreeExprNode(p); + if( pParent && p==pParent->pLeft && pParent->pRight ){ + p = pParent->pRight; + while( p && (p->pLeft || p->pRight) ){ + assert( p==p->pParent->pRight || p==p->pParent->pLeft ); + p = (p->pLeft ? p->pLeft : p->pRight); + } + }else{ + p = pParent; + } + } +} + +/**************************************************************************** +***************************************************************************** +** Everything after this point is just test code. +*/ + +#ifdef SQLITE_TEST + +/* #include */ + +/* +** Function to query the hash-table of tokenizers (see README.tokenizers). +*/ +static int queryTestTokenizer( + sqlite3 *db, + const char *zName, + const sqlite3_tokenizer_module **pp +){ + int rc; + sqlite3_stmt *pStmt; + const char zSql[] = "SELECT fts3_tokenizer(?)"; + + *pp = 0; + rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); + if( rc!=SQLITE_OK ){ + return rc; + } + + sqlite3_bind_text(pStmt, 1, zName, -1, SQLITE_STATIC); + if( SQLITE_ROW==sqlite3_step(pStmt) ){ + if( sqlite3_column_type(pStmt, 0)==SQLITE_BLOB ){ + memcpy((void *)pp, sqlite3_column_blob(pStmt, 0), sizeof(*pp)); + } + } + + return sqlite3_finalize(pStmt); +} + +/* +** Return a pointer to a buffer containing a text representation of the +** expression passed as the first argument. The buffer is obtained from +** sqlite3_malloc(). It is the responsibility of the caller to use +** sqlite3_free() to release the memory. If an OOM condition is encountered, +** NULL is returned. +** +** If the second argument is not NULL, then its contents are prepended to +** the returned expression text and then freed using sqlite3_free(). +*/ +static char *exprToString(Fts3Expr *pExpr, char *zBuf){ + if( pExpr==0 ){ + return sqlite3_mprintf(""); + } + switch( pExpr->eType ){ + case FTSQUERY_PHRASE: { + Fts3Phrase *pPhrase = pExpr->pPhrase; + int i; + zBuf = sqlite3_mprintf( + "%zPHRASE %d 0", zBuf, pPhrase->iColumn); + for(i=0; zBuf && inToken; i++){ + zBuf = sqlite3_mprintf("%z %.*s%s", zBuf, + pPhrase->aToken[i].n, pPhrase->aToken[i].z, + (pPhrase->aToken[i].isPrefix?"+":"") + ); + } + return zBuf; + } + + case FTSQUERY_NEAR: + zBuf = sqlite3_mprintf("%zNEAR/%d ", zBuf, pExpr->nNear); + break; + case FTSQUERY_NOT: + zBuf = sqlite3_mprintf("%zNOT ", zBuf); + break; + case FTSQUERY_AND: + zBuf = sqlite3_mprintf("%zAND ", zBuf); + break; + case FTSQUERY_OR: + zBuf = sqlite3_mprintf("%zOR ", zBuf); + break; + } + + if( zBuf ) zBuf = sqlite3_mprintf("%z{", zBuf); + if( zBuf ) zBuf = exprToString(pExpr->pLeft, zBuf); + if( zBuf ) zBuf = sqlite3_mprintf("%z} {", zBuf); + + if( zBuf ) zBuf = exprToString(pExpr->pRight, zBuf); + if( zBuf ) zBuf = sqlite3_mprintf("%z}", zBuf); + + return zBuf; +} + +/* +** This is the implementation of a scalar SQL function used to test the +** expression parser. It should be called as follows: +** +** fts3_exprtest(, , , ...); +** +** The first argument, , is the name of the fts3 tokenizer used +** to parse the query expression (see README.tokenizers). The second argument +** is the query expression to parse. Each subsequent argument is the name +** of a column of the fts3 table that the query expression may refer to. +** For example: +** +** SELECT fts3_exprtest('simple', 'Bill col2:Bloggs', 'col1', 'col2'); +*/ +static void fts3ExprTest( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + sqlite3_tokenizer_module const *pModule = 0; + sqlite3_tokenizer *pTokenizer = 0; + int rc; + char **azCol = 0; + const char *zExpr; + int nExpr; + int nCol; + int ii; + Fts3Expr *pExpr; + char *zBuf = 0; + sqlite3 *db = sqlite3_context_db_handle(context); + + if( argc<3 ){ + sqlite3_result_error(context, + "Usage: fts3_exprtest(tokenizer, expr, col1, ...", -1 + ); + return; + } + + rc = queryTestTokenizer(db, + (const char *)sqlite3_value_text(argv[0]), &pModule); + if( rc==SQLITE_NOMEM ){ + sqlite3_result_error_nomem(context); + goto exprtest_out; + }else if( !pModule ){ + sqlite3_result_error(context, "No such tokenizer module", -1); + goto exprtest_out; + } + + rc = pModule->xCreate(0, 0, &pTokenizer); + assert( rc==SQLITE_NOMEM || rc==SQLITE_OK ); + if( rc==SQLITE_NOMEM ){ + sqlite3_result_error_nomem(context); + goto exprtest_out; + } + pTokenizer->pModule = pModule; + + zExpr = (const char *)sqlite3_value_text(argv[1]); + nExpr = sqlite3_value_bytes(argv[1]); + nCol = argc-2; + azCol = (char **)sqlite3_malloc(nCol*sizeof(char *)); + if( !azCol ){ + sqlite3_result_error_nomem(context); + goto exprtest_out; + } + for(ii=0; iixDestroy(pTokenizer); + } + sqlite3_free(azCol); +} + +/* +** Register the query expression parser test function fts3_exprtest() +** with database connection db. +*/ +SQLITE_PRIVATE int sqlite3Fts3ExprInitTestInterface(sqlite3* db){ + int rc = sqlite3_create_function( + db, "fts3_exprtest", -1, SQLITE_UTF8, 0, fts3ExprTest, 0, 0 + ); + if( rc==SQLITE_OK ){ + rc = sqlite3_create_function(db, "fts3_exprtest_rebalance", + -1, SQLITE_UTF8, (void *)1, fts3ExprTest, 0, 0 + ); + } + return rc; +} + +#endif +#endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ + +/************** End of fts3_expr.c *******************************************/ +/************** Begin file fts3_hash.c ***************************************/ +/* +** 2001 September 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This is the implementation of generic hash-tables used in SQLite. +** We've modified it slightly to serve as a standalone hash table +** implementation for the full-text indexing module. +*/ + +/* +** The code in this file is only compiled if: +** +** * The FTS3 module is being built as an extension +** (in which case SQLITE_CORE is not defined), or +** +** * The FTS3 module is being built into the core of +** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). +*/ +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* #include */ +/* #include */ +/* #include */ + + +/* +** Malloc and Free functions +*/ +static void *fts3HashMalloc(int n){ + void *p = sqlite3_malloc(n); + if( p ){ + memset(p, 0, n); + } + return p; +} +static void fts3HashFree(void *p){ + sqlite3_free(p); +} + +/* Turn bulk memory into a hash table object by initializing the +** fields of the Hash structure. +** +** "pNew" is a pointer to the hash table that is to be initialized. +** keyClass is one of the constants +** FTS3_HASH_BINARY or FTS3_HASH_STRING. The value of keyClass +** determines what kind of key the hash table will use. "copyKey" is +** true if the hash table should make its own private copy of keys and +** false if it should just use the supplied pointer. +*/ +SQLITE_PRIVATE void sqlite3Fts3HashInit(Fts3Hash *pNew, char keyClass, char copyKey){ + assert( pNew!=0 ); + assert( keyClass>=FTS3_HASH_STRING && keyClass<=FTS3_HASH_BINARY ); + pNew->keyClass = keyClass; + pNew->copyKey = copyKey; + pNew->first = 0; + pNew->count = 0; + pNew->htsize = 0; + pNew->ht = 0; +} + +/* Remove all entries from a hash table. Reclaim all memory. +** Call this routine to delete a hash table or to reset a hash table +** to the empty state. +*/ +SQLITE_PRIVATE void sqlite3Fts3HashClear(Fts3Hash *pH){ + Fts3HashElem *elem; /* For looping over all elements of the table */ + + assert( pH!=0 ); + elem = pH->first; + pH->first = 0; + fts3HashFree(pH->ht); + pH->ht = 0; + pH->htsize = 0; + while( elem ){ + Fts3HashElem *next_elem = elem->next; + if( pH->copyKey && elem->pKey ){ + fts3HashFree(elem->pKey); + } + fts3HashFree(elem); + elem = next_elem; + } + pH->count = 0; +} + +/* +** Hash and comparison functions when the mode is FTS3_HASH_STRING +*/ +static int fts3StrHash(const void *pKey, int nKey){ + const char *z = (const char *)pKey; + unsigned h = 0; + if( nKey<=0 ) nKey = (int) strlen(z); + while( nKey > 0 ){ + h = (h<<3) ^ h ^ *z++; + nKey--; + } + return (int)(h & 0x7fffffff); +} +static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){ + if( n1!=n2 ) return 1; + return strncmp((const char*)pKey1,(const char*)pKey2,n1); +} + +/* +** Hash and comparison functions when the mode is FTS3_HASH_BINARY +*/ +static int fts3BinHash(const void *pKey, int nKey){ + int h = 0; + const char *z = (const char *)pKey; + while( nKey-- > 0 ){ + h = (h<<3) ^ h ^ *(z++); + } + return h & 0x7fffffff; +} +static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){ + if( n1!=n2 ) return 1; + return memcmp(pKey1,pKey2,n1); +} + +/* +** Return a pointer to the appropriate hash function given the key class. +** +** The C syntax in this function definition may be unfamilar to some +** programmers, so we provide the following additional explanation: +** +** The name of the function is "ftsHashFunction". The function takes a +** single parameter "keyClass". The return value of ftsHashFunction() +** is a pointer to another function. Specifically, the return value +** of ftsHashFunction() is a pointer to a function that takes two parameters +** with types "const void*" and "int" and returns an "int". +*/ +static int (*ftsHashFunction(int keyClass))(const void*,int){ + if( keyClass==FTS3_HASH_STRING ){ + return &fts3StrHash; + }else{ + assert( keyClass==FTS3_HASH_BINARY ); + return &fts3BinHash; + } +} + +/* +** Return a pointer to the appropriate hash function given the key class. +** +** For help in interpreted the obscure C code in the function definition, +** see the header comment on the previous function. +*/ +static int (*ftsCompareFunction(int keyClass))(const void*,int,const void*,int){ + if( keyClass==FTS3_HASH_STRING ){ + return &fts3StrCompare; + }else{ + assert( keyClass==FTS3_HASH_BINARY ); + return &fts3BinCompare; + } +} + +/* Link an element into the hash table +*/ +static void fts3HashInsertElement( + Fts3Hash *pH, /* The complete hash table */ + struct _fts3ht *pEntry, /* The entry into which pNew is inserted */ + Fts3HashElem *pNew /* The element to be inserted */ +){ + Fts3HashElem *pHead; /* First element already in pEntry */ + pHead = pEntry->chain; + if( pHead ){ + pNew->next = pHead; + pNew->prev = pHead->prev; + if( pHead->prev ){ pHead->prev->next = pNew; } + else { pH->first = pNew; } + pHead->prev = pNew; + }else{ + pNew->next = pH->first; + if( pH->first ){ pH->first->prev = pNew; } + pNew->prev = 0; + pH->first = pNew; + } + pEntry->count++; + pEntry->chain = pNew; +} + + +/* Resize the hash table so that it cantains "new_size" buckets. +** "new_size" must be a power of 2. The hash table might fail +** to resize if sqliteMalloc() fails. +** +** Return non-zero if a memory allocation error occurs. +*/ +static int fts3Rehash(Fts3Hash *pH, int new_size){ + struct _fts3ht *new_ht; /* The new hash table */ + Fts3HashElem *elem, *next_elem; /* For looping over existing elements */ + int (*xHash)(const void*,int); /* The hash function */ + + assert( (new_size & (new_size-1))==0 ); + new_ht = (struct _fts3ht *)fts3HashMalloc( new_size*sizeof(struct _fts3ht) ); + if( new_ht==0 ) return 1; + fts3HashFree(pH->ht); + pH->ht = new_ht; + pH->htsize = new_size; + xHash = ftsHashFunction(pH->keyClass); + for(elem=pH->first, pH->first=0; elem; elem = next_elem){ + int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); + next_elem = elem->next; + fts3HashInsertElement(pH, &new_ht[h], elem); + } + return 0; +} + +/* This function (for internal use only) locates an element in an +** hash table that matches the given key. The hash for this key has +** already been computed and is passed as the 4th parameter. +*/ +static Fts3HashElem *fts3FindElementByHash( + const Fts3Hash *pH, /* The pH to be searched */ + const void *pKey, /* The key we are searching for */ + int nKey, + int h /* The hash for this key. */ +){ + Fts3HashElem *elem; /* Used to loop thru the element list */ + int count; /* Number of elements left to test */ + int (*xCompare)(const void*,int,const void*,int); /* comparison function */ + + if( pH->ht ){ + struct _fts3ht *pEntry = &pH->ht[h]; + elem = pEntry->chain; + count = pEntry->count; + xCompare = ftsCompareFunction(pH->keyClass); + while( count-- && elem ){ + if( (*xCompare)(elem->pKey,elem->nKey,pKey,nKey)==0 ){ + return elem; + } + elem = elem->next; + } + } + return 0; +} + +/* Remove a single entry from the hash table given a pointer to that +** element and a hash on the element's key. +*/ +static void fts3RemoveElementByHash( + Fts3Hash *pH, /* The pH containing "elem" */ + Fts3HashElem* elem, /* The element to be removed from the pH */ + int h /* Hash value for the element */ +){ + struct _fts3ht *pEntry; + if( elem->prev ){ + elem->prev->next = elem->next; + }else{ + pH->first = elem->next; + } + if( elem->next ){ + elem->next->prev = elem->prev; + } + pEntry = &pH->ht[h]; + if( pEntry->chain==elem ){ + pEntry->chain = elem->next; + } + pEntry->count--; + if( pEntry->count<=0 ){ + pEntry->chain = 0; + } + if( pH->copyKey && elem->pKey ){ + fts3HashFree(elem->pKey); + } + fts3HashFree( elem ); + pH->count--; + if( pH->count<=0 ){ + assert( pH->first==0 ); + assert( pH->count==0 ); + fts3HashClear(pH); + } +} + +SQLITE_PRIVATE Fts3HashElem *sqlite3Fts3HashFindElem( + const Fts3Hash *pH, + const void *pKey, + int nKey +){ + int h; /* A hash on key */ + int (*xHash)(const void*,int); /* The hash function */ + + if( pH==0 || pH->ht==0 ) return 0; + xHash = ftsHashFunction(pH->keyClass); + assert( xHash!=0 ); + h = (*xHash)(pKey,nKey); + assert( (pH->htsize & (pH->htsize-1))==0 ); + return fts3FindElementByHash(pH,pKey,nKey, h & (pH->htsize-1)); +} + +/* +** Attempt to locate an element of the hash table pH with a key +** that matches pKey,nKey. Return the data for this element if it is +** found, or NULL if there is no match. +*/ +SQLITE_PRIVATE void *sqlite3Fts3HashFind(const Fts3Hash *pH, const void *pKey, int nKey){ + Fts3HashElem *pElem; /* The element that matches key (if any) */ + + pElem = sqlite3Fts3HashFindElem(pH, pKey, nKey); + return pElem ? pElem->data : 0; +} + +/* Insert an element into the hash table pH. The key is pKey,nKey +** and the data is "data". +** +** If no element exists with a matching key, then a new +** element is created. A copy of the key is made if the copyKey +** flag is set. NULL is returned. +** +** If another element already exists with the same key, then the +** new data replaces the old data and the old data is returned. +** The key is not copied in this instance. If a malloc fails, then +** the new data is returned and the hash table is unchanged. +** +** If the "data" parameter to this function is NULL, then the +** element corresponding to "key" is removed from the hash table. +*/ +SQLITE_PRIVATE void *sqlite3Fts3HashInsert( + Fts3Hash *pH, /* The hash table to insert into */ + const void *pKey, /* The key */ + int nKey, /* Number of bytes in the key */ + void *data /* The data */ +){ + int hraw; /* Raw hash value of the key */ + int h; /* the hash of the key modulo hash table size */ + Fts3HashElem *elem; /* Used to loop thru the element list */ + Fts3HashElem *new_elem; /* New element added to the pH */ + int (*xHash)(const void*,int); /* The hash function */ + + assert( pH!=0 ); + xHash = ftsHashFunction(pH->keyClass); + assert( xHash!=0 ); + hraw = (*xHash)(pKey, nKey); + assert( (pH->htsize & (pH->htsize-1))==0 ); + h = hraw & (pH->htsize-1); + elem = fts3FindElementByHash(pH,pKey,nKey,h); + if( elem ){ + void *old_data = elem->data; + if( data==0 ){ + fts3RemoveElementByHash(pH,elem,h); + }else{ + elem->data = data; + } + return old_data; + } + if( data==0 ) return 0; + if( (pH->htsize==0 && fts3Rehash(pH,8)) + || (pH->count>=pH->htsize && fts3Rehash(pH, pH->htsize*2)) + ){ + pH->count = 0; + return data; + } + assert( pH->htsize>0 ); + new_elem = (Fts3HashElem*)fts3HashMalloc( sizeof(Fts3HashElem) ); + if( new_elem==0 ) return data; + if( pH->copyKey && pKey!=0 ){ + new_elem->pKey = fts3HashMalloc( nKey ); + if( new_elem->pKey==0 ){ + fts3HashFree(new_elem); + return data; + } + memcpy((void*)new_elem->pKey, pKey, nKey); + }else{ + new_elem->pKey = (void*)pKey; + } + new_elem->nKey = nKey; + pH->count++; + assert( pH->htsize>0 ); + assert( (pH->htsize & (pH->htsize-1))==0 ); + h = hraw & (pH->htsize-1); + fts3HashInsertElement(pH, &pH->ht[h], new_elem); + new_elem->data = data; + return 0; +} + +#endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ + +/************** End of fts3_hash.c *******************************************/ +/************** Begin file fts3_porter.c *************************************/ +/* +** 2006 September 30 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** Implementation of the full-text-search tokenizer that implements +** a Porter stemmer. +*/ + +/* +** The code in this file is only compiled if: +** +** * The FTS3 module is being built as an extension +** (in which case SQLITE_CORE is not defined), or +** +** * The FTS3 module is being built into the core of +** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). +*/ +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* #include */ +/* #include */ +/* #include */ +/* #include */ + + +/* +** Class derived from sqlite3_tokenizer +*/ +typedef struct porter_tokenizer { + sqlite3_tokenizer base; /* Base class */ +} porter_tokenizer; + +/* +** Class derived from sqlite3_tokenizer_cursor +*/ +typedef struct porter_tokenizer_cursor { + sqlite3_tokenizer_cursor base; + const char *zInput; /* input we are tokenizing */ + int nInput; /* size of the input */ + int iOffset; /* current position in zInput */ + int iToken; /* index of next token to be returned */ + char *zToken; /* storage for current token */ + int nAllocated; /* space allocated to zToken buffer */ +} porter_tokenizer_cursor; + + +/* +** Create a new tokenizer instance. +*/ +static int porterCreate( + int argc, const char * const *argv, + sqlite3_tokenizer **ppTokenizer +){ + porter_tokenizer *t; + + UNUSED_PARAMETER(argc); + UNUSED_PARAMETER(argv); + + t = (porter_tokenizer *) sqlite3_malloc(sizeof(*t)); + if( t==NULL ) return SQLITE_NOMEM; + memset(t, 0, sizeof(*t)); + *ppTokenizer = &t->base; + return SQLITE_OK; +} + +/* +** Destroy a tokenizer +*/ +static int porterDestroy(sqlite3_tokenizer *pTokenizer){ + sqlite3_free(pTokenizer); + return SQLITE_OK; +} + +/* +** Prepare to begin tokenizing a particular string. The input +** string to be tokenized is zInput[0..nInput-1]. A cursor +** used to incrementally tokenize this string is returned in +** *ppCursor. +*/ +static int porterOpen( + sqlite3_tokenizer *pTokenizer, /* The tokenizer */ + const char *zInput, int nInput, /* String to be tokenized */ + sqlite3_tokenizer_cursor **ppCursor /* OUT: Tokenization cursor */ +){ + porter_tokenizer_cursor *c; + + UNUSED_PARAMETER(pTokenizer); + + c = (porter_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); + if( c==NULL ) return SQLITE_NOMEM; + + c->zInput = zInput; + if( zInput==0 ){ + c->nInput = 0; + }else if( nInput<0 ){ + c->nInput = (int)strlen(zInput); + }else{ + c->nInput = nInput; + } + c->iOffset = 0; /* start tokenizing at the beginning */ + c->iToken = 0; + c->zToken = NULL; /* no space allocated, yet. */ + c->nAllocated = 0; + + *ppCursor = &c->base; + return SQLITE_OK; +} + +/* +** Close a tokenization cursor previously opened by a call to +** porterOpen() above. +*/ +static int porterClose(sqlite3_tokenizer_cursor *pCursor){ + porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; + sqlite3_free(c->zToken); + sqlite3_free(c); + return SQLITE_OK; +} +/* +** Vowel or consonant +*/ +static const char cType[] = { + 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, + 1, 1, 1, 2, 1 +}; + +/* +** isConsonant() and isVowel() determine if their first character in +** the string they point to is a consonant or a vowel, according +** to Porter ruls. +** +** A consonate is any letter other than 'a', 'e', 'i', 'o', or 'u'. +** 'Y' is a consonant unless it follows another consonant, +** in which case it is a vowel. +** +** In these routine, the letters are in reverse order. So the 'y' rule +** is that 'y' is a consonant unless it is followed by another +** consonent. +*/ +static int isVowel(const char*); +static int isConsonant(const char *z){ + int j; + char x = *z; + if( x==0 ) return 0; + assert( x>='a' && x<='z' ); + j = cType[x-'a']; + if( j<2 ) return j; + return z[1]==0 || isVowel(z + 1); +} +static int isVowel(const char *z){ + int j; + char x = *z; + if( x==0 ) return 0; + assert( x>='a' && x<='z' ); + j = cType[x-'a']; + if( j<2 ) return 1-j; + return isConsonant(z + 1); +} + +/* +** Let any sequence of one or more vowels be represented by V and let +** C be sequence of one or more consonants. Then every word can be +** represented as: +** +** [C] (VC){m} [V] +** +** In prose: A word is an optional consonant followed by zero or +** vowel-consonant pairs followed by an optional vowel. "m" is the +** number of vowel consonant pairs. This routine computes the value +** of m for the first i bytes of a word. +** +** Return true if the m-value for z is 1 or more. In other words, +** return true if z contains at least one vowel that is followed +** by a consonant. +** +** In this routine z[] is in reverse order. So we are really looking +** for an instance of of a consonant followed by a vowel. +*/ +static int m_gt_0(const char *z){ + while( isVowel(z) ){ z++; } + if( *z==0 ) return 0; + while( isConsonant(z) ){ z++; } + return *z!=0; +} + +/* Like mgt0 above except we are looking for a value of m which is +** exactly 1 +*/ +static int m_eq_1(const char *z){ + while( isVowel(z) ){ z++; } + if( *z==0 ) return 0; + while( isConsonant(z) ){ z++; } + if( *z==0 ) return 0; + while( isVowel(z) ){ z++; } + if( *z==0 ) return 1; + while( isConsonant(z) ){ z++; } + return *z==0; +} + +/* Like mgt0 above except we are looking for a value of m>1 instead +** or m>0 +*/ +static int m_gt_1(const char *z){ + while( isVowel(z) ){ z++; } + if( *z==0 ) return 0; + while( isConsonant(z) ){ z++; } + if( *z==0 ) return 0; + while( isVowel(z) ){ z++; } + if( *z==0 ) return 0; + while( isConsonant(z) ){ z++; } + return *z!=0; +} + +/* +** Return TRUE if there is a vowel anywhere within z[0..n-1] +*/ +static int hasVowel(const char *z){ + while( isConsonant(z) ){ z++; } + return *z!=0; +} + +/* +** Return TRUE if the word ends in a double consonant. +** +** The text is reversed here. So we are really looking at +** the first two characters of z[]. +*/ +static int doubleConsonant(const char *z){ + return isConsonant(z) && z[0]==z[1]; +} + +/* +** Return TRUE if the word ends with three letters which +** are consonant-vowel-consonent and where the final consonant +** is not 'w', 'x', or 'y'. +** +** The word is reversed here. So we are really checking the +** first three letters and the first one cannot be in [wxy]. +*/ +static int star_oh(const char *z){ + return + isConsonant(z) && + z[0]!='w' && z[0]!='x' && z[0]!='y' && + isVowel(z+1) && + isConsonant(z+2); +} + +/* +** If the word ends with zFrom and xCond() is true for the stem +** of the word that preceeds the zFrom ending, then change the +** ending to zTo. +** +** The input word *pz and zFrom are both in reverse order. zTo +** is in normal order. +** +** Return TRUE if zFrom matches. Return FALSE if zFrom does not +** match. Not that TRUE is returned even if xCond() fails and +** no substitution occurs. +*/ +static int stem( + char **pz, /* The word being stemmed (Reversed) */ + const char *zFrom, /* If the ending matches this... (Reversed) */ + const char *zTo, /* ... change the ending to this (not reversed) */ + int (*xCond)(const char*) /* Condition that must be true */ +){ + char *z = *pz; + while( *zFrom && *zFrom==*z ){ z++; zFrom++; } + if( *zFrom!=0 ) return 0; + if( xCond && !xCond(z) ) return 1; + while( *zTo ){ + *(--z) = *(zTo++); + } + *pz = z; + return 1; +} + +/* +** This is the fallback stemmer used when the porter stemmer is +** inappropriate. The input word is copied into the output with +** US-ASCII case folding. If the input word is too long (more +** than 20 bytes if it contains no digits or more than 6 bytes if +** it contains digits) then word is truncated to 20 or 6 bytes +** by taking 10 or 3 bytes from the beginning and end. +*/ +static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ + int i, mx, j; + int hasDigit = 0; + for(i=0; i='A' && c<='Z' ){ + zOut[i] = c - 'A' + 'a'; + }else{ + if( c>='0' && c<='9' ) hasDigit = 1; + zOut[i] = c; + } + } + mx = hasDigit ? 3 : 10; + if( nIn>mx*2 ){ + for(j=mx, i=nIn-mx; i=(int)sizeof(zReverse)-7 ){ + /* The word is too big or too small for the porter stemmer. + ** Fallback to the copy stemmer */ + copy_stemmer(zIn, nIn, zOut, pnOut); + return; + } + for(i=0, j=sizeof(zReverse)-6; i='A' && c<='Z' ){ + zReverse[j] = c + 'a' - 'A'; + }else if( c>='a' && c<='z' ){ + zReverse[j] = c; + }else{ + /* The use of a character not in [a-zA-Z] means that we fallback + ** to the copy stemmer */ + copy_stemmer(zIn, nIn, zOut, pnOut); + return; + } + } + memset(&zReverse[sizeof(zReverse)-5], 0, 5); + z = &zReverse[j+1]; + + + /* Step 1a */ + if( z[0]=='s' ){ + if( + !stem(&z, "sess", "ss", 0) && + !stem(&z, "sei", "i", 0) && + !stem(&z, "ss", "ss", 0) + ){ + z++; + } + } + + /* Step 1b */ + z2 = z; + if( stem(&z, "dee", "ee", m_gt_0) ){ + /* Do nothing. The work was all in the test */ + }else if( + (stem(&z, "gni", "", hasVowel) || stem(&z, "de", "", hasVowel)) + && z!=z2 + ){ + if( stem(&z, "ta", "ate", 0) || + stem(&z, "lb", "ble", 0) || + stem(&z, "zi", "ize", 0) ){ + /* Do nothing. The work was all in the test */ + }else if( doubleConsonant(z) && (*z!='l' && *z!='s' && *z!='z') ){ + z++; + }else if( m_eq_1(z) && star_oh(z) ){ + *(--z) = 'e'; + } + } + + /* Step 1c */ + if( z[0]=='y' && hasVowel(z+1) ){ + z[0] = 'i'; + } + + /* Step 2 */ + switch( z[1] ){ + case 'a': + if( !stem(&z, "lanoita", "ate", m_gt_0) ){ + stem(&z, "lanoit", "tion", m_gt_0); + } + break; + case 'c': + if( !stem(&z, "icne", "ence", m_gt_0) ){ + stem(&z, "icna", "ance", m_gt_0); + } + break; + case 'e': + stem(&z, "rezi", "ize", m_gt_0); + break; + case 'g': + stem(&z, "igol", "log", m_gt_0); + break; + case 'l': + if( !stem(&z, "ilb", "ble", m_gt_0) + && !stem(&z, "illa", "al", m_gt_0) + && !stem(&z, "iltne", "ent", m_gt_0) + && !stem(&z, "ile", "e", m_gt_0) + ){ + stem(&z, "ilsuo", "ous", m_gt_0); + } + break; + case 'o': + if( !stem(&z, "noitazi", "ize", m_gt_0) + && !stem(&z, "noita", "ate", m_gt_0) + ){ + stem(&z, "rota", "ate", m_gt_0); + } + break; + case 's': + if( !stem(&z, "msila", "al", m_gt_0) + && !stem(&z, "ssenevi", "ive", m_gt_0) + && !stem(&z, "ssenluf", "ful", m_gt_0) + ){ + stem(&z, "ssensuo", "ous", m_gt_0); + } + break; + case 't': + if( !stem(&z, "itila", "al", m_gt_0) + && !stem(&z, "itivi", "ive", m_gt_0) + ){ + stem(&z, "itilib", "ble", m_gt_0); + } + break; + } + + /* Step 3 */ + switch( z[0] ){ + case 'e': + if( !stem(&z, "etaci", "ic", m_gt_0) + && !stem(&z, "evita", "", m_gt_0) + ){ + stem(&z, "ezila", "al", m_gt_0); + } + break; + case 'i': + stem(&z, "itici", "ic", m_gt_0); + break; + case 'l': + if( !stem(&z, "laci", "ic", m_gt_0) ){ + stem(&z, "luf", "", m_gt_0); + } + break; + case 's': + stem(&z, "ssen", "", m_gt_0); + break; + } + + /* Step 4 */ + switch( z[1] ){ + case 'a': + if( z[0]=='l' && m_gt_1(z+2) ){ + z += 2; + } + break; + case 'c': + if( z[0]=='e' && z[2]=='n' && (z[3]=='a' || z[3]=='e') && m_gt_1(z+4) ){ + z += 4; + } + break; + case 'e': + if( z[0]=='r' && m_gt_1(z+2) ){ + z += 2; + } + break; + case 'i': + if( z[0]=='c' && m_gt_1(z+2) ){ + z += 2; + } + break; + case 'l': + if( z[0]=='e' && z[2]=='b' && (z[3]=='a' || z[3]=='i') && m_gt_1(z+4) ){ + z += 4; + } + break; + case 'n': + if( z[0]=='t' ){ + if( z[2]=='a' ){ + if( m_gt_1(z+3) ){ + z += 3; + } + }else if( z[2]=='e' ){ + if( !stem(&z, "tneme", "", m_gt_1) + && !stem(&z, "tnem", "", m_gt_1) + ){ + stem(&z, "tne", "", m_gt_1); + } + } + } + break; + case 'o': + if( z[0]=='u' ){ + if( m_gt_1(z+2) ){ + z += 2; + } + }else if( z[3]=='s' || z[3]=='t' ){ + stem(&z, "noi", "", m_gt_1); + } + break; + case 's': + if( z[0]=='m' && z[2]=='i' && m_gt_1(z+3) ){ + z += 3; + } + break; + case 't': + if( !stem(&z, "eta", "", m_gt_1) ){ + stem(&z, "iti", "", m_gt_1); + } + break; + case 'u': + if( z[0]=='s' && z[2]=='o' && m_gt_1(z+3) ){ + z += 3; + } + break; + case 'v': + case 'z': + if( z[0]=='e' && z[2]=='i' && m_gt_1(z+3) ){ + z += 3; + } + break; + } + + /* Step 5a */ + if( z[0]=='e' ){ + if( m_gt_1(z+1) ){ + z++; + }else if( m_eq_1(z+1) && !star_oh(z+1) ){ + z++; + } + } + + /* Step 5b */ + if( m_gt_1(z) && z[0]=='l' && z[1]=='l' ){ + z++; + } + + /* z[] is now the stemmed word in reverse order. Flip it back + ** around into forward order and return. + */ + *pnOut = i = (int)strlen(z); + zOut[i] = 0; + while( *z ){ + zOut[--i] = *(z++); + } +} + +/* +** Characters that can be part of a token. We assume any character +** whose value is greater than 0x80 (any UTF character) can be +** part of a token. In other words, delimiters all must have +** values of 0x7f or lower. +*/ +static const char porterIdChar[] = { +/* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF */ + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 3x */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 4x */ + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, /* 5x */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 6x */ + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, /* 7x */ +}; +#define isDelim(C) (((ch=C)&0x80)==0 && (ch<0x30 || !porterIdChar[ch-0x30])) + +/* +** Extract the next token from a tokenization cursor. The cursor must +** have been opened by a prior call to porterOpen(). +*/ +static int porterNext( + sqlite3_tokenizer_cursor *pCursor, /* Cursor returned by porterOpen */ + const char **pzToken, /* OUT: *pzToken is the token text */ + int *pnBytes, /* OUT: Number of bytes in token */ + int *piStartOffset, /* OUT: Starting offset of token */ + int *piEndOffset, /* OUT: Ending offset of token */ + int *piPosition /* OUT: Position integer of token */ +){ + porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; + const char *z = c->zInput; + + while( c->iOffsetnInput ){ + int iStartOffset, ch; + + /* Scan past delimiter characters */ + while( c->iOffsetnInput && isDelim(z[c->iOffset]) ){ + c->iOffset++; + } + + /* Count non-delimiter characters. */ + iStartOffset = c->iOffset; + while( c->iOffsetnInput && !isDelim(z[c->iOffset]) ){ + c->iOffset++; + } + + if( c->iOffset>iStartOffset ){ + int n = c->iOffset-iStartOffset; + if( n>c->nAllocated ){ + char *pNew; + c->nAllocated = n+20; + pNew = sqlite3_realloc(c->zToken, c->nAllocated); + if( !pNew ) return SQLITE_NOMEM; + c->zToken = pNew; + } + porter_stemmer(&z[iStartOffset], n, c->zToken, pnBytes); + *pzToken = c->zToken; + *piStartOffset = iStartOffset; + *piEndOffset = c->iOffset; + *piPosition = c->iToken++; + return SQLITE_OK; + } + } + return SQLITE_DONE; +} + +/* +** The set of routines that implement the porter-stemmer tokenizer +*/ +static const sqlite3_tokenizer_module porterTokenizerModule = { + 0, + porterCreate, + porterDestroy, + porterOpen, + porterClose, + porterNext, + 0 +}; + +/* +** Allocate a new porter tokenizer. Return a pointer to the new +** tokenizer in *ppModule +*/ +SQLITE_PRIVATE void sqlite3Fts3PorterTokenizerModule( + sqlite3_tokenizer_module const**ppModule +){ + *ppModule = &porterTokenizerModule; +} + +#endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ + +/************** End of fts3_porter.c *****************************************/ +/************** Begin file fts3_tokenizer.c **********************************/ +/* +** 2007 June 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This is part of an SQLite module implementing full-text search. +** This particular file implements the generic tokenizer interface. +*/ + +/* +** The code in this file is only compiled if: +** +** * The FTS3 module is being built as an extension +** (in which case SQLITE_CORE is not defined), or +** +** * The FTS3 module is being built into the core of +** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). +*/ +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* #include */ +/* #include */ + +/* +** Implementation of the SQL scalar function for accessing the underlying +** hash table. This function may be called as follows: +** +** SELECT (); +** SELECT (, ); +** +** where is the name passed as the second argument +** to the sqlite3Fts3InitHashTable() function (e.g. 'fts3_tokenizer'). +** +** If the argument is specified, it must be a blob value +** containing a pointer to be stored as the hash data corresponding +** to the string . If is not specified, then +** the string must already exist in the has table. Otherwise, +** an error is returned. +** +** Whether or not the argument is specified, the value returned +** is a blob containing the pointer stored as the hash data corresponding +** to string (after the hash-table is updated, if applicable). +*/ +static void scalarFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + Fts3Hash *pHash; + void *pPtr = 0; + const unsigned char *zName; + int nName; + + assert( argc==1 || argc==2 ); + + pHash = (Fts3Hash *)sqlite3_user_data(context); + + zName = sqlite3_value_text(argv[0]); + nName = sqlite3_value_bytes(argv[0])+1; + + if( argc==2 ){ + void *pOld; + int n = sqlite3_value_bytes(argv[1]); + if( n!=sizeof(pPtr) ){ + sqlite3_result_error(context, "argument type mismatch", -1); + return; + } + pPtr = *(void **)sqlite3_value_blob(argv[1]); + pOld = sqlite3Fts3HashInsert(pHash, (void *)zName, nName, pPtr); + if( pOld==pPtr ){ + sqlite3_result_error(context, "out of memory", -1); + return; + } + }else{ + pPtr = sqlite3Fts3HashFind(pHash, zName, nName); + if( !pPtr ){ + char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName); + sqlite3_result_error(context, zErr, -1); + sqlite3_free(zErr); + return; + } + } + + sqlite3_result_blob(context, (void *)&pPtr, sizeof(pPtr), SQLITE_TRANSIENT); +} + +SQLITE_PRIVATE int sqlite3Fts3IsIdChar(char c){ + static const char isFtsIdChar[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 1x */ + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 2x */ + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 3x */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 4x */ + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, /* 5x */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 6x */ + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, /* 7x */ + }; + return (c&0x80 || isFtsIdChar[(int)(c)]); +} + +SQLITE_PRIVATE const char *sqlite3Fts3NextToken(const char *zStr, int *pn){ + const char *z1; + const char *z2 = 0; + + /* Find the start of the next token. */ + z1 = zStr; + while( z2==0 ){ + char c = *z1; + switch( c ){ + case '\0': return 0; /* No more tokens here */ + case '\'': + case '"': + case '`': { + z2 = z1; + while( *++z2 && (*z2!=c || *++z2==c) ); + break; + } + case '[': + z2 = &z1[1]; + while( *z2 && z2[0]!=']' ) z2++; + if( *z2 ) z2++; + break; + + default: + if( sqlite3Fts3IsIdChar(*z1) ){ + z2 = &z1[1]; + while( sqlite3Fts3IsIdChar(*z2) ) z2++; + }else{ + z1++; + } + } + } + + *pn = (int)(z2-z1); + return z1; +} + +SQLITE_PRIVATE int sqlite3Fts3InitTokenizer( + Fts3Hash *pHash, /* Tokenizer hash table */ + const char *zArg, /* Tokenizer name */ + sqlite3_tokenizer **ppTok, /* OUT: Tokenizer (if applicable) */ + char **pzErr /* OUT: Set to malloced error message */ +){ + int rc; + char *z = (char *)zArg; + int n = 0; + char *zCopy; + char *zEnd; /* Pointer to nul-term of zCopy */ + sqlite3_tokenizer_module *m; + + zCopy = sqlite3_mprintf("%s", zArg); + if( !zCopy ) return SQLITE_NOMEM; + zEnd = &zCopy[strlen(zCopy)]; + + z = (char *)sqlite3Fts3NextToken(zCopy, &n); + z[n] = '\0'; + sqlite3Fts3Dequote(z); + + m = (sqlite3_tokenizer_module *)sqlite3Fts3HashFind(pHash,z,(int)strlen(z)+1); + if( !m ){ + *pzErr = sqlite3_mprintf("unknown tokenizer: %s", z); + rc = SQLITE_ERROR; + }else{ + char const **aArg = 0; + int iArg = 0; + z = &z[n+1]; + while( zxCreate(iArg, aArg, ppTok); + assert( rc!=SQLITE_OK || *ppTok ); + if( rc!=SQLITE_OK ){ + *pzErr = sqlite3_mprintf("unknown tokenizer"); + }else{ + (*ppTok)->pModule = m; + } + sqlite3_free((void *)aArg); + } + + sqlite3_free(zCopy); + return rc; +} + + +#ifdef SQLITE_TEST + +#include +/* #include */ + +/* +** Implementation of a special SQL scalar function for testing tokenizers +** designed to be used in concert with the Tcl testing framework. This +** function must be called with two or more arguments: +** +** SELECT (, ..., ); +** +** where is the name passed as the second argument +** to the sqlite3Fts3InitHashTable() function (e.g. 'fts3_tokenizer') +** concatenated with the string '_test' (e.g. 'fts3_tokenizer_test'). +** +** The return value is a string that may be interpreted as a Tcl +** list. For each token in the , three elements are +** added to the returned list. The first is the token position, the +** second is the token text (folded, stemmed, etc.) and the third is the +** substring of associated with the token. For example, +** using the built-in "simple" tokenizer: +** +** SELECT fts_tokenizer_test('simple', 'I don't see how'); +** +** will return the string: +** +** "{0 i I 1 dont don't 2 see see 3 how how}" +** +*/ +static void testFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + Fts3Hash *pHash; + sqlite3_tokenizer_module *p; + sqlite3_tokenizer *pTokenizer = 0; + sqlite3_tokenizer_cursor *pCsr = 0; + + const char *zErr = 0; + + const char *zName; + int nName; + const char *zInput; + int nInput; + + const char *azArg[64]; + + const char *zToken; + int nToken = 0; + int iStart = 0; + int iEnd = 0; + int iPos = 0; + int i; + + Tcl_Obj *pRet; + + if( argc<2 ){ + sqlite3_result_error(context, "insufficient arguments", -1); + return; + } + + nName = sqlite3_value_bytes(argv[0]); + zName = (const char *)sqlite3_value_text(argv[0]); + nInput = sqlite3_value_bytes(argv[argc-1]); + zInput = (const char *)sqlite3_value_text(argv[argc-1]); + + pHash = (Fts3Hash *)sqlite3_user_data(context); + p = (sqlite3_tokenizer_module *)sqlite3Fts3HashFind(pHash, zName, nName+1); + + if( !p ){ + char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName); + sqlite3_result_error(context, zErr, -1); + sqlite3_free(zErr); + return; + } + + pRet = Tcl_NewObj(); + Tcl_IncrRefCount(pRet); + + for(i=1; ixCreate(argc-2, azArg, &pTokenizer) ){ + zErr = "error in xCreate()"; + goto finish; + } + pTokenizer->pModule = p; + if( sqlite3Fts3OpenTokenizer(pTokenizer, 0, zInput, nInput, &pCsr) ){ + zErr = "error in xOpen()"; + goto finish; + } + + while( SQLITE_OK==p->xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos) ){ + Tcl_ListObjAppendElement(0, pRet, Tcl_NewIntObj(iPos)); + Tcl_ListObjAppendElement(0, pRet, Tcl_NewStringObj(zToken, nToken)); + zToken = &zInput[iStart]; + nToken = iEnd-iStart; + Tcl_ListObjAppendElement(0, pRet, Tcl_NewStringObj(zToken, nToken)); + } + + if( SQLITE_OK!=p->xClose(pCsr) ){ + zErr = "error in xClose()"; + goto finish; + } + if( SQLITE_OK!=p->xDestroy(pTokenizer) ){ + zErr = "error in xDestroy()"; + goto finish; + } + +finish: + if( zErr ){ + sqlite3_result_error(context, zErr, -1); + }else{ + sqlite3_result_text(context, Tcl_GetString(pRet), -1, SQLITE_TRANSIENT); + } + Tcl_DecrRefCount(pRet); +} + +static +int registerTokenizer( + sqlite3 *db, + char *zName, + const sqlite3_tokenizer_module *p +){ + int rc; + sqlite3_stmt *pStmt; + const char zSql[] = "SELECT fts3_tokenizer(?, ?)"; + + rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); + if( rc!=SQLITE_OK ){ + return rc; + } + + sqlite3_bind_text(pStmt, 1, zName, -1, SQLITE_STATIC); + sqlite3_bind_blob(pStmt, 2, &p, sizeof(p), SQLITE_STATIC); + sqlite3_step(pStmt); + + return sqlite3_finalize(pStmt); +} + +static +int queryTokenizer( + sqlite3 *db, + char *zName, + const sqlite3_tokenizer_module **pp +){ + int rc; + sqlite3_stmt *pStmt; + const char zSql[] = "SELECT fts3_tokenizer(?)"; + + *pp = 0; + rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); + if( rc!=SQLITE_OK ){ + return rc; + } + + sqlite3_bind_text(pStmt, 1, zName, -1, SQLITE_STATIC); + if( SQLITE_ROW==sqlite3_step(pStmt) ){ + if( sqlite3_column_type(pStmt, 0)==SQLITE_BLOB ){ + memcpy((void *)pp, sqlite3_column_blob(pStmt, 0), sizeof(*pp)); + } + } + + return sqlite3_finalize(pStmt); +} + +SQLITE_PRIVATE void sqlite3Fts3SimpleTokenizerModule(sqlite3_tokenizer_module const**ppModule); + +/* +** Implementation of the scalar function fts3_tokenizer_internal_test(). +** This function is used for testing only, it is not included in the +** build unless SQLITE_TEST is defined. +** +** The purpose of this is to test that the fts3_tokenizer() function +** can be used as designed by the C-code in the queryTokenizer and +** registerTokenizer() functions above. These two functions are repeated +** in the README.tokenizer file as an example, so it is important to +** test them. +** +** To run the tests, evaluate the fts3_tokenizer_internal_test() scalar +** function with no arguments. An assert() will fail if a problem is +** detected. i.e.: +** +** SELECT fts3_tokenizer_internal_test(); +** +*/ +static void intTestFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + int rc; + const sqlite3_tokenizer_module *p1; + const sqlite3_tokenizer_module *p2; + sqlite3 *db = (sqlite3 *)sqlite3_user_data(context); + + UNUSED_PARAMETER(argc); + UNUSED_PARAMETER(argv); + + /* Test the query function */ + sqlite3Fts3SimpleTokenizerModule(&p1); + rc = queryTokenizer(db, "simple", &p2); + assert( rc==SQLITE_OK ); + assert( p1==p2 ); + rc = queryTokenizer(db, "nosuchtokenizer", &p2); + assert( rc==SQLITE_ERROR ); + assert( p2==0 ); + assert( 0==strcmp(sqlite3_errmsg(db), "unknown tokenizer: nosuchtokenizer") ); + + /* Test the storage function */ + rc = registerTokenizer(db, "nosuchtokenizer", p1); + assert( rc==SQLITE_OK ); + rc = queryTokenizer(db, "nosuchtokenizer", &p2); + assert( rc==SQLITE_OK ); + assert( p2==p1 ); + + sqlite3_result_text(context, "ok", -1, SQLITE_STATIC); +} + +#endif + +/* +** Set up SQL objects in database db used to access the contents of +** the hash table pointed to by argument pHash. The hash table must +** been initialized to use string keys, and to take a private copy +** of the key when a value is inserted. i.e. by a call similar to: +** +** sqlite3Fts3HashInit(pHash, FTS3_HASH_STRING, 1); +** +** This function adds a scalar function (see header comment above +** scalarFunc() in this file for details) and, if ENABLE_TABLE is +** defined at compilation time, a temporary virtual table (see header +** comment above struct HashTableVtab) to the database schema. Both +** provide read/write access to the contents of *pHash. +** +** The third argument to this function, zName, is used as the name +** of both the scalar and, if created, the virtual table. +*/ +SQLITE_PRIVATE int sqlite3Fts3InitHashTable( + sqlite3 *db, + Fts3Hash *pHash, + const char *zName +){ + int rc = SQLITE_OK; + void *p = (void *)pHash; + const int any = SQLITE_ANY; + +#ifdef SQLITE_TEST + char *zTest = 0; + char *zTest2 = 0; + void *pdb = (void *)db; + zTest = sqlite3_mprintf("%s_test", zName); + zTest2 = sqlite3_mprintf("%s_internal_test", zName); + if( !zTest || !zTest2 ){ + rc = SQLITE_NOMEM; + } +#endif + + if( SQLITE_OK==rc ){ + rc = sqlite3_create_function(db, zName, 1, any, p, scalarFunc, 0, 0); + } + if( SQLITE_OK==rc ){ + rc = sqlite3_create_function(db, zName, 2, any, p, scalarFunc, 0, 0); + } +#ifdef SQLITE_TEST + if( SQLITE_OK==rc ){ + rc = sqlite3_create_function(db, zTest, -1, any, p, testFunc, 0, 0); + } + if( SQLITE_OK==rc ){ + rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0); + } +#endif + +#ifdef SQLITE_TEST + sqlite3_free(zTest); + sqlite3_free(zTest2); +#endif + + return rc; +} + +#endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ + +/************** End of fts3_tokenizer.c **************************************/ +/************** Begin file fts3_tokenizer1.c *********************************/ +/* +** 2006 Oct 10 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** Implementation of the "simple" full-text-search tokenizer. +*/ + +/* +** The code in this file is only compiled if: +** +** * The FTS3 module is being built as an extension +** (in which case SQLITE_CORE is not defined), or +** +** * The FTS3 module is being built into the core of +** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). +*/ +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* #include */ +/* #include */ +/* #include */ +/* #include */ + + +typedef struct simple_tokenizer { + sqlite3_tokenizer base; + char delim[128]; /* flag ASCII delimiters */ +} simple_tokenizer; + +typedef struct simple_tokenizer_cursor { + sqlite3_tokenizer_cursor base; + const char *pInput; /* input we are tokenizing */ + int nBytes; /* size of the input */ + int iOffset; /* current position in pInput */ + int iToken; /* index of next token to be returned */ + char *pToken; /* storage for current token */ + int nTokenAllocated; /* space allocated to zToken buffer */ +} simple_tokenizer_cursor; + + +static int simpleDelim(simple_tokenizer *t, unsigned char c){ + return c<0x80 && t->delim[c]; +} +static int fts3_isalnum(int x){ + return (x>='0' && x<='9') || (x>='A' && x<='Z') || (x>='a' && x<='z'); +} + +/* +** Create a new tokenizer instance. +*/ +static int simpleCreate( + int argc, const char * const *argv, + sqlite3_tokenizer **ppTokenizer +){ + simple_tokenizer *t; + + t = (simple_tokenizer *) sqlite3_malloc(sizeof(*t)); + if( t==NULL ) return SQLITE_NOMEM; + memset(t, 0, sizeof(*t)); + + /* TODO(shess) Delimiters need to remain the same from run to run, + ** else we need to reindex. One solution would be a meta-table to + ** track such information in the database, then we'd only want this + ** information on the initial create. + */ + if( argc>1 ){ + int i, n = (int)strlen(argv[1]); + for(i=0; i=0x80 ){ + sqlite3_free(t); + return SQLITE_ERROR; + } + t->delim[ch] = 1; + } + } else { + /* Mark non-alphanumeric ASCII characters as delimiters */ + int i; + for(i=1; i<0x80; i++){ + t->delim[i] = !fts3_isalnum(i) ? -1 : 0; + } + } + + *ppTokenizer = &t->base; + return SQLITE_OK; +} + +/* +** Destroy a tokenizer +*/ +static int simpleDestroy(sqlite3_tokenizer *pTokenizer){ + sqlite3_free(pTokenizer); + return SQLITE_OK; +} + +/* +** Prepare to begin tokenizing a particular string. The input +** string to be tokenized is pInput[0..nBytes-1]. A cursor +** used to incrementally tokenize this string is returned in +** *ppCursor. +*/ +static int simpleOpen( + sqlite3_tokenizer *pTokenizer, /* The tokenizer */ + const char *pInput, int nBytes, /* String to be tokenized */ + sqlite3_tokenizer_cursor **ppCursor /* OUT: Tokenization cursor */ +){ + simple_tokenizer_cursor *c; + + UNUSED_PARAMETER(pTokenizer); + + c = (simple_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); + if( c==NULL ) return SQLITE_NOMEM; + + c->pInput = pInput; + if( pInput==0 ){ + c->nBytes = 0; + }else if( nBytes<0 ){ + c->nBytes = (int)strlen(pInput); + }else{ + c->nBytes = nBytes; + } + c->iOffset = 0; /* start tokenizing at the beginning */ + c->iToken = 0; + c->pToken = NULL; /* no space allocated, yet. */ + c->nTokenAllocated = 0; + + *ppCursor = &c->base; + return SQLITE_OK; +} + +/* +** Close a tokenization cursor previously opened by a call to +** simpleOpen() above. +*/ +static int simpleClose(sqlite3_tokenizer_cursor *pCursor){ + simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; + sqlite3_free(c->pToken); + sqlite3_free(c); + return SQLITE_OK; +} + +/* +** Extract the next token from a tokenization cursor. The cursor must +** have been opened by a prior call to simpleOpen(). +*/ +static int simpleNext( + sqlite3_tokenizer_cursor *pCursor, /* Cursor returned by simpleOpen */ + const char **ppToken, /* OUT: *ppToken is the token text */ + int *pnBytes, /* OUT: Number of bytes in token */ + int *piStartOffset, /* OUT: Starting offset of token */ + int *piEndOffset, /* OUT: Ending offset of token */ + int *piPosition /* OUT: Position integer of token */ +){ + simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; + simple_tokenizer *t = (simple_tokenizer *) pCursor->pTokenizer; + unsigned char *p = (unsigned char *)c->pInput; + + while( c->iOffsetnBytes ){ + int iStartOffset; + + /* Scan past delimiter characters */ + while( c->iOffsetnBytes && simpleDelim(t, p[c->iOffset]) ){ + c->iOffset++; + } + + /* Count non-delimiter characters. */ + iStartOffset = c->iOffset; + while( c->iOffsetnBytes && !simpleDelim(t, p[c->iOffset]) ){ + c->iOffset++; + } + + if( c->iOffset>iStartOffset ){ + int i, n = c->iOffset-iStartOffset; + if( n>c->nTokenAllocated ){ + char *pNew; + c->nTokenAllocated = n+20; + pNew = sqlite3_realloc(c->pToken, c->nTokenAllocated); + if( !pNew ) return SQLITE_NOMEM; + c->pToken = pNew; + } + for(i=0; ipToken[i] = (char)((ch>='A' && ch<='Z') ? ch-'A'+'a' : ch); + } + *ppToken = c->pToken; + *pnBytes = n; + *piStartOffset = iStartOffset; + *piEndOffset = c->iOffset; + *piPosition = c->iToken++; + + return SQLITE_OK; + } + } + return SQLITE_DONE; +} + +/* +** The set of routines that implement the simple tokenizer +*/ +static const sqlite3_tokenizer_module simpleTokenizerModule = { + 0, + simpleCreate, + simpleDestroy, + simpleOpen, + simpleClose, + simpleNext, + 0, +}; + +/* +** Allocate a new simple tokenizer. Return a pointer to the new +** tokenizer in *ppModule +*/ +SQLITE_PRIVATE void sqlite3Fts3SimpleTokenizerModule( + sqlite3_tokenizer_module const**ppModule +){ + *ppModule = &simpleTokenizerModule; +} + +#endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ + +/************** End of fts3_tokenizer1.c *************************************/ +/************** Begin file fts3_tokenize_vtab.c ******************************/ +/* +** 2013 Apr 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This file contains code for the "fts3tokenize" virtual table module. +** An fts3tokenize virtual table is created as follows: +** +** CREATE VIRTUAL TABLE USING fts3tokenize( +** , , ... +** ); +** +** The table created has the following schema: +** +** CREATE TABLE (input, token, start, end, position) +** +** When queried, the query must include a WHERE clause of type: +** +** input = +** +** The virtual table module tokenizes this , using the FTS3 +** tokenizer specified by the arguments to the CREATE VIRTUAL TABLE +** statement and returns one row for each token in the result. With +** fields set as follows: +** +** input: Always set to a copy of +** token: A token from the input. +** start: Byte offset of the token within the input . +** end: Byte offset of the byte immediately following the end of the +** token within the input string. +** pos: Token offset of token within input. +** +*/ +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* #include */ +/* #include */ + +typedef struct Fts3tokTable Fts3tokTable; +typedef struct Fts3tokCursor Fts3tokCursor; + +/* +** Virtual table structure. +*/ +struct Fts3tokTable { + sqlite3_vtab base; /* Base class used by SQLite core */ + const sqlite3_tokenizer_module *pMod; + sqlite3_tokenizer *pTok; +}; + +/* +** Virtual table cursor structure. +*/ +struct Fts3tokCursor { + sqlite3_vtab_cursor base; /* Base class used by SQLite core */ + char *zInput; /* Input string */ + sqlite3_tokenizer_cursor *pCsr; /* Cursor to iterate through zInput */ + int iRowid; /* Current 'rowid' value */ + const char *zToken; /* Current 'token' value */ + int nToken; /* Size of zToken in bytes */ + int iStart; /* Current 'start' value */ + int iEnd; /* Current 'end' value */ + int iPos; /* Current 'pos' value */ +}; + +/* +** Query FTS for the tokenizer implementation named zName. +*/ +static int fts3tokQueryTokenizer( + Fts3Hash *pHash, + const char *zName, + const sqlite3_tokenizer_module **pp, + char **pzErr +){ + sqlite3_tokenizer_module *p; + int nName = (int)strlen(zName); + + p = (sqlite3_tokenizer_module *)sqlite3Fts3HashFind(pHash, zName, nName+1); + if( !p ){ + *pzErr = sqlite3_mprintf("unknown tokenizer: %s", zName); + return SQLITE_ERROR; + } + + *pp = p; + return SQLITE_OK; +} + +/* +** The second argument, argv[], is an array of pointers to nul-terminated +** strings. This function makes a copy of the array and strings into a +** single block of memory. It then dequotes any of the strings that appear +** to be quoted. +** +** If successful, output parameter *pazDequote is set to point at the +** array of dequoted strings and SQLITE_OK is returned. The caller is +** responsible for eventually calling sqlite3_free() to free the array +** in this case. Or, if an error occurs, an SQLite error code is returned. +** The final value of *pazDequote is undefined in this case. +*/ +static int fts3tokDequoteArray( + int argc, /* Number of elements in argv[] */ + const char * const *argv, /* Input array */ + char ***pazDequote /* Output array */ +){ + int rc = SQLITE_OK; /* Return code */ + if( argc==0 ){ + *pazDequote = 0; + }else{ + int i; + int nByte = 0; + char **azDequote; + + for(i=0; ixCreate((nDequote>1 ? nDequote-1 : 0), azArg, &pTok); + } + + if( rc==SQLITE_OK ){ + pTab = (Fts3tokTable *)sqlite3_malloc(sizeof(Fts3tokTable)); + if( pTab==0 ){ + rc = SQLITE_NOMEM; + } + } + + if( rc==SQLITE_OK ){ + memset(pTab, 0, sizeof(Fts3tokTable)); + pTab->pMod = pMod; + pTab->pTok = pTok; + *ppVtab = &pTab->base; + }else{ + if( pTok ){ + pMod->xDestroy(pTok); + } + } + + sqlite3_free(azDequote); + return rc; +} + +/* +** This function does the work for both the xDisconnect and xDestroy methods. +** These tables have no persistent representation of their own, so xDisconnect +** and xDestroy are identical operations. +*/ +static int fts3tokDisconnectMethod(sqlite3_vtab *pVtab){ + Fts3tokTable *pTab = (Fts3tokTable *)pVtab; + + pTab->pMod->xDestroy(pTab->pTok); + sqlite3_free(pTab); + return SQLITE_OK; +} + +/* +** xBestIndex - Analyze a WHERE and ORDER BY clause. +*/ +static int fts3tokBestIndexMethod( + sqlite3_vtab *pVTab, + sqlite3_index_info *pInfo +){ + int i; + UNUSED_PARAMETER(pVTab); + + for(i=0; inConstraint; i++){ + if( pInfo->aConstraint[i].usable + && pInfo->aConstraint[i].iColumn==0 + && pInfo->aConstraint[i].op==SQLITE_INDEX_CONSTRAINT_EQ + ){ + pInfo->idxNum = 1; + pInfo->aConstraintUsage[i].argvIndex = 1; + pInfo->aConstraintUsage[i].omit = 1; + pInfo->estimatedCost = 1; + return SQLITE_OK; + } + } + + pInfo->idxNum = 0; + assert( pInfo->estimatedCost>1000000.0 ); + + return SQLITE_OK; +} + +/* +** xOpen - Open a cursor. +*/ +static int fts3tokOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ + Fts3tokCursor *pCsr; + UNUSED_PARAMETER(pVTab); + + pCsr = (Fts3tokCursor *)sqlite3_malloc(sizeof(Fts3tokCursor)); + if( pCsr==0 ){ + return SQLITE_NOMEM; + } + memset(pCsr, 0, sizeof(Fts3tokCursor)); + + *ppCsr = (sqlite3_vtab_cursor *)pCsr; + return SQLITE_OK; +} + +/* +** Reset the tokenizer cursor passed as the only argument. As if it had +** just been returned by fts3tokOpenMethod(). +*/ +static void fts3tokResetCursor(Fts3tokCursor *pCsr){ + if( pCsr->pCsr ){ + Fts3tokTable *pTab = (Fts3tokTable *)(pCsr->base.pVtab); + pTab->pMod->xClose(pCsr->pCsr); + pCsr->pCsr = 0; + } + sqlite3_free(pCsr->zInput); + pCsr->zInput = 0; + pCsr->zToken = 0; + pCsr->nToken = 0; + pCsr->iStart = 0; + pCsr->iEnd = 0; + pCsr->iPos = 0; + pCsr->iRowid = 0; +} + +/* +** xClose - Close a cursor. +*/ +static int fts3tokCloseMethod(sqlite3_vtab_cursor *pCursor){ + Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; + + fts3tokResetCursor(pCsr); + sqlite3_free(pCsr); + return SQLITE_OK; +} + +/* +** xNext - Advance the cursor to the next row, if any. +*/ +static int fts3tokNextMethod(sqlite3_vtab_cursor *pCursor){ + Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; + Fts3tokTable *pTab = (Fts3tokTable *)(pCursor->pVtab); + int rc; /* Return code */ + + pCsr->iRowid++; + rc = pTab->pMod->xNext(pCsr->pCsr, + &pCsr->zToken, &pCsr->nToken, + &pCsr->iStart, &pCsr->iEnd, &pCsr->iPos + ); + + if( rc!=SQLITE_OK ){ + fts3tokResetCursor(pCsr); + if( rc==SQLITE_DONE ) rc = SQLITE_OK; + } + + return rc; +} + +/* +** xFilter - Initialize a cursor to point at the start of its data. +*/ +static int fts3tokFilterMethod( + sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */ + int idxNum, /* Strategy index */ + const char *idxStr, /* Unused */ + int nVal, /* Number of elements in apVal */ + sqlite3_value **apVal /* Arguments for the indexing scheme */ +){ + int rc = SQLITE_ERROR; + Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; + Fts3tokTable *pTab = (Fts3tokTable *)(pCursor->pVtab); + UNUSED_PARAMETER(idxStr); + UNUSED_PARAMETER(nVal); + + fts3tokResetCursor(pCsr); + if( idxNum==1 ){ + const char *zByte = (const char *)sqlite3_value_text(apVal[0]); + int nByte = sqlite3_value_bytes(apVal[0]); + pCsr->zInput = sqlite3_malloc(nByte+1); + if( pCsr->zInput==0 ){ + rc = SQLITE_NOMEM; + }else{ + memcpy(pCsr->zInput, zByte, nByte); + pCsr->zInput[nByte] = 0; + rc = pTab->pMod->xOpen(pTab->pTok, pCsr->zInput, nByte, &pCsr->pCsr); + if( rc==SQLITE_OK ){ + pCsr->pCsr->pTokenizer = pTab->pTok; + } + } + } + + if( rc!=SQLITE_OK ) return rc; + return fts3tokNextMethod(pCursor); +} + +/* +** xEof - Return true if the cursor is at EOF, or false otherwise. +*/ +static int fts3tokEofMethod(sqlite3_vtab_cursor *pCursor){ + Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; + return (pCsr->zToken==0); +} + +/* +** xColumn - Return a column value. +*/ +static int fts3tokColumnMethod( + sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ + sqlite3_context *pCtx, /* Context for sqlite3_result_xxx() calls */ + int iCol /* Index of column to read value from */ +){ + Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; + + /* CREATE TABLE x(input, token, start, end, position) */ + switch( iCol ){ + case 0: + sqlite3_result_text(pCtx, pCsr->zInput, -1, SQLITE_TRANSIENT); + break; + case 1: + sqlite3_result_text(pCtx, pCsr->zToken, pCsr->nToken, SQLITE_TRANSIENT); + break; + case 2: + sqlite3_result_int(pCtx, pCsr->iStart); + break; + case 3: + sqlite3_result_int(pCtx, pCsr->iEnd); + break; + default: + assert( iCol==4 ); + sqlite3_result_int(pCtx, pCsr->iPos); + break; + } + return SQLITE_OK; +} + +/* +** xRowid - Return the current rowid for the cursor. +*/ +static int fts3tokRowidMethod( + sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ + sqlite_int64 *pRowid /* OUT: Rowid value */ +){ + Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; + *pRowid = (sqlite3_int64)pCsr->iRowid; + return SQLITE_OK; +} + +/* +** Register the fts3tok module with database connection db. Return SQLITE_OK +** if successful or an error code if sqlite3_create_module() fails. +*/ +SQLITE_PRIVATE int sqlite3Fts3InitTok(sqlite3 *db, Fts3Hash *pHash){ + static const sqlite3_module fts3tok_module = { + 0, /* iVersion */ + fts3tokConnectMethod, /* xCreate */ + fts3tokConnectMethod, /* xConnect */ + fts3tokBestIndexMethod, /* xBestIndex */ + fts3tokDisconnectMethod, /* xDisconnect */ + fts3tokDisconnectMethod, /* xDestroy */ + fts3tokOpenMethod, /* xOpen */ + fts3tokCloseMethod, /* xClose */ + fts3tokFilterMethod, /* xFilter */ + fts3tokNextMethod, /* xNext */ + fts3tokEofMethod, /* xEof */ + fts3tokColumnMethod, /* xColumn */ + fts3tokRowidMethod, /* xRowid */ + 0, /* xUpdate */ + 0, /* xBegin */ + 0, /* xSync */ + 0, /* xCommit */ + 0, /* xRollback */ + 0, /* xFindFunction */ + 0, /* xRename */ + 0, /* xSavepoint */ + 0, /* xRelease */ + 0 /* xRollbackTo */ + }; + int rc; /* Return code */ + + rc = sqlite3_create_module(db, "fts3tokenize", &fts3tok_module, (void*)pHash); + return rc; +} + +#endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ + +/************** End of fts3_tokenize_vtab.c **********************************/ +/************** Begin file fts3_write.c **************************************/ +/* +** 2009 Oct 23 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** This file is part of the SQLite FTS3 extension module. Specifically, +** this file contains code to insert, update and delete rows from FTS3 +** tables. It also contains code to merge FTS3 b-tree segments. Some +** of the sub-routines used to merge segments are also used by the query +** code in fts3.c. +*/ + +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* #include */ +/* #include */ +/* #include */ + + +#define FTS_MAX_APPENDABLE_HEIGHT 16 + +/* +** When full-text index nodes are loaded from disk, the buffer that they +** are loaded into has the following number of bytes of padding at the end +** of it. i.e. if a full-text index node is 900 bytes in size, then a buffer +** of 920 bytes is allocated for it. +** +** This means that if we have a pointer into a buffer containing node data, +** it is always safe to read up to two varints from it without risking an +** overread, even if the node data is corrupted. +*/ +#define FTS3_NODE_PADDING (FTS3_VARINT_MAX*2) + +/* +** Under certain circumstances, b-tree nodes (doclists) can be loaded into +** memory incrementally instead of all at once. This can be a big performance +** win (reduced IO and CPU) if SQLite stops calling the virtual table xNext() +** method before retrieving all query results (as may happen, for example, +** if a query has a LIMIT clause). +** +** Incremental loading is used for b-tree nodes FTS3_NODE_CHUNK_THRESHOLD +** bytes and larger. Nodes are loaded in chunks of FTS3_NODE_CHUNKSIZE bytes. +** The code is written so that the hard lower-limit for each of these values +** is 1. Clearly such small values would be inefficient, but can be useful +** for testing purposes. +** +** If this module is built with SQLITE_TEST defined, these constants may +** be overridden at runtime for testing purposes. File fts3_test.c contains +** a Tcl interface to read and write the values. +*/ +#ifdef SQLITE_TEST +int test_fts3_node_chunksize = (4*1024); +int test_fts3_node_chunk_threshold = (4*1024)*4; +# define FTS3_NODE_CHUNKSIZE test_fts3_node_chunksize +# define FTS3_NODE_CHUNK_THRESHOLD test_fts3_node_chunk_threshold +#else +# define FTS3_NODE_CHUNKSIZE (4*1024) +# define FTS3_NODE_CHUNK_THRESHOLD (FTS3_NODE_CHUNKSIZE*4) +#endif + +/* +** The two values that may be meaningfully bound to the :1 parameter in +** statements SQL_REPLACE_STAT and SQL_SELECT_STAT. +*/ +#define FTS_STAT_DOCTOTAL 0 +#define FTS_STAT_INCRMERGEHINT 1 +#define FTS_STAT_AUTOINCRMERGE 2 + +/* +** If FTS_LOG_MERGES is defined, call sqlite3_log() to report each automatic +** and incremental merge operation that takes place. This is used for +** debugging FTS only, it should not usually be turned on in production +** systems. +*/ +#ifdef FTS3_LOG_MERGES +static void fts3LogMerge(int nMerge, sqlite3_int64 iAbsLevel){ + sqlite3_log(SQLITE_OK, "%d-way merge from level %d", nMerge, (int)iAbsLevel); +} +#else +#define fts3LogMerge(x, y) +#endif + + +typedef struct PendingList PendingList; +typedef struct SegmentNode SegmentNode; +typedef struct SegmentWriter SegmentWriter; + +/* +** An instance of the following data structure is used to build doclists +** incrementally. See function fts3PendingListAppend() for details. +*/ +struct PendingList { + int nData; + char *aData; + int nSpace; + sqlite3_int64 iLastDocid; + sqlite3_int64 iLastCol; + sqlite3_int64 iLastPos; +}; + + +/* +** Each cursor has a (possibly empty) linked list of the following objects. +*/ +struct Fts3DeferredToken { + Fts3PhraseToken *pToken; /* Pointer to corresponding expr token */ + int iCol; /* Column token must occur in */ + Fts3DeferredToken *pNext; /* Next in list of deferred tokens */ + PendingList *pList; /* Doclist is assembled here */ +}; + +/* +** An instance of this structure is used to iterate through the terms on +** a contiguous set of segment b-tree leaf nodes. Although the details of +** this structure are only manipulated by code in this file, opaque handles +** of type Fts3SegReader* are also used by code in fts3.c to iterate through +** terms when querying the full-text index. See functions: +** +** sqlite3Fts3SegReaderNew() +** sqlite3Fts3SegReaderFree() +** sqlite3Fts3SegReaderIterate() +** +** Methods used to manipulate Fts3SegReader structures: +** +** fts3SegReaderNext() +** fts3SegReaderFirstDocid() +** fts3SegReaderNextDocid() +*/ +struct Fts3SegReader { + int iIdx; /* Index within level, or 0x7FFFFFFF for PT */ + u8 bLookup; /* True for a lookup only */ + u8 rootOnly; /* True for a root-only reader */ + + sqlite3_int64 iStartBlock; /* Rowid of first leaf block to traverse */ + sqlite3_int64 iLeafEndBlock; /* Rowid of final leaf block to traverse */ + sqlite3_int64 iEndBlock; /* Rowid of final block in segment (or 0) */ + sqlite3_int64 iCurrentBlock; /* Current leaf block (or 0) */ + + char *aNode; /* Pointer to node data (or NULL) */ + int nNode; /* Size of buffer at aNode (or 0) */ + int nPopulate; /* If >0, bytes of buffer aNode[] loaded */ + sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */ + + Fts3HashElem **ppNextElem; + + /* Variables set by fts3SegReaderNext(). These may be read directly + ** by the caller. They are valid from the time SegmentReaderNew() returns + ** until SegmentReaderNext() returns something other than SQLITE_OK + ** (i.e. SQLITE_DONE). + */ + int nTerm; /* Number of bytes in current term */ + char *zTerm; /* Pointer to current term */ + int nTermAlloc; /* Allocated size of zTerm buffer */ + char *aDoclist; /* Pointer to doclist of current entry */ + int nDoclist; /* Size of doclist in current entry */ + + /* The following variables are used by fts3SegReaderNextDocid() to iterate + ** through the current doclist (aDoclist/nDoclist). + */ + char *pOffsetList; + int nOffsetList; /* For descending pending seg-readers only */ + sqlite3_int64 iDocid; +}; + +#define fts3SegReaderIsPending(p) ((p)->ppNextElem!=0) +#define fts3SegReaderIsRootOnly(p) ((p)->rootOnly!=0) + +/* +** An instance of this structure is used to create a segment b-tree in the +** database. The internal details of this type are only accessed by the +** following functions: +** +** fts3SegWriterAdd() +** fts3SegWriterFlush() +** fts3SegWriterFree() +*/ +struct SegmentWriter { + SegmentNode *pTree; /* Pointer to interior tree structure */ + sqlite3_int64 iFirst; /* First slot in %_segments written */ + sqlite3_int64 iFree; /* Next free slot in %_segments */ + char *zTerm; /* Pointer to previous term buffer */ + int nTerm; /* Number of bytes in zTerm */ + int nMalloc; /* Size of malloc'd buffer at zMalloc */ + char *zMalloc; /* Malloc'd space (possibly) used for zTerm */ + int nSize; /* Size of allocation at aData */ + int nData; /* Bytes of data in aData */ + char *aData; /* Pointer to block from malloc() */ + i64 nLeafData; /* Number of bytes of leaf data written */ +}; + +/* +** Type SegmentNode is used by the following three functions to create +** the interior part of the segment b+-tree structures (everything except +** the leaf nodes). These functions and type are only ever used by code +** within the fts3SegWriterXXX() family of functions described above. +** +** fts3NodeAddTerm() +** fts3NodeWrite() +** fts3NodeFree() +** +** When a b+tree is written to the database (either as a result of a merge +** or the pending-terms table being flushed), leaves are written into the +** database file as soon as they are completely populated. The interior of +** the tree is assembled in memory and written out only once all leaves have +** been populated and stored. This is Ok, as the b+-tree fanout is usually +** very large, meaning that the interior of the tree consumes relatively +** little memory. +*/ +struct SegmentNode { + SegmentNode *pParent; /* Parent node (or NULL for root node) */ + SegmentNode *pRight; /* Pointer to right-sibling */ + SegmentNode *pLeftmost; /* Pointer to left-most node of this depth */ + int nEntry; /* Number of terms written to node so far */ + char *zTerm; /* Pointer to previous term buffer */ + int nTerm; /* Number of bytes in zTerm */ + int nMalloc; /* Size of malloc'd buffer at zMalloc */ + char *zMalloc; /* Malloc'd space (possibly) used for zTerm */ + int nData; /* Bytes of valid data so far */ + char *aData; /* Node data */ +}; + +/* +** Valid values for the second argument to fts3SqlStmt(). +*/ +#define SQL_DELETE_CONTENT 0 +#define SQL_IS_EMPTY 1 +#define SQL_DELETE_ALL_CONTENT 2 +#define SQL_DELETE_ALL_SEGMENTS 3 +#define SQL_DELETE_ALL_SEGDIR 4 +#define SQL_DELETE_ALL_DOCSIZE 5 +#define SQL_DELETE_ALL_STAT 6 +#define SQL_SELECT_CONTENT_BY_ROWID 7 +#define SQL_NEXT_SEGMENT_INDEX 8 +#define SQL_INSERT_SEGMENTS 9 +#define SQL_NEXT_SEGMENTS_ID 10 +#define SQL_INSERT_SEGDIR 11 +#define SQL_SELECT_LEVEL 12 +#define SQL_SELECT_LEVEL_RANGE 13 +#define SQL_SELECT_LEVEL_COUNT 14 +#define SQL_SELECT_SEGDIR_MAX_LEVEL 15 +#define SQL_DELETE_SEGDIR_LEVEL 16 +#define SQL_DELETE_SEGMENTS_RANGE 17 +#define SQL_CONTENT_INSERT 18 +#define SQL_DELETE_DOCSIZE 19 +#define SQL_REPLACE_DOCSIZE 20 +#define SQL_SELECT_DOCSIZE 21 +#define SQL_SELECT_STAT 22 +#define SQL_REPLACE_STAT 23 + +#define SQL_SELECT_ALL_PREFIX_LEVEL 24 +#define SQL_DELETE_ALL_TERMS_SEGDIR 25 +#define SQL_DELETE_SEGDIR_RANGE 26 +#define SQL_SELECT_ALL_LANGID 27 +#define SQL_FIND_MERGE_LEVEL 28 +#define SQL_MAX_LEAF_NODE_ESTIMATE 29 +#define SQL_DELETE_SEGDIR_ENTRY 30 +#define SQL_SHIFT_SEGDIR_ENTRY 31 +#define SQL_SELECT_SEGDIR 32 +#define SQL_CHOMP_SEGDIR 33 +#define SQL_SEGMENT_IS_APPENDABLE 34 +#define SQL_SELECT_INDEXES 35 +#define SQL_SELECT_MXLEVEL 36 + +#define SQL_SELECT_LEVEL_RANGE2 37 +#define SQL_UPDATE_LEVEL_IDX 38 +#define SQL_UPDATE_LEVEL 39 + +/* +** This function is used to obtain an SQLite prepared statement handle +** for the statement identified by the second argument. If successful, +** *pp is set to the requested statement handle and SQLITE_OK returned. +** Otherwise, an SQLite error code is returned and *pp is set to 0. +** +** If argument apVal is not NULL, then it must point to an array with +** at least as many entries as the requested statement has bound +** parameters. The values are bound to the statements parameters before +** returning. +*/ +static int fts3SqlStmt( + Fts3Table *p, /* Virtual table handle */ + int eStmt, /* One of the SQL_XXX constants above */ + sqlite3_stmt **pp, /* OUT: Statement handle */ + sqlite3_value **apVal /* Values to bind to statement */ +){ + const char *azSql[] = { +/* 0 */ "DELETE FROM %Q.'%q_content' WHERE rowid = ?", +/* 1 */ "SELECT NOT EXISTS(SELECT docid FROM %Q.'%q_content' WHERE rowid!=?)", +/* 2 */ "DELETE FROM %Q.'%q_content'", +/* 3 */ "DELETE FROM %Q.'%q_segments'", +/* 4 */ "DELETE FROM %Q.'%q_segdir'", +/* 5 */ "DELETE FROM %Q.'%q_docsize'", +/* 6 */ "DELETE FROM %Q.'%q_stat'", +/* 7 */ "SELECT %s WHERE rowid=?", +/* 8 */ "SELECT (SELECT max(idx) FROM %Q.'%q_segdir' WHERE level = ?) + 1", +/* 9 */ "REPLACE INTO %Q.'%q_segments'(blockid, block) VALUES(?, ?)", +/* 10 */ "SELECT coalesce((SELECT max(blockid) FROM %Q.'%q_segments') + 1, 1)", +/* 11 */ "REPLACE INTO %Q.'%q_segdir' VALUES(?,?,?,?,?,?)", + + /* Return segments in order from oldest to newest.*/ +/* 12 */ "SELECT idx, start_block, leaves_end_block, end_block, root " + "FROM %Q.'%q_segdir' WHERE level = ? ORDER BY idx ASC", +/* 13 */ "SELECT idx, start_block, leaves_end_block, end_block, root " + "FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ?" + "ORDER BY level DESC, idx ASC", + +/* 14 */ "SELECT count(*) FROM %Q.'%q_segdir' WHERE level = ?", +/* 15 */ "SELECT max(level) FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ?", + +/* 16 */ "DELETE FROM %Q.'%q_segdir' WHERE level = ?", +/* 17 */ "DELETE FROM %Q.'%q_segments' WHERE blockid BETWEEN ? AND ?", +/* 18 */ "INSERT INTO %Q.'%q_content' VALUES(%s)", +/* 19 */ "DELETE FROM %Q.'%q_docsize' WHERE docid = ?", +/* 20 */ "REPLACE INTO %Q.'%q_docsize' VALUES(?,?)", +/* 21 */ "SELECT size FROM %Q.'%q_docsize' WHERE docid=?", +/* 22 */ "SELECT value FROM %Q.'%q_stat' WHERE id=?", +/* 23 */ "REPLACE INTO %Q.'%q_stat' VALUES(?,?)", +/* 24 */ "", +/* 25 */ "", + +/* 26 */ "DELETE FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ?", +/* 27 */ "SELECT DISTINCT level / (1024 * ?) FROM %Q.'%q_segdir'", + +/* This statement is used to determine which level to read the input from +** when performing an incremental merge. It returns the absolute level number +** of the oldest level in the db that contains at least ? segments. Or, +** if no level in the FTS index contains more than ? segments, the statement +** returns zero rows. */ +/* 28 */ "SELECT level FROM %Q.'%q_segdir' GROUP BY level HAVING count(*)>=?" + " ORDER BY (level %% 1024) ASC LIMIT 1", + +/* Estimate the upper limit on the number of leaf nodes in a new segment +** created by merging the oldest :2 segments from absolute level :1. See +** function sqlite3Fts3Incrmerge() for details. */ +/* 29 */ "SELECT 2 * total(1 + leaves_end_block - start_block) " + " FROM %Q.'%q_segdir' WHERE level = ? AND idx < ?", + +/* SQL_DELETE_SEGDIR_ENTRY +** Delete the %_segdir entry on absolute level :1 with index :2. */ +/* 30 */ "DELETE FROM %Q.'%q_segdir' WHERE level = ? AND idx = ?", + +/* SQL_SHIFT_SEGDIR_ENTRY +** Modify the idx value for the segment with idx=:3 on absolute level :2 +** to :1. */ +/* 31 */ "UPDATE %Q.'%q_segdir' SET idx = ? WHERE level=? AND idx=?", + +/* SQL_SELECT_SEGDIR +** Read a single entry from the %_segdir table. The entry from absolute +** level :1 with index value :2. */ +/* 32 */ "SELECT idx, start_block, leaves_end_block, end_block, root " + "FROM %Q.'%q_segdir' WHERE level = ? AND idx = ?", + +/* SQL_CHOMP_SEGDIR +** Update the start_block (:1) and root (:2) fields of the %_segdir +** entry located on absolute level :3 with index :4. */ +/* 33 */ "UPDATE %Q.'%q_segdir' SET start_block = ?, root = ?" + "WHERE level = ? AND idx = ?", + +/* SQL_SEGMENT_IS_APPENDABLE +** Return a single row if the segment with end_block=? is appendable. Or +** no rows otherwise. */ +/* 34 */ "SELECT 1 FROM %Q.'%q_segments' WHERE blockid=? AND block IS NULL", + +/* SQL_SELECT_INDEXES +** Return the list of valid segment indexes for absolute level ? */ +/* 35 */ "SELECT idx FROM %Q.'%q_segdir' WHERE level=? ORDER BY 1 ASC", + +/* SQL_SELECT_MXLEVEL +** Return the largest relative level in the FTS index or indexes. */ +/* 36 */ "SELECT max( level %% 1024 ) FROM %Q.'%q_segdir'", + + /* Return segments in order from oldest to newest.*/ +/* 37 */ "SELECT level, idx, end_block " + "FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ? " + "ORDER BY level DESC, idx ASC", + + /* Update statements used while promoting segments */ +/* 38 */ "UPDATE OR FAIL %Q.'%q_segdir' SET level=-1,idx=? " + "WHERE level=? AND idx=?", +/* 39 */ "UPDATE OR FAIL %Q.'%q_segdir' SET level=? WHERE level=-1" + + }; + int rc = SQLITE_OK; + sqlite3_stmt *pStmt; + + assert( SizeofArray(azSql)==SizeofArray(p->aStmt) ); + assert( eStmt=0 ); + + pStmt = p->aStmt[eStmt]; + if( !pStmt ){ + char *zSql; + if( eStmt==SQL_CONTENT_INSERT ){ + zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName, p->zWriteExprlist); + }else if( eStmt==SQL_SELECT_CONTENT_BY_ROWID ){ + zSql = sqlite3_mprintf(azSql[eStmt], p->zReadExprlist); + }else{ + zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName); + } + if( !zSql ){ + rc = SQLITE_NOMEM; + }else{ + rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, NULL); + sqlite3_free(zSql); + assert( rc==SQLITE_OK || pStmt==0 ); + p->aStmt[eStmt] = pStmt; + } + } + if( apVal ){ + int i; + int nParam = sqlite3_bind_parameter_count(pStmt); + for(i=0; rc==SQLITE_OK && inPendingData==0 ){ + sqlite3_stmt *pStmt; + rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_LEVEL, &pStmt, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_null(pStmt, 1); + sqlite3_step(pStmt); + rc = sqlite3_reset(pStmt); + } + } + + return rc; +} + +/* +** FTS maintains a separate indexes for each language-id (a 32-bit integer). +** Within each language id, a separate index is maintained to store the +** document terms, and each configured prefix size (configured the FTS +** "prefix=" option). And each index consists of multiple levels ("relative +** levels"). +** +** All three of these values (the language id, the specific index and the +** level within the index) are encoded in 64-bit integer values stored +** in the %_segdir table on disk. This function is used to convert three +** separate component values into the single 64-bit integer value that +** can be used to query the %_segdir table. +** +** Specifically, each language-id/index combination is allocated 1024 +** 64-bit integer level values ("absolute levels"). The main terms index +** for language-id 0 is allocate values 0-1023. The first prefix index +** (if any) for language-id 0 is allocated values 1024-2047. And so on. +** Language 1 indexes are allocated immediately following language 0. +** +** So, for a system with nPrefix prefix indexes configured, the block of +** absolute levels that corresponds to language-id iLangid and index +** iIndex starts at absolute level ((iLangid * (nPrefix+1) + iIndex) * 1024). +*/ +static sqlite3_int64 getAbsoluteLevel( + Fts3Table *p, /* FTS3 table handle */ + int iLangid, /* Language id */ + int iIndex, /* Index in p->aIndex[] */ + int iLevel /* Level of segments */ +){ + sqlite3_int64 iBase; /* First absolute level for iLangid/iIndex */ + assert( iLangid>=0 ); + assert( p->nIndex>0 ); + assert( iIndex>=0 && iIndexnIndex ); + + iBase = ((sqlite3_int64)iLangid * p->nIndex + iIndex) * FTS3_SEGDIR_MAXLEVEL; + return iBase + iLevel; +} + +/* +** Set *ppStmt to a statement handle that may be used to iterate through +** all rows in the %_segdir table, from oldest to newest. If successful, +** return SQLITE_OK. If an error occurs while preparing the statement, +** return an SQLite error code. +** +** There is only ever one instance of this SQL statement compiled for +** each FTS3 table. +** +** The statement returns the following columns from the %_segdir table: +** +** 0: idx +** 1: start_block +** 2: leaves_end_block +** 3: end_block +** 4: root +*/ +SQLITE_PRIVATE int sqlite3Fts3AllSegdirs( + Fts3Table *p, /* FTS3 table */ + int iLangid, /* Language being queried */ + int iIndex, /* Index for p->aIndex[] */ + int iLevel, /* Level to select (relative level) */ + sqlite3_stmt **ppStmt /* OUT: Compiled statement */ +){ + int rc; + sqlite3_stmt *pStmt = 0; + + assert( iLevel==FTS3_SEGCURSOR_ALL || iLevel>=0 ); + assert( iLevel=0 && iIndexnIndex ); + + if( iLevel<0 ){ + /* "SELECT * FROM %_segdir WHERE level BETWEEN ? AND ? ORDER BY ..." */ + rc = fts3SqlStmt(p, SQL_SELECT_LEVEL_RANGE, &pStmt, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex, 0)); + sqlite3_bind_int64(pStmt, 2, + getAbsoluteLevel(p, iLangid, iIndex, FTS3_SEGDIR_MAXLEVEL-1) + ); + } + }else{ + /* "SELECT * FROM %_segdir WHERE level = ? ORDER BY ..." */ + rc = fts3SqlStmt(p, SQL_SELECT_LEVEL, &pStmt, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex,iLevel)); + } + } + *ppStmt = pStmt; + return rc; +} + + +/* +** Append a single varint to a PendingList buffer. SQLITE_OK is returned +** if successful, or an SQLite error code otherwise. +** +** This function also serves to allocate the PendingList structure itself. +** For example, to create a new PendingList structure containing two +** varints: +** +** PendingList *p = 0; +** fts3PendingListAppendVarint(&p, 1); +** fts3PendingListAppendVarint(&p, 2); +*/ +static int fts3PendingListAppendVarint( + PendingList **pp, /* IN/OUT: Pointer to PendingList struct */ + sqlite3_int64 i /* Value to append to data */ +){ + PendingList *p = *pp; + + /* Allocate or grow the PendingList as required. */ + if( !p ){ + p = sqlite3_malloc(sizeof(*p) + 100); + if( !p ){ + return SQLITE_NOMEM; + } + p->nSpace = 100; + p->aData = (char *)&p[1]; + p->nData = 0; + } + else if( p->nData+FTS3_VARINT_MAX+1>p->nSpace ){ + int nNew = p->nSpace * 2; + p = sqlite3_realloc(p, sizeof(*p) + nNew); + if( !p ){ + sqlite3_free(*pp); + *pp = 0; + return SQLITE_NOMEM; + } + p->nSpace = nNew; + p->aData = (char *)&p[1]; + } + + /* Append the new serialized varint to the end of the list. */ + p->nData += sqlite3Fts3PutVarint(&p->aData[p->nData], i); + p->aData[p->nData] = '\0'; + *pp = p; + return SQLITE_OK; +} + +/* +** Add a docid/column/position entry to a PendingList structure. Non-zero +** is returned if the structure is sqlite3_realloced as part of adding +** the entry. Otherwise, zero. +** +** If an OOM error occurs, *pRc is set to SQLITE_NOMEM before returning. +** Zero is always returned in this case. Otherwise, if no OOM error occurs, +** it is set to SQLITE_OK. +*/ +static int fts3PendingListAppend( + PendingList **pp, /* IN/OUT: PendingList structure */ + sqlite3_int64 iDocid, /* Docid for entry to add */ + sqlite3_int64 iCol, /* Column for entry to add */ + sqlite3_int64 iPos, /* Position of term for entry to add */ + int *pRc /* OUT: Return code */ +){ + PendingList *p = *pp; + int rc = SQLITE_OK; + + assert( !p || p->iLastDocid<=iDocid ); + + if( !p || p->iLastDocid!=iDocid ){ + sqlite3_int64 iDelta = iDocid - (p ? p->iLastDocid : 0); + if( p ){ + assert( p->nDatanSpace ); + assert( p->aData[p->nData]==0 ); + p->nData++; + } + if( SQLITE_OK!=(rc = fts3PendingListAppendVarint(&p, iDelta)) ){ + goto pendinglistappend_out; + } + p->iLastCol = -1; + p->iLastPos = 0; + p->iLastDocid = iDocid; + } + if( iCol>0 && p->iLastCol!=iCol ){ + if( SQLITE_OK!=(rc = fts3PendingListAppendVarint(&p, 1)) + || SQLITE_OK!=(rc = fts3PendingListAppendVarint(&p, iCol)) + ){ + goto pendinglistappend_out; + } + p->iLastCol = iCol; + p->iLastPos = 0; + } + if( iCol>=0 ){ + assert( iPos>p->iLastPos || (iPos==0 && p->iLastPos==0) ); + rc = fts3PendingListAppendVarint(&p, 2+iPos-p->iLastPos); + if( rc==SQLITE_OK ){ + p->iLastPos = iPos; + } + } + + pendinglistappend_out: + *pRc = rc; + if( p!=*pp ){ + *pp = p; + return 1; + } + return 0; +} + +/* +** Free a PendingList object allocated by fts3PendingListAppend(). +*/ +static void fts3PendingListDelete(PendingList *pList){ + sqlite3_free(pList); +} + +/* +** Add an entry to one of the pending-terms hash tables. +*/ +static int fts3PendingTermsAddOne( + Fts3Table *p, + int iCol, + int iPos, + Fts3Hash *pHash, /* Pending terms hash table to add entry to */ + const char *zToken, + int nToken +){ + PendingList *pList; + int rc = SQLITE_OK; + + pList = (PendingList *)fts3HashFind(pHash, zToken, nToken); + if( pList ){ + p->nPendingData -= (pList->nData + nToken + sizeof(Fts3HashElem)); + } + if( fts3PendingListAppend(&pList, p->iPrevDocid, iCol, iPos, &rc) ){ + if( pList==fts3HashInsert(pHash, zToken, nToken, pList) ){ + /* Malloc failed while inserting the new entry. This can only + ** happen if there was no previous entry for this token. + */ + assert( 0==fts3HashFind(pHash, zToken, nToken) ); + sqlite3_free(pList); + rc = SQLITE_NOMEM; + } + } + if( rc==SQLITE_OK ){ + p->nPendingData += (pList->nData + nToken + sizeof(Fts3HashElem)); + } + return rc; +} + +/* +** Tokenize the nul-terminated string zText and add all tokens to the +** pending-terms hash-table. The docid used is that currently stored in +** p->iPrevDocid, and the column is specified by argument iCol. +** +** If successful, SQLITE_OK is returned. Otherwise, an SQLite error code. +*/ +static int fts3PendingTermsAdd( + Fts3Table *p, /* Table into which text will be inserted */ + int iLangid, /* Language id to use */ + const char *zText, /* Text of document to be inserted */ + int iCol, /* Column into which text is being inserted */ + u32 *pnWord /* IN/OUT: Incr. by number tokens inserted */ +){ + int rc; + int iStart = 0; + int iEnd = 0; + int iPos = 0; + int nWord = 0; + + char const *zToken; + int nToken = 0; + + sqlite3_tokenizer *pTokenizer = p->pTokenizer; + sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; + sqlite3_tokenizer_cursor *pCsr; + int (*xNext)(sqlite3_tokenizer_cursor *pCursor, + const char**,int*,int*,int*,int*); + + assert( pTokenizer && pModule ); + + /* If the user has inserted a NULL value, this function may be called with + ** zText==0. In this case, add zero token entries to the hash table and + ** return early. */ + if( zText==0 ){ + *pnWord = 0; + return SQLITE_OK; + } + + rc = sqlite3Fts3OpenTokenizer(pTokenizer, iLangid, zText, -1, &pCsr); + if( rc!=SQLITE_OK ){ + return rc; + } + + xNext = pModule->xNext; + while( SQLITE_OK==rc + && SQLITE_OK==(rc = xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos)) + ){ + int i; + if( iPos>=nWord ) nWord = iPos+1; + + /* Positions cannot be negative; we use -1 as a terminator internally. + ** Tokens must have a non-zero length. + */ + if( iPos<0 || !zToken || nToken<=0 ){ + rc = SQLITE_ERROR; + break; + } + + /* Add the term to the terms index */ + rc = fts3PendingTermsAddOne( + p, iCol, iPos, &p->aIndex[0].hPending, zToken, nToken + ); + + /* Add the term to each of the prefix indexes that it is not too + ** short for. */ + for(i=1; rc==SQLITE_OK && inIndex; i++){ + struct Fts3Index *pIndex = &p->aIndex[i]; + if( nTokennPrefix ) continue; + rc = fts3PendingTermsAddOne( + p, iCol, iPos, &pIndex->hPending, zToken, pIndex->nPrefix + ); + } + } + + pModule->xClose(pCsr); + *pnWord += nWord; + return (rc==SQLITE_DONE ? SQLITE_OK : rc); +} + +/* +** Calling this function indicates that subsequent calls to +** fts3PendingTermsAdd() are to add term/position-list pairs for the +** contents of the document with docid iDocid. +*/ +static int fts3PendingTermsDocid( + Fts3Table *p, /* Full-text table handle */ + int iLangid, /* Language id of row being written */ + sqlite_int64 iDocid /* Docid of row being written */ +){ + assert( iLangid>=0 ); + + /* TODO(shess) Explore whether partially flushing the buffer on + ** forced-flush would provide better performance. I suspect that if + ** we ordered the doclists by size and flushed the largest until the + ** buffer was half empty, that would let the less frequent terms + ** generate longer doclists. + */ + if( iDocid<=p->iPrevDocid + || p->iPrevLangid!=iLangid + || p->nPendingData>p->nMaxPendingData + ){ + int rc = sqlite3Fts3PendingTermsFlush(p); + if( rc!=SQLITE_OK ) return rc; + } + p->iPrevDocid = iDocid; + p->iPrevLangid = iLangid; + return SQLITE_OK; +} + +/* +** Discard the contents of the pending-terms hash tables. +*/ +SQLITE_PRIVATE void sqlite3Fts3PendingTermsClear(Fts3Table *p){ + int i; + for(i=0; inIndex; i++){ + Fts3HashElem *pElem; + Fts3Hash *pHash = &p->aIndex[i].hPending; + for(pElem=fts3HashFirst(pHash); pElem; pElem=fts3HashNext(pElem)){ + PendingList *pList = (PendingList *)fts3HashData(pElem); + fts3PendingListDelete(pList); + } + fts3HashClear(pHash); + } + p->nPendingData = 0; +} + +/* +** This function is called by the xUpdate() method as part of an INSERT +** operation. It adds entries for each term in the new record to the +** pendingTerms hash table. +** +** Argument apVal is the same as the similarly named argument passed to +** fts3InsertData(). Parameter iDocid is the docid of the new row. +*/ +static int fts3InsertTerms( + Fts3Table *p, + int iLangid, + sqlite3_value **apVal, + u32 *aSz +){ + int i; /* Iterator variable */ + for(i=2; inColumn+2; i++){ + int iCol = i-2; + if( p->abNotindexed[iCol]==0 ){ + const char *zText = (const char *)sqlite3_value_text(apVal[i]); + int rc = fts3PendingTermsAdd(p, iLangid, zText, iCol, &aSz[iCol]); + if( rc!=SQLITE_OK ){ + return rc; + } + aSz[p->nColumn] += sqlite3_value_bytes(apVal[i]); + } + } + return SQLITE_OK; +} + +/* +** This function is called by the xUpdate() method for an INSERT operation. +** The apVal parameter is passed a copy of the apVal argument passed by +** SQLite to the xUpdate() method. i.e: +** +** apVal[0] Not used for INSERT. +** apVal[1] rowid +** apVal[2] Left-most user-defined column +** ... +** apVal[p->nColumn+1] Right-most user-defined column +** apVal[p->nColumn+2] Hidden column with same name as table +** apVal[p->nColumn+3] Hidden "docid" column (alias for rowid) +** apVal[p->nColumn+4] Hidden languageid column +*/ +static int fts3InsertData( + Fts3Table *p, /* Full-text table */ + sqlite3_value **apVal, /* Array of values to insert */ + sqlite3_int64 *piDocid /* OUT: Docid for row just inserted */ +){ + int rc; /* Return code */ + sqlite3_stmt *pContentInsert; /* INSERT INTO %_content VALUES(...) */ + + if( p->zContentTbl ){ + sqlite3_value *pRowid = apVal[p->nColumn+3]; + if( sqlite3_value_type(pRowid)==SQLITE_NULL ){ + pRowid = apVal[1]; + } + if( sqlite3_value_type(pRowid)!=SQLITE_INTEGER ){ + return SQLITE_CONSTRAINT; + } + *piDocid = sqlite3_value_int64(pRowid); + return SQLITE_OK; + } + + /* Locate the statement handle used to insert data into the %_content + ** table. The SQL for this statement is: + ** + ** INSERT INTO %_content VALUES(?, ?, ?, ...) + ** + ** The statement features N '?' variables, where N is the number of user + ** defined columns in the FTS3 table, plus one for the docid field. + */ + rc = fts3SqlStmt(p, SQL_CONTENT_INSERT, &pContentInsert, &apVal[1]); + if( rc==SQLITE_OK && p->zLanguageid ){ + rc = sqlite3_bind_int( + pContentInsert, p->nColumn+2, + sqlite3_value_int(apVal[p->nColumn+4]) + ); + } + if( rc!=SQLITE_OK ) return rc; + + /* There is a quirk here. The users INSERT statement may have specified + ** a value for the "rowid" field, for the "docid" field, or for both. + ** Which is a problem, since "rowid" and "docid" are aliases for the + ** same value. For example: + ** + ** INSERT INTO fts3tbl(rowid, docid) VALUES(1, 2); + ** + ** In FTS3, this is an error. It is an error to specify non-NULL values + ** for both docid and some other rowid alias. + */ + if( SQLITE_NULL!=sqlite3_value_type(apVal[3+p->nColumn]) ){ + if( SQLITE_NULL==sqlite3_value_type(apVal[0]) + && SQLITE_NULL!=sqlite3_value_type(apVal[1]) + ){ + /* A rowid/docid conflict. */ + return SQLITE_ERROR; + } + rc = sqlite3_bind_value(pContentInsert, 1, apVal[3+p->nColumn]); + if( rc!=SQLITE_OK ) return rc; + } + + /* Execute the statement to insert the record. Set *piDocid to the + ** new docid value. + */ + sqlite3_step(pContentInsert); + rc = sqlite3_reset(pContentInsert); + + *piDocid = sqlite3_last_insert_rowid(p->db); + return rc; +} + + + +/* +** Remove all data from the FTS3 table. Clear the hash table containing +** pending terms. +*/ +static int fts3DeleteAll(Fts3Table *p, int bContent){ + int rc = SQLITE_OK; /* Return code */ + + /* Discard the contents of the pending-terms hash table. */ + sqlite3Fts3PendingTermsClear(p); + + /* Delete everything from the shadow tables. Except, leave %_content as + ** is if bContent is false. */ + assert( p->zContentTbl==0 || bContent==0 ); + if( bContent ) fts3SqlExec(&rc, p, SQL_DELETE_ALL_CONTENT, 0); + fts3SqlExec(&rc, p, SQL_DELETE_ALL_SEGMENTS, 0); + fts3SqlExec(&rc, p, SQL_DELETE_ALL_SEGDIR, 0); + if( p->bHasDocsize ){ + fts3SqlExec(&rc, p, SQL_DELETE_ALL_DOCSIZE, 0); + } + if( p->bHasStat ){ + fts3SqlExec(&rc, p, SQL_DELETE_ALL_STAT, 0); + } + return rc; +} + +/* +** +*/ +static int langidFromSelect(Fts3Table *p, sqlite3_stmt *pSelect){ + int iLangid = 0; + if( p->zLanguageid ) iLangid = sqlite3_column_int(pSelect, p->nColumn+1); + return iLangid; +} + +/* +** The first element in the apVal[] array is assumed to contain the docid +** (an integer) of a row about to be deleted. Remove all terms from the +** full-text index. +*/ +static void fts3DeleteTerms( + int *pRC, /* Result code */ + Fts3Table *p, /* The FTS table to delete from */ + sqlite3_value *pRowid, /* The docid to be deleted */ + u32 *aSz, /* Sizes of deleted document written here */ + int *pbFound /* OUT: Set to true if row really does exist */ +){ + int rc; + sqlite3_stmt *pSelect; + + assert( *pbFound==0 ); + if( *pRC ) return; + rc = fts3SqlStmt(p, SQL_SELECT_CONTENT_BY_ROWID, &pSelect, &pRowid); + if( rc==SQLITE_OK ){ + if( SQLITE_ROW==sqlite3_step(pSelect) ){ + int i; + int iLangid = langidFromSelect(p, pSelect); + rc = fts3PendingTermsDocid(p, iLangid, sqlite3_column_int64(pSelect, 0)); + for(i=1; rc==SQLITE_OK && i<=p->nColumn; i++){ + int iCol = i-1; + if( p->abNotindexed[iCol]==0 ){ + const char *zText = (const char *)sqlite3_column_text(pSelect, i); + rc = fts3PendingTermsAdd(p, iLangid, zText, -1, &aSz[iCol]); + aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i); + } + } + if( rc!=SQLITE_OK ){ + sqlite3_reset(pSelect); + *pRC = rc; + return; + } + *pbFound = 1; + } + rc = sqlite3_reset(pSelect); + }else{ + sqlite3_reset(pSelect); + } + *pRC = rc; +} + +/* +** Forward declaration to account for the circular dependency between +** functions fts3SegmentMerge() and fts3AllocateSegdirIdx(). +*/ +static int fts3SegmentMerge(Fts3Table *, int, int, int); + +/* +** This function allocates a new level iLevel index in the segdir table. +** Usually, indexes are allocated within a level sequentially starting +** with 0, so the allocated index is one greater than the value returned +** by: +** +** SELECT max(idx) FROM %_segdir WHERE level = :iLevel +** +** However, if there are already FTS3_MERGE_COUNT indexes at the requested +** level, they are merged into a single level (iLevel+1) segment and the +** allocated index is 0. +** +** If successful, *piIdx is set to the allocated index slot and SQLITE_OK +** returned. Otherwise, an SQLite error code is returned. +*/ +static int fts3AllocateSegdirIdx( + Fts3Table *p, + int iLangid, /* Language id */ + int iIndex, /* Index for p->aIndex */ + int iLevel, + int *piIdx +){ + int rc; /* Return Code */ + sqlite3_stmt *pNextIdx; /* Query for next idx at level iLevel */ + int iNext = 0; /* Result of query pNextIdx */ + + assert( iLangid>=0 ); + assert( p->nIndex>=1 ); + + /* Set variable iNext to the next available segdir index at level iLevel. */ + rc = fts3SqlStmt(p, SQL_NEXT_SEGMENT_INDEX, &pNextIdx, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64( + pNextIdx, 1, getAbsoluteLevel(p, iLangid, iIndex, iLevel) + ); + if( SQLITE_ROW==sqlite3_step(pNextIdx) ){ + iNext = sqlite3_column_int(pNextIdx, 0); + } + rc = sqlite3_reset(pNextIdx); + } + + if( rc==SQLITE_OK ){ + /* If iNext is FTS3_MERGE_COUNT, indicating that level iLevel is already + ** full, merge all segments in level iLevel into a single iLevel+1 + ** segment and allocate (newly freed) index 0 at level iLevel. Otherwise, + ** if iNext is less than FTS3_MERGE_COUNT, allocate index iNext. + */ + if( iNext>=FTS3_MERGE_COUNT ){ + fts3LogMerge(16, getAbsoluteLevel(p, iLangid, iIndex, iLevel)); + rc = fts3SegmentMerge(p, iLangid, iIndex, iLevel); + *piIdx = 0; + }else{ + *piIdx = iNext; + } + } + + return rc; +} + +/* +** The %_segments table is declared as follows: +** +** CREATE TABLE %_segments(blockid INTEGER PRIMARY KEY, block BLOB) +** +** This function reads data from a single row of the %_segments table. The +** specific row is identified by the iBlockid parameter. If paBlob is not +** NULL, then a buffer is allocated using sqlite3_malloc() and populated +** with the contents of the blob stored in the "block" column of the +** identified table row is. Whether or not paBlob is NULL, *pnBlob is set +** to the size of the blob in bytes before returning. +** +** If an error occurs, or the table does not contain the specified row, +** an SQLite error code is returned. Otherwise, SQLITE_OK is returned. If +** paBlob is non-NULL, then it is the responsibility of the caller to +** eventually free the returned buffer. +** +** This function may leave an open sqlite3_blob* handle in the +** Fts3Table.pSegments variable. This handle is reused by subsequent calls +** to this function. The handle may be closed by calling the +** sqlite3Fts3SegmentsClose() function. Reusing a blob handle is a handy +** performance improvement, but the blob handle should always be closed +** before control is returned to the user (to prevent a lock being held +** on the database file for longer than necessary). Thus, any virtual table +** method (xFilter etc.) that may directly or indirectly call this function +** must call sqlite3Fts3SegmentsClose() before returning. +*/ +SQLITE_PRIVATE int sqlite3Fts3ReadBlock( + Fts3Table *p, /* FTS3 table handle */ + sqlite3_int64 iBlockid, /* Access the row with blockid=$iBlockid */ + char **paBlob, /* OUT: Blob data in malloc'd buffer */ + int *pnBlob, /* OUT: Size of blob data */ + int *pnLoad /* OUT: Bytes actually loaded */ +){ + int rc; /* Return code */ + + /* pnBlob must be non-NULL. paBlob may be NULL or non-NULL. */ + assert( pnBlob ); + + if( p->pSegments ){ + rc = sqlite3_blob_reopen(p->pSegments, iBlockid); + }else{ + if( 0==p->zSegmentsTbl ){ + p->zSegmentsTbl = sqlite3_mprintf("%s_segments", p->zName); + if( 0==p->zSegmentsTbl ) return SQLITE_NOMEM; + } + rc = sqlite3_blob_open( + p->db, p->zDb, p->zSegmentsTbl, "block", iBlockid, 0, &p->pSegments + ); + } + + if( rc==SQLITE_OK ){ + int nByte = sqlite3_blob_bytes(p->pSegments); + *pnBlob = nByte; + if( paBlob ){ + char *aByte = sqlite3_malloc(nByte + FTS3_NODE_PADDING); + if( !aByte ){ + rc = SQLITE_NOMEM; + }else{ + if( pnLoad && nByte>(FTS3_NODE_CHUNK_THRESHOLD) ){ + nByte = FTS3_NODE_CHUNKSIZE; + *pnLoad = nByte; + } + rc = sqlite3_blob_read(p->pSegments, aByte, nByte, 0); + memset(&aByte[nByte], 0, FTS3_NODE_PADDING); + if( rc!=SQLITE_OK ){ + sqlite3_free(aByte); + aByte = 0; + } + } + *paBlob = aByte; + } + } + + return rc; +} + +/* +** Close the blob handle at p->pSegments, if it is open. See comments above +** the sqlite3Fts3ReadBlock() function for details. +*/ +SQLITE_PRIVATE void sqlite3Fts3SegmentsClose(Fts3Table *p){ + sqlite3_blob_close(p->pSegments); + p->pSegments = 0; +} + +static int fts3SegReaderIncrRead(Fts3SegReader *pReader){ + int nRead; /* Number of bytes to read */ + int rc; /* Return code */ + + nRead = MIN(pReader->nNode - pReader->nPopulate, FTS3_NODE_CHUNKSIZE); + rc = sqlite3_blob_read( + pReader->pBlob, + &pReader->aNode[pReader->nPopulate], + nRead, + pReader->nPopulate + ); + + if( rc==SQLITE_OK ){ + pReader->nPopulate += nRead; + memset(&pReader->aNode[pReader->nPopulate], 0, FTS3_NODE_PADDING); + if( pReader->nPopulate==pReader->nNode ){ + sqlite3_blob_close(pReader->pBlob); + pReader->pBlob = 0; + pReader->nPopulate = 0; + } + } + return rc; +} + +static int fts3SegReaderRequire(Fts3SegReader *pReader, char *pFrom, int nByte){ + int rc = SQLITE_OK; + assert( !pReader->pBlob + || (pFrom>=pReader->aNode && pFrom<&pReader->aNode[pReader->nNode]) + ); + while( pReader->pBlob && rc==SQLITE_OK + && (pFrom - pReader->aNode + nByte)>pReader->nPopulate + ){ + rc = fts3SegReaderIncrRead(pReader); + } + return rc; +} + +/* +** Set an Fts3SegReader cursor to point at EOF. +*/ +static void fts3SegReaderSetEof(Fts3SegReader *pSeg){ + if( !fts3SegReaderIsRootOnly(pSeg) ){ + sqlite3_free(pSeg->aNode); + sqlite3_blob_close(pSeg->pBlob); + pSeg->pBlob = 0; + } + pSeg->aNode = 0; +} + +/* +** Move the iterator passed as the first argument to the next term in the +** segment. If successful, SQLITE_OK is returned. If there is no next term, +** SQLITE_DONE. Otherwise, an SQLite error code. +*/ +static int fts3SegReaderNext( + Fts3Table *p, + Fts3SegReader *pReader, + int bIncr +){ + int rc; /* Return code of various sub-routines */ + char *pNext; /* Cursor variable */ + int nPrefix; /* Number of bytes in term prefix */ + int nSuffix; /* Number of bytes in term suffix */ + + if( !pReader->aDoclist ){ + pNext = pReader->aNode; + }else{ + pNext = &pReader->aDoclist[pReader->nDoclist]; + } + + if( !pNext || pNext>=&pReader->aNode[pReader->nNode] ){ + + if( fts3SegReaderIsPending(pReader) ){ + Fts3HashElem *pElem = *(pReader->ppNextElem); + if( pElem==0 ){ + pReader->aNode = 0; + }else{ + PendingList *pList = (PendingList *)fts3HashData(pElem); + pReader->zTerm = (char *)fts3HashKey(pElem); + pReader->nTerm = fts3HashKeysize(pElem); + pReader->nNode = pReader->nDoclist = pList->nData + 1; + pReader->aNode = pReader->aDoclist = pList->aData; + pReader->ppNextElem++; + assert( pReader->aNode ); + } + return SQLITE_OK; + } + + fts3SegReaderSetEof(pReader); + + /* If iCurrentBlock>=iLeafEndBlock, this is an EOF condition. All leaf + ** blocks have already been traversed. */ + assert( pReader->iCurrentBlock<=pReader->iLeafEndBlock ); + if( pReader->iCurrentBlock>=pReader->iLeafEndBlock ){ + return SQLITE_OK; + } + + rc = sqlite3Fts3ReadBlock( + p, ++pReader->iCurrentBlock, &pReader->aNode, &pReader->nNode, + (bIncr ? &pReader->nPopulate : 0) + ); + if( rc!=SQLITE_OK ) return rc; + assert( pReader->pBlob==0 ); + if( bIncr && pReader->nPopulatenNode ){ + pReader->pBlob = p->pSegments; + p->pSegments = 0; + } + pNext = pReader->aNode; + } + + assert( !fts3SegReaderIsPending(pReader) ); + + rc = fts3SegReaderRequire(pReader, pNext, FTS3_VARINT_MAX*2); + if( rc!=SQLITE_OK ) return rc; + + /* Because of the FTS3_NODE_PADDING bytes of padding, the following is + ** safe (no risk of overread) even if the node data is corrupted. */ + pNext += fts3GetVarint32(pNext, &nPrefix); + pNext += fts3GetVarint32(pNext, &nSuffix); + if( nPrefix<0 || nSuffix<=0 + || &pNext[nSuffix]>&pReader->aNode[pReader->nNode] + ){ + return FTS_CORRUPT_VTAB; + } + + if( nPrefix+nSuffix>pReader->nTermAlloc ){ + int nNew = (nPrefix+nSuffix)*2; + char *zNew = sqlite3_realloc(pReader->zTerm, nNew); + if( !zNew ){ + return SQLITE_NOMEM; + } + pReader->zTerm = zNew; + pReader->nTermAlloc = nNew; + } + + rc = fts3SegReaderRequire(pReader, pNext, nSuffix+FTS3_VARINT_MAX); + if( rc!=SQLITE_OK ) return rc; + + memcpy(&pReader->zTerm[nPrefix], pNext, nSuffix); + pReader->nTerm = nPrefix+nSuffix; + pNext += nSuffix; + pNext += fts3GetVarint32(pNext, &pReader->nDoclist); + pReader->aDoclist = pNext; + pReader->pOffsetList = 0; + + /* Check that the doclist does not appear to extend past the end of the + ** b-tree node. And that the final byte of the doclist is 0x00. If either + ** of these statements is untrue, then the data structure is corrupt. + */ + if( &pReader->aDoclist[pReader->nDoclist]>&pReader->aNode[pReader->nNode] + || (pReader->nPopulate==0 && pReader->aDoclist[pReader->nDoclist-1]) + ){ + return FTS_CORRUPT_VTAB; + } + return SQLITE_OK; +} + +/* +** Set the SegReader to point to the first docid in the doclist associated +** with the current term. +*/ +static int fts3SegReaderFirstDocid(Fts3Table *pTab, Fts3SegReader *pReader){ + int rc = SQLITE_OK; + assert( pReader->aDoclist ); + assert( !pReader->pOffsetList ); + if( pTab->bDescIdx && fts3SegReaderIsPending(pReader) ){ + u8 bEof = 0; + pReader->iDocid = 0; + pReader->nOffsetList = 0; + sqlite3Fts3DoclistPrev(0, + pReader->aDoclist, pReader->nDoclist, &pReader->pOffsetList, + &pReader->iDocid, &pReader->nOffsetList, &bEof + ); + }else{ + rc = fts3SegReaderRequire(pReader, pReader->aDoclist, FTS3_VARINT_MAX); + if( rc==SQLITE_OK ){ + int n = sqlite3Fts3GetVarint(pReader->aDoclist, &pReader->iDocid); + pReader->pOffsetList = &pReader->aDoclist[n]; + } + } + return rc; +} + +/* +** Advance the SegReader to point to the next docid in the doclist +** associated with the current term. +** +** If arguments ppOffsetList and pnOffsetList are not NULL, then +** *ppOffsetList is set to point to the first column-offset list +** in the doclist entry (i.e. immediately past the docid varint). +** *pnOffsetList is set to the length of the set of column-offset +** lists, not including the nul-terminator byte. For example: +*/ +static int fts3SegReaderNextDocid( + Fts3Table *pTab, + Fts3SegReader *pReader, /* Reader to advance to next docid */ + char **ppOffsetList, /* OUT: Pointer to current position-list */ + int *pnOffsetList /* OUT: Length of *ppOffsetList in bytes */ +){ + int rc = SQLITE_OK; + char *p = pReader->pOffsetList; + char c = 0; + + assert( p ); + + if( pTab->bDescIdx && fts3SegReaderIsPending(pReader) ){ + /* A pending-terms seg-reader for an FTS4 table that uses order=desc. + ** Pending-terms doclists are always built up in ascending order, so + ** we have to iterate through them backwards here. */ + u8 bEof = 0; + if( ppOffsetList ){ + *ppOffsetList = pReader->pOffsetList; + *pnOffsetList = pReader->nOffsetList - 1; + } + sqlite3Fts3DoclistPrev(0, + pReader->aDoclist, pReader->nDoclist, &p, &pReader->iDocid, + &pReader->nOffsetList, &bEof + ); + if( bEof ){ + pReader->pOffsetList = 0; + }else{ + pReader->pOffsetList = p; + } + }else{ + char *pEnd = &pReader->aDoclist[pReader->nDoclist]; + + /* Pointer p currently points at the first byte of an offset list. The + ** following block advances it to point one byte past the end of + ** the same offset list. */ + while( 1 ){ + + /* The following line of code (and the "p++" below the while() loop) is + ** normally all that is required to move pointer p to the desired + ** position. The exception is if this node is being loaded from disk + ** incrementally and pointer "p" now points to the first byte past + ** the populated part of pReader->aNode[]. + */ + while( *p | c ) c = *p++ & 0x80; + assert( *p==0 ); + + if( pReader->pBlob==0 || p<&pReader->aNode[pReader->nPopulate] ) break; + rc = fts3SegReaderIncrRead(pReader); + if( rc!=SQLITE_OK ) return rc; + } + p++; + + /* If required, populate the output variables with a pointer to and the + ** size of the previous offset-list. + */ + if( ppOffsetList ){ + *ppOffsetList = pReader->pOffsetList; + *pnOffsetList = (int)(p - pReader->pOffsetList - 1); + } + + /* List may have been edited in place by fts3EvalNearTrim() */ + while( p=pEnd ){ + pReader->pOffsetList = 0; + }else{ + rc = fts3SegReaderRequire(pReader, p, FTS3_VARINT_MAX); + if( rc==SQLITE_OK ){ + sqlite3_int64 iDelta; + pReader->pOffsetList = p + sqlite3Fts3GetVarint(p, &iDelta); + if( pTab->bDescIdx ){ + pReader->iDocid -= iDelta; + }else{ + pReader->iDocid += iDelta; + } + } + } + } + + return SQLITE_OK; +} + + +SQLITE_PRIVATE int sqlite3Fts3MsrOvfl( + Fts3Cursor *pCsr, + Fts3MultiSegReader *pMsr, + int *pnOvfl +){ + Fts3Table *p = (Fts3Table*)pCsr->base.pVtab; + int nOvfl = 0; + int ii; + int rc = SQLITE_OK; + int pgsz = p->nPgsz; + + assert( p->bFts4 ); + assert( pgsz>0 ); + + for(ii=0; rc==SQLITE_OK && iinSegment; ii++){ + Fts3SegReader *pReader = pMsr->apSegment[ii]; + if( !fts3SegReaderIsPending(pReader) + && !fts3SegReaderIsRootOnly(pReader) + ){ + sqlite3_int64 jj; + for(jj=pReader->iStartBlock; jj<=pReader->iLeafEndBlock; jj++){ + int nBlob; + rc = sqlite3Fts3ReadBlock(p, jj, 0, &nBlob, 0); + if( rc!=SQLITE_OK ) break; + if( (nBlob+35)>pgsz ){ + nOvfl += (nBlob + 34)/pgsz; + } + } + } + } + *pnOvfl = nOvfl; + return rc; +} + +/* +** Free all allocations associated with the iterator passed as the +** second argument. +*/ +SQLITE_PRIVATE void sqlite3Fts3SegReaderFree(Fts3SegReader *pReader){ + if( pReader && !fts3SegReaderIsPending(pReader) ){ + sqlite3_free(pReader->zTerm); + if( !fts3SegReaderIsRootOnly(pReader) ){ + sqlite3_free(pReader->aNode); + sqlite3_blob_close(pReader->pBlob); + } + } + sqlite3_free(pReader); +} + +/* +** Allocate a new SegReader object. +*/ +SQLITE_PRIVATE int sqlite3Fts3SegReaderNew( + int iAge, /* Segment "age". */ + int bLookup, /* True for a lookup only */ + sqlite3_int64 iStartLeaf, /* First leaf to traverse */ + sqlite3_int64 iEndLeaf, /* Final leaf to traverse */ + sqlite3_int64 iEndBlock, /* Final block of segment */ + const char *zRoot, /* Buffer containing root node */ + int nRoot, /* Size of buffer containing root node */ + Fts3SegReader **ppReader /* OUT: Allocated Fts3SegReader */ +){ + Fts3SegReader *pReader; /* Newly allocated SegReader object */ + int nExtra = 0; /* Bytes to allocate segment root node */ + + assert( iStartLeaf<=iEndLeaf ); + if( iStartLeaf==0 ){ + nExtra = nRoot + FTS3_NODE_PADDING; + } + + pReader = (Fts3SegReader *)sqlite3_malloc(sizeof(Fts3SegReader) + nExtra); + if( !pReader ){ + return SQLITE_NOMEM; + } + memset(pReader, 0, sizeof(Fts3SegReader)); + pReader->iIdx = iAge; + pReader->bLookup = bLookup!=0; + pReader->iStartBlock = iStartLeaf; + pReader->iLeafEndBlock = iEndLeaf; + pReader->iEndBlock = iEndBlock; + + if( nExtra ){ + /* The entire segment is stored in the root node. */ + pReader->aNode = (char *)&pReader[1]; + pReader->rootOnly = 1; + pReader->nNode = nRoot; + memcpy(pReader->aNode, zRoot, nRoot); + memset(&pReader->aNode[nRoot], 0, FTS3_NODE_PADDING); + }else{ + pReader->iCurrentBlock = iStartLeaf-1; + } + *ppReader = pReader; + return SQLITE_OK; +} + +/* +** This is a comparison function used as a qsort() callback when sorting +** an array of pending terms by term. This occurs as part of flushing +** the contents of the pending-terms hash table to the database. +*/ +static int fts3CompareElemByTerm(const void *lhs, const void *rhs){ + char *z1 = fts3HashKey(*(Fts3HashElem **)lhs); + char *z2 = fts3HashKey(*(Fts3HashElem **)rhs); + int n1 = fts3HashKeysize(*(Fts3HashElem **)lhs); + int n2 = fts3HashKeysize(*(Fts3HashElem **)rhs); + + int n = (n1aIndex */ + const char *zTerm, /* Term to search for */ + int nTerm, /* Size of buffer zTerm */ + int bPrefix, /* True for a prefix iterator */ + Fts3SegReader **ppReader /* OUT: SegReader for pending-terms */ +){ + Fts3SegReader *pReader = 0; /* Fts3SegReader object to return */ + Fts3HashElem *pE; /* Iterator variable */ + Fts3HashElem **aElem = 0; /* Array of term hash entries to scan */ + int nElem = 0; /* Size of array at aElem */ + int rc = SQLITE_OK; /* Return Code */ + Fts3Hash *pHash; + + pHash = &p->aIndex[iIndex].hPending; + if( bPrefix ){ + int nAlloc = 0; /* Size of allocated array at aElem */ + + for(pE=fts3HashFirst(pHash); pE; pE=fts3HashNext(pE)){ + char *zKey = (char *)fts3HashKey(pE); + int nKey = fts3HashKeysize(pE); + if( nTerm==0 || (nKey>=nTerm && 0==memcmp(zKey, zTerm, nTerm)) ){ + if( nElem==nAlloc ){ + Fts3HashElem **aElem2; + nAlloc += 16; + aElem2 = (Fts3HashElem **)sqlite3_realloc( + aElem, nAlloc*sizeof(Fts3HashElem *) + ); + if( !aElem2 ){ + rc = SQLITE_NOMEM; + nElem = 0; + break; + } + aElem = aElem2; + } + + aElem[nElem++] = pE; + } + } + + /* If more than one term matches the prefix, sort the Fts3HashElem + ** objects in term order using qsort(). This uses the same comparison + ** callback as is used when flushing terms to disk. + */ + if( nElem>1 ){ + qsort(aElem, nElem, sizeof(Fts3HashElem *), fts3CompareElemByTerm); + } + + }else{ + /* The query is a simple term lookup that matches at most one term in + ** the index. All that is required is a straight hash-lookup. + ** + ** Because the stack address of pE may be accessed via the aElem pointer + ** below, the "Fts3HashElem *pE" must be declared so that it is valid + ** within this entire function, not just this "else{...}" block. + */ + pE = fts3HashFindElem(pHash, zTerm, nTerm); + if( pE ){ + aElem = &pE; + nElem = 1; + } + } + + if( nElem>0 ){ + int nByte = sizeof(Fts3SegReader) + (nElem+1)*sizeof(Fts3HashElem *); + pReader = (Fts3SegReader *)sqlite3_malloc(nByte); + if( !pReader ){ + rc = SQLITE_NOMEM; + }else{ + memset(pReader, 0, nByte); + pReader->iIdx = 0x7FFFFFFF; + pReader->ppNextElem = (Fts3HashElem **)&pReader[1]; + memcpy(pReader->ppNextElem, aElem, nElem*sizeof(Fts3HashElem *)); + } + } + + if( bPrefix ){ + sqlite3_free(aElem); + } + *ppReader = pReader; + return rc; +} + +/* +** Compare the entries pointed to by two Fts3SegReader structures. +** Comparison is as follows: +** +** 1) EOF is greater than not EOF. +** +** 2) The current terms (if any) are compared using memcmp(). If one +** term is a prefix of another, the longer term is considered the +** larger. +** +** 3) By segment age. An older segment is considered larger. +*/ +static int fts3SegReaderCmp(Fts3SegReader *pLhs, Fts3SegReader *pRhs){ + int rc; + if( pLhs->aNode && pRhs->aNode ){ + int rc2 = pLhs->nTerm - pRhs->nTerm; + if( rc2<0 ){ + rc = memcmp(pLhs->zTerm, pRhs->zTerm, pLhs->nTerm); + }else{ + rc = memcmp(pLhs->zTerm, pRhs->zTerm, pRhs->nTerm); + } + if( rc==0 ){ + rc = rc2; + } + }else{ + rc = (pLhs->aNode==0) - (pRhs->aNode==0); + } + if( rc==0 ){ + rc = pRhs->iIdx - pLhs->iIdx; + } + assert( rc!=0 ); + return rc; +} + +/* +** A different comparison function for SegReader structures. In this +** version, it is assumed that each SegReader points to an entry in +** a doclist for identical terms. Comparison is made as follows: +** +** 1) EOF (end of doclist in this case) is greater than not EOF. +** +** 2) By current docid. +** +** 3) By segment age. An older segment is considered larger. +*/ +static int fts3SegReaderDoclistCmp(Fts3SegReader *pLhs, Fts3SegReader *pRhs){ + int rc = (pLhs->pOffsetList==0)-(pRhs->pOffsetList==0); + if( rc==0 ){ + if( pLhs->iDocid==pRhs->iDocid ){ + rc = pRhs->iIdx - pLhs->iIdx; + }else{ + rc = (pLhs->iDocid > pRhs->iDocid) ? 1 : -1; + } + } + assert( pLhs->aNode && pRhs->aNode ); + return rc; +} +static int fts3SegReaderDoclistCmpRev(Fts3SegReader *pLhs, Fts3SegReader *pRhs){ + int rc = (pLhs->pOffsetList==0)-(pRhs->pOffsetList==0); + if( rc==0 ){ + if( pLhs->iDocid==pRhs->iDocid ){ + rc = pRhs->iIdx - pLhs->iIdx; + }else{ + rc = (pLhs->iDocid < pRhs->iDocid) ? 1 : -1; + } + } + assert( pLhs->aNode && pRhs->aNode ); + return rc; +} + +/* +** Compare the term that the Fts3SegReader object passed as the first argument +** points to with the term specified by arguments zTerm and nTerm. +** +** If the pSeg iterator is already at EOF, return 0. Otherwise, return +** -ve if the pSeg term is less than zTerm/nTerm, 0 if the two terms are +** equal, or +ve if the pSeg term is greater than zTerm/nTerm. +*/ +static int fts3SegReaderTermCmp( + Fts3SegReader *pSeg, /* Segment reader object */ + const char *zTerm, /* Term to compare to */ + int nTerm /* Size of term zTerm in bytes */ +){ + int res = 0; + if( pSeg->aNode ){ + if( pSeg->nTerm>nTerm ){ + res = memcmp(pSeg->zTerm, zTerm, nTerm); + }else{ + res = memcmp(pSeg->zTerm, zTerm, pSeg->nTerm); + } + if( res==0 ){ + res = pSeg->nTerm-nTerm; + } + } + return res; +} + +/* +** Argument apSegment is an array of nSegment elements. It is known that +** the final (nSegment-nSuspect) members are already in sorted order +** (according to the comparison function provided). This function shuffles +** the array around until all entries are in sorted order. +*/ +static void fts3SegReaderSort( + Fts3SegReader **apSegment, /* Array to sort entries of */ + int nSegment, /* Size of apSegment array */ + int nSuspect, /* Unsorted entry count */ + int (*xCmp)(Fts3SegReader *, Fts3SegReader *) /* Comparison function */ +){ + int i; /* Iterator variable */ + + assert( nSuspect<=nSegment ); + + if( nSuspect==nSegment ) nSuspect--; + for(i=nSuspect-1; i>=0; i--){ + int j; + for(j=i; j<(nSegment-1); j++){ + Fts3SegReader *pTmp; + if( xCmp(apSegment[j], apSegment[j+1])<0 ) break; + pTmp = apSegment[j+1]; + apSegment[j+1] = apSegment[j]; + apSegment[j] = pTmp; + } + } + +#ifndef NDEBUG + /* Check that the list really is sorted now. */ + for(i=0; i<(nSuspect-1); i++){ + assert( xCmp(apSegment[i], apSegment[i+1])<0 ); + } +#endif +} + +/* +** Insert a record into the %_segments table. +*/ +static int fts3WriteSegment( + Fts3Table *p, /* Virtual table handle */ + sqlite3_int64 iBlock, /* Block id for new block */ + char *z, /* Pointer to buffer containing block data */ + int n /* Size of buffer z in bytes */ +){ + sqlite3_stmt *pStmt; + int rc = fts3SqlStmt(p, SQL_INSERT_SEGMENTS, &pStmt, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pStmt, 1, iBlock); + sqlite3_bind_blob(pStmt, 2, z, n, SQLITE_STATIC); + sqlite3_step(pStmt); + rc = sqlite3_reset(pStmt); + } + return rc; +} + +/* +** Find the largest relative level number in the table. If successful, set +** *pnMax to this value and return SQLITE_OK. Otherwise, if an error occurs, +** set *pnMax to zero and return an SQLite error code. +*/ +SQLITE_PRIVATE int sqlite3Fts3MaxLevel(Fts3Table *p, int *pnMax){ + int rc; + int mxLevel = 0; + sqlite3_stmt *pStmt = 0; + + rc = fts3SqlStmt(p, SQL_SELECT_MXLEVEL, &pStmt, 0); + if( rc==SQLITE_OK ){ + if( SQLITE_ROW==sqlite3_step(pStmt) ){ + mxLevel = sqlite3_column_int(pStmt, 0); + } + rc = sqlite3_reset(pStmt); + } + *pnMax = mxLevel; + return rc; +} + +/* +** Insert a record into the %_segdir table. +*/ +static int fts3WriteSegdir( + Fts3Table *p, /* Virtual table handle */ + sqlite3_int64 iLevel, /* Value for "level" field (absolute level) */ + int iIdx, /* Value for "idx" field */ + sqlite3_int64 iStartBlock, /* Value for "start_block" field */ + sqlite3_int64 iLeafEndBlock, /* Value for "leaves_end_block" field */ + sqlite3_int64 iEndBlock, /* Value for "end_block" field */ + sqlite3_int64 nLeafData, /* Bytes of leaf data in segment */ + char *zRoot, /* Blob value for "root" field */ + int nRoot /* Number of bytes in buffer zRoot */ +){ + sqlite3_stmt *pStmt; + int rc = fts3SqlStmt(p, SQL_INSERT_SEGDIR, &pStmt, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pStmt, 1, iLevel); + sqlite3_bind_int(pStmt, 2, iIdx); + sqlite3_bind_int64(pStmt, 3, iStartBlock); + sqlite3_bind_int64(pStmt, 4, iLeafEndBlock); + if( nLeafData==0 ){ + sqlite3_bind_int64(pStmt, 5, iEndBlock); + }else{ + char *zEnd = sqlite3_mprintf("%lld %lld", iEndBlock, nLeafData); + if( !zEnd ) return SQLITE_NOMEM; + sqlite3_bind_text(pStmt, 5, zEnd, -1, sqlite3_free); + } + sqlite3_bind_blob(pStmt, 6, zRoot, nRoot, SQLITE_STATIC); + sqlite3_step(pStmt); + rc = sqlite3_reset(pStmt); + } + return rc; +} + +/* +** Return the size of the common prefix (if any) shared by zPrev and +** zNext, in bytes. For example, +** +** fts3PrefixCompress("abc", 3, "abcdef", 6) // returns 3 +** fts3PrefixCompress("abX", 3, "abcdef", 6) // returns 2 +** fts3PrefixCompress("abX", 3, "Xbcdef", 6) // returns 0 +*/ +static int fts3PrefixCompress( + const char *zPrev, /* Buffer containing previous term */ + int nPrev, /* Size of buffer zPrev in bytes */ + const char *zNext, /* Buffer containing next term */ + int nNext /* Size of buffer zNext in bytes */ +){ + int n; + UNUSED_PARAMETER(nNext); + for(n=0; nnData; /* Current size of node in bytes */ + int nReq = nData; /* Required space after adding zTerm */ + int nPrefix; /* Number of bytes of prefix compression */ + int nSuffix; /* Suffix length */ + + nPrefix = fts3PrefixCompress(pTree->zTerm, pTree->nTerm, zTerm, nTerm); + nSuffix = nTerm-nPrefix; + + nReq += sqlite3Fts3VarintLen(nPrefix)+sqlite3Fts3VarintLen(nSuffix)+nSuffix; + if( nReq<=p->nNodeSize || !pTree->zTerm ){ + + if( nReq>p->nNodeSize ){ + /* An unusual case: this is the first term to be added to the node + ** and the static node buffer (p->nNodeSize bytes) is not large + ** enough. Use a separately malloced buffer instead This wastes + ** p->nNodeSize bytes, but since this scenario only comes about when + ** the database contain two terms that share a prefix of almost 2KB, + ** this is not expected to be a serious problem. + */ + assert( pTree->aData==(char *)&pTree[1] ); + pTree->aData = (char *)sqlite3_malloc(nReq); + if( !pTree->aData ){ + return SQLITE_NOMEM; + } + } + + if( pTree->zTerm ){ + /* There is no prefix-length field for first term in a node */ + nData += sqlite3Fts3PutVarint(&pTree->aData[nData], nPrefix); + } + + nData += sqlite3Fts3PutVarint(&pTree->aData[nData], nSuffix); + memcpy(&pTree->aData[nData], &zTerm[nPrefix], nSuffix); + pTree->nData = nData + nSuffix; + pTree->nEntry++; + + if( isCopyTerm ){ + if( pTree->nMalloczMalloc, nTerm*2); + if( !zNew ){ + return SQLITE_NOMEM; + } + pTree->nMalloc = nTerm*2; + pTree->zMalloc = zNew; + } + pTree->zTerm = pTree->zMalloc; + memcpy(pTree->zTerm, zTerm, nTerm); + pTree->nTerm = nTerm; + }else{ + pTree->zTerm = (char *)zTerm; + pTree->nTerm = nTerm; + } + return SQLITE_OK; + } + } + + /* If control flows to here, it was not possible to append zTerm to the + ** current node. Create a new node (a right-sibling of the current node). + ** If this is the first node in the tree, the term is added to it. + ** + ** Otherwise, the term is not added to the new node, it is left empty for + ** now. Instead, the term is inserted into the parent of pTree. If pTree + ** has no parent, one is created here. + */ + pNew = (SegmentNode *)sqlite3_malloc(sizeof(SegmentNode) + p->nNodeSize); + if( !pNew ){ + return SQLITE_NOMEM; + } + memset(pNew, 0, sizeof(SegmentNode)); + pNew->nData = 1 + FTS3_VARINT_MAX; + pNew->aData = (char *)&pNew[1]; + + if( pTree ){ + SegmentNode *pParent = pTree->pParent; + rc = fts3NodeAddTerm(p, &pParent, isCopyTerm, zTerm, nTerm); + if( pTree->pParent==0 ){ + pTree->pParent = pParent; + } + pTree->pRight = pNew; + pNew->pLeftmost = pTree->pLeftmost; + pNew->pParent = pParent; + pNew->zMalloc = pTree->zMalloc; + pNew->nMalloc = pTree->nMalloc; + pTree->zMalloc = 0; + }else{ + pNew->pLeftmost = pNew; + rc = fts3NodeAddTerm(p, &pNew, isCopyTerm, zTerm, nTerm); + } + + *ppTree = pNew; + return rc; +} + +/* +** Helper function for fts3NodeWrite(). +*/ +static int fts3TreeFinishNode( + SegmentNode *pTree, + int iHeight, + sqlite3_int64 iLeftChild +){ + int nStart; + assert( iHeight>=1 && iHeight<128 ); + nStart = FTS3_VARINT_MAX - sqlite3Fts3VarintLen(iLeftChild); + pTree->aData[nStart] = (char)iHeight; + sqlite3Fts3PutVarint(&pTree->aData[nStart+1], iLeftChild); + return nStart; +} + +/* +** Write the buffer for the segment node pTree and all of its peers to the +** database. Then call this function recursively to write the parent of +** pTree and its peers to the database. +** +** Except, if pTree is a root node, do not write it to the database. Instead, +** set output variables *paRoot and *pnRoot to contain the root node. +** +** If successful, SQLITE_OK is returned and output variable *piLast is +** set to the largest blockid written to the database (or zero if no +** blocks were written to the db). Otherwise, an SQLite error code is +** returned. +*/ +static int fts3NodeWrite( + Fts3Table *p, /* Virtual table handle */ + SegmentNode *pTree, /* SegmentNode handle */ + int iHeight, /* Height of this node in tree */ + sqlite3_int64 iLeaf, /* Block id of first leaf node */ + sqlite3_int64 iFree, /* Block id of next free slot in %_segments */ + sqlite3_int64 *piLast, /* OUT: Block id of last entry written */ + char **paRoot, /* OUT: Data for root node */ + int *pnRoot /* OUT: Size of root node in bytes */ +){ + int rc = SQLITE_OK; + + if( !pTree->pParent ){ + /* Root node of the tree. */ + int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf); + *piLast = iFree-1; + *pnRoot = pTree->nData - nStart; + *paRoot = &pTree->aData[nStart]; + }else{ + SegmentNode *pIter; + sqlite3_int64 iNextFree = iFree; + sqlite3_int64 iNextLeaf = iLeaf; + for(pIter=pTree->pLeftmost; pIter && rc==SQLITE_OK; pIter=pIter->pRight){ + int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf); + int nWrite = pIter->nData - nStart; + + rc = fts3WriteSegment(p, iNextFree, &pIter->aData[nStart], nWrite); + iNextFree++; + iNextLeaf += (pIter->nEntry+1); + } + if( rc==SQLITE_OK ){ + assert( iNextLeaf==iFree ); + rc = fts3NodeWrite( + p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot + ); + } + } + + return rc; +} + +/* +** Free all memory allocations associated with the tree pTree. +*/ +static void fts3NodeFree(SegmentNode *pTree){ + if( pTree ){ + SegmentNode *p = pTree->pLeftmost; + fts3NodeFree(p->pParent); + while( p ){ + SegmentNode *pRight = p->pRight; + if( p->aData!=(char *)&p[1] ){ + sqlite3_free(p->aData); + } + assert( pRight==0 || p->zMalloc==0 ); + sqlite3_free(p->zMalloc); + sqlite3_free(p); + p = pRight; + } + } +} + +/* +** Add a term to the segment being constructed by the SegmentWriter object +** *ppWriter. When adding the first term to a segment, *ppWriter should +** be passed NULL. This function will allocate a new SegmentWriter object +** and return it via the input/output variable *ppWriter in this case. +** +** If successful, SQLITE_OK is returned. Otherwise, an SQLite error code. +*/ +static int fts3SegWriterAdd( + Fts3Table *p, /* Virtual table handle */ + SegmentWriter **ppWriter, /* IN/OUT: SegmentWriter handle */ + int isCopyTerm, /* True if buffer zTerm must be copied */ + const char *zTerm, /* Pointer to buffer containing term */ + int nTerm, /* Size of term in bytes */ + const char *aDoclist, /* Pointer to buffer containing doclist */ + int nDoclist /* Size of doclist in bytes */ +){ + int nPrefix; /* Size of term prefix in bytes */ + int nSuffix; /* Size of term suffix in bytes */ + int nReq; /* Number of bytes required on leaf page */ + int nData; + SegmentWriter *pWriter = *ppWriter; + + if( !pWriter ){ + int rc; + sqlite3_stmt *pStmt; + + /* Allocate the SegmentWriter structure */ + pWriter = (SegmentWriter *)sqlite3_malloc(sizeof(SegmentWriter)); + if( !pWriter ) return SQLITE_NOMEM; + memset(pWriter, 0, sizeof(SegmentWriter)); + *ppWriter = pWriter; + + /* Allocate a buffer in which to accumulate data */ + pWriter->aData = (char *)sqlite3_malloc(p->nNodeSize); + if( !pWriter->aData ) return SQLITE_NOMEM; + pWriter->nSize = p->nNodeSize; + + /* Find the next free blockid in the %_segments table */ + rc = fts3SqlStmt(p, SQL_NEXT_SEGMENTS_ID, &pStmt, 0); + if( rc!=SQLITE_OK ) return rc; + if( SQLITE_ROW==sqlite3_step(pStmt) ){ + pWriter->iFree = sqlite3_column_int64(pStmt, 0); + pWriter->iFirst = pWriter->iFree; + } + rc = sqlite3_reset(pStmt); + if( rc!=SQLITE_OK ) return rc; + } + nData = pWriter->nData; + + nPrefix = fts3PrefixCompress(pWriter->zTerm, pWriter->nTerm, zTerm, nTerm); + nSuffix = nTerm-nPrefix; + + /* Figure out how many bytes are required by this new entry */ + nReq = sqlite3Fts3VarintLen(nPrefix) + /* varint containing prefix size */ + sqlite3Fts3VarintLen(nSuffix) + /* varint containing suffix size */ + nSuffix + /* Term suffix */ + sqlite3Fts3VarintLen(nDoclist) + /* Size of doclist */ + nDoclist; /* Doclist data */ + + if( nData>0 && nData+nReq>p->nNodeSize ){ + int rc; + + /* The current leaf node is full. Write it out to the database. */ + rc = fts3WriteSegment(p, pWriter->iFree++, pWriter->aData, nData); + if( rc!=SQLITE_OK ) return rc; + p->nLeafAdd++; + + /* Add the current term to the interior node tree. The term added to + ** the interior tree must: + ** + ** a) be greater than the largest term on the leaf node just written + ** to the database (still available in pWriter->zTerm), and + ** + ** b) be less than or equal to the term about to be added to the new + ** leaf node (zTerm/nTerm). + ** + ** In other words, it must be the prefix of zTerm 1 byte longer than + ** the common prefix (if any) of zTerm and pWriter->zTerm. + */ + assert( nPrefixpTree, isCopyTerm, zTerm, nPrefix+1); + if( rc!=SQLITE_OK ) return rc; + + nData = 0; + pWriter->nTerm = 0; + + nPrefix = 0; + nSuffix = nTerm; + nReq = 1 + /* varint containing prefix size */ + sqlite3Fts3VarintLen(nTerm) + /* varint containing suffix size */ + nTerm + /* Term suffix */ + sqlite3Fts3VarintLen(nDoclist) + /* Size of doclist */ + nDoclist; /* Doclist data */ + } + + /* Increase the total number of bytes written to account for the new entry. */ + pWriter->nLeafData += nReq; + + /* If the buffer currently allocated is too small for this entry, realloc + ** the buffer to make it large enough. + */ + if( nReq>pWriter->nSize ){ + char *aNew = sqlite3_realloc(pWriter->aData, nReq); + if( !aNew ) return SQLITE_NOMEM; + pWriter->aData = aNew; + pWriter->nSize = nReq; + } + assert( nData+nReq<=pWriter->nSize ); + + /* Append the prefix-compressed term and doclist to the buffer. */ + nData += sqlite3Fts3PutVarint(&pWriter->aData[nData], nPrefix); + nData += sqlite3Fts3PutVarint(&pWriter->aData[nData], nSuffix); + memcpy(&pWriter->aData[nData], &zTerm[nPrefix], nSuffix); + nData += nSuffix; + nData += sqlite3Fts3PutVarint(&pWriter->aData[nData], nDoclist); + memcpy(&pWriter->aData[nData], aDoclist, nDoclist); + pWriter->nData = nData + nDoclist; + + /* Save the current term so that it can be used to prefix-compress the next. + ** If the isCopyTerm parameter is true, then the buffer pointed to by + ** zTerm is transient, so take a copy of the term data. Otherwise, just + ** store a copy of the pointer. + */ + if( isCopyTerm ){ + if( nTerm>pWriter->nMalloc ){ + char *zNew = sqlite3_realloc(pWriter->zMalloc, nTerm*2); + if( !zNew ){ + return SQLITE_NOMEM; + } + pWriter->nMalloc = nTerm*2; + pWriter->zMalloc = zNew; + pWriter->zTerm = zNew; + } + assert( pWriter->zTerm==pWriter->zMalloc ); + memcpy(pWriter->zTerm, zTerm, nTerm); + }else{ + pWriter->zTerm = (char *)zTerm; + } + pWriter->nTerm = nTerm; + + return SQLITE_OK; +} + +/* +** Flush all data associated with the SegmentWriter object pWriter to the +** database. This function must be called after all terms have been added +** to the segment using fts3SegWriterAdd(). If successful, SQLITE_OK is +** returned. Otherwise, an SQLite error code. +*/ +static int fts3SegWriterFlush( + Fts3Table *p, /* Virtual table handle */ + SegmentWriter *pWriter, /* SegmentWriter to flush to the db */ + sqlite3_int64 iLevel, /* Value for 'level' column of %_segdir */ + int iIdx /* Value for 'idx' column of %_segdir */ +){ + int rc; /* Return code */ + if( pWriter->pTree ){ + sqlite3_int64 iLast = 0; /* Largest block id written to database */ + sqlite3_int64 iLastLeaf; /* Largest leaf block id written to db */ + char *zRoot = NULL; /* Pointer to buffer containing root node */ + int nRoot = 0; /* Size of buffer zRoot */ + + iLastLeaf = pWriter->iFree; + rc = fts3WriteSegment(p, pWriter->iFree++, pWriter->aData, pWriter->nData); + if( rc==SQLITE_OK ){ + rc = fts3NodeWrite(p, pWriter->pTree, 1, + pWriter->iFirst, pWriter->iFree, &iLast, &zRoot, &nRoot); + } + if( rc==SQLITE_OK ){ + rc = fts3WriteSegdir(p, iLevel, iIdx, + pWriter->iFirst, iLastLeaf, iLast, pWriter->nLeafData, zRoot, nRoot); + } + }else{ + /* The entire tree fits on the root node. Write it to the segdir table. */ + rc = fts3WriteSegdir(p, iLevel, iIdx, + 0, 0, 0, pWriter->nLeafData, pWriter->aData, pWriter->nData); + } + p->nLeafAdd++; + return rc; +} + +/* +** Release all memory held by the SegmentWriter object passed as the +** first argument. +*/ +static void fts3SegWriterFree(SegmentWriter *pWriter){ + if( pWriter ){ + sqlite3_free(pWriter->aData); + sqlite3_free(pWriter->zMalloc); + fts3NodeFree(pWriter->pTree); + sqlite3_free(pWriter); + } +} + +/* +** The first value in the apVal[] array is assumed to contain an integer. +** This function tests if there exist any documents with docid values that +** are different from that integer. i.e. if deleting the document with docid +** pRowid would mean the FTS3 table were empty. +** +** If successful, *pisEmpty is set to true if the table is empty except for +** document pRowid, or false otherwise, and SQLITE_OK is returned. If an +** error occurs, an SQLite error code is returned. +*/ +static int fts3IsEmpty(Fts3Table *p, sqlite3_value *pRowid, int *pisEmpty){ + sqlite3_stmt *pStmt; + int rc; + if( p->zContentTbl ){ + /* If using the content=xxx option, assume the table is never empty */ + *pisEmpty = 0; + rc = SQLITE_OK; + }else{ + rc = fts3SqlStmt(p, SQL_IS_EMPTY, &pStmt, &pRowid); + if( rc==SQLITE_OK ){ + if( SQLITE_ROW==sqlite3_step(pStmt) ){ + *pisEmpty = sqlite3_column_int(pStmt, 0); + } + rc = sqlite3_reset(pStmt); + } + } + return rc; +} + +/* +** Set *pnMax to the largest segment level in the database for the index +** iIndex. +** +** Segment levels are stored in the 'level' column of the %_segdir table. +** +** Return SQLITE_OK if successful, or an SQLite error code if not. +*/ +static int fts3SegmentMaxLevel( + Fts3Table *p, + int iLangid, + int iIndex, + sqlite3_int64 *pnMax +){ + sqlite3_stmt *pStmt; + int rc; + assert( iIndex>=0 && iIndexnIndex ); + + /* Set pStmt to the compiled version of: + ** + ** SELECT max(level) FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ? + ** + ** (1024 is actually the value of macro FTS3_SEGDIR_PREFIXLEVEL_STR). + */ + rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR_MAX_LEVEL, &pStmt, 0); + if( rc!=SQLITE_OK ) return rc; + sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex, 0)); + sqlite3_bind_int64(pStmt, 2, + getAbsoluteLevel(p, iLangid, iIndex, FTS3_SEGDIR_MAXLEVEL-1) + ); + if( SQLITE_ROW==sqlite3_step(pStmt) ){ + *pnMax = sqlite3_column_int64(pStmt, 0); + } + return sqlite3_reset(pStmt); +} + +/* +** iAbsLevel is an absolute level that may be assumed to exist within +** the database. This function checks if it is the largest level number +** within its index. Assuming no error occurs, *pbMax is set to 1 if +** iAbsLevel is indeed the largest level, or 0 otherwise, and SQLITE_OK +** is returned. If an error occurs, an error code is returned and the +** final value of *pbMax is undefined. +*/ +static int fts3SegmentIsMaxLevel(Fts3Table *p, i64 iAbsLevel, int *pbMax){ + + /* Set pStmt to the compiled version of: + ** + ** SELECT max(level) FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ? + ** + ** (1024 is actually the value of macro FTS3_SEGDIR_PREFIXLEVEL_STR). + */ + sqlite3_stmt *pStmt; + int rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR_MAX_LEVEL, &pStmt, 0); + if( rc!=SQLITE_OK ) return rc; + sqlite3_bind_int64(pStmt, 1, iAbsLevel+1); + sqlite3_bind_int64(pStmt, 2, + ((iAbsLevel/FTS3_SEGDIR_MAXLEVEL)+1) * FTS3_SEGDIR_MAXLEVEL + ); + + *pbMax = 0; + if( SQLITE_ROW==sqlite3_step(pStmt) ){ + *pbMax = sqlite3_column_type(pStmt, 0)==SQLITE_NULL; + } + return sqlite3_reset(pStmt); +} + +/* +** Delete all entries in the %_segments table associated with the segment +** opened with seg-reader pSeg. This function does not affect the contents +** of the %_segdir table. +*/ +static int fts3DeleteSegment( + Fts3Table *p, /* FTS table handle */ + Fts3SegReader *pSeg /* Segment to delete */ +){ + int rc = SQLITE_OK; /* Return code */ + if( pSeg->iStartBlock ){ + sqlite3_stmt *pDelete; /* SQL statement to delete rows */ + rc = fts3SqlStmt(p, SQL_DELETE_SEGMENTS_RANGE, &pDelete, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pDelete, 1, pSeg->iStartBlock); + sqlite3_bind_int64(pDelete, 2, pSeg->iEndBlock); + sqlite3_step(pDelete); + rc = sqlite3_reset(pDelete); + } + } + return rc; +} + +/* +** This function is used after merging multiple segments into a single large +** segment to delete the old, now redundant, segment b-trees. Specifically, +** it: +** +** 1) Deletes all %_segments entries for the segments associated with +** each of the SegReader objects in the array passed as the third +** argument, and +** +** 2) deletes all %_segdir entries with level iLevel, or all %_segdir +** entries regardless of level if (iLevel<0). +** +** SQLITE_OK is returned if successful, otherwise an SQLite error code. +*/ +static int fts3DeleteSegdir( + Fts3Table *p, /* Virtual table handle */ + int iLangid, /* Language id */ + int iIndex, /* Index for p->aIndex */ + int iLevel, /* Level of %_segdir entries to delete */ + Fts3SegReader **apSegment, /* Array of SegReader objects */ + int nReader /* Size of array apSegment */ +){ + int rc = SQLITE_OK; /* Return Code */ + int i; /* Iterator variable */ + sqlite3_stmt *pDelete = 0; /* SQL statement to delete rows */ + + for(i=0; rc==SQLITE_OK && i=0 || iLevel==FTS3_SEGCURSOR_ALL ); + if( iLevel==FTS3_SEGCURSOR_ALL ){ + rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_RANGE, &pDelete, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pDelete, 1, getAbsoluteLevel(p, iLangid, iIndex, 0)); + sqlite3_bind_int64(pDelete, 2, + getAbsoluteLevel(p, iLangid, iIndex, FTS3_SEGDIR_MAXLEVEL-1) + ); + } + }else{ + rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_LEVEL, &pDelete, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64( + pDelete, 1, getAbsoluteLevel(p, iLangid, iIndex, iLevel) + ); + } + } + + if( rc==SQLITE_OK ){ + sqlite3_step(pDelete); + rc = sqlite3_reset(pDelete); + } + + return rc; +} + +/* +** When this function is called, buffer *ppList (size *pnList bytes) contains +** a position list that may (or may not) feature multiple columns. This +** function adjusts the pointer *ppList and the length *pnList so that they +** identify the subset of the position list that corresponds to column iCol. +** +** If there are no entries in the input position list for column iCol, then +** *pnList is set to zero before returning. +** +** If parameter bZero is non-zero, then any part of the input list following +** the end of the output list is zeroed before returning. +*/ +static void fts3ColumnFilter( + int iCol, /* Column to filter on */ + int bZero, /* Zero out anything following *ppList */ + char **ppList, /* IN/OUT: Pointer to position list */ + int *pnList /* IN/OUT: Size of buffer *ppList in bytes */ +){ + char *pList = *ppList; + int nList = *pnList; + char *pEnd = &pList[nList]; + int iCurrent = 0; + char *p = pList; + + assert( iCol>=0 ); + while( 1 ){ + char c = 0; + while( ppMsr->nBuffer ){ + char *pNew; + pMsr->nBuffer = nList*2; + pNew = (char *)sqlite3_realloc(pMsr->aBuffer, pMsr->nBuffer); + if( !pNew ) return SQLITE_NOMEM; + pMsr->aBuffer = pNew; + } + + memcpy(pMsr->aBuffer, pList, nList); + return SQLITE_OK; +} + +SQLITE_PRIVATE int sqlite3Fts3MsrIncrNext( + Fts3Table *p, /* Virtual table handle */ + Fts3MultiSegReader *pMsr, /* Multi-segment-reader handle */ + sqlite3_int64 *piDocid, /* OUT: Docid value */ + char **paPoslist, /* OUT: Pointer to position list */ + int *pnPoslist /* OUT: Size of position list in bytes */ +){ + int nMerge = pMsr->nAdvance; + Fts3SegReader **apSegment = pMsr->apSegment; + int (*xCmp)(Fts3SegReader *, Fts3SegReader *) = ( + p->bDescIdx ? fts3SegReaderDoclistCmpRev : fts3SegReaderDoclistCmp + ); + + if( nMerge==0 ){ + *paPoslist = 0; + return SQLITE_OK; + } + + while( 1 ){ + Fts3SegReader *pSeg; + pSeg = pMsr->apSegment[0]; + + if( pSeg->pOffsetList==0 ){ + *paPoslist = 0; + break; + }else{ + int rc; + char *pList; + int nList; + int j; + sqlite3_int64 iDocid = apSegment[0]->iDocid; + + rc = fts3SegReaderNextDocid(p, apSegment[0], &pList, &nList); + j = 1; + while( rc==SQLITE_OK + && jpOffsetList + && apSegment[j]->iDocid==iDocid + ){ + rc = fts3SegReaderNextDocid(p, apSegment[j], 0, 0); + j++; + } + if( rc!=SQLITE_OK ) return rc; + fts3SegReaderSort(pMsr->apSegment, nMerge, j, xCmp); + + if( nList>0 && fts3SegReaderIsPending(apSegment[0]) ){ + rc = fts3MsrBufferData(pMsr, pList, nList+1); + if( rc!=SQLITE_OK ) return rc; + assert( (pMsr->aBuffer[nList] & 0xFE)==0x00 ); + pList = pMsr->aBuffer; + } + + if( pMsr->iColFilter>=0 ){ + fts3ColumnFilter(pMsr->iColFilter, 1, &pList, &nList); + } + + if( nList>0 ){ + *paPoslist = pList; + *piDocid = iDocid; + *pnPoslist = nList; + break; + } + } + } + + return SQLITE_OK; +} + +static int fts3SegReaderStart( + Fts3Table *p, /* Virtual table handle */ + Fts3MultiSegReader *pCsr, /* Cursor object */ + const char *zTerm, /* Term searched for (or NULL) */ + int nTerm /* Length of zTerm in bytes */ +){ + int i; + int nSeg = pCsr->nSegment; + + /* If the Fts3SegFilter defines a specific term (or term prefix) to search + ** for, then advance each segment iterator until it points to a term of + ** equal or greater value than the specified term. This prevents many + ** unnecessary merge/sort operations for the case where single segment + ** b-tree leaf nodes contain more than one term. + */ + for(i=0; pCsr->bRestart==0 && inSegment; i++){ + int res = 0; + Fts3SegReader *pSeg = pCsr->apSegment[i]; + do { + int rc = fts3SegReaderNext(p, pSeg, 0); + if( rc!=SQLITE_OK ) return rc; + }while( zTerm && (res = fts3SegReaderTermCmp(pSeg, zTerm, nTerm))<0 ); + + if( pSeg->bLookup && res!=0 ){ + fts3SegReaderSetEof(pSeg); + } + } + fts3SegReaderSort(pCsr->apSegment, nSeg, nSeg, fts3SegReaderCmp); + + return SQLITE_OK; +} + +SQLITE_PRIVATE int sqlite3Fts3SegReaderStart( + Fts3Table *p, /* Virtual table handle */ + Fts3MultiSegReader *pCsr, /* Cursor object */ + Fts3SegFilter *pFilter /* Restrictions on range of iteration */ +){ + pCsr->pFilter = pFilter; + return fts3SegReaderStart(p, pCsr, pFilter->zTerm, pFilter->nTerm); +} + +SQLITE_PRIVATE int sqlite3Fts3MsrIncrStart( + Fts3Table *p, /* Virtual table handle */ + Fts3MultiSegReader *pCsr, /* Cursor object */ + int iCol, /* Column to match on. */ + const char *zTerm, /* Term to iterate through a doclist for */ + int nTerm /* Number of bytes in zTerm */ +){ + int i; + int rc; + int nSegment = pCsr->nSegment; + int (*xCmp)(Fts3SegReader *, Fts3SegReader *) = ( + p->bDescIdx ? fts3SegReaderDoclistCmpRev : fts3SegReaderDoclistCmp + ); + + assert( pCsr->pFilter==0 ); + assert( zTerm && nTerm>0 ); + + /* Advance each segment iterator until it points to the term zTerm/nTerm. */ + rc = fts3SegReaderStart(p, pCsr, zTerm, nTerm); + if( rc!=SQLITE_OK ) return rc; + + /* Determine how many of the segments actually point to zTerm/nTerm. */ + for(i=0; iapSegment[i]; + if( !pSeg->aNode || fts3SegReaderTermCmp(pSeg, zTerm, nTerm) ){ + break; + } + } + pCsr->nAdvance = i; + + /* Advance each of the segments to point to the first docid. */ + for(i=0; inAdvance; i++){ + rc = fts3SegReaderFirstDocid(p, pCsr->apSegment[i]); + if( rc!=SQLITE_OK ) return rc; + } + fts3SegReaderSort(pCsr->apSegment, i, i, xCmp); + + assert( iCol<0 || iColnColumn ); + pCsr->iColFilter = iCol; + + return SQLITE_OK; +} + +/* +** This function is called on a MultiSegReader that has been started using +** sqlite3Fts3MsrIncrStart(). One or more calls to MsrIncrNext() may also +** have been made. Calling this function puts the MultiSegReader in such +** a state that if the next two calls are: +** +** sqlite3Fts3SegReaderStart() +** sqlite3Fts3SegReaderStep() +** +** then the entire doclist for the term is available in +** MultiSegReader.aDoclist/nDoclist. +*/ +SQLITE_PRIVATE int sqlite3Fts3MsrIncrRestart(Fts3MultiSegReader *pCsr){ + int i; /* Used to iterate through segment-readers */ + + assert( pCsr->zTerm==0 ); + assert( pCsr->nTerm==0 ); + assert( pCsr->aDoclist==0 ); + assert( pCsr->nDoclist==0 ); + + pCsr->nAdvance = 0; + pCsr->bRestart = 1; + for(i=0; inSegment; i++){ + pCsr->apSegment[i]->pOffsetList = 0; + pCsr->apSegment[i]->nOffsetList = 0; + pCsr->apSegment[i]->iDocid = 0; + } + + return SQLITE_OK; +} + + +SQLITE_PRIVATE int sqlite3Fts3SegReaderStep( + Fts3Table *p, /* Virtual table handle */ + Fts3MultiSegReader *pCsr /* Cursor object */ +){ + int rc = SQLITE_OK; + + int isIgnoreEmpty = (pCsr->pFilter->flags & FTS3_SEGMENT_IGNORE_EMPTY); + int isRequirePos = (pCsr->pFilter->flags & FTS3_SEGMENT_REQUIRE_POS); + int isColFilter = (pCsr->pFilter->flags & FTS3_SEGMENT_COLUMN_FILTER); + int isPrefix = (pCsr->pFilter->flags & FTS3_SEGMENT_PREFIX); + int isScan = (pCsr->pFilter->flags & FTS3_SEGMENT_SCAN); + int isFirst = (pCsr->pFilter->flags & FTS3_SEGMENT_FIRST); + + Fts3SegReader **apSegment = pCsr->apSegment; + int nSegment = pCsr->nSegment; + Fts3SegFilter *pFilter = pCsr->pFilter; + int (*xCmp)(Fts3SegReader *, Fts3SegReader *) = ( + p->bDescIdx ? fts3SegReaderDoclistCmpRev : fts3SegReaderDoclistCmp + ); + + if( pCsr->nSegment==0 ) return SQLITE_OK; + + do { + int nMerge; + int i; + + /* Advance the first pCsr->nAdvance entries in the apSegment[] array + ** forward. Then sort the list in order of current term again. + */ + for(i=0; inAdvance; i++){ + Fts3SegReader *pSeg = apSegment[i]; + if( pSeg->bLookup ){ + fts3SegReaderSetEof(pSeg); + }else{ + rc = fts3SegReaderNext(p, pSeg, 0); + } + if( rc!=SQLITE_OK ) return rc; + } + fts3SegReaderSort(apSegment, nSegment, pCsr->nAdvance, fts3SegReaderCmp); + pCsr->nAdvance = 0; + + /* If all the seg-readers are at EOF, we're finished. return SQLITE_OK. */ + assert( rc==SQLITE_OK ); + if( apSegment[0]->aNode==0 ) break; + + pCsr->nTerm = apSegment[0]->nTerm; + pCsr->zTerm = apSegment[0]->zTerm; + + /* If this is a prefix-search, and if the term that apSegment[0] points + ** to does not share a suffix with pFilter->zTerm/nTerm, then all + ** required callbacks have been made. In this case exit early. + ** + ** Similarly, if this is a search for an exact match, and the first term + ** of segment apSegment[0] is not a match, exit early. + */ + if( pFilter->zTerm && !isScan ){ + if( pCsr->nTermnTerm + || (!isPrefix && pCsr->nTerm>pFilter->nTerm) + || memcmp(pCsr->zTerm, pFilter->zTerm, pFilter->nTerm) + ){ + break; + } + } + + nMerge = 1; + while( nMergeaNode + && apSegment[nMerge]->nTerm==pCsr->nTerm + && 0==memcmp(pCsr->zTerm, apSegment[nMerge]->zTerm, pCsr->nTerm) + ){ + nMerge++; + } + + assert( isIgnoreEmpty || (isRequirePos && !isColFilter) ); + if( nMerge==1 + && !isIgnoreEmpty + && !isFirst + && (p->bDescIdx==0 || fts3SegReaderIsPending(apSegment[0])==0) + ){ + pCsr->nDoclist = apSegment[0]->nDoclist; + if( fts3SegReaderIsPending(apSegment[0]) ){ + rc = fts3MsrBufferData(pCsr, apSegment[0]->aDoclist, pCsr->nDoclist); + pCsr->aDoclist = pCsr->aBuffer; + }else{ + pCsr->aDoclist = apSegment[0]->aDoclist; + } + if( rc==SQLITE_OK ) rc = SQLITE_ROW; + }else{ + int nDoclist = 0; /* Size of doclist */ + sqlite3_int64 iPrev = 0; /* Previous docid stored in doclist */ + + /* The current term of the first nMerge entries in the array + ** of Fts3SegReader objects is the same. The doclists must be merged + ** and a single term returned with the merged doclist. + */ + for(i=0; ipOffsetList ){ + int j; /* Number of segments that share a docid */ + char *pList = 0; + int nList = 0; + int nByte; + sqlite3_int64 iDocid = apSegment[0]->iDocid; + fts3SegReaderNextDocid(p, apSegment[0], &pList, &nList); + j = 1; + while( jpOffsetList + && apSegment[j]->iDocid==iDocid + ){ + fts3SegReaderNextDocid(p, apSegment[j], 0, 0); + j++; + } + + if( isColFilter ){ + fts3ColumnFilter(pFilter->iCol, 0, &pList, &nList); + } + + if( !isIgnoreEmpty || nList>0 ){ + + /* Calculate the 'docid' delta value to write into the merged + ** doclist. */ + sqlite3_int64 iDelta; + if( p->bDescIdx && nDoclist>0 ){ + iDelta = iPrev - iDocid; + }else{ + iDelta = iDocid - iPrev; + } + assert( iDelta>0 || (nDoclist==0 && iDelta==iDocid) ); + assert( nDoclist>0 || iDelta==iDocid ); + + nByte = sqlite3Fts3VarintLen(iDelta) + (isRequirePos?nList+1:0); + if( nDoclist+nByte>pCsr->nBuffer ){ + char *aNew; + pCsr->nBuffer = (nDoclist+nByte)*2; + aNew = sqlite3_realloc(pCsr->aBuffer, pCsr->nBuffer); + if( !aNew ){ + return SQLITE_NOMEM; + } + pCsr->aBuffer = aNew; + } + + if( isFirst ){ + char *a = &pCsr->aBuffer[nDoclist]; + int nWrite; + + nWrite = sqlite3Fts3FirstFilter(iDelta, pList, nList, a); + if( nWrite ){ + iPrev = iDocid; + nDoclist += nWrite; + } + }else{ + nDoclist += sqlite3Fts3PutVarint(&pCsr->aBuffer[nDoclist], iDelta); + iPrev = iDocid; + if( isRequirePos ){ + memcpy(&pCsr->aBuffer[nDoclist], pList, nList); + nDoclist += nList; + pCsr->aBuffer[nDoclist++] = '\0'; + } + } + } + + fts3SegReaderSort(apSegment, nMerge, j, xCmp); + } + if( nDoclist>0 ){ + pCsr->aDoclist = pCsr->aBuffer; + pCsr->nDoclist = nDoclist; + rc = SQLITE_ROW; + } + } + pCsr->nAdvance = nMerge; + }while( rc==SQLITE_OK ); + + return rc; +} + + +SQLITE_PRIVATE void sqlite3Fts3SegReaderFinish( + Fts3MultiSegReader *pCsr /* Cursor object */ +){ + if( pCsr ){ + int i; + for(i=0; inSegment; i++){ + sqlite3Fts3SegReaderFree(pCsr->apSegment[i]); + } + sqlite3_free(pCsr->apSegment); + sqlite3_free(pCsr->aBuffer); + + pCsr->nSegment = 0; + pCsr->apSegment = 0; + pCsr->aBuffer = 0; + } +} + +/* +** Decode the "end_block" field, selected by column iCol of the SELECT +** statement passed as the first argument. +** +** The "end_block" field may contain either an integer, or a text field +** containing the text representation of two non-negative integers separated +** by one or more space (0x20) characters. In the first case, set *piEndBlock +** to the integer value and *pnByte to zero before returning. In the second, +** set *piEndBlock to the first value and *pnByte to the second. +*/ +static void fts3ReadEndBlockField( + sqlite3_stmt *pStmt, + int iCol, + i64 *piEndBlock, + i64 *pnByte +){ + const unsigned char *zText = sqlite3_column_text(pStmt, iCol); + if( zText ){ + int i; + int iMul = 1; + i64 iVal = 0; + for(i=0; zText[i]>='0' && zText[i]<='9'; i++){ + iVal = iVal*10 + (zText[i] - '0'); + } + *piEndBlock = iVal; + while( zText[i]==' ' ) i++; + iVal = 0; + if( zText[i]=='-' ){ + i++; + iMul = -1; + } + for(/* no-op */; zText[i]>='0' && zText[i]<='9'; i++){ + iVal = iVal*10 + (zText[i] - '0'); + } + *pnByte = (iVal * (i64)iMul); + } +} + + +/* +** A segment of size nByte bytes has just been written to absolute level +** iAbsLevel. Promote any segments that should be promoted as a result. +*/ +static int fts3PromoteSegments( + Fts3Table *p, /* FTS table handle */ + sqlite3_int64 iAbsLevel, /* Absolute level just updated */ + sqlite3_int64 nByte /* Size of new segment at iAbsLevel */ +){ + int rc = SQLITE_OK; + sqlite3_stmt *pRange; + + rc = fts3SqlStmt(p, SQL_SELECT_LEVEL_RANGE2, &pRange, 0); + + if( rc==SQLITE_OK ){ + int bOk = 0; + i64 iLast = (iAbsLevel/FTS3_SEGDIR_MAXLEVEL + 1) * FTS3_SEGDIR_MAXLEVEL - 1; + i64 nLimit = (nByte*3)/2; + + /* Loop through all entries in the %_segdir table corresponding to + ** segments in this index on levels greater than iAbsLevel. If there is + ** at least one such segment, and it is possible to determine that all + ** such segments are smaller than nLimit bytes in size, they will be + ** promoted to level iAbsLevel. */ + sqlite3_bind_int64(pRange, 1, iAbsLevel+1); + sqlite3_bind_int64(pRange, 2, iLast); + while( SQLITE_ROW==sqlite3_step(pRange) ){ + i64 nSize = 0, dummy; + fts3ReadEndBlockField(pRange, 2, &dummy, &nSize); + if( nSize<=0 || nSize>nLimit ){ + /* If nSize==0, then the %_segdir.end_block field does not not + ** contain a size value. This happens if it was written by an + ** old version of FTS. In this case it is not possible to determine + ** the size of the segment, and so segment promotion does not + ** take place. */ + bOk = 0; + break; + } + bOk = 1; + } + rc = sqlite3_reset(pRange); + + if( bOk ){ + int iIdx = 0; + sqlite3_stmt *pUpdate1; + sqlite3_stmt *pUpdate2; + + if( rc==SQLITE_OK ){ + rc = fts3SqlStmt(p, SQL_UPDATE_LEVEL_IDX, &pUpdate1, 0); + } + if( rc==SQLITE_OK ){ + rc = fts3SqlStmt(p, SQL_UPDATE_LEVEL, &pUpdate2, 0); + } + + if( rc==SQLITE_OK ){ + + /* Loop through all %_segdir entries for segments in this index with + ** levels equal to or greater than iAbsLevel. As each entry is visited, + ** updated it to set (level = -1) and (idx = N), where N is 0 for the + ** oldest segment in the range, 1 for the next oldest, and so on. + ** + ** In other words, move all segments being promoted to level -1, + ** setting the "idx" fields as appropriate to keep them in the same + ** order. The contents of level -1 (which is never used, except + ** transiently here), will be moved back to level iAbsLevel below. */ + sqlite3_bind_int64(pRange, 1, iAbsLevel); + while( SQLITE_ROW==sqlite3_step(pRange) ){ + sqlite3_bind_int(pUpdate1, 1, iIdx++); + sqlite3_bind_int(pUpdate1, 2, sqlite3_column_int(pRange, 0)); + sqlite3_bind_int(pUpdate1, 3, sqlite3_column_int(pRange, 1)); + sqlite3_step(pUpdate1); + rc = sqlite3_reset(pUpdate1); + if( rc!=SQLITE_OK ){ + sqlite3_reset(pRange); + break; + } + } + } + if( rc==SQLITE_OK ){ + rc = sqlite3_reset(pRange); + } + + /* Move level -1 to level iAbsLevel */ + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pUpdate2, 1, iAbsLevel); + sqlite3_step(pUpdate2); + rc = sqlite3_reset(pUpdate2); + } + } + } + + + return rc; +} + +/* +** Merge all level iLevel segments in the database into a single +** iLevel+1 segment. Or, if iLevel<0, merge all segments into a +** single segment with a level equal to the numerically largest level +** currently present in the database. +** +** If this function is called with iLevel<0, but there is only one +** segment in the database, SQLITE_DONE is returned immediately. +** Otherwise, if successful, SQLITE_OK is returned. If an error occurs, +** an SQLite error code is returned. +*/ +static int fts3SegmentMerge( + Fts3Table *p, + int iLangid, /* Language id to merge */ + int iIndex, /* Index in p->aIndex[] to merge */ + int iLevel /* Level to merge */ +){ + int rc; /* Return code */ + int iIdx = 0; /* Index of new segment */ + sqlite3_int64 iNewLevel = 0; /* Level/index to create new segment at */ + SegmentWriter *pWriter = 0; /* Used to write the new, merged, segment */ + Fts3SegFilter filter; /* Segment term filter condition */ + Fts3MultiSegReader csr; /* Cursor to iterate through level(s) */ + int bIgnoreEmpty = 0; /* True to ignore empty segments */ + i64 iMaxLevel = 0; /* Max level number for this index/langid */ + + assert( iLevel==FTS3_SEGCURSOR_ALL + || iLevel==FTS3_SEGCURSOR_PENDING + || iLevel>=0 + ); + assert( iLevel=0 && iIndexnIndex ); + + rc = sqlite3Fts3SegReaderCursor(p, iLangid, iIndex, iLevel, 0, 0, 1, 0, &csr); + if( rc!=SQLITE_OK || csr.nSegment==0 ) goto finished; + + if( iLevel!=FTS3_SEGCURSOR_PENDING ){ + rc = fts3SegmentMaxLevel(p, iLangid, iIndex, &iMaxLevel); + if( rc!=SQLITE_OK ) goto finished; + } + + if( iLevel==FTS3_SEGCURSOR_ALL ){ + /* This call is to merge all segments in the database to a single + ** segment. The level of the new segment is equal to the numerically + ** greatest segment level currently present in the database for this + ** index. The idx of the new segment is always 0. */ + if( csr.nSegment==1 ){ + rc = SQLITE_DONE; + goto finished; + } + iNewLevel = iMaxLevel; + bIgnoreEmpty = 1; + + }else{ + /* This call is to merge all segments at level iLevel. find the next + ** available segment index at level iLevel+1. The call to + ** fts3AllocateSegdirIdx() will merge the segments at level iLevel+1 to + ** a single iLevel+2 segment if necessary. */ + assert( FTS3_SEGCURSOR_PENDING==-1 ); + iNewLevel = getAbsoluteLevel(p, iLangid, iIndex, iLevel+1); + rc = fts3AllocateSegdirIdx(p, iLangid, iIndex, iLevel+1, &iIdx); + bIgnoreEmpty = (iLevel!=FTS3_SEGCURSOR_PENDING) && (iNewLevel>iMaxLevel); + } + if( rc!=SQLITE_OK ) goto finished; + + assert( csr.nSegment>0 ); + assert( iNewLevel>=getAbsoluteLevel(p, iLangid, iIndex, 0) ); + assert( iNewLevelnLeafData); + } + } + } + + finished: + fts3SegWriterFree(pWriter); + sqlite3Fts3SegReaderFinish(&csr); + return rc; +} + + +/* +** Flush the contents of pendingTerms to level 0 segments. +*/ +SQLITE_PRIVATE int sqlite3Fts3PendingTermsFlush(Fts3Table *p){ + int rc = SQLITE_OK; + int i; + + for(i=0; rc==SQLITE_OK && inIndex; i++){ + rc = fts3SegmentMerge(p, p->iPrevLangid, i, FTS3_SEGCURSOR_PENDING); + if( rc==SQLITE_DONE ) rc = SQLITE_OK; + } + sqlite3Fts3PendingTermsClear(p); + + /* Determine the auto-incr-merge setting if unknown. If enabled, + ** estimate the number of leaf blocks of content to be written + */ + if( rc==SQLITE_OK && p->bHasStat + && p->nAutoincrmerge==0xff && p->nLeafAdd>0 + ){ + sqlite3_stmt *pStmt = 0; + rc = fts3SqlStmt(p, SQL_SELECT_STAT, &pStmt, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int(pStmt, 1, FTS_STAT_AUTOINCRMERGE); + rc = sqlite3_step(pStmt); + if( rc==SQLITE_ROW ){ + p->nAutoincrmerge = sqlite3_column_int(pStmt, 0); + if( p->nAutoincrmerge==1 ) p->nAutoincrmerge = 8; + }else if( rc==SQLITE_DONE ){ + p->nAutoincrmerge = 0; + } + rc = sqlite3_reset(pStmt); + } + } + return rc; +} + +/* +** Encode N integers as varints into a blob. +*/ +static void fts3EncodeIntArray( + int N, /* The number of integers to encode */ + u32 *a, /* The integer values */ + char *zBuf, /* Write the BLOB here */ + int *pNBuf /* Write number of bytes if zBuf[] used here */ +){ + int i, j; + for(i=j=0; iiPrevDocid. The sizes are encoded as +** a blob of varints. +*/ +static void fts3InsertDocsize( + int *pRC, /* Result code */ + Fts3Table *p, /* Table into which to insert */ + u32 *aSz /* Sizes of each column, in tokens */ +){ + char *pBlob; /* The BLOB encoding of the document size */ + int nBlob; /* Number of bytes in the BLOB */ + sqlite3_stmt *pStmt; /* Statement used to insert the encoding */ + int rc; /* Result code from subfunctions */ + + if( *pRC ) return; + pBlob = sqlite3_malloc( 10*p->nColumn ); + if( pBlob==0 ){ + *pRC = SQLITE_NOMEM; + return; + } + fts3EncodeIntArray(p->nColumn, aSz, pBlob, &nBlob); + rc = fts3SqlStmt(p, SQL_REPLACE_DOCSIZE, &pStmt, 0); + if( rc ){ + sqlite3_free(pBlob); + *pRC = rc; + return; + } + sqlite3_bind_int64(pStmt, 1, p->iPrevDocid); + sqlite3_bind_blob(pStmt, 2, pBlob, nBlob, sqlite3_free); + sqlite3_step(pStmt); + *pRC = sqlite3_reset(pStmt); +} + +/* +** Record 0 of the %_stat table contains a blob consisting of N varints, +** where N is the number of user defined columns in the fts3 table plus +** two. If nCol is the number of user defined columns, then values of the +** varints are set as follows: +** +** Varint 0: Total number of rows in the table. +** +** Varint 1..nCol: For each column, the total number of tokens stored in +** the column for all rows of the table. +** +** Varint 1+nCol: The total size, in bytes, of all text values in all +** columns of all rows of the table. +** +*/ +static void fts3UpdateDocTotals( + int *pRC, /* The result code */ + Fts3Table *p, /* Table being updated */ + u32 *aSzIns, /* Size increases */ + u32 *aSzDel, /* Size decreases */ + int nChng /* Change in the number of documents */ +){ + char *pBlob; /* Storage for BLOB written into %_stat */ + int nBlob; /* Size of BLOB written into %_stat */ + u32 *a; /* Array of integers that becomes the BLOB */ + sqlite3_stmt *pStmt; /* Statement for reading and writing */ + int i; /* Loop counter */ + int rc; /* Result code from subfunctions */ + + const int nStat = p->nColumn+2; + + if( *pRC ) return; + a = sqlite3_malloc( (sizeof(u32)+10)*nStat ); + if( a==0 ){ + *pRC = SQLITE_NOMEM; + return; + } + pBlob = (char*)&a[nStat]; + rc = fts3SqlStmt(p, SQL_SELECT_STAT, &pStmt, 0); + if( rc ){ + sqlite3_free(a); + *pRC = rc; + return; + } + sqlite3_bind_int(pStmt, 1, FTS_STAT_DOCTOTAL); + if( sqlite3_step(pStmt)==SQLITE_ROW ){ + fts3DecodeIntArray(nStat, a, + sqlite3_column_blob(pStmt, 0), + sqlite3_column_bytes(pStmt, 0)); + }else{ + memset(a, 0, sizeof(u32)*(nStat) ); + } + rc = sqlite3_reset(pStmt); + if( rc!=SQLITE_OK ){ + sqlite3_free(a); + *pRC = rc; + return; + } + if( nChng<0 && a[0]<(u32)(-nChng) ){ + a[0] = 0; + }else{ + a[0] += nChng; + } + for(i=0; inColumn+1; i++){ + u32 x = a[i+1]; + if( x+aSzIns[i] < aSzDel[i] ){ + x = 0; + }else{ + x = x + aSzIns[i] - aSzDel[i]; + } + a[i+1] = x; + } + fts3EncodeIntArray(nStat, a, pBlob, &nBlob); + rc = fts3SqlStmt(p, SQL_REPLACE_STAT, &pStmt, 0); + if( rc ){ + sqlite3_free(a); + *pRC = rc; + return; + } + sqlite3_bind_int(pStmt, 1, FTS_STAT_DOCTOTAL); + sqlite3_bind_blob(pStmt, 2, pBlob, nBlob, SQLITE_STATIC); + sqlite3_step(pStmt); + *pRC = sqlite3_reset(pStmt); + sqlite3_free(a); +} + +/* +** Merge the entire database so that there is one segment for each +** iIndex/iLangid combination. +*/ +static int fts3DoOptimize(Fts3Table *p, int bReturnDone){ + int bSeenDone = 0; + int rc; + sqlite3_stmt *pAllLangid = 0; + + rc = fts3SqlStmt(p, SQL_SELECT_ALL_LANGID, &pAllLangid, 0); + if( rc==SQLITE_OK ){ + int rc2; + sqlite3_bind_int(pAllLangid, 1, p->nIndex); + while( sqlite3_step(pAllLangid)==SQLITE_ROW ){ + int i; + int iLangid = sqlite3_column_int(pAllLangid, 0); + for(i=0; rc==SQLITE_OK && inIndex; i++){ + rc = fts3SegmentMerge(p, iLangid, i, FTS3_SEGCURSOR_ALL); + if( rc==SQLITE_DONE ){ + bSeenDone = 1; + rc = SQLITE_OK; + } + } + } + rc2 = sqlite3_reset(pAllLangid); + if( rc==SQLITE_OK ) rc = rc2; + } + + sqlite3Fts3SegmentsClose(p); + sqlite3Fts3PendingTermsClear(p); + + return (rc==SQLITE_OK && bReturnDone && bSeenDone) ? SQLITE_DONE : rc; +} + +/* +** This function is called when the user executes the following statement: +** +** INSERT INTO () VALUES('rebuild'); +** +** The entire FTS index is discarded and rebuilt. If the table is one +** created using the content=xxx option, then the new index is based on +** the current contents of the xxx table. Otherwise, it is rebuilt based +** on the contents of the %_content table. +*/ +static int fts3DoRebuild(Fts3Table *p){ + int rc; /* Return Code */ + + rc = fts3DeleteAll(p, 0); + if( rc==SQLITE_OK ){ + u32 *aSz = 0; + u32 *aSzIns = 0; + u32 *aSzDel = 0; + sqlite3_stmt *pStmt = 0; + int nEntry = 0; + + /* Compose and prepare an SQL statement to loop through the content table */ + char *zSql = sqlite3_mprintf("SELECT %s" , p->zReadExprlist); + if( !zSql ){ + rc = SQLITE_NOMEM; + }else{ + rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, 0); + sqlite3_free(zSql); + } + + if( rc==SQLITE_OK ){ + int nByte = sizeof(u32) * (p->nColumn+1)*3; + aSz = (u32 *)sqlite3_malloc(nByte); + if( aSz==0 ){ + rc = SQLITE_NOMEM; + }else{ + memset(aSz, 0, nByte); + aSzIns = &aSz[p->nColumn+1]; + aSzDel = &aSzIns[p->nColumn+1]; + } + } + + while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ + int iCol; + int iLangid = langidFromSelect(p, pStmt); + rc = fts3PendingTermsDocid(p, iLangid, sqlite3_column_int64(pStmt, 0)); + memset(aSz, 0, sizeof(aSz[0]) * (p->nColumn+1)); + for(iCol=0; rc==SQLITE_OK && iColnColumn; iCol++){ + if( p->abNotindexed[iCol]==0 ){ + const char *z = (const char *) sqlite3_column_text(pStmt, iCol+1); + rc = fts3PendingTermsAdd(p, iLangid, z, iCol, &aSz[iCol]); + aSz[p->nColumn] += sqlite3_column_bytes(pStmt, iCol+1); + } + } + if( p->bHasDocsize ){ + fts3InsertDocsize(&rc, p, aSz); + } + if( rc!=SQLITE_OK ){ + sqlite3_finalize(pStmt); + pStmt = 0; + }else{ + nEntry++; + for(iCol=0; iCol<=p->nColumn; iCol++){ + aSzIns[iCol] += aSz[iCol]; + } + } + } + if( p->bFts4 ){ + fts3UpdateDocTotals(&rc, p, aSzIns, aSzDel, nEntry); + } + sqlite3_free(aSz); + + if( pStmt ){ + int rc2 = sqlite3_finalize(pStmt); + if( rc==SQLITE_OK ){ + rc = rc2; + } + } + } + + return rc; +} + + +/* +** This function opens a cursor used to read the input data for an +** incremental merge operation. Specifically, it opens a cursor to scan +** the oldest nSeg segments (idx=0 through idx=(nSeg-1)) in absolute +** level iAbsLevel. +*/ +static int fts3IncrmergeCsr( + Fts3Table *p, /* FTS3 table handle */ + sqlite3_int64 iAbsLevel, /* Absolute level to open */ + int nSeg, /* Number of segments to merge */ + Fts3MultiSegReader *pCsr /* Cursor object to populate */ +){ + int rc; /* Return Code */ + sqlite3_stmt *pStmt = 0; /* Statement used to read %_segdir entry */ + int nByte; /* Bytes allocated at pCsr->apSegment[] */ + + /* Allocate space for the Fts3MultiSegReader.aCsr[] array */ + memset(pCsr, 0, sizeof(*pCsr)); + nByte = sizeof(Fts3SegReader *) * nSeg; + pCsr->apSegment = (Fts3SegReader **)sqlite3_malloc(nByte); + + if( pCsr->apSegment==0 ){ + rc = SQLITE_NOMEM; + }else{ + memset(pCsr->apSegment, 0, nByte); + rc = fts3SqlStmt(p, SQL_SELECT_LEVEL, &pStmt, 0); + } + if( rc==SQLITE_OK ){ + int i; + int rc2; + sqlite3_bind_int64(pStmt, 1, iAbsLevel); + assert( pCsr->nSegment==0 ); + for(i=0; rc==SQLITE_OK && sqlite3_step(pStmt)==SQLITE_ROW && iapSegment[i] + ); + pCsr->nSegment++; + } + rc2 = sqlite3_reset(pStmt); + if( rc==SQLITE_OK ) rc = rc2; + } + + return rc; +} + +typedef struct IncrmergeWriter IncrmergeWriter; +typedef struct NodeWriter NodeWriter; +typedef struct Blob Blob; +typedef struct NodeReader NodeReader; + +/* +** An instance of the following structure is used as a dynamic buffer +** to build up nodes or other blobs of data in. +** +** The function blobGrowBuffer() is used to extend the allocation. +*/ +struct Blob { + char *a; /* Pointer to allocation */ + int n; /* Number of valid bytes of data in a[] */ + int nAlloc; /* Allocated size of a[] (nAlloc>=n) */ +}; + +/* +** This structure is used to build up buffers containing segment b-tree +** nodes (blocks). +*/ +struct NodeWriter { + sqlite3_int64 iBlock; /* Current block id */ + Blob key; /* Last key written to the current block */ + Blob block; /* Current block image */ +}; + +/* +** An object of this type contains the state required to create or append +** to an appendable b-tree segment. +*/ +struct IncrmergeWriter { + int nLeafEst; /* Space allocated for leaf blocks */ + int nWork; /* Number of leaf pages flushed */ + sqlite3_int64 iAbsLevel; /* Absolute level of input segments */ + int iIdx; /* Index of *output* segment in iAbsLevel+1 */ + sqlite3_int64 iStart; /* Block number of first allocated block */ + sqlite3_int64 iEnd; /* Block number of last allocated block */ + sqlite3_int64 nLeafData; /* Bytes of leaf page data so far */ + u8 bNoLeafData; /* If true, store 0 for segment size */ + NodeWriter aNodeWriter[FTS_MAX_APPENDABLE_HEIGHT]; +}; + +/* +** An object of the following type is used to read data from a single +** FTS segment node. See the following functions: +** +** nodeReaderInit() +** nodeReaderNext() +** nodeReaderRelease() +*/ +struct NodeReader { + const char *aNode; + int nNode; + int iOff; /* Current offset within aNode[] */ + + /* Output variables. Containing the current node entry. */ + sqlite3_int64 iChild; /* Pointer to child node */ + Blob term; /* Current term */ + const char *aDoclist; /* Pointer to doclist */ + int nDoclist; /* Size of doclist in bytes */ +}; + +/* +** If *pRc is not SQLITE_OK when this function is called, it is a no-op. +** Otherwise, if the allocation at pBlob->a is not already at least nMin +** bytes in size, extend (realloc) it to be so. +** +** If an OOM error occurs, set *pRc to SQLITE_NOMEM and leave pBlob->a +** unmodified. Otherwise, if the allocation succeeds, update pBlob->nAlloc +** to reflect the new size of the pBlob->a[] buffer. +*/ +static void blobGrowBuffer(Blob *pBlob, int nMin, int *pRc){ + if( *pRc==SQLITE_OK && nMin>pBlob->nAlloc ){ + int nAlloc = nMin; + char *a = (char *)sqlite3_realloc(pBlob->a, nAlloc); + if( a ){ + pBlob->nAlloc = nAlloc; + pBlob->a = a; + }else{ + *pRc = SQLITE_NOMEM; + } + } +} + +/* +** Attempt to advance the node-reader object passed as the first argument to +** the next entry on the node. +** +** Return an error code if an error occurs (SQLITE_NOMEM is possible). +** Otherwise return SQLITE_OK. If there is no next entry on the node +** (e.g. because the current entry is the last) set NodeReader->aNode to +** NULL to indicate EOF. Otherwise, populate the NodeReader structure output +** variables for the new entry. +*/ +static int nodeReaderNext(NodeReader *p){ + int bFirst = (p->term.n==0); /* True for first term on the node */ + int nPrefix = 0; /* Bytes to copy from previous term */ + int nSuffix = 0; /* Bytes to append to the prefix */ + int rc = SQLITE_OK; /* Return code */ + + assert( p->aNode ); + if( p->iChild && bFirst==0 ) p->iChild++; + if( p->iOff>=p->nNode ){ + /* EOF */ + p->aNode = 0; + }else{ + if( bFirst==0 ){ + p->iOff += fts3GetVarint32(&p->aNode[p->iOff], &nPrefix); + } + p->iOff += fts3GetVarint32(&p->aNode[p->iOff], &nSuffix); + + blobGrowBuffer(&p->term, nPrefix+nSuffix, &rc); + if( rc==SQLITE_OK ){ + memcpy(&p->term.a[nPrefix], &p->aNode[p->iOff], nSuffix); + p->term.n = nPrefix+nSuffix; + p->iOff += nSuffix; + if( p->iChild==0 ){ + p->iOff += fts3GetVarint32(&p->aNode[p->iOff], &p->nDoclist); + p->aDoclist = &p->aNode[p->iOff]; + p->iOff += p->nDoclist; + } + } + } + + assert( p->iOff<=p->nNode ); + + return rc; +} + +/* +** Release all dynamic resources held by node-reader object *p. +*/ +static void nodeReaderRelease(NodeReader *p){ + sqlite3_free(p->term.a); +} + +/* +** Initialize a node-reader object to read the node in buffer aNode/nNode. +** +** If successful, SQLITE_OK is returned and the NodeReader object set to +** point to the first entry on the node (if any). Otherwise, an SQLite +** error code is returned. +*/ +static int nodeReaderInit(NodeReader *p, const char *aNode, int nNode){ + memset(p, 0, sizeof(NodeReader)); + p->aNode = aNode; + p->nNode = nNode; + + /* Figure out if this is a leaf or an internal node. */ + if( p->aNode[0] ){ + /* An internal node. */ + p->iOff = 1 + sqlite3Fts3GetVarint(&p->aNode[1], &p->iChild); + }else{ + p->iOff = 1; + } + + return nodeReaderNext(p); +} + +/* +** This function is called while writing an FTS segment each time a leaf o +** node is finished and written to disk. The key (zTerm/nTerm) is guaranteed +** to be greater than the largest key on the node just written, but smaller +** than or equal to the first key that will be written to the next leaf +** node. +** +** The block id of the leaf node just written to disk may be found in +** (pWriter->aNodeWriter[0].iBlock) when this function is called. +*/ +static int fts3IncrmergePush( + Fts3Table *p, /* Fts3 table handle */ + IncrmergeWriter *pWriter, /* Writer object */ + const char *zTerm, /* Term to write to internal node */ + int nTerm /* Bytes at zTerm */ +){ + sqlite3_int64 iPtr = pWriter->aNodeWriter[0].iBlock; + int iLayer; + + assert( nTerm>0 ); + for(iLayer=1; ALWAYS(iLayeraNodeWriter[iLayer]; + int rc = SQLITE_OK; + int nPrefix; + int nSuffix; + int nSpace; + + /* Figure out how much space the key will consume if it is written to + ** the current node of layer iLayer. Due to the prefix compression, + ** the space required changes depending on which node the key is to + ** be added to. */ + nPrefix = fts3PrefixCompress(pNode->key.a, pNode->key.n, zTerm, nTerm); + nSuffix = nTerm - nPrefix; + nSpace = sqlite3Fts3VarintLen(nPrefix); + nSpace += sqlite3Fts3VarintLen(nSuffix) + nSuffix; + + if( pNode->key.n==0 || (pNode->block.n + nSpace)<=p->nNodeSize ){ + /* If the current node of layer iLayer contains zero keys, or if adding + ** the key to it will not cause it to grow to larger than nNodeSize + ** bytes in size, write the key here. */ + + Blob *pBlk = &pNode->block; + if( pBlk->n==0 ){ + blobGrowBuffer(pBlk, p->nNodeSize, &rc); + if( rc==SQLITE_OK ){ + pBlk->a[0] = (char)iLayer; + pBlk->n = 1 + sqlite3Fts3PutVarint(&pBlk->a[1], iPtr); + } + } + blobGrowBuffer(pBlk, pBlk->n + nSpace, &rc); + blobGrowBuffer(&pNode->key, nTerm, &rc); + + if( rc==SQLITE_OK ){ + if( pNode->key.n ){ + pBlk->n += sqlite3Fts3PutVarint(&pBlk->a[pBlk->n], nPrefix); + } + pBlk->n += sqlite3Fts3PutVarint(&pBlk->a[pBlk->n], nSuffix); + memcpy(&pBlk->a[pBlk->n], &zTerm[nPrefix], nSuffix); + pBlk->n += nSuffix; + + memcpy(pNode->key.a, zTerm, nTerm); + pNode->key.n = nTerm; + } + }else{ + /* Otherwise, flush the current node of layer iLayer to disk. + ** Then allocate a new, empty sibling node. The key will be written + ** into the parent of this node. */ + rc = fts3WriteSegment(p, pNode->iBlock, pNode->block.a, pNode->block.n); + + assert( pNode->block.nAlloc>=p->nNodeSize ); + pNode->block.a[0] = (char)iLayer; + pNode->block.n = 1 + sqlite3Fts3PutVarint(&pNode->block.a[1], iPtr+1); + + iNextPtr = pNode->iBlock; + pNode->iBlock++; + pNode->key.n = 0; + } + + if( rc!=SQLITE_OK || iNextPtr==0 ) return rc; + iPtr = iNextPtr; + } + + assert( 0 ); + return 0; +} + +/* +** Append a term and (optionally) doclist to the FTS segment node currently +** stored in blob *pNode. The node need not contain any terms, but the +** header must be written before this function is called. +** +** A node header is a single 0x00 byte for a leaf node, or a height varint +** followed by the left-hand-child varint for an internal node. +** +** The term to be appended is passed via arguments zTerm/nTerm. For a +** leaf node, the doclist is passed as aDoclist/nDoclist. For an internal +** node, both aDoclist and nDoclist must be passed 0. +** +** If the size of the value in blob pPrev is zero, then this is the first +** term written to the node. Otherwise, pPrev contains a copy of the +** previous term. Before this function returns, it is updated to contain a +** copy of zTerm/nTerm. +** +** It is assumed that the buffer associated with pNode is already large +** enough to accommodate the new entry. The buffer associated with pPrev +** is extended by this function if requrired. +** +** If an error (i.e. OOM condition) occurs, an SQLite error code is +** returned. Otherwise, SQLITE_OK. +*/ +static int fts3AppendToNode( + Blob *pNode, /* Current node image to append to */ + Blob *pPrev, /* Buffer containing previous term written */ + const char *zTerm, /* New term to write */ + int nTerm, /* Size of zTerm in bytes */ + const char *aDoclist, /* Doclist (or NULL) to write */ + int nDoclist /* Size of aDoclist in bytes */ +){ + int rc = SQLITE_OK; /* Return code */ + int bFirst = (pPrev->n==0); /* True if this is the first term written */ + int nPrefix; /* Size of term prefix in bytes */ + int nSuffix; /* Size of term suffix in bytes */ + + /* Node must have already been started. There must be a doclist for a + ** leaf node, and there must not be a doclist for an internal node. */ + assert( pNode->n>0 ); + assert( (pNode->a[0]=='\0')==(aDoclist!=0) ); + + blobGrowBuffer(pPrev, nTerm, &rc); + if( rc!=SQLITE_OK ) return rc; + + nPrefix = fts3PrefixCompress(pPrev->a, pPrev->n, zTerm, nTerm); + nSuffix = nTerm - nPrefix; + memcpy(pPrev->a, zTerm, nTerm); + pPrev->n = nTerm; + + if( bFirst==0 ){ + pNode->n += sqlite3Fts3PutVarint(&pNode->a[pNode->n], nPrefix); + } + pNode->n += sqlite3Fts3PutVarint(&pNode->a[pNode->n], nSuffix); + memcpy(&pNode->a[pNode->n], &zTerm[nPrefix], nSuffix); + pNode->n += nSuffix; + + if( aDoclist ){ + pNode->n += sqlite3Fts3PutVarint(&pNode->a[pNode->n], nDoclist); + memcpy(&pNode->a[pNode->n], aDoclist, nDoclist); + pNode->n += nDoclist; + } + + assert( pNode->n<=pNode->nAlloc ); + + return SQLITE_OK; +} + +/* +** Append the current term and doclist pointed to by cursor pCsr to the +** appendable b-tree segment opened for writing by pWriter. +** +** Return SQLITE_OK if successful, or an SQLite error code otherwise. +*/ +static int fts3IncrmergeAppend( + Fts3Table *p, /* Fts3 table handle */ + IncrmergeWriter *pWriter, /* Writer object */ + Fts3MultiSegReader *pCsr /* Cursor containing term and doclist */ +){ + const char *zTerm = pCsr->zTerm; + int nTerm = pCsr->nTerm; + const char *aDoclist = pCsr->aDoclist; + int nDoclist = pCsr->nDoclist; + int rc = SQLITE_OK; /* Return code */ + int nSpace; /* Total space in bytes required on leaf */ + int nPrefix; /* Size of prefix shared with previous term */ + int nSuffix; /* Size of suffix (nTerm - nPrefix) */ + NodeWriter *pLeaf; /* Object used to write leaf nodes */ + + pLeaf = &pWriter->aNodeWriter[0]; + nPrefix = fts3PrefixCompress(pLeaf->key.a, pLeaf->key.n, zTerm, nTerm); + nSuffix = nTerm - nPrefix; + + nSpace = sqlite3Fts3VarintLen(nPrefix); + nSpace += sqlite3Fts3VarintLen(nSuffix) + nSuffix; + nSpace += sqlite3Fts3VarintLen(nDoclist) + nDoclist; + + /* If the current block is not empty, and if adding this term/doclist + ** to the current block would make it larger than Fts3Table.nNodeSize + ** bytes, write this block out to the database. */ + if( pLeaf->block.n>0 && (pLeaf->block.n + nSpace)>p->nNodeSize ){ + rc = fts3WriteSegment(p, pLeaf->iBlock, pLeaf->block.a, pLeaf->block.n); + pWriter->nWork++; + + /* Add the current term to the parent node. The term added to the + ** parent must: + ** + ** a) be greater than the largest term on the leaf node just written + ** to the database (still available in pLeaf->key), and + ** + ** b) be less than or equal to the term about to be added to the new + ** leaf node (zTerm/nTerm). + ** + ** In other words, it must be the prefix of zTerm 1 byte longer than + ** the common prefix (if any) of zTerm and pWriter->zTerm. + */ + if( rc==SQLITE_OK ){ + rc = fts3IncrmergePush(p, pWriter, zTerm, nPrefix+1); + } + + /* Advance to the next output block */ + pLeaf->iBlock++; + pLeaf->key.n = 0; + pLeaf->block.n = 0; + + nSuffix = nTerm; + nSpace = 1; + nSpace += sqlite3Fts3VarintLen(nSuffix) + nSuffix; + nSpace += sqlite3Fts3VarintLen(nDoclist) + nDoclist; + } + + pWriter->nLeafData += nSpace; + blobGrowBuffer(&pLeaf->block, pLeaf->block.n + nSpace, &rc); + if( rc==SQLITE_OK ){ + if( pLeaf->block.n==0 ){ + pLeaf->block.n = 1; + pLeaf->block.a[0] = '\0'; + } + rc = fts3AppendToNode( + &pLeaf->block, &pLeaf->key, zTerm, nTerm, aDoclist, nDoclist + ); + } + + return rc; +} + +/* +** This function is called to release all dynamic resources held by the +** merge-writer object pWriter, and if no error has occurred, to flush +** all outstanding node buffers held by pWriter to disk. +** +** If *pRc is not SQLITE_OK when this function is called, then no attempt +** is made to write any data to disk. Instead, this function serves only +** to release outstanding resources. +** +** Otherwise, if *pRc is initially SQLITE_OK and an error occurs while +** flushing buffers to disk, *pRc is set to an SQLite error code before +** returning. +*/ +static void fts3IncrmergeRelease( + Fts3Table *p, /* FTS3 table handle */ + IncrmergeWriter *pWriter, /* Merge-writer object */ + int *pRc /* IN/OUT: Error code */ +){ + int i; /* Used to iterate through non-root layers */ + int iRoot; /* Index of root in pWriter->aNodeWriter */ + NodeWriter *pRoot; /* NodeWriter for root node */ + int rc = *pRc; /* Error code */ + + /* Set iRoot to the index in pWriter->aNodeWriter[] of the output segment + ** root node. If the segment fits entirely on a single leaf node, iRoot + ** will be set to 0. If the root node is the parent of the leaves, iRoot + ** will be 1. And so on. */ + for(iRoot=FTS_MAX_APPENDABLE_HEIGHT-1; iRoot>=0; iRoot--){ + NodeWriter *pNode = &pWriter->aNodeWriter[iRoot]; + if( pNode->block.n>0 ) break; + assert( *pRc || pNode->block.nAlloc==0 ); + assert( *pRc || pNode->key.nAlloc==0 ); + sqlite3_free(pNode->block.a); + sqlite3_free(pNode->key.a); + } + + /* Empty output segment. This is a no-op. */ + if( iRoot<0 ) return; + + /* The entire output segment fits on a single node. Normally, this means + ** the node would be stored as a blob in the "root" column of the %_segdir + ** table. However, this is not permitted in this case. The problem is that + ** space has already been reserved in the %_segments table, and so the + ** start_block and end_block fields of the %_segdir table must be populated. + ** And, by design or by accident, released versions of FTS cannot handle + ** segments that fit entirely on the root node with start_block!=0. + ** + ** Instead, create a synthetic root node that contains nothing but a + ** pointer to the single content node. So that the segment consists of a + ** single leaf and a single interior (root) node. + ** + ** Todo: Better might be to defer allocating space in the %_segments + ** table until we are sure it is needed. + */ + if( iRoot==0 ){ + Blob *pBlock = &pWriter->aNodeWriter[1].block; + blobGrowBuffer(pBlock, 1 + FTS3_VARINT_MAX, &rc); + if( rc==SQLITE_OK ){ + pBlock->a[0] = 0x01; + pBlock->n = 1 + sqlite3Fts3PutVarint( + &pBlock->a[1], pWriter->aNodeWriter[0].iBlock + ); + } + iRoot = 1; + } + pRoot = &pWriter->aNodeWriter[iRoot]; + + /* Flush all currently outstanding nodes to disk. */ + for(i=0; iaNodeWriter[i]; + if( pNode->block.n>0 && rc==SQLITE_OK ){ + rc = fts3WriteSegment(p, pNode->iBlock, pNode->block.a, pNode->block.n); + } + sqlite3_free(pNode->block.a); + sqlite3_free(pNode->key.a); + } + + /* Write the %_segdir record. */ + if( rc==SQLITE_OK ){ + rc = fts3WriteSegdir(p, + pWriter->iAbsLevel+1, /* level */ + pWriter->iIdx, /* idx */ + pWriter->iStart, /* start_block */ + pWriter->aNodeWriter[0].iBlock, /* leaves_end_block */ + pWriter->iEnd, /* end_block */ + (pWriter->bNoLeafData==0 ? pWriter->nLeafData : 0), /* end_block */ + pRoot->block.a, pRoot->block.n /* root */ + ); + } + sqlite3_free(pRoot->block.a); + sqlite3_free(pRoot->key.a); + + *pRc = rc; +} + +/* +** Compare the term in buffer zLhs (size in bytes nLhs) with that in +** zRhs (size in bytes nRhs) using memcmp. If one term is a prefix of +** the other, it is considered to be smaller than the other. +** +** Return -ve if zLhs is smaller than zRhs, 0 if it is equal, or +ve +** if it is greater. +*/ +static int fts3TermCmp( + const char *zLhs, int nLhs, /* LHS of comparison */ + const char *zRhs, int nRhs /* RHS of comparison */ +){ + int nCmp = MIN(nLhs, nRhs); + int res; + + res = memcmp(zLhs, zRhs, nCmp); + if( res==0 ) res = nLhs - nRhs; + + return res; +} + + +/* +** Query to see if the entry in the %_segments table with blockid iEnd is +** NULL. If no error occurs and the entry is NULL, set *pbRes 1 before +** returning. Otherwise, set *pbRes to 0. +** +** Or, if an error occurs while querying the database, return an SQLite +** error code. The final value of *pbRes is undefined in this case. +** +** This is used to test if a segment is an "appendable" segment. If it +** is, then a NULL entry has been inserted into the %_segments table +** with blockid %_segdir.end_block. +*/ +static int fts3IsAppendable(Fts3Table *p, sqlite3_int64 iEnd, int *pbRes){ + int bRes = 0; /* Result to set *pbRes to */ + sqlite3_stmt *pCheck = 0; /* Statement to query database with */ + int rc; /* Return code */ + + rc = fts3SqlStmt(p, SQL_SEGMENT_IS_APPENDABLE, &pCheck, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pCheck, 1, iEnd); + if( SQLITE_ROW==sqlite3_step(pCheck) ) bRes = 1; + rc = sqlite3_reset(pCheck); + } + + *pbRes = bRes; + return rc; +} + +/* +** This function is called when initializing an incremental-merge operation. +** It checks if the existing segment with index value iIdx at absolute level +** (iAbsLevel+1) can be appended to by the incremental merge. If it can, the +** merge-writer object *pWriter is initialized to write to it. +** +** An existing segment can be appended to by an incremental merge if: +** +** * It was initially created as an appendable segment (with all required +** space pre-allocated), and +** +** * The first key read from the input (arguments zKey and nKey) is +** greater than the largest key currently stored in the potential +** output segment. +*/ +static int fts3IncrmergeLoad( + Fts3Table *p, /* Fts3 table handle */ + sqlite3_int64 iAbsLevel, /* Absolute level of input segments */ + int iIdx, /* Index of candidate output segment */ + const char *zKey, /* First key to write */ + int nKey, /* Number of bytes in nKey */ + IncrmergeWriter *pWriter /* Populate this object */ +){ + int rc; /* Return code */ + sqlite3_stmt *pSelect = 0; /* SELECT to read %_segdir entry */ + + rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR, &pSelect, 0); + if( rc==SQLITE_OK ){ + sqlite3_int64 iStart = 0; /* Value of %_segdir.start_block */ + sqlite3_int64 iLeafEnd = 0; /* Value of %_segdir.leaves_end_block */ + sqlite3_int64 iEnd = 0; /* Value of %_segdir.end_block */ + const char *aRoot = 0; /* Pointer to %_segdir.root buffer */ + int nRoot = 0; /* Size of aRoot[] in bytes */ + int rc2; /* Return code from sqlite3_reset() */ + int bAppendable = 0; /* Set to true if segment is appendable */ + + /* Read the %_segdir entry for index iIdx absolute level (iAbsLevel+1) */ + sqlite3_bind_int64(pSelect, 1, iAbsLevel+1); + sqlite3_bind_int(pSelect, 2, iIdx); + if( sqlite3_step(pSelect)==SQLITE_ROW ){ + iStart = sqlite3_column_int64(pSelect, 1); + iLeafEnd = sqlite3_column_int64(pSelect, 2); + fts3ReadEndBlockField(pSelect, 3, &iEnd, &pWriter->nLeafData); + if( pWriter->nLeafData<0 ){ + pWriter->nLeafData = pWriter->nLeafData * -1; + } + pWriter->bNoLeafData = (pWriter->nLeafData==0); + nRoot = sqlite3_column_bytes(pSelect, 4); + aRoot = sqlite3_column_blob(pSelect, 4); + }else{ + return sqlite3_reset(pSelect); + } + + /* Check for the zero-length marker in the %_segments table */ + rc = fts3IsAppendable(p, iEnd, &bAppendable); + + /* Check that zKey/nKey is larger than the largest key the candidate */ + if( rc==SQLITE_OK && bAppendable ){ + char *aLeaf = 0; + int nLeaf = 0; + + rc = sqlite3Fts3ReadBlock(p, iLeafEnd, &aLeaf, &nLeaf, 0); + if( rc==SQLITE_OK ){ + NodeReader reader; + for(rc = nodeReaderInit(&reader, aLeaf, nLeaf); + rc==SQLITE_OK && reader.aNode; + rc = nodeReaderNext(&reader) + ){ + assert( reader.aNode ); + } + if( fts3TermCmp(zKey, nKey, reader.term.a, reader.term.n)<=0 ){ + bAppendable = 0; + } + nodeReaderRelease(&reader); + } + sqlite3_free(aLeaf); + } + + if( rc==SQLITE_OK && bAppendable ){ + /* It is possible to append to this segment. Set up the IncrmergeWriter + ** object to do so. */ + int i; + int nHeight = (int)aRoot[0]; + NodeWriter *pNode; + + pWriter->nLeafEst = (int)((iEnd - iStart) + 1)/FTS_MAX_APPENDABLE_HEIGHT; + pWriter->iStart = iStart; + pWriter->iEnd = iEnd; + pWriter->iAbsLevel = iAbsLevel; + pWriter->iIdx = iIdx; + + for(i=nHeight+1; iaNodeWriter[i].iBlock = pWriter->iStart + i*pWriter->nLeafEst; + } + + pNode = &pWriter->aNodeWriter[nHeight]; + pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight; + blobGrowBuffer(&pNode->block, MAX(nRoot, p->nNodeSize), &rc); + if( rc==SQLITE_OK ){ + memcpy(pNode->block.a, aRoot, nRoot); + pNode->block.n = nRoot; + } + + for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){ + NodeReader reader; + pNode = &pWriter->aNodeWriter[i]; + + rc = nodeReaderInit(&reader, pNode->block.a, pNode->block.n); + while( reader.aNode && rc==SQLITE_OK ) rc = nodeReaderNext(&reader); + blobGrowBuffer(&pNode->key, reader.term.n, &rc); + if( rc==SQLITE_OK ){ + memcpy(pNode->key.a, reader.term.a, reader.term.n); + pNode->key.n = reader.term.n; + if( i>0 ){ + char *aBlock = 0; + int nBlock = 0; + pNode = &pWriter->aNodeWriter[i-1]; + pNode->iBlock = reader.iChild; + rc = sqlite3Fts3ReadBlock(p, reader.iChild, &aBlock, &nBlock, 0); + blobGrowBuffer(&pNode->block, MAX(nBlock, p->nNodeSize), &rc); + if( rc==SQLITE_OK ){ + memcpy(pNode->block.a, aBlock, nBlock); + pNode->block.n = nBlock; + } + sqlite3_free(aBlock); + } + } + nodeReaderRelease(&reader); + } + } + + rc2 = sqlite3_reset(pSelect); + if( rc==SQLITE_OK ) rc = rc2; + } + + return rc; +} + +/* +** Determine the largest segment index value that exists within absolute +** level iAbsLevel+1. If no error occurs, set *piIdx to this value plus +** one before returning SQLITE_OK. Or, if there are no segments at all +** within level iAbsLevel, set *piIdx to zero. +** +** If an error occurs, return an SQLite error code. The final value of +** *piIdx is undefined in this case. +*/ +static int fts3IncrmergeOutputIdx( + Fts3Table *p, /* FTS Table handle */ + sqlite3_int64 iAbsLevel, /* Absolute index of input segments */ + int *piIdx /* OUT: Next free index at iAbsLevel+1 */ +){ + int rc; + sqlite3_stmt *pOutputIdx = 0; /* SQL used to find output index */ + + rc = fts3SqlStmt(p, SQL_NEXT_SEGMENT_INDEX, &pOutputIdx, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pOutputIdx, 1, iAbsLevel+1); + sqlite3_step(pOutputIdx); + *piIdx = sqlite3_column_int(pOutputIdx, 0); + rc = sqlite3_reset(pOutputIdx); + } + + return rc; +} + +/* +** Allocate an appendable output segment on absolute level iAbsLevel+1 +** with idx value iIdx. +** +** In the %_segdir table, a segment is defined by the values in three +** columns: +** +** start_block +** leaves_end_block +** end_block +** +** When an appendable segment is allocated, it is estimated that the +** maximum number of leaf blocks that may be required is the sum of the +** number of leaf blocks consumed by the input segments, plus the number +** of input segments, multiplied by two. This value is stored in stack +** variable nLeafEst. +** +** A total of 16*nLeafEst blocks are allocated when an appendable segment +** is created ((1 + end_block - start_block)==16*nLeafEst). The contiguous +** array of leaf nodes starts at the first block allocated. The array +** of interior nodes that are parents of the leaf nodes start at block +** (start_block + (1 + end_block - start_block) / 16). And so on. +** +** In the actual code below, the value "16" is replaced with the +** pre-processor macro FTS_MAX_APPENDABLE_HEIGHT. +*/ +static int fts3IncrmergeWriter( + Fts3Table *p, /* Fts3 table handle */ + sqlite3_int64 iAbsLevel, /* Absolute level of input segments */ + int iIdx, /* Index of new output segment */ + Fts3MultiSegReader *pCsr, /* Cursor that data will be read from */ + IncrmergeWriter *pWriter /* Populate this object */ +){ + int rc; /* Return Code */ + int i; /* Iterator variable */ + int nLeafEst = 0; /* Blocks allocated for leaf nodes */ + sqlite3_stmt *pLeafEst = 0; /* SQL used to determine nLeafEst */ + sqlite3_stmt *pFirstBlock = 0; /* SQL used to determine first block */ + + /* Calculate nLeafEst. */ + rc = fts3SqlStmt(p, SQL_MAX_LEAF_NODE_ESTIMATE, &pLeafEst, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pLeafEst, 1, iAbsLevel); + sqlite3_bind_int64(pLeafEst, 2, pCsr->nSegment); + if( SQLITE_ROW==sqlite3_step(pLeafEst) ){ + nLeafEst = sqlite3_column_int(pLeafEst, 0); + } + rc = sqlite3_reset(pLeafEst); + } + if( rc!=SQLITE_OK ) return rc; + + /* Calculate the first block to use in the output segment */ + rc = fts3SqlStmt(p, SQL_NEXT_SEGMENTS_ID, &pFirstBlock, 0); + if( rc==SQLITE_OK ){ + if( SQLITE_ROW==sqlite3_step(pFirstBlock) ){ + pWriter->iStart = sqlite3_column_int64(pFirstBlock, 0); + pWriter->iEnd = pWriter->iStart - 1; + pWriter->iEnd += nLeafEst * FTS_MAX_APPENDABLE_HEIGHT; + } + rc = sqlite3_reset(pFirstBlock); + } + if( rc!=SQLITE_OK ) return rc; + + /* Insert the marker in the %_segments table to make sure nobody tries + ** to steal the space just allocated. This is also used to identify + ** appendable segments. */ + rc = fts3WriteSegment(p, pWriter->iEnd, 0, 0); + if( rc!=SQLITE_OK ) return rc; + + pWriter->iAbsLevel = iAbsLevel; + pWriter->nLeafEst = nLeafEst; + pWriter->iIdx = iIdx; + + /* Set up the array of NodeWriter objects */ + for(i=0; iaNodeWriter[i].iBlock = pWriter->iStart + i*pWriter->nLeafEst; + } + return SQLITE_OK; +} + +/* +** Remove an entry from the %_segdir table. This involves running the +** following two statements: +** +** DELETE FROM %_segdir WHERE level = :iAbsLevel AND idx = :iIdx +** UPDATE %_segdir SET idx = idx - 1 WHERE level = :iAbsLevel AND idx > :iIdx +** +** The DELETE statement removes the specific %_segdir level. The UPDATE +** statement ensures that the remaining segments have contiguously allocated +** idx values. +*/ +static int fts3RemoveSegdirEntry( + Fts3Table *p, /* FTS3 table handle */ + sqlite3_int64 iAbsLevel, /* Absolute level to delete from */ + int iIdx /* Index of %_segdir entry to delete */ +){ + int rc; /* Return code */ + sqlite3_stmt *pDelete = 0; /* DELETE statement */ + + rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_ENTRY, &pDelete, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pDelete, 1, iAbsLevel); + sqlite3_bind_int(pDelete, 2, iIdx); + sqlite3_step(pDelete); + rc = sqlite3_reset(pDelete); + } + + return rc; +} + +/* +** One or more segments have just been removed from absolute level iAbsLevel. +** Update the 'idx' values of the remaining segments in the level so that +** the idx values are a contiguous sequence starting from 0. +*/ +static int fts3RepackSegdirLevel( + Fts3Table *p, /* FTS3 table handle */ + sqlite3_int64 iAbsLevel /* Absolute level to repack */ +){ + int rc; /* Return code */ + int *aIdx = 0; /* Array of remaining idx values */ + int nIdx = 0; /* Valid entries in aIdx[] */ + int nAlloc = 0; /* Allocated size of aIdx[] */ + int i; /* Iterator variable */ + sqlite3_stmt *pSelect = 0; /* Select statement to read idx values */ + sqlite3_stmt *pUpdate = 0; /* Update statement to modify idx values */ + + rc = fts3SqlStmt(p, SQL_SELECT_INDEXES, &pSelect, 0); + if( rc==SQLITE_OK ){ + int rc2; + sqlite3_bind_int64(pSelect, 1, iAbsLevel); + while( SQLITE_ROW==sqlite3_step(pSelect) ){ + if( nIdx>=nAlloc ){ + int *aNew; + nAlloc += 16; + aNew = sqlite3_realloc(aIdx, nAlloc*sizeof(int)); + if( !aNew ){ + rc = SQLITE_NOMEM; + break; + } + aIdx = aNew; + } + aIdx[nIdx++] = sqlite3_column_int(pSelect, 0); + } + rc2 = sqlite3_reset(pSelect); + if( rc==SQLITE_OK ) rc = rc2; + } + + if( rc==SQLITE_OK ){ + rc = fts3SqlStmt(p, SQL_SHIFT_SEGDIR_ENTRY, &pUpdate, 0); + } + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pUpdate, 2, iAbsLevel); + } + + assert( p->bIgnoreSavepoint==0 ); + p->bIgnoreSavepoint = 1; + for(i=0; rc==SQLITE_OK && ibIgnoreSavepoint = 0; + + sqlite3_free(aIdx); + return rc; +} + +static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){ + pNode->a[0] = (char)iHeight; + if( iChild ){ + assert( pNode->nAlloc>=1+sqlite3Fts3VarintLen(iChild) ); + pNode->n = 1 + sqlite3Fts3PutVarint(&pNode->a[1], iChild); + }else{ + assert( pNode->nAlloc>=1 ); + pNode->n = 1; + } +} + +/* +** The first two arguments are a pointer to and the size of a segment b-tree +** node. The node may be a leaf or an internal node. +** +** This function creates a new node image in blob object *pNew by copying +** all terms that are greater than or equal to zTerm/nTerm (for leaf nodes) +** or greater than zTerm/nTerm (for internal nodes) from aNode/nNode. +*/ +static int fts3TruncateNode( + const char *aNode, /* Current node image */ + int nNode, /* Size of aNode in bytes */ + Blob *pNew, /* OUT: Write new node image here */ + const char *zTerm, /* Omit all terms smaller than this */ + int nTerm, /* Size of zTerm in bytes */ + sqlite3_int64 *piBlock /* OUT: Block number in next layer down */ +){ + NodeReader reader; /* Reader object */ + Blob prev = {0, 0, 0}; /* Previous term written to new node */ + int rc = SQLITE_OK; /* Return code */ + int bLeaf = aNode[0]=='\0'; /* True for a leaf node */ + + /* Allocate required output space */ + blobGrowBuffer(pNew, nNode, &rc); + if( rc!=SQLITE_OK ) return rc; + pNew->n = 0; + + /* Populate new node buffer */ + for(rc = nodeReaderInit(&reader, aNode, nNode); + rc==SQLITE_OK && reader.aNode; + rc = nodeReaderNext(&reader) + ){ + if( pNew->n==0 ){ + int res = fts3TermCmp(reader.term.a, reader.term.n, zTerm, nTerm); + if( res<0 || (bLeaf==0 && res==0) ) continue; + fts3StartNode(pNew, (int)aNode[0], reader.iChild); + *piBlock = reader.iChild; + } + rc = fts3AppendToNode( + pNew, &prev, reader.term.a, reader.term.n, + reader.aDoclist, reader.nDoclist + ); + if( rc!=SQLITE_OK ) break; + } + if( pNew->n==0 ){ + fts3StartNode(pNew, (int)aNode[0], reader.iChild); + *piBlock = reader.iChild; + } + assert( pNew->n<=pNew->nAlloc ); + + nodeReaderRelease(&reader); + sqlite3_free(prev.a); + return rc; +} + +/* +** Remove all terms smaller than zTerm/nTerm from segment iIdx in absolute +** level iAbsLevel. This may involve deleting entries from the %_segments +** table, and modifying existing entries in both the %_segments and %_segdir +** tables. +** +** SQLITE_OK is returned if the segment is updated successfully. Or an +** SQLite error code otherwise. +*/ +static int fts3TruncateSegment( + Fts3Table *p, /* FTS3 table handle */ + sqlite3_int64 iAbsLevel, /* Absolute level of segment to modify */ + int iIdx, /* Index within level of segment to modify */ + const char *zTerm, /* Remove terms smaller than this */ + int nTerm /* Number of bytes in buffer zTerm */ +){ + int rc = SQLITE_OK; /* Return code */ + Blob root = {0,0,0}; /* New root page image */ + Blob block = {0,0,0}; /* Buffer used for any other block */ + sqlite3_int64 iBlock = 0; /* Block id */ + sqlite3_int64 iNewStart = 0; /* New value for iStartBlock */ + sqlite3_int64 iOldStart = 0; /* Old value for iStartBlock */ + sqlite3_stmt *pFetch = 0; /* Statement used to fetch segdir */ + + rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR, &pFetch, 0); + if( rc==SQLITE_OK ){ + int rc2; /* sqlite3_reset() return code */ + sqlite3_bind_int64(pFetch, 1, iAbsLevel); + sqlite3_bind_int(pFetch, 2, iIdx); + if( SQLITE_ROW==sqlite3_step(pFetch) ){ + const char *aRoot = sqlite3_column_blob(pFetch, 4); + int nRoot = sqlite3_column_bytes(pFetch, 4); + iOldStart = sqlite3_column_int64(pFetch, 1); + rc = fts3TruncateNode(aRoot, nRoot, &root, zTerm, nTerm, &iBlock); + } + rc2 = sqlite3_reset(pFetch); + if( rc==SQLITE_OK ) rc = rc2; + } + + while( rc==SQLITE_OK && iBlock ){ + char *aBlock = 0; + int nBlock = 0; + iNewStart = iBlock; + + rc = sqlite3Fts3ReadBlock(p, iBlock, &aBlock, &nBlock, 0); + if( rc==SQLITE_OK ){ + rc = fts3TruncateNode(aBlock, nBlock, &block, zTerm, nTerm, &iBlock); + } + if( rc==SQLITE_OK ){ + rc = fts3WriteSegment(p, iNewStart, block.a, block.n); + } + sqlite3_free(aBlock); + } + + /* Variable iNewStart now contains the first valid leaf node. */ + if( rc==SQLITE_OK && iNewStart ){ + sqlite3_stmt *pDel = 0; + rc = fts3SqlStmt(p, SQL_DELETE_SEGMENTS_RANGE, &pDel, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pDel, 1, iOldStart); + sqlite3_bind_int64(pDel, 2, iNewStart-1); + sqlite3_step(pDel); + rc = sqlite3_reset(pDel); + } + } + + if( rc==SQLITE_OK ){ + sqlite3_stmt *pChomp = 0; + rc = fts3SqlStmt(p, SQL_CHOMP_SEGDIR, &pChomp, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pChomp, 1, iNewStart); + sqlite3_bind_blob(pChomp, 2, root.a, root.n, SQLITE_STATIC); + sqlite3_bind_int64(pChomp, 3, iAbsLevel); + sqlite3_bind_int(pChomp, 4, iIdx); + sqlite3_step(pChomp); + rc = sqlite3_reset(pChomp); + } + } + + sqlite3_free(root.a); + sqlite3_free(block.a); + return rc; +} + +/* +** This function is called after an incrmental-merge operation has run to +** merge (or partially merge) two or more segments from absolute level +** iAbsLevel. +** +** Each input segment is either removed from the db completely (if all of +** its data was copied to the output segment by the incrmerge operation) +** or modified in place so that it no longer contains those entries that +** have been duplicated in the output segment. +*/ +static int fts3IncrmergeChomp( + Fts3Table *p, /* FTS table handle */ + sqlite3_int64 iAbsLevel, /* Absolute level containing segments */ + Fts3MultiSegReader *pCsr, /* Chomp all segments opened by this cursor */ + int *pnRem /* Number of segments not deleted */ +){ + int i; + int nRem = 0; + int rc = SQLITE_OK; + + for(i=pCsr->nSegment-1; i>=0 && rc==SQLITE_OK; i--){ + Fts3SegReader *pSeg = 0; + int j; + + /* Find the Fts3SegReader object with Fts3SegReader.iIdx==i. It is hiding + ** somewhere in the pCsr->apSegment[] array. */ + for(j=0; ALWAYS(jnSegment); j++){ + pSeg = pCsr->apSegment[j]; + if( pSeg->iIdx==i ) break; + } + assert( jnSegment && pSeg->iIdx==i ); + + if( pSeg->aNode==0 ){ + /* Seg-reader is at EOF. Remove the entire input segment. */ + rc = fts3DeleteSegment(p, pSeg); + if( rc==SQLITE_OK ){ + rc = fts3RemoveSegdirEntry(p, iAbsLevel, pSeg->iIdx); + } + *pnRem = 0; + }else{ + /* The incremental merge did not copy all the data from this + ** segment to the upper level. The segment is modified in place + ** so that it contains no keys smaller than zTerm/nTerm. */ + const char *zTerm = pSeg->zTerm; + int nTerm = pSeg->nTerm; + rc = fts3TruncateSegment(p, iAbsLevel, pSeg->iIdx, zTerm, nTerm); + nRem++; + } + } + + if( rc==SQLITE_OK && nRem!=pCsr->nSegment ){ + rc = fts3RepackSegdirLevel(p, iAbsLevel); + } + + *pnRem = nRem; + return rc; +} + +/* +** Store an incr-merge hint in the database. +*/ +static int fts3IncrmergeHintStore(Fts3Table *p, Blob *pHint){ + sqlite3_stmt *pReplace = 0; + int rc; /* Return code */ + + rc = fts3SqlStmt(p, SQL_REPLACE_STAT, &pReplace, 0); + if( rc==SQLITE_OK ){ + sqlite3_bind_int(pReplace, 1, FTS_STAT_INCRMERGEHINT); + sqlite3_bind_blob(pReplace, 2, pHint->a, pHint->n, SQLITE_STATIC); + sqlite3_step(pReplace); + rc = sqlite3_reset(pReplace); + } + + return rc; +} + +/* +** Load an incr-merge hint from the database. The incr-merge hint, if one +** exists, is stored in the rowid==1 row of the %_stat table. +** +** If successful, populate blob *pHint with the value read from the %_stat +** table and return SQLITE_OK. Otherwise, if an error occurs, return an +** SQLite error code. +*/ +static int fts3IncrmergeHintLoad(Fts3Table *p, Blob *pHint){ + sqlite3_stmt *pSelect = 0; + int rc; + + pHint->n = 0; + rc = fts3SqlStmt(p, SQL_SELECT_STAT, &pSelect, 0); + if( rc==SQLITE_OK ){ + int rc2; + sqlite3_bind_int(pSelect, 1, FTS_STAT_INCRMERGEHINT); + if( SQLITE_ROW==sqlite3_step(pSelect) ){ + const char *aHint = sqlite3_column_blob(pSelect, 0); + int nHint = sqlite3_column_bytes(pSelect, 0); + if( aHint ){ + blobGrowBuffer(pHint, nHint, &rc); + if( rc==SQLITE_OK ){ + memcpy(pHint->a, aHint, nHint); + pHint->n = nHint; + } + } + } + rc2 = sqlite3_reset(pSelect); + if( rc==SQLITE_OK ) rc = rc2; + } + + return rc; +} + +/* +** If *pRc is not SQLITE_OK when this function is called, it is a no-op. +** Otherwise, append an entry to the hint stored in blob *pHint. Each entry +** consists of two varints, the absolute level number of the input segments +** and the number of input segments. +** +** If successful, leave *pRc set to SQLITE_OK and return. If an error occurs, +** set *pRc to an SQLite error code before returning. +*/ +static void fts3IncrmergeHintPush( + Blob *pHint, /* Hint blob to append to */ + i64 iAbsLevel, /* First varint to store in hint */ + int nInput, /* Second varint to store in hint */ + int *pRc /* IN/OUT: Error code */ +){ + blobGrowBuffer(pHint, pHint->n + 2*FTS3_VARINT_MAX, pRc); + if( *pRc==SQLITE_OK ){ + pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], iAbsLevel); + pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], (i64)nInput); + } +} + +/* +** Read the last entry (most recently pushed) from the hint blob *pHint +** and then remove the entry. Write the two values read to *piAbsLevel and +** *pnInput before returning. +** +** If no error occurs, return SQLITE_OK. If the hint blob in *pHint does +** not contain at least two valid varints, return SQLITE_CORRUPT_VTAB. +*/ +static int fts3IncrmergeHintPop(Blob *pHint, i64 *piAbsLevel, int *pnInput){ + const int nHint = pHint->n; + int i; + + i = pHint->n-2; + while( i>0 && (pHint->a[i-1] & 0x80) ) i--; + while( i>0 && (pHint->a[i-1] & 0x80) ) i--; + + pHint->n = i; + i += sqlite3Fts3GetVarint(&pHint->a[i], piAbsLevel); + i += fts3GetVarint32(&pHint->a[i], pnInput); + if( i!=nHint ) return SQLITE_CORRUPT_VTAB; + + return SQLITE_OK; +} + + +/* +** Attempt an incremental merge that writes nMerge leaf blocks. +** +** Incremental merges happen nMin segments at a time. The segments +** to be merged are the nMin oldest segments (the ones with the smallest +** values for the _segdir.idx field) in the highest level that contains +** at least nMin segments. Multiple merges might occur in an attempt to +** write the quota of nMerge leaf blocks. +*/ +SQLITE_PRIVATE int sqlite3Fts3Incrmerge(Fts3Table *p, int nMerge, int nMin){ + int rc; /* Return code */ + int nRem = nMerge; /* Number of leaf pages yet to be written */ + Fts3MultiSegReader *pCsr; /* Cursor used to read input data */ + Fts3SegFilter *pFilter; /* Filter used with cursor pCsr */ + IncrmergeWriter *pWriter; /* Writer object */ + int nSeg = 0; /* Number of input segments */ + sqlite3_int64 iAbsLevel = 0; /* Absolute level number to work on */ + Blob hint = {0, 0, 0}; /* Hint read from %_stat table */ + int bDirtyHint = 0; /* True if blob 'hint' has been modified */ + + /* Allocate space for the cursor, filter and writer objects */ + const int nAlloc = sizeof(*pCsr) + sizeof(*pFilter) + sizeof(*pWriter); + pWriter = (IncrmergeWriter *)sqlite3_malloc(nAlloc); + if( !pWriter ) return SQLITE_NOMEM; + pFilter = (Fts3SegFilter *)&pWriter[1]; + pCsr = (Fts3MultiSegReader *)&pFilter[1]; + + rc = fts3IncrmergeHintLoad(p, &hint); + while( rc==SQLITE_OK && nRem>0 ){ + const i64 nMod = FTS3_SEGDIR_MAXLEVEL * p->nIndex; + sqlite3_stmt *pFindLevel = 0; /* SQL used to determine iAbsLevel */ + int bUseHint = 0; /* True if attempting to append */ + int iIdx = 0; /* Largest idx in level (iAbsLevel+1) */ + + /* Search the %_segdir table for the absolute level with the smallest + ** relative level number that contains at least nMin segments, if any. + ** If one is found, set iAbsLevel to the absolute level number and + ** nSeg to nMin. If no level with at least nMin segments can be found, + ** set nSeg to -1. + */ + rc = fts3SqlStmt(p, SQL_FIND_MERGE_LEVEL, &pFindLevel, 0); + sqlite3_bind_int(pFindLevel, 1, nMin); + if( sqlite3_step(pFindLevel)==SQLITE_ROW ){ + iAbsLevel = sqlite3_column_int64(pFindLevel, 0); + nSeg = nMin; + }else{ + nSeg = -1; + } + rc = sqlite3_reset(pFindLevel); + + /* If the hint read from the %_stat table is not empty, check if the + ** last entry in it specifies a relative level smaller than or equal + ** to the level identified by the block above (if any). If so, this + ** iteration of the loop will work on merging at the hinted level. + */ + if( rc==SQLITE_OK && hint.n ){ + int nHint = hint.n; + sqlite3_int64 iHintAbsLevel = 0; /* Hint level */ + int nHintSeg = 0; /* Hint number of segments */ + + rc = fts3IncrmergeHintPop(&hint, &iHintAbsLevel, &nHintSeg); + if( nSeg<0 || (iAbsLevel % nMod) >= (iHintAbsLevel % nMod) ){ + iAbsLevel = iHintAbsLevel; + nSeg = nHintSeg; + bUseHint = 1; + bDirtyHint = 1; + }else{ + /* This undoes the effect of the HintPop() above - so that no entry + ** is removed from the hint blob. */ + hint.n = nHint; + } + } + + /* If nSeg is less that zero, then there is no level with at least + ** nMin segments and no hint in the %_stat table. No work to do. + ** Exit early in this case. */ + if( nSeg<0 ) break; + + /* Open a cursor to iterate through the contents of the oldest nSeg + ** indexes of absolute level iAbsLevel. If this cursor is opened using + ** the 'hint' parameters, it is possible that there are less than nSeg + ** segments available in level iAbsLevel. In this case, no work is + ** done on iAbsLevel - fall through to the next iteration of the loop + ** to start work on some other level. */ + memset(pWriter, 0, nAlloc); + pFilter->flags = FTS3_SEGMENT_REQUIRE_POS; + + if( rc==SQLITE_OK ){ + rc = fts3IncrmergeOutputIdx(p, iAbsLevel, &iIdx); + assert( bUseHint==1 || bUseHint==0 ); + if( iIdx==0 || (bUseHint && iIdx==1) ){ + int bIgnore = 0; + rc = fts3SegmentIsMaxLevel(p, iAbsLevel+1, &bIgnore); + if( bIgnore ){ + pFilter->flags |= FTS3_SEGMENT_IGNORE_EMPTY; + } + } + } + + if( rc==SQLITE_OK ){ + rc = fts3IncrmergeCsr(p, iAbsLevel, nSeg, pCsr); + } + if( SQLITE_OK==rc && pCsr->nSegment==nSeg + && SQLITE_OK==(rc = sqlite3Fts3SegReaderStart(p, pCsr, pFilter)) + && SQLITE_ROW==(rc = sqlite3Fts3SegReaderStep(p, pCsr)) + ){ + if( bUseHint && iIdx>0 ){ + const char *zKey = pCsr->zTerm; + int nKey = pCsr->nTerm; + rc = fts3IncrmergeLoad(p, iAbsLevel, iIdx-1, zKey, nKey, pWriter); + }else{ + rc = fts3IncrmergeWriter(p, iAbsLevel, iIdx, pCsr, pWriter); + } + + if( rc==SQLITE_OK && pWriter->nLeafEst ){ + fts3LogMerge(nSeg, iAbsLevel); + do { + rc = fts3IncrmergeAppend(p, pWriter, pCsr); + if( rc==SQLITE_OK ) rc = sqlite3Fts3SegReaderStep(p, pCsr); + if( pWriter->nWork>=nRem && rc==SQLITE_ROW ) rc = SQLITE_OK; + }while( rc==SQLITE_ROW ); + + /* Update or delete the input segments */ + if( rc==SQLITE_OK ){ + nRem -= (1 + pWriter->nWork); + rc = fts3IncrmergeChomp(p, iAbsLevel, pCsr, &nSeg); + if( nSeg!=0 ){ + bDirtyHint = 1; + fts3IncrmergeHintPush(&hint, iAbsLevel, nSeg, &rc); + } + } + } + + if( nSeg!=0 ){ + pWriter->nLeafData = pWriter->nLeafData * -1; + } + fts3IncrmergeRelease(p, pWriter, &rc); + if( nSeg==0 && pWriter->bNoLeafData==0 ){ + fts3PromoteSegments(p, iAbsLevel+1, pWriter->nLeafData); + } + } + + sqlite3Fts3SegReaderFinish(pCsr); + } + + /* Write the hint values into the %_stat table for the next incr-merger */ + if( bDirtyHint && rc==SQLITE_OK ){ + rc = fts3IncrmergeHintStore(p, &hint); + } + + sqlite3_free(pWriter); + sqlite3_free(hint.a); + return rc; +} + +/* +** Convert the text beginning at *pz into an integer and return +** its value. Advance *pz to point to the first character past +** the integer. +*/ +static int fts3Getint(const char **pz){ + const char *z = *pz; + int i = 0; + while( (*z)>='0' && (*z)<='9' ) i = 10*i + *(z++) - '0'; + *pz = z; + return i; +} + +/* +** Process statements of the form: +** +** INSERT INTO table(table) VALUES('merge=A,B'); +** +** A and B are integers that decode to be the number of leaf pages +** written for the merge, and the minimum number of segments on a level +** before it will be selected for a merge, respectively. +*/ +static int fts3DoIncrmerge( + Fts3Table *p, /* FTS3 table handle */ + const char *zParam /* Nul-terminated string containing "A,B" */ +){ + int rc; + int nMin = (FTS3_MERGE_COUNT / 2); + int nMerge = 0; + const char *z = zParam; + + /* Read the first integer value */ + nMerge = fts3Getint(&z); + + /* If the first integer value is followed by a ',', read the second + ** integer value. */ + if( z[0]==',' && z[1]!='\0' ){ + z++; + nMin = fts3Getint(&z); + } + + if( z[0]!='\0' || nMin<2 ){ + rc = SQLITE_ERROR; + }else{ + rc = SQLITE_OK; + if( !p->bHasStat ){ + assert( p->bFts4==0 ); + sqlite3Fts3CreateStatTable(&rc, p); + } + if( rc==SQLITE_OK ){ + rc = sqlite3Fts3Incrmerge(p, nMerge, nMin); + } + sqlite3Fts3SegmentsClose(p); + } + return rc; +} + +/* +** Process statements of the form: +** +** INSERT INTO table(table) VALUES('automerge=X'); +** +** where X is an integer. X==0 means to turn automerge off. X!=0 means +** turn it on. The setting is persistent. +*/ +static int fts3DoAutoincrmerge( + Fts3Table *p, /* FTS3 table handle */ + const char *zParam /* Nul-terminated string containing boolean */ +){ + int rc = SQLITE_OK; + sqlite3_stmt *pStmt = 0; + p->nAutoincrmerge = fts3Getint(&zParam); + if( p->nAutoincrmerge==1 || p->nAutoincrmerge>FTS3_MERGE_COUNT ){ + p->nAutoincrmerge = 8; + } + if( !p->bHasStat ){ + assert( p->bFts4==0 ); + sqlite3Fts3CreateStatTable(&rc, p); + if( rc ) return rc; + } + rc = fts3SqlStmt(p, SQL_REPLACE_STAT, &pStmt, 0); + if( rc ) return rc; + sqlite3_bind_int(pStmt, 1, FTS_STAT_AUTOINCRMERGE); + sqlite3_bind_int(pStmt, 2, p->nAutoincrmerge); + sqlite3_step(pStmt); + rc = sqlite3_reset(pStmt); + return rc; +} + +/* +** Return a 64-bit checksum for the FTS index entry specified by the +** arguments to this function. +*/ +static u64 fts3ChecksumEntry( + const char *zTerm, /* Pointer to buffer containing term */ + int nTerm, /* Size of zTerm in bytes */ + int iLangid, /* Language id for current row */ + int iIndex, /* Index (0..Fts3Table.nIndex-1) */ + i64 iDocid, /* Docid for current row. */ + int iCol, /* Column number */ + int iPos /* Position */ +){ + int i; + u64 ret = (u64)iDocid; + + ret += (ret<<3) + iLangid; + ret += (ret<<3) + iIndex; + ret += (ret<<3) + iCol; + ret += (ret<<3) + iPos; + for(i=0; inIndex-1) */ + int *pRc /* OUT: Return code */ +){ + Fts3SegFilter filter; + Fts3MultiSegReader csr; + int rc; + u64 cksum = 0; + + assert( *pRc==SQLITE_OK ); + + memset(&filter, 0, sizeof(filter)); + memset(&csr, 0, sizeof(csr)); + filter.flags = FTS3_SEGMENT_REQUIRE_POS|FTS3_SEGMENT_IGNORE_EMPTY; + filter.flags |= FTS3_SEGMENT_SCAN; + + rc = sqlite3Fts3SegReaderCursor( + p, iLangid, iIndex, FTS3_SEGCURSOR_ALL, 0, 0, 0, 1,&csr + ); + if( rc==SQLITE_OK ){ + rc = sqlite3Fts3SegReaderStart(p, &csr, &filter); + } + + if( rc==SQLITE_OK ){ + while( SQLITE_ROW==(rc = sqlite3Fts3SegReaderStep(p, &csr)) ){ + char *pCsr = csr.aDoclist; + char *pEnd = &pCsr[csr.nDoclist]; + + i64 iDocid = 0; + i64 iCol = 0; + i64 iPos = 0; + + pCsr += sqlite3Fts3GetVarint(pCsr, &iDocid); + while( pCsrnIndex); + while( rc==SQLITE_OK && sqlite3_step(pAllLangid)==SQLITE_ROW ){ + int iLangid = sqlite3_column_int(pAllLangid, 0); + int i; + for(i=0; inIndex; i++){ + cksum1 = cksum1 ^ fts3ChecksumIndex(p, iLangid, i, &rc); + } + } + rc2 = sqlite3_reset(pAllLangid); + if( rc==SQLITE_OK ) rc = rc2; + } + + /* This block calculates the checksum according to the %_content table */ + rc = fts3SqlStmt(p, SQL_SELECT_ALL_LANGID, &pAllLangid, 0); + if( rc==SQLITE_OK ){ + sqlite3_tokenizer_module const *pModule = p->pTokenizer->pModule; + sqlite3_stmt *pStmt = 0; + char *zSql; + + zSql = sqlite3_mprintf("SELECT %s" , p->zReadExprlist); + if( !zSql ){ + rc = SQLITE_NOMEM; + }else{ + rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, 0); + sqlite3_free(zSql); + } + + while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ + i64 iDocid = sqlite3_column_int64(pStmt, 0); + int iLang = langidFromSelect(p, pStmt); + int iCol; + + for(iCol=0; rc==SQLITE_OK && iColnColumn; iCol++){ + const char *zText = (const char *)sqlite3_column_text(pStmt, iCol+1); + int nText = sqlite3_column_bytes(pStmt, iCol+1); + sqlite3_tokenizer_cursor *pT = 0; + + rc = sqlite3Fts3OpenTokenizer(p->pTokenizer, iLang, zText, nText, &pT); + while( rc==SQLITE_OK ){ + char const *zToken; /* Buffer containing token */ + int nToken = 0; /* Number of bytes in token */ + int iDum1 = 0, iDum2 = 0; /* Dummy variables */ + int iPos = 0; /* Position of token in zText */ + + rc = pModule->xNext(pT, &zToken, &nToken, &iDum1, &iDum2, &iPos); + if( rc==SQLITE_OK ){ + int i; + cksum2 = cksum2 ^ fts3ChecksumEntry( + zToken, nToken, iLang, 0, iDocid, iCol, iPos + ); + for(i=1; inIndex; i++){ + if( p->aIndex[i].nPrefix<=nToken ){ + cksum2 = cksum2 ^ fts3ChecksumEntry( + zToken, p->aIndex[i].nPrefix, iLang, i, iDocid, iCol, iPos + ); + } + } + } + } + if( pT ) pModule->xClose(pT); + if( rc==SQLITE_DONE ) rc = SQLITE_OK; + } + } + + sqlite3_finalize(pStmt); + } + + *pbOk = (cksum1==cksum2); + return rc; +} + +/* +** Run the integrity-check. If no error occurs and the current contents of +** the FTS index are correct, return SQLITE_OK. Or, if the contents of the +** FTS index are incorrect, return SQLITE_CORRUPT_VTAB. +** +** Or, if an error (e.g. an OOM or IO error) occurs, return an SQLite +** error code. +** +** The integrity-check works as follows. For each token and indexed token +** prefix in the document set, a 64-bit checksum is calculated (by code +** in fts3ChecksumEntry()) based on the following: +** +** + The index number (0 for the main index, 1 for the first prefix +** index etc.), +** + The token (or token prefix) text itself, +** + The language-id of the row it appears in, +** + The docid of the row it appears in, +** + The column it appears in, and +** + The tokens position within that column. +** +** The checksums for all entries in the index are XORed together to create +** a single checksum for the entire index. +** +** The integrity-check code calculates the same checksum in two ways: +** +** 1. By scanning the contents of the FTS index, and +** 2. By scanning and tokenizing the content table. +** +** If the two checksums are identical, the integrity-check is deemed to have +** passed. +*/ +static int fts3DoIntegrityCheck( + Fts3Table *p /* FTS3 table handle */ +){ + int rc; + int bOk = 0; + rc = fts3IntegrityCheck(p, &bOk); + if( rc==SQLITE_OK && bOk==0 ) rc = SQLITE_CORRUPT_VTAB; + return rc; +} + +/* +** Handle a 'special' INSERT of the form: +** +** "INSERT INTO tbl(tbl) VALUES()" +** +** Argument pVal contains the result of . Currently the only +** meaningful value to insert is the text 'optimize'. +*/ +static int fts3SpecialInsert(Fts3Table *p, sqlite3_value *pVal){ + int rc; /* Return Code */ + const char *zVal = (const char *)sqlite3_value_text(pVal); + int nVal = sqlite3_value_bytes(pVal); + + if( !zVal ){ + return SQLITE_NOMEM; + }else if( nVal==8 && 0==sqlite3_strnicmp(zVal, "optimize", 8) ){ + rc = fts3DoOptimize(p, 0); + }else if( nVal==7 && 0==sqlite3_strnicmp(zVal, "rebuild", 7) ){ + rc = fts3DoRebuild(p); + }else if( nVal==15 && 0==sqlite3_strnicmp(zVal, "integrity-check", 15) ){ + rc = fts3DoIntegrityCheck(p); + }else if( nVal>6 && 0==sqlite3_strnicmp(zVal, "merge=", 6) ){ + rc = fts3DoIncrmerge(p, &zVal[6]); + }else if( nVal>10 && 0==sqlite3_strnicmp(zVal, "automerge=", 10) ){ + rc = fts3DoAutoincrmerge(p, &zVal[10]); +#ifdef SQLITE_TEST + }else if( nVal>9 && 0==sqlite3_strnicmp(zVal, "nodesize=", 9) ){ + p->nNodeSize = atoi(&zVal[9]); + rc = SQLITE_OK; + }else if( nVal>11 && 0==sqlite3_strnicmp(zVal, "maxpending=", 9) ){ + p->nMaxPendingData = atoi(&zVal[11]); + rc = SQLITE_OK; + }else if( nVal>21 && 0==sqlite3_strnicmp(zVal, "test-no-incr-doclist=", 21) ){ + p->bNoIncrDoclist = atoi(&zVal[21]); + rc = SQLITE_OK; +#endif + }else{ + rc = SQLITE_ERROR; + } + + return rc; +} + +#ifndef SQLITE_DISABLE_FTS4_DEFERRED +/* +** Delete all cached deferred doclists. Deferred doclists are cached +** (allocated) by the sqlite3Fts3CacheDeferredDoclists() function. +*/ +SQLITE_PRIVATE void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *pCsr){ + Fts3DeferredToken *pDef; + for(pDef=pCsr->pDeferred; pDef; pDef=pDef->pNext){ + fts3PendingListDelete(pDef->pList); + pDef->pList = 0; + } +} + +/* +** Free all entries in the pCsr->pDeffered list. Entries are added to +** this list using sqlite3Fts3DeferToken(). +*/ +SQLITE_PRIVATE void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *pCsr){ + Fts3DeferredToken *pDef; + Fts3DeferredToken *pNext; + for(pDef=pCsr->pDeferred; pDef; pDef=pNext){ + pNext = pDef->pNext; + fts3PendingListDelete(pDef->pList); + sqlite3_free(pDef); + } + pCsr->pDeferred = 0; +} + +/* +** Generate deferred-doclists for all tokens in the pCsr->pDeferred list +** based on the row that pCsr currently points to. +** +** A deferred-doclist is like any other doclist with position information +** included, except that it only contains entries for a single row of the +** table, not for all rows. +*/ +SQLITE_PRIVATE int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *pCsr){ + int rc = SQLITE_OK; /* Return code */ + if( pCsr->pDeferred ){ + int i; /* Used to iterate through table columns */ + sqlite3_int64 iDocid; /* Docid of the row pCsr points to */ + Fts3DeferredToken *pDef; /* Used to iterate through deferred tokens */ + + Fts3Table *p = (Fts3Table *)pCsr->base.pVtab; + sqlite3_tokenizer *pT = p->pTokenizer; + sqlite3_tokenizer_module const *pModule = pT->pModule; + + assert( pCsr->isRequireSeek==0 ); + iDocid = sqlite3_column_int64(pCsr->pStmt, 0); + + for(i=0; inColumn && rc==SQLITE_OK; i++){ + if( p->abNotindexed[i]==0 ){ + const char *zText = (const char *)sqlite3_column_text(pCsr->pStmt, i+1); + sqlite3_tokenizer_cursor *pTC = 0; + + rc = sqlite3Fts3OpenTokenizer(pT, pCsr->iLangid, zText, -1, &pTC); + while( rc==SQLITE_OK ){ + char const *zToken; /* Buffer containing token */ + int nToken = 0; /* Number of bytes in token */ + int iDum1 = 0, iDum2 = 0; /* Dummy variables */ + int iPos = 0; /* Position of token in zText */ + + rc = pModule->xNext(pTC, &zToken, &nToken, &iDum1, &iDum2, &iPos); + for(pDef=pCsr->pDeferred; pDef && rc==SQLITE_OK; pDef=pDef->pNext){ + Fts3PhraseToken *pPT = pDef->pToken; + if( (pDef->iCol>=p->nColumn || pDef->iCol==i) + && (pPT->bFirst==0 || iPos==0) + && (pPT->n==nToken || (pPT->isPrefix && pPT->nz, pPT->n)) + ){ + fts3PendingListAppend(&pDef->pList, iDocid, i, iPos, &rc); + } + } + } + if( pTC ) pModule->xClose(pTC); + if( rc==SQLITE_DONE ) rc = SQLITE_OK; + } + } + + for(pDef=pCsr->pDeferred; pDef && rc==SQLITE_OK; pDef=pDef->pNext){ + if( pDef->pList ){ + rc = fts3PendingListAppendVarint(&pDef->pList, 0); + } + } + } + + return rc; +} + +SQLITE_PRIVATE int sqlite3Fts3DeferredTokenList( + Fts3DeferredToken *p, + char **ppData, + int *pnData +){ + char *pRet; + int nSkip; + sqlite3_int64 dummy; + + *ppData = 0; + *pnData = 0; + + if( p->pList==0 ){ + return SQLITE_OK; + } + + pRet = (char *)sqlite3_malloc(p->pList->nData); + if( !pRet ) return SQLITE_NOMEM; + + nSkip = sqlite3Fts3GetVarint(p->pList->aData, &dummy); + *pnData = p->pList->nData - nSkip; + *ppData = pRet; + + memcpy(pRet, &p->pList->aData[nSkip], *pnData); + return SQLITE_OK; +} + +/* +** Add an entry for token pToken to the pCsr->pDeferred list. +*/ +SQLITE_PRIVATE int sqlite3Fts3DeferToken( + Fts3Cursor *pCsr, /* Fts3 table cursor */ + Fts3PhraseToken *pToken, /* Token to defer */ + int iCol /* Column that token must appear in (or -1) */ +){ + Fts3DeferredToken *pDeferred; + pDeferred = sqlite3_malloc(sizeof(*pDeferred)); + if( !pDeferred ){ + return SQLITE_NOMEM; + } + memset(pDeferred, 0, sizeof(*pDeferred)); + pDeferred->pToken = pToken; + pDeferred->pNext = pCsr->pDeferred; + pDeferred->iCol = iCol; + pCsr->pDeferred = pDeferred; + + assert( pToken->pDeferred==0 ); + pToken->pDeferred = pDeferred; + + return SQLITE_OK; +} +#endif + +/* +** SQLite value pRowid contains the rowid of a row that may or may not be +** present in the FTS3 table. If it is, delete it and adjust the contents +** of subsiduary data structures accordingly. +*/ +static int fts3DeleteByRowid( + Fts3Table *p, + sqlite3_value *pRowid, + int *pnChng, /* IN/OUT: Decrement if row is deleted */ + u32 *aSzDel +){ + int rc = SQLITE_OK; /* Return code */ + int bFound = 0; /* True if *pRowid really is in the table */ + + fts3DeleteTerms(&rc, p, pRowid, aSzDel, &bFound); + if( bFound && rc==SQLITE_OK ){ + int isEmpty = 0; /* Deleting *pRowid leaves the table empty */ + rc = fts3IsEmpty(p, pRowid, &isEmpty); + if( rc==SQLITE_OK ){ + if( isEmpty ){ + /* Deleting this row means the whole table is empty. In this case + ** delete the contents of all three tables and throw away any + ** data in the pendingTerms hash table. */ + rc = fts3DeleteAll(p, 1); + *pnChng = 0; + memset(aSzDel, 0, sizeof(u32) * (p->nColumn+1) * 2); + }else{ + *pnChng = *pnChng - 1; + if( p->zContentTbl==0 ){ + fts3SqlExec(&rc, p, SQL_DELETE_CONTENT, &pRowid); + } + if( p->bHasDocsize ){ + fts3SqlExec(&rc, p, SQL_DELETE_DOCSIZE, &pRowid); + } + } + } + } + + return rc; +} + +/* +** This function does the work for the xUpdate method of FTS3 virtual +** tables. The schema of the virtual table being: +** +** CREATE TABLE
          ( +** , +**
          HIDDEN, +** docid HIDDEN, +** HIDDEN +** ); +** +** +*/ +SQLITE_PRIVATE int sqlite3Fts3UpdateMethod( + sqlite3_vtab *pVtab, /* FTS3 vtab object */ + int nArg, /* Size of argument array */ + sqlite3_value **apVal, /* Array of arguments */ + sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */ +){ + Fts3Table *p = (Fts3Table *)pVtab; + int rc = SQLITE_OK; /* Return Code */ + int isRemove = 0; /* True for an UPDATE or DELETE */ + u32 *aSzIns = 0; /* Sizes of inserted documents */ + u32 *aSzDel = 0; /* Sizes of deleted documents */ + int nChng = 0; /* Net change in number of documents */ + int bInsertDone = 0; + + /* At this point it must be known if the %_stat table exists or not. + ** So bHasStat may not be 2. */ + assert( p->bHasStat==0 || p->bHasStat==1 ); + + assert( p->pSegments==0 ); + assert( + nArg==1 /* DELETE operations */ + || nArg==(2 + p->nColumn + 3) /* INSERT or UPDATE operations */ + ); + + /* Check for a "special" INSERT operation. One of the form: + ** + ** INSERT INTO xyz(xyz) VALUES('command'); + */ + if( nArg>1 + && sqlite3_value_type(apVal[0])==SQLITE_NULL + && sqlite3_value_type(apVal[p->nColumn+2])!=SQLITE_NULL + ){ + rc = fts3SpecialInsert(p, apVal[p->nColumn+2]); + goto update_out; + } + + if( nArg>1 && sqlite3_value_int(apVal[2 + p->nColumn + 2])<0 ){ + rc = SQLITE_CONSTRAINT; + goto update_out; + } + + /* Allocate space to hold the change in document sizes */ + aSzDel = sqlite3_malloc( sizeof(aSzDel[0])*(p->nColumn+1)*2 ); + if( aSzDel==0 ){ + rc = SQLITE_NOMEM; + goto update_out; + } + aSzIns = &aSzDel[p->nColumn+1]; + memset(aSzDel, 0, sizeof(aSzDel[0])*(p->nColumn+1)*2); + + rc = fts3Writelock(p); + if( rc!=SQLITE_OK ) goto update_out; + + /* If this is an INSERT operation, or an UPDATE that modifies the rowid + ** value, then this operation requires constraint handling. + ** + ** If the on-conflict mode is REPLACE, this means that the existing row + ** should be deleted from the database before inserting the new row. Or, + ** if the on-conflict mode is other than REPLACE, then this method must + ** detect the conflict and return SQLITE_CONSTRAINT before beginning to + ** modify the database file. + */ + if( nArg>1 && p->zContentTbl==0 ){ + /* Find the value object that holds the new rowid value. */ + sqlite3_value *pNewRowid = apVal[3+p->nColumn]; + if( sqlite3_value_type(pNewRowid)==SQLITE_NULL ){ + pNewRowid = apVal[1]; + } + + if( sqlite3_value_type(pNewRowid)!=SQLITE_NULL && ( + sqlite3_value_type(apVal[0])==SQLITE_NULL + || sqlite3_value_int64(apVal[0])!=sqlite3_value_int64(pNewRowid) + )){ + /* The new rowid is not NULL (in this case the rowid will be + ** automatically assigned and there is no chance of a conflict), and + ** the statement is either an INSERT or an UPDATE that modifies the + ** rowid column. So if the conflict mode is REPLACE, then delete any + ** existing row with rowid=pNewRowid. + ** + ** Or, if the conflict mode is not REPLACE, insert the new record into + ** the %_content table. If we hit the duplicate rowid constraint (or any + ** other error) while doing so, return immediately. + ** + ** This branch may also run if pNewRowid contains a value that cannot + ** be losslessly converted to an integer. In this case, the eventual + ** call to fts3InsertData() (either just below or further on in this + ** function) will return SQLITE_MISMATCH. If fts3DeleteByRowid is + ** invoked, it will delete zero rows (since no row will have + ** docid=$pNewRowid if $pNewRowid is not an integer value). + */ + if( sqlite3_vtab_on_conflict(p->db)==SQLITE_REPLACE ){ + rc = fts3DeleteByRowid(p, pNewRowid, &nChng, aSzDel); + }else{ + rc = fts3InsertData(p, apVal, pRowid); + bInsertDone = 1; + } + } + } + if( rc!=SQLITE_OK ){ + goto update_out; + } + + /* If this is a DELETE or UPDATE operation, remove the old record. */ + if( sqlite3_value_type(apVal[0])!=SQLITE_NULL ){ + assert( sqlite3_value_type(apVal[0])==SQLITE_INTEGER ); + rc = fts3DeleteByRowid(p, apVal[0], &nChng, aSzDel); + isRemove = 1; + } + + /* If this is an INSERT or UPDATE operation, insert the new record. */ + if( nArg>1 && rc==SQLITE_OK ){ + int iLangid = sqlite3_value_int(apVal[2 + p->nColumn + 2]); + if( bInsertDone==0 ){ + rc = fts3InsertData(p, apVal, pRowid); + if( rc==SQLITE_CONSTRAINT && p->zContentTbl==0 ){ + rc = FTS_CORRUPT_VTAB; + } + } + if( rc==SQLITE_OK && (!isRemove || *pRowid!=p->iPrevDocid ) ){ + rc = fts3PendingTermsDocid(p, iLangid, *pRowid); + } + if( rc==SQLITE_OK ){ + assert( p->iPrevDocid==*pRowid ); + rc = fts3InsertTerms(p, iLangid, apVal, aSzIns); + } + if( p->bHasDocsize ){ + fts3InsertDocsize(&rc, p, aSzIns); + } + nChng++; + } + + if( p->bFts4 ){ + fts3UpdateDocTotals(&rc, p, aSzIns, aSzDel, nChng); + } + + update_out: + sqlite3_free(aSzDel); + sqlite3Fts3SegmentsClose(p); + return rc; +} + +/* +** Flush any data in the pending-terms hash table to disk. If successful, +** merge all segments in the database (including the new segment, if +** there was any data to flush) into a single segment. +*/ +SQLITE_PRIVATE int sqlite3Fts3Optimize(Fts3Table *p){ + int rc; + rc = sqlite3_exec(p->db, "SAVEPOINT fts3", 0, 0, 0); + if( rc==SQLITE_OK ){ + rc = fts3DoOptimize(p, 1); + if( rc==SQLITE_OK || rc==SQLITE_DONE ){ + int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0); + if( rc2!=SQLITE_OK ) rc = rc2; + }else{ + sqlite3_exec(p->db, "ROLLBACK TO fts3", 0, 0, 0); + sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0); + } + } + sqlite3Fts3SegmentsClose(p); + return rc; +} + +#endif + +/************** End of fts3_write.c ******************************************/ +/************** Begin file fts3_snippet.c ************************************/ +/* +** 2009 Oct 23 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +*/ + +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* #include */ +/* #include */ + +/* +** Characters that may appear in the second argument to matchinfo(). +*/ +#define FTS3_MATCHINFO_NPHRASE 'p' /* 1 value */ +#define FTS3_MATCHINFO_NCOL 'c' /* 1 value */ +#define FTS3_MATCHINFO_NDOC 'n' /* 1 value */ +#define FTS3_MATCHINFO_AVGLENGTH 'a' /* nCol values */ +#define FTS3_MATCHINFO_LENGTH 'l' /* nCol values */ +#define FTS3_MATCHINFO_LCS 's' /* nCol values */ +#define FTS3_MATCHINFO_HITS 'x' /* 3*nCol*nPhrase values */ + +/* +** The default value for the second argument to matchinfo(). +*/ +#define FTS3_MATCHINFO_DEFAULT "pcx" + + +/* +** Used as an fts3ExprIterate() context when loading phrase doclists to +** Fts3Expr.aDoclist[]/nDoclist. +*/ +typedef struct LoadDoclistCtx LoadDoclistCtx; +struct LoadDoclistCtx { + Fts3Cursor *pCsr; /* FTS3 Cursor */ + int nPhrase; /* Number of phrases seen so far */ + int nToken; /* Number of tokens seen so far */ +}; + +/* +** The following types are used as part of the implementation of the +** fts3BestSnippet() routine. +*/ +typedef struct SnippetIter SnippetIter; +typedef struct SnippetPhrase SnippetPhrase; +typedef struct SnippetFragment SnippetFragment; + +struct SnippetIter { + Fts3Cursor *pCsr; /* Cursor snippet is being generated from */ + int iCol; /* Extract snippet from this column */ + int nSnippet; /* Requested snippet length (in tokens) */ + int nPhrase; /* Number of phrases in query */ + SnippetPhrase *aPhrase; /* Array of size nPhrase */ + int iCurrent; /* First token of current snippet */ +}; + +struct SnippetPhrase { + int nToken; /* Number of tokens in phrase */ + char *pList; /* Pointer to start of phrase position list */ + int iHead; /* Next value in position list */ + char *pHead; /* Position list data following iHead */ + int iTail; /* Next value in trailing position list */ + char *pTail; /* Position list data following iTail */ +}; + +struct SnippetFragment { + int iCol; /* Column snippet is extracted from */ + int iPos; /* Index of first token in snippet */ + u64 covered; /* Mask of query phrases covered */ + u64 hlmask; /* Mask of snippet terms to highlight */ +}; + +/* +** This type is used as an fts3ExprIterate() context object while +** accumulating the data returned by the matchinfo() function. +*/ +typedef struct MatchInfo MatchInfo; +struct MatchInfo { + Fts3Cursor *pCursor; /* FTS3 Cursor */ + int nCol; /* Number of columns in table */ + int nPhrase; /* Number of matchable phrases in query */ + sqlite3_int64 nDoc; /* Number of docs in database */ + u32 *aMatchinfo; /* Pre-allocated buffer */ +}; + + + +/* +** The snippet() and offsets() functions both return text values. An instance +** of the following structure is used to accumulate those values while the +** functions are running. See fts3StringAppend() for details. +*/ +typedef struct StrBuffer StrBuffer; +struct StrBuffer { + char *z; /* Pointer to buffer containing string */ + int n; /* Length of z in bytes (excl. nul-term) */ + int nAlloc; /* Allocated size of buffer z in bytes */ +}; + + +/* +** This function is used to help iterate through a position-list. A position +** list is a list of unique integers, sorted from smallest to largest. Each +** element of the list is represented by an FTS3 varint that takes the value +** of the difference between the current element and the previous one plus +** two. For example, to store the position-list: +** +** 4 9 113 +** +** the three varints: +** +** 6 7 106 +** +** are encoded. +** +** When this function is called, *pp points to the start of an element of +** the list. *piPos contains the value of the previous entry in the list. +** After it returns, *piPos contains the value of the next element of the +** list and *pp is advanced to the following varint. +*/ +static void fts3GetDeltaPosition(char **pp, int *piPos){ + int iVal; + *pp += fts3GetVarint32(*pp, &iVal); + *piPos += (iVal-2); +} + +/* +** Helper function for fts3ExprIterate() (see below). +*/ +static int fts3ExprIterate2( + Fts3Expr *pExpr, /* Expression to iterate phrases of */ + int *piPhrase, /* Pointer to phrase counter */ + int (*x)(Fts3Expr*,int,void*), /* Callback function to invoke for phrases */ + void *pCtx /* Second argument to pass to callback */ +){ + int rc; /* Return code */ + int eType = pExpr->eType; /* Type of expression node pExpr */ + + if( eType!=FTSQUERY_PHRASE ){ + assert( pExpr->pLeft && pExpr->pRight ); + rc = fts3ExprIterate2(pExpr->pLeft, piPhrase, x, pCtx); + if( rc==SQLITE_OK && eType!=FTSQUERY_NOT ){ + rc = fts3ExprIterate2(pExpr->pRight, piPhrase, x, pCtx); + } + }else{ + rc = x(pExpr, *piPhrase, pCtx); + (*piPhrase)++; + } + return rc; +} + +/* +** Iterate through all phrase nodes in an FTS3 query, except those that +** are part of a sub-tree that is the right-hand-side of a NOT operator. +** For each phrase node found, the supplied callback function is invoked. +** +** If the callback function returns anything other than SQLITE_OK, +** the iteration is abandoned and the error code returned immediately. +** Otherwise, SQLITE_OK is returned after a callback has been made for +** all eligible phrase nodes. +*/ +static int fts3ExprIterate( + Fts3Expr *pExpr, /* Expression to iterate phrases of */ + int (*x)(Fts3Expr*,int,void*), /* Callback function to invoke for phrases */ + void *pCtx /* Second argument to pass to callback */ +){ + int iPhrase = 0; /* Variable used as the phrase counter */ + return fts3ExprIterate2(pExpr, &iPhrase, x, pCtx); +} + +/* +** This is an fts3ExprIterate() callback used while loading the doclists +** for each phrase into Fts3Expr.aDoclist[]/nDoclist. See also +** fts3ExprLoadDoclists(). +*/ +static int fts3ExprLoadDoclistsCb(Fts3Expr *pExpr, int iPhrase, void *ctx){ + int rc = SQLITE_OK; + Fts3Phrase *pPhrase = pExpr->pPhrase; + LoadDoclistCtx *p = (LoadDoclistCtx *)ctx; + + UNUSED_PARAMETER(iPhrase); + + p->nPhrase++; + p->nToken += pPhrase->nToken; + + return rc; +} + +/* +** Load the doclists for each phrase in the query associated with FTS3 cursor +** pCsr. +** +** If pnPhrase is not NULL, then *pnPhrase is set to the number of matchable +** phrases in the expression (all phrases except those directly or +** indirectly descended from the right-hand-side of a NOT operator). If +** pnToken is not NULL, then it is set to the number of tokens in all +** matchable phrases of the expression. +*/ +static int fts3ExprLoadDoclists( + Fts3Cursor *pCsr, /* Fts3 cursor for current query */ + int *pnPhrase, /* OUT: Number of phrases in query */ + int *pnToken /* OUT: Number of tokens in query */ +){ + int rc; /* Return Code */ + LoadDoclistCtx sCtx = {0,0,0}; /* Context for fts3ExprIterate() */ + sCtx.pCsr = pCsr; + rc = fts3ExprIterate(pCsr->pExpr, fts3ExprLoadDoclistsCb, (void *)&sCtx); + if( pnPhrase ) *pnPhrase = sCtx.nPhrase; + if( pnToken ) *pnToken = sCtx.nToken; + return rc; +} + +static int fts3ExprPhraseCountCb(Fts3Expr *pExpr, int iPhrase, void *ctx){ + (*(int *)ctx)++; + UNUSED_PARAMETER(pExpr); + UNUSED_PARAMETER(iPhrase); + return SQLITE_OK; +} +static int fts3ExprPhraseCount(Fts3Expr *pExpr){ + int nPhrase = 0; + (void)fts3ExprIterate(pExpr, fts3ExprPhraseCountCb, (void *)&nPhrase); + return nPhrase; +} + +/* +** Advance the position list iterator specified by the first two +** arguments so that it points to the first element with a value greater +** than or equal to parameter iNext. +*/ +static void fts3SnippetAdvance(char **ppIter, int *piIter, int iNext){ + char *pIter = *ppIter; + if( pIter ){ + int iIter = *piIter; + + while( iIteriCurrent<0 ){ + /* The SnippetIter object has just been initialized. The first snippet + ** candidate always starts at offset 0 (even if this candidate has a + ** score of 0.0). + */ + pIter->iCurrent = 0; + + /* Advance the 'head' iterator of each phrase to the first offset that + ** is greater than or equal to (iNext+nSnippet). + */ + for(i=0; inPhrase; i++){ + SnippetPhrase *pPhrase = &pIter->aPhrase[i]; + fts3SnippetAdvance(&pPhrase->pHead, &pPhrase->iHead, pIter->nSnippet); + } + }else{ + int iStart; + int iEnd = 0x7FFFFFFF; + + for(i=0; inPhrase; i++){ + SnippetPhrase *pPhrase = &pIter->aPhrase[i]; + if( pPhrase->pHead && pPhrase->iHeadiHead; + } + } + if( iEnd==0x7FFFFFFF ){ + return 1; + } + + pIter->iCurrent = iStart = iEnd - pIter->nSnippet + 1; + for(i=0; inPhrase; i++){ + SnippetPhrase *pPhrase = &pIter->aPhrase[i]; + fts3SnippetAdvance(&pPhrase->pHead, &pPhrase->iHead, iEnd+1); + fts3SnippetAdvance(&pPhrase->pTail, &pPhrase->iTail, iStart); + } + } + + return 0; +} + +/* +** Retrieve information about the current candidate snippet of snippet +** iterator pIter. +*/ +static void fts3SnippetDetails( + SnippetIter *pIter, /* Snippet iterator */ + u64 mCovered, /* Bitmask of phrases already covered */ + int *piToken, /* OUT: First token of proposed snippet */ + int *piScore, /* OUT: "Score" for this snippet */ + u64 *pmCover, /* OUT: Bitmask of phrases covered */ + u64 *pmHighlight /* OUT: Bitmask of terms to highlight */ +){ + int iStart = pIter->iCurrent; /* First token of snippet */ + int iScore = 0; /* Score of this snippet */ + int i; /* Loop counter */ + u64 mCover = 0; /* Mask of phrases covered by this snippet */ + u64 mHighlight = 0; /* Mask of tokens to highlight in snippet */ + + for(i=0; inPhrase; i++){ + SnippetPhrase *pPhrase = &pIter->aPhrase[i]; + if( pPhrase->pTail ){ + char *pCsr = pPhrase->pTail; + int iCsr = pPhrase->iTail; + + while( iCsr<(iStart+pIter->nSnippet) ){ + int j; + u64 mPhrase = (u64)1 << i; + u64 mPos = (u64)1 << (iCsr - iStart); + assert( iCsr>=iStart ); + if( (mCover|mCovered)&mPhrase ){ + iScore++; + }else{ + iScore += 1000; + } + mCover |= mPhrase; + + for(j=0; jnToken; j++){ + mHighlight |= (mPos>>j); + } + + if( 0==(*pCsr & 0x0FE) ) break; + fts3GetDeltaPosition(&pCsr, &iCsr); + } + } + } + + /* Set the output variables before returning. */ + *piToken = iStart; + *piScore = iScore; + *pmCover = mCover; + *pmHighlight = mHighlight; +} + +/* +** This function is an fts3ExprIterate() callback used by fts3BestSnippet(). +** Each invocation populates an element of the SnippetIter.aPhrase[] array. +*/ +static int fts3SnippetFindPositions(Fts3Expr *pExpr, int iPhrase, void *ctx){ + SnippetIter *p = (SnippetIter *)ctx; + SnippetPhrase *pPhrase = &p->aPhrase[iPhrase]; + char *pCsr; + int rc; + + pPhrase->nToken = pExpr->pPhrase->nToken; + rc = sqlite3Fts3EvalPhrasePoslist(p->pCsr, pExpr, p->iCol, &pCsr); + assert( rc==SQLITE_OK || pCsr==0 ); + if( pCsr ){ + int iFirst = 0; + pPhrase->pList = pCsr; + fts3GetDeltaPosition(&pCsr, &iFirst); + assert( iFirst>=0 ); + pPhrase->pHead = pCsr; + pPhrase->pTail = pCsr; + pPhrase->iHead = iFirst; + pPhrase->iTail = iFirst; + }else{ + assert( rc!=SQLITE_OK || ( + pPhrase->pList==0 && pPhrase->pHead==0 && pPhrase->pTail==0 + )); + } + + return rc; +} + +/* +** Select the fragment of text consisting of nFragment contiguous tokens +** from column iCol that represent the "best" snippet. The best snippet +** is the snippet with the highest score, where scores are calculated +** by adding: +** +** (a) +1 point for each occurrence of a matchable phrase in the snippet. +** +** (b) +1000 points for the first occurrence of each matchable phrase in +** the snippet for which the corresponding mCovered bit is not set. +** +** The selected snippet parameters are stored in structure *pFragment before +** returning. The score of the selected snippet is stored in *piScore +** before returning. +*/ +static int fts3BestSnippet( + int nSnippet, /* Desired snippet length */ + Fts3Cursor *pCsr, /* Cursor to create snippet for */ + int iCol, /* Index of column to create snippet from */ + u64 mCovered, /* Mask of phrases already covered */ + u64 *pmSeen, /* IN/OUT: Mask of phrases seen */ + SnippetFragment *pFragment, /* OUT: Best snippet found */ + int *piScore /* OUT: Score of snippet pFragment */ +){ + int rc; /* Return Code */ + int nList; /* Number of phrases in expression */ + SnippetIter sIter; /* Iterates through snippet candidates */ + int nByte; /* Number of bytes of space to allocate */ + int iBestScore = -1; /* Best snippet score found so far */ + int i; /* Loop counter */ + + memset(&sIter, 0, sizeof(sIter)); + + /* Iterate through the phrases in the expression to count them. The same + ** callback makes sure the doclists are loaded for each phrase. + */ + rc = fts3ExprLoadDoclists(pCsr, &nList, 0); + if( rc!=SQLITE_OK ){ + return rc; + } + + /* Now that it is known how many phrases there are, allocate and zero + ** the required space using malloc(). + */ + nByte = sizeof(SnippetPhrase) * nList; + sIter.aPhrase = (SnippetPhrase *)sqlite3_malloc(nByte); + if( !sIter.aPhrase ){ + return SQLITE_NOMEM; + } + memset(sIter.aPhrase, 0, nByte); + + /* Initialize the contents of the SnippetIter object. Then iterate through + ** the set of phrases in the expression to populate the aPhrase[] array. + */ + sIter.pCsr = pCsr; + sIter.iCol = iCol; + sIter.nSnippet = nSnippet; + sIter.nPhrase = nList; + sIter.iCurrent = -1; + (void)fts3ExprIterate(pCsr->pExpr, fts3SnippetFindPositions, (void *)&sIter); + + /* Set the *pmSeen output variable. */ + for(i=0; iiCol = iCol; + while( !fts3SnippetNextCandidate(&sIter) ){ + int iPos; + int iScore; + u64 mCover; + u64 mHighlight; + fts3SnippetDetails(&sIter, mCovered, &iPos, &iScore, &mCover, &mHighlight); + assert( iScore>=0 ); + if( iScore>iBestScore ){ + pFragment->iPos = iPos; + pFragment->hlmask = mHighlight; + pFragment->covered = mCover; + iBestScore = iScore; + } + } + + sqlite3_free(sIter.aPhrase); + *piScore = iBestScore; + return SQLITE_OK; +} + + +/* +** Append a string to the string-buffer passed as the first argument. +** +** If nAppend is negative, then the length of the string zAppend is +** determined using strlen(). +*/ +static int fts3StringAppend( + StrBuffer *pStr, /* Buffer to append to */ + const char *zAppend, /* Pointer to data to append to buffer */ + int nAppend /* Size of zAppend in bytes (or -1) */ +){ + if( nAppend<0 ){ + nAppend = (int)strlen(zAppend); + } + + /* If there is insufficient space allocated at StrBuffer.z, use realloc() + ** to grow the buffer until so that it is big enough to accomadate the + ** appended data. + */ + if( pStr->n+nAppend+1>=pStr->nAlloc ){ + int nAlloc = pStr->nAlloc+nAppend+100; + char *zNew = sqlite3_realloc(pStr->z, nAlloc); + if( !zNew ){ + return SQLITE_NOMEM; + } + pStr->z = zNew; + pStr->nAlloc = nAlloc; + } + assert( pStr->z!=0 && (pStr->nAlloc >= pStr->n+nAppend+1) ); + + /* Append the data to the string buffer. */ + memcpy(&pStr->z[pStr->n], zAppend, nAppend); + pStr->n += nAppend; + pStr->z[pStr->n] = '\0'; + + return SQLITE_OK; +} + +/* +** The fts3BestSnippet() function often selects snippets that end with a +** query term. That is, the final term of the snippet is always a term +** that requires highlighting. For example, if 'X' is a highlighted term +** and '.' is a non-highlighted term, BestSnippet() may select: +** +** ........X.....X +** +** This function "shifts" the beginning of the snippet forward in the +** document so that there are approximately the same number of +** non-highlighted terms to the right of the final highlighted term as there +** are to the left of the first highlighted term. For example, to this: +** +** ....X.....X.... +** +** This is done as part of extracting the snippet text, not when selecting +** the snippet. Snippet selection is done based on doclists only, so there +** is no way for fts3BestSnippet() to know whether or not the document +** actually contains terms that follow the final highlighted term. +*/ +static int fts3SnippetShift( + Fts3Table *pTab, /* FTS3 table snippet comes from */ + int iLangid, /* Language id to use in tokenizing */ + int nSnippet, /* Number of tokens desired for snippet */ + const char *zDoc, /* Document text to extract snippet from */ + int nDoc, /* Size of buffer zDoc in bytes */ + int *piPos, /* IN/OUT: First token of snippet */ + u64 *pHlmask /* IN/OUT: Mask of tokens to highlight */ +){ + u64 hlmask = *pHlmask; /* Local copy of initial highlight-mask */ + + if( hlmask ){ + int nLeft; /* Tokens to the left of first highlight */ + int nRight; /* Tokens to the right of last highlight */ + int nDesired; /* Ideal number of tokens to shift forward */ + + for(nLeft=0; !(hlmask & ((u64)1 << nLeft)); nLeft++); + for(nRight=0; !(hlmask & ((u64)1 << (nSnippet-1-nRight))); nRight++); + nDesired = (nLeft-nRight)/2; + + /* Ideally, the start of the snippet should be pushed forward in the + ** document nDesired tokens. This block checks if there are actually + ** nDesired tokens to the right of the snippet. If so, *piPos and + ** *pHlMask are updated to shift the snippet nDesired tokens to the + ** right. Otherwise, the snippet is shifted by the number of tokens + ** available. + */ + if( nDesired>0 ){ + int nShift; /* Number of tokens to shift snippet by */ + int iCurrent = 0; /* Token counter */ + int rc; /* Return Code */ + sqlite3_tokenizer_module *pMod; + sqlite3_tokenizer_cursor *pC; + pMod = (sqlite3_tokenizer_module *)pTab->pTokenizer->pModule; + + /* Open a cursor on zDoc/nDoc. Check if there are (nSnippet+nDesired) + ** or more tokens in zDoc/nDoc. + */ + rc = sqlite3Fts3OpenTokenizer(pTab->pTokenizer, iLangid, zDoc, nDoc, &pC); + if( rc!=SQLITE_OK ){ + return rc; + } + while( rc==SQLITE_OK && iCurrent<(nSnippet+nDesired) ){ + const char *ZDUMMY; int DUMMY1 = 0, DUMMY2 = 0, DUMMY3 = 0; + rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &DUMMY2, &DUMMY3, &iCurrent); + } + pMod->xClose(pC); + if( rc!=SQLITE_OK && rc!=SQLITE_DONE ){ return rc; } + + nShift = (rc==SQLITE_DONE)+iCurrent-nSnippet; + assert( nShift<=nDesired ); + if( nShift>0 ){ + *piPos += nShift; + *pHlmask = hlmask >> nShift; + } + } + } + return SQLITE_OK; +} + +/* +** Extract the snippet text for fragment pFragment from cursor pCsr and +** append it to string buffer pOut. +*/ +static int fts3SnippetText( + Fts3Cursor *pCsr, /* FTS3 Cursor */ + SnippetFragment *pFragment, /* Snippet to extract */ + int iFragment, /* Fragment number */ + int isLast, /* True for final fragment in snippet */ + int nSnippet, /* Number of tokens in extracted snippet */ + const char *zOpen, /* String inserted before highlighted term */ + const char *zClose, /* String inserted after highlighted term */ + const char *zEllipsis, /* String inserted between snippets */ + StrBuffer *pOut /* Write output here */ +){ + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + int rc; /* Return code */ + const char *zDoc; /* Document text to extract snippet from */ + int nDoc; /* Size of zDoc in bytes */ + int iCurrent = 0; /* Current token number of document */ + int iEnd = 0; /* Byte offset of end of current token */ + int isShiftDone = 0; /* True after snippet is shifted */ + int iPos = pFragment->iPos; /* First token of snippet */ + u64 hlmask = pFragment->hlmask; /* Highlight-mask for snippet */ + int iCol = pFragment->iCol+1; /* Query column to extract text from */ + sqlite3_tokenizer_module *pMod; /* Tokenizer module methods object */ + sqlite3_tokenizer_cursor *pC; /* Tokenizer cursor open on zDoc/nDoc */ + + zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol); + if( zDoc==0 ){ + if( sqlite3_column_type(pCsr->pStmt, iCol)!=SQLITE_NULL ){ + return SQLITE_NOMEM; + } + return SQLITE_OK; + } + nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol); + + /* Open a token cursor on the document. */ + pMod = (sqlite3_tokenizer_module *)pTab->pTokenizer->pModule; + rc = sqlite3Fts3OpenTokenizer(pTab->pTokenizer, pCsr->iLangid, zDoc,nDoc,&pC); + if( rc!=SQLITE_OK ){ + return rc; + } + + while( rc==SQLITE_OK ){ + const char *ZDUMMY; /* Dummy argument used with tokenizer */ + int DUMMY1 = -1; /* Dummy argument used with tokenizer */ + int iBegin = 0; /* Offset in zDoc of start of token */ + int iFin = 0; /* Offset in zDoc of end of token */ + int isHighlight = 0; /* True for highlighted terms */ + + /* Variable DUMMY1 is initialized to a negative value above. Elsewhere + ** in the FTS code the variable that the third argument to xNext points to + ** is initialized to zero before the first (*but not necessarily + ** subsequent*) call to xNext(). This is done for a particular application + ** that needs to know whether or not the tokenizer is being used for + ** snippet generation or for some other purpose. + ** + ** Extreme care is required when writing code to depend on this + ** initialization. It is not a documented part of the tokenizer interface. + ** If a tokenizer is used directly by any code outside of FTS, this + ** convention might not be respected. */ + rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &iBegin, &iFin, &iCurrent); + if( rc!=SQLITE_OK ){ + if( rc==SQLITE_DONE ){ + /* Special case - the last token of the snippet is also the last token + ** of the column. Append any punctuation that occurred between the end + ** of the previous token and the end of the document to the output. + ** Then break out of the loop. */ + rc = fts3StringAppend(pOut, &zDoc[iEnd], -1); + } + break; + } + if( iCurrentiLangid, nSnippet, &zDoc[iBegin], n, &iPos, &hlmask + ); + isShiftDone = 1; + + /* Now that the shift has been done, check if the initial "..." are + ** required. They are required if (a) this is not the first fragment, + ** or (b) this fragment does not begin at position 0 of its column. + */ + if( rc==SQLITE_OK && (iPos>0 || iFragment>0) ){ + rc = fts3StringAppend(pOut, zEllipsis, -1); + } + if( rc!=SQLITE_OK || iCurrent=(iPos+nSnippet) ){ + if( isLast ){ + rc = fts3StringAppend(pOut, zEllipsis, -1); + } + break; + } + + /* Set isHighlight to true if this term should be highlighted. */ + isHighlight = (hlmask & ((u64)1 << (iCurrent-iPos)))!=0; + + if( iCurrent>iPos ) rc = fts3StringAppend(pOut, &zDoc[iEnd], iBegin-iEnd); + if( rc==SQLITE_OK && isHighlight ) rc = fts3StringAppend(pOut, zOpen, -1); + if( rc==SQLITE_OK ) rc = fts3StringAppend(pOut, &zDoc[iBegin], iFin-iBegin); + if( rc==SQLITE_OK && isHighlight ) rc = fts3StringAppend(pOut, zClose, -1); + + iEnd = iFin; + } + + pMod->xClose(pC); + return rc; +} + + +/* +** This function is used to count the entries in a column-list (a +** delta-encoded list of term offsets within a single column of a single +** row). When this function is called, *ppCollist should point to the +** beginning of the first varint in the column-list (the varint that +** contains the position of the first matching term in the column data). +** Before returning, *ppCollist is set to point to the first byte after +** the last varint in the column-list (either the 0x00 signifying the end +** of the position-list, or the 0x01 that precedes the column number of +** the next column in the position-list). +** +** The number of elements in the column-list is returned. +*/ +static int fts3ColumnlistCount(char **ppCollist){ + char *pEnd = *ppCollist; + char c = 0; + int nEntry = 0; + + /* A column-list is terminated by either a 0x01 or 0x00. */ + while( 0xFE & (*pEnd | c) ){ + c = *pEnd++ & 0x80; + if( !c ) nEntry++; + } + + *ppCollist = pEnd; + return nEntry; +} + +/* +** fts3ExprIterate() callback used to collect the "global" matchinfo stats +** for a single query. +** +** fts3ExprIterate() callback to load the 'global' elements of a +** FTS3_MATCHINFO_HITS matchinfo array. The global stats are those elements +** of the matchinfo array that are constant for all rows returned by the +** current query. +** +** Argument pCtx is actually a pointer to a struct of type MatchInfo. This +** function populates Matchinfo.aMatchinfo[] as follows: +** +** for(iCol=0; iColpCursor, pExpr, &p->aMatchinfo[3*iPhrase*p->nCol] + ); +} + +/* +** fts3ExprIterate() callback used to collect the "local" part of the +** FTS3_MATCHINFO_HITS array. The local stats are those elements of the +** array that are different for each row returned by the query. +*/ +static int fts3ExprLocalHitsCb( + Fts3Expr *pExpr, /* Phrase expression node */ + int iPhrase, /* Phrase number */ + void *pCtx /* Pointer to MatchInfo structure */ +){ + int rc = SQLITE_OK; + MatchInfo *p = (MatchInfo *)pCtx; + int iStart = iPhrase * p->nCol * 3; + int i; + + for(i=0; inCol && rc==SQLITE_OK; i++){ + char *pCsr; + rc = sqlite3Fts3EvalPhrasePoslist(p->pCursor, pExpr, i, &pCsr); + if( pCsr ){ + p->aMatchinfo[iStart+i*3] = fts3ColumnlistCount(&pCsr); + }else{ + p->aMatchinfo[iStart+i*3] = 0; + } + } + + return rc; +} + +static int fts3MatchinfoCheck( + Fts3Table *pTab, + char cArg, + char **pzErr +){ + if( (cArg==FTS3_MATCHINFO_NPHRASE) + || (cArg==FTS3_MATCHINFO_NCOL) + || (cArg==FTS3_MATCHINFO_NDOC && pTab->bFts4) + || (cArg==FTS3_MATCHINFO_AVGLENGTH && pTab->bFts4) + || (cArg==FTS3_MATCHINFO_LENGTH && pTab->bHasDocsize) + || (cArg==FTS3_MATCHINFO_LCS) + || (cArg==FTS3_MATCHINFO_HITS) + ){ + return SQLITE_OK; + } + *pzErr = sqlite3_mprintf("unrecognized matchinfo request: %c", cArg); + return SQLITE_ERROR; +} + +static int fts3MatchinfoSize(MatchInfo *pInfo, char cArg){ + int nVal; /* Number of integers output by cArg */ + + switch( cArg ){ + case FTS3_MATCHINFO_NDOC: + case FTS3_MATCHINFO_NPHRASE: + case FTS3_MATCHINFO_NCOL: + nVal = 1; + break; + + case FTS3_MATCHINFO_AVGLENGTH: + case FTS3_MATCHINFO_LENGTH: + case FTS3_MATCHINFO_LCS: + nVal = pInfo->nCol; + break; + + default: + assert( cArg==FTS3_MATCHINFO_HITS ); + nVal = pInfo->nCol * pInfo->nPhrase * 3; + break; + } + + return nVal; +} + +static int fts3MatchinfoSelectDoctotal( + Fts3Table *pTab, + sqlite3_stmt **ppStmt, + sqlite3_int64 *pnDoc, + const char **paLen +){ + sqlite3_stmt *pStmt; + const char *a; + sqlite3_int64 nDoc; + + if( !*ppStmt ){ + int rc = sqlite3Fts3SelectDoctotal(pTab, ppStmt); + if( rc!=SQLITE_OK ) return rc; + } + pStmt = *ppStmt; + assert( sqlite3_data_count(pStmt)==1 ); + + a = sqlite3_column_blob(pStmt, 0); + a += sqlite3Fts3GetVarint(a, &nDoc); + if( nDoc==0 ) return FTS_CORRUPT_VTAB; + *pnDoc = (u32)nDoc; + + if( paLen ) *paLen = a; + return SQLITE_OK; +} + +/* +** An instance of the following structure is used to store state while +** iterating through a multi-column position-list corresponding to the +** hits for a single phrase on a single row in order to calculate the +** values for a matchinfo() FTS3_MATCHINFO_LCS request. +*/ +typedef struct LcsIterator LcsIterator; +struct LcsIterator { + Fts3Expr *pExpr; /* Pointer to phrase expression */ + int iPosOffset; /* Tokens count up to end of this phrase */ + char *pRead; /* Cursor used to iterate through aDoclist */ + int iPos; /* Current position */ +}; + +/* +** If LcsIterator.iCol is set to the following value, the iterator has +** finished iterating through all offsets for all columns. +*/ +#define LCS_ITERATOR_FINISHED 0x7FFFFFFF; + +static int fts3MatchinfoLcsCb( + Fts3Expr *pExpr, /* Phrase expression node */ + int iPhrase, /* Phrase number (numbered from zero) */ + void *pCtx /* Pointer to MatchInfo structure */ +){ + LcsIterator *aIter = (LcsIterator *)pCtx; + aIter[iPhrase].pExpr = pExpr; + return SQLITE_OK; +} + +/* +** Advance the iterator passed as an argument to the next position. Return +** 1 if the iterator is at EOF or if it now points to the start of the +** position list for the next column. +*/ +static int fts3LcsIteratorAdvance(LcsIterator *pIter){ + char *pRead = pIter->pRead; + sqlite3_int64 iRead; + int rc = 0; + + pRead += sqlite3Fts3GetVarint(pRead, &iRead); + if( iRead==0 || iRead==1 ){ + pRead = 0; + rc = 1; + }else{ + pIter->iPos += (int)(iRead-2); + } + + pIter->pRead = pRead; + return rc; +} + +/* +** This function implements the FTS3_MATCHINFO_LCS matchinfo() flag. +** +** If the call is successful, the longest-common-substring lengths for each +** column are written into the first nCol elements of the pInfo->aMatchinfo[] +** array before returning. SQLITE_OK is returned in this case. +** +** Otherwise, if an error occurs, an SQLite error code is returned and the +** data written to the first nCol elements of pInfo->aMatchinfo[] is +** undefined. +*/ +static int fts3MatchinfoLcs(Fts3Cursor *pCsr, MatchInfo *pInfo){ + LcsIterator *aIter; + int i; + int iCol; + int nToken = 0; + + /* Allocate and populate the array of LcsIterator objects. The array + ** contains one element for each matchable phrase in the query. + **/ + aIter = sqlite3_malloc(sizeof(LcsIterator) * pCsr->nPhrase); + if( !aIter ) return SQLITE_NOMEM; + memset(aIter, 0, sizeof(LcsIterator) * pCsr->nPhrase); + (void)fts3ExprIterate(pCsr->pExpr, fts3MatchinfoLcsCb, (void*)aIter); + + for(i=0; inPhrase; i++){ + LcsIterator *pIter = &aIter[i]; + nToken -= pIter->pExpr->pPhrase->nToken; + pIter->iPosOffset = nToken; + } + + for(iCol=0; iColnCol; iCol++){ + int nLcs = 0; /* LCS value for this column */ + int nLive = 0; /* Number of iterators in aIter not at EOF */ + + for(i=0; inPhrase; i++){ + int rc; + LcsIterator *pIt = &aIter[i]; + rc = sqlite3Fts3EvalPhrasePoslist(pCsr, pIt->pExpr, iCol, &pIt->pRead); + if( rc!=SQLITE_OK ) return rc; + if( pIt->pRead ){ + pIt->iPos = pIt->iPosOffset; + fts3LcsIteratorAdvance(&aIter[i]); + nLive++; + } + } + + while( nLive>0 ){ + LcsIterator *pAdv = 0; /* The iterator to advance by one position */ + int nThisLcs = 0; /* LCS for the current iterator positions */ + + for(i=0; inPhrase; i++){ + LcsIterator *pIter = &aIter[i]; + if( pIter->pRead==0 ){ + /* This iterator is already at EOF for this column. */ + nThisLcs = 0; + }else{ + if( pAdv==0 || pIter->iPosiPos ){ + pAdv = pIter; + } + if( nThisLcs==0 || pIter->iPos==pIter[-1].iPos ){ + nThisLcs++; + }else{ + nThisLcs = 1; + } + if( nThisLcs>nLcs ) nLcs = nThisLcs; + } + } + if( fts3LcsIteratorAdvance(pAdv) ) nLive--; + } + + pInfo->aMatchinfo[iCol] = nLcs; + } + + sqlite3_free(aIter); + return SQLITE_OK; +} + +/* +** Populate the buffer pInfo->aMatchinfo[] with an array of integers to +** be returned by the matchinfo() function. Argument zArg contains the +** format string passed as the second argument to matchinfo (or the +** default value "pcx" if no second argument was specified). The format +** string has already been validated and the pInfo->aMatchinfo[] array +** is guaranteed to be large enough for the output. +** +** If bGlobal is true, then populate all fields of the matchinfo() output. +** If it is false, then assume that those fields that do not change between +** rows (i.e. FTS3_MATCHINFO_NPHRASE, NCOL, NDOC, AVGLENGTH and part of HITS) +** have already been populated. +** +** Return SQLITE_OK if successful, or an SQLite error code if an error +** occurs. If a value other than SQLITE_OK is returned, the state the +** pInfo->aMatchinfo[] buffer is left in is undefined. +*/ +static int fts3MatchinfoValues( + Fts3Cursor *pCsr, /* FTS3 cursor object */ + int bGlobal, /* True to grab the global stats */ + MatchInfo *pInfo, /* Matchinfo context object */ + const char *zArg /* Matchinfo format string */ +){ + int rc = SQLITE_OK; + int i; + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + sqlite3_stmt *pSelect = 0; + + for(i=0; rc==SQLITE_OK && zArg[i]; i++){ + + switch( zArg[i] ){ + case FTS3_MATCHINFO_NPHRASE: + if( bGlobal ) pInfo->aMatchinfo[0] = pInfo->nPhrase; + break; + + case FTS3_MATCHINFO_NCOL: + if( bGlobal ) pInfo->aMatchinfo[0] = pInfo->nCol; + break; + + case FTS3_MATCHINFO_NDOC: + if( bGlobal ){ + sqlite3_int64 nDoc = 0; + rc = fts3MatchinfoSelectDoctotal(pTab, &pSelect, &nDoc, 0); + pInfo->aMatchinfo[0] = (u32)nDoc; + } + break; + + case FTS3_MATCHINFO_AVGLENGTH: + if( bGlobal ){ + sqlite3_int64 nDoc; /* Number of rows in table */ + const char *a; /* Aggregate column length array */ + + rc = fts3MatchinfoSelectDoctotal(pTab, &pSelect, &nDoc, &a); + if( rc==SQLITE_OK ){ + int iCol; + for(iCol=0; iColnCol; iCol++){ + u32 iVal; + sqlite3_int64 nToken; + a += sqlite3Fts3GetVarint(a, &nToken); + iVal = (u32)(((u32)(nToken&0xffffffff)+nDoc/2)/nDoc); + pInfo->aMatchinfo[iCol] = iVal; + } + } + } + break; + + case FTS3_MATCHINFO_LENGTH: { + sqlite3_stmt *pSelectDocsize = 0; + rc = sqlite3Fts3SelectDocsize(pTab, pCsr->iPrevId, &pSelectDocsize); + if( rc==SQLITE_OK ){ + int iCol; + const char *a = sqlite3_column_blob(pSelectDocsize, 0); + for(iCol=0; iColnCol; iCol++){ + sqlite3_int64 nToken; + a += sqlite3Fts3GetVarint(a, &nToken); + pInfo->aMatchinfo[iCol] = (u32)nToken; + } + } + sqlite3_reset(pSelectDocsize); + break; + } + + case FTS3_MATCHINFO_LCS: + rc = fts3ExprLoadDoclists(pCsr, 0, 0); + if( rc==SQLITE_OK ){ + rc = fts3MatchinfoLcs(pCsr, pInfo); + } + break; + + default: { + Fts3Expr *pExpr; + assert( zArg[i]==FTS3_MATCHINFO_HITS ); + pExpr = pCsr->pExpr; + rc = fts3ExprLoadDoclists(pCsr, 0, 0); + if( rc!=SQLITE_OK ) break; + if( bGlobal ){ + if( pCsr->pDeferred ){ + rc = fts3MatchinfoSelectDoctotal(pTab, &pSelect, &pInfo->nDoc, 0); + if( rc!=SQLITE_OK ) break; + } + rc = fts3ExprIterate(pExpr, fts3ExprGlobalHitsCb,(void*)pInfo); + if( rc!=SQLITE_OK ) break; + } + (void)fts3ExprIterate(pExpr, fts3ExprLocalHitsCb,(void*)pInfo); + break; + } + } + + pInfo->aMatchinfo += fts3MatchinfoSize(pInfo, zArg[i]); + } + + sqlite3_reset(pSelect); + return rc; +} + + +/* +** Populate pCsr->aMatchinfo[] with data for the current row. The +** 'matchinfo' data is an array of 32-bit unsigned integers (C type u32). +*/ +static int fts3GetMatchinfo( + Fts3Cursor *pCsr, /* FTS3 Cursor object */ + const char *zArg /* Second argument to matchinfo() function */ +){ + MatchInfo sInfo; + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + int rc = SQLITE_OK; + int bGlobal = 0; /* Collect 'global' stats as well as local */ + + memset(&sInfo, 0, sizeof(MatchInfo)); + sInfo.pCursor = pCsr; + sInfo.nCol = pTab->nColumn; + + /* If there is cached matchinfo() data, but the format string for the + ** cache does not match the format string for this request, discard + ** the cached data. */ + if( pCsr->zMatchinfo && strcmp(pCsr->zMatchinfo, zArg) ){ + assert( pCsr->aMatchinfo ); + sqlite3_free(pCsr->aMatchinfo); + pCsr->zMatchinfo = 0; + pCsr->aMatchinfo = 0; + } + + /* If Fts3Cursor.aMatchinfo[] is NULL, then this is the first time the + ** matchinfo function has been called for this query. In this case + ** allocate the array used to accumulate the matchinfo data and + ** initialize those elements that are constant for every row. + */ + if( pCsr->aMatchinfo==0 ){ + int nMatchinfo = 0; /* Number of u32 elements in match-info */ + int nArg; /* Bytes in zArg */ + int i; /* Used to iterate through zArg */ + + /* Determine the number of phrases in the query */ + pCsr->nPhrase = fts3ExprPhraseCount(pCsr->pExpr); + sInfo.nPhrase = pCsr->nPhrase; + + /* Determine the number of integers in the buffer returned by this call. */ + for(i=0; zArg[i]; i++){ + nMatchinfo += fts3MatchinfoSize(&sInfo, zArg[i]); + } + + /* Allocate space for Fts3Cursor.aMatchinfo[] and Fts3Cursor.zMatchinfo. */ + nArg = (int)strlen(zArg); + pCsr->aMatchinfo = (u32 *)sqlite3_malloc(sizeof(u32)*nMatchinfo + nArg + 1); + if( !pCsr->aMatchinfo ) return SQLITE_NOMEM; + + pCsr->zMatchinfo = (char *)&pCsr->aMatchinfo[nMatchinfo]; + pCsr->nMatchinfo = nMatchinfo; + memcpy(pCsr->zMatchinfo, zArg, nArg+1); + memset(pCsr->aMatchinfo, 0, sizeof(u32)*nMatchinfo); + pCsr->isMatchinfoNeeded = 1; + bGlobal = 1; + } + + sInfo.aMatchinfo = pCsr->aMatchinfo; + sInfo.nPhrase = pCsr->nPhrase; + if( pCsr->isMatchinfoNeeded ){ + rc = fts3MatchinfoValues(pCsr, bGlobal, &sInfo, zArg); + pCsr->isMatchinfoNeeded = 0; + } + + return rc; +} + +/* +** Implementation of snippet() function. +*/ +SQLITE_PRIVATE void sqlite3Fts3Snippet( + sqlite3_context *pCtx, /* SQLite function call context */ + Fts3Cursor *pCsr, /* Cursor object */ + const char *zStart, /* Snippet start text - "" */ + const char *zEnd, /* Snippet end text - "" */ + const char *zEllipsis, /* Snippet ellipsis text - "..." */ + int iCol, /* Extract snippet from this column */ + int nToken /* Approximate number of tokens in snippet */ +){ + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + int rc = SQLITE_OK; + int i; + StrBuffer res = {0, 0, 0}; + + /* The returned text includes up to four fragments of text extracted from + ** the data in the current row. The first iteration of the for(...) loop + ** below attempts to locate a single fragment of text nToken tokens in + ** size that contains at least one instance of all phrases in the query + ** expression that appear in the current row. If such a fragment of text + ** cannot be found, the second iteration of the loop attempts to locate + ** a pair of fragments, and so on. + */ + int nSnippet = 0; /* Number of fragments in this snippet */ + SnippetFragment aSnippet[4]; /* Maximum of 4 fragments per snippet */ + int nFToken = -1; /* Number of tokens in each fragment */ + + if( !pCsr->pExpr ){ + sqlite3_result_text(pCtx, "", 0, SQLITE_STATIC); + return; + } + + for(nSnippet=1; 1; nSnippet++){ + + int iSnip; /* Loop counter 0..nSnippet-1 */ + u64 mCovered = 0; /* Bitmask of phrases covered by snippet */ + u64 mSeen = 0; /* Bitmask of phrases seen by BestSnippet() */ + + if( nToken>=0 ){ + nFToken = (nToken+nSnippet-1) / nSnippet; + }else{ + nFToken = -1 * nToken; + } + + for(iSnip=0; iSnipnColumn; iRead++){ + SnippetFragment sF = {0, 0, 0, 0}; + int iS; + if( iCol>=0 && iRead!=iCol ) continue; + + /* Find the best snippet of nFToken tokens in column iRead. */ + rc = fts3BestSnippet(nFToken, pCsr, iRead, mCovered, &mSeen, &sF, &iS); + if( rc!=SQLITE_OK ){ + goto snippet_out; + } + if( iS>iBestScore ){ + *pFragment = sF; + iBestScore = iS; + } + } + + mCovered |= pFragment->covered; + } + + /* If all query phrases seen by fts3BestSnippet() are present in at least + ** one of the nSnippet snippet fragments, break out of the loop. + */ + assert( (mCovered&mSeen)==mCovered ); + if( mSeen==mCovered || nSnippet==SizeofArray(aSnippet) ) break; + } + + assert( nFToken>0 ); + + for(i=0; ipCsr, pExpr, p->iCol, &pList); + nTerm = pExpr->pPhrase->nToken; + if( pList ){ + fts3GetDeltaPosition(&pList, &iPos); + assert( iPos>=0 ); + } + + for(iTerm=0; iTermaTerm[p->iTerm++]; + pT->iOff = nTerm-iTerm-1; + pT->pList = pList; + pT->iPos = iPos; + } + + return rc; +} + +/* +** Implementation of offsets() function. +*/ +SQLITE_PRIVATE void sqlite3Fts3Offsets( + sqlite3_context *pCtx, /* SQLite function call context */ + Fts3Cursor *pCsr /* Cursor object */ +){ + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + sqlite3_tokenizer_module const *pMod = pTab->pTokenizer->pModule; + int rc; /* Return Code */ + int nToken; /* Number of tokens in query */ + int iCol; /* Column currently being processed */ + StrBuffer res = {0, 0, 0}; /* Result string */ + TermOffsetCtx sCtx; /* Context for fts3ExprTermOffsetInit() */ + + if( !pCsr->pExpr ){ + sqlite3_result_text(pCtx, "", 0, SQLITE_STATIC); + return; + } + + memset(&sCtx, 0, sizeof(sCtx)); + assert( pCsr->isRequireSeek==0 ); + + /* Count the number of terms in the query */ + rc = fts3ExprLoadDoclists(pCsr, 0, &nToken); + if( rc!=SQLITE_OK ) goto offsets_out; + + /* Allocate the array of TermOffset iterators. */ + sCtx.aTerm = (TermOffset *)sqlite3_malloc(sizeof(TermOffset)*nToken); + if( 0==sCtx.aTerm ){ + rc = SQLITE_NOMEM; + goto offsets_out; + } + sCtx.iDocid = pCsr->iPrevId; + sCtx.pCsr = pCsr; + + /* Loop through the table columns, appending offset information to + ** string-buffer res for each column. + */ + for(iCol=0; iColnColumn; iCol++){ + sqlite3_tokenizer_cursor *pC; /* Tokenizer cursor */ + const char *ZDUMMY; /* Dummy argument used with xNext() */ + int NDUMMY = 0; /* Dummy argument used with xNext() */ + int iStart = 0; + int iEnd = 0; + int iCurrent = 0; + const char *zDoc; + int nDoc; + + /* Initialize the contents of sCtx.aTerm[] for column iCol. There is + ** no way that this operation can fail, so the return code from + ** fts3ExprIterate() can be discarded. + */ + sCtx.iCol = iCol; + sCtx.iTerm = 0; + (void)fts3ExprIterate(pCsr->pExpr, fts3ExprTermOffsetInit, (void *)&sCtx); + + /* Retreive the text stored in column iCol. If an SQL NULL is stored + ** in column iCol, jump immediately to the next iteration of the loop. + ** If an OOM occurs while retrieving the data (this can happen if SQLite + ** needs to transform the data from utf-16 to utf-8), return SQLITE_NOMEM + ** to the caller. + */ + zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol+1); + nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol+1); + if( zDoc==0 ){ + if( sqlite3_column_type(pCsr->pStmt, iCol+1)==SQLITE_NULL ){ + continue; + } + rc = SQLITE_NOMEM; + goto offsets_out; + } + + /* Initialize a tokenizer iterator to iterate through column iCol. */ + rc = sqlite3Fts3OpenTokenizer(pTab->pTokenizer, pCsr->iLangid, + zDoc, nDoc, &pC + ); + if( rc!=SQLITE_OK ) goto offsets_out; + + rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent); + while( rc==SQLITE_OK ){ + int i; /* Used to loop through terms */ + int iMinPos = 0x7FFFFFFF; /* Position of next token */ + TermOffset *pTerm = 0; /* TermOffset associated with next token */ + + for(i=0; ipList && (pT->iPos-pT->iOff)iPos-pT->iOff; + pTerm = pT; + } + } + + if( !pTerm ){ + /* All offsets for this column have been gathered. */ + rc = SQLITE_DONE; + }else{ + assert( iCurrent<=iMinPos ); + if( 0==(0xFE&*pTerm->pList) ){ + pTerm->pList = 0; + }else{ + fts3GetDeltaPosition(&pTerm->pList, &pTerm->iPos); + } + while( rc==SQLITE_OK && iCurrentxNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent); + } + if( rc==SQLITE_OK ){ + char aBuffer[64]; + sqlite3_snprintf(sizeof(aBuffer), aBuffer, + "%d %d %d %d ", iCol, pTerm-sCtx.aTerm, iStart, iEnd-iStart + ); + rc = fts3StringAppend(&res, aBuffer, -1); + }else if( rc==SQLITE_DONE && pTab->zContentTbl==0 ){ + rc = FTS_CORRUPT_VTAB; + } + } + } + if( rc==SQLITE_DONE ){ + rc = SQLITE_OK; + } + + pMod->xClose(pC); + if( rc!=SQLITE_OK ) goto offsets_out; + } + + offsets_out: + sqlite3_free(sCtx.aTerm); + assert( rc!=SQLITE_DONE ); + sqlite3Fts3SegmentsClose(pTab); + if( rc!=SQLITE_OK ){ + sqlite3_result_error_code(pCtx, rc); + sqlite3_free(res.z); + }else{ + sqlite3_result_text(pCtx, res.z, res.n-1, sqlite3_free); + } + return; +} + +/* +** Implementation of matchinfo() function. +*/ +SQLITE_PRIVATE void sqlite3Fts3Matchinfo( + sqlite3_context *pContext, /* Function call context */ + Fts3Cursor *pCsr, /* FTS3 table cursor */ + const char *zArg /* Second arg to matchinfo() function */ +){ + Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; + int rc; + int i; + const char *zFormat; + + if( zArg ){ + for(i=0; zArg[i]; i++){ + char *zErr = 0; + if( fts3MatchinfoCheck(pTab, zArg[i], &zErr) ){ + sqlite3_result_error(pContext, zErr, -1); + sqlite3_free(zErr); + return; + } + } + zFormat = zArg; + }else{ + zFormat = FTS3_MATCHINFO_DEFAULT; + } + + if( !pCsr->pExpr ){ + sqlite3_result_blob(pContext, "", 0, SQLITE_STATIC); + return; + } + + /* Retrieve matchinfo() data. */ + rc = fts3GetMatchinfo(pCsr, zFormat); + sqlite3Fts3SegmentsClose(pTab); + + if( rc!=SQLITE_OK ){ + sqlite3_result_error_code(pContext, rc); + }else{ + int n = pCsr->nMatchinfo * sizeof(u32); + sqlite3_result_blob(pContext, pCsr->aMatchinfo, n, SQLITE_TRANSIENT); + } +} + +#endif + +/************** End of fts3_snippet.c ****************************************/ +/************** Begin file fts3_unicode.c ************************************/ +/* +** 2012 May 24 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +** +** Implementation of the "unicode" full-text-search tokenizer. +*/ + +#ifdef SQLITE_ENABLE_FTS4_UNICODE61 + +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) + +/* #include */ +/* #include */ +/* #include */ +/* #include */ + + +/* +** The following two macros - READ_UTF8 and WRITE_UTF8 - have been copied +** from the sqlite3 source file utf.c. If this file is compiled as part +** of the amalgamation, they are not required. +*/ +#ifndef SQLITE_AMALGAMATION + +static const unsigned char sqlite3Utf8Trans1[] = { + 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, + 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, + 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, + 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, + 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, +}; + +#define READ_UTF8(zIn, zTerm, c) \ + c = *(zIn++); \ + if( c>=0xc0 ){ \ + c = sqlite3Utf8Trans1[c-0xc0]; \ + while( zIn!=zTerm && (*zIn & 0xc0)==0x80 ){ \ + c = (c<<6) + (0x3f & *(zIn++)); \ + } \ + if( c<0x80 \ + || (c&0xFFFFF800)==0xD800 \ + || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \ + } + +#define WRITE_UTF8(zOut, c) { \ + if( c<0x00080 ){ \ + *zOut++ = (u8)(c&0xFF); \ + } \ + else if( c<0x00800 ){ \ + *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \ + *zOut++ = 0x80 + (u8)(c & 0x3F); \ + } \ + else if( c<0x10000 ){ \ + *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \ + *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ + *zOut++ = 0x80 + (u8)(c & 0x3F); \ + }else{ \ + *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \ + *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \ + *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ + *zOut++ = 0x80 + (u8)(c & 0x3F); \ + } \ +} + +#endif /* ifndef SQLITE_AMALGAMATION */ + +typedef struct unicode_tokenizer unicode_tokenizer; +typedef struct unicode_cursor unicode_cursor; + +struct unicode_tokenizer { + sqlite3_tokenizer base; + int bRemoveDiacritic; + int nException; + int *aiException; +}; + +struct unicode_cursor { + sqlite3_tokenizer_cursor base; + const unsigned char *aInput; /* Input text being tokenized */ + int nInput; /* Size of aInput[] in bytes */ + int iOff; /* Current offset within aInput[] */ + int iToken; /* Index of next token to be returned */ + char *zToken; /* storage for current token */ + int nAlloc; /* space allocated at zToken */ +}; + + +/* +** Destroy a tokenizer allocated by unicodeCreate(). +*/ +static int unicodeDestroy(sqlite3_tokenizer *pTokenizer){ + if( pTokenizer ){ + unicode_tokenizer *p = (unicode_tokenizer *)pTokenizer; + sqlite3_free(p->aiException); + sqlite3_free(p); + } + return SQLITE_OK; +} + +/* +** As part of a tokenchars= or separators= option, the CREATE VIRTUAL TABLE +** statement has specified that the tokenizer for this table shall consider +** all characters in string zIn/nIn to be separators (if bAlnum==0) or +** token characters (if bAlnum==1). +** +** For each codepoint in the zIn/nIn string, this function checks if the +** sqlite3FtsUnicodeIsalnum() function already returns the desired result. +** If so, no action is taken. Otherwise, the codepoint is added to the +** unicode_tokenizer.aiException[] array. For the purposes of tokenization, +** the return value of sqlite3FtsUnicodeIsalnum() is inverted for all +** codepoints in the aiException[] array. +** +** If a standalone diacritic mark (one that sqlite3FtsUnicodeIsdiacritic() +** identifies as a diacritic) occurs in the zIn/nIn string it is ignored. +** It is not possible to change the behavior of the tokenizer with respect +** to these codepoints. +*/ +static int unicodeAddExceptions( + unicode_tokenizer *p, /* Tokenizer to add exceptions to */ + int bAlnum, /* Replace Isalnum() return value with this */ + const char *zIn, /* Array of characters to make exceptions */ + int nIn /* Length of z in bytes */ +){ + const unsigned char *z = (const unsigned char *)zIn; + const unsigned char *zTerm = &z[nIn]; + int iCode; + int nEntry = 0; + + assert( bAlnum==0 || bAlnum==1 ); + + while( zaiException, (p->nException+nEntry)*sizeof(int)); + if( aNew==0 ) return SQLITE_NOMEM; + nNew = p->nException; + + z = (const unsigned char *)zIn; + while( zi; j--) aNew[j] = aNew[j-1]; + aNew[i] = iCode; + nNew++; + } + } + p->aiException = aNew; + p->nException = nNew; + } + + return SQLITE_OK; +} + +/* +** Return true if the p->aiException[] array contains the value iCode. +*/ +static int unicodeIsException(unicode_tokenizer *p, int iCode){ + if( p->nException>0 ){ + int *a = p->aiException; + int iLo = 0; + int iHi = p->nException-1; + + while( iHi>=iLo ){ + int iTest = (iHi + iLo) / 2; + if( iCode==a[iTest] ){ + return 1; + }else if( iCode>a[iTest] ){ + iLo = iTest+1; + }else{ + iHi = iTest-1; + } + } + } + + return 0; +} + +/* +** Return true if, for the purposes of tokenization, codepoint iCode is +** considered a token character (not a separator). +*/ +static int unicodeIsAlnum(unicode_tokenizer *p, int iCode){ + assert( (sqlite3FtsUnicodeIsalnum(iCode) & 0xFFFFFFFE)==0 ); + return sqlite3FtsUnicodeIsalnum(iCode) ^ unicodeIsException(p, iCode); +} + +/* +** Create a new tokenizer instance. +*/ +static int unicodeCreate( + int nArg, /* Size of array argv[] */ + const char * const *azArg, /* Tokenizer creation arguments */ + sqlite3_tokenizer **pp /* OUT: New tokenizer handle */ +){ + unicode_tokenizer *pNew; /* New tokenizer object */ + int i; + int rc = SQLITE_OK; + + pNew = (unicode_tokenizer *) sqlite3_malloc(sizeof(unicode_tokenizer)); + if( pNew==NULL ) return SQLITE_NOMEM; + memset(pNew, 0, sizeof(unicode_tokenizer)); + pNew->bRemoveDiacritic = 1; + + for(i=0; rc==SQLITE_OK && ibRemoveDiacritic = 1; + } + else if( n==19 && memcmp("remove_diacritics=0", z, 19)==0 ){ + pNew->bRemoveDiacritic = 0; + } + else if( n>=11 && memcmp("tokenchars=", z, 11)==0 ){ + rc = unicodeAddExceptions(pNew, 1, &z[11], n-11); + } + else if( n>=11 && memcmp("separators=", z, 11)==0 ){ + rc = unicodeAddExceptions(pNew, 0, &z[11], n-11); + } + else{ + /* Unrecognized argument */ + rc = SQLITE_ERROR; + } + } + + if( rc!=SQLITE_OK ){ + unicodeDestroy((sqlite3_tokenizer *)pNew); + pNew = 0; + } + *pp = (sqlite3_tokenizer *)pNew; + return rc; +} + +/* +** Prepare to begin tokenizing a particular string. The input +** string to be tokenized is pInput[0..nBytes-1]. A cursor +** used to incrementally tokenize this string is returned in +** *ppCursor. +*/ +static int unicodeOpen( + sqlite3_tokenizer *p, /* The tokenizer */ + const char *aInput, /* Input string */ + int nInput, /* Size of string aInput in bytes */ + sqlite3_tokenizer_cursor **pp /* OUT: New cursor object */ +){ + unicode_cursor *pCsr; + + pCsr = (unicode_cursor *)sqlite3_malloc(sizeof(unicode_cursor)); + if( pCsr==0 ){ + return SQLITE_NOMEM; + } + memset(pCsr, 0, sizeof(unicode_cursor)); + + pCsr->aInput = (const unsigned char *)aInput; + if( aInput==0 ){ + pCsr->nInput = 0; + }else if( nInput<0 ){ + pCsr->nInput = (int)strlen(aInput); + }else{ + pCsr->nInput = nInput; + } + + *pp = &pCsr->base; + UNUSED_PARAMETER(p); + return SQLITE_OK; +} + +/* +** Close a tokenization cursor previously opened by a call to +** simpleOpen() above. +*/ +static int unicodeClose(sqlite3_tokenizer_cursor *pCursor){ + unicode_cursor *pCsr = (unicode_cursor *) pCursor; + sqlite3_free(pCsr->zToken); + sqlite3_free(pCsr); + return SQLITE_OK; +} + +/* +** Extract the next token from a tokenization cursor. The cursor must +** have been opened by a prior call to simpleOpen(). +*/ +static int unicodeNext( + sqlite3_tokenizer_cursor *pC, /* Cursor returned by simpleOpen */ + const char **paToken, /* OUT: Token text */ + int *pnToken, /* OUT: Number of bytes at *paToken */ + int *piStart, /* OUT: Starting offset of token */ + int *piEnd, /* OUT: Ending offset of token */ + int *piPos /* OUT: Position integer of token */ +){ + unicode_cursor *pCsr = (unicode_cursor *)pC; + unicode_tokenizer *p = ((unicode_tokenizer *)pCsr->base.pTokenizer); + int iCode; + char *zOut; + const unsigned char *z = &pCsr->aInput[pCsr->iOff]; + const unsigned char *zStart = z; + const unsigned char *zEnd; + const unsigned char *zTerm = &pCsr->aInput[pCsr->nInput]; + + /* Scan past any delimiter characters before the start of the next token. + ** Return SQLITE_DONE early if this takes us all the way to the end of + ** the input. */ + while( z=zTerm ) return SQLITE_DONE; + + zOut = pCsr->zToken; + do { + int iOut; + + /* Grow the output buffer if required. */ + if( (zOut-pCsr->zToken)>=(pCsr->nAlloc-4) ){ + char *zNew = sqlite3_realloc(pCsr->zToken, pCsr->nAlloc+64); + if( !zNew ) return SQLITE_NOMEM; + zOut = &zNew[zOut - pCsr->zToken]; + pCsr->zToken = zNew; + pCsr->nAlloc += 64; + } + + /* Write the folded case of the last character read to the output */ + zEnd = z; + iOut = sqlite3FtsUnicodeFold(iCode, p->bRemoveDiacritic); + if( iOut ){ + WRITE_UTF8(zOut, iOut); + } + + /* If the cursor is not at EOF, read the next character */ + if( z>=zTerm ) break; + READ_UTF8(z, zTerm, iCode); + }while( unicodeIsAlnum(p, iCode) + || sqlite3FtsUnicodeIsdiacritic(iCode) + ); + + /* Set the output variables and return. */ + pCsr->iOff = (z - pCsr->aInput); + *paToken = pCsr->zToken; + *pnToken = zOut - pCsr->zToken; + *piStart = (zStart - pCsr->aInput); + *piEnd = (zEnd - pCsr->aInput); + *piPos = pCsr->iToken++; + return SQLITE_OK; +} + +/* +** Set *ppModule to a pointer to the sqlite3_tokenizer_module +** structure for the unicode tokenizer. +*/ +SQLITE_PRIVATE void sqlite3Fts3UnicodeTokenizer(sqlite3_tokenizer_module const **ppModule){ + static const sqlite3_tokenizer_module module = { + 0, + unicodeCreate, + unicodeDestroy, + unicodeOpen, + unicodeClose, + unicodeNext, + 0, + }; + *ppModule = &module; +} + +#endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ +#endif /* ifndef SQLITE_ENABLE_FTS4_UNICODE61 */ + +/************** End of fts3_unicode.c ****************************************/ +/************** Begin file fts3_unicode2.c ***********************************/ +/* +** 2012 May 25 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +****************************************************************************** +*/ + +/* +** DO NOT EDIT THIS MACHINE GENERATED FILE. +*/ + +#if defined(SQLITE_ENABLE_FTS4_UNICODE61) +#if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) + +/* #include */ + +/* +** Return true if the argument corresponds to a unicode codepoint +** classified as either a letter or a number. Otherwise false. +** +** The results are undefined if the value passed to this function +** is less than zero. +*/ +SQLITE_PRIVATE int sqlite3FtsUnicodeIsalnum(int c){ + /* Each unsigned integer in the following array corresponds to a contiguous + ** range of unicode codepoints that are not either letters or numbers (i.e. + ** codepoints for which this function should return 0). + ** + ** The most significant 22 bits in each 32-bit value contain the first + ** codepoint in the range. The least significant 10 bits are used to store + ** the size of the range (always at least 1). In other words, the value + ** ((C<<22) + N) represents a range of N codepoints starting with codepoint + ** C. It is not possible to represent a range larger than 1023 codepoints + ** using this format. + */ + const static unsigned int aEntry[] = { + 0x00000030, 0x0000E807, 0x00016C06, 0x0001EC2F, 0x0002AC07, + 0x0002D001, 0x0002D803, 0x0002EC01, 0x0002FC01, 0x00035C01, + 0x0003DC01, 0x000B0804, 0x000B480E, 0x000B9407, 0x000BB401, + 0x000BBC81, 0x000DD401, 0x000DF801, 0x000E1002, 0x000E1C01, + 0x000FD801, 0x00120808, 0x00156806, 0x00162402, 0x00163C01, + 0x00164437, 0x0017CC02, 0x00180005, 0x00181816, 0x00187802, + 0x00192C15, 0x0019A804, 0x0019C001, 0x001B5001, 0x001B580F, + 0x001B9C07, 0x001BF402, 0x001C000E, 0x001C3C01, 0x001C4401, + 0x001CC01B, 0x001E980B, 0x001FAC09, 0x001FD804, 0x00205804, + 0x00206C09, 0x00209403, 0x0020A405, 0x0020C00F, 0x00216403, + 0x00217801, 0x0023901B, 0x00240004, 0x0024E803, 0x0024F812, + 0x00254407, 0x00258804, 0x0025C001, 0x00260403, 0x0026F001, + 0x0026F807, 0x00271C02, 0x00272C03, 0x00275C01, 0x00278802, + 0x0027C802, 0x0027E802, 0x00280403, 0x0028F001, 0x0028F805, + 0x00291C02, 0x00292C03, 0x00294401, 0x0029C002, 0x0029D401, + 0x002A0403, 0x002AF001, 0x002AF808, 0x002B1C03, 0x002B2C03, + 0x002B8802, 0x002BC002, 0x002C0403, 0x002CF001, 0x002CF807, + 0x002D1C02, 0x002D2C03, 0x002D5802, 0x002D8802, 0x002DC001, + 0x002E0801, 0x002EF805, 0x002F1803, 0x002F2804, 0x002F5C01, + 0x002FCC08, 0x00300403, 0x0030F807, 0x00311803, 0x00312804, + 0x00315402, 0x00318802, 0x0031FC01, 0x00320802, 0x0032F001, + 0x0032F807, 0x00331803, 0x00332804, 0x00335402, 0x00338802, + 0x00340802, 0x0034F807, 0x00351803, 0x00352804, 0x00355C01, + 0x00358802, 0x0035E401, 0x00360802, 0x00372801, 0x00373C06, + 0x00375801, 0x00376008, 0x0037C803, 0x0038C401, 0x0038D007, + 0x0038FC01, 0x00391C09, 0x00396802, 0x003AC401, 0x003AD006, + 0x003AEC02, 0x003B2006, 0x003C041F, 0x003CD00C, 0x003DC417, + 0x003E340B, 0x003E6424, 0x003EF80F, 0x003F380D, 0x0040AC14, + 0x00412806, 0x00415804, 0x00417803, 0x00418803, 0x00419C07, + 0x0041C404, 0x0042080C, 0x00423C01, 0x00426806, 0x0043EC01, + 0x004D740C, 0x004E400A, 0x00500001, 0x0059B402, 0x005A0001, + 0x005A6C02, 0x005BAC03, 0x005C4803, 0x005CC805, 0x005D4802, + 0x005DC802, 0x005ED023, 0x005F6004, 0x005F7401, 0x0060000F, + 0x0062A401, 0x0064800C, 0x0064C00C, 0x00650001, 0x00651002, + 0x0066C011, 0x00672002, 0x00677822, 0x00685C05, 0x00687802, + 0x0069540A, 0x0069801D, 0x0069FC01, 0x006A8007, 0x006AA006, + 0x006C0005, 0x006CD011, 0x006D6823, 0x006E0003, 0x006E840D, + 0x006F980E, 0x006FF004, 0x00709014, 0x0070EC05, 0x0071F802, + 0x00730008, 0x00734019, 0x0073B401, 0x0073C803, 0x00770027, + 0x0077F004, 0x007EF401, 0x007EFC03, 0x007F3403, 0x007F7403, + 0x007FB403, 0x007FF402, 0x00800065, 0x0081A806, 0x0081E805, + 0x00822805, 0x0082801A, 0x00834021, 0x00840002, 0x00840C04, + 0x00842002, 0x00845001, 0x00845803, 0x00847806, 0x00849401, + 0x00849C01, 0x0084A401, 0x0084B801, 0x0084E802, 0x00850005, + 0x00852804, 0x00853C01, 0x00864264, 0x00900027, 0x0091000B, + 0x0092704E, 0x00940200, 0x009C0475, 0x009E53B9, 0x00AD400A, + 0x00B39406, 0x00B3BC03, 0x00B3E404, 0x00B3F802, 0x00B5C001, + 0x00B5FC01, 0x00B7804F, 0x00B8C00C, 0x00BA001A, 0x00BA6C59, + 0x00BC00D6, 0x00BFC00C, 0x00C00005, 0x00C02019, 0x00C0A807, + 0x00C0D802, 0x00C0F403, 0x00C26404, 0x00C28001, 0x00C3EC01, + 0x00C64002, 0x00C6580A, 0x00C70024, 0x00C8001F, 0x00C8A81E, + 0x00C94001, 0x00C98020, 0x00CA2827, 0x00CB003F, 0x00CC0100, + 0x01370040, 0x02924037, 0x0293F802, 0x02983403, 0x0299BC10, + 0x029A7C01, 0x029BC008, 0x029C0017, 0x029C8002, 0x029E2402, + 0x02A00801, 0x02A01801, 0x02A02C01, 0x02A08C09, 0x02A0D804, + 0x02A1D004, 0x02A20002, 0x02A2D011, 0x02A33802, 0x02A38012, + 0x02A3E003, 0x02A4980A, 0x02A51C0D, 0x02A57C01, 0x02A60004, + 0x02A6CC1B, 0x02A77802, 0x02A8A40E, 0x02A90C01, 0x02A93002, + 0x02A97004, 0x02A9DC03, 0x02A9EC01, 0x02AAC001, 0x02AAC803, + 0x02AADC02, 0x02AAF802, 0x02AB0401, 0x02AB7802, 0x02ABAC07, + 0x02ABD402, 0x02AF8C0B, 0x03600001, 0x036DFC02, 0x036FFC02, + 0x037FFC01, 0x03EC7801, 0x03ECA401, 0x03EEC810, 0x03F4F802, + 0x03F7F002, 0x03F8001A, 0x03F88007, 0x03F8C023, 0x03F95013, + 0x03F9A004, 0x03FBFC01, 0x03FC040F, 0x03FC6807, 0x03FCEC06, + 0x03FD6C0B, 0x03FF8007, 0x03FFA007, 0x03FFE405, 0x04040003, + 0x0404DC09, 0x0405E411, 0x0406400C, 0x0407402E, 0x040E7C01, + 0x040F4001, 0x04215C01, 0x04247C01, 0x0424FC01, 0x04280403, + 0x04281402, 0x04283004, 0x0428E003, 0x0428FC01, 0x04294009, + 0x0429FC01, 0x042CE407, 0x04400003, 0x0440E016, 0x04420003, + 0x0442C012, 0x04440003, 0x04449C0E, 0x04450004, 0x04460003, + 0x0446CC0E, 0x04471404, 0x045AAC0D, 0x0491C004, 0x05BD442E, + 0x05BE3C04, 0x074000F6, 0x07440027, 0x0744A4B5, 0x07480046, + 0x074C0057, 0x075B0401, 0x075B6C01, 0x075BEC01, 0x075C5401, + 0x075CD401, 0x075D3C01, 0x075DBC01, 0x075E2401, 0x075EA401, + 0x075F0C01, 0x07BBC002, 0x07C0002C, 0x07C0C064, 0x07C2800F, + 0x07C2C40E, 0x07C3040F, 0x07C3440F, 0x07C4401F, 0x07C4C03C, + 0x07C5C02B, 0x07C7981D, 0x07C8402B, 0x07C90009, 0x07C94002, + 0x07CC0021, 0x07CCC006, 0x07CCDC46, 0x07CE0014, 0x07CE8025, + 0x07CF1805, 0x07CF8011, 0x07D0003F, 0x07D10001, 0x07D108B6, + 0x07D3E404, 0x07D4003E, 0x07D50004, 0x07D54018, 0x07D7EC46, + 0x07D9140B, 0x07DA0046, 0x07DC0074, 0x38000401, 0x38008060, + 0x380400F0, + }; + static const unsigned int aAscii[4] = { + 0xFFFFFFFF, 0xFC00FFFF, 0xF8000001, 0xF8000001, + }; + + if( c<128 ){ + return ( (aAscii[c >> 5] & (1 << (c & 0x001F)))==0 ); + }else if( c<(1<<22) ){ + unsigned int key = (((unsigned int)c)<<10) | 0x000003FF; + int iRes; + int iHi = sizeof(aEntry)/sizeof(aEntry[0]) - 1; + int iLo = 0; + while( iHi>=iLo ){ + int iTest = (iHi + iLo) / 2; + if( key >= aEntry[iTest] ){ + iRes = iTest; + iLo = iTest+1; + }else{ + iHi = iTest-1; + } + } + assert( aEntry[0]=aEntry[iRes] ); + return (((unsigned int)c) >= ((aEntry[iRes]>>10) + (aEntry[iRes]&0x3FF))); + } + return 1; +} + + +/* +** If the argument is a codepoint corresponding to a lowercase letter +** in the ASCII range with a diacritic added, return the codepoint +** of the ASCII letter only. For example, if passed 235 - "LATIN +** SMALL LETTER E WITH DIAERESIS" - return 65 ("LATIN SMALL LETTER +** E"). The resuls of passing a codepoint that corresponds to an +** uppercase letter are undefined. +*/ +static int remove_diacritic(int c){ + unsigned short aDia[] = { + 0, 1797, 1848, 1859, 1891, 1928, 1940, 1995, + 2024, 2040, 2060, 2110, 2168, 2206, 2264, 2286, + 2344, 2383, 2472, 2488, 2516, 2596, 2668, 2732, + 2782, 2842, 2894, 2954, 2984, 3000, 3028, 3336, + 3456, 3696, 3712, 3728, 3744, 3896, 3912, 3928, + 3968, 4008, 4040, 4106, 4138, 4170, 4202, 4234, + 4266, 4296, 4312, 4344, 4408, 4424, 4472, 4504, + 6148, 6198, 6264, 6280, 6360, 6429, 6505, 6529, + 61448, 61468, 61534, 61592, 61642, 61688, 61704, 61726, + 61784, 61800, 61836, 61880, 61914, 61948, 61998, 62122, + 62154, 62200, 62218, 62302, 62364, 62442, 62478, 62536, + 62554, 62584, 62604, 62640, 62648, 62656, 62664, 62730, + 62924, 63050, 63082, 63274, 63390, + }; + char aChar[] = { + '\0', 'a', 'c', 'e', 'i', 'n', 'o', 'u', 'y', 'y', 'a', 'c', + 'd', 'e', 'e', 'g', 'h', 'i', 'j', 'k', 'l', 'n', 'o', 'r', + 's', 't', 'u', 'u', 'w', 'y', 'z', 'o', 'u', 'a', 'i', 'o', + 'u', 'g', 'k', 'o', 'j', 'g', 'n', 'a', 'e', 'i', 'o', 'r', + 'u', 's', 't', 'h', 'a', 'e', 'o', 'y', '\0', '\0', '\0', '\0', + '\0', '\0', '\0', '\0', 'a', 'b', 'd', 'd', 'e', 'f', 'g', 'h', + 'h', 'i', 'k', 'l', 'l', 'm', 'n', 'p', 'r', 'r', 's', 't', + 'u', 'v', 'w', 'w', 'x', 'y', 'z', 'h', 't', 'w', 'y', 'a', + 'e', 'i', 'o', 'u', 'y', + }; + + unsigned int key = (((unsigned int)c)<<3) | 0x00000007; + int iRes = 0; + int iHi = sizeof(aDia)/sizeof(aDia[0]) - 1; + int iLo = 0; + while( iHi>=iLo ){ + int iTest = (iHi + iLo) / 2; + if( key >= aDia[iTest] ){ + iRes = iTest; + iLo = iTest+1; + }else{ + iHi = iTest-1; + } + } + assert( key>=aDia[iRes] ); + return ((c > (aDia[iRes]>>3) + (aDia[iRes]&0x07)) ? c : (int)aChar[iRes]); +}; + + +/* +** Return true if the argument interpreted as a unicode codepoint +** is a diacritical modifier character. +*/ +SQLITE_PRIVATE int sqlite3FtsUnicodeIsdiacritic(int c){ + unsigned int mask0 = 0x08029FDF; + unsigned int mask1 = 0x000361F8; + if( c<768 || c>817 ) return 0; + return (c < 768+32) ? + (mask0 & (1 << (c-768))) : + (mask1 & (1 << (c-768-32))); +} + + +/* +** Interpret the argument as a unicode codepoint. If the codepoint +** is an upper case character that has a lower case equivalent, +** return the codepoint corresponding to the lower case version. +** Otherwise, return a copy of the argument. +** +** The results are undefined if the value passed to this function +** is less than zero. +*/ +SQLITE_PRIVATE int sqlite3FtsUnicodeFold(int c, int bRemoveDiacritic){ + /* Each entry in the following array defines a rule for folding a range + ** of codepoints to lower case. The rule applies to a range of nRange + ** codepoints starting at codepoint iCode. + ** + ** If the least significant bit in flags is clear, then the rule applies + ** to all nRange codepoints (i.e. all nRange codepoints are upper case and + ** need to be folded). Or, if it is set, then the rule only applies to + ** every second codepoint in the range, starting with codepoint C. + ** + ** The 7 most significant bits in flags are an index into the aiOff[] + ** array. If a specific codepoint C does require folding, then its lower + ** case equivalent is ((C + aiOff[flags>>1]) & 0xFFFF). + ** + ** The contents of this array are generated by parsing the CaseFolding.txt + ** file distributed as part of the "Unicode Character Database". See + ** http://www.unicode.org for details. + */ + static const struct TableEntry { + unsigned short iCode; + unsigned char flags; + unsigned char nRange; + } aEntry[] = { + {65, 14, 26}, {181, 64, 1}, {192, 14, 23}, + {216, 14, 7}, {256, 1, 48}, {306, 1, 6}, + {313, 1, 16}, {330, 1, 46}, {376, 116, 1}, + {377, 1, 6}, {383, 104, 1}, {385, 50, 1}, + {386, 1, 4}, {390, 44, 1}, {391, 0, 1}, + {393, 42, 2}, {395, 0, 1}, {398, 32, 1}, + {399, 38, 1}, {400, 40, 1}, {401, 0, 1}, + {403, 42, 1}, {404, 46, 1}, {406, 52, 1}, + {407, 48, 1}, {408, 0, 1}, {412, 52, 1}, + {413, 54, 1}, {415, 56, 1}, {416, 1, 6}, + {422, 60, 1}, {423, 0, 1}, {425, 60, 1}, + {428, 0, 1}, {430, 60, 1}, {431, 0, 1}, + {433, 58, 2}, {435, 1, 4}, {439, 62, 1}, + {440, 0, 1}, {444, 0, 1}, {452, 2, 1}, + {453, 0, 1}, {455, 2, 1}, {456, 0, 1}, + {458, 2, 1}, {459, 1, 18}, {478, 1, 18}, + {497, 2, 1}, {498, 1, 4}, {502, 122, 1}, + {503, 134, 1}, {504, 1, 40}, {544, 110, 1}, + {546, 1, 18}, {570, 70, 1}, {571, 0, 1}, + {573, 108, 1}, {574, 68, 1}, {577, 0, 1}, + {579, 106, 1}, {580, 28, 1}, {581, 30, 1}, + {582, 1, 10}, {837, 36, 1}, {880, 1, 4}, + {886, 0, 1}, {902, 18, 1}, {904, 16, 3}, + {908, 26, 1}, {910, 24, 2}, {913, 14, 17}, + {931, 14, 9}, {962, 0, 1}, {975, 4, 1}, + {976, 140, 1}, {977, 142, 1}, {981, 146, 1}, + {982, 144, 1}, {984, 1, 24}, {1008, 136, 1}, + {1009, 138, 1}, {1012, 130, 1}, {1013, 128, 1}, + {1015, 0, 1}, {1017, 152, 1}, {1018, 0, 1}, + {1021, 110, 3}, {1024, 34, 16}, {1040, 14, 32}, + {1120, 1, 34}, {1162, 1, 54}, {1216, 6, 1}, + {1217, 1, 14}, {1232, 1, 88}, {1329, 22, 38}, + {4256, 66, 38}, {4295, 66, 1}, {4301, 66, 1}, + {7680, 1, 150}, {7835, 132, 1}, {7838, 96, 1}, + {7840, 1, 96}, {7944, 150, 8}, {7960, 150, 6}, + {7976, 150, 8}, {7992, 150, 8}, {8008, 150, 6}, + {8025, 151, 8}, {8040, 150, 8}, {8072, 150, 8}, + {8088, 150, 8}, {8104, 150, 8}, {8120, 150, 2}, + {8122, 126, 2}, {8124, 148, 1}, {8126, 100, 1}, + {8136, 124, 4}, {8140, 148, 1}, {8152, 150, 2}, + {8154, 120, 2}, {8168, 150, 2}, {8170, 118, 2}, + {8172, 152, 1}, {8184, 112, 2}, {8186, 114, 2}, + {8188, 148, 1}, {8486, 98, 1}, {8490, 92, 1}, + {8491, 94, 1}, {8498, 12, 1}, {8544, 8, 16}, + {8579, 0, 1}, {9398, 10, 26}, {11264, 22, 47}, + {11360, 0, 1}, {11362, 88, 1}, {11363, 102, 1}, + {11364, 90, 1}, {11367, 1, 6}, {11373, 84, 1}, + {11374, 86, 1}, {11375, 80, 1}, {11376, 82, 1}, + {11378, 0, 1}, {11381, 0, 1}, {11390, 78, 2}, + {11392, 1, 100}, {11499, 1, 4}, {11506, 0, 1}, + {42560, 1, 46}, {42624, 1, 24}, {42786, 1, 14}, + {42802, 1, 62}, {42873, 1, 4}, {42877, 76, 1}, + {42878, 1, 10}, {42891, 0, 1}, {42893, 74, 1}, + {42896, 1, 4}, {42912, 1, 10}, {42922, 72, 1}, + {65313, 14, 26}, + }; + static const unsigned short aiOff[] = { + 1, 2, 8, 15, 16, 26, 28, 32, + 37, 38, 40, 48, 63, 64, 69, 71, + 79, 80, 116, 202, 203, 205, 206, 207, + 209, 210, 211, 213, 214, 217, 218, 219, + 775, 7264, 10792, 10795, 23228, 23256, 30204, 54721, + 54753, 54754, 54756, 54787, 54793, 54809, 57153, 57274, + 57921, 58019, 58363, 61722, 65268, 65341, 65373, 65406, + 65408, 65410, 65415, 65424, 65436, 65439, 65450, 65462, + 65472, 65476, 65478, 65480, 65482, 65488, 65506, 65511, + 65514, 65521, 65527, 65528, 65529, + }; + + int ret = c; + + assert( c>=0 ); + assert( sizeof(unsigned short)==2 && sizeof(unsigned char)==1 ); + + if( c<128 ){ + if( c>='A' && c<='Z' ) ret = c + ('a' - 'A'); + }else if( c<65536 ){ + int iHi = sizeof(aEntry)/sizeof(aEntry[0]) - 1; + int iLo = 0; + int iRes = -1; + + while( iHi>=iLo ){ + int iTest = (iHi + iLo) / 2; + int cmp = (c - aEntry[iTest].iCode); + if( cmp>=0 ){ + iRes = iTest; + iLo = iTest+1; + }else{ + iHi = iTest-1; + } + } + assert( iRes<0 || c>=aEntry[iRes].iCode ); + + if( iRes>=0 ){ + const struct TableEntry *p = &aEntry[iRes]; + if( c<(p->iCode + p->nRange) && 0==(0x01 & p->flags & (p->iCode ^ c)) ){ + ret = (c + (aiOff[p->flags>>1])) & 0x0000FFFF; + assert( ret>0 ); + } + } + + if( bRemoveDiacritic ) ret = remove_diacritic(ret); + } + + else if( c>=66560 && c<66600 ){ + ret = c + 40; + } + + return ret; +} +#endif /* defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) */ +#endif /* !defined(SQLITE_ENABLE_FTS4_UNICODE61) */ + +/************** End of fts3_unicode2.c ***************************************/ +/************** Begin file rtree.c *******************************************/ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file contains code for implementations of the r-tree and r*-tree +** algorithms packaged as an SQLite virtual table module. +*/ + +/* +** Database Format of R-Tree Tables +** -------------------------------- +** +** The data structure for a single virtual r-tree table is stored in three +** native SQLite tables declared as follows. In each case, the '%' character +** in the table name is replaced with the user-supplied name of the r-tree +** table. +** +** CREATE TABLE %_node(nodeno INTEGER PRIMARY KEY, data BLOB) +** CREATE TABLE %_parent(nodeno INTEGER PRIMARY KEY, parentnode INTEGER) +** CREATE TABLE %_rowid(rowid INTEGER PRIMARY KEY, nodeno INTEGER) +** +** The data for each node of the r-tree structure is stored in the %_node +** table. For each node that is not the root node of the r-tree, there is +** an entry in the %_parent table associating the node with its parent. +** And for each row of data in the table, there is an entry in the %_rowid +** table that maps from the entries rowid to the id of the node that it +** is stored on. +** +** The root node of an r-tree always exists, even if the r-tree table is +** empty. The nodeno of the root node is always 1. All other nodes in the +** table must be the same size as the root node. The content of each node +** is formatted as follows: +** +** 1. If the node is the root node (node 1), then the first 2 bytes +** of the node contain the tree depth as a big-endian integer. +** For non-root nodes, the first 2 bytes are left unused. +** +** 2. The next 2 bytes contain the number of entries currently +** stored in the node. +** +** 3. The remainder of the node contains the node entries. Each entry +** consists of a single 8-byte integer followed by an even number +** of 4-byte coordinates. For leaf nodes the integer is the rowid +** of a record. For internal nodes it is the node number of a +** child page. +*/ + +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_RTREE) + +#ifndef SQLITE_CORE + SQLITE_EXTENSION_INIT1 +#else +#endif + +/* #include */ +/* #include */ +/* #include */ + +#ifndef SQLITE_AMALGAMATION +#include "sqlite3rtree.h" +typedef sqlite3_int64 i64; +typedef unsigned char u8; +typedef unsigned short u16; +typedef unsigned int u32; +#endif + +/* The following macro is used to suppress compiler warnings. +*/ +#ifndef UNUSED_PARAMETER +# define UNUSED_PARAMETER(x) (void)(x) +#endif + +typedef struct Rtree Rtree; +typedef struct RtreeCursor RtreeCursor; +typedef struct RtreeNode RtreeNode; +typedef struct RtreeCell RtreeCell; +typedef struct RtreeConstraint RtreeConstraint; +typedef struct RtreeMatchArg RtreeMatchArg; +typedef struct RtreeGeomCallback RtreeGeomCallback; +typedef union RtreeCoord RtreeCoord; +typedef struct RtreeSearchPoint RtreeSearchPoint; + +/* The rtree may have between 1 and RTREE_MAX_DIMENSIONS dimensions. */ +#define RTREE_MAX_DIMENSIONS 5 + +/* Size of hash table Rtree.aHash. This hash table is not expected to +** ever contain very many entries, so a fixed number of buckets is +** used. +*/ +#define HASHSIZE 97 + +/* The xBestIndex method of this virtual table requires an estimate of +** the number of rows in the virtual table to calculate the costs of +** various strategies. If possible, this estimate is loaded from the +** sqlite_stat1 table (with RTREE_MIN_ROWEST as a hard-coded minimum). +** Otherwise, if no sqlite_stat1 entry is available, use +** RTREE_DEFAULT_ROWEST. +*/ +#define RTREE_DEFAULT_ROWEST 1048576 +#define RTREE_MIN_ROWEST 100 + +/* +** An rtree virtual-table object. +*/ +struct Rtree { + sqlite3_vtab base; /* Base class. Must be first */ + sqlite3 *db; /* Host database connection */ + int iNodeSize; /* Size in bytes of each node in the node table */ + u8 nDim; /* Number of dimensions */ + u8 eCoordType; /* RTREE_COORD_REAL32 or RTREE_COORD_INT32 */ + u8 nBytesPerCell; /* Bytes consumed per cell */ + int iDepth; /* Current depth of the r-tree structure */ + char *zDb; /* Name of database containing r-tree table */ + char *zName; /* Name of r-tree table */ + int nBusy; /* Current number of users of this structure */ + i64 nRowEst; /* Estimated number of rows in this table */ + + /* List of nodes removed during a CondenseTree operation. List is + ** linked together via the pointer normally used for hash chains - + ** RtreeNode.pNext. RtreeNode.iNode stores the depth of the sub-tree + ** headed by the node (leaf nodes have RtreeNode.iNode==0). + */ + RtreeNode *pDeleted; + int iReinsertHeight; /* Height of sub-trees Reinsert() has run on */ + + /* Statements to read/write/delete a record from xxx_node */ + sqlite3_stmt *pReadNode; + sqlite3_stmt *pWriteNode; + sqlite3_stmt *pDeleteNode; + + /* Statements to read/write/delete a record from xxx_rowid */ + sqlite3_stmt *pReadRowid; + sqlite3_stmt *pWriteRowid; + sqlite3_stmt *pDeleteRowid; + + /* Statements to read/write/delete a record from xxx_parent */ + sqlite3_stmt *pReadParent; + sqlite3_stmt *pWriteParent; + sqlite3_stmt *pDeleteParent; + + RtreeNode *aHash[HASHSIZE]; /* Hash table of in-memory nodes. */ +}; + +/* Possible values for Rtree.eCoordType: */ +#define RTREE_COORD_REAL32 0 +#define RTREE_COORD_INT32 1 + +/* +** If SQLITE_RTREE_INT_ONLY is defined, then this virtual table will +** only deal with integer coordinates. No floating point operations +** will be done. +*/ +#ifdef SQLITE_RTREE_INT_ONLY + typedef sqlite3_int64 RtreeDValue; /* High accuracy coordinate */ + typedef int RtreeValue; /* Low accuracy coordinate */ +# define RTREE_ZERO 0 +#else + typedef double RtreeDValue; /* High accuracy coordinate */ + typedef float RtreeValue; /* Low accuracy coordinate */ +# define RTREE_ZERO 0.0 +#endif + +/* +** When doing a search of an r-tree, instances of the following structure +** record intermediate results from the tree walk. +** +** The id is always a node-id. For iLevel>=1 the id is the node-id of +** the node that the RtreeSearchPoint represents. When iLevel==0, however, +** the id is of the parent node and the cell that RtreeSearchPoint +** represents is the iCell-th entry in the parent node. +*/ +struct RtreeSearchPoint { + RtreeDValue rScore; /* The score for this node. Smallest goes first. */ + sqlite3_int64 id; /* Node ID */ + u8 iLevel; /* 0=entries. 1=leaf node. 2+ for higher */ + u8 eWithin; /* PARTLY_WITHIN or FULLY_WITHIN */ + u8 iCell; /* Cell index within the node */ +}; + +/* +** The minimum number of cells allowed for a node is a third of the +** maximum. In Gutman's notation: +** +** m = M/3 +** +** If an R*-tree "Reinsert" operation is required, the same number of +** cells are removed from the overfull node and reinserted into the tree. +*/ +#define RTREE_MINCELLS(p) ((((p)->iNodeSize-4)/(p)->nBytesPerCell)/3) +#define RTREE_REINSERT(p) RTREE_MINCELLS(p) +#define RTREE_MAXCELLS 51 + +/* +** The smallest possible node-size is (512-64)==448 bytes. And the largest +** supported cell size is 48 bytes (8 byte rowid + ten 4 byte coordinates). +** Therefore all non-root nodes must contain at least 3 entries. Since +** 2^40 is greater than 2^64, an r-tree structure always has a depth of +** 40 or less. +*/ +#define RTREE_MAX_DEPTH 40 + + +/* +** Number of entries in the cursor RtreeNode cache. The first entry is +** used to cache the RtreeNode for RtreeCursor.sPoint. The remaining +** entries cache the RtreeNode for the first elements of the priority queue. +*/ +#define RTREE_CACHE_SZ 5 + +/* +** An rtree cursor object. +*/ +struct RtreeCursor { + sqlite3_vtab_cursor base; /* Base class. Must be first */ + u8 atEOF; /* True if at end of search */ + u8 bPoint; /* True if sPoint is valid */ + int iStrategy; /* Copy of idxNum search parameter */ + int nConstraint; /* Number of entries in aConstraint */ + RtreeConstraint *aConstraint; /* Search constraints. */ + int nPointAlloc; /* Number of slots allocated for aPoint[] */ + int nPoint; /* Number of slots used in aPoint[] */ + int mxLevel; /* iLevel value for root of the tree */ + RtreeSearchPoint *aPoint; /* Priority queue for search points */ + RtreeSearchPoint sPoint; /* Cached next search point */ + RtreeNode *aNode[RTREE_CACHE_SZ]; /* Rtree node cache */ + u32 anQueue[RTREE_MAX_DEPTH+1]; /* Number of queued entries by iLevel */ +}; + +/* Return the Rtree of a RtreeCursor */ +#define RTREE_OF_CURSOR(X) ((Rtree*)((X)->base.pVtab)) + +/* +** A coordinate can be either a floating point number or a integer. All +** coordinates within a single R-Tree are always of the same time. +*/ +union RtreeCoord { + RtreeValue f; /* Floating point value */ + int i; /* Integer value */ + u32 u; /* Unsigned for byte-order conversions */ +}; + +/* +** The argument is an RtreeCoord. Return the value stored within the RtreeCoord +** formatted as a RtreeDValue (double or int64). This macro assumes that local +** variable pRtree points to the Rtree structure associated with the +** RtreeCoord. +*/ +#ifdef SQLITE_RTREE_INT_ONLY +# define DCOORD(coord) ((RtreeDValue)coord.i) +#else +# define DCOORD(coord) ( \ + (pRtree->eCoordType==RTREE_COORD_REAL32) ? \ + ((double)coord.f) : \ + ((double)coord.i) \ + ) +#endif + +/* +** A search constraint. +*/ +struct RtreeConstraint { + int iCoord; /* Index of constrained coordinate */ + int op; /* Constraining operation */ + union { + RtreeDValue rValue; /* Constraint value. */ + int (*xGeom)(sqlite3_rtree_geometry*,int,RtreeDValue*,int*); + int (*xQueryFunc)(sqlite3_rtree_query_info*); + } u; + sqlite3_rtree_query_info *pInfo; /* xGeom and xQueryFunc argument */ +}; + +/* Possible values for RtreeConstraint.op */ +#define RTREE_EQ 0x41 /* A */ +#define RTREE_LE 0x42 /* B */ +#define RTREE_LT 0x43 /* C */ +#define RTREE_GE 0x44 /* D */ +#define RTREE_GT 0x45 /* E */ +#define RTREE_MATCH 0x46 /* F: Old-style sqlite3_rtree_geometry_callback() */ +#define RTREE_QUERY 0x47 /* G: New-style sqlite3_rtree_query_callback() */ + + +/* +** An rtree structure node. +*/ +struct RtreeNode { + RtreeNode *pParent; /* Parent node */ + i64 iNode; /* The node number */ + int nRef; /* Number of references to this node */ + int isDirty; /* True if the node needs to be written to disk */ + u8 *zData; /* Content of the node, as should be on disk */ + RtreeNode *pNext; /* Next node in this hash collision chain */ +}; + +/* Return the number of cells in a node */ +#define NCELL(pNode) readInt16(&(pNode)->zData[2]) + +/* +** A single cell from a node, deserialized +*/ +struct RtreeCell { + i64 iRowid; /* Node or entry ID */ + RtreeCoord aCoord[RTREE_MAX_DIMENSIONS*2]; /* Bounding box coordinates */ +}; + + +/* +** This object becomes the sqlite3_user_data() for the SQL functions +** that are created by sqlite3_rtree_geometry_callback() and +** sqlite3_rtree_query_callback() and which appear on the right of MATCH +** operators in order to constrain a search. +** +** xGeom and xQueryFunc are the callback functions. Exactly one of +** xGeom and xQueryFunc fields is non-NULL, depending on whether the +** SQL function was created using sqlite3_rtree_geometry_callback() or +** sqlite3_rtree_query_callback(). +** +** This object is deleted automatically by the destructor mechanism in +** sqlite3_create_function_v2(). +*/ +struct RtreeGeomCallback { + int (*xGeom)(sqlite3_rtree_geometry*, int, RtreeDValue*, int*); + int (*xQueryFunc)(sqlite3_rtree_query_info*); + void (*xDestructor)(void*); + void *pContext; +}; + + +/* +** Value for the first field of every RtreeMatchArg object. The MATCH +** operator tests that the first field of a blob operand matches this +** value to avoid operating on invalid blobs (which could cause a segfault). +*/ +#define RTREE_GEOMETRY_MAGIC 0x891245AB + +/* +** An instance of this structure (in the form of a BLOB) is returned by +** the SQL functions that sqlite3_rtree_geometry_callback() and +** sqlite3_rtree_query_callback() create, and is read as the right-hand +** operand to the MATCH operator of an R-Tree. +*/ +struct RtreeMatchArg { + u32 magic; /* Always RTREE_GEOMETRY_MAGIC */ + RtreeGeomCallback cb; /* Info about the callback functions */ + int nParam; /* Number of parameters to the SQL function */ + RtreeDValue aParam[1]; /* Values for parameters to the SQL function */ +}; + +#ifndef MAX +# define MAX(x,y) ((x) < (y) ? (y) : (x)) +#endif +#ifndef MIN +# define MIN(x,y) ((x) > (y) ? (y) : (x)) +#endif + +/* +** Functions to deserialize a 16 bit integer, 32 bit real number and +** 64 bit integer. The deserialized value is returned. +*/ +static int readInt16(u8 *p){ + return (p[0]<<8) + p[1]; +} +static void readCoord(u8 *p, RtreeCoord *pCoord){ + u32 i = ( + (((u32)p[0]) << 24) + + (((u32)p[1]) << 16) + + (((u32)p[2]) << 8) + + (((u32)p[3]) << 0) + ); + *(u32 *)pCoord = i; +} +static i64 readInt64(u8 *p){ + return ( + (((i64)p[0]) << 56) + + (((i64)p[1]) << 48) + + (((i64)p[2]) << 40) + + (((i64)p[3]) << 32) + + (((i64)p[4]) << 24) + + (((i64)p[5]) << 16) + + (((i64)p[6]) << 8) + + (((i64)p[7]) << 0) + ); +} + +/* +** Functions to serialize a 16 bit integer, 32 bit real number and +** 64 bit integer. The value returned is the number of bytes written +** to the argument buffer (always 2, 4 and 8 respectively). +*/ +static int writeInt16(u8 *p, int i){ + p[0] = (i>> 8)&0xFF; + p[1] = (i>> 0)&0xFF; + return 2; +} +static int writeCoord(u8 *p, RtreeCoord *pCoord){ + u32 i; + assert( sizeof(RtreeCoord)==4 ); + assert( sizeof(u32)==4 ); + i = *(u32 *)pCoord; + p[0] = (i>>24)&0xFF; + p[1] = (i>>16)&0xFF; + p[2] = (i>> 8)&0xFF; + p[3] = (i>> 0)&0xFF; + return 4; +} +static int writeInt64(u8 *p, i64 i){ + p[0] = (i>>56)&0xFF; + p[1] = (i>>48)&0xFF; + p[2] = (i>>40)&0xFF; + p[3] = (i>>32)&0xFF; + p[4] = (i>>24)&0xFF; + p[5] = (i>>16)&0xFF; + p[6] = (i>> 8)&0xFF; + p[7] = (i>> 0)&0xFF; + return 8; +} + +/* +** Increment the reference count of node p. +*/ +static void nodeReference(RtreeNode *p){ + if( p ){ + p->nRef++; + } +} + +/* +** Clear the content of node p (set all bytes to 0x00). +*/ +static void nodeZero(Rtree *pRtree, RtreeNode *p){ + memset(&p->zData[2], 0, pRtree->iNodeSize-2); + p->isDirty = 1; +} + +/* +** Given a node number iNode, return the corresponding key to use +** in the Rtree.aHash table. +*/ +static int nodeHash(i64 iNode){ + return iNode % HASHSIZE; +} + +/* +** Search the node hash table for node iNode. If found, return a pointer +** to it. Otherwise, return 0. +*/ +static RtreeNode *nodeHashLookup(Rtree *pRtree, i64 iNode){ + RtreeNode *p; + for(p=pRtree->aHash[nodeHash(iNode)]; p && p->iNode!=iNode; p=p->pNext); + return p; +} + +/* +** Add node pNode to the node hash table. +*/ +static void nodeHashInsert(Rtree *pRtree, RtreeNode *pNode){ + int iHash; + assert( pNode->pNext==0 ); + iHash = nodeHash(pNode->iNode); + pNode->pNext = pRtree->aHash[iHash]; + pRtree->aHash[iHash] = pNode; +} + +/* +** Remove node pNode from the node hash table. +*/ +static void nodeHashDelete(Rtree *pRtree, RtreeNode *pNode){ + RtreeNode **pp; + if( pNode->iNode!=0 ){ + pp = &pRtree->aHash[nodeHash(pNode->iNode)]; + for( ; (*pp)!=pNode; pp = &(*pp)->pNext){ assert(*pp); } + *pp = pNode->pNext; + pNode->pNext = 0; + } +} + +/* +** Allocate and return new r-tree node. Initially, (RtreeNode.iNode==0), +** indicating that node has not yet been assigned a node number. It is +** assigned a node number when nodeWrite() is called to write the +** node contents out to the database. +*/ +static RtreeNode *nodeNew(Rtree *pRtree, RtreeNode *pParent){ + RtreeNode *pNode; + pNode = (RtreeNode *)sqlite3_malloc(sizeof(RtreeNode) + pRtree->iNodeSize); + if( pNode ){ + memset(pNode, 0, sizeof(RtreeNode) + pRtree->iNodeSize); + pNode->zData = (u8 *)&pNode[1]; + pNode->nRef = 1; + pNode->pParent = pParent; + pNode->isDirty = 1; + nodeReference(pParent); + } + return pNode; +} + +/* +** Obtain a reference to an r-tree node. +*/ +static int nodeAcquire( + Rtree *pRtree, /* R-tree structure */ + i64 iNode, /* Node number to load */ + RtreeNode *pParent, /* Either the parent node or NULL */ + RtreeNode **ppNode /* OUT: Acquired node */ +){ + int rc; + int rc2 = SQLITE_OK; + RtreeNode *pNode; + + /* Check if the requested node is already in the hash table. If so, + ** increase its reference count and return it. + */ + if( (pNode = nodeHashLookup(pRtree, iNode)) ){ + assert( !pParent || !pNode->pParent || pNode->pParent==pParent ); + if( pParent && !pNode->pParent ){ + nodeReference(pParent); + pNode->pParent = pParent; + } + pNode->nRef++; + *ppNode = pNode; + return SQLITE_OK; + } + + sqlite3_bind_int64(pRtree->pReadNode, 1, iNode); + rc = sqlite3_step(pRtree->pReadNode); + if( rc==SQLITE_ROW ){ + const u8 *zBlob = sqlite3_column_blob(pRtree->pReadNode, 0); + if( pRtree->iNodeSize==sqlite3_column_bytes(pRtree->pReadNode, 0) ){ + pNode = (RtreeNode *)sqlite3_malloc(sizeof(RtreeNode)+pRtree->iNodeSize); + if( !pNode ){ + rc2 = SQLITE_NOMEM; + }else{ + pNode->pParent = pParent; + pNode->zData = (u8 *)&pNode[1]; + pNode->nRef = 1; + pNode->iNode = iNode; + pNode->isDirty = 0; + pNode->pNext = 0; + memcpy(pNode->zData, zBlob, pRtree->iNodeSize); + nodeReference(pParent); + } + } + } + rc = sqlite3_reset(pRtree->pReadNode); + if( rc==SQLITE_OK ) rc = rc2; + + /* If the root node was just loaded, set pRtree->iDepth to the height + ** of the r-tree structure. A height of zero means all data is stored on + ** the root node. A height of one means the children of the root node + ** are the leaves, and so on. If the depth as specified on the root node + ** is greater than RTREE_MAX_DEPTH, the r-tree structure must be corrupt. + */ + if( pNode && iNode==1 ){ + pRtree->iDepth = readInt16(pNode->zData); + if( pRtree->iDepth>RTREE_MAX_DEPTH ){ + rc = SQLITE_CORRUPT_VTAB; + } + } + + /* If no error has occurred so far, check if the "number of entries" + ** field on the node is too large. If so, set the return code to + ** SQLITE_CORRUPT_VTAB. + */ + if( pNode && rc==SQLITE_OK ){ + if( NCELL(pNode)>((pRtree->iNodeSize-4)/pRtree->nBytesPerCell) ){ + rc = SQLITE_CORRUPT_VTAB; + } + } + + if( rc==SQLITE_OK ){ + if( pNode!=0 ){ + nodeHashInsert(pRtree, pNode); + }else{ + rc = SQLITE_CORRUPT_VTAB; + } + *ppNode = pNode; + }else{ + sqlite3_free(pNode); + *ppNode = 0; + } + + return rc; +} + +/* +** Overwrite cell iCell of node pNode with the contents of pCell. +*/ +static void nodeOverwriteCell( + Rtree *pRtree, /* The overall R-Tree */ + RtreeNode *pNode, /* The node into which the cell is to be written */ + RtreeCell *pCell, /* The cell to write */ + int iCell /* Index into pNode into which pCell is written */ +){ + int ii; + u8 *p = &pNode->zData[4 + pRtree->nBytesPerCell*iCell]; + p += writeInt64(p, pCell->iRowid); + for(ii=0; ii<(pRtree->nDim*2); ii++){ + p += writeCoord(p, &pCell->aCoord[ii]); + } + pNode->isDirty = 1; +} + +/* +** Remove the cell with index iCell from node pNode. +*/ +static void nodeDeleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell){ + u8 *pDst = &pNode->zData[4 + pRtree->nBytesPerCell*iCell]; + u8 *pSrc = &pDst[pRtree->nBytesPerCell]; + int nByte = (NCELL(pNode) - iCell - 1) * pRtree->nBytesPerCell; + memmove(pDst, pSrc, nByte); + writeInt16(&pNode->zData[2], NCELL(pNode)-1); + pNode->isDirty = 1; +} + +/* +** Insert the contents of cell pCell into node pNode. If the insert +** is successful, return SQLITE_OK. +** +** If there is not enough free space in pNode, return SQLITE_FULL. +*/ +static int nodeInsertCell( + Rtree *pRtree, /* The overall R-Tree */ + RtreeNode *pNode, /* Write new cell into this node */ + RtreeCell *pCell /* The cell to be inserted */ +){ + int nCell; /* Current number of cells in pNode */ + int nMaxCell; /* Maximum number of cells for pNode */ + + nMaxCell = (pRtree->iNodeSize-4)/pRtree->nBytesPerCell; + nCell = NCELL(pNode); + + assert( nCell<=nMaxCell ); + if( nCellzData[2], nCell+1); + pNode->isDirty = 1; + } + + return (nCell==nMaxCell); +} + +/* +** If the node is dirty, write it out to the database. +*/ +static int nodeWrite(Rtree *pRtree, RtreeNode *pNode){ + int rc = SQLITE_OK; + if( pNode->isDirty ){ + sqlite3_stmt *p = pRtree->pWriteNode; + if( pNode->iNode ){ + sqlite3_bind_int64(p, 1, pNode->iNode); + }else{ + sqlite3_bind_null(p, 1); + } + sqlite3_bind_blob(p, 2, pNode->zData, pRtree->iNodeSize, SQLITE_STATIC); + sqlite3_step(p); + pNode->isDirty = 0; + rc = sqlite3_reset(p); + if( pNode->iNode==0 && rc==SQLITE_OK ){ + pNode->iNode = sqlite3_last_insert_rowid(pRtree->db); + nodeHashInsert(pRtree, pNode); + } + } + return rc; +} + +/* +** Release a reference to a node. If the node is dirty and the reference +** count drops to zero, the node data is written to the database. +*/ +static int nodeRelease(Rtree *pRtree, RtreeNode *pNode){ + int rc = SQLITE_OK; + if( pNode ){ + assert( pNode->nRef>0 ); + pNode->nRef--; + if( pNode->nRef==0 ){ + if( pNode->iNode==1 ){ + pRtree->iDepth = -1; + } + if( pNode->pParent ){ + rc = nodeRelease(pRtree, pNode->pParent); + } + if( rc==SQLITE_OK ){ + rc = nodeWrite(pRtree, pNode); + } + nodeHashDelete(pRtree, pNode); + sqlite3_free(pNode); + } + } + return rc; +} + +/* +** Return the 64-bit integer value associated with cell iCell of +** node pNode. If pNode is a leaf node, this is a rowid. If it is +** an internal node, then the 64-bit integer is a child page number. +*/ +static i64 nodeGetRowid( + Rtree *pRtree, /* The overall R-Tree */ + RtreeNode *pNode, /* The node from which to extract the ID */ + int iCell /* The cell index from which to extract the ID */ +){ + assert( iCellzData[4 + pRtree->nBytesPerCell*iCell]); +} + +/* +** Return coordinate iCoord from cell iCell in node pNode. +*/ +static void nodeGetCoord( + Rtree *pRtree, /* The overall R-Tree */ + RtreeNode *pNode, /* The node from which to extract a coordinate */ + int iCell, /* The index of the cell within the node */ + int iCoord, /* Which coordinate to extract */ + RtreeCoord *pCoord /* OUT: Space to write result to */ +){ + readCoord(&pNode->zData[12 + pRtree->nBytesPerCell*iCell + 4*iCoord], pCoord); +} + +/* +** Deserialize cell iCell of node pNode. Populate the structure pointed +** to by pCell with the results. +*/ +static void nodeGetCell( + Rtree *pRtree, /* The overall R-Tree */ + RtreeNode *pNode, /* The node containing the cell to be read */ + int iCell, /* Index of the cell within the node */ + RtreeCell *pCell /* OUT: Write the cell contents here */ +){ + u8 *pData; + u8 *pEnd; + RtreeCoord *pCoord; + pCell->iRowid = nodeGetRowid(pRtree, pNode, iCell); + pData = pNode->zData + (12 + pRtree->nBytesPerCell*iCell); + pEnd = pData + pRtree->nDim*8; + pCoord = pCell->aCoord; + for(; pDatanBusy++; +} + +/* +** Decrement the r-tree reference count. When the reference count reaches +** zero the structure is deleted. +*/ +static void rtreeRelease(Rtree *pRtree){ + pRtree->nBusy--; + if( pRtree->nBusy==0 ){ + sqlite3_finalize(pRtree->pReadNode); + sqlite3_finalize(pRtree->pWriteNode); + sqlite3_finalize(pRtree->pDeleteNode); + sqlite3_finalize(pRtree->pReadRowid); + sqlite3_finalize(pRtree->pWriteRowid); + sqlite3_finalize(pRtree->pDeleteRowid); + sqlite3_finalize(pRtree->pReadParent); + sqlite3_finalize(pRtree->pWriteParent); + sqlite3_finalize(pRtree->pDeleteParent); + sqlite3_free(pRtree); + } +} + +/* +** Rtree virtual table module xDisconnect method. +*/ +static int rtreeDisconnect(sqlite3_vtab *pVtab){ + rtreeRelease((Rtree *)pVtab); + return SQLITE_OK; +} + +/* +** Rtree virtual table module xDestroy method. +*/ +static int rtreeDestroy(sqlite3_vtab *pVtab){ + Rtree *pRtree = (Rtree *)pVtab; + int rc; + char *zCreate = sqlite3_mprintf( + "DROP TABLE '%q'.'%q_node';" + "DROP TABLE '%q'.'%q_rowid';" + "DROP TABLE '%q'.'%q_parent';", + pRtree->zDb, pRtree->zName, + pRtree->zDb, pRtree->zName, + pRtree->zDb, pRtree->zName + ); + if( !zCreate ){ + rc = SQLITE_NOMEM; + }else{ + rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0); + sqlite3_free(zCreate); + } + if( rc==SQLITE_OK ){ + rtreeRelease(pRtree); + } + + return rc; +} + +/* +** Rtree virtual table module xOpen method. +*/ +static int rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ + int rc = SQLITE_NOMEM; + RtreeCursor *pCsr; + + pCsr = (RtreeCursor *)sqlite3_malloc(sizeof(RtreeCursor)); + if( pCsr ){ + memset(pCsr, 0, sizeof(RtreeCursor)); + pCsr->base.pVtab = pVTab; + rc = SQLITE_OK; + } + *ppCursor = (sqlite3_vtab_cursor *)pCsr; + + return rc; +} + + +/* +** Free the RtreeCursor.aConstraint[] array and its contents. +*/ +static void freeCursorConstraints(RtreeCursor *pCsr){ + if( pCsr->aConstraint ){ + int i; /* Used to iterate through constraint array */ + for(i=0; inConstraint; i++){ + sqlite3_rtree_query_info *pInfo = pCsr->aConstraint[i].pInfo; + if( pInfo ){ + if( pInfo->xDelUser ) pInfo->xDelUser(pInfo->pUser); + sqlite3_free(pInfo); + } + } + sqlite3_free(pCsr->aConstraint); + pCsr->aConstraint = 0; + } +} + +/* +** Rtree virtual table module xClose method. +*/ +static int rtreeClose(sqlite3_vtab_cursor *cur){ + Rtree *pRtree = (Rtree *)(cur->pVtab); + int ii; + RtreeCursor *pCsr = (RtreeCursor *)cur; + freeCursorConstraints(pCsr); + sqlite3_free(pCsr->aPoint); + for(ii=0; iiaNode[ii]); + sqlite3_free(pCsr); + return SQLITE_OK; +} + +/* +** Rtree virtual table module xEof method. +** +** Return non-zero if the cursor does not currently point to a valid +** record (i.e if the scan has finished), or zero otherwise. +*/ +static int rtreeEof(sqlite3_vtab_cursor *cur){ + RtreeCursor *pCsr = (RtreeCursor *)cur; + return pCsr->atEOF; +} + +/* +** Convert raw bits from the on-disk RTree record into a coordinate value. +** The on-disk format is big-endian and needs to be converted for little- +** endian platforms. The on-disk record stores integer coordinates if +** eInt is true and it stores 32-bit floating point records if eInt is +** false. a[] is the four bytes of the on-disk record to be decoded. +** Store the results in "r". +** +** There are three versions of this macro, one each for little-endian and +** big-endian processors and a third generic implementation. The endian- +** specific implementations are much faster and are preferred if the +** processor endianness is known at compile-time. The SQLITE_BYTEORDER +** macro is part of sqliteInt.h and hence the endian-specific +** implementation will only be used if this module is compiled as part +** of the amalgamation. +*/ +#if defined(SQLITE_BYTEORDER) && SQLITE_BYTEORDER==1234 +#define RTREE_DECODE_COORD(eInt, a, r) { \ + RtreeCoord c; /* Coordinate decoded */ \ + memcpy(&c.u,a,4); \ + c.u = ((c.u>>24)&0xff)|((c.u>>8)&0xff00)| \ + ((c.u&0xff)<<24)|((c.u&0xff00)<<8); \ + r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ +} +#elif defined(SQLITE_BYTEORDER) && SQLITE_BYTEORDER==4321 +#define RTREE_DECODE_COORD(eInt, a, r) { \ + RtreeCoord c; /* Coordinate decoded */ \ + memcpy(&c.u,a,4); \ + r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ +} +#else +#define RTREE_DECODE_COORD(eInt, a, r) { \ + RtreeCoord c; /* Coordinate decoded */ \ + c.u = ((u32)a[0]<<24) + ((u32)a[1]<<16) \ + +((u32)a[2]<<8) + a[3]; \ + r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ +} +#endif + +/* +** Check the RTree node or entry given by pCellData and p against the MATCH +** constraint pConstraint. +*/ +static int rtreeCallbackConstraint( + RtreeConstraint *pConstraint, /* The constraint to test */ + int eInt, /* True if RTree holding integer coordinates */ + u8 *pCellData, /* Raw cell content */ + RtreeSearchPoint *pSearch, /* Container of this cell */ + sqlite3_rtree_dbl *prScore, /* OUT: score for the cell */ + int *peWithin /* OUT: visibility of the cell */ +){ + int i; /* Loop counter */ + sqlite3_rtree_query_info *pInfo = pConstraint->pInfo; /* Callback info */ + int nCoord = pInfo->nCoord; /* No. of coordinates */ + int rc; /* Callback return code */ + sqlite3_rtree_dbl aCoord[RTREE_MAX_DIMENSIONS*2]; /* Decoded coordinates */ + + assert( pConstraint->op==RTREE_MATCH || pConstraint->op==RTREE_QUERY ); + assert( nCoord==2 || nCoord==4 || nCoord==6 || nCoord==8 || nCoord==10 ); + + if( pConstraint->op==RTREE_QUERY && pSearch->iLevel==1 ){ + pInfo->iRowid = readInt64(pCellData); + } + pCellData += 8; + for(i=0; iop==RTREE_MATCH ){ + rc = pConstraint->u.xGeom((sqlite3_rtree_geometry*)pInfo, + nCoord, aCoord, &i); + if( i==0 ) *peWithin = NOT_WITHIN; + *prScore = RTREE_ZERO; + }else{ + pInfo->aCoord = aCoord; + pInfo->iLevel = pSearch->iLevel - 1; + pInfo->rScore = pInfo->rParentScore = pSearch->rScore; + pInfo->eWithin = pInfo->eParentWithin = pSearch->eWithin; + rc = pConstraint->u.xQueryFunc(pInfo); + if( pInfo->eWithin<*peWithin ) *peWithin = pInfo->eWithin; + if( pInfo->rScore<*prScore || *prScorerScore; + } + } + return rc; +} + +/* +** Check the internal RTree node given by pCellData against constraint p. +** If this constraint cannot be satisfied by any child within the node, +** set *peWithin to NOT_WITHIN. +*/ +static void rtreeNonleafConstraint( + RtreeConstraint *p, /* The constraint to test */ + int eInt, /* True if RTree holds integer coordinates */ + u8 *pCellData, /* Raw cell content as appears on disk */ + int *peWithin /* Adjust downward, as appropriate */ +){ + sqlite3_rtree_dbl val; /* Coordinate value convert to a double */ + + /* p->iCoord might point to either a lower or upper bound coordinate + ** in a coordinate pair. But make pCellData point to the lower bound. + */ + pCellData += 8 + 4*(p->iCoord&0xfe); + + assert(p->op==RTREE_LE || p->op==RTREE_LT || p->op==RTREE_GE + || p->op==RTREE_GT || p->op==RTREE_EQ ); + switch( p->op ){ + case RTREE_LE: + case RTREE_LT: + case RTREE_EQ: + RTREE_DECODE_COORD(eInt, pCellData, val); + /* val now holds the lower bound of the coordinate pair */ + if( p->u.rValue>=val ) return; + if( p->op!=RTREE_EQ ) break; /* RTREE_LE and RTREE_LT end here */ + /* Fall through for the RTREE_EQ case */ + + default: /* RTREE_GT or RTREE_GE, or fallthrough of RTREE_EQ */ + pCellData += 4; + RTREE_DECODE_COORD(eInt, pCellData, val); + /* val now holds the upper bound of the coordinate pair */ + if( p->u.rValue<=val ) return; + } + *peWithin = NOT_WITHIN; +} + +/* +** Check the leaf RTree cell given by pCellData against constraint p. +** If this constraint is not satisfied, set *peWithin to NOT_WITHIN. +** If the constraint is satisfied, leave *peWithin unchanged. +** +** The constraint is of the form: xN op $val +** +** The op is given by p->op. The xN is p->iCoord-th coordinate in +** pCellData. $val is given by p->u.rValue. +*/ +static void rtreeLeafConstraint( + RtreeConstraint *p, /* The constraint to test */ + int eInt, /* True if RTree holds integer coordinates */ + u8 *pCellData, /* Raw cell content as appears on disk */ + int *peWithin /* Adjust downward, as appropriate */ +){ + RtreeDValue xN; /* Coordinate value converted to a double */ + + assert(p->op==RTREE_LE || p->op==RTREE_LT || p->op==RTREE_GE + || p->op==RTREE_GT || p->op==RTREE_EQ ); + pCellData += 8 + p->iCoord*4; + RTREE_DECODE_COORD(eInt, pCellData, xN); + switch( p->op ){ + case RTREE_LE: if( xN <= p->u.rValue ) return; break; + case RTREE_LT: if( xN < p->u.rValue ) return; break; + case RTREE_GE: if( xN >= p->u.rValue ) return; break; + case RTREE_GT: if( xN > p->u.rValue ) return; break; + default: if( xN == p->u.rValue ) return; break; + } + *peWithin = NOT_WITHIN; +} + +/* +** One of the cells in node pNode is guaranteed to have a 64-bit +** integer value equal to iRowid. Return the index of this cell. +*/ +static int nodeRowidIndex( + Rtree *pRtree, + RtreeNode *pNode, + i64 iRowid, + int *piIndex +){ + int ii; + int nCell = NCELL(pNode); + assert( nCell<200 ); + for(ii=0; iipParent; + if( pParent ){ + return nodeRowidIndex(pRtree, pParent, pNode->iNode, piIndex); + } + *piIndex = -1; + return SQLITE_OK; +} + +/* +** Compare two search points. Return negative, zero, or positive if the first +** is less than, equal to, or greater than the second. +** +** The rScore is the primary key. Smaller rScore values come first. +** If the rScore is a tie, then use iLevel as the tie breaker with smaller +** iLevel values coming first. In this way, if rScore is the same for all +** SearchPoints, then iLevel becomes the deciding factor and the result +** is a depth-first search, which is the desired default behavior. +*/ +static int rtreeSearchPointCompare( + const RtreeSearchPoint *pA, + const RtreeSearchPoint *pB +){ + if( pA->rScorerScore ) return -1; + if( pA->rScore>pB->rScore ) return +1; + if( pA->iLeveliLevel ) return -1; + if( pA->iLevel>pB->iLevel ) return +1; + return 0; +} + +/* +** Interchange to search points in a cursor. +*/ +static void rtreeSearchPointSwap(RtreeCursor *p, int i, int j){ + RtreeSearchPoint t = p->aPoint[i]; + assert( iaPoint[i] = p->aPoint[j]; + p->aPoint[j] = t; + i++; j++; + if( i=RTREE_CACHE_SZ ){ + nodeRelease(RTREE_OF_CURSOR(p), p->aNode[i]); + p->aNode[i] = 0; + }else{ + RtreeNode *pTemp = p->aNode[i]; + p->aNode[i] = p->aNode[j]; + p->aNode[j] = pTemp; + } + } +} + +/* +** Return the search point with the lowest current score. +*/ +static RtreeSearchPoint *rtreeSearchPointFirst(RtreeCursor *pCur){ + return pCur->bPoint ? &pCur->sPoint : pCur->nPoint ? pCur->aPoint : 0; +} + +/* +** Get the RtreeNode for the search point with the lowest score. +*/ +static RtreeNode *rtreeNodeOfFirstSearchPoint(RtreeCursor *pCur, int *pRC){ + sqlite3_int64 id; + int ii = 1 - pCur->bPoint; + assert( ii==0 || ii==1 ); + assert( pCur->bPoint || pCur->nPoint ); + if( pCur->aNode[ii]==0 ){ + assert( pRC!=0 ); + id = ii ? pCur->aPoint[0].id : pCur->sPoint.id; + *pRC = nodeAcquire(RTREE_OF_CURSOR(pCur), id, 0, &pCur->aNode[ii]); + } + return pCur->aNode[ii]; +} + +/* +** Push a new element onto the priority queue +*/ +static RtreeSearchPoint *rtreeEnqueue( + RtreeCursor *pCur, /* The cursor */ + RtreeDValue rScore, /* Score for the new search point */ + u8 iLevel /* Level for the new search point */ +){ + int i, j; + RtreeSearchPoint *pNew; + if( pCur->nPoint>=pCur->nPointAlloc ){ + int nNew = pCur->nPointAlloc*2 + 8; + pNew = sqlite3_realloc(pCur->aPoint, nNew*sizeof(pCur->aPoint[0])); + if( pNew==0 ) return 0; + pCur->aPoint = pNew; + pCur->nPointAlloc = nNew; + } + i = pCur->nPoint++; + pNew = pCur->aPoint + i; + pNew->rScore = rScore; + pNew->iLevel = iLevel; + assert( iLevel>=0 && iLevel<=RTREE_MAX_DEPTH ); + while( i>0 ){ + RtreeSearchPoint *pParent; + j = (i-1)/2; + pParent = pCur->aPoint + j; + if( rtreeSearchPointCompare(pNew, pParent)>=0 ) break; + rtreeSearchPointSwap(pCur, j, i); + i = j; + pNew = pParent; + } + return pNew; +} + +/* +** Allocate a new RtreeSearchPoint and return a pointer to it. Return +** NULL if malloc fails. +*/ +static RtreeSearchPoint *rtreeSearchPointNew( + RtreeCursor *pCur, /* The cursor */ + RtreeDValue rScore, /* Score for the new search point */ + u8 iLevel /* Level for the new search point */ +){ + RtreeSearchPoint *pNew, *pFirst; + pFirst = rtreeSearchPointFirst(pCur); + pCur->anQueue[iLevel]++; + if( pFirst==0 + || pFirst->rScore>rScore + || (pFirst->rScore==rScore && pFirst->iLevel>iLevel) + ){ + if( pCur->bPoint ){ + int ii; + pNew = rtreeEnqueue(pCur, rScore, iLevel); + if( pNew==0 ) return 0; + ii = (int)(pNew - pCur->aPoint) + 1; + if( iiaNode[ii]==0 ); + pCur->aNode[ii] = pCur->aNode[0]; + }else{ + nodeRelease(RTREE_OF_CURSOR(pCur), pCur->aNode[0]); + } + pCur->aNode[0] = 0; + *pNew = pCur->sPoint; + } + pCur->sPoint.rScore = rScore; + pCur->sPoint.iLevel = iLevel; + pCur->bPoint = 1; + return &pCur->sPoint; + }else{ + return rtreeEnqueue(pCur, rScore, iLevel); + } +} + +#if 0 +/* Tracing routines for the RtreeSearchPoint queue */ +static void tracePoint(RtreeSearchPoint *p, int idx, RtreeCursor *pCur){ + if( idx<0 ){ printf(" s"); }else{ printf("%2d", idx); } + printf(" %d.%05lld.%02d %g %d", + p->iLevel, p->id, p->iCell, p->rScore, p->eWithin + ); + idx++; + if( idxaNode[idx]); + }else{ + printf("\n"); + } +} +static void traceQueue(RtreeCursor *pCur, const char *zPrefix){ + int ii; + printf("=== %9s ", zPrefix); + if( pCur->bPoint ){ + tracePoint(&pCur->sPoint, -1, pCur); + } + for(ii=0; iinPoint; ii++){ + if( ii>0 || pCur->bPoint ) printf(" "); + tracePoint(&pCur->aPoint[ii], ii, pCur); + } +} +# define RTREE_QUEUE_TRACE(A,B) traceQueue(A,B) +#else +# define RTREE_QUEUE_TRACE(A,B) /* no-op */ +#endif + +/* Remove the search point with the lowest current score. +*/ +static void rtreeSearchPointPop(RtreeCursor *p){ + int i, j, k, n; + i = 1 - p->bPoint; + assert( i==0 || i==1 ); + if( p->aNode[i] ){ + nodeRelease(RTREE_OF_CURSOR(p), p->aNode[i]); + p->aNode[i] = 0; + } + if( p->bPoint ){ + p->anQueue[p->sPoint.iLevel]--; + p->bPoint = 0; + }else if( p->nPoint ){ + p->anQueue[p->aPoint[0].iLevel]--; + n = --p->nPoint; + p->aPoint[0] = p->aPoint[n]; + if( naNode[1] = p->aNode[n+1]; + p->aNode[n+1] = 0; + } + i = 0; + while( (j = i*2+1)aPoint[k], &p->aPoint[j])<0 ){ + if( rtreeSearchPointCompare(&p->aPoint[k], &p->aPoint[i])<0 ){ + rtreeSearchPointSwap(p, i, k); + i = k; + }else{ + break; + } + }else{ + if( rtreeSearchPointCompare(&p->aPoint[j], &p->aPoint[i])<0 ){ + rtreeSearchPointSwap(p, i, j); + i = j; + }else{ + break; + } + } + } + } +} + + +/* +** Continue the search on cursor pCur until the front of the queue +** contains an entry suitable for returning as a result-set row, +** or until the RtreeSearchPoint queue is empty, indicating that the +** query has completed. +*/ +static int rtreeStepToLeaf(RtreeCursor *pCur){ + RtreeSearchPoint *p; + Rtree *pRtree = RTREE_OF_CURSOR(pCur); + RtreeNode *pNode; + int eWithin; + int rc = SQLITE_OK; + int nCell; + int nConstraint = pCur->nConstraint; + int ii; + int eInt; + RtreeSearchPoint x; + + eInt = pRtree->eCoordType==RTREE_COORD_INT32; + while( (p = rtreeSearchPointFirst(pCur))!=0 && p->iLevel>0 ){ + pNode = rtreeNodeOfFirstSearchPoint(pCur, &rc); + if( rc ) return rc; + nCell = NCELL(pNode); + assert( nCell<200 ); + while( p->iCellzData + (4+pRtree->nBytesPerCell*p->iCell); + eWithin = FULLY_WITHIN; + for(ii=0; iiaConstraint + ii; + if( pConstraint->op>=RTREE_MATCH ){ + rc = rtreeCallbackConstraint(pConstraint, eInt, pCellData, p, + &rScore, &eWithin); + if( rc ) return rc; + }else if( p->iLevel==1 ){ + rtreeLeafConstraint(pConstraint, eInt, pCellData, &eWithin); + }else{ + rtreeNonleafConstraint(pConstraint, eInt, pCellData, &eWithin); + } + if( eWithin==NOT_WITHIN ) break; + } + p->iCell++; + if( eWithin==NOT_WITHIN ) continue; + x.iLevel = p->iLevel - 1; + if( x.iLevel ){ + x.id = readInt64(pCellData); + x.iCell = 0; + }else{ + x.id = p->id; + x.iCell = p->iCell - 1; + } + if( p->iCell>=nCell ){ + RTREE_QUEUE_TRACE(pCur, "POP-S:"); + rtreeSearchPointPop(pCur); + } + if( rScoreeWithin = eWithin; + p->id = x.id; + p->iCell = x.iCell; + RTREE_QUEUE_TRACE(pCur, "PUSH-S:"); + break; + } + if( p->iCell>=nCell ){ + RTREE_QUEUE_TRACE(pCur, "POP-Se:"); + rtreeSearchPointPop(pCur); + } + } + pCur->atEOF = p==0; + return SQLITE_OK; +} + +/* +** Rtree virtual table module xNext method. +*/ +static int rtreeNext(sqlite3_vtab_cursor *pVtabCursor){ + RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; + int rc = SQLITE_OK; + + /* Move to the next entry that matches the configured constraints. */ + RTREE_QUEUE_TRACE(pCsr, "POP-Nx:"); + rtreeSearchPointPop(pCsr); + rc = rtreeStepToLeaf(pCsr); + return rc; +} + +/* +** Rtree virtual table module xRowid method. +*/ +static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){ + RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; + RtreeSearchPoint *p = rtreeSearchPointFirst(pCsr); + int rc = SQLITE_OK; + RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); + if( rc==SQLITE_OK && p ){ + *pRowid = nodeGetRowid(RTREE_OF_CURSOR(pCsr), pNode, p->iCell); + } + return rc; +} + +/* +** Rtree virtual table module xColumn method. +*/ +static int rtreeColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){ + Rtree *pRtree = (Rtree *)cur->pVtab; + RtreeCursor *pCsr = (RtreeCursor *)cur; + RtreeSearchPoint *p = rtreeSearchPointFirst(pCsr); + RtreeCoord c; + int rc = SQLITE_OK; + RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); + + if( rc ) return rc; + if( p==0 ) return SQLITE_OK; + if( i==0 ){ + sqlite3_result_int64(ctx, nodeGetRowid(pRtree, pNode, p->iCell)); + }else{ + if( rc ) return rc; + nodeGetCoord(pRtree, pNode, p->iCell, i-1, &c); +#ifndef SQLITE_RTREE_INT_ONLY + if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ + sqlite3_result_double(ctx, c.f); + }else +#endif + { + assert( pRtree->eCoordType==RTREE_COORD_INT32 ); + sqlite3_result_int(ctx, c.i); + } + } + return SQLITE_OK; +} + +/* +** Use nodeAcquire() to obtain the leaf node containing the record with +** rowid iRowid. If successful, set *ppLeaf to point to the node and +** return SQLITE_OK. If there is no such record in the table, set +** *ppLeaf to 0 and return SQLITE_OK. If an error occurs, set *ppLeaf +** to zero and return an SQLite error code. +*/ +static int findLeafNode( + Rtree *pRtree, /* RTree to search */ + i64 iRowid, /* The rowid searching for */ + RtreeNode **ppLeaf, /* Write the node here */ + sqlite3_int64 *piNode /* Write the node-id here */ +){ + int rc; + *ppLeaf = 0; + sqlite3_bind_int64(pRtree->pReadRowid, 1, iRowid); + if( sqlite3_step(pRtree->pReadRowid)==SQLITE_ROW ){ + i64 iNode = sqlite3_column_int64(pRtree->pReadRowid, 0); + if( piNode ) *piNode = iNode; + rc = nodeAcquire(pRtree, iNode, 0, ppLeaf); + sqlite3_reset(pRtree->pReadRowid); + }else{ + rc = sqlite3_reset(pRtree->pReadRowid); + } + return rc; +} + +/* +** This function is called to configure the RtreeConstraint object passed +** as the second argument for a MATCH constraint. The value passed as the +** first argument to this function is the right-hand operand to the MATCH +** operator. +*/ +static int deserializeGeometry(sqlite3_value *pValue, RtreeConstraint *pCons){ + RtreeMatchArg *pBlob; /* BLOB returned by geometry function */ + sqlite3_rtree_query_info *pInfo; /* Callback information */ + int nBlob; /* Size of the geometry function blob */ + int nExpected; /* Expected size of the BLOB */ + + /* Check that value is actually a blob. */ + if( sqlite3_value_type(pValue)!=SQLITE_BLOB ) return SQLITE_ERROR; + + /* Check that the blob is roughly the right size. */ + nBlob = sqlite3_value_bytes(pValue); + if( nBlob<(int)sizeof(RtreeMatchArg) + || ((nBlob-sizeof(RtreeMatchArg))%sizeof(RtreeDValue))!=0 + ){ + return SQLITE_ERROR; + } + + pInfo = (sqlite3_rtree_query_info*)sqlite3_malloc( sizeof(*pInfo)+nBlob ); + if( !pInfo ) return SQLITE_NOMEM; + memset(pInfo, 0, sizeof(*pInfo)); + pBlob = (RtreeMatchArg*)&pInfo[1]; + + memcpy(pBlob, sqlite3_value_blob(pValue), nBlob); + nExpected = (int)(sizeof(RtreeMatchArg) + + (pBlob->nParam-1)*sizeof(RtreeDValue)); + if( pBlob->magic!=RTREE_GEOMETRY_MAGIC || nBlob!=nExpected ){ + sqlite3_free(pInfo); + return SQLITE_ERROR; + } + pInfo->pContext = pBlob->cb.pContext; + pInfo->nParam = pBlob->nParam; + pInfo->aParam = pBlob->aParam; + + if( pBlob->cb.xGeom ){ + pCons->u.xGeom = pBlob->cb.xGeom; + }else{ + pCons->op = RTREE_QUERY; + pCons->u.xQueryFunc = pBlob->cb.xQueryFunc; + } + pCons->pInfo = pInfo; + return SQLITE_OK; +} + +/* +** Rtree virtual table module xFilter method. +*/ +static int rtreeFilter( + sqlite3_vtab_cursor *pVtabCursor, + int idxNum, const char *idxStr, + int argc, sqlite3_value **argv +){ + Rtree *pRtree = (Rtree *)pVtabCursor->pVtab; + RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; + RtreeNode *pRoot = 0; + int ii; + int rc = SQLITE_OK; + int iCell = 0; + + rtreeReference(pRtree); + + freeCursorConstraints(pCsr); + pCsr->iStrategy = idxNum; + + if( idxNum==1 ){ + /* Special case - lookup by rowid. */ + RtreeNode *pLeaf; /* Leaf on which the required cell resides */ + RtreeSearchPoint *p; /* Search point for the the leaf */ + i64 iRowid = sqlite3_value_int64(argv[0]); + i64 iNode = 0; + rc = findLeafNode(pRtree, iRowid, &pLeaf, &iNode); + if( rc==SQLITE_OK && pLeaf!=0 ){ + p = rtreeSearchPointNew(pCsr, RTREE_ZERO, 0); + assert( p!=0 ); /* Always returns pCsr->sPoint */ + pCsr->aNode[0] = pLeaf; + p->id = iNode; + p->eWithin = PARTLY_WITHIN; + rc = nodeRowidIndex(pRtree, pLeaf, iRowid, &iCell); + p->iCell = iCell; + RTREE_QUEUE_TRACE(pCsr, "PUSH-F1:"); + }else{ + pCsr->atEOF = 1; + } + }else{ + /* Normal case - r-tree scan. Set up the RtreeCursor.aConstraint array + ** with the configured constraints. + */ + rc = nodeAcquire(pRtree, 1, 0, &pRoot); + if( rc==SQLITE_OK && argc>0 ){ + pCsr->aConstraint = sqlite3_malloc(sizeof(RtreeConstraint)*argc); + pCsr->nConstraint = argc; + if( !pCsr->aConstraint ){ + rc = SQLITE_NOMEM; + }else{ + memset(pCsr->aConstraint, 0, sizeof(RtreeConstraint)*argc); + memset(pCsr->anQueue, 0, sizeof(u32)*(pRtree->iDepth + 1)); + assert( (idxStr==0 && argc==0) + || (idxStr && (int)strlen(idxStr)==argc*2) ); + for(ii=0; iiaConstraint[ii]; + p->op = idxStr[ii*2]; + p->iCoord = idxStr[ii*2+1]-'0'; + if( p->op>=RTREE_MATCH ){ + /* A MATCH operator. The right-hand-side must be a blob that + ** can be cast into an RtreeMatchArg object. One created using + ** an sqlite3_rtree_geometry_callback() SQL user function. + */ + rc = deserializeGeometry(argv[ii], p); + if( rc!=SQLITE_OK ){ + break; + } + p->pInfo->nCoord = pRtree->nDim*2; + p->pInfo->anQueue = pCsr->anQueue; + p->pInfo->mxLevel = pRtree->iDepth + 1; + }else{ +#ifdef SQLITE_RTREE_INT_ONLY + p->u.rValue = sqlite3_value_int64(argv[ii]); +#else + p->u.rValue = sqlite3_value_double(argv[ii]); +#endif + } + } + } + } + if( rc==SQLITE_OK ){ + RtreeSearchPoint *pNew; + pNew = rtreeSearchPointNew(pCsr, RTREE_ZERO, pRtree->iDepth+1); + if( pNew==0 ) return SQLITE_NOMEM; + pNew->id = 1; + pNew->iCell = 0; + pNew->eWithin = PARTLY_WITHIN; + assert( pCsr->bPoint==1 ); + pCsr->aNode[0] = pRoot; + pRoot = 0; + RTREE_QUEUE_TRACE(pCsr, "PUSH-Fm:"); + rc = rtreeStepToLeaf(pCsr); + } + } + + nodeRelease(pRtree, pRoot); + rtreeRelease(pRtree); + return rc; +} + +/* +** Set the pIdxInfo->estimatedRows variable to nRow. Unless this +** extension is currently being used by a version of SQLite too old to +** support estimatedRows. In that case this function is a no-op. +*/ +static void setEstimatedRows(sqlite3_index_info *pIdxInfo, i64 nRow){ +#if SQLITE_VERSION_NUMBER>=3008002 + if( sqlite3_libversion_number()>=3008002 ){ + pIdxInfo->estimatedRows = nRow; + } +#endif +} + +/* +** Rtree virtual table module xBestIndex method. There are three +** table scan strategies to choose from (in order from most to +** least desirable): +** +** idxNum idxStr Strategy +** ------------------------------------------------ +** 1 Unused Direct lookup by rowid. +** 2 See below R-tree query or full-table scan. +** ------------------------------------------------ +** +** If strategy 1 is used, then idxStr is not meaningful. If strategy +** 2 is used, idxStr is formatted to contain 2 bytes for each +** constraint used. The first two bytes of idxStr correspond to +** the constraint in sqlite3_index_info.aConstraintUsage[] with +** (argvIndex==1) etc. +** +** The first of each pair of bytes in idxStr identifies the constraint +** operator as follows: +** +** Operator Byte Value +** ---------------------- +** = 0x41 ('A') +** <= 0x42 ('B') +** < 0x43 ('C') +** >= 0x44 ('D') +** > 0x45 ('E') +** MATCH 0x46 ('F') +** ---------------------- +** +** The second of each pair of bytes identifies the coordinate column +** to which the constraint applies. The leftmost coordinate column +** is 'a', the second from the left 'b' etc. +*/ +static int rtreeBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){ + Rtree *pRtree = (Rtree*)tab; + int rc = SQLITE_OK; + int ii; + i64 nRow; /* Estimated rows returned by this scan */ + + int iIdx = 0; + char zIdxStr[RTREE_MAX_DIMENSIONS*8+1]; + memset(zIdxStr, 0, sizeof(zIdxStr)); + + assert( pIdxInfo->idxStr==0 ); + for(ii=0; iinConstraint && iIdx<(int)(sizeof(zIdxStr)-1); ii++){ + struct sqlite3_index_constraint *p = &pIdxInfo->aConstraint[ii]; + + if( p->usable && p->iColumn==0 && p->op==SQLITE_INDEX_CONSTRAINT_EQ ){ + /* We have an equality constraint on the rowid. Use strategy 1. */ + int jj; + for(jj=0; jjaConstraintUsage[jj].argvIndex = 0; + pIdxInfo->aConstraintUsage[jj].omit = 0; + } + pIdxInfo->idxNum = 1; + pIdxInfo->aConstraintUsage[ii].argvIndex = 1; + pIdxInfo->aConstraintUsage[jj].omit = 1; + + /* This strategy involves a two rowid lookups on an B-Tree structures + ** and then a linear search of an R-Tree node. This should be + ** considered almost as quick as a direct rowid lookup (for which + ** sqlite uses an internal cost of 0.0). It is expected to return + ** a single row. + */ + pIdxInfo->estimatedCost = 30.0; + setEstimatedRows(pIdxInfo, 1); + return SQLITE_OK; + } + + if( p->usable && (p->iColumn>0 || p->op==SQLITE_INDEX_CONSTRAINT_MATCH) ){ + u8 op; + switch( p->op ){ + case SQLITE_INDEX_CONSTRAINT_EQ: op = RTREE_EQ; break; + case SQLITE_INDEX_CONSTRAINT_GT: op = RTREE_GT; break; + case SQLITE_INDEX_CONSTRAINT_LE: op = RTREE_LE; break; + case SQLITE_INDEX_CONSTRAINT_LT: op = RTREE_LT; break; + case SQLITE_INDEX_CONSTRAINT_GE: op = RTREE_GE; break; + default: + assert( p->op==SQLITE_INDEX_CONSTRAINT_MATCH ); + op = RTREE_MATCH; + break; + } + zIdxStr[iIdx++] = op; + zIdxStr[iIdx++] = p->iColumn - 1 + '0'; + pIdxInfo->aConstraintUsage[ii].argvIndex = (iIdx/2); + pIdxInfo->aConstraintUsage[ii].omit = 1; + } + } + + pIdxInfo->idxNum = 2; + pIdxInfo->needToFreeIdxStr = 1; + if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){ + return SQLITE_NOMEM; + } + + nRow = pRtree->nRowEst / (iIdx + 1); + pIdxInfo->estimatedCost = (double)6.0 * (double)nRow; + setEstimatedRows(pIdxInfo, nRow); + + return rc; +} + +/* +** Return the N-dimensional volumn of the cell stored in *p. +*/ +static RtreeDValue cellArea(Rtree *pRtree, RtreeCell *p){ + RtreeDValue area = (RtreeDValue)1; + int ii; + for(ii=0; ii<(pRtree->nDim*2); ii+=2){ + area = (area * (DCOORD(p->aCoord[ii+1]) - DCOORD(p->aCoord[ii]))); + } + return area; +} + +/* +** Return the margin length of cell p. The margin length is the sum +** of the objects size in each dimension. +*/ +static RtreeDValue cellMargin(Rtree *pRtree, RtreeCell *p){ + RtreeDValue margin = (RtreeDValue)0; + int ii; + for(ii=0; ii<(pRtree->nDim*2); ii+=2){ + margin += (DCOORD(p->aCoord[ii+1]) - DCOORD(p->aCoord[ii])); + } + return margin; +} + +/* +** Store the union of cells p1 and p2 in p1. +*/ +static void cellUnion(Rtree *pRtree, RtreeCell *p1, RtreeCell *p2){ + int ii; + if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ + for(ii=0; ii<(pRtree->nDim*2); ii+=2){ + p1->aCoord[ii].f = MIN(p1->aCoord[ii].f, p2->aCoord[ii].f); + p1->aCoord[ii+1].f = MAX(p1->aCoord[ii+1].f, p2->aCoord[ii+1].f); + } + }else{ + for(ii=0; ii<(pRtree->nDim*2); ii+=2){ + p1->aCoord[ii].i = MIN(p1->aCoord[ii].i, p2->aCoord[ii].i); + p1->aCoord[ii+1].i = MAX(p1->aCoord[ii+1].i, p2->aCoord[ii+1].i); + } + } +} + +/* +** Return true if the area covered by p2 is a subset of the area covered +** by p1. False otherwise. +*/ +static int cellContains(Rtree *pRtree, RtreeCell *p1, RtreeCell *p2){ + int ii; + int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); + for(ii=0; ii<(pRtree->nDim*2); ii+=2){ + RtreeCoord *a1 = &p1->aCoord[ii]; + RtreeCoord *a2 = &p2->aCoord[ii]; + if( (!isInt && (a2[0].fa1[1].f)) + || ( isInt && (a2[0].ia1[1].i)) + ){ + return 0; + } + } + return 1; +} + +/* +** Return the amount cell p would grow by if it were unioned with pCell. +*/ +static RtreeDValue cellGrowth(Rtree *pRtree, RtreeCell *p, RtreeCell *pCell){ + RtreeDValue area; + RtreeCell cell; + memcpy(&cell, p, sizeof(RtreeCell)); + area = cellArea(pRtree, &cell); + cellUnion(pRtree, &cell, pCell); + return (cellArea(pRtree, &cell)-area); +} + +static RtreeDValue cellOverlap( + Rtree *pRtree, + RtreeCell *p, + RtreeCell *aCell, + int nCell +){ + int ii; + RtreeDValue overlap = RTREE_ZERO; + for(ii=0; iinDim*2); jj+=2){ + RtreeDValue x1, x2; + x1 = MAX(DCOORD(p->aCoord[jj]), DCOORD(aCell[ii].aCoord[jj])); + x2 = MIN(DCOORD(p->aCoord[jj+1]), DCOORD(aCell[ii].aCoord[jj+1])); + if( x2iDepth-iHeight); ii++){ + int iCell; + sqlite3_int64 iBest = 0; + + RtreeDValue fMinGrowth = RTREE_ZERO; + RtreeDValue fMinArea = RTREE_ZERO; + + int nCell = NCELL(pNode); + RtreeCell cell; + RtreeNode *pChild; + + RtreeCell *aCell = 0; + + /* Select the child node which will be enlarged the least if pCell + ** is inserted into it. Resolve ties by choosing the entry with + ** the smallest area. + */ + for(iCell=0; iCellpParent ){ + RtreeNode *pParent = p->pParent; + RtreeCell cell; + int iCell; + + if( nodeParentIndex(pRtree, p, &iCell) ){ + return SQLITE_CORRUPT_VTAB; + } + + nodeGetCell(pRtree, pParent, iCell, &cell); + if( !cellContains(pRtree, &cell, pCell) ){ + cellUnion(pRtree, &cell, pCell); + nodeOverwriteCell(pRtree, pParent, &cell, iCell); + } + + p = pParent; + } + return SQLITE_OK; +} + +/* +** Write mapping (iRowid->iNode) to the _rowid table. +*/ +static int rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode){ + sqlite3_bind_int64(pRtree->pWriteRowid, 1, iRowid); + sqlite3_bind_int64(pRtree->pWriteRowid, 2, iNode); + sqlite3_step(pRtree->pWriteRowid); + return sqlite3_reset(pRtree->pWriteRowid); +} + +/* +** Write mapping (iNode->iPar) to the _parent table. +*/ +static int parentWrite(Rtree *pRtree, sqlite3_int64 iNode, sqlite3_int64 iPar){ + sqlite3_bind_int64(pRtree->pWriteParent, 1, iNode); + sqlite3_bind_int64(pRtree->pWriteParent, 2, iPar); + sqlite3_step(pRtree->pWriteParent); + return sqlite3_reset(pRtree->pWriteParent); +} + +static int rtreeInsertCell(Rtree *, RtreeNode *, RtreeCell *, int); + + +/* +** Arguments aIdx, aDistance and aSpare all point to arrays of size +** nIdx. The aIdx array contains the set of integers from 0 to +** (nIdx-1) in no particular order. This function sorts the values +** in aIdx according to the indexed values in aDistance. For +** example, assuming the inputs: +** +** aIdx = { 0, 1, 2, 3 } +** aDistance = { 5.0, 2.0, 7.0, 6.0 } +** +** this function sets the aIdx array to contain: +** +** aIdx = { 0, 1, 2, 3 } +** +** The aSpare array is used as temporary working space by the +** sorting algorithm. +*/ +static void SortByDistance( + int *aIdx, + int nIdx, + RtreeDValue *aDistance, + int *aSpare +){ + if( nIdx>1 ){ + int iLeft = 0; + int iRight = 0; + + int nLeft = nIdx/2; + int nRight = nIdx-nLeft; + int *aLeft = aIdx; + int *aRight = &aIdx[nLeft]; + + SortByDistance(aLeft, nLeft, aDistance, aSpare); + SortByDistance(aRight, nRight, aDistance, aSpare); + + memcpy(aSpare, aLeft, sizeof(int)*nLeft); + aLeft = aSpare; + + while( iLeft1 ){ + + int iLeft = 0; + int iRight = 0; + + int nLeft = nIdx/2; + int nRight = nIdx-nLeft; + int *aLeft = aIdx; + int *aRight = &aIdx[nLeft]; + + SortByDimension(pRtree, aLeft, nLeft, iDim, aCell, aSpare); + SortByDimension(pRtree, aRight, nRight, iDim, aCell, aSpare); + + memcpy(aSpare, aLeft, sizeof(int)*nLeft); + aLeft = aSpare; + while( iLeftnDim+1)*(sizeof(int*)+nCell*sizeof(int)); + + aaSorted = (int **)sqlite3_malloc(nByte); + if( !aaSorted ){ + return SQLITE_NOMEM; + } + + aSpare = &((int *)&aaSorted[pRtree->nDim])[pRtree->nDim*nCell]; + memset(aaSorted, 0, nByte); + for(ii=0; iinDim; ii++){ + int jj; + aaSorted[ii] = &((int *)&aaSorted[pRtree->nDim])[ii*nCell]; + for(jj=0; jjnDim; ii++){ + RtreeDValue margin = RTREE_ZERO; + RtreeDValue fBestOverlap = RTREE_ZERO; + RtreeDValue fBestArea = RTREE_ZERO; + int iBestLeft = 0; + int nLeft; + + for( + nLeft=RTREE_MINCELLS(pRtree); + nLeft<=(nCell-RTREE_MINCELLS(pRtree)); + nLeft++ + ){ + RtreeCell left; + RtreeCell right; + int kk; + RtreeDValue overlap; + RtreeDValue area; + + memcpy(&left, &aCell[aaSorted[ii][0]], sizeof(RtreeCell)); + memcpy(&right, &aCell[aaSorted[ii][nCell-1]], sizeof(RtreeCell)); + for(kk=1; kk<(nCell-1); kk++){ + if( kk0 ){ + RtreeNode *pChild = nodeHashLookup(pRtree, iRowid); + if( pChild ){ + nodeRelease(pRtree, pChild->pParent); + nodeReference(pNode); + pChild->pParent = pNode; + } + } + return xSetMapping(pRtree, iRowid, pNode->iNode); +} + +static int SplitNode( + Rtree *pRtree, + RtreeNode *pNode, + RtreeCell *pCell, + int iHeight +){ + int i; + int newCellIsRight = 0; + + int rc = SQLITE_OK; + int nCell = NCELL(pNode); + RtreeCell *aCell; + int *aiUsed; + + RtreeNode *pLeft = 0; + RtreeNode *pRight = 0; + + RtreeCell leftbbox; + RtreeCell rightbbox; + + /* Allocate an array and populate it with a copy of pCell and + ** all cells from node pLeft. Then zero the original node. + */ + aCell = sqlite3_malloc((sizeof(RtreeCell)+sizeof(int))*(nCell+1)); + if( !aCell ){ + rc = SQLITE_NOMEM; + goto splitnode_out; + } + aiUsed = (int *)&aCell[nCell+1]; + memset(aiUsed, 0, sizeof(int)*(nCell+1)); + for(i=0; iiNode==1 ){ + pRight = nodeNew(pRtree, pNode); + pLeft = nodeNew(pRtree, pNode); + pRtree->iDepth++; + pNode->isDirty = 1; + writeInt16(pNode->zData, pRtree->iDepth); + }else{ + pLeft = pNode; + pRight = nodeNew(pRtree, pLeft->pParent); + nodeReference(pLeft); + } + + if( !pLeft || !pRight ){ + rc = SQLITE_NOMEM; + goto splitnode_out; + } + + memset(pLeft->zData, 0, pRtree->iNodeSize); + memset(pRight->zData, 0, pRtree->iNodeSize); + + rc = splitNodeStartree(pRtree, aCell, nCell, pLeft, pRight, + &leftbbox, &rightbbox); + if( rc!=SQLITE_OK ){ + goto splitnode_out; + } + + /* Ensure both child nodes have node numbers assigned to them by calling + ** nodeWrite(). Node pRight always needs a node number, as it was created + ** by nodeNew() above. But node pLeft sometimes already has a node number. + ** In this case avoid the all to nodeWrite(). + */ + if( SQLITE_OK!=(rc = nodeWrite(pRtree, pRight)) + || (0==pLeft->iNode && SQLITE_OK!=(rc = nodeWrite(pRtree, pLeft))) + ){ + goto splitnode_out; + } + + rightbbox.iRowid = pRight->iNode; + leftbbox.iRowid = pLeft->iNode; + + if( pNode->iNode==1 ){ + rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1); + if( rc!=SQLITE_OK ){ + goto splitnode_out; + } + }else{ + RtreeNode *pParent = pLeft->pParent; + int iCell; + rc = nodeParentIndex(pRtree, pLeft, &iCell); + if( rc==SQLITE_OK ){ + nodeOverwriteCell(pRtree, pParent, &leftbbox, iCell); + rc = AdjustTree(pRtree, pParent, &leftbbox); + } + if( rc!=SQLITE_OK ){ + goto splitnode_out; + } + } + if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){ + goto splitnode_out; + } + + for(i=0; iiRowid ){ + newCellIsRight = 1; + } + if( rc!=SQLITE_OK ){ + goto splitnode_out; + } + } + if( pNode->iNode==1 ){ + for(i=0; iiRowid, pLeft, iHeight); + } + + if( rc==SQLITE_OK ){ + rc = nodeRelease(pRtree, pRight); + pRight = 0; + } + if( rc==SQLITE_OK ){ + rc = nodeRelease(pRtree, pLeft); + pLeft = 0; + } + +splitnode_out: + nodeRelease(pRtree, pRight); + nodeRelease(pRtree, pLeft); + sqlite3_free(aCell); + return rc; +} + +/* +** If node pLeaf is not the root of the r-tree and its pParent pointer is +** still NULL, load all ancestor nodes of pLeaf into memory and populate +** the pLeaf->pParent chain all the way up to the root node. +** +** This operation is required when a row is deleted (or updated - an update +** is implemented as a delete followed by an insert). SQLite provides the +** rowid of the row to delete, which can be used to find the leaf on which +** the entry resides (argument pLeaf). Once the leaf is located, this +** function is called to determine its ancestry. +*/ +static int fixLeafParent(Rtree *pRtree, RtreeNode *pLeaf){ + int rc = SQLITE_OK; + RtreeNode *pChild = pLeaf; + while( rc==SQLITE_OK && pChild->iNode!=1 && pChild->pParent==0 ){ + int rc2 = SQLITE_OK; /* sqlite3_reset() return code */ + sqlite3_bind_int64(pRtree->pReadParent, 1, pChild->iNode); + rc = sqlite3_step(pRtree->pReadParent); + if( rc==SQLITE_ROW ){ + RtreeNode *pTest; /* Used to test for reference loops */ + i64 iNode; /* Node number of parent node */ + + /* Before setting pChild->pParent, test that we are not creating a + ** loop of references (as we would if, say, pChild==pParent). We don't + ** want to do this as it leads to a memory leak when trying to delete + ** the referenced counted node structures. + */ + iNode = sqlite3_column_int64(pRtree->pReadParent, 0); + for(pTest=pLeaf; pTest && pTest->iNode!=iNode; pTest=pTest->pParent); + if( !pTest ){ + rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent); + } + } + rc = sqlite3_reset(pRtree->pReadParent); + if( rc==SQLITE_OK ) rc = rc2; + if( rc==SQLITE_OK && !pChild->pParent ) rc = SQLITE_CORRUPT_VTAB; + pChild = pChild->pParent; + } + return rc; +} + +static int deleteCell(Rtree *, RtreeNode *, int, int); + +static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){ + int rc; + int rc2; + RtreeNode *pParent = 0; + int iCell; + + assert( pNode->nRef==1 ); + + /* Remove the entry in the parent cell. */ + rc = nodeParentIndex(pRtree, pNode, &iCell); + if( rc==SQLITE_OK ){ + pParent = pNode->pParent; + pNode->pParent = 0; + rc = deleteCell(pRtree, pParent, iCell, iHeight+1); + } + rc2 = nodeRelease(pRtree, pParent); + if( rc==SQLITE_OK ){ + rc = rc2; + } + if( rc!=SQLITE_OK ){ + return rc; + } + + /* Remove the xxx_node entry. */ + sqlite3_bind_int64(pRtree->pDeleteNode, 1, pNode->iNode); + sqlite3_step(pRtree->pDeleteNode); + if( SQLITE_OK!=(rc = sqlite3_reset(pRtree->pDeleteNode)) ){ + return rc; + } + + /* Remove the xxx_parent entry. */ + sqlite3_bind_int64(pRtree->pDeleteParent, 1, pNode->iNode); + sqlite3_step(pRtree->pDeleteParent); + if( SQLITE_OK!=(rc = sqlite3_reset(pRtree->pDeleteParent)) ){ + return rc; + } + + /* Remove the node from the in-memory hash table and link it into + ** the Rtree.pDeleted list. Its contents will be re-inserted later on. + */ + nodeHashDelete(pRtree, pNode); + pNode->iNode = iHeight; + pNode->pNext = pRtree->pDeleted; + pNode->nRef++; + pRtree->pDeleted = pNode; + + return SQLITE_OK; +} + +static int fixBoundingBox(Rtree *pRtree, RtreeNode *pNode){ + RtreeNode *pParent = pNode->pParent; + int rc = SQLITE_OK; + if( pParent ){ + int ii; + int nCell = NCELL(pNode); + RtreeCell box; /* Bounding box for pNode */ + nodeGetCell(pRtree, pNode, 0, &box); + for(ii=1; iiiNode; + rc = nodeParentIndex(pRtree, pNode, &ii); + if( rc==SQLITE_OK ){ + nodeOverwriteCell(pRtree, pParent, &box, ii); + rc = fixBoundingBox(pRtree, pParent); + } + } + return rc; +} + +/* +** Delete the cell at index iCell of node pNode. After removing the +** cell, adjust the r-tree data structure if required. +*/ +static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){ + RtreeNode *pParent; + int rc; + + if( SQLITE_OK!=(rc = fixLeafParent(pRtree, pNode)) ){ + return rc; + } + + /* Remove the cell from the node. This call just moves bytes around + ** the in-memory node image, so it cannot fail. + */ + nodeDeleteCell(pRtree, pNode, iCell); + + /* If the node is not the tree root and now has less than the minimum + ** number of cells, remove it from the tree. Otherwise, update the + ** cell in the parent node so that it tightly contains the updated + ** node. + */ + pParent = pNode->pParent; + assert( pParent || pNode->iNode==1 ); + if( pParent ){ + if( NCELL(pNode)nDim; iDim++){ + aCenterCoord[iDim] += DCOORD(aCell[ii].aCoord[iDim*2]); + aCenterCoord[iDim] += DCOORD(aCell[ii].aCoord[iDim*2+1]); + } + } + for(iDim=0; iDimnDim; iDim++){ + aCenterCoord[iDim] = (aCenterCoord[iDim]/(nCell*(RtreeDValue)2)); + } + + for(ii=0; iinDim; iDim++){ + RtreeDValue coord = (DCOORD(aCell[ii].aCoord[iDim*2+1]) - + DCOORD(aCell[ii].aCoord[iDim*2])); + aDistance[ii] += (coord-aCenterCoord[iDim])*(coord-aCenterCoord[iDim]); + } + } + + SortByDistance(aOrder, nCell, aDistance, aSpare); + nodeZero(pRtree, pNode); + + for(ii=0; rc==SQLITE_OK && ii<(nCell-(RTREE_MINCELLS(pRtree)+1)); ii++){ + RtreeCell *p = &aCell[aOrder[ii]]; + nodeInsertCell(pRtree, pNode, p); + if( p->iRowid==pCell->iRowid ){ + if( iHeight==0 ){ + rc = rowidWrite(pRtree, p->iRowid, pNode->iNode); + }else{ + rc = parentWrite(pRtree, p->iRowid, pNode->iNode); + } + } + } + if( rc==SQLITE_OK ){ + rc = fixBoundingBox(pRtree, pNode); + } + for(; rc==SQLITE_OK && iiiNode currently contains + ** the height of the sub-tree headed by the cell. + */ + RtreeNode *pInsert; + RtreeCell *p = &aCell[aOrder[ii]]; + rc = ChooseLeaf(pRtree, p, iHeight, &pInsert); + if( rc==SQLITE_OK ){ + int rc2; + rc = rtreeInsertCell(pRtree, pInsert, p, iHeight); + rc2 = nodeRelease(pRtree, pInsert); + if( rc==SQLITE_OK ){ + rc = rc2; + } + } + } + + sqlite3_free(aCell); + return rc; +} + +/* +** Insert cell pCell into node pNode. Node pNode is the head of a +** subtree iHeight high (leaf nodes have iHeight==0). +*/ +static int rtreeInsertCell( + Rtree *pRtree, + RtreeNode *pNode, + RtreeCell *pCell, + int iHeight +){ + int rc = SQLITE_OK; + if( iHeight>0 ){ + RtreeNode *pChild = nodeHashLookup(pRtree, pCell->iRowid); + if( pChild ){ + nodeRelease(pRtree, pChild->pParent); + nodeReference(pNode); + pChild->pParent = pNode; + } + } + if( nodeInsertCell(pRtree, pNode, pCell) ){ + if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){ + rc = SplitNode(pRtree, pNode, pCell, iHeight); + }else{ + pRtree->iReinsertHeight = iHeight; + rc = Reinsert(pRtree, pNode, pCell, iHeight); + } + }else{ + rc = AdjustTree(pRtree, pNode, pCell); + if( rc==SQLITE_OK ){ + if( iHeight==0 ){ + rc = rowidWrite(pRtree, pCell->iRowid, pNode->iNode); + }else{ + rc = parentWrite(pRtree, pCell->iRowid, pNode->iNode); + } + } + } + return rc; +} + +static int reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode){ + int ii; + int rc = SQLITE_OK; + int nCell = NCELL(pNode); + + for(ii=0; rc==SQLITE_OK && iiiNode currently contains + ** the height of the sub-tree headed by the cell. + */ + rc = ChooseLeaf(pRtree, &cell, (int)pNode->iNode, &pInsert); + if( rc==SQLITE_OK ){ + int rc2; + rc = rtreeInsertCell(pRtree, pInsert, &cell, (int)pNode->iNode); + rc2 = nodeRelease(pRtree, pInsert); + if( rc==SQLITE_OK ){ + rc = rc2; + } + } + } + return rc; +} + +/* +** Select a currently unused rowid for a new r-tree record. +*/ +static int newRowid(Rtree *pRtree, i64 *piRowid){ + int rc; + sqlite3_bind_null(pRtree->pWriteRowid, 1); + sqlite3_bind_null(pRtree->pWriteRowid, 2); + sqlite3_step(pRtree->pWriteRowid); + rc = sqlite3_reset(pRtree->pWriteRowid); + *piRowid = sqlite3_last_insert_rowid(pRtree->db); + return rc; +} + +/* +** Remove the entry with rowid=iDelete from the r-tree structure. +*/ +static int rtreeDeleteRowid(Rtree *pRtree, sqlite3_int64 iDelete){ + int rc; /* Return code */ + RtreeNode *pLeaf = 0; /* Leaf node containing record iDelete */ + int iCell; /* Index of iDelete cell in pLeaf */ + RtreeNode *pRoot; /* Root node of rtree structure */ + + + /* Obtain a reference to the root node to initialize Rtree.iDepth */ + rc = nodeAcquire(pRtree, 1, 0, &pRoot); + + /* Obtain a reference to the leaf node that contains the entry + ** about to be deleted. + */ + if( rc==SQLITE_OK ){ + rc = findLeafNode(pRtree, iDelete, &pLeaf, 0); + } + + /* Delete the cell in question from the leaf node. */ + if( rc==SQLITE_OK ){ + int rc2; + rc = nodeRowidIndex(pRtree, pLeaf, iDelete, &iCell); + if( rc==SQLITE_OK ){ + rc = deleteCell(pRtree, pLeaf, iCell, 0); + } + rc2 = nodeRelease(pRtree, pLeaf); + if( rc==SQLITE_OK ){ + rc = rc2; + } + } + + /* Delete the corresponding entry in the _rowid table. */ + if( rc==SQLITE_OK ){ + sqlite3_bind_int64(pRtree->pDeleteRowid, 1, iDelete); + sqlite3_step(pRtree->pDeleteRowid); + rc = sqlite3_reset(pRtree->pDeleteRowid); + } + + /* Check if the root node now has exactly one child. If so, remove + ** it, schedule the contents of the child for reinsertion and + ** reduce the tree height by one. + ** + ** This is equivalent to copying the contents of the child into + ** the root node (the operation that Gutman's paper says to perform + ** in this scenario). + */ + if( rc==SQLITE_OK && pRtree->iDepth>0 && NCELL(pRoot)==1 ){ + int rc2; + RtreeNode *pChild; + i64 iChild = nodeGetRowid(pRtree, pRoot, 0); + rc = nodeAcquire(pRtree, iChild, pRoot, &pChild); + if( rc==SQLITE_OK ){ + rc = removeNode(pRtree, pChild, pRtree->iDepth-1); + } + rc2 = nodeRelease(pRtree, pChild); + if( rc==SQLITE_OK ) rc = rc2; + if( rc==SQLITE_OK ){ + pRtree->iDepth--; + writeInt16(pRoot->zData, pRtree->iDepth); + pRoot->isDirty = 1; + } + } + + /* Re-insert the contents of any underfull nodes removed from the tree. */ + for(pLeaf=pRtree->pDeleted; pLeaf; pLeaf=pRtree->pDeleted){ + if( rc==SQLITE_OK ){ + rc = reinsertNodeContent(pRtree, pLeaf); + } + pRtree->pDeleted = pLeaf->pNext; + sqlite3_free(pLeaf); + } + + /* Release the reference to the root node. */ + if( rc==SQLITE_OK ){ + rc = nodeRelease(pRtree, pRoot); + }else{ + nodeRelease(pRtree, pRoot); + } + + return rc; +} + +/* +** Rounding constants for float->double conversion. +*/ +#define RNDTOWARDS (1.0 - 1.0/8388608.0) /* Round towards zero */ +#define RNDAWAY (1.0 + 1.0/8388608.0) /* Round away from zero */ + +#if !defined(SQLITE_RTREE_INT_ONLY) +/* +** Convert an sqlite3_value into an RtreeValue (presumably a float) +** while taking care to round toward negative or positive, respectively. +*/ +static RtreeValue rtreeValueDown(sqlite3_value *v){ + double d = sqlite3_value_double(v); + float f = (float)d; + if( f>d ){ + f = (float)(d*(d<0 ? RNDAWAY : RNDTOWARDS)); + } + return f; +} +static RtreeValue rtreeValueUp(sqlite3_value *v){ + double d = sqlite3_value_double(v); + float f = (float)d; + if( f1 */ + int bHaveRowid = 0; /* Set to 1 after new rowid is determined */ + + rtreeReference(pRtree); + assert(nData>=1); + + /* Constraint handling. A write operation on an r-tree table may return + ** SQLITE_CONSTRAINT for two reasons: + ** + ** 1. A duplicate rowid value, or + ** 2. The supplied data violates the "x2>=x1" constraint. + ** + ** In the first case, if the conflict-handling mode is REPLACE, then + ** the conflicting row can be removed before proceeding. In the second + ** case, SQLITE_CONSTRAINT must be returned regardless of the + ** conflict-handling mode specified by the user. + */ + if( nData>1 ){ + int ii; + + /* Populate the cell.aCoord[] array. The first coordinate is azData[3]. */ + assert( nData==(pRtree->nDim*2 + 3) ); +#ifndef SQLITE_RTREE_INT_ONLY + if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ + for(ii=0; ii<(pRtree->nDim*2); ii+=2){ + cell.aCoord[ii].f = rtreeValueDown(azData[ii+3]); + cell.aCoord[ii+1].f = rtreeValueUp(azData[ii+4]); + if( cell.aCoord[ii].f>cell.aCoord[ii+1].f ){ + rc = SQLITE_CONSTRAINT; + goto constraint; + } + } + }else +#endif + { + for(ii=0; ii<(pRtree->nDim*2); ii+=2){ + cell.aCoord[ii].i = sqlite3_value_int(azData[ii+3]); + cell.aCoord[ii+1].i = sqlite3_value_int(azData[ii+4]); + if( cell.aCoord[ii].i>cell.aCoord[ii+1].i ){ + rc = SQLITE_CONSTRAINT; + goto constraint; + } + } + } + + /* If a rowid value was supplied, check if it is already present in + ** the table. If so, the constraint has failed. */ + if( sqlite3_value_type(azData[2])!=SQLITE_NULL ){ + cell.iRowid = sqlite3_value_int64(azData[2]); + if( sqlite3_value_type(azData[0])==SQLITE_NULL + || sqlite3_value_int64(azData[0])!=cell.iRowid + ){ + int steprc; + sqlite3_bind_int64(pRtree->pReadRowid, 1, cell.iRowid); + steprc = sqlite3_step(pRtree->pReadRowid); + rc = sqlite3_reset(pRtree->pReadRowid); + if( SQLITE_ROW==steprc ){ + if( sqlite3_vtab_on_conflict(pRtree->db)==SQLITE_REPLACE ){ + rc = rtreeDeleteRowid(pRtree, cell.iRowid); + }else{ + rc = SQLITE_CONSTRAINT; + goto constraint; + } + } + } + bHaveRowid = 1; + } + } + + /* If azData[0] is not an SQL NULL value, it is the rowid of a + ** record to delete from the r-tree table. The following block does + ** just that. + */ + if( sqlite3_value_type(azData[0])!=SQLITE_NULL ){ + rc = rtreeDeleteRowid(pRtree, sqlite3_value_int64(azData[0])); + } + + /* If the azData[] array contains more than one element, elements + ** (azData[2]..azData[argc-1]) contain a new record to insert into + ** the r-tree structure. + */ + if( rc==SQLITE_OK && nData>1 ){ + /* Insert the new record into the r-tree */ + RtreeNode *pLeaf = 0; + + /* Figure out the rowid of the new row. */ + if( bHaveRowid==0 ){ + rc = newRowid(pRtree, &cell.iRowid); + } + *pRowid = cell.iRowid; + + if( rc==SQLITE_OK ){ + rc = ChooseLeaf(pRtree, &cell, 0, &pLeaf); + } + if( rc==SQLITE_OK ){ + int rc2; + pRtree->iReinsertHeight = -1; + rc = rtreeInsertCell(pRtree, pLeaf, &cell, 0); + rc2 = nodeRelease(pRtree, pLeaf); + if( rc==SQLITE_OK ){ + rc = rc2; + } + } + } + +constraint: + rtreeRelease(pRtree); + return rc; +} + +/* +** The xRename method for rtree module virtual tables. +*/ +static int rtreeRename(sqlite3_vtab *pVtab, const char *zNewName){ + Rtree *pRtree = (Rtree *)pVtab; + int rc = SQLITE_NOMEM; + char *zSql = sqlite3_mprintf( + "ALTER TABLE %Q.'%q_node' RENAME TO \"%w_node\";" + "ALTER TABLE %Q.'%q_parent' RENAME TO \"%w_parent\";" + "ALTER TABLE %Q.'%q_rowid' RENAME TO \"%w_rowid\";" + , pRtree->zDb, pRtree->zName, zNewName + , pRtree->zDb, pRtree->zName, zNewName + , pRtree->zDb, pRtree->zName, zNewName + ); + if( zSql ){ + rc = sqlite3_exec(pRtree->db, zSql, 0, 0, 0); + sqlite3_free(zSql); + } + return rc; +} + +/* +** This function populates the pRtree->nRowEst variable with an estimate +** of the number of rows in the virtual table. If possible, this is based +** on sqlite_stat1 data. Otherwise, use RTREE_DEFAULT_ROWEST. +*/ +static int rtreeQueryStat1(sqlite3 *db, Rtree *pRtree){ + const char *zFmt = "SELECT stat FROM %Q.sqlite_stat1 WHERE tbl = '%q_rowid'"; + char *zSql; + sqlite3_stmt *p; + int rc; + i64 nRow = 0; + + zSql = sqlite3_mprintf(zFmt, pRtree->zDb, pRtree->zName); + if( zSql==0 ){ + rc = SQLITE_NOMEM; + }else{ + rc = sqlite3_prepare_v2(db, zSql, -1, &p, 0); + if( rc==SQLITE_OK ){ + if( sqlite3_step(p)==SQLITE_ROW ) nRow = sqlite3_column_int64(p, 0); + rc = sqlite3_finalize(p); + }else if( rc!=SQLITE_NOMEM ){ + rc = SQLITE_OK; + } + + if( rc==SQLITE_OK ){ + if( nRow==0 ){ + pRtree->nRowEst = RTREE_DEFAULT_ROWEST; + }else{ + pRtree->nRowEst = MAX(nRow, RTREE_MIN_ROWEST); + } + } + sqlite3_free(zSql); + } + + return rc; +} + +static sqlite3_module rtreeModule = { + 0, /* iVersion */ + rtreeCreate, /* xCreate - create a table */ + rtreeConnect, /* xConnect - connect to an existing table */ + rtreeBestIndex, /* xBestIndex - Determine search strategy */ + rtreeDisconnect, /* xDisconnect - Disconnect from a table */ + rtreeDestroy, /* xDestroy - Drop a table */ + rtreeOpen, /* xOpen - open a cursor */ + rtreeClose, /* xClose - close a cursor */ + rtreeFilter, /* xFilter - configure scan constraints */ + rtreeNext, /* xNext - advance a cursor */ + rtreeEof, /* xEof */ + rtreeColumn, /* xColumn - read data */ + rtreeRowid, /* xRowid - read data */ + rtreeUpdate, /* xUpdate - write data */ + 0, /* xBegin - begin transaction */ + 0, /* xSync - sync transaction */ + 0, /* xCommit - commit transaction */ + 0, /* xRollback - rollback transaction */ + 0, /* xFindFunction - function overloading */ + rtreeRename, /* xRename - rename the table */ + 0, /* xSavepoint */ + 0, /* xRelease */ + 0 /* xRollbackTo */ +}; + +static int rtreeSqlInit( + Rtree *pRtree, + sqlite3 *db, + const char *zDb, + const char *zPrefix, + int isCreate +){ + int rc = SQLITE_OK; + + #define N_STATEMENT 9 + static const char *azSql[N_STATEMENT] = { + /* Read and write the xxx_node table */ + "SELECT data FROM '%q'.'%q_node' WHERE nodeno = :1", + "INSERT OR REPLACE INTO '%q'.'%q_node' VALUES(:1, :2)", + "DELETE FROM '%q'.'%q_node' WHERE nodeno = :1", + + /* Read and write the xxx_rowid table */ + "SELECT nodeno FROM '%q'.'%q_rowid' WHERE rowid = :1", + "INSERT OR REPLACE INTO '%q'.'%q_rowid' VALUES(:1, :2)", + "DELETE FROM '%q'.'%q_rowid' WHERE rowid = :1", + + /* Read and write the xxx_parent table */ + "SELECT parentnode FROM '%q'.'%q_parent' WHERE nodeno = :1", + "INSERT OR REPLACE INTO '%q'.'%q_parent' VALUES(:1, :2)", + "DELETE FROM '%q'.'%q_parent' WHERE nodeno = :1" + }; + sqlite3_stmt **appStmt[N_STATEMENT]; + int i; + + pRtree->db = db; + + if( isCreate ){ + char *zCreate = sqlite3_mprintf( +"CREATE TABLE \"%w\".\"%w_node\"(nodeno INTEGER PRIMARY KEY, data BLOB);" +"CREATE TABLE \"%w\".\"%w_rowid\"(rowid INTEGER PRIMARY KEY, nodeno INTEGER);" +"CREATE TABLE \"%w\".\"%w_parent\"(nodeno INTEGER PRIMARY KEY," + " parentnode INTEGER);" +"INSERT INTO '%q'.'%q_node' VALUES(1, zeroblob(%d))", + zDb, zPrefix, zDb, zPrefix, zDb, zPrefix, zDb, zPrefix, pRtree->iNodeSize + ); + if( !zCreate ){ + return SQLITE_NOMEM; + } + rc = sqlite3_exec(db, zCreate, 0, 0, 0); + sqlite3_free(zCreate); + if( rc!=SQLITE_OK ){ + return rc; + } + } + + appStmt[0] = &pRtree->pReadNode; + appStmt[1] = &pRtree->pWriteNode; + appStmt[2] = &pRtree->pDeleteNode; + appStmt[3] = &pRtree->pReadRowid; + appStmt[4] = &pRtree->pWriteRowid; + appStmt[5] = &pRtree->pDeleteRowid; + appStmt[6] = &pRtree->pReadParent; + appStmt[7] = &pRtree->pWriteParent; + appStmt[8] = &pRtree->pDeleteParent; + + rc = rtreeQueryStat1(db, pRtree); + for(i=0; iiNodeSize is populated and SQLITE_OK returned. +** Otherwise, an SQLite error code is returned. +** +** If this function is being called as part of an xConnect(), then the rtree +** table already exists. In this case the node-size is determined by inspecting +** the root node of the tree. +** +** Otherwise, for an xCreate(), use 64 bytes less than the database page-size. +** This ensures that each node is stored on a single database page. If the +** database page-size is so large that more than RTREE_MAXCELLS entries +** would fit in a single node, use a smaller node-size. +*/ +static int getNodeSize( + sqlite3 *db, /* Database handle */ + Rtree *pRtree, /* Rtree handle */ + int isCreate, /* True for xCreate, false for xConnect */ + char **pzErr /* OUT: Error message, if any */ +){ + int rc; + char *zSql; + if( isCreate ){ + int iPageSize = 0; + zSql = sqlite3_mprintf("PRAGMA %Q.page_size", pRtree->zDb); + rc = getIntFromStmt(db, zSql, &iPageSize); + if( rc==SQLITE_OK ){ + pRtree->iNodeSize = iPageSize-64; + if( (4+pRtree->nBytesPerCell*RTREE_MAXCELLS)iNodeSize ){ + pRtree->iNodeSize = 4+pRtree->nBytesPerCell*RTREE_MAXCELLS; + } + }else{ + *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); + } + }else{ + zSql = sqlite3_mprintf( + "SELECT length(data) FROM '%q'.'%q_node' WHERE nodeno = 1", + pRtree->zDb, pRtree->zName + ); + rc = getIntFromStmt(db, zSql, &pRtree->iNodeSize); + if( rc!=SQLITE_OK ){ + *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); + } + } + + sqlite3_free(zSql); + return rc; +} + +/* +** This function is the implementation of both the xConnect and xCreate +** methods of the r-tree virtual table. +** +** argv[0] -> module name +** argv[1] -> database name +** argv[2] -> table name +** argv[...] -> column names... +*/ +static int rtreeInit( + sqlite3 *db, /* Database connection */ + void *pAux, /* One of the RTREE_COORD_* constants */ + int argc, const char *const*argv, /* Parameters to CREATE TABLE statement */ + sqlite3_vtab **ppVtab, /* OUT: New virtual table */ + char **pzErr, /* OUT: Error message, if any */ + int isCreate /* True for xCreate, false for xConnect */ +){ + int rc = SQLITE_OK; + Rtree *pRtree; + int nDb; /* Length of string argv[1] */ + int nName; /* Length of string argv[2] */ + int eCoordType = (pAux ? RTREE_COORD_INT32 : RTREE_COORD_REAL32); + + const char *aErrMsg[] = { + 0, /* 0 */ + "Wrong number of columns for an rtree table", /* 1 */ + "Too few columns for an rtree table", /* 2 */ + "Too many columns for an rtree table" /* 3 */ + }; + + int iErr = (argc<6) ? 2 : argc>(RTREE_MAX_DIMENSIONS*2+4) ? 3 : argc%2; + if( aErrMsg[iErr] ){ + *pzErr = sqlite3_mprintf("%s", aErrMsg[iErr]); + return SQLITE_ERROR; + } + + sqlite3_vtab_config(db, SQLITE_VTAB_CONSTRAINT_SUPPORT, 1); + + /* Allocate the sqlite3_vtab structure */ + nDb = (int)strlen(argv[1]); + nName = (int)strlen(argv[2]); + pRtree = (Rtree *)sqlite3_malloc(sizeof(Rtree)+nDb+nName+2); + if( !pRtree ){ + return SQLITE_NOMEM; + } + memset(pRtree, 0, sizeof(Rtree)+nDb+nName+2); + pRtree->nBusy = 1; + pRtree->base.pModule = &rtreeModule; + pRtree->zDb = (char *)&pRtree[1]; + pRtree->zName = &pRtree->zDb[nDb+1]; + pRtree->nDim = (argc-4)/2; + pRtree->nBytesPerCell = 8 + pRtree->nDim*4*2; + pRtree->eCoordType = eCoordType; + memcpy(pRtree->zDb, argv[1], nDb); + memcpy(pRtree->zName, argv[2], nName); + + /* Figure out the node size to use. */ + rc = getNodeSize(db, pRtree, isCreate, pzErr); + + /* Create/Connect to the underlying relational database schema. If + ** that is successful, call sqlite3_declare_vtab() to configure + ** the r-tree table schema. + */ + if( rc==SQLITE_OK ){ + if( (rc = rtreeSqlInit(pRtree, db, argv[1], argv[2], isCreate)) ){ + *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); + }else{ + char *zSql = sqlite3_mprintf("CREATE TABLE x(%s", argv[3]); + char *zTmp; + int ii; + for(ii=4; zSql && iinBusy==1 ); + rtreeRelease(pRtree); + } + return rc; +} + + +/* +** Implementation of a scalar function that decodes r-tree nodes to +** human readable strings. This can be used for debugging and analysis. +** +** The scalar function takes two arguments: (1) the number of dimensions +** to the rtree (between 1 and 5, inclusive) and (2) a blob of data containing +** an r-tree node. For a two-dimensional r-tree structure called "rt", to +** deserialize all nodes, a statement like: +** +** SELECT rtreenode(2, data) FROM rt_node; +** +** The human readable string takes the form of a Tcl list with one +** entry for each cell in the r-tree node. Each entry is itself a +** list, containing the 8-byte rowid/pageno followed by the +** *2 coordinates. +*/ +static void rtreenode(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){ + char *zText = 0; + RtreeNode node; + Rtree tree; + int ii; + + UNUSED_PARAMETER(nArg); + memset(&node, 0, sizeof(RtreeNode)); + memset(&tree, 0, sizeof(Rtree)); + tree.nDim = sqlite3_value_int(apArg[0]); + tree.nBytesPerCell = 8 + 8 * tree.nDim; + node.zData = (u8 *)sqlite3_value_blob(apArg[1]); + + for(ii=0; iixDestructor ) pInfo->xDestructor(pInfo->pContext); + sqlite3_free(p); +} + +/* +** Each call to sqlite3_rtree_geometry_callback() or +** sqlite3_rtree_query_callback() creates an ordinary SQLite +** scalar function that is implemented by this routine. +** +** All this function does is construct an RtreeMatchArg object that +** contains the geometry-checking callback routines and a list of +** parameters to this function, then return that RtreeMatchArg object +** as a BLOB. +** +** The R-Tree MATCH operator will read the returned BLOB, deserialize +** the RtreeMatchArg object, and use the RtreeMatchArg object to figure +** out which elements of the R-Tree should be returned by the query. +*/ +static void geomCallback(sqlite3_context *ctx, int nArg, sqlite3_value **aArg){ + RtreeGeomCallback *pGeomCtx = (RtreeGeomCallback *)sqlite3_user_data(ctx); + RtreeMatchArg *pBlob; + int nBlob; + + nBlob = sizeof(RtreeMatchArg) + (nArg-1)*sizeof(RtreeDValue); + pBlob = (RtreeMatchArg *)sqlite3_malloc(nBlob); + if( !pBlob ){ + sqlite3_result_error_nomem(ctx); + }else{ + int i; + pBlob->magic = RTREE_GEOMETRY_MAGIC; + pBlob->cb = pGeomCtx[0]; + pBlob->nParam = nArg; + for(i=0; iaParam[i] = sqlite3_value_int64(aArg[i]); +#else + pBlob->aParam[i] = sqlite3_value_double(aArg[i]); +#endif + } + sqlite3_result_blob(ctx, pBlob, nBlob, sqlite3_free); + } +} + +/* +** Register a new geometry function for use with the r-tree MATCH operator. +*/ +SQLITE_API int sqlite3_rtree_geometry_callback( + sqlite3 *db, /* Register SQL function on this connection */ + const char *zGeom, /* Name of the new SQL function */ + int (*xGeom)(sqlite3_rtree_geometry*,int,RtreeDValue*,int*), /* Callback */ + void *pContext /* Extra data associated with the callback */ +){ + RtreeGeomCallback *pGeomCtx; /* Context object for new user-function */ + + /* Allocate and populate the context object. */ + pGeomCtx = (RtreeGeomCallback *)sqlite3_malloc(sizeof(RtreeGeomCallback)); + if( !pGeomCtx ) return SQLITE_NOMEM; + pGeomCtx->xGeom = xGeom; + pGeomCtx->xQueryFunc = 0; + pGeomCtx->xDestructor = 0; + pGeomCtx->pContext = pContext; + return sqlite3_create_function_v2(db, zGeom, -1, SQLITE_ANY, + (void *)pGeomCtx, geomCallback, 0, 0, rtreeFreeCallback + ); +} + +/* +** Register a new 2nd-generation geometry function for use with the +** r-tree MATCH operator. +*/ +SQLITE_API int sqlite3_rtree_query_callback( + sqlite3 *db, /* Register SQL function on this connection */ + const char *zQueryFunc, /* Name of new SQL function */ + int (*xQueryFunc)(sqlite3_rtree_query_info*), /* Callback */ + void *pContext, /* Extra data passed into the callback */ + void (*xDestructor)(void*) /* Destructor for the extra data */ +){ + RtreeGeomCallback *pGeomCtx; /* Context object for new user-function */ + + /* Allocate and populate the context object. */ + pGeomCtx = (RtreeGeomCallback *)sqlite3_malloc(sizeof(RtreeGeomCallback)); + if( !pGeomCtx ) return SQLITE_NOMEM; + pGeomCtx->xGeom = 0; + pGeomCtx->xQueryFunc = xQueryFunc; + pGeomCtx->xDestructor = xDestructor; + pGeomCtx->pContext = pContext; + return sqlite3_create_function_v2(db, zQueryFunc, -1, SQLITE_ANY, + (void *)pGeomCtx, geomCallback, 0, 0, rtreeFreeCallback + ); +} + +#if !SQLITE_CORE +#ifdef _WIN32 +__declspec(dllexport) +#endif +SQLITE_API int sqlite3_rtree_init( + sqlite3 *db, + char **pzErrMsg, + const sqlite3_api_routines *pApi +){ + SQLITE_EXTENSION_INIT2(pApi) + return sqlite3RtreeInit(db); +} +#endif + +#endif + +/************** End of rtree.c ***********************************************/ +/************** Begin file icu.c *********************************************/ +/* +** 2007 May 6 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** $Id: icu.c,v 1.7 2007/12/13 21:54:11 drh Exp $ +** +** This file implements an integration between the ICU library +** ("International Components for Unicode", an open-source library +** for handling unicode data) and SQLite. The integration uses +** ICU to provide the following to SQLite: +** +** * An implementation of the SQL regexp() function (and hence REGEXP +** operator) using the ICU uregex_XX() APIs. +** +** * Implementations of the SQL scalar upper() and lower() functions +** for case mapping. +** +** * Integration of ICU and SQLite collation sequences. +** +** * An implementation of the LIKE operator that uses ICU to +** provide case-independent matching. +*/ + +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU) + +/* Include ICU headers */ +#include +#include +#include +#include + +/* #include */ + +#ifndef SQLITE_CORE + SQLITE_EXTENSION_INIT1 +#else +#endif + +/* +** Maximum length (in bytes) of the pattern in a LIKE or GLOB +** operator. +*/ +#ifndef SQLITE_MAX_LIKE_PATTERN_LENGTH +# define SQLITE_MAX_LIKE_PATTERN_LENGTH 50000 +#endif + +/* +** Version of sqlite3_free() that is always a function, never a macro. +*/ +static void xFree(void *p){ + sqlite3_free(p); +} + +/* +** Compare two UTF-8 strings for equality where the first string is +** a "LIKE" expression. Return true (1) if they are the same and +** false (0) if they are different. +*/ +static int icuLikeCompare( + const uint8_t *zPattern, /* LIKE pattern */ + const uint8_t *zString, /* The UTF-8 string to compare against */ + const UChar32 uEsc /* The escape character */ +){ + static const int MATCH_ONE = (UChar32)'_'; + static const int MATCH_ALL = (UChar32)'%'; + + int iPattern = 0; /* Current byte index in zPattern */ + int iString = 0; /* Current byte index in zString */ + + int prevEscape = 0; /* True if the previous character was uEsc */ + + while( zPattern[iPattern]!=0 ){ + + /* Read (and consume) the next character from the input pattern. */ + UChar32 uPattern; + U8_NEXT_UNSAFE(zPattern, iPattern, uPattern); + assert(uPattern!=0); + + /* There are now 4 possibilities: + ** + ** 1. uPattern is an unescaped match-all character "%", + ** 2. uPattern is an unescaped match-one character "_", + ** 3. uPattern is an unescaped escape character, or + ** 4. uPattern is to be handled as an ordinary character + */ + if( !prevEscape && uPattern==MATCH_ALL ){ + /* Case 1. */ + uint8_t c; + + /* Skip any MATCH_ALL or MATCH_ONE characters that follow a + ** MATCH_ALL. For each MATCH_ONE, skip one character in the + ** test string. + */ + while( (c=zPattern[iPattern]) == MATCH_ALL || c == MATCH_ONE ){ + if( c==MATCH_ONE ){ + if( zString[iString]==0 ) return 0; + U8_FWD_1_UNSAFE(zString, iString); + } + iPattern++; + } + + if( zPattern[iPattern]==0 ) return 1; + + while( zString[iString] ){ + if( icuLikeCompare(&zPattern[iPattern], &zString[iString], uEsc) ){ + return 1; + } + U8_FWD_1_UNSAFE(zString, iString); + } + return 0; + + }else if( !prevEscape && uPattern==MATCH_ONE ){ + /* Case 2. */ + if( zString[iString]==0 ) return 0; + U8_FWD_1_UNSAFE(zString, iString); + + }else if( !prevEscape && uPattern==uEsc){ + /* Case 3. */ + prevEscape = 1; + + }else{ + /* Case 4. */ + UChar32 uString; + U8_NEXT_UNSAFE(zString, iString, uString); + uString = u_foldCase(uString, U_FOLD_CASE_DEFAULT); + uPattern = u_foldCase(uPattern, U_FOLD_CASE_DEFAULT); + if( uString!=uPattern ){ + return 0; + } + prevEscape = 0; + } + } + + return zString[iString]==0; +} + +/* +** Implementation of the like() SQL function. This function implements +** the build-in LIKE operator. The first argument to the function is the +** pattern and the second argument is the string. So, the SQL statements: +** +** A LIKE B +** +** is implemented as like(B, A). If there is an escape character E, +** +** A LIKE B ESCAPE E +** +** is mapped to like(B, A, E). +*/ +static void icuLikeFunc( + sqlite3_context *context, + int argc, + sqlite3_value **argv +){ + const unsigned char *zA = sqlite3_value_text(argv[0]); + const unsigned char *zB = sqlite3_value_text(argv[1]); + UChar32 uEsc = 0; + + /* Limit the length of the LIKE or GLOB pattern to avoid problems + ** of deep recursion and N*N behavior in patternCompare(). + */ + if( sqlite3_value_bytes(argv[0])>SQLITE_MAX_LIKE_PATTERN_LENGTH ){ + sqlite3_result_error(context, "LIKE or GLOB pattern too complex", -1); + return; + } + + + if( argc==3 ){ + /* The escape character string must consist of a single UTF-8 character. + ** Otherwise, return an error. + */ + int nE= sqlite3_value_bytes(argv[2]); + const unsigned char *zE = sqlite3_value_text(argv[2]); + int i = 0; + if( zE==0 ) return; + U8_NEXT(zE, i, nE, uEsc); + if( i!=nE){ + sqlite3_result_error(context, + "ESCAPE expression must be a single character", -1); + return; + } + } + + if( zA && zB ){ + sqlite3_result_int(context, icuLikeCompare(zA, zB, uEsc)); + } +} + +/* +** This function is called when an ICU function called from within +** the implementation of an SQL scalar function returns an error. +** +** The scalar function context passed as the first argument is +** loaded with an error message based on the following two args. +*/ +static void icuFunctionError( + sqlite3_context *pCtx, /* SQLite scalar function context */ + const char *zName, /* Name of ICU function that failed */ + UErrorCode e /* Error code returned by ICU function */ +){ + char zBuf[128]; + sqlite3_snprintf(128, zBuf, "ICU error: %s(): %s", zName, u_errorName(e)); + zBuf[127] = '\0'; + sqlite3_result_error(pCtx, zBuf, -1); +} + +/* +** Function to delete compiled regexp objects. Registered as +** a destructor function with sqlite3_set_auxdata(). +*/ +static void icuRegexpDelete(void *p){ + URegularExpression *pExpr = (URegularExpression *)p; + uregex_close(pExpr); +} + +/* +** Implementation of SQLite REGEXP operator. This scalar function takes +** two arguments. The first is a regular expression pattern to compile +** the second is a string to match against that pattern. If either +** argument is an SQL NULL, then NULL Is returned. Otherwise, the result +** is 1 if the string matches the pattern, or 0 otherwise. +** +** SQLite maps the regexp() function to the regexp() operator such +** that the following two are equivalent: +** +** zString REGEXP zPattern +** regexp(zPattern, zString) +** +** Uses the following ICU regexp APIs: +** +** uregex_open() +** uregex_matches() +** uregex_close() +*/ +static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){ + UErrorCode status = U_ZERO_ERROR; + URegularExpression *pExpr; + UBool res; + const UChar *zString = sqlite3_value_text16(apArg[1]); + + (void)nArg; /* Unused parameter */ + + /* If the left hand side of the regexp operator is NULL, + ** then the result is also NULL. + */ + if( !zString ){ + return; + } + + pExpr = sqlite3_get_auxdata(p, 0); + if( !pExpr ){ + const UChar *zPattern = sqlite3_value_text16(apArg[0]); + if( !zPattern ){ + return; + } + pExpr = uregex_open(zPattern, -1, 0, 0, &status); + + if( U_SUCCESS(status) ){ + sqlite3_set_auxdata(p, 0, pExpr, icuRegexpDelete); + }else{ + assert(!pExpr); + icuFunctionError(p, "uregex_open", status); + return; + } + } + + /* Configure the text that the regular expression operates on. */ + uregex_setText(pExpr, zString, -1, &status); + if( !U_SUCCESS(status) ){ + icuFunctionError(p, "uregex_setText", status); + return; + } + + /* Attempt the match */ + res = uregex_matches(pExpr, 0, &status); + if( !U_SUCCESS(status) ){ + icuFunctionError(p, "uregex_matches", status); + return; + } + + /* Set the text that the regular expression operates on to a NULL + ** pointer. This is not really necessary, but it is tidier than + ** leaving the regular expression object configured with an invalid + ** pointer after this function returns. + */ + uregex_setText(pExpr, 0, 0, &status); + + /* Return 1 or 0. */ + sqlite3_result_int(p, res ? 1 : 0); +} + +/* +** Implementations of scalar functions for case mapping - upper() and +** lower(). Function upper() converts its input to upper-case (ABC). +** Function lower() converts to lower-case (abc). +** +** ICU provides two types of case mapping, "general" case mapping and +** "language specific". Refer to ICU documentation for the differences +** between the two. +** +** To utilise "general" case mapping, the upper() or lower() scalar +** functions are invoked with one argument: +** +** upper('ABC') -> 'abc' +** lower('abc') -> 'ABC' +** +** To access ICU "language specific" case mapping, upper() or lower() +** should be invoked with two arguments. The second argument is the name +** of the locale to use. Passing an empty string ("") or SQL NULL value +** as the second argument is the same as invoking the 1 argument version +** of upper() or lower(). +** +** lower('I', 'en_us') -> 'i' +** lower('I', 'tr_tr') -> 'ı' (small dotless i) +** +** http://www.icu-project.org/userguide/posix.html#case_mappings +*/ +static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){ + const UChar *zInput; + UChar *zOutput; + int nInput; + int nOutput; + + UErrorCode status = U_ZERO_ERROR; + const char *zLocale = 0; + + assert(nArg==1 || nArg==2); + if( nArg==2 ){ + zLocale = (const char *)sqlite3_value_text(apArg[1]); + } + + zInput = sqlite3_value_text16(apArg[0]); + if( !zInput ){ + return; + } + nInput = sqlite3_value_bytes16(apArg[0]); + + nOutput = nInput * 2 + 2; + zOutput = sqlite3_malloc(nOutput); + if( !zOutput ){ + return; + } + + if( sqlite3_user_data(p) ){ + u_strToUpper(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status); + }else{ + u_strToLower(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status); + } + + if( !U_SUCCESS(status) ){ + icuFunctionError(p, "u_strToLower()/u_strToUpper", status); + return; + } + + sqlite3_result_text16(p, zOutput, -1, xFree); +} + +/* +** Collation sequence destructor function. The pCtx argument points to +** a UCollator structure previously allocated using ucol_open(). +*/ +static void icuCollationDel(void *pCtx){ + UCollator *p = (UCollator *)pCtx; + ucol_close(p); +} + +/* +** Collation sequence comparison function. The pCtx argument points to +** a UCollator structure previously allocated using ucol_open(). +*/ +static int icuCollationColl( + void *pCtx, + int nLeft, + const void *zLeft, + int nRight, + const void *zRight +){ + UCollationResult res; + UCollator *p = (UCollator *)pCtx; + res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2); + switch( res ){ + case UCOL_LESS: return -1; + case UCOL_GREATER: return +1; + case UCOL_EQUAL: return 0; + } + assert(!"Unexpected return value from ucol_strcoll()"); + return 0; +} + +/* +** Implementation of the scalar function icu_load_collation(). +** +** This scalar function is used to add ICU collation based collation +** types to an SQLite database connection. It is intended to be called +** as follows: +** +** SELECT icu_load_collation(, ); +** +** Where is a string containing an ICU locale identifier (i.e. +** "en_AU", "tr_TR" etc.) and is the name of the +** collation sequence to create. +*/ +static void icuLoadCollation( + sqlite3_context *p, + int nArg, + sqlite3_value **apArg +){ + sqlite3 *db = (sqlite3 *)sqlite3_user_data(p); + UErrorCode status = U_ZERO_ERROR; + const char *zLocale; /* Locale identifier - (eg. "jp_JP") */ + const char *zName; /* SQL Collation sequence name (eg. "japanese") */ + UCollator *pUCollator; /* ICU library collation object */ + int rc; /* Return code from sqlite3_create_collation_x() */ + + assert(nArg==2); + zLocale = (const char *)sqlite3_value_text(apArg[0]); + zName = (const char *)sqlite3_value_text(apArg[1]); + + if( !zLocale || !zName ){ + return; + } + + pUCollator = ucol_open(zLocale, &status); + if( !U_SUCCESS(status) ){ + icuFunctionError(p, "ucol_open", status); + return; + } + assert(p); + + rc = sqlite3_create_collation_v2(db, zName, SQLITE_UTF16, (void *)pUCollator, + icuCollationColl, icuCollationDel + ); + if( rc!=SQLITE_OK ){ + ucol_close(pUCollator); + sqlite3_result_error(p, "Error registering collation function", -1); + } +} + +/* +** Register the ICU extension functions with database db. +*/ +SQLITE_PRIVATE int sqlite3IcuInit(sqlite3 *db){ + struct IcuScalar { + const char *zName; /* Function name */ + int nArg; /* Number of arguments */ + int enc; /* Optimal text encoding */ + void *pContext; /* sqlite3_user_data() context */ + void (*xFunc)(sqlite3_context*,int,sqlite3_value**); + } scalars[] = { + {"regexp", 2, SQLITE_ANY, 0, icuRegexpFunc}, + + {"lower", 1, SQLITE_UTF16, 0, icuCaseFunc16}, + {"lower", 2, SQLITE_UTF16, 0, icuCaseFunc16}, + {"upper", 1, SQLITE_UTF16, (void*)1, icuCaseFunc16}, + {"upper", 2, SQLITE_UTF16, (void*)1, icuCaseFunc16}, + + {"lower", 1, SQLITE_UTF8, 0, icuCaseFunc16}, + {"lower", 2, SQLITE_UTF8, 0, icuCaseFunc16}, + {"upper", 1, SQLITE_UTF8, (void*)1, icuCaseFunc16}, + {"upper", 2, SQLITE_UTF8, (void*)1, icuCaseFunc16}, + + {"like", 2, SQLITE_UTF8, 0, icuLikeFunc}, + {"like", 3, SQLITE_UTF8, 0, icuLikeFunc}, + + {"icu_load_collation", 2, SQLITE_UTF8, (void*)db, icuLoadCollation}, + }; + + int rc = SQLITE_OK; + int i; + + for(i=0; rc==SQLITE_OK && i<(int)(sizeof(scalars)/sizeof(scalars[0])); i++){ + struct IcuScalar *p = &scalars[i]; + rc = sqlite3_create_function( + db, p->zName, p->nArg, p->enc, p->pContext, p->xFunc, 0, 0 + ); + } + + return rc; +} + +#if !SQLITE_CORE +#ifdef _WIN32 +__declspec(dllexport) +#endif +SQLITE_API int sqlite3_icu_init( + sqlite3 *db, + char **pzErrMsg, + const sqlite3_api_routines *pApi +){ + SQLITE_EXTENSION_INIT2(pApi) + return sqlite3IcuInit(db); +} +#endif + +#endif + +/************** End of icu.c *************************************************/ +/************** Begin file fts3_icu.c ****************************************/ +/* +** 2007 June 22 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This file implements a tokenizer for fts3 based on the ICU library. +*/ +#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) +#ifdef SQLITE_ENABLE_ICU + +/* #include */ +/* #include */ + +#include +/* #include */ +/* #include */ +#include + +typedef struct IcuTokenizer IcuTokenizer; +typedef struct IcuCursor IcuCursor; + +struct IcuTokenizer { + sqlite3_tokenizer base; + char *zLocale; +}; + +struct IcuCursor { + sqlite3_tokenizer_cursor base; + + UBreakIterator *pIter; /* ICU break-iterator object */ + int nChar; /* Number of UChar elements in pInput */ + UChar *aChar; /* Copy of input using utf-16 encoding */ + int *aOffset; /* Offsets of each character in utf-8 input */ + + int nBuffer; + char *zBuffer; + + int iToken; +}; + +/* +** Create a new tokenizer instance. +*/ +static int icuCreate( + int argc, /* Number of entries in argv[] */ + const char * const *argv, /* Tokenizer creation arguments */ + sqlite3_tokenizer **ppTokenizer /* OUT: Created tokenizer */ +){ + IcuTokenizer *p; + int n = 0; + + if( argc>0 ){ + n = strlen(argv[0])+1; + } + p = (IcuTokenizer *)sqlite3_malloc(sizeof(IcuTokenizer)+n); + if( !p ){ + return SQLITE_NOMEM; + } + memset(p, 0, sizeof(IcuTokenizer)); + + if( n ){ + p->zLocale = (char *)&p[1]; + memcpy(p->zLocale, argv[0], n); + } + + *ppTokenizer = (sqlite3_tokenizer *)p; + + return SQLITE_OK; +} + +/* +** Destroy a tokenizer +*/ +static int icuDestroy(sqlite3_tokenizer *pTokenizer){ + IcuTokenizer *p = (IcuTokenizer *)pTokenizer; + sqlite3_free(p); + return SQLITE_OK; +} + +/* +** Prepare to begin tokenizing a particular string. The input +** string to be tokenized is pInput[0..nBytes-1]. A cursor +** used to incrementally tokenize this string is returned in +** *ppCursor. +*/ +static int icuOpen( + sqlite3_tokenizer *pTokenizer, /* The tokenizer */ + const char *zInput, /* Input string */ + int nInput, /* Length of zInput in bytes */ + sqlite3_tokenizer_cursor **ppCursor /* OUT: Tokenization cursor */ +){ + IcuTokenizer *p = (IcuTokenizer *)pTokenizer; + IcuCursor *pCsr; + + const int32_t opt = U_FOLD_CASE_DEFAULT; + UErrorCode status = U_ZERO_ERROR; + int nChar; + + UChar32 c; + int iInput = 0; + int iOut = 0; + + *ppCursor = 0; + + if( zInput==0 ){ + nInput = 0; + zInput = ""; + }else if( nInput<0 ){ + nInput = strlen(zInput); + } + nChar = nInput+1; + pCsr = (IcuCursor *)sqlite3_malloc( + sizeof(IcuCursor) + /* IcuCursor */ + ((nChar+3)&~3) * sizeof(UChar) + /* IcuCursor.aChar[] */ + (nChar+1) * sizeof(int) /* IcuCursor.aOffset[] */ + ); + if( !pCsr ){ + return SQLITE_NOMEM; + } + memset(pCsr, 0, sizeof(IcuCursor)); + pCsr->aChar = (UChar *)&pCsr[1]; + pCsr->aOffset = (int *)&pCsr->aChar[(nChar+3)&~3]; + + pCsr->aOffset[iOut] = iInput; + U8_NEXT(zInput, iInput, nInput, c); + while( c>0 ){ + int isError = 0; + c = u_foldCase(c, opt); + U16_APPEND(pCsr->aChar, iOut, nChar, c, isError); + if( isError ){ + sqlite3_free(pCsr); + return SQLITE_ERROR; + } + pCsr->aOffset[iOut] = iInput; + + if( iInputpIter = ubrk_open(UBRK_WORD, p->zLocale, pCsr->aChar, iOut, &status); + if( !U_SUCCESS(status) ){ + sqlite3_free(pCsr); + return SQLITE_ERROR; + } + pCsr->nChar = iOut; + + ubrk_first(pCsr->pIter); + *ppCursor = (sqlite3_tokenizer_cursor *)pCsr; + return SQLITE_OK; +} + +/* +** Close a tokenization cursor previously opened by a call to icuOpen(). +*/ +static int icuClose(sqlite3_tokenizer_cursor *pCursor){ + IcuCursor *pCsr = (IcuCursor *)pCursor; + ubrk_close(pCsr->pIter); + sqlite3_free(pCsr->zBuffer); + sqlite3_free(pCsr); + return SQLITE_OK; +} + +/* +** Extract the next token from a tokenization cursor. +*/ +static int icuNext( + sqlite3_tokenizer_cursor *pCursor, /* Cursor returned by simpleOpen */ + const char **ppToken, /* OUT: *ppToken is the token text */ + int *pnBytes, /* OUT: Number of bytes in token */ + int *piStartOffset, /* OUT: Starting offset of token */ + int *piEndOffset, /* OUT: Ending offset of token */ + int *piPosition /* OUT: Position integer of token */ +){ + IcuCursor *pCsr = (IcuCursor *)pCursor; + + int iStart = 0; + int iEnd = 0; + int nByte = 0; + + while( iStart==iEnd ){ + UChar32 c; + + iStart = ubrk_current(pCsr->pIter); + iEnd = ubrk_next(pCsr->pIter); + if( iEnd==UBRK_DONE ){ + return SQLITE_DONE; + } + + while( iStartaChar, iWhite, pCsr->nChar, c); + if( u_isspace(c) ){ + iStart = iWhite; + }else{ + break; + } + } + assert(iStart<=iEnd); + } + + do { + UErrorCode status = U_ZERO_ERROR; + if( nByte ){ + char *zNew = sqlite3_realloc(pCsr->zBuffer, nByte); + if( !zNew ){ + return SQLITE_NOMEM; + } + pCsr->zBuffer = zNew; + pCsr->nBuffer = nByte; + } + + u_strToUTF8( + pCsr->zBuffer, pCsr->nBuffer, &nByte, /* Output vars */ + &pCsr->aChar[iStart], iEnd-iStart, /* Input vars */ + &status /* Output success/failure */ + ); + } while( nByte>pCsr->nBuffer ); + + *ppToken = pCsr->zBuffer; + *pnBytes = nByte; + *piStartOffset = pCsr->aOffset[iStart]; + *piEndOffset = pCsr->aOffset[iEnd]; + *piPosition = pCsr->iToken++; + + return SQLITE_OK; +} + +/* +** The set of routines that implement the simple tokenizer +*/ +static const sqlite3_tokenizer_module icuTokenizerModule = { + 0, /* iVersion */ + icuCreate, /* xCreate */ + icuDestroy, /* xCreate */ + icuOpen, /* xOpen */ + icuClose, /* xClose */ + icuNext, /* xNext */ +}; + +/* +** Set *ppModule to point at the implementation of the ICU tokenizer. +*/ +SQLITE_PRIVATE void sqlite3Fts3IcuTokenizerModule( + sqlite3_tokenizer_module const**ppModule +){ + *ppModule = &icuTokenizerModule; +} + +#endif /* defined(SQLITE_ENABLE_ICU) */ +#endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ + +/************** End of fts3_icu.c ********************************************/ diff --git a/ThirdParty/sqlite3/sqlite3.h b/ThirdParty/sqlite3/sqlite3.h new file mode 100644 index 0000000..e86d83f --- /dev/null +++ b/ThirdParty/sqlite3/sqlite3.h @@ -0,0 +1,7478 @@ +/* +** 2001 September 15 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This header file defines the interface that the SQLite library +** presents to client programs. If a C-function, structure, datatype, +** or constant definition does not appear in this file, then it is +** not a published API of SQLite, is subject to change without +** notice, and should not be referenced by programs that use SQLite. +** +** Some of the definitions that are in this file are marked as +** "experimental". Experimental interfaces are normally new +** features recently added to SQLite. We do not anticipate changes +** to experimental interfaces but reserve the right to make minor changes +** if experience from use "in the wild" suggest such changes are prudent. +** +** The official C-language API documentation for SQLite is derived +** from comments in this file. This file is the authoritative source +** on how SQLite interfaces are suppose to operate. +** +** The name of this file under configuration management is "sqlite.h.in". +** The makefile makes some minor changes to this file (such as inserting +** the version number) and changes its name to "sqlite3.h" as +** part of the build process. +*/ +#ifndef _SQLITE3_H_ +#define _SQLITE3_H_ +#include /* Needed for the definition of va_list */ + +/* +** Make sure we can call this stuff from C++. +*/ +#ifdef __cplusplus +extern "C" { +#endif + + +/* +** Add the ability to override 'extern' +*/ +#ifndef SQLITE_EXTERN +# define SQLITE_EXTERN extern +#endif + +#ifndef SQLITE_API +# define SQLITE_API +#endif + + +/* +** These no-op macros are used in front of interfaces to mark those +** interfaces as either deprecated or experimental. New applications +** should not use deprecated interfaces - they are support for backwards +** compatibility only. Application writers should be aware that +** experimental interfaces are subject to change in point releases. +** +** These macros used to resolve to various kinds of compiler magic that +** would generate warning messages when they were used. But that +** compiler magic ended up generating such a flurry of bug reports +** that we have taken it all out and gone back to using simple +** noop macros. +*/ +#define SQLITE_DEPRECATED +#define SQLITE_EXPERIMENTAL + +/* +** Ensure these symbols were not defined by some previous header file. +*/ +#ifdef SQLITE_VERSION +# undef SQLITE_VERSION +#endif +#ifdef SQLITE_VERSION_NUMBER +# undef SQLITE_VERSION_NUMBER +#endif + +/* +** CAPI3REF: Compile-Time Library Version Numbers +** +** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header +** evaluates to a string literal that is the SQLite version in the +** format "X.Y.Z" where X is the major version number (always 3 for +** SQLite3) and Y is the minor version number and Z is the release number.)^ +** ^(The [SQLITE_VERSION_NUMBER] C preprocessor macro resolves to an integer +** with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same +** numbers used in [SQLITE_VERSION].)^ +** The SQLITE_VERSION_NUMBER for any given release of SQLite will also +** be larger than the release from which it is derived. Either Y will +** be held constant and Z will be incremented or else Y will be incremented +** and Z will be reset to zero. +** +** Since version 3.6.18, SQLite source code has been stored in the +** Fossil configuration management +** system. ^The SQLITE_SOURCE_ID macro evaluates to +** a string which identifies a particular check-in of SQLite +** within its configuration management system. ^The SQLITE_SOURCE_ID +** string contains the date and time of the check-in (UTC) and an SHA1 +** hash of the entire source tree. +** +** See also: [sqlite3_libversion()], +** [sqlite3_libversion_number()], [sqlite3_sourceid()], +** [sqlite_version()] and [sqlite_source_id()]. +*/ +#define SQLITE_VERSION "3.8.5" +#define SQLITE_VERSION_NUMBER 3008005 +#define SQLITE_SOURCE_ID "2014-06-04 14:06:34 b1ed4f2a34ba66c29b130f8d13e9092758019212" + +/* +** CAPI3REF: Run-Time Library Version Numbers +** KEYWORDS: sqlite3_version, sqlite3_sourceid +** +** These interfaces provide the same information as the [SQLITE_VERSION], +** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros +** but are associated with the library instead of the header file. ^(Cautious +** programmers might include assert() statements in their application to +** verify that values returned by these interfaces match the macros in +** the header, and thus insure that the application is +** compiled with matching library and header files. +** +**
          +** assert( sqlite3_libversion_number()==SQLITE_VERSION_NUMBER );
          +** assert( strcmp(sqlite3_sourceid(),SQLITE_SOURCE_ID)==0 );
          +** assert( strcmp(sqlite3_libversion(),SQLITE_VERSION)==0 );
          +** 
          )^ +** +** ^The sqlite3_version[] string constant contains the text of [SQLITE_VERSION] +** macro. ^The sqlite3_libversion() function returns a pointer to the +** to the sqlite3_version[] string constant. The sqlite3_libversion() +** function is provided for use in DLLs since DLL users usually do not have +** direct access to string constants within the DLL. ^The +** sqlite3_libversion_number() function returns an integer equal to +** [SQLITE_VERSION_NUMBER]. ^The sqlite3_sourceid() function returns +** a pointer to a string constant whose value is the same as the +** [SQLITE_SOURCE_ID] C preprocessor macro. +** +** See also: [sqlite_version()] and [sqlite_source_id()]. +*/ +SQLITE_API SQLITE_EXTERN const char sqlite3_version[]; +SQLITE_API const char *sqlite3_libversion(void); +SQLITE_API const char *sqlite3_sourceid(void); +SQLITE_API int sqlite3_libversion_number(void); + +/* +** CAPI3REF: Run-Time Library Compilation Options Diagnostics +** +** ^The sqlite3_compileoption_used() function returns 0 or 1 +** indicating whether the specified option was defined at +** compile time. ^The SQLITE_ prefix may be omitted from the +** option name passed to sqlite3_compileoption_used(). +** +** ^The sqlite3_compileoption_get() function allows iterating +** over the list of options that were defined at compile time by +** returning the N-th compile time option string. ^If N is out of range, +** sqlite3_compileoption_get() returns a NULL pointer. ^The SQLITE_ +** prefix is omitted from any strings returned by +** sqlite3_compileoption_get(). +** +** ^Support for the diagnostic functions sqlite3_compileoption_used() +** and sqlite3_compileoption_get() may be omitted by specifying the +** [SQLITE_OMIT_COMPILEOPTION_DIAGS] option at compile time. +** +** See also: SQL functions [sqlite_compileoption_used()] and +** [sqlite_compileoption_get()] and the [compile_options pragma]. +*/ +#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS +SQLITE_API int sqlite3_compileoption_used(const char *zOptName); +SQLITE_API const char *sqlite3_compileoption_get(int N); +#endif + +/* +** CAPI3REF: Test To See If The Library Is Threadsafe +** +** ^The sqlite3_threadsafe() function returns zero if and only if +** SQLite was compiled with mutexing code omitted due to the +** [SQLITE_THREADSAFE] compile-time option being set to 0. +** +** SQLite can be compiled with or without mutexes. When +** the [SQLITE_THREADSAFE] C preprocessor macro is 1 or 2, mutexes +** are enabled and SQLite is threadsafe. When the +** [SQLITE_THREADSAFE] macro is 0, +** the mutexes are omitted. Without the mutexes, it is not safe +** to use SQLite concurrently from more than one thread. +** +** Enabling mutexes incurs a measurable performance penalty. +** So if speed is of utmost importance, it makes sense to disable +** the mutexes. But for maximum safety, mutexes should be enabled. +** ^The default behavior is for mutexes to be enabled. +** +** This interface can be used by an application to make sure that the +** version of SQLite that it is linking against was compiled with +** the desired setting of the [SQLITE_THREADSAFE] macro. +** +** This interface only reports on the compile-time mutex setting +** of the [SQLITE_THREADSAFE] flag. If SQLite is compiled with +** SQLITE_THREADSAFE=1 or =2 then mutexes are enabled by default but +** can be fully or partially disabled using a call to [sqlite3_config()] +** with the verbs [SQLITE_CONFIG_SINGLETHREAD], [SQLITE_CONFIG_MULTITHREAD], +** or [SQLITE_CONFIG_MUTEX]. ^(The return value of the +** sqlite3_threadsafe() function shows only the compile-time setting of +** thread safety, not any run-time changes to that setting made by +** sqlite3_config(). In other words, the return value from sqlite3_threadsafe() +** is unchanged by calls to sqlite3_config().)^ +** +** See the [threading mode] documentation for additional information. +*/ +SQLITE_API int sqlite3_threadsafe(void); + +/* +** CAPI3REF: Database Connection Handle +** KEYWORDS: {database connection} {database connections} +** +** Each open SQLite database is represented by a pointer to an instance of +** the opaque structure named "sqlite3". It is useful to think of an sqlite3 +** pointer as an object. The [sqlite3_open()], [sqlite3_open16()], and +** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] +** and [sqlite3_close_v2()] are its destructors. There are many other +** interfaces (such as +** [sqlite3_prepare_v2()], [sqlite3_create_function()], and +** [sqlite3_busy_timeout()] to name but three) that are methods on an +** sqlite3 object. +*/ +typedef struct sqlite3 sqlite3; + +/* +** CAPI3REF: 64-Bit Integer Types +** KEYWORDS: sqlite_int64 sqlite_uint64 +** +** Because there is no cross-platform way to specify 64-bit integer types +** SQLite includes typedefs for 64-bit signed and unsigned integers. +** +** The sqlite3_int64 and sqlite3_uint64 are the preferred type definitions. +** The sqlite_int64 and sqlite_uint64 types are supported for backwards +** compatibility only. +** +** ^The sqlite3_int64 and sqlite_int64 types can store integer values +** between -9223372036854775808 and +9223372036854775807 inclusive. ^The +** sqlite3_uint64 and sqlite_uint64 types can store integer values +** between 0 and +18446744073709551615 inclusive. +*/ +#ifdef SQLITE_INT64_TYPE + typedef SQLITE_INT64_TYPE sqlite_int64; + typedef unsigned SQLITE_INT64_TYPE sqlite_uint64; +#elif defined(_MSC_VER) || defined(__BORLANDC__) + typedef __int64 sqlite_int64; + typedef unsigned __int64 sqlite_uint64; +#else + typedef long long int sqlite_int64; + typedef unsigned long long int sqlite_uint64; +#endif +typedef sqlite_int64 sqlite3_int64; +typedef sqlite_uint64 sqlite3_uint64; + +/* +** If compiling for a processor that lacks floating point support, +** substitute integer for floating-point. +*/ +#ifdef SQLITE_OMIT_FLOATING_POINT +# define double sqlite3_int64 +#endif + +/* +** CAPI3REF: Closing A Database Connection +** +** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors +** for the [sqlite3] object. +** ^Calls to sqlite3_close() and sqlite3_close_v2() return SQLITE_OK if +** the [sqlite3] object is successfully destroyed and all associated +** resources are deallocated. +** +** ^If the database connection is associated with unfinalized prepared +** statements or unfinished sqlite3_backup objects then sqlite3_close() +** will leave the database connection open and return [SQLITE_BUSY]. +** ^If sqlite3_close_v2() is called with unfinalized prepared statements +** and unfinished sqlite3_backups, then the database connection becomes +** an unusable "zombie" which will automatically be deallocated when the +** last prepared statement is finalized or the last sqlite3_backup is +** finished. The sqlite3_close_v2() interface is intended for use with +** host languages that are garbage collected, and where the order in which +** destructors are called is arbitrary. +** +** Applications should [sqlite3_finalize | finalize] all [prepared statements], +** [sqlite3_blob_close | close] all [BLOB handles], and +** [sqlite3_backup_finish | finish] all [sqlite3_backup] objects associated +** with the [sqlite3] object prior to attempting to close the object. ^If +** sqlite3_close_v2() is called on a [database connection] that still has +** outstanding [prepared statements], [BLOB handles], and/or +** [sqlite3_backup] objects then it returns SQLITE_OK but the deallocation +** of resources is deferred until all [prepared statements], [BLOB handles], +** and [sqlite3_backup] objects are also destroyed. +** +** ^If an [sqlite3] object is destroyed while a transaction is open, +** the transaction is automatically rolled back. +** +** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)] +** must be either a NULL +** pointer or an [sqlite3] object pointer obtained +** from [sqlite3_open()], [sqlite3_open16()], or +** [sqlite3_open_v2()], and not previously closed. +** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer +** argument is a harmless no-op. +*/ +SQLITE_API int sqlite3_close(sqlite3*); +SQLITE_API int sqlite3_close_v2(sqlite3*); + +/* +** The type for a callback function. +** This is legacy and deprecated. It is included for historical +** compatibility and is not documented. +*/ +typedef int (*sqlite3_callback)(void*,int,char**, char**); + +/* +** CAPI3REF: One-Step Query Execution Interface +** +** The sqlite3_exec() interface is a convenience wrapper around +** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()], +** that allows an application to run multiple statements of SQL +** without having to use a lot of C code. +** +** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded, +** semicolon-separate SQL statements passed into its 2nd argument, +** in the context of the [database connection] passed in as its 1st +** argument. ^If the callback function of the 3rd argument to +** sqlite3_exec() is not NULL, then it is invoked for each result row +** coming out of the evaluated SQL statements. ^The 4th argument to +** sqlite3_exec() is relayed through to the 1st argument of each +** callback invocation. ^If the callback pointer to sqlite3_exec() +** is NULL, then no callback is ever invoked and result rows are +** ignored. +** +** ^If an error occurs while evaluating the SQL statements passed into +** sqlite3_exec(), then execution of the current statement stops and +** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec() +** is not NULL then any error message is written into memory obtained +** from [sqlite3_malloc()] and passed back through the 5th parameter. +** To avoid memory leaks, the application should invoke [sqlite3_free()] +** on error message strings returned through the 5th parameter of +** of sqlite3_exec() after the error message string is no longer needed. +** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors +** occur, then sqlite3_exec() sets the pointer in its 5th parameter to +** NULL before returning. +** +** ^If an sqlite3_exec() callback returns non-zero, the sqlite3_exec() +** routine returns SQLITE_ABORT without invoking the callback again and +** without running any subsequent SQL statements. +** +** ^The 2nd argument to the sqlite3_exec() callback function is the +** number of columns in the result. ^The 3rd argument to the sqlite3_exec() +** callback is an array of pointers to strings obtained as if from +** [sqlite3_column_text()], one for each column. ^If an element of a +** result row is NULL then the corresponding string pointer for the +** sqlite3_exec() callback is a NULL pointer. ^The 4th argument to the +** sqlite3_exec() callback is an array of pointers to strings where each +** entry represents the name of corresponding result column as obtained +** from [sqlite3_column_name()]. +** +** ^If the 2nd parameter to sqlite3_exec() is a NULL pointer, a pointer +** to an empty string, or a pointer that contains only whitespace and/or +** SQL comments, then no SQL statements are evaluated and the database +** is not changed. +** +** Restrictions: +** +**
            +**
          • The application must insure that the 1st parameter to sqlite3_exec() +** is a valid and open [database connection]. +**
          • The application must not close the [database connection] specified by +** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running. +**
          • The application must not modify the SQL statement text passed into +** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running. +**
          +*/ +SQLITE_API int sqlite3_exec( + sqlite3*, /* An open database */ + const char *sql, /* SQL to be evaluated */ + int (*callback)(void*,int,char**,char**), /* Callback function */ + void *, /* 1st argument to callback */ + char **errmsg /* Error msg written here */ +); + +/* +** CAPI3REF: Result Codes +** KEYWORDS: SQLITE_OK {error code} {error codes} +** KEYWORDS: {result code} {result codes} +** +** Many SQLite functions return an integer result code from the set shown +** here in order to indicate success or failure. +** +** New error codes may be added in future versions of SQLite. +** +** See also: [SQLITE_IOERR_READ | extended result codes], +** [sqlite3_vtab_on_conflict()] [SQLITE_ROLLBACK | result codes]. +*/ +#define SQLITE_OK 0 /* Successful result */ +/* beginning-of-error-codes */ +#define SQLITE_ERROR 1 /* SQL error or missing database */ +#define SQLITE_INTERNAL 2 /* Internal logic error in SQLite */ +#define SQLITE_PERM 3 /* Access permission denied */ +#define SQLITE_ABORT 4 /* Callback routine requested an abort */ +#define SQLITE_BUSY 5 /* The database file is locked */ +#define SQLITE_LOCKED 6 /* A table in the database is locked */ +#define SQLITE_NOMEM 7 /* A malloc() failed */ +#define SQLITE_READONLY 8 /* Attempt to write a readonly database */ +#define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite3_interrupt()*/ +#define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ +#define SQLITE_CORRUPT 11 /* The database disk image is malformed */ +#define SQLITE_NOTFOUND 12 /* Unknown opcode in sqlite3_file_control() */ +#define SQLITE_FULL 13 /* Insertion failed because database is full */ +#define SQLITE_CANTOPEN 14 /* Unable to open the database file */ +#define SQLITE_PROTOCOL 15 /* Database lock protocol error */ +#define SQLITE_EMPTY 16 /* Database is empty */ +#define SQLITE_SCHEMA 17 /* The database schema changed */ +#define SQLITE_TOOBIG 18 /* String or BLOB exceeds size limit */ +#define SQLITE_CONSTRAINT 19 /* Abort due to constraint violation */ +#define SQLITE_MISMATCH 20 /* Data type mismatch */ +#define SQLITE_MISUSE 21 /* Library used incorrectly */ +#define SQLITE_NOLFS 22 /* Uses OS features not supported on host */ +#define SQLITE_AUTH 23 /* Authorization denied */ +#define SQLITE_FORMAT 24 /* Auxiliary database format error */ +#define SQLITE_RANGE 25 /* 2nd parameter to sqlite3_bind out of range */ +#define SQLITE_NOTADB 26 /* File opened that is not a database file */ +#define SQLITE_NOTICE 27 /* Notifications from sqlite3_log() */ +#define SQLITE_WARNING 28 /* Warnings from sqlite3_log() */ +#define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ +#define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ +/* end-of-error-codes */ + +/* +** CAPI3REF: Extended Result Codes +** KEYWORDS: {extended error code} {extended error codes} +** KEYWORDS: {extended result code} {extended result codes} +** +** In its default configuration, SQLite API routines return one of 26 integer +** [SQLITE_OK | result codes]. However, experience has shown that many of +** these result codes are too coarse-grained. They do not provide as +** much information about problems as programmers might like. In an effort to +** address this, newer versions of SQLite (version 3.3.8 and later) include +** support for additional result codes that provide more detailed information +** about errors. The extended result codes are enabled or disabled +** on a per database connection basis using the +** [sqlite3_extended_result_codes()] API. +** +** Some of the available extended result codes are listed here. +** One may expect the number of extended result codes will increase +** over time. Software that uses extended result codes should expect +** to see new result codes in future releases of SQLite. +** +** The SQLITE_OK result code will never be extended. It will always +** be exactly zero. +*/ +#define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) +#define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) +#define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) +#define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) +#define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) +#define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) +#define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) +#define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) +#define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) +#define SQLITE_IOERR_DELETE (SQLITE_IOERR | (10<<8)) +#define SQLITE_IOERR_BLOCKED (SQLITE_IOERR | (11<<8)) +#define SQLITE_IOERR_NOMEM (SQLITE_IOERR | (12<<8)) +#define SQLITE_IOERR_ACCESS (SQLITE_IOERR | (13<<8)) +#define SQLITE_IOERR_CHECKRESERVEDLOCK (SQLITE_IOERR | (14<<8)) +#define SQLITE_IOERR_LOCK (SQLITE_IOERR | (15<<8)) +#define SQLITE_IOERR_CLOSE (SQLITE_IOERR | (16<<8)) +#define SQLITE_IOERR_DIR_CLOSE (SQLITE_IOERR | (17<<8)) +#define SQLITE_IOERR_SHMOPEN (SQLITE_IOERR | (18<<8)) +#define SQLITE_IOERR_SHMSIZE (SQLITE_IOERR | (19<<8)) +#define SQLITE_IOERR_SHMLOCK (SQLITE_IOERR | (20<<8)) +#define SQLITE_IOERR_SHMMAP (SQLITE_IOERR | (21<<8)) +#define SQLITE_IOERR_SEEK (SQLITE_IOERR | (22<<8)) +#define SQLITE_IOERR_DELETE_NOENT (SQLITE_IOERR | (23<<8)) +#define SQLITE_IOERR_MMAP (SQLITE_IOERR | (24<<8)) +#define SQLITE_IOERR_GETTEMPPATH (SQLITE_IOERR | (25<<8)) +#define SQLITE_IOERR_CONVPATH (SQLITE_IOERR | (26<<8)) +#define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8)) +#define SQLITE_BUSY_RECOVERY (SQLITE_BUSY | (1<<8)) +#define SQLITE_BUSY_SNAPSHOT (SQLITE_BUSY | (2<<8)) +#define SQLITE_CANTOPEN_NOTEMPDIR (SQLITE_CANTOPEN | (1<<8)) +#define SQLITE_CANTOPEN_ISDIR (SQLITE_CANTOPEN | (2<<8)) +#define SQLITE_CANTOPEN_FULLPATH (SQLITE_CANTOPEN | (3<<8)) +#define SQLITE_CANTOPEN_CONVPATH (SQLITE_CANTOPEN | (4<<8)) +#define SQLITE_CORRUPT_VTAB (SQLITE_CORRUPT | (1<<8)) +#define SQLITE_READONLY_RECOVERY (SQLITE_READONLY | (1<<8)) +#define SQLITE_READONLY_CANTLOCK (SQLITE_READONLY | (2<<8)) +#define SQLITE_READONLY_ROLLBACK (SQLITE_READONLY | (3<<8)) +#define SQLITE_READONLY_DBMOVED (SQLITE_READONLY | (4<<8)) +#define SQLITE_ABORT_ROLLBACK (SQLITE_ABORT | (2<<8)) +#define SQLITE_CONSTRAINT_CHECK (SQLITE_CONSTRAINT | (1<<8)) +#define SQLITE_CONSTRAINT_COMMITHOOK (SQLITE_CONSTRAINT | (2<<8)) +#define SQLITE_CONSTRAINT_FOREIGNKEY (SQLITE_CONSTRAINT | (3<<8)) +#define SQLITE_CONSTRAINT_FUNCTION (SQLITE_CONSTRAINT | (4<<8)) +#define SQLITE_CONSTRAINT_NOTNULL (SQLITE_CONSTRAINT | (5<<8)) +#define SQLITE_CONSTRAINT_PRIMARYKEY (SQLITE_CONSTRAINT | (6<<8)) +#define SQLITE_CONSTRAINT_TRIGGER (SQLITE_CONSTRAINT | (7<<8)) +#define SQLITE_CONSTRAINT_UNIQUE (SQLITE_CONSTRAINT | (8<<8)) +#define SQLITE_CONSTRAINT_VTAB (SQLITE_CONSTRAINT | (9<<8)) +#define SQLITE_CONSTRAINT_ROWID (SQLITE_CONSTRAINT |(10<<8)) +#define SQLITE_NOTICE_RECOVER_WAL (SQLITE_NOTICE | (1<<8)) +#define SQLITE_NOTICE_RECOVER_ROLLBACK (SQLITE_NOTICE | (2<<8)) +#define SQLITE_WARNING_AUTOINDEX (SQLITE_WARNING | (1<<8)) + +/* +** CAPI3REF: Flags For File Open Operations +** +** These bit values are intended for use in the +** 3rd parameter to the [sqlite3_open_v2()] interface and +** in the 4th parameter to the [sqlite3_vfs.xOpen] method. +*/ +#define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */ +#define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */ +#define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */ +#define SQLITE_OPEN_DELETEONCLOSE 0x00000008 /* VFS only */ +#define SQLITE_OPEN_EXCLUSIVE 0x00000010 /* VFS only */ +#define SQLITE_OPEN_AUTOPROXY 0x00000020 /* VFS only */ +#define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */ +#define SQLITE_OPEN_MEMORY 0x00000080 /* Ok for sqlite3_open_v2() */ +#define SQLITE_OPEN_MAIN_DB 0x00000100 /* VFS only */ +#define SQLITE_OPEN_TEMP_DB 0x00000200 /* VFS only */ +#define SQLITE_OPEN_TRANSIENT_DB 0x00000400 /* VFS only */ +#define SQLITE_OPEN_MAIN_JOURNAL 0x00000800 /* VFS only */ +#define SQLITE_OPEN_TEMP_JOURNAL 0x00001000 /* VFS only */ +#define SQLITE_OPEN_SUBJOURNAL 0x00002000 /* VFS only */ +#define SQLITE_OPEN_MASTER_JOURNAL 0x00004000 /* VFS only */ +#define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */ +#define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */ +#define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */ +#define SQLITE_OPEN_PRIVATECACHE 0x00040000 /* Ok for sqlite3_open_v2() */ +#define SQLITE_OPEN_WAL 0x00080000 /* VFS only */ + +/* Reserved: 0x00F00000 */ + +/* +** CAPI3REF: Device Characteristics +** +** The xDeviceCharacteristics method of the [sqlite3_io_methods] +** object returns an integer which is a vector of these +** bit values expressing I/O characteristics of the mass storage +** device that holds the file that the [sqlite3_io_methods] +** refers to. +** +** The SQLITE_IOCAP_ATOMIC property means that all writes of +** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values +** mean that writes of blocks that are nnn bytes in size and +** are aligned to an address which is an integer multiple of +** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means +** that when data is appended to a file, the data is appended +** first then the size of the file is extended, never the other +** way around. The SQLITE_IOCAP_SEQUENTIAL property means that +** information is written to disk in the same order as calls +** to xWrite(). The SQLITE_IOCAP_POWERSAFE_OVERWRITE property means that +** after reboot following a crash or power loss, the only bytes in a +** file that were written at the application level might have changed +** and that adjacent bytes, even bytes within the same sector are +** guaranteed to be unchanged. The SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN +** flag indicate that a file cannot be deleted when open. The +** SQLITE_IOCAP_IMMUTABLE flag indicates that the file is on +** read-only media and cannot be changed even by processes with +** elevated privileges. +*/ +#define SQLITE_IOCAP_ATOMIC 0x00000001 +#define SQLITE_IOCAP_ATOMIC512 0x00000002 +#define SQLITE_IOCAP_ATOMIC1K 0x00000004 +#define SQLITE_IOCAP_ATOMIC2K 0x00000008 +#define SQLITE_IOCAP_ATOMIC4K 0x00000010 +#define SQLITE_IOCAP_ATOMIC8K 0x00000020 +#define SQLITE_IOCAP_ATOMIC16K 0x00000040 +#define SQLITE_IOCAP_ATOMIC32K 0x00000080 +#define SQLITE_IOCAP_ATOMIC64K 0x00000100 +#define SQLITE_IOCAP_SAFE_APPEND 0x00000200 +#define SQLITE_IOCAP_SEQUENTIAL 0x00000400 +#define SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN 0x00000800 +#define SQLITE_IOCAP_POWERSAFE_OVERWRITE 0x00001000 +#define SQLITE_IOCAP_IMMUTABLE 0x00002000 + +/* +** CAPI3REF: File Locking Levels +** +** SQLite uses one of these integer values as the second +** argument to calls it makes to the xLock() and xUnlock() methods +** of an [sqlite3_io_methods] object. +*/ +#define SQLITE_LOCK_NONE 0 +#define SQLITE_LOCK_SHARED 1 +#define SQLITE_LOCK_RESERVED 2 +#define SQLITE_LOCK_PENDING 3 +#define SQLITE_LOCK_EXCLUSIVE 4 + +/* +** CAPI3REF: Synchronization Type Flags +** +** When SQLite invokes the xSync() method of an +** [sqlite3_io_methods] object it uses a combination of +** these integer values as the second argument. +** +** When the SQLITE_SYNC_DATAONLY flag is used, it means that the +** sync operation only needs to flush data to mass storage. Inode +** information need not be flushed. If the lower four bits of the flag +** equal SQLITE_SYNC_NORMAL, that means to use normal fsync() semantics. +** If the lower four bits equal SQLITE_SYNC_FULL, that means +** to use Mac OS X style fullsync instead of fsync(). +** +** Do not confuse the SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL flags +** with the [PRAGMA synchronous]=NORMAL and [PRAGMA synchronous]=FULL +** settings. The [synchronous pragma] determines when calls to the +** xSync VFS method occur and applies uniformly across all platforms. +** The SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL flags determine how +** energetic or rigorous or forceful the sync operations are and +** only make a difference on Mac OSX for the default SQLite code. +** (Third-party VFS implementations might also make the distinction +** between SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL, but among the +** operating systems natively supported by SQLite, only Mac OSX +** cares about the difference.) +*/ +#define SQLITE_SYNC_NORMAL 0x00002 +#define SQLITE_SYNC_FULL 0x00003 +#define SQLITE_SYNC_DATAONLY 0x00010 + +/* +** CAPI3REF: OS Interface Open File Handle +** +** An [sqlite3_file] object represents an open file in the +** [sqlite3_vfs | OS interface layer]. Individual OS interface +** implementations will +** want to subclass this object by appending additional fields +** for their own use. The pMethods entry is a pointer to an +** [sqlite3_io_methods] object that defines methods for performing +** I/O operations on the open file. +*/ +typedef struct sqlite3_file sqlite3_file; +struct sqlite3_file { + const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ +}; + +/* +** CAPI3REF: OS Interface File Virtual Methods Object +** +** Every file opened by the [sqlite3_vfs.xOpen] method populates an +** [sqlite3_file] object (or, more commonly, a subclass of the +** [sqlite3_file] object) with a pointer to an instance of this object. +** This object defines the methods used to perform various operations +** against the open file represented by the [sqlite3_file] object. +** +** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element +** to a non-NULL pointer, then the sqlite3_io_methods.xClose method +** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The +** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen] +** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element +** to NULL. +** +** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or +** [SQLITE_SYNC_FULL]. The first choice is the normal fsync(). +** The second choice is a Mac OS X style fullsync. The [SQLITE_SYNC_DATAONLY] +** flag may be ORed in to indicate that only the data of the file +** and not its inode needs to be synced. +** +** The integer values to xLock() and xUnlock() are one of +**
            +**
          • [SQLITE_LOCK_NONE], +**
          • [SQLITE_LOCK_SHARED], +**
          • [SQLITE_LOCK_RESERVED], +**
          • [SQLITE_LOCK_PENDING], or +**
          • [SQLITE_LOCK_EXCLUSIVE]. +**
          +** xLock() increases the lock. xUnlock() decreases the lock. +** The xCheckReservedLock() method checks whether any database connection, +** either in this process or in some other process, is holding a RESERVED, +** PENDING, or EXCLUSIVE lock on the file. It returns true +** if such a lock exists and false otherwise. +** +** The xFileControl() method is a generic interface that allows custom +** VFS implementations to directly control an open file using the +** [sqlite3_file_control()] interface. The second "op" argument is an +** integer opcode. The third argument is a generic pointer intended to +** point to a structure that may contain arguments or space in which to +** write return values. Potential uses for xFileControl() might be +** functions to enable blocking locks with timeouts, to change the +** locking strategy (for example to use dot-file locks), to inquire +** about the status of a lock, or to break stale locks. The SQLite +** core reserves all opcodes less than 100 for its own use. +** A [SQLITE_FCNTL_LOCKSTATE | list of opcodes] less than 100 is available. +** Applications that define a custom xFileControl method should use opcodes +** greater than 100 to avoid conflicts. VFS implementations should +** return [SQLITE_NOTFOUND] for file control opcodes that they do not +** recognize. +** +** The xSectorSize() method returns the sector size of the +** device that underlies the file. The sector size is the +** minimum write that can be performed without disturbing +** other bytes in the file. The xDeviceCharacteristics() +** method returns a bit vector describing behaviors of the +** underlying device: +** +**
            +**
          • [SQLITE_IOCAP_ATOMIC] +**
          • [SQLITE_IOCAP_ATOMIC512] +**
          • [SQLITE_IOCAP_ATOMIC1K] +**
          • [SQLITE_IOCAP_ATOMIC2K] +**
          • [SQLITE_IOCAP_ATOMIC4K] +**
          • [SQLITE_IOCAP_ATOMIC8K] +**
          • [SQLITE_IOCAP_ATOMIC16K] +**
          • [SQLITE_IOCAP_ATOMIC32K] +**
          • [SQLITE_IOCAP_ATOMIC64K] +**
          • [SQLITE_IOCAP_SAFE_APPEND] +**
          • [SQLITE_IOCAP_SEQUENTIAL] +**
          +** +** The SQLITE_IOCAP_ATOMIC property means that all writes of +** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values +** mean that writes of blocks that are nnn bytes in size and +** are aligned to an address which is an integer multiple of +** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means +** that when data is appended to a file, the data is appended +** first then the size of the file is extended, never the other +** way around. The SQLITE_IOCAP_SEQUENTIAL property means that +** information is written to disk in the same order as calls +** to xWrite(). +** +** If xRead() returns SQLITE_IOERR_SHORT_READ it must also fill +** in the unread portions of the buffer with zeros. A VFS that +** fails to zero-fill short reads might seem to work. However, +** failure to zero-fill short reads will eventually lead to +** database corruption. +*/ +typedef struct sqlite3_io_methods sqlite3_io_methods; +struct sqlite3_io_methods { + int iVersion; + int (*xClose)(sqlite3_file*); + int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); + int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); + int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); + int (*xSync)(sqlite3_file*, int flags); + int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); + int (*xLock)(sqlite3_file*, int); + int (*xUnlock)(sqlite3_file*, int); + int (*xCheckReservedLock)(sqlite3_file*, int *pResOut); + int (*xFileControl)(sqlite3_file*, int op, void *pArg); + int (*xSectorSize)(sqlite3_file*); + int (*xDeviceCharacteristics)(sqlite3_file*); + /* Methods above are valid for version 1 */ + int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**); + int (*xShmLock)(sqlite3_file*, int offset, int n, int flags); + void (*xShmBarrier)(sqlite3_file*); + int (*xShmUnmap)(sqlite3_file*, int deleteFlag); + /* Methods above are valid for version 2 */ + int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); + int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p); + /* Methods above are valid for version 3 */ + /* Additional methods may be added in future releases */ +}; + +/* +** CAPI3REF: Standard File Control Opcodes +** +** These integer constants are opcodes for the xFileControl method +** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] +** interface. +** +** The [SQLITE_FCNTL_LOCKSTATE] opcode is used for debugging. This +** opcode causes the xFileControl method to write the current state of +** the lock (one of [SQLITE_LOCK_NONE], [SQLITE_LOCK_SHARED], +** [SQLITE_LOCK_RESERVED], [SQLITE_LOCK_PENDING], or [SQLITE_LOCK_EXCLUSIVE]) +** into an integer that the pArg argument points to. This capability +** is used during testing and only needs to be supported when SQLITE_TEST +** is defined. +**
            +**
          • [[SQLITE_FCNTL_SIZE_HINT]] +** The [SQLITE_FCNTL_SIZE_HINT] opcode is used by SQLite to give the VFS +** layer a hint of how large the database file will grow to be during the +** current transaction. This hint is not guaranteed to be accurate but it +** is often close. The underlying VFS might choose to preallocate database +** file space based on this hint in order to help writes to the database +** file run faster. +** +**
          • [[SQLITE_FCNTL_CHUNK_SIZE]] +** The [SQLITE_FCNTL_CHUNK_SIZE] opcode is used to request that the VFS +** extends and truncates the database file in chunks of a size specified +** by the user. The fourth argument to [sqlite3_file_control()] should +** point to an integer (type int) containing the new chunk-size to use +** for the nominated database. Allocating database file space in large +** chunks (say 1MB at a time), may reduce file-system fragmentation and +** improve performance on some systems. +** +**
          • [[SQLITE_FCNTL_FILE_POINTER]] +** The [SQLITE_FCNTL_FILE_POINTER] opcode is used to obtain a pointer +** to the [sqlite3_file] object associated with a particular database +** connection. See the [sqlite3_file_control()] documentation for +** additional information. +** +**
          • [[SQLITE_FCNTL_SYNC_OMITTED]] +** No longer in use. +** +**
          • [[SQLITE_FCNTL_SYNC]] +** The [SQLITE_FCNTL_SYNC] opcode is generated internally by SQLite and +** sent to the VFS immediately before the xSync method is invoked on a +** database file descriptor. Or, if the xSync method is not invoked +** because the user has configured SQLite with +** [PRAGMA synchronous | PRAGMA synchronous=OFF] it is invoked in place +** of the xSync method. In most cases, the pointer argument passed with +** this file-control is NULL. However, if the database file is being synced +** as part of a multi-database commit, the argument points to a nul-terminated +** string containing the transactions master-journal file name. VFSes that +** do not need this signal should silently ignore this opcode. Applications +** should not call [sqlite3_file_control()] with this opcode as doing so may +** disrupt the operation of the specialized VFSes that do require it. +** +**
          • [[SQLITE_FCNTL_COMMIT_PHASETWO]] +** The [SQLITE_FCNTL_COMMIT_PHASETWO] opcode is generated internally by SQLite +** and sent to the VFS after a transaction has been committed immediately +** but before the database is unlocked. VFSes that do not need this signal +** should silently ignore this opcode. Applications should not call +** [sqlite3_file_control()] with this opcode as doing so may disrupt the +** operation of the specialized VFSes that do require it. +** +**
          • [[SQLITE_FCNTL_WIN32_AV_RETRY]] +** ^The [SQLITE_FCNTL_WIN32_AV_RETRY] opcode is used to configure automatic +** retry counts and intervals for certain disk I/O operations for the +** windows [VFS] in order to provide robustness in the presence of +** anti-virus programs. By default, the windows VFS will retry file read, +** file write, and file delete operations up to 10 times, with a delay +** of 25 milliseconds before the first retry and with the delay increasing +** by an additional 25 milliseconds with each subsequent retry. This +** opcode allows these two values (10 retries and 25 milliseconds of delay) +** to be adjusted. The values are changed for all database connections +** within the same process. The argument is a pointer to an array of two +** integers where the first integer i the new retry count and the second +** integer is the delay. If either integer is negative, then the setting +** is not changed but instead the prior value of that setting is written +** into the array entry, allowing the current retry settings to be +** interrogated. The zDbName parameter is ignored. +** +**
          • [[SQLITE_FCNTL_PERSIST_WAL]] +** ^The [SQLITE_FCNTL_PERSIST_WAL] opcode is used to set or query the +** persistent [WAL | Write Ahead Log] setting. By default, the auxiliary +** write ahead log and shared memory files used for transaction control +** are automatically deleted when the latest connection to the database +** closes. Setting persistent WAL mode causes those files to persist after +** close. Persisting the files is useful when other processes that do not +** have write permission on the directory containing the database file want +** to read the database file, as the WAL and shared memory files must exist +** in order for the database to be readable. The fourth parameter to +** [sqlite3_file_control()] for this opcode should be a pointer to an integer. +** That integer is 0 to disable persistent WAL mode or 1 to enable persistent +** WAL mode. If the integer is -1, then it is overwritten with the current +** WAL persistence setting. +** +**
          • [[SQLITE_FCNTL_POWERSAFE_OVERWRITE]] +** ^The [SQLITE_FCNTL_POWERSAFE_OVERWRITE] opcode is used to set or query the +** persistent "powersafe-overwrite" or "PSOW" setting. The PSOW setting +** determines the [SQLITE_IOCAP_POWERSAFE_OVERWRITE] bit of the +** xDeviceCharacteristics methods. The fourth parameter to +** [sqlite3_file_control()] for this opcode should be a pointer to an integer. +** That integer is 0 to disable zero-damage mode or 1 to enable zero-damage +** mode. If the integer is -1, then it is overwritten with the current +** zero-damage mode setting. +** +**
          • [[SQLITE_FCNTL_OVERWRITE]] +** ^The [SQLITE_FCNTL_OVERWRITE] opcode is invoked by SQLite after opening +** a write transaction to indicate that, unless it is rolled back for some +** reason, the entire database file will be overwritten by the current +** transaction. This is used by VACUUM operations. +** +**
          • [[SQLITE_FCNTL_VFSNAME]] +** ^The [SQLITE_FCNTL_VFSNAME] opcode can be used to obtain the names of +** all [VFSes] in the VFS stack. The names are of all VFS shims and the +** final bottom-level VFS are written into memory obtained from +** [sqlite3_malloc()] and the result is stored in the char* variable +** that the fourth parameter of [sqlite3_file_control()] points to. +** The caller is responsible for freeing the memory when done. As with +** all file-control actions, there is no guarantee that this will actually +** do anything. Callers should initialize the char* variable to a NULL +** pointer in case this file-control is not implemented. This file-control +** is intended for diagnostic use only. +** +**
          • [[SQLITE_FCNTL_PRAGMA]] +** ^Whenever a [PRAGMA] statement is parsed, an [SQLITE_FCNTL_PRAGMA] +** file control is sent to the open [sqlite3_file] object corresponding +** to the database file to which the pragma statement refers. ^The argument +** to the [SQLITE_FCNTL_PRAGMA] file control is an array of +** pointers to strings (char**) in which the second element of the array +** is the name of the pragma and the third element is the argument to the +** pragma or NULL if the pragma has no argument. ^The handler for an +** [SQLITE_FCNTL_PRAGMA] file control can optionally make the first element +** of the char** argument point to a string obtained from [sqlite3_mprintf()] +** or the equivalent and that string will become the result of the pragma or +** the error message if the pragma fails. ^If the +** [SQLITE_FCNTL_PRAGMA] file control returns [SQLITE_NOTFOUND], then normal +** [PRAGMA] processing continues. ^If the [SQLITE_FCNTL_PRAGMA] +** file control returns [SQLITE_OK], then the parser assumes that the +** VFS has handled the PRAGMA itself and the parser generates a no-op +** prepared statement. ^If the [SQLITE_FCNTL_PRAGMA] file control returns +** any result code other than [SQLITE_OK] or [SQLITE_NOTFOUND], that means +** that the VFS encountered an error while handling the [PRAGMA] and the +** compilation of the PRAGMA fails with an error. ^The [SQLITE_FCNTL_PRAGMA] +** file control occurs at the beginning of pragma statement analysis and so +** it is able to override built-in [PRAGMA] statements. +** +**
          • [[SQLITE_FCNTL_BUSYHANDLER]] +** ^The [SQLITE_FCNTL_BUSYHANDLER] +** file-control may be invoked by SQLite on the database file handle +** shortly after it is opened in order to provide a custom VFS with access +** to the connections busy-handler callback. The argument is of type (void **) +** - an array of two (void *) values. The first (void *) actually points +** to a function of type (int (*)(void *)). In order to invoke the connections +** busy-handler, this function should be invoked with the second (void *) in +** the array as the only argument. If it returns non-zero, then the operation +** should be retried. If it returns zero, the custom VFS should abandon the +** current operation. +** +**
          • [[SQLITE_FCNTL_TEMPFILENAME]] +** ^Application can invoke the [SQLITE_FCNTL_TEMPFILENAME] file-control +** to have SQLite generate a +** temporary filename using the same algorithm that is followed to generate +** temporary filenames for TEMP tables and other internal uses. The +** argument should be a char** which will be filled with the filename +** written into memory obtained from [sqlite3_malloc()]. The caller should +** invoke [sqlite3_free()] on the result to avoid a memory leak. +** +**
          • [[SQLITE_FCNTL_MMAP_SIZE]] +** The [SQLITE_FCNTL_MMAP_SIZE] file control is used to query or set the +** maximum number of bytes that will be used for memory-mapped I/O. +** The argument is a pointer to a value of type sqlite3_int64 that +** is an advisory maximum number of bytes in the file to memory map. The +** pointer is overwritten with the old value. The limit is not changed if +** the value originally pointed to is negative, and so the current limit +** can be queried by passing in a pointer to a negative number. This +** file-control is used internally to implement [PRAGMA mmap_size]. +** +**
          • [[SQLITE_FCNTL_TRACE]] +** The [SQLITE_FCNTL_TRACE] file control provides advisory information +** to the VFS about what the higher layers of the SQLite stack are doing. +** This file control is used by some VFS activity tracing [shims]. +** The argument is a zero-terminated string. Higher layers in the +** SQLite stack may generate instances of this file control if +** the [SQLITE_USE_FCNTL_TRACE] compile-time option is enabled. +** +**
          • [[SQLITE_FCNTL_HAS_MOVED]] +** The [SQLITE_FCNTL_HAS_MOVED] file control interprets its argument as a +** pointer to an integer and it writes a boolean into that integer depending +** on whether or not the file has been renamed, moved, or deleted since it +** was first opened. +** +**
          • [[SQLITE_FCNTL_WIN32_SET_HANDLE]] +** The [SQLITE_FCNTL_WIN32_SET_HANDLE] opcode is used for debugging. This +** opcode causes the xFileControl method to swap the file handle with the one +** pointed to by the pArg argument. This capability is used during testing +** and only needs to be supported when SQLITE_TEST is defined. +** +**
          +*/ +#define SQLITE_FCNTL_LOCKSTATE 1 +#define SQLITE_GET_LOCKPROXYFILE 2 +#define SQLITE_SET_LOCKPROXYFILE 3 +#define SQLITE_LAST_ERRNO 4 +#define SQLITE_FCNTL_SIZE_HINT 5 +#define SQLITE_FCNTL_CHUNK_SIZE 6 +#define SQLITE_FCNTL_FILE_POINTER 7 +#define SQLITE_FCNTL_SYNC_OMITTED 8 +#define SQLITE_FCNTL_WIN32_AV_RETRY 9 +#define SQLITE_FCNTL_PERSIST_WAL 10 +#define SQLITE_FCNTL_OVERWRITE 11 +#define SQLITE_FCNTL_VFSNAME 12 +#define SQLITE_FCNTL_POWERSAFE_OVERWRITE 13 +#define SQLITE_FCNTL_PRAGMA 14 +#define SQLITE_FCNTL_BUSYHANDLER 15 +#define SQLITE_FCNTL_TEMPFILENAME 16 +#define SQLITE_FCNTL_MMAP_SIZE 18 +#define SQLITE_FCNTL_TRACE 19 +#define SQLITE_FCNTL_HAS_MOVED 20 +#define SQLITE_FCNTL_SYNC 21 +#define SQLITE_FCNTL_COMMIT_PHASETWO 22 +#define SQLITE_FCNTL_WIN32_SET_HANDLE 23 + +/* +** CAPI3REF: Mutex Handle +** +** The mutex module within SQLite defines [sqlite3_mutex] to be an +** abstract type for a mutex object. The SQLite core never looks +** at the internal representation of an [sqlite3_mutex]. It only +** deals with pointers to the [sqlite3_mutex] object. +** +** Mutexes are created using [sqlite3_mutex_alloc()]. +*/ +typedef struct sqlite3_mutex sqlite3_mutex; + +/* +** CAPI3REF: OS Interface Object +** +** An instance of the sqlite3_vfs object defines the interface between +** the SQLite core and the underlying operating system. The "vfs" +** in the name of the object stands for "virtual file system". See +** the [VFS | VFS documentation] for further information. +** +** The value of the iVersion field is initially 1 but may be larger in +** future versions of SQLite. Additional fields may be appended to this +** object when the iVersion value is increased. Note that the structure +** of the sqlite3_vfs object changes in the transaction between +** SQLite version 3.5.9 and 3.6.0 and yet the iVersion field was not +** modified. +** +** The szOsFile field is the size of the subclassed [sqlite3_file] +** structure used by this VFS. mxPathname is the maximum length of +** a pathname in this VFS. +** +** Registered sqlite3_vfs objects are kept on a linked list formed by +** the pNext pointer. The [sqlite3_vfs_register()] +** and [sqlite3_vfs_unregister()] interfaces manage this list +** in a thread-safe way. The [sqlite3_vfs_find()] interface +** searches the list. Neither the application code nor the VFS +** implementation should use the pNext pointer. +** +** The pNext field is the only field in the sqlite3_vfs +** structure that SQLite will ever modify. SQLite will only access +** or modify this field while holding a particular static mutex. +** The application should never modify anything within the sqlite3_vfs +** object once the object has been registered. +** +** The zName field holds the name of the VFS module. The name must +** be unique across all VFS modules. +** +** [[sqlite3_vfs.xOpen]] +** ^SQLite guarantees that the zFilename parameter to xOpen +** is either a NULL pointer or string obtained +** from xFullPathname() with an optional suffix added. +** ^If a suffix is added to the zFilename parameter, it will +** consist of a single "-" character followed by no more than +** 11 alphanumeric and/or "-" characters. +** ^SQLite further guarantees that +** the string will be valid and unchanged until xClose() is +** called. Because of the previous sentence, +** the [sqlite3_file] can safely store a pointer to the +** filename if it needs to remember the filename for some reason. +** If the zFilename parameter to xOpen is a NULL pointer then xOpen +** must invent its own temporary name for the file. ^Whenever the +** xFilename parameter is NULL it will also be the case that the +** flags parameter will include [SQLITE_OPEN_DELETEONCLOSE]. +** +** The flags argument to xOpen() includes all bits set in +** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()] +** or [sqlite3_open16()] is used, then flags includes at least +** [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]. +** If xOpen() opens a file read-only then it sets *pOutFlags to +** include [SQLITE_OPEN_READONLY]. Other bits in *pOutFlags may be set. +** +** ^(SQLite will also add one of the following flags to the xOpen() +** call, depending on the object being opened: +** +**
            +**
          • [SQLITE_OPEN_MAIN_DB] +**
          • [SQLITE_OPEN_MAIN_JOURNAL] +**
          • [SQLITE_OPEN_TEMP_DB] +**
          • [SQLITE_OPEN_TEMP_JOURNAL] +**
          • [SQLITE_OPEN_TRANSIENT_DB] +**
          • [SQLITE_OPEN_SUBJOURNAL] +**
          • [SQLITE_OPEN_MASTER_JOURNAL] +**
          • [SQLITE_OPEN_WAL] +**
          )^ +** +** The file I/O implementation can use the object type flags to +** change the way it deals with files. For example, an application +** that does not care about crash recovery or rollback might make +** the open of a journal file a no-op. Writes to this journal would +** also be no-ops, and any attempt to read the journal would return +** SQLITE_IOERR. Or the implementation might recognize that a database +** file will be doing page-aligned sector reads and writes in a random +** order and set up its I/O subsystem accordingly. +** +** SQLite might also add one of the following flags to the xOpen method: +** +**
            +**
          • [SQLITE_OPEN_DELETEONCLOSE] +**
          • [SQLITE_OPEN_EXCLUSIVE] +**
          +** +** The [SQLITE_OPEN_DELETEONCLOSE] flag means the file should be +** deleted when it is closed. ^The [SQLITE_OPEN_DELETEONCLOSE] +** will be set for TEMP databases and their journals, transient +** databases, and subjournals. +** +** ^The [SQLITE_OPEN_EXCLUSIVE] flag is always used in conjunction +** with the [SQLITE_OPEN_CREATE] flag, which are both directly +** analogous to the O_EXCL and O_CREAT flags of the POSIX open() +** API. The SQLITE_OPEN_EXCLUSIVE flag, when paired with the +** SQLITE_OPEN_CREATE, is used to indicate that file should always +** be created, and that it is an error if it already exists. +** It is not used to indicate the file should be opened +** for exclusive access. +** +** ^At least szOsFile bytes of memory are allocated by SQLite +** to hold the [sqlite3_file] structure passed as the third +** argument to xOpen. The xOpen method does not have to +** allocate the structure; it should just fill it in. Note that +** the xOpen method must set the sqlite3_file.pMethods to either +** a valid [sqlite3_io_methods] object or to NULL. xOpen must do +** this even if the open fails. SQLite expects that the sqlite3_file.pMethods +** element will be valid after xOpen returns regardless of the success +** or failure of the xOpen call. +** +** [[sqlite3_vfs.xAccess]] +** ^The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS] +** to test for the existence of a file, or [SQLITE_ACCESS_READWRITE] to +** test whether a file is readable and writable, or [SQLITE_ACCESS_READ] +** to test whether a file is at least readable. The file can be a +** directory. +** +** ^SQLite will always allocate at least mxPathname+1 bytes for the +** output buffer xFullPathname. The exact size of the output buffer +** is also passed as a parameter to both methods. If the output buffer +** is not large enough, [SQLITE_CANTOPEN] should be returned. Since this is +** handled as a fatal error by SQLite, vfs implementations should endeavor +** to prevent this by setting mxPathname to a sufficiently large value. +** +** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64() +** interfaces are not strictly a part of the filesystem, but they are +** included in the VFS structure for completeness. +** The xRandomness() function attempts to return nBytes bytes +** of good-quality randomness into zOut. The return value is +** the actual number of bytes of randomness obtained. +** The xSleep() method causes the calling thread to sleep for at +** least the number of microseconds given. ^The xCurrentTime() +** method returns a Julian Day Number for the current date and time as +** a floating point value. +** ^The xCurrentTimeInt64() method returns, as an integer, the Julian +** Day Number multiplied by 86400000 (the number of milliseconds in +** a 24-hour day). +** ^SQLite will use the xCurrentTimeInt64() method to get the current +** date and time if that method is available (if iVersion is 2 or +** greater and the function pointer is not NULL) and will fall back +** to xCurrentTime() if xCurrentTimeInt64() is unavailable. +** +** ^The xSetSystemCall(), xGetSystemCall(), and xNestSystemCall() interfaces +** are not used by the SQLite core. These optional interfaces are provided +** by some VFSes to facilitate testing of the VFS code. By overriding +** system calls with functions under its control, a test program can +** simulate faults and error conditions that would otherwise be difficult +** or impossible to induce. The set of system calls that can be overridden +** varies from one VFS to another, and from one version of the same VFS to the +** next. Applications that use these interfaces must be prepared for any +** or all of these interfaces to be NULL or for their behavior to change +** from one release to the next. Applications must not attempt to access +** any of these methods if the iVersion of the VFS is less than 3. +*/ +typedef struct sqlite3_vfs sqlite3_vfs; +typedef void (*sqlite3_syscall_ptr)(void); +struct sqlite3_vfs { + int iVersion; /* Structure version number (currently 3) */ + int szOsFile; /* Size of subclassed sqlite3_file */ + int mxPathname; /* Maximum file pathname length */ + sqlite3_vfs *pNext; /* Next registered VFS */ + const char *zName; /* Name of this virtual file system */ + void *pAppData; /* Pointer to application-specific data */ + int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, + int flags, int *pOutFlags); + int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); + int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); + int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); + void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); + void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); + void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); + void (*xDlClose)(sqlite3_vfs*, void*); + int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); + int (*xSleep)(sqlite3_vfs*, int microseconds); + int (*xCurrentTime)(sqlite3_vfs*, double*); + int (*xGetLastError)(sqlite3_vfs*, int, char *); + /* + ** The methods above are in version 1 of the sqlite_vfs object + ** definition. Those that follow are added in version 2 or later + */ + int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); + /* + ** The methods above are in versions 1 and 2 of the sqlite_vfs object. + ** Those below are for version 3 and greater. + */ + int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); + sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); + const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); + /* + ** The methods above are in versions 1 through 3 of the sqlite_vfs object. + ** New fields may be appended in figure versions. The iVersion + ** value will increment whenever this happens. + */ +}; + +/* +** CAPI3REF: Flags for the xAccess VFS method +** +** These integer constants can be used as the third parameter to +** the xAccess method of an [sqlite3_vfs] object. They determine +** what kind of permissions the xAccess method is looking for. +** With SQLITE_ACCESS_EXISTS, the xAccess method +** simply checks whether the file exists. +** With SQLITE_ACCESS_READWRITE, the xAccess method +** checks whether the named directory is both readable and writable +** (in other words, if files can be added, removed, and renamed within +** the directory). +** The SQLITE_ACCESS_READWRITE constant is currently used only by the +** [temp_store_directory pragma], though this could change in a future +** release of SQLite. +** With SQLITE_ACCESS_READ, the xAccess method +** checks whether the file is readable. The SQLITE_ACCESS_READ constant is +** currently unused, though it might be used in a future release of +** SQLite. +*/ +#define SQLITE_ACCESS_EXISTS 0 +#define SQLITE_ACCESS_READWRITE 1 /* Used by PRAGMA temp_store_directory */ +#define SQLITE_ACCESS_READ 2 /* Unused */ + +/* +** CAPI3REF: Flags for the xShmLock VFS method +** +** These integer constants define the various locking operations +** allowed by the xShmLock method of [sqlite3_io_methods]. The +** following are the only legal combinations of flags to the +** xShmLock method: +** +**
            +**
          • SQLITE_SHM_LOCK | SQLITE_SHM_SHARED +**
          • SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE +**
          • SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED +**
          • SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE +**
          +** +** When unlocking, the same SHARED or EXCLUSIVE flag must be supplied as +** was given no the corresponding lock. +** +** The xShmLock method can transition between unlocked and SHARED or +** between unlocked and EXCLUSIVE. It cannot transition between SHARED +** and EXCLUSIVE. +*/ +#define SQLITE_SHM_UNLOCK 1 +#define SQLITE_SHM_LOCK 2 +#define SQLITE_SHM_SHARED 4 +#define SQLITE_SHM_EXCLUSIVE 8 + +/* +** CAPI3REF: Maximum xShmLock index +** +** The xShmLock method on [sqlite3_io_methods] may use values +** between 0 and this upper bound as its "offset" argument. +** The SQLite core will never attempt to acquire or release a +** lock outside of this range +*/ +#define SQLITE_SHM_NLOCK 8 + + +/* +** CAPI3REF: Initialize The SQLite Library +** +** ^The sqlite3_initialize() routine initializes the +** SQLite library. ^The sqlite3_shutdown() routine +** deallocates any resources that were allocated by sqlite3_initialize(). +** These routines are designed to aid in process initialization and +** shutdown on embedded systems. Workstation applications using +** SQLite normally do not need to invoke either of these routines. +** +** A call to sqlite3_initialize() is an "effective" call if it is +** the first time sqlite3_initialize() is invoked during the lifetime of +** the process, or if it is the first time sqlite3_initialize() is invoked +** following a call to sqlite3_shutdown(). ^(Only an effective call +** of sqlite3_initialize() does any initialization. All other calls +** are harmless no-ops.)^ +** +** A call to sqlite3_shutdown() is an "effective" call if it is the first +** call to sqlite3_shutdown() since the last sqlite3_initialize(). ^(Only +** an effective call to sqlite3_shutdown() does any deinitialization. +** All other valid calls to sqlite3_shutdown() are harmless no-ops.)^ +** +** The sqlite3_initialize() interface is threadsafe, but sqlite3_shutdown() +** is not. The sqlite3_shutdown() interface must only be called from a +** single thread. All open [database connections] must be closed and all +** other SQLite resources must be deallocated prior to invoking +** sqlite3_shutdown(). +** +** Among other things, ^sqlite3_initialize() will invoke +** sqlite3_os_init(). Similarly, ^sqlite3_shutdown() +** will invoke sqlite3_os_end(). +** +** ^The sqlite3_initialize() routine returns [SQLITE_OK] on success. +** ^If for some reason, sqlite3_initialize() is unable to initialize +** the library (perhaps it is unable to allocate a needed resource such +** as a mutex) it returns an [error code] other than [SQLITE_OK]. +** +** ^The sqlite3_initialize() routine is called internally by many other +** SQLite interfaces so that an application usually does not need to +** invoke sqlite3_initialize() directly. For example, [sqlite3_open()] +** calls sqlite3_initialize() so the SQLite library will be automatically +** initialized when [sqlite3_open()] is called if it has not be initialized +** already. ^However, if SQLite is compiled with the [SQLITE_OMIT_AUTOINIT] +** compile-time option, then the automatic calls to sqlite3_initialize() +** are omitted and the application must call sqlite3_initialize() directly +** prior to using any other SQLite interface. For maximum portability, +** it is recommended that applications always invoke sqlite3_initialize() +** directly prior to using any other SQLite interface. Future releases +** of SQLite may require this. In other words, the behavior exhibited +** when SQLite is compiled with [SQLITE_OMIT_AUTOINIT] might become the +** default behavior in some future release of SQLite. +** +** The sqlite3_os_init() routine does operating-system specific +** initialization of the SQLite library. The sqlite3_os_end() +** routine undoes the effect of sqlite3_os_init(). Typical tasks +** performed by these routines include allocation or deallocation +** of static resources, initialization of global variables, +** setting up a default [sqlite3_vfs] module, or setting up +** a default configuration using [sqlite3_config()]. +** +** The application should never invoke either sqlite3_os_init() +** or sqlite3_os_end() directly. The application should only invoke +** sqlite3_initialize() and sqlite3_shutdown(). The sqlite3_os_init() +** interface is called automatically by sqlite3_initialize() and +** sqlite3_os_end() is called by sqlite3_shutdown(). Appropriate +** implementations for sqlite3_os_init() and sqlite3_os_end() +** are built into SQLite when it is compiled for Unix, Windows, or OS/2. +** When [custom builds | built for other platforms] +** (using the [SQLITE_OS_OTHER=1] compile-time +** option) the application must supply a suitable implementation for +** sqlite3_os_init() and sqlite3_os_end(). An application-supplied +** implementation of sqlite3_os_init() or sqlite3_os_end() +** must return [SQLITE_OK] on success and some other [error code] upon +** failure. +*/ +SQLITE_API int sqlite3_initialize(void); +SQLITE_API int sqlite3_shutdown(void); +SQLITE_API int sqlite3_os_init(void); +SQLITE_API int sqlite3_os_end(void); + +/* +** CAPI3REF: Configuring The SQLite Library +** +** The sqlite3_config() interface is used to make global configuration +** changes to SQLite in order to tune SQLite to the specific needs of +** the application. The default configuration is recommended for most +** applications and so this routine is usually not necessary. It is +** provided to support rare applications with unusual needs. +** +** The sqlite3_config() interface is not threadsafe. The application +** must insure that no other SQLite interfaces are invoked by other +** threads while sqlite3_config() is running. Furthermore, sqlite3_config() +** may only be invoked prior to library initialization using +** [sqlite3_initialize()] or after shutdown by [sqlite3_shutdown()]. +** ^If sqlite3_config() is called after [sqlite3_initialize()] and before +** [sqlite3_shutdown()] then it will return SQLITE_MISUSE. +** Note, however, that ^sqlite3_config() can be called as part of the +** implementation of an application-defined [sqlite3_os_init()]. +** +** The first argument to sqlite3_config() is an integer +** [configuration option] that determines +** what property of SQLite is to be configured. Subsequent arguments +** vary depending on the [configuration option] +** in the first argument. +** +** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK]. +** ^If the option is unknown or SQLite is unable to set the option +** then this routine returns a non-zero [error code]. +*/ +SQLITE_API int sqlite3_config(int, ...); + +/* +** CAPI3REF: Configure database connections +** +** The sqlite3_db_config() interface is used to make configuration +** changes to a [database connection]. The interface is similar to +** [sqlite3_config()] except that the changes apply to a single +** [database connection] (specified in the first argument). +** +** The second argument to sqlite3_db_config(D,V,...) is the +** [SQLITE_DBCONFIG_LOOKASIDE | configuration verb] - an integer code +** that indicates what aspect of the [database connection] is being configured. +** Subsequent arguments vary depending on the configuration verb. +** +** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if +** the call is considered successful. +*/ +SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...); + +/* +** CAPI3REF: Memory Allocation Routines +** +** An instance of this object defines the interface between SQLite +** and low-level memory allocation routines. +** +** This object is used in only one place in the SQLite interface. +** A pointer to an instance of this object is the argument to +** [sqlite3_config()] when the configuration option is +** [SQLITE_CONFIG_MALLOC] or [SQLITE_CONFIG_GETMALLOC]. +** By creating an instance of this object +** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC]) +** during configuration, an application can specify an alternative +** memory allocation subsystem for SQLite to use for all of its +** dynamic memory needs. +** +** Note that SQLite comes with several [built-in memory allocators] +** that are perfectly adequate for the overwhelming majority of applications +** and that this object is only useful to a tiny minority of applications +** with specialized memory allocation requirements. This object is +** also used during testing of SQLite in order to specify an alternative +** memory allocator that simulates memory out-of-memory conditions in +** order to verify that SQLite recovers gracefully from such +** conditions. +** +** The xMalloc, xRealloc, and xFree methods must work like the +** malloc(), realloc() and free() functions from the standard C library. +** ^SQLite guarantees that the second argument to +** xRealloc is always a value returned by a prior call to xRoundup. +** +** xSize should return the allocated size of a memory allocation +** previously obtained from xMalloc or xRealloc. The allocated size +** is always at least as big as the requested size but may be larger. +** +** The xRoundup method returns what would be the allocated size of +** a memory allocation given a particular requested size. Most memory +** allocators round up memory allocations at least to the next multiple +** of 8. Some allocators round up to a larger multiple or to a power of 2. +** Every memory allocation request coming in through [sqlite3_malloc()] +** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0, +** that causes the corresponding memory allocation to fail. +** +** The xInit method initializes the memory allocator. For example, +** it might allocate any require mutexes or initialize internal data +** structures. The xShutdown method is invoked (indirectly) by +** [sqlite3_shutdown()] and should deallocate any resources acquired +** by xInit. The pAppData pointer is used as the only parameter to +** xInit and xShutdown. +** +** SQLite holds the [SQLITE_MUTEX_STATIC_MASTER] mutex when it invokes +** the xInit method, so the xInit method need not be threadsafe. The +** xShutdown method is only called from [sqlite3_shutdown()] so it does +** not need to be threadsafe either. For all other methods, SQLite +** holds the [SQLITE_MUTEX_STATIC_MEM] mutex as long as the +** [SQLITE_CONFIG_MEMSTATUS] configuration option is turned on (which +** it is by default) and so the methods are automatically serialized. +** However, if [SQLITE_CONFIG_MEMSTATUS] is disabled, then the other +** methods must be threadsafe or else make their own arrangements for +** serialization. +** +** SQLite will never invoke xInit() more than once without an intervening +** call to xShutdown(). +*/ +typedef struct sqlite3_mem_methods sqlite3_mem_methods; +struct sqlite3_mem_methods { + void *(*xMalloc)(int); /* Memory allocation function */ + void (*xFree)(void*); /* Free a prior allocation */ + void *(*xRealloc)(void*,int); /* Resize an allocation */ + int (*xSize)(void*); /* Return the size of an allocation */ + int (*xRoundup)(int); /* Round up request size to allocation size */ + int (*xInit)(void*); /* Initialize the memory allocator */ + void (*xShutdown)(void*); /* Deinitialize the memory allocator */ + void *pAppData; /* Argument to xInit() and xShutdown() */ +}; + +/* +** CAPI3REF: Configuration Options +** KEYWORDS: {configuration option} +** +** These constants are the available integer configuration options that +** can be passed as the first argument to the [sqlite3_config()] interface. +** +** New configuration options may be added in future releases of SQLite. +** Existing configuration options might be discontinued. Applications +** should check the return code from [sqlite3_config()] to make sure that +** the call worked. The [sqlite3_config()] interface will return a +** non-zero [error code] if a discontinued or unsupported configuration option +** is invoked. +** +**
          +** [[SQLITE_CONFIG_SINGLETHREAD]]
          SQLITE_CONFIG_SINGLETHREAD
          +**
          There are no arguments to this option. ^This option sets the +** [threading mode] to Single-thread. In other words, it disables +** all mutexing and puts SQLite into a mode where it can only be used +** by a single thread. ^If SQLite is compiled with +** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then +** it is not possible to change the [threading mode] from its default +** value of Single-thread and so [sqlite3_config()] will return +** [SQLITE_ERROR] if called with the SQLITE_CONFIG_SINGLETHREAD +** configuration option.
          +** +** [[SQLITE_CONFIG_MULTITHREAD]]
          SQLITE_CONFIG_MULTITHREAD
          +**
          There are no arguments to this option. ^This option sets the +** [threading mode] to Multi-thread. In other words, it disables +** mutexing on [database connection] and [prepared statement] objects. +** The application is responsible for serializing access to +** [database connections] and [prepared statements]. But other mutexes +** are enabled so that SQLite will be safe to use in a multi-threaded +** environment as long as no two threads attempt to use the same +** [database connection] at the same time. ^If SQLite is compiled with +** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then +** it is not possible to set the Multi-thread [threading mode] and +** [sqlite3_config()] will return [SQLITE_ERROR] if called with the +** SQLITE_CONFIG_MULTITHREAD configuration option.
          +** +** [[SQLITE_CONFIG_SERIALIZED]]
          SQLITE_CONFIG_SERIALIZED
          +**
          There are no arguments to this option. ^This option sets the +** [threading mode] to Serialized. In other words, this option enables +** all mutexes including the recursive +** mutexes on [database connection] and [prepared statement] objects. +** In this mode (which is the default when SQLite is compiled with +** [SQLITE_THREADSAFE=1]) the SQLite library will itself serialize access +** to [database connections] and [prepared statements] so that the +** application is free to use the same [database connection] or the +** same [prepared statement] in different threads at the same time. +** ^If SQLite is compiled with +** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then +** it is not possible to set the Serialized [threading mode] and +** [sqlite3_config()] will return [SQLITE_ERROR] if called with the +** SQLITE_CONFIG_SERIALIZED configuration option.
          +** +** [[SQLITE_CONFIG_MALLOC]]
          SQLITE_CONFIG_MALLOC
          +**
          ^(This option takes a single argument which is a pointer to an +** instance of the [sqlite3_mem_methods] structure. The argument specifies +** alternative low-level memory allocation routines to be used in place of +** the memory allocation routines built into SQLite.)^ ^SQLite makes +** its own private copy of the content of the [sqlite3_mem_methods] structure +** before the [sqlite3_config()] call returns.
          +** +** [[SQLITE_CONFIG_GETMALLOC]]
          SQLITE_CONFIG_GETMALLOC
          +**
          ^(This option takes a single argument which is a pointer to an +** instance of the [sqlite3_mem_methods] structure. The [sqlite3_mem_methods] +** structure is filled with the currently defined memory allocation routines.)^ +** This option can be used to overload the default memory allocation +** routines with a wrapper that simulations memory allocation failure or +** tracks memory usage, for example.
          +** +** [[SQLITE_CONFIG_MEMSTATUS]]
          SQLITE_CONFIG_MEMSTATUS
          +**
          ^This option takes single argument of type int, interpreted as a +** boolean, which enables or disables the collection of memory allocation +** statistics. ^(When memory allocation statistics are disabled, the +** following SQLite interfaces become non-operational: +**
            +**
          • [sqlite3_memory_used()] +**
          • [sqlite3_memory_highwater()] +**
          • [sqlite3_soft_heap_limit64()] +**
          • [sqlite3_status()] +**
          )^ +** ^Memory allocation statistics are enabled by default unless SQLite is +** compiled with [SQLITE_DEFAULT_MEMSTATUS]=0 in which case memory +** allocation statistics are disabled by default. +**
          +** +** [[SQLITE_CONFIG_SCRATCH]]
          SQLITE_CONFIG_SCRATCH
          +**
          ^This option specifies a static memory buffer that SQLite can use for +** scratch memory. There are three arguments: A pointer an 8-byte +** aligned memory buffer from which the scratch allocations will be +** drawn, the size of each scratch allocation (sz), +** and the maximum number of scratch allocations (N). The sz +** argument must be a multiple of 16. +** The first argument must be a pointer to an 8-byte aligned buffer +** of at least sz*N bytes of memory. +** ^SQLite will use no more than two scratch buffers per thread. So +** N should be set to twice the expected maximum number of threads. +** ^SQLite will never require a scratch buffer that is more than 6 +** times the database page size. ^If SQLite needs needs additional +** scratch memory beyond what is provided by this configuration option, then +** [sqlite3_malloc()] will be used to obtain the memory needed.
          +** +** [[SQLITE_CONFIG_PAGECACHE]]
          SQLITE_CONFIG_PAGECACHE
          +**
          ^This option specifies a static memory buffer that SQLite can use for +** the database page cache with the default page cache implementation. +** This configuration should not be used if an application-define page +** cache implementation is loaded using the SQLITE_CONFIG_PCACHE2 option. +** There are three arguments to this option: A pointer to 8-byte aligned +** memory, the size of each page buffer (sz), and the number of pages (N). +** The sz argument should be the size of the largest database page +** (a power of two between 512 and 32768) plus a little extra for each +** page header. ^The page header size is 20 to 40 bytes depending on +** the host architecture. ^It is harmless, apart from the wasted memory, +** to make sz a little too large. The first +** argument should point to an allocation of at least sz*N bytes of memory. +** ^SQLite will use the memory provided by the first argument to satisfy its +** memory needs for the first N pages that it adds to cache. ^If additional +** page cache memory is needed beyond what is provided by this option, then +** SQLite goes to [sqlite3_malloc()] for the additional storage space. +** The pointer in the first argument must +** be aligned to an 8-byte boundary or subsequent behavior of SQLite +** will be undefined.
          +** +** [[SQLITE_CONFIG_HEAP]]
          SQLITE_CONFIG_HEAP
          +**
          ^This option specifies a static memory buffer that SQLite will use +** for all of its dynamic memory allocation needs beyond those provided +** for by [SQLITE_CONFIG_SCRATCH] and [SQLITE_CONFIG_PAGECACHE]. +** There are three arguments: An 8-byte aligned pointer to the memory, +** the number of bytes in the memory buffer, and the minimum allocation size. +** ^If the first pointer (the memory pointer) is NULL, then SQLite reverts +** to using its default memory allocator (the system malloc() implementation), +** undoing any prior invocation of [SQLITE_CONFIG_MALLOC]. ^If the +** memory pointer is not NULL and either [SQLITE_ENABLE_MEMSYS3] or +** [SQLITE_ENABLE_MEMSYS5] are defined, then the alternative memory +** allocator is engaged to handle all of SQLites memory allocation needs. +** The first pointer (the memory pointer) must be aligned to an 8-byte +** boundary or subsequent behavior of SQLite will be undefined. +** The minimum allocation size is capped at 2**12. Reasonable values +** for the minimum allocation size are 2**5 through 2**8.
          +** +** [[SQLITE_CONFIG_MUTEX]]
          SQLITE_CONFIG_MUTEX
          +**
          ^(This option takes a single argument which is a pointer to an +** instance of the [sqlite3_mutex_methods] structure. The argument specifies +** alternative low-level mutex routines to be used in place +** the mutex routines built into SQLite.)^ ^SQLite makes a copy of the +** content of the [sqlite3_mutex_methods] structure before the call to +** [sqlite3_config()] returns. ^If SQLite is compiled with +** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then +** the entire mutexing subsystem is omitted from the build and hence calls to +** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will +** return [SQLITE_ERROR].
          +** +** [[SQLITE_CONFIG_GETMUTEX]]
          SQLITE_CONFIG_GETMUTEX
          +**
          ^(This option takes a single argument which is a pointer to an +** instance of the [sqlite3_mutex_methods] structure. The +** [sqlite3_mutex_methods] +** structure is filled with the currently defined mutex routines.)^ +** This option can be used to overload the default mutex allocation +** routines with a wrapper used to track mutex usage for performance +** profiling or testing, for example. ^If SQLite is compiled with +** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then +** the entire mutexing subsystem is omitted from the build and hence calls to +** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will +** return [SQLITE_ERROR].
          +** +** [[SQLITE_CONFIG_LOOKASIDE]]
          SQLITE_CONFIG_LOOKASIDE
          +**
          ^(This option takes two arguments that determine the default +** memory allocation for the lookaside memory allocator on each +** [database connection]. The first argument is the +** size of each lookaside buffer slot and the second is the number of +** slots allocated to each database connection.)^ ^(This option sets the +** default lookaside size. The [SQLITE_DBCONFIG_LOOKASIDE] +** verb to [sqlite3_db_config()] can be used to change the lookaside +** configuration on individual connections.)^
          +** +** [[SQLITE_CONFIG_PCACHE2]]
          SQLITE_CONFIG_PCACHE2
          +**
          ^(This option takes a single argument which is a pointer to +** an [sqlite3_pcache_methods2] object. This object specifies the interface +** to a custom page cache implementation.)^ ^SQLite makes a copy of the +** object and uses it for page cache memory allocations.
          +** +** [[SQLITE_CONFIG_GETPCACHE2]]
          SQLITE_CONFIG_GETPCACHE2
          +**
          ^(This option takes a single argument which is a pointer to an +** [sqlite3_pcache_methods2] object. SQLite copies of the current +** page cache implementation into that object.)^
          +** +** [[SQLITE_CONFIG_LOG]]
          SQLITE_CONFIG_LOG
          +**
          The SQLITE_CONFIG_LOG option is used to configure the SQLite +** global [error log]. +** (^The SQLITE_CONFIG_LOG option takes two arguments: a pointer to a +** function with a call signature of void(*)(void*,int,const char*), +** and a pointer to void. ^If the function pointer is not NULL, it is +** invoked by [sqlite3_log()] to process each logging event. ^If the +** function pointer is NULL, the [sqlite3_log()] interface becomes a no-op. +** ^The void pointer that is the second argument to SQLITE_CONFIG_LOG is +** passed through as the first parameter to the application-defined logger +** function whenever that function is invoked. ^The second parameter to +** the logger function is a copy of the first parameter to the corresponding +** [sqlite3_log()] call and is intended to be a [result code] or an +** [extended result code]. ^The third parameter passed to the logger is +** log message after formatting via [sqlite3_snprintf()]. +** The SQLite logging interface is not reentrant; the logger function +** supplied by the application must not invoke any SQLite interface. +** In a multi-threaded application, the application-defined logger +** function must be threadsafe.
          +** +** [[SQLITE_CONFIG_URI]]
          SQLITE_CONFIG_URI +**
          ^(This option takes a single argument of type int. If non-zero, then +** URI handling is globally enabled. If the parameter is zero, then URI handling +** is globally disabled.)^ ^If URI handling is globally enabled, all filenames +** passed to [sqlite3_open()], [sqlite3_open_v2()], [sqlite3_open16()] or +** specified as part of [ATTACH] commands are interpreted as URIs, regardless +** of whether or not the [SQLITE_OPEN_URI] flag is set when the database +** connection is opened. ^If it is globally disabled, filenames are +** only interpreted as URIs if the SQLITE_OPEN_URI flag is set when the +** database connection is opened. ^(By default, URI handling is globally +** disabled. The default value may be changed by compiling with the +** [SQLITE_USE_URI] symbol defined.)^ +** +** [[SQLITE_CONFIG_COVERING_INDEX_SCAN]]
          SQLITE_CONFIG_COVERING_INDEX_SCAN +**
          ^This option takes a single integer argument which is interpreted as +** a boolean in order to enable or disable the use of covering indices for +** full table scans in the query optimizer. ^The default setting is determined +** by the [SQLITE_ALLOW_COVERING_INDEX_SCAN] compile-time option, or is "on" +** if that compile-time option is omitted. +** The ability to disable the use of covering indices for full table scans +** is because some incorrectly coded legacy applications might malfunction +** when the optimization is enabled. Providing the ability to +** disable the optimization allows the older, buggy application code to work +** without change even with newer versions of SQLite. +** +** [[SQLITE_CONFIG_PCACHE]] [[SQLITE_CONFIG_GETPCACHE]] +**
          SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE +**
          These options are obsolete and should not be used by new code. +** They are retained for backwards compatibility but are now no-ops. +**
          +** +** [[SQLITE_CONFIG_SQLLOG]] +**
          SQLITE_CONFIG_SQLLOG +**
          This option is only available if sqlite is compiled with the +** [SQLITE_ENABLE_SQLLOG] pre-processor macro defined. The first argument should +** be a pointer to a function of type void(*)(void*,sqlite3*,const char*, int). +** The second should be of type (void*). The callback is invoked by the library +** in three separate circumstances, identified by the value passed as the +** fourth parameter. If the fourth parameter is 0, then the database connection +** passed as the second argument has just been opened. The third argument +** points to a buffer containing the name of the main database file. If the +** fourth parameter is 1, then the SQL statement that the third parameter +** points to has just been executed. Or, if the fourth parameter is 2, then +** the connection being passed as the second parameter is being closed. The +** third parameter is passed NULL In this case. An example of using this +** configuration option can be seen in the "test_sqllog.c" source file in +** the canonical SQLite source tree.
          +** +** [[SQLITE_CONFIG_MMAP_SIZE]] +**
          SQLITE_CONFIG_MMAP_SIZE +**
          ^SQLITE_CONFIG_MMAP_SIZE takes two 64-bit integer (sqlite3_int64) values +** that are the default mmap size limit (the default setting for +** [PRAGMA mmap_size]) and the maximum allowed mmap size limit. +** ^The default setting can be overridden by each database connection using +** either the [PRAGMA mmap_size] command, or by using the +** [SQLITE_FCNTL_MMAP_SIZE] file control. ^(The maximum allowed mmap size +** cannot be changed at run-time. Nor may the maximum allowed mmap size +** exceed the compile-time maximum mmap size set by the +** [SQLITE_MAX_MMAP_SIZE] compile-time option.)^ +** ^If either argument to this option is negative, then that argument is +** changed to its compile-time default. +** +** [[SQLITE_CONFIG_WIN32_HEAPSIZE]] +**
          SQLITE_CONFIG_WIN32_HEAPSIZE +**
          ^This option is only available if SQLite is compiled for Windows +** with the [SQLITE_WIN32_MALLOC] pre-processor macro defined. +** SQLITE_CONFIG_WIN32_HEAPSIZE takes a 32-bit unsigned integer value +** that specifies the maximum size of the created heap. +**
          +*/ +#define SQLITE_CONFIG_SINGLETHREAD 1 /* nil */ +#define SQLITE_CONFIG_MULTITHREAD 2 /* nil */ +#define SQLITE_CONFIG_SERIALIZED 3 /* nil */ +#define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */ +#define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */ +#define SQLITE_CONFIG_SCRATCH 6 /* void*, int sz, int N */ +#define SQLITE_CONFIG_PAGECACHE 7 /* void*, int sz, int N */ +#define SQLITE_CONFIG_HEAP 8 /* void*, int nByte, int min */ +#define SQLITE_CONFIG_MEMSTATUS 9 /* boolean */ +#define SQLITE_CONFIG_MUTEX 10 /* sqlite3_mutex_methods* */ +#define SQLITE_CONFIG_GETMUTEX 11 /* sqlite3_mutex_methods* */ +/* previously SQLITE_CONFIG_CHUNKALLOC 12 which is now unused. */ +#define SQLITE_CONFIG_LOOKASIDE 13 /* int int */ +#define SQLITE_CONFIG_PCACHE 14 /* no-op */ +#define SQLITE_CONFIG_GETPCACHE 15 /* no-op */ +#define SQLITE_CONFIG_LOG 16 /* xFunc, void* */ +#define SQLITE_CONFIG_URI 17 /* int */ +#define SQLITE_CONFIG_PCACHE2 18 /* sqlite3_pcache_methods2* */ +#define SQLITE_CONFIG_GETPCACHE2 19 /* sqlite3_pcache_methods2* */ +#define SQLITE_CONFIG_COVERING_INDEX_SCAN 20 /* int */ +#define SQLITE_CONFIG_SQLLOG 21 /* xSqllog, void* */ +#define SQLITE_CONFIG_MMAP_SIZE 22 /* sqlite3_int64, sqlite3_int64 */ +#define SQLITE_CONFIG_WIN32_HEAPSIZE 23 /* int nByte */ + +/* +** CAPI3REF: Database Connection Configuration Options +** +** These constants are the available integer configuration options that +** can be passed as the second argument to the [sqlite3_db_config()] interface. +** +** New configuration options may be added in future releases of SQLite. +** Existing configuration options might be discontinued. Applications +** should check the return code from [sqlite3_db_config()] to make sure that +** the call worked. ^The [sqlite3_db_config()] interface will return a +** non-zero [error code] if a discontinued or unsupported configuration option +** is invoked. +** +**
          +**
          SQLITE_DBCONFIG_LOOKASIDE
          +**
          ^This option takes three additional arguments that determine the +** [lookaside memory allocator] configuration for the [database connection]. +** ^The first argument (the third parameter to [sqlite3_db_config()] is a +** pointer to a memory buffer to use for lookaside memory. +** ^The first argument after the SQLITE_DBCONFIG_LOOKASIDE verb +** may be NULL in which case SQLite will allocate the +** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the +** size of each lookaside buffer slot. ^The third argument is the number of +** slots. The size of the buffer in the first argument must be greater than +** or equal to the product of the second and third arguments. The buffer +** must be aligned to an 8-byte boundary. ^If the second argument to +** SQLITE_DBCONFIG_LOOKASIDE is not a multiple of 8, it is internally +** rounded down to the next smaller multiple of 8. ^(The lookaside memory +** configuration for a database connection can only be changed when that +** connection is not currently using lookaside memory, or in other words +** when the "current value" returned by +** [sqlite3_db_status](D,[SQLITE_CONFIG_LOOKASIDE],...) is zero. +** Any attempt to change the lookaside memory configuration when lookaside +** memory is in use leaves the configuration unchanged and returns +** [SQLITE_BUSY].)^
          +** +**
          SQLITE_DBCONFIG_ENABLE_FKEY
          +**
          ^This option is used to enable or disable the enforcement of +** [foreign key constraints]. There should be two additional arguments. +** The first argument is an integer which is 0 to disable FK enforcement, +** positive to enable FK enforcement or negative to leave FK enforcement +** unchanged. The second parameter is a pointer to an integer into which +** is written 0 or 1 to indicate whether FK enforcement is off or on +** following this call. The second parameter may be a NULL pointer, in +** which case the FK enforcement setting is not reported back.
          +** +**
          SQLITE_DBCONFIG_ENABLE_TRIGGER
          +**
          ^This option is used to enable or disable [CREATE TRIGGER | triggers]. +** There should be two additional arguments. +** The first argument is an integer which is 0 to disable triggers, +** positive to enable triggers or negative to leave the setting unchanged. +** The second parameter is a pointer to an integer into which +** is written 0 or 1 to indicate whether triggers are disabled or enabled +** following this call. The second parameter may be a NULL pointer, in +** which case the trigger setting is not reported back.
          +** +**
          +*/ +#define SQLITE_DBCONFIG_LOOKASIDE 1001 /* void* int int */ +#define SQLITE_DBCONFIG_ENABLE_FKEY 1002 /* int int* */ +#define SQLITE_DBCONFIG_ENABLE_TRIGGER 1003 /* int int* */ + + +/* +** CAPI3REF: Enable Or Disable Extended Result Codes +** +** ^The sqlite3_extended_result_codes() routine enables or disables the +** [extended result codes] feature of SQLite. ^The extended result +** codes are disabled by default for historical compatibility. +*/ +SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff); + +/* +** CAPI3REF: Last Insert Rowid +** +** ^Each entry in most SQLite tables (except for [WITHOUT ROWID] tables) +** has a unique 64-bit signed +** integer key called the [ROWID | "rowid"]. ^The rowid is always available +** as an undeclared column named ROWID, OID, or _ROWID_ as long as those +** names are not also used by explicitly declared columns. ^If +** the table has a column of type [INTEGER PRIMARY KEY] then that column +** is another alias for the rowid. +** +** ^The sqlite3_last_insert_rowid(D) interface returns the [rowid] of the +** most recent successful [INSERT] into a rowid table or [virtual table] +** on database connection D. +** ^Inserts into [WITHOUT ROWID] tables are not recorded. +** ^If no successful [INSERT]s into rowid tables +** have ever occurred on the database connection D, +** then sqlite3_last_insert_rowid(D) returns zero. +** +** ^(If an [INSERT] occurs within a trigger or within a [virtual table] +** method, then this routine will return the [rowid] of the inserted +** row as long as the trigger or virtual table method is running. +** But once the trigger or virtual table method ends, the value returned +** by this routine reverts to what it was before the trigger or virtual +** table method began.)^ +** +** ^An [INSERT] that fails due to a constraint violation is not a +** successful [INSERT] and does not change the value returned by this +** routine. ^Thus INSERT OR FAIL, INSERT OR IGNORE, INSERT OR ROLLBACK, +** and INSERT OR ABORT make no changes to the return value of this +** routine when their insertion fails. ^(When INSERT OR REPLACE +** encounters a constraint violation, it does not fail. The +** INSERT continues to completion after deleting rows that caused +** the constraint problem so INSERT OR REPLACE will always change +** the return value of this interface.)^ +** +** ^For the purposes of this routine, an [INSERT] is considered to +** be successful even if it is subsequently rolled back. +** +** This function is accessible to SQL statements via the +** [last_insert_rowid() SQL function]. +** +** If a separate thread performs a new [INSERT] on the same +** database connection while the [sqlite3_last_insert_rowid()] +** function is running and thus changes the last insert [rowid], +** then the value returned by [sqlite3_last_insert_rowid()] is +** unpredictable and might not equal either the old or the new +** last insert [rowid]. +*/ +SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*); + +/* +** CAPI3REF: Count The Number Of Rows Modified +** +** ^This function returns the number of database rows that were changed +** or inserted or deleted by the most recently completed SQL statement +** on the [database connection] specified by the first parameter. +** ^(Only changes that are directly specified by the [INSERT], [UPDATE], +** or [DELETE] statement are counted. Auxiliary changes caused by +** triggers or [foreign key actions] are not counted.)^ Use the +** [sqlite3_total_changes()] function to find the total number of changes +** including changes caused by triggers and foreign key actions. +** +** ^Changes to a view that are simulated by an [INSTEAD OF trigger] +** are not counted. Only real table changes are counted. +** +** ^(A "row change" is a change to a single row of a single table +** caused by an INSERT, DELETE, or UPDATE statement. Rows that +** are changed as side effects of [REPLACE] constraint resolution, +** rollback, ABORT processing, [DROP TABLE], or by any other +** mechanisms do not count as direct row changes.)^ +** +** A "trigger context" is a scope of execution that begins and +** ends with the script of a [CREATE TRIGGER | trigger]. +** Most SQL statements are +** evaluated outside of any trigger. This is the "top level" +** trigger context. If a trigger fires from the top level, a +** new trigger context is entered for the duration of that one +** trigger. Subtriggers create subcontexts for their duration. +** +** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does +** not create a new trigger context. +** +** ^This function returns the number of direct row changes in the +** most recent INSERT, UPDATE, or DELETE statement within the same +** trigger context. +** +** ^Thus, when called from the top level, this function returns the +** number of changes in the most recent INSERT, UPDATE, or DELETE +** that also occurred at the top level. ^(Within the body of a trigger, +** the sqlite3_changes() interface can be called to find the number of +** changes in the most recently completed INSERT, UPDATE, or DELETE +** statement within the body of the same trigger. +** However, the number returned does not include changes +** caused by subtriggers since those have their own context.)^ +** +** See also the [sqlite3_total_changes()] interface, the +** [count_changes pragma], and the [changes() SQL function]. +** +** If a separate thread makes changes on the same database connection +** while [sqlite3_changes()] is running then the value returned +** is unpredictable and not meaningful. +*/ +SQLITE_API int sqlite3_changes(sqlite3*); + +/* +** CAPI3REF: Total Number Of Rows Modified +** +** ^This function returns the number of row changes caused by [INSERT], +** [UPDATE] or [DELETE] statements since the [database connection] was opened. +** ^(The count returned by sqlite3_total_changes() includes all changes +** from all [CREATE TRIGGER | trigger] contexts and changes made by +** [foreign key actions]. However, +** the count does not include changes used to implement [REPLACE] constraints, +** do rollbacks or ABORT processing, or [DROP TABLE] processing. The +** count does not include rows of views that fire an [INSTEAD OF trigger], +** though if the INSTEAD OF trigger makes changes of its own, those changes +** are counted.)^ +** ^The sqlite3_total_changes() function counts the changes as soon as +** the statement that makes them is completed (when the statement handle +** is passed to [sqlite3_reset()] or [sqlite3_finalize()]). +** +** See also the [sqlite3_changes()] interface, the +** [count_changes pragma], and the [total_changes() SQL function]. +** +** If a separate thread makes changes on the same database connection +** while [sqlite3_total_changes()] is running then the value +** returned is unpredictable and not meaningful. +*/ +SQLITE_API int sqlite3_total_changes(sqlite3*); + +/* +** CAPI3REF: Interrupt A Long-Running Query +** +** ^This function causes any pending database operation to abort and +** return at its earliest opportunity. This routine is typically +** called in response to a user action such as pressing "Cancel" +** or Ctrl-C where the user wants a long query operation to halt +** immediately. +** +** ^It is safe to call this routine from a thread different from the +** thread that is currently running the database operation. But it +** is not safe to call this routine with a [database connection] that +** is closed or might close before sqlite3_interrupt() returns. +** +** ^If an SQL operation is very nearly finished at the time when +** sqlite3_interrupt() is called, then it might not have an opportunity +** to be interrupted and might continue to completion. +** +** ^An SQL operation that is interrupted will return [SQLITE_INTERRUPT]. +** ^If the interrupted SQL operation is an INSERT, UPDATE, or DELETE +** that is inside an explicit transaction, then the entire transaction +** will be rolled back automatically. +** +** ^The sqlite3_interrupt(D) call is in effect until all currently running +** SQL statements on [database connection] D complete. ^Any new SQL statements +** that are started after the sqlite3_interrupt() call and before the +** running statements reaches zero are interrupted as if they had been +** running prior to the sqlite3_interrupt() call. ^New SQL statements +** that are started after the running statement count reaches zero are +** not effected by the sqlite3_interrupt(). +** ^A call to sqlite3_interrupt(D) that occurs when there are no running +** SQL statements is a no-op and has no effect on SQL statements +** that are started after the sqlite3_interrupt() call returns. +** +** If the database connection closes while [sqlite3_interrupt()] +** is running then bad things will likely happen. +*/ +SQLITE_API void sqlite3_interrupt(sqlite3*); + +/* +** CAPI3REF: Determine If An SQL Statement Is Complete +** +** These routines are useful during command-line input to determine if the +** currently entered text seems to form a complete SQL statement or +** if additional input is needed before sending the text into +** SQLite for parsing. ^These routines return 1 if the input string +** appears to be a complete SQL statement. ^A statement is judged to be +** complete if it ends with a semicolon token and is not a prefix of a +** well-formed CREATE TRIGGER statement. ^Semicolons that are embedded within +** string literals or quoted identifier names or comments are not +** independent tokens (they are part of the token in which they are +** embedded) and thus do not count as a statement terminator. ^Whitespace +** and comments that follow the final semicolon are ignored. +** +** ^These routines return 0 if the statement is incomplete. ^If a +** memory allocation fails, then SQLITE_NOMEM is returned. +** +** ^These routines do not parse the SQL statements thus +** will not detect syntactically incorrect SQL. +** +** ^(If SQLite has not been initialized using [sqlite3_initialize()] prior +** to invoking sqlite3_complete16() then sqlite3_initialize() is invoked +** automatically by sqlite3_complete16(). If that initialization fails, +** then the return value from sqlite3_complete16() will be non-zero +** regardless of whether or not the input SQL is complete.)^ +** +** The input to [sqlite3_complete()] must be a zero-terminated +** UTF-8 string. +** +** The input to [sqlite3_complete16()] must be a zero-terminated +** UTF-16 string in native byte order. +*/ +SQLITE_API int sqlite3_complete(const char *sql); +SQLITE_API int sqlite3_complete16(const void *sql); + +/* +** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors +** +** ^This routine sets a callback function that might be invoked whenever +** an attempt is made to open a database table that another thread +** or process has locked. +** +** ^If the busy callback is NULL, then [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED] +** is returned immediately upon encountering the lock. ^If the busy callback +** is not NULL, then the callback might be invoked with two arguments. +** +** ^The first argument to the busy handler is a copy of the void* pointer which +** is the third argument to sqlite3_busy_handler(). ^The second argument to +** the busy handler callback is the number of times that the busy handler has +** been invoked for this locking event. ^If the +** busy callback returns 0, then no additional attempts are made to +** access the database and [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED] is returned. +** ^If the callback returns non-zero, then another attempt +** is made to open the database for reading and the cycle repeats. +** +** The presence of a busy handler does not guarantee that it will be invoked +** when there is lock contention. ^If SQLite determines that invoking the busy +** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY] +** or [SQLITE_IOERR_BLOCKED] instead of invoking the busy handler. +** Consider a scenario where one process is holding a read lock that +** it is trying to promote to a reserved lock and +** a second process is holding a reserved lock that it is trying +** to promote to an exclusive lock. The first process cannot proceed +** because it is blocked by the second and the second process cannot +** proceed because it is blocked by the first. If both processes +** invoke the busy handlers, neither will make any progress. Therefore, +** SQLite returns [SQLITE_BUSY] for the first process, hoping that this +** will induce the first process to release its read lock and allow +** the second process to proceed. +** +** ^The default busy callback is NULL. +** +** ^The [SQLITE_BUSY] error is converted to [SQLITE_IOERR_BLOCKED] +** when SQLite is in the middle of a large transaction where all the +** changes will not fit into the in-memory cache. SQLite will +** already hold a RESERVED lock on the database file, but it needs +** to promote this lock to EXCLUSIVE so that it can spill cache +** pages into the database file without harm to concurrent +** readers. ^If it is unable to promote the lock, then the in-memory +** cache will be left in an inconsistent state and so the error +** code is promoted from the relatively benign [SQLITE_BUSY] to +** the more severe [SQLITE_IOERR_BLOCKED]. ^This error code promotion +** forces an automatic rollback of the changes. See the +** +** CorruptionFollowingBusyError wiki page for a discussion of why +** this is important. +** +** ^(There can only be a single busy handler defined for each +** [database connection]. Setting a new busy handler clears any +** previously set handler.)^ ^Note that calling [sqlite3_busy_timeout()] +** will also set or clear the busy handler. +** +** The busy callback should not take any actions which modify the +** database connection that invoked the busy handler. Any such actions +** result in undefined behavior. +** +** A busy handler must not close the database connection +** or [prepared statement] that invoked the busy handler. +*/ +SQLITE_API int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*); + +/* +** CAPI3REF: Set A Busy Timeout +** +** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps +** for a specified amount of time when a table is locked. ^The handler +** will sleep multiple times until at least "ms" milliseconds of sleeping +** have accumulated. ^After at least "ms" milliseconds of sleeping, +** the handler returns 0 which causes [sqlite3_step()] to return +** [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED]. +** +** ^Calling this routine with an argument less than or equal to zero +** turns off all busy handlers. +** +** ^(There can only be a single busy handler for a particular +** [database connection] any any given moment. If another busy handler +** was defined (using [sqlite3_busy_handler()]) prior to calling +** this routine, that other busy handler is cleared.)^ +*/ +SQLITE_API int sqlite3_busy_timeout(sqlite3*, int ms); + +/* +** CAPI3REF: Convenience Routines For Running Queries +** +** This is a legacy interface that is preserved for backwards compatibility. +** Use of this interface is not recommended. +** +** Definition: A result table is memory data structure created by the +** [sqlite3_get_table()] interface. A result table records the +** complete query results from one or more queries. +** +** The table conceptually has a number of rows and columns. But +** these numbers are not part of the result table itself. These +** numbers are obtained separately. Let N be the number of rows +** and M be the number of columns. +** +** A result table is an array of pointers to zero-terminated UTF-8 strings. +** There are (N+1)*M elements in the array. The first M pointers point +** to zero-terminated strings that contain the names of the columns. +** The remaining entries all point to query results. NULL values result +** in NULL pointers. All other values are in their UTF-8 zero-terminated +** string representation as returned by [sqlite3_column_text()]. +** +** A result table might consist of one or more memory allocations. +** It is not safe to pass a result table directly to [sqlite3_free()]. +** A result table should be deallocated using [sqlite3_free_table()]. +** +** ^(As an example of the result table format, suppose a query result +** is as follows: +** +**
          +**        Name        | Age
          +**        -----------------------
          +**        Alice       | 43
          +**        Bob         | 28
          +**        Cindy       | 21
          +** 
          +** +** There are two column (M==2) and three rows (N==3). Thus the +** result table has 8 entries. Suppose the result table is stored +** in an array names azResult. Then azResult holds this content: +** +**
          +**        azResult[0] = "Name";
          +**        azResult[1] = "Age";
          +**        azResult[2] = "Alice";
          +**        azResult[3] = "43";
          +**        azResult[4] = "Bob";
          +**        azResult[5] = "28";
          +**        azResult[6] = "Cindy";
          +**        azResult[7] = "21";
          +** 
          )^ +** +** ^The sqlite3_get_table() function evaluates one or more +** semicolon-separated SQL statements in the zero-terminated UTF-8 +** string of its 2nd parameter and returns a result table to the +** pointer given in its 3rd parameter. +** +** After the application has finished with the result from sqlite3_get_table(), +** it must pass the result table pointer to sqlite3_free_table() in order to +** release the memory that was malloced. Because of the way the +** [sqlite3_malloc()] happens within sqlite3_get_table(), the calling +** function must not try to call [sqlite3_free()] directly. Only +** [sqlite3_free_table()] is able to release the memory properly and safely. +** +** The sqlite3_get_table() interface is implemented as a wrapper around +** [sqlite3_exec()]. The sqlite3_get_table() routine does not have access +** to any internal data structures of SQLite. It uses only the public +** interface defined here. As a consequence, errors that occur in the +** wrapper layer outside of the internal [sqlite3_exec()] call are not +** reflected in subsequent calls to [sqlite3_errcode()] or +** [sqlite3_errmsg()]. +*/ +SQLITE_API int sqlite3_get_table( + sqlite3 *db, /* An open database */ + const char *zSql, /* SQL to be evaluated */ + char ***pazResult, /* Results of the query */ + int *pnRow, /* Number of result rows written here */ + int *pnColumn, /* Number of result columns written here */ + char **pzErrmsg /* Error msg written here */ +); +SQLITE_API void sqlite3_free_table(char **result); + +/* +** CAPI3REF: Formatted String Printing Functions +** +** These routines are work-alikes of the "printf()" family of functions +** from the standard C library. +** +** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their +** results into memory obtained from [sqlite3_malloc()]. +** The strings returned by these two routines should be +** released by [sqlite3_free()]. ^Both routines return a +** NULL pointer if [sqlite3_malloc()] is unable to allocate enough +** memory to hold the resulting string. +** +** ^(The sqlite3_snprintf() routine is similar to "snprintf()" from +** the standard C library. The result is written into the +** buffer supplied as the second parameter whose size is given by +** the first parameter. Note that the order of the +** first two parameters is reversed from snprintf().)^ This is an +** historical accident that cannot be fixed without breaking +** backwards compatibility. ^(Note also that sqlite3_snprintf() +** returns a pointer to its buffer instead of the number of +** characters actually written into the buffer.)^ We admit that +** the number of characters written would be a more useful return +** value but we cannot change the implementation of sqlite3_snprintf() +** now without breaking compatibility. +** +** ^As long as the buffer size is greater than zero, sqlite3_snprintf() +** guarantees that the buffer is always zero-terminated. ^The first +** parameter "n" is the total size of the buffer, including space for +** the zero terminator. So the longest string that can be completely +** written will be n-1 characters. +** +** ^The sqlite3_vsnprintf() routine is a varargs version of sqlite3_snprintf(). +** +** These routines all implement some additional formatting +** options that are useful for constructing SQL statements. +** All of the usual printf() formatting options apply. In addition, there +** is are "%q", "%Q", and "%z" options. +** +** ^(The %q option works like %s in that it substitutes a nul-terminated +** string from the argument list. But %q also doubles every '\'' character. +** %q is designed for use inside a string literal.)^ By doubling each '\'' +** character it escapes that character and allows it to be inserted into +** the string. +** +** For example, assume the string variable zText contains text as follows: +** +**
          +**  char *zText = "It's a happy day!";
          +** 
          +** +** One can use this text in an SQL statement as follows: +** +**
          +**  char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES('%q')", zText);
          +**  sqlite3_exec(db, zSQL, 0, 0, 0);
          +**  sqlite3_free(zSQL);
          +** 
          +** +** Because the %q format string is used, the '\'' character in zText +** is escaped and the SQL generated is as follows: +** +**
          +**  INSERT INTO table1 VALUES('It''s a happy day!')
          +** 
          +** +** This is correct. Had we used %s instead of %q, the generated SQL +** would have looked like this: +** +**
          +**  INSERT INTO table1 VALUES('It's a happy day!');
          +** 
          +** +** This second example is an SQL syntax error. As a general rule you should +** always use %q instead of %s when inserting text into a string literal. +** +** ^(The %Q option works like %q except it also adds single quotes around +** the outside of the total string. Additionally, if the parameter in the +** argument list is a NULL pointer, %Q substitutes the text "NULL" (without +** single quotes).)^ So, for example, one could say: +** +**
          +**  char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES(%Q)", zText);
          +**  sqlite3_exec(db, zSQL, 0, 0, 0);
          +**  sqlite3_free(zSQL);
          +** 
          +** +** The code above will render a correct SQL statement in the zSQL +** variable even if the zText variable is a NULL pointer. +** +** ^(The "%z" formatting option works like "%s" but with the +** addition that after the string has been read and copied into +** the result, [sqlite3_free()] is called on the input string.)^ +*/ +SQLITE_API char *sqlite3_mprintf(const char*,...); +SQLITE_API char *sqlite3_vmprintf(const char*, va_list); +SQLITE_API char *sqlite3_snprintf(int,char*,const char*, ...); +SQLITE_API char *sqlite3_vsnprintf(int,char*,const char*, va_list); + +/* +** CAPI3REF: Memory Allocation Subsystem +** +** The SQLite core uses these three routines for all of its own +** internal memory allocation needs. "Core" in the previous sentence +** does not include operating-system specific VFS implementation. The +** Windows VFS uses native malloc() and free() for some operations. +** +** ^The sqlite3_malloc() routine returns a pointer to a block +** of memory at least N bytes in length, where N is the parameter. +** ^If sqlite3_malloc() is unable to obtain sufficient free +** memory, it returns a NULL pointer. ^If the parameter N to +** sqlite3_malloc() is zero or negative then sqlite3_malloc() returns +** a NULL pointer. +** +** ^Calling sqlite3_free() with a pointer previously returned +** by sqlite3_malloc() or sqlite3_realloc() releases that memory so +** that it might be reused. ^The sqlite3_free() routine is +** a no-op if is called with a NULL pointer. Passing a NULL pointer +** to sqlite3_free() is harmless. After being freed, memory +** should neither be read nor written. Even reading previously freed +** memory might result in a segmentation fault or other severe error. +** Memory corruption, a segmentation fault, or other severe error +** might result if sqlite3_free() is called with a non-NULL pointer that +** was not obtained from sqlite3_malloc() or sqlite3_realloc(). +** +** ^(The sqlite3_realloc() interface attempts to resize a +** prior memory allocation to be at least N bytes, where N is the +** second parameter. The memory allocation to be resized is the first +** parameter.)^ ^ If the first parameter to sqlite3_realloc() +** is a NULL pointer then its behavior is identical to calling +** sqlite3_malloc(N) where N is the second parameter to sqlite3_realloc(). +** ^If the second parameter to sqlite3_realloc() is zero or +** negative then the behavior is exactly the same as calling +** sqlite3_free(P) where P is the first parameter to sqlite3_realloc(). +** ^sqlite3_realloc() returns a pointer to a memory allocation +** of at least N bytes in size or NULL if sufficient memory is unavailable. +** ^If M is the size of the prior allocation, then min(N,M) bytes +** of the prior allocation are copied into the beginning of buffer returned +** by sqlite3_realloc() and the prior allocation is freed. +** ^If sqlite3_realloc() returns NULL, then the prior allocation +** is not freed. +** +** ^The memory returned by sqlite3_malloc() and sqlite3_realloc() +** is always aligned to at least an 8 byte boundary, or to a +** 4 byte boundary if the [SQLITE_4_BYTE_ALIGNED_MALLOC] compile-time +** option is used. +** +** In SQLite version 3.5.0 and 3.5.1, it was possible to define +** the SQLITE_OMIT_MEMORY_ALLOCATION which would cause the built-in +** implementation of these routines to be omitted. That capability +** is no longer provided. Only built-in memory allocators can be used. +** +** Prior to SQLite version 3.7.10, the Windows OS interface layer called +** the system malloc() and free() directly when converting +** filenames between the UTF-8 encoding used by SQLite +** and whatever filename encoding is used by the particular Windows +** installation. Memory allocation errors were detected, but +** they were reported back as [SQLITE_CANTOPEN] or +** [SQLITE_IOERR] rather than [SQLITE_NOMEM]. +** +** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()] +** must be either NULL or else pointers obtained from a prior +** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have +** not yet been released. +** +** The application must not read or write any part of +** a block of memory after it has been released using +** [sqlite3_free()] or [sqlite3_realloc()]. +*/ +SQLITE_API void *sqlite3_malloc(int); +SQLITE_API void *sqlite3_realloc(void*, int); +SQLITE_API void sqlite3_free(void*); + +/* +** CAPI3REF: Memory Allocator Statistics +** +** SQLite provides these two interfaces for reporting on the status +** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()] +** routines, which form the built-in memory allocation subsystem. +** +** ^The [sqlite3_memory_used()] routine returns the number of bytes +** of memory currently outstanding (malloced but not freed). +** ^The [sqlite3_memory_highwater()] routine returns the maximum +** value of [sqlite3_memory_used()] since the high-water mark +** was last reset. ^The values returned by [sqlite3_memory_used()] and +** [sqlite3_memory_highwater()] include any overhead +** added by SQLite in its implementation of [sqlite3_malloc()], +** but not overhead added by the any underlying system library +** routines that [sqlite3_malloc()] may call. +** +** ^The memory high-water mark is reset to the current value of +** [sqlite3_memory_used()] if and only if the parameter to +** [sqlite3_memory_highwater()] is true. ^The value returned +** by [sqlite3_memory_highwater(1)] is the high-water mark +** prior to the reset. +*/ +SQLITE_API sqlite3_int64 sqlite3_memory_used(void); +SQLITE_API sqlite3_int64 sqlite3_memory_highwater(int resetFlag); + +/* +** CAPI3REF: Pseudo-Random Number Generator +** +** SQLite contains a high-quality pseudo-random number generator (PRNG) used to +** select random [ROWID | ROWIDs] when inserting new records into a table that +** already uses the largest possible [ROWID]. The PRNG is also used for +** the build-in random() and randomblob() SQL functions. This interface allows +** applications to access the same PRNG for other purposes. +** +** ^A call to this routine stores N bytes of randomness into buffer P. +** ^If N is less than one, then P can be a NULL pointer. +** +** ^If this routine has not been previously called or if the previous +** call had N less than one, then the PRNG is seeded using randomness +** obtained from the xRandomness method of the default [sqlite3_vfs] object. +** ^If the previous call to this routine had an N of 1 or more then +** the pseudo-randomness is generated +** internally and without recourse to the [sqlite3_vfs] xRandomness +** method. +*/ +SQLITE_API void sqlite3_randomness(int N, void *P); + +/* +** CAPI3REF: Compile-Time Authorization Callbacks +** +** ^This routine registers an authorizer callback with a particular +** [database connection], supplied in the first argument. +** ^The authorizer callback is invoked as SQL statements are being compiled +** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()], +** [sqlite3_prepare16()] and [sqlite3_prepare16_v2()]. ^At various +** points during the compilation process, as logic is being created +** to perform various actions, the authorizer callback is invoked to +** see if those actions are allowed. ^The authorizer callback should +** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the +** specific action but allow the SQL statement to continue to be +** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be +** rejected with an error. ^If the authorizer callback returns +** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY] +** then the [sqlite3_prepare_v2()] or equivalent call that triggered +** the authorizer will fail with an error message. +** +** When the callback returns [SQLITE_OK], that means the operation +** requested is ok. ^When the callback returns [SQLITE_DENY], the +** [sqlite3_prepare_v2()] or equivalent call that triggered the +** authorizer will fail with an error message explaining that +** access is denied. +** +** ^The first parameter to the authorizer callback is a copy of the third +** parameter to the sqlite3_set_authorizer() interface. ^The second parameter +** to the callback is an integer [SQLITE_COPY | action code] that specifies +** the particular action to be authorized. ^The third through sixth parameters +** to the callback are zero-terminated strings that contain additional +** details about the action to be authorized. +** +** ^If the action code is [SQLITE_READ] +** and the callback returns [SQLITE_IGNORE] then the +** [prepared statement] statement is constructed to substitute +** a NULL value in place of the table column that would have +** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE] +** return can be used to deny an untrusted user access to individual +** columns of a table. +** ^If the action code is [SQLITE_DELETE] and the callback returns +** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the +** [truncate optimization] is disabled and all rows are deleted individually. +** +** An authorizer is used when [sqlite3_prepare | preparing] +** SQL statements from an untrusted source, to ensure that the SQL statements +** do not try to access data they are not allowed to see, or that they do not +** try to execute malicious statements that damage the database. For +** example, an application may allow a user to enter arbitrary +** SQL queries for evaluation by a database. But the application does +** not want the user to be able to make arbitrary changes to the +** database. An authorizer could then be put in place while the +** user-entered SQL is being [sqlite3_prepare | prepared] that +** disallows everything except [SELECT] statements. +** +** Applications that need to process SQL from untrusted sources +** might also consider lowering resource limits using [sqlite3_limit()] +** and limiting database size using the [max_page_count] [PRAGMA] +** in addition to using an authorizer. +** +** ^(Only a single authorizer can be in place on a database connection +** at a time. Each call to sqlite3_set_authorizer overrides the +** previous call.)^ ^Disable the authorizer by installing a NULL callback. +** The authorizer is disabled by default. +** +** The authorizer callback must not do anything that will modify +** the database connection that invoked the authorizer callback. +** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their +** database connections for the meaning of "modify" in this paragraph. +** +** ^When [sqlite3_prepare_v2()] is used to prepare a statement, the +** statement might be re-prepared during [sqlite3_step()] due to a +** schema change. Hence, the application should ensure that the +** correct authorizer callback remains in place during the [sqlite3_step()]. +** +** ^Note that the authorizer callback is invoked only during +** [sqlite3_prepare()] or its variants. Authorization is not +** performed during statement evaluation in [sqlite3_step()], unless +** as stated in the previous paragraph, sqlite3_step() invokes +** sqlite3_prepare_v2() to reprepare a statement after a schema change. +*/ +SQLITE_API int sqlite3_set_authorizer( + sqlite3*, + int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), + void *pUserData +); + +/* +** CAPI3REF: Authorizer Return Codes +** +** The [sqlite3_set_authorizer | authorizer callback function] must +** return either [SQLITE_OK] or one of these two constants in order +** to signal SQLite whether or not the action is permitted. See the +** [sqlite3_set_authorizer | authorizer documentation] for additional +** information. +** +** Note that SQLITE_IGNORE is also used as a [SQLITE_ROLLBACK | return code] +** from the [sqlite3_vtab_on_conflict()] interface. +*/ +#define SQLITE_DENY 1 /* Abort the SQL statement with an error */ +#define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ + +/* +** CAPI3REF: Authorizer Action Codes +** +** The [sqlite3_set_authorizer()] interface registers a callback function +** that is invoked to authorize certain SQL statement actions. The +** second parameter to the callback is an integer code that specifies +** what action is being authorized. These are the integer action codes that +** the authorizer callback may be passed. +** +** These action code values signify what kind of operation is to be +** authorized. The 3rd and 4th parameters to the authorization +** callback function will be parameters or NULL depending on which of these +** codes is used as the second parameter. ^(The 5th parameter to the +** authorizer callback is the name of the database ("main", "temp", +** etc.) if applicable.)^ ^The 6th parameter to the authorizer callback +** is the name of the inner-most trigger or view that is responsible for +** the access attempt or NULL if this access attempt is directly from +** top-level SQL code. +*/ +/******************************************* 3rd ************ 4th ***********/ +#define SQLITE_CREATE_INDEX 1 /* Index Name Table Name */ +#define SQLITE_CREATE_TABLE 2 /* Table Name NULL */ +#define SQLITE_CREATE_TEMP_INDEX 3 /* Index Name Table Name */ +#define SQLITE_CREATE_TEMP_TABLE 4 /* Table Name NULL */ +#define SQLITE_CREATE_TEMP_TRIGGER 5 /* Trigger Name Table Name */ +#define SQLITE_CREATE_TEMP_VIEW 6 /* View Name NULL */ +#define SQLITE_CREATE_TRIGGER 7 /* Trigger Name Table Name */ +#define SQLITE_CREATE_VIEW 8 /* View Name NULL */ +#define SQLITE_DELETE 9 /* Table Name NULL */ +#define SQLITE_DROP_INDEX 10 /* Index Name Table Name */ +#define SQLITE_DROP_TABLE 11 /* Table Name NULL */ +#define SQLITE_DROP_TEMP_INDEX 12 /* Index Name Table Name */ +#define SQLITE_DROP_TEMP_TABLE 13 /* Table Name NULL */ +#define SQLITE_DROP_TEMP_TRIGGER 14 /* Trigger Name Table Name */ +#define SQLITE_DROP_TEMP_VIEW 15 /* View Name NULL */ +#define SQLITE_DROP_TRIGGER 16 /* Trigger Name Table Name */ +#define SQLITE_DROP_VIEW 17 /* View Name NULL */ +#define SQLITE_INSERT 18 /* Table Name NULL */ +#define SQLITE_PRAGMA 19 /* Pragma Name 1st arg or NULL */ +#define SQLITE_READ 20 /* Table Name Column Name */ +#define SQLITE_SELECT 21 /* NULL NULL */ +#define SQLITE_TRANSACTION 22 /* Operation NULL */ +#define SQLITE_UPDATE 23 /* Table Name Column Name */ +#define SQLITE_ATTACH 24 /* Filename NULL */ +#define SQLITE_DETACH 25 /* Database Name NULL */ +#define SQLITE_ALTER_TABLE 26 /* Database Name Table Name */ +#define SQLITE_REINDEX 27 /* Index Name NULL */ +#define SQLITE_ANALYZE 28 /* Table Name NULL */ +#define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */ +#define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */ +#define SQLITE_FUNCTION 31 /* NULL Function Name */ +#define SQLITE_SAVEPOINT 32 /* Operation Savepoint Name */ +#define SQLITE_COPY 0 /* No longer used */ +#define SQLITE_RECURSIVE 33 /* NULL NULL */ + +/* +** CAPI3REF: Tracing And Profiling Functions +** +** These routines register callback functions that can be used for +** tracing and profiling the execution of SQL statements. +** +** ^The callback function registered by sqlite3_trace() is invoked at +** various times when an SQL statement is being run by [sqlite3_step()]. +** ^The sqlite3_trace() callback is invoked with a UTF-8 rendering of the +** SQL statement text as the statement first begins executing. +** ^(Additional sqlite3_trace() callbacks might occur +** as each triggered subprogram is entered. The callbacks for triggers +** contain a UTF-8 SQL comment that identifies the trigger.)^ +** +** The [SQLITE_TRACE_SIZE_LIMIT] compile-time option can be used to limit +** the length of [bound parameter] expansion in the output of sqlite3_trace(). +** +** ^The callback function registered by sqlite3_profile() is invoked +** as each SQL statement finishes. ^The profile callback contains +** the original statement text and an estimate of wall-clock time +** of how long that statement took to run. ^The profile callback +** time is in units of nanoseconds, however the current implementation +** is only capable of millisecond resolution so the six least significant +** digits in the time are meaningless. Future versions of SQLite +** might provide greater resolution on the profiler callback. The +** sqlite3_profile() function is considered experimental and is +** subject to change in future versions of SQLite. +*/ +SQLITE_API void *sqlite3_trace(sqlite3*, void(*xTrace)(void*,const char*), void*); +SQLITE_API SQLITE_EXPERIMENTAL void *sqlite3_profile(sqlite3*, + void(*xProfile)(void*,const char*,sqlite3_uint64), void*); + +/* +** CAPI3REF: Query Progress Callbacks +** +** ^The sqlite3_progress_handler(D,N,X,P) interface causes the callback +** function X to be invoked periodically during long running calls to +** [sqlite3_exec()], [sqlite3_step()] and [sqlite3_get_table()] for +** database connection D. An example use for this +** interface is to keep a GUI updated during a large query. +** +** ^The parameter P is passed through as the only parameter to the +** callback function X. ^The parameter N is the approximate number of +** [virtual machine instructions] that are evaluated between successive +** invocations of the callback X. ^If N is less than one then the progress +** handler is disabled. +** +** ^Only a single progress handler may be defined at one time per +** [database connection]; setting a new progress handler cancels the +** old one. ^Setting parameter X to NULL disables the progress handler. +** ^The progress handler is also disabled by setting N to a value less +** than 1. +** +** ^If the progress callback returns non-zero, the operation is +** interrupted. This feature can be used to implement a +** "Cancel" button on a GUI progress dialog box. +** +** The progress handler callback must not do anything that will modify +** the database connection that invoked the progress handler. +** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their +** database connections for the meaning of "modify" in this paragraph. +** +*/ +SQLITE_API void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*); + +/* +** CAPI3REF: Opening A New Database Connection +** +** ^These routines open an SQLite database file as specified by the +** filename argument. ^The filename argument is interpreted as UTF-8 for +** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte +** order for sqlite3_open16(). ^(A [database connection] handle is usually +** returned in *ppDb, even if an error occurs. The only exception is that +** if SQLite is unable to allocate memory to hold the [sqlite3] object, +** a NULL will be written into *ppDb instead of a pointer to the [sqlite3] +** object.)^ ^(If the database is opened (and/or created) successfully, then +** [SQLITE_OK] is returned. Otherwise an [error code] is returned.)^ ^The +** [sqlite3_errmsg()] or [sqlite3_errmsg16()] routines can be used to obtain +** an English language description of the error following a failure of any +** of the sqlite3_open() routines. +** +** ^The default encoding for the database will be UTF-8 if +** sqlite3_open() or sqlite3_open_v2() is called and +** UTF-16 in the native byte order if sqlite3_open16() is used. +** +** Whether or not an error occurs when it is opened, resources +** associated with the [database connection] handle should be released by +** passing it to [sqlite3_close()] when it is no longer required. +** +** The sqlite3_open_v2() interface works like sqlite3_open() +** except that it accepts two additional parameters for additional control +** over the new database connection. ^(The flags parameter to +** sqlite3_open_v2() can take one of +** the following three values, optionally combined with the +** [SQLITE_OPEN_NOMUTEX], [SQLITE_OPEN_FULLMUTEX], [SQLITE_OPEN_SHAREDCACHE], +** [SQLITE_OPEN_PRIVATECACHE], and/or [SQLITE_OPEN_URI] flags:)^ +** +**
          +** ^(
          [SQLITE_OPEN_READONLY]
          +**
          The database is opened in read-only mode. If the database does not +** already exist, an error is returned.
          )^ +** +** ^(
          [SQLITE_OPEN_READWRITE]
          +**
          The database is opened for reading and writing if possible, or reading +** only if the file is write protected by the operating system. In either +** case the database must already exist, otherwise an error is returned.
          )^ +** +** ^(
          [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]
          +**
          The database is opened for reading and writing, and is created if +** it does not already exist. This is the behavior that is always used for +** sqlite3_open() and sqlite3_open16().
          )^ +**
          +** +** If the 3rd parameter to sqlite3_open_v2() is not one of the +** combinations shown above optionally combined with other +** [SQLITE_OPEN_READONLY | SQLITE_OPEN_* bits] +** then the behavior is undefined. +** +** ^If the [SQLITE_OPEN_NOMUTEX] flag is set, then the database connection +** opens in the multi-thread [threading mode] as long as the single-thread +** mode has not been set at compile-time or start-time. ^If the +** [SQLITE_OPEN_FULLMUTEX] flag is set then the database connection opens +** in the serialized [threading mode] unless single-thread was +** previously selected at compile-time or start-time. +** ^The [SQLITE_OPEN_SHAREDCACHE] flag causes the database connection to be +** eligible to use [shared cache mode], regardless of whether or not shared +** cache is enabled using [sqlite3_enable_shared_cache()]. ^The +** [SQLITE_OPEN_PRIVATECACHE] flag causes the database connection to not +** participate in [shared cache mode] even if it is enabled. +** +** ^The fourth parameter to sqlite3_open_v2() is the name of the +** [sqlite3_vfs] object that defines the operating system interface that +** the new database connection should use. ^If the fourth parameter is +** a NULL pointer then the default [sqlite3_vfs] object is used. +** +** ^If the filename is ":memory:", then a private, temporary in-memory database +** is created for the connection. ^This in-memory database will vanish when +** the database connection is closed. Future versions of SQLite might +** make use of additional special filenames that begin with the ":" character. +** It is recommended that when a database filename actually does begin with +** a ":" character you should prefix the filename with a pathname such as +** "./" to avoid ambiguity. +** +** ^If the filename is an empty string, then a private, temporary +** on-disk database will be created. ^This private database will be +** automatically deleted as soon as the database connection is closed. +** +** [[URI filenames in sqlite3_open()]]

          URI Filenames

          +** +** ^If [URI filename] interpretation is enabled, and the filename argument +** begins with "file:", then the filename is interpreted as a URI. ^URI +** filename interpretation is enabled if the [SQLITE_OPEN_URI] flag is +** set in the fourth argument to sqlite3_open_v2(), or if it has +** been enabled globally using the [SQLITE_CONFIG_URI] option with the +** [sqlite3_config()] method or by the [SQLITE_USE_URI] compile-time option. +** As of SQLite version 3.7.7, URI filename interpretation is turned off +** by default, but future releases of SQLite might enable URI filename +** interpretation by default. See "[URI filenames]" for additional +** information. +** +** URI filenames are parsed according to RFC 3986. ^If the URI contains an +** authority, then it must be either an empty string or the string +** "localhost". ^If the authority is not an empty string or "localhost", an +** error is returned to the caller. ^The fragment component of a URI, if +** present, is ignored. +** +** ^SQLite uses the path component of the URI as the name of the disk file +** which contains the database. ^If the path begins with a '/' character, +** then it is interpreted as an absolute path. ^If the path does not begin +** with a '/' (meaning that the authority section is omitted from the URI) +** then the path is interpreted as a relative path. +** ^On windows, the first component of an absolute path +** is a drive specification (e.g. "C:"). +** +** [[core URI query parameters]] +** The query component of a URI may contain parameters that are interpreted +** either by SQLite itself, or by a [VFS | custom VFS implementation]. +** SQLite interprets the following three query parameters: +** +**
            +**
          • vfs: ^The "vfs" parameter may be used to specify the name of +** a VFS object that provides the operating system interface that should +** be used to access the database file on disk. ^If this option is set to +** an empty string the default VFS object is used. ^Specifying an unknown +** VFS is an error. ^If sqlite3_open_v2() is used and the vfs option is +** present, then the VFS specified by the option takes precedence over +** the value passed as the fourth parameter to sqlite3_open_v2(). +** +**
          • mode: ^(The mode parameter may be set to either "ro", "rw", +** "rwc", or "memory". Attempting to set it to any other value is +** an error)^. +** ^If "ro" is specified, then the database is opened for read-only +** access, just as if the [SQLITE_OPEN_READONLY] flag had been set in the +** third argument to sqlite3_open_v2(). ^If the mode option is set to +** "rw", then the database is opened for read-write (but not create) +** access, as if SQLITE_OPEN_READWRITE (but not SQLITE_OPEN_CREATE) had +** been set. ^Value "rwc" is equivalent to setting both +** SQLITE_OPEN_READWRITE and SQLITE_OPEN_CREATE. ^If the mode option is +** set to "memory" then a pure [in-memory database] that never reads +** or writes from disk is used. ^It is an error to specify a value for +** the mode parameter that is less restrictive than that specified by +** the flags passed in the third parameter to sqlite3_open_v2(). +** +**
          • cache: ^The cache parameter may be set to either "shared" or +** "private". ^Setting it to "shared" is equivalent to setting the +** SQLITE_OPEN_SHAREDCACHE bit in the flags argument passed to +** sqlite3_open_v2(). ^Setting the cache parameter to "private" is +** equivalent to setting the SQLITE_OPEN_PRIVATECACHE bit. +** ^If sqlite3_open_v2() is used and the "cache" parameter is present in +** a URI filename, its value overrides any behavior requested by setting +** SQLITE_OPEN_PRIVATECACHE or SQLITE_OPEN_SHAREDCACHE flag. +** +**
          • psow: ^The psow parameter may be "true" (or "on" or "yes" or +** "1") or "false" (or "off" or "no" or "0") to indicate that the +** [powersafe overwrite] property does or does not apply to the +** storage media on which the database file resides. ^The psow query +** parameter only works for the built-in unix and Windows VFSes. +** +**
          • nolock: ^The nolock parameter is a boolean query parameter +** which if set disables file locking in rollback journal modes. This +** is useful for accessing a database on a filesystem that does not +** support locking. Caution: Database corruption might result if two +** or more processes write to the same database and any one of those +** processes uses nolock=1. +** +**
          • immutable: ^The immutable parameter is a boolean query +** parameter that indicates that the database file is stored on +** read-only media. ^When immutable is set, SQLite assumes that the +** database file cannot be changed, even by a process with higher +** privilege, and so the database is opened read-only and all locking +** and change detection is disabled. Caution: Setting the immutable +** property on a database file that does in fact change can result +** in incorrect query results and/or [SQLITE_CORRUPT] errors. +** See also: [SQLITE_IOCAP_IMMUTABLE]. +** +**
          +** +** ^Specifying an unknown parameter in the query component of a URI is not an +** error. Future versions of SQLite might understand additional query +** parameters. See "[query parameters with special meaning to SQLite]" for +** additional information. +** +** [[URI filename examples]]

          URI filename examples

          +** +**
          +**
          URI filenames Results +**
          file:data.db +** Open the file "data.db" in the current directory. +**
          file:/home/fred/data.db
          +** file:///home/fred/data.db
          +** file://localhost/home/fred/data.db
          +** Open the database file "/home/fred/data.db". +**
          file://darkstar/home/fred/data.db +** An error. "darkstar" is not a recognized authority. +**
          +** file:///C:/Documents%20and%20Settings/fred/Desktop/data.db +** Windows only: Open the file "data.db" on fred's desktop on drive +** C:. Note that the %20 escaping in this example is not strictly +** necessary - space characters can be used literally +** in URI filenames. +**
          file:data.db?mode=ro&cache=private +** Open file "data.db" in the current directory for read-only access. +** Regardless of whether or not shared-cache mode is enabled by +** default, use a private cache. +**
          file:/home/fred/data.db?vfs=unix-dotfile +** Open file "/home/fred/data.db". Use the special VFS "unix-dotfile" +** that uses dot-files in place of posix advisory locking. +**
          file:data.db?mode=readonly +** An error. "readonly" is not a valid option for the "mode" parameter. +**
          +** +** ^URI hexadecimal escape sequences (%HH) are supported within the path and +** query components of a URI. A hexadecimal escape sequence consists of a +** percent sign - "%" - followed by exactly two hexadecimal digits +** specifying an octet value. ^Before the path or query components of a +** URI filename are interpreted, they are encoded using UTF-8 and all +** hexadecimal escape sequences replaced by a single byte containing the +** corresponding octet. If this process generates an invalid UTF-8 encoding, +** the results are undefined. +** +** Note to Windows users: The encoding used for the filename argument +** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever +** codepage is currently defined. Filenames containing international +** characters must be converted to UTF-8 prior to passing them into +** sqlite3_open() or sqlite3_open_v2(). +** +** Note to Windows Runtime users: The temporary directory must be set +** prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various +** features that require the use of temporary files may fail. +** +** See also: [sqlite3_temp_directory] +*/ +SQLITE_API int sqlite3_open( + const char *filename, /* Database filename (UTF-8) */ + sqlite3 **ppDb /* OUT: SQLite db handle */ +); +SQLITE_API int sqlite3_open16( + const void *filename, /* Database filename (UTF-16) */ + sqlite3 **ppDb /* OUT: SQLite db handle */ +); +SQLITE_API int sqlite3_open_v2( + const char *filename, /* Database filename (UTF-8) */ + sqlite3 **ppDb, /* OUT: SQLite db handle */ + int flags, /* Flags */ + const char *zVfs /* Name of VFS module to use */ +); + +/* +** CAPI3REF: Obtain Values For URI Parameters +** +** These are utility routines, useful to VFS implementations, that check +** to see if a database file was a URI that contained a specific query +** parameter, and if so obtains the value of that query parameter. +** +** If F is the database filename pointer passed into the xOpen() method of +** a VFS implementation when the flags parameter to xOpen() has one or +** more of the [SQLITE_OPEN_URI] or [SQLITE_OPEN_MAIN_DB] bits set and +** P is the name of the query parameter, then +** sqlite3_uri_parameter(F,P) returns the value of the P +** parameter if it exists or a NULL pointer if P does not appear as a +** query parameter on F. If P is a query parameter of F +** has no explicit value, then sqlite3_uri_parameter(F,P) returns +** a pointer to an empty string. +** +** The sqlite3_uri_boolean(F,P,B) routine assumes that P is a boolean +** parameter and returns true (1) or false (0) according to the value +** of P. The sqlite3_uri_boolean(F,P,B) routine returns true (1) if the +** value of query parameter P is one of "yes", "true", or "on" in any +** case or if the value begins with a non-zero number. The +** sqlite3_uri_boolean(F,P,B) routines returns false (0) if the value of +** query parameter P is one of "no", "false", or "off" in any case or +** if the value begins with a numeric zero. If P is not a query +** parameter on F or if the value of P is does not match any of the +** above, then sqlite3_uri_boolean(F,P,B) returns (B!=0). +** +** The sqlite3_uri_int64(F,P,D) routine converts the value of P into a +** 64-bit signed integer and returns that integer, or D if P does not +** exist. If the value of P is something other than an integer, then +** zero is returned. +** +** If F is a NULL pointer, then sqlite3_uri_parameter(F,P) returns NULL and +** sqlite3_uri_boolean(F,P,B) returns B. If F is not a NULL pointer and +** is not a database file pathname pointer that SQLite passed into the xOpen +** VFS method, then the behavior of this routine is undefined and probably +** undesirable. +*/ +SQLITE_API const char *sqlite3_uri_parameter(const char *zFilename, const char *zParam); +SQLITE_API int sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault); +SQLITE_API sqlite3_int64 sqlite3_uri_int64(const char*, const char*, sqlite3_int64); + + +/* +** CAPI3REF: Error Codes And Messages +** +** ^The sqlite3_errcode() interface returns the numeric [result code] or +** [extended result code] for the most recent failed sqlite3_* API call +** associated with a [database connection]. If a prior API call failed +** but the most recent API call succeeded, the return value from +** sqlite3_errcode() is undefined. ^The sqlite3_extended_errcode() +** interface is the same except that it always returns the +** [extended result code] even when extended result codes are +** disabled. +** +** ^The sqlite3_errmsg() and sqlite3_errmsg16() return English-language +** text that describes the error, as either UTF-8 or UTF-16 respectively. +** ^(Memory to hold the error message string is managed internally. +** The application does not need to worry about freeing the result. +** However, the error string might be overwritten or deallocated by +** subsequent calls to other SQLite interface functions.)^ +** +** ^The sqlite3_errstr() interface returns the English-language text +** that describes the [result code], as UTF-8. +** ^(Memory to hold the error message string is managed internally +** and must not be freed by the application)^. +** +** When the serialized [threading mode] is in use, it might be the +** case that a second error occurs on a separate thread in between +** the time of the first error and the call to these interfaces. +** When that happens, the second error will be reported since these +** interfaces always report the most recent result. To avoid +** this, each thread can obtain exclusive use of the [database connection] D +** by invoking [sqlite3_mutex_enter]([sqlite3_db_mutex](D)) before beginning +** to use D and invoking [sqlite3_mutex_leave]([sqlite3_db_mutex](D)) after +** all calls to the interfaces listed here are completed. +** +** If an interface fails with SQLITE_MISUSE, that means the interface +** was invoked incorrectly by the application. In that case, the +** error code and message may or may not be set. +*/ +SQLITE_API int sqlite3_errcode(sqlite3 *db); +SQLITE_API int sqlite3_extended_errcode(sqlite3 *db); +SQLITE_API const char *sqlite3_errmsg(sqlite3*); +SQLITE_API const void *sqlite3_errmsg16(sqlite3*); +SQLITE_API const char *sqlite3_errstr(int); + +/* +** CAPI3REF: SQL Statement Object +** KEYWORDS: {prepared statement} {prepared statements} +** +** An instance of this object represents a single SQL statement. +** This object is variously known as a "prepared statement" or a +** "compiled SQL statement" or simply as a "statement". +** +** The life of a statement object goes something like this: +** +**
            +**
          1. Create the object using [sqlite3_prepare_v2()] or a related +** function. +**
          2. Bind values to [host parameters] using the sqlite3_bind_*() +** interfaces. +**
          3. Run the SQL by calling [sqlite3_step()] one or more times. +**
          4. Reset the statement using [sqlite3_reset()] then go back +** to step 2. Do this zero or more times. +**
          5. Destroy the object using [sqlite3_finalize()]. +**
          +** +** Refer to documentation on individual methods above for additional +** information. +*/ +typedef struct sqlite3_stmt sqlite3_stmt; + +/* +** CAPI3REF: Run-time Limits +** +** ^(This interface allows the size of various constructs to be limited +** on a connection by connection basis. The first parameter is the +** [database connection] whose limit is to be set or queried. The +** second parameter is one of the [limit categories] that define a +** class of constructs to be size limited. The third parameter is the +** new limit for that construct.)^ +** +** ^If the new limit is a negative number, the limit is unchanged. +** ^(For each limit category SQLITE_LIMIT_NAME there is a +** [limits | hard upper bound] +** set at compile-time by a C preprocessor macro called +** [limits | SQLITE_MAX_NAME]. +** (The "_LIMIT_" in the name is changed to "_MAX_".))^ +** ^Attempts to increase a limit above its hard upper bound are +** silently truncated to the hard upper bound. +** +** ^Regardless of whether or not the limit was changed, the +** [sqlite3_limit()] interface returns the prior value of the limit. +** ^Hence, to find the current value of a limit without changing it, +** simply invoke this interface with the third parameter set to -1. +** +** Run-time limits are intended for use in applications that manage +** both their own internal database and also databases that are controlled +** by untrusted external sources. An example application might be a +** web browser that has its own databases for storing history and +** separate databases controlled by JavaScript applications downloaded +** off the Internet. The internal databases can be given the +** large, default limits. Databases managed by external sources can +** be given much smaller limits designed to prevent a denial of service +** attack. Developers might also want to use the [sqlite3_set_authorizer()] +** interface to further control untrusted SQL. The size of the database +** created by an untrusted script can be contained using the +** [max_page_count] [PRAGMA]. +** +** New run-time limit categories may be added in future releases. +*/ +SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal); + +/* +** CAPI3REF: Run-Time Limit Categories +** KEYWORDS: {limit category} {*limit categories} +** +** These constants define various performance limits +** that can be lowered at run-time using [sqlite3_limit()]. +** The synopsis of the meanings of the various limits is shown below. +** Additional information is available at [limits | Limits in SQLite]. +** +**
          +** [[SQLITE_LIMIT_LENGTH]] ^(
          SQLITE_LIMIT_LENGTH
          +**
          The maximum size of any string or BLOB or table row, in bytes.
          )^ +** +** [[SQLITE_LIMIT_SQL_LENGTH]] ^(
          SQLITE_LIMIT_SQL_LENGTH
          +**
          The maximum length of an SQL statement, in bytes.
          )^ +** +** [[SQLITE_LIMIT_COLUMN]] ^(
          SQLITE_LIMIT_COLUMN
          +**
          The maximum number of columns in a table definition or in the +** result set of a [SELECT] or the maximum number of columns in an index +** or in an ORDER BY or GROUP BY clause.
          )^ +** +** [[SQLITE_LIMIT_EXPR_DEPTH]] ^(
          SQLITE_LIMIT_EXPR_DEPTH
          +**
          The maximum depth of the parse tree on any expression.
          )^ +** +** [[SQLITE_LIMIT_COMPOUND_SELECT]] ^(
          SQLITE_LIMIT_COMPOUND_SELECT
          +**
          The maximum number of terms in a compound SELECT statement.
          )^ +** +** [[SQLITE_LIMIT_VDBE_OP]] ^(
          SQLITE_LIMIT_VDBE_OP
          +**
          The maximum number of instructions in a virtual machine program +** used to implement an SQL statement. This limit is not currently +** enforced, though that might be added in some future release of +** SQLite.
          )^ +** +** [[SQLITE_LIMIT_FUNCTION_ARG]] ^(
          SQLITE_LIMIT_FUNCTION_ARG
          +**
          The maximum number of arguments on a function.
          )^ +** +** [[SQLITE_LIMIT_ATTACHED]] ^(
          SQLITE_LIMIT_ATTACHED
          +**
          The maximum number of [ATTACH | attached databases].)^
          +** +** [[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]] +** ^(
          SQLITE_LIMIT_LIKE_PATTERN_LENGTH
          +**
          The maximum length of the pattern argument to the [LIKE] or +** [GLOB] operators.
          )^ +** +** [[SQLITE_LIMIT_VARIABLE_NUMBER]] +** ^(
          SQLITE_LIMIT_VARIABLE_NUMBER
          +**
          The maximum index number of any [parameter] in an SQL statement.)^ +** +** [[SQLITE_LIMIT_TRIGGER_DEPTH]] ^(
          SQLITE_LIMIT_TRIGGER_DEPTH
          +**
          The maximum depth of recursion for triggers.
          )^ +**
          +*/ +#define SQLITE_LIMIT_LENGTH 0 +#define SQLITE_LIMIT_SQL_LENGTH 1 +#define SQLITE_LIMIT_COLUMN 2 +#define SQLITE_LIMIT_EXPR_DEPTH 3 +#define SQLITE_LIMIT_COMPOUND_SELECT 4 +#define SQLITE_LIMIT_VDBE_OP 5 +#define SQLITE_LIMIT_FUNCTION_ARG 6 +#define SQLITE_LIMIT_ATTACHED 7 +#define SQLITE_LIMIT_LIKE_PATTERN_LENGTH 8 +#define SQLITE_LIMIT_VARIABLE_NUMBER 9 +#define SQLITE_LIMIT_TRIGGER_DEPTH 10 + +/* +** CAPI3REF: Compiling An SQL Statement +** KEYWORDS: {SQL statement compiler} +** +** To execute an SQL query, it must first be compiled into a byte-code +** program using one of these routines. +** +** The first argument, "db", is a [database connection] obtained from a +** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or +** [sqlite3_open16()]. The database connection must not have been closed. +** +** The second argument, "zSql", is the statement to be compiled, encoded +** as either UTF-8 or UTF-16. The sqlite3_prepare() and sqlite3_prepare_v2() +** interfaces use UTF-8, and sqlite3_prepare16() and sqlite3_prepare16_v2() +** use UTF-16. +** +** ^If the nByte argument is less than zero, then zSql is read up to the +** first zero terminator. ^If nByte is non-negative, then it is the maximum +** number of bytes read from zSql. ^When nByte is non-negative, the +** zSql string ends at either the first '\000' or '\u0000' character or +** the nByte-th byte, whichever comes first. If the caller knows +** that the supplied string is nul-terminated, then there is a small +** performance advantage to be gained by passing an nByte parameter that +** is equal to the number of bytes in the input string including +** the nul-terminator bytes as this saves SQLite from having to +** make a copy of the input string. +** +** ^If pzTail is not NULL then *pzTail is made to point to the first byte +** past the end of the first SQL statement in zSql. These routines only +** compile the first statement in zSql, so *pzTail is left pointing to +** what remains uncompiled. +** +** ^*ppStmt is left pointing to a compiled [prepared statement] that can be +** executed using [sqlite3_step()]. ^If there is an error, *ppStmt is set +** to NULL. ^If the input text contains no SQL (if the input is an empty +** string or a comment) then *ppStmt is set to NULL. +** The calling procedure is responsible for deleting the compiled +** SQL statement using [sqlite3_finalize()] after it has finished with it. +** ppStmt may not be NULL. +** +** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK]; +** otherwise an [error code] is returned. +** +** The sqlite3_prepare_v2() and sqlite3_prepare16_v2() interfaces are +** recommended for all new programs. The two older interfaces are retained +** for backwards compatibility, but their use is discouraged. +** ^In the "v2" interfaces, the prepared statement +** that is returned (the [sqlite3_stmt] object) contains a copy of the +** original SQL text. This causes the [sqlite3_step()] interface to +** behave differently in three ways: +** +**
            +**
          1. +** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it +** always used to do, [sqlite3_step()] will automatically recompile the SQL +** statement and try to run it again. As many as [SQLITE_MAX_SCHEMA_RETRY] +** retries will occur before sqlite3_step() gives up and returns an error. +**
          2. +** +**
          3. +** ^When an error occurs, [sqlite3_step()] will return one of the detailed +** [error codes] or [extended error codes]. ^The legacy behavior was that +** [sqlite3_step()] would only return a generic [SQLITE_ERROR] result code +** and the application would have to make a second call to [sqlite3_reset()] +** in order to find the underlying cause of the problem. With the "v2" prepare +** interfaces, the underlying reason for the error is returned immediately. +**
          4. +** +**
          5. +** ^If the specific value bound to [parameter | host parameter] in the +** WHERE clause might influence the choice of query plan for a statement, +** then the statement will be automatically recompiled, as if there had been +** a schema change, on the first [sqlite3_step()] call following any change +** to the [sqlite3_bind_text | bindings] of that [parameter]. +** ^The specific value of WHERE-clause [parameter] might influence the +** choice of query plan if the parameter is the left-hand side of a [LIKE] +** or [GLOB] operator or if the parameter is compared to an indexed column +** and the [SQLITE_ENABLE_STAT3] compile-time option is enabled. +**
          6. +**
          +*/ +SQLITE_API int sqlite3_prepare( + sqlite3 *db, /* Database handle */ + const char *zSql, /* SQL statement, UTF-8 encoded */ + int nByte, /* Maximum length of zSql in bytes. */ + sqlite3_stmt **ppStmt, /* OUT: Statement handle */ + const char **pzTail /* OUT: Pointer to unused portion of zSql */ +); +SQLITE_API int sqlite3_prepare_v2( + sqlite3 *db, /* Database handle */ + const char *zSql, /* SQL statement, UTF-8 encoded */ + int nByte, /* Maximum length of zSql in bytes. */ + sqlite3_stmt **ppStmt, /* OUT: Statement handle */ + const char **pzTail /* OUT: Pointer to unused portion of zSql */ +); +SQLITE_API int sqlite3_prepare16( + sqlite3 *db, /* Database handle */ + const void *zSql, /* SQL statement, UTF-16 encoded */ + int nByte, /* Maximum length of zSql in bytes. */ + sqlite3_stmt **ppStmt, /* OUT: Statement handle */ + const void **pzTail /* OUT: Pointer to unused portion of zSql */ +); +SQLITE_API int sqlite3_prepare16_v2( + sqlite3 *db, /* Database handle */ + const void *zSql, /* SQL statement, UTF-16 encoded */ + int nByte, /* Maximum length of zSql in bytes. */ + sqlite3_stmt **ppStmt, /* OUT: Statement handle */ + const void **pzTail /* OUT: Pointer to unused portion of zSql */ +); + +/* +** CAPI3REF: Retrieving Statement SQL +** +** ^This interface can be used to retrieve a saved copy of the original +** SQL text used to create a [prepared statement] if that statement was +** compiled using either [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()]. +*/ +SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt); + +/* +** CAPI3REF: Determine If An SQL Statement Writes The Database +** +** ^The sqlite3_stmt_readonly(X) interface returns true (non-zero) if +** and only if the [prepared statement] X makes no direct changes to +** the content of the database file. +** +** Note that [application-defined SQL functions] or +** [virtual tables] might change the database indirectly as a side effect. +** ^(For example, if an application defines a function "eval()" that +** calls [sqlite3_exec()], then the following SQL statement would +** change the database file through side-effects: +** +**
          +**    SELECT eval('DELETE FROM t1') FROM t2;
          +** 
          +** +** But because the [SELECT] statement does not change the database file +** directly, sqlite3_stmt_readonly() would still return true.)^ +** +** ^Transaction control statements such as [BEGIN], [COMMIT], [ROLLBACK], +** [SAVEPOINT], and [RELEASE] cause sqlite3_stmt_readonly() to return true, +** since the statements themselves do not actually modify the database but +** rather they control the timing of when other statements modify the +** database. ^The [ATTACH] and [DETACH] statements also cause +** sqlite3_stmt_readonly() to return true since, while those statements +** change the configuration of a database connection, they do not make +** changes to the content of the database files on disk. +*/ +SQLITE_API int sqlite3_stmt_readonly(sqlite3_stmt *pStmt); + +/* +** CAPI3REF: Determine If A Prepared Statement Has Been Reset +** +** ^The sqlite3_stmt_busy(S) interface returns true (non-zero) if the +** [prepared statement] S has been stepped at least once using +** [sqlite3_step(S)] but has not run to completion and/or has not +** been reset using [sqlite3_reset(S)]. ^The sqlite3_stmt_busy(S) +** interface returns false if S is a NULL pointer. If S is not a +** NULL pointer and is not a pointer to a valid [prepared statement] +** object, then the behavior is undefined and probably undesirable. +** +** This interface can be used in combination [sqlite3_next_stmt()] +** to locate all prepared statements associated with a database +** connection that are in need of being reset. This can be used, +** for example, in diagnostic routines to search for prepared +** statements that are holding a transaction open. +*/ +SQLITE_API int sqlite3_stmt_busy(sqlite3_stmt*); + +/* +** CAPI3REF: Dynamically Typed Value Object +** KEYWORDS: {protected sqlite3_value} {unprotected sqlite3_value} +** +** SQLite uses the sqlite3_value object to represent all values +** that can be stored in a database table. SQLite uses dynamic typing +** for the values it stores. ^Values stored in sqlite3_value objects +** can be integers, floating point values, strings, BLOBs, or NULL. +** +** An sqlite3_value object may be either "protected" or "unprotected". +** Some interfaces require a protected sqlite3_value. Other interfaces +** will accept either a protected or an unprotected sqlite3_value. +** Every interface that accepts sqlite3_value arguments specifies +** whether or not it requires a protected sqlite3_value. +** +** The terms "protected" and "unprotected" refer to whether or not +** a mutex is held. An internal mutex is held for a protected +** sqlite3_value object but no mutex is held for an unprotected +** sqlite3_value object. If SQLite is compiled to be single-threaded +** (with [SQLITE_THREADSAFE=0] and with [sqlite3_threadsafe()] returning 0) +** or if SQLite is run in one of reduced mutex modes +** [SQLITE_CONFIG_SINGLETHREAD] or [SQLITE_CONFIG_MULTITHREAD] +** then there is no distinction between protected and unprotected +** sqlite3_value objects and they can be used interchangeably. However, +** for maximum code portability it is recommended that applications +** still make the distinction between protected and unprotected +** sqlite3_value objects even when not strictly required. +** +** ^The sqlite3_value objects that are passed as parameters into the +** implementation of [application-defined SQL functions] are protected. +** ^The sqlite3_value object returned by +** [sqlite3_column_value()] is unprotected. +** Unprotected sqlite3_value objects may only be used with +** [sqlite3_result_value()] and [sqlite3_bind_value()]. +** The [sqlite3_value_blob | sqlite3_value_type()] family of +** interfaces require protected sqlite3_value objects. +*/ +typedef struct Mem sqlite3_value; + +/* +** CAPI3REF: SQL Function Context Object +** +** The context in which an SQL function executes is stored in an +** sqlite3_context object. ^A pointer to an sqlite3_context object +** is always first parameter to [application-defined SQL functions]. +** The application-defined SQL function implementation will pass this +** pointer through into calls to [sqlite3_result_int | sqlite3_result()], +** [sqlite3_aggregate_context()], [sqlite3_user_data()], +** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()], +** and/or [sqlite3_set_auxdata()]. +*/ +typedef struct sqlite3_context sqlite3_context; + +/* +** CAPI3REF: Binding Values To Prepared Statements +** KEYWORDS: {host parameter} {host parameters} {host parameter name} +** KEYWORDS: {SQL parameter} {SQL parameters} {parameter binding} +** +** ^(In the SQL statement text input to [sqlite3_prepare_v2()] and its variants, +** literals may be replaced by a [parameter] that matches one of following +** templates: +** +**
            +**
          • ? +**
          • ?NNN +**
          • :VVV +**
          • @VVV +**
          • $VVV +**
          +** +** In the templates above, NNN represents an integer literal, +** and VVV represents an alphanumeric identifier.)^ ^The values of these +** parameters (also called "host parameter names" or "SQL parameters") +** can be set using the sqlite3_bind_*() routines defined here. +** +** ^The first argument to the sqlite3_bind_*() routines is always +** a pointer to the [sqlite3_stmt] object returned from +** [sqlite3_prepare_v2()] or its variants. +** +** ^The second argument is the index of the SQL parameter to be set. +** ^The leftmost SQL parameter has an index of 1. ^When the same named +** SQL parameter is used more than once, second and subsequent +** occurrences have the same index as the first occurrence. +** ^The index for named parameters can be looked up using the +** [sqlite3_bind_parameter_index()] API if desired. ^The index +** for "?NNN" parameters is the value of NNN. +** ^The NNN value must be between 1 and the [sqlite3_limit()] +** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 999). +** +** ^The third argument is the value to bind to the parameter. +** ^If the third parameter to sqlite3_bind_text() or sqlite3_bind_text16() +** or sqlite3_bind_blob() is a NULL pointer then the fourth parameter +** is ignored and the end result is the same as sqlite3_bind_null(). +** +** ^(In those routines that have a fourth argument, its value is the +** number of bytes in the parameter. To be clear: the value is the +** number of bytes in the value, not the number of characters.)^ +** ^If the fourth parameter to sqlite3_bind_text() or sqlite3_bind_text16() +** is negative, then the length of the string is +** the number of bytes up to the first zero terminator. +** If the fourth parameter to sqlite3_bind_blob() is negative, then +** the behavior is undefined. +** If a non-negative fourth parameter is provided to sqlite3_bind_text() +** or sqlite3_bind_text16() then that parameter must be the byte offset +** where the NUL terminator would occur assuming the string were NUL +** terminated. If any NUL characters occur at byte offsets less than +** the value of the fourth parameter then the resulting string value will +** contain embedded NULs. The result of expressions involving strings +** with embedded NULs is undefined. +** +** ^The fifth argument to sqlite3_bind_blob(), sqlite3_bind_text(), and +** sqlite3_bind_text16() is a destructor used to dispose of the BLOB or +** string after SQLite has finished with it. ^The destructor is called +** to dispose of the BLOB or string even if the call to sqlite3_bind_blob(), +** sqlite3_bind_text(), or sqlite3_bind_text16() fails. +** ^If the fifth argument is +** the special value [SQLITE_STATIC], then SQLite assumes that the +** information is in static, unmanaged space and does not need to be freed. +** ^If the fifth argument has the value [SQLITE_TRANSIENT], then +** SQLite makes its own private copy of the data immediately, before +** the sqlite3_bind_*() routine returns. +** +** ^The sqlite3_bind_zeroblob() routine binds a BLOB of length N that +** is filled with zeroes. ^A zeroblob uses a fixed amount of memory +** (just an integer to hold its size) while it is being processed. +** Zeroblobs are intended to serve as placeholders for BLOBs whose +** content is later written using +** [sqlite3_blob_open | incremental BLOB I/O] routines. +** ^A negative value for the zeroblob results in a zero-length BLOB. +** +** ^If any of the sqlite3_bind_*() routines are called with a NULL pointer +** for the [prepared statement] or with a prepared statement for which +** [sqlite3_step()] has been called more recently than [sqlite3_reset()], +** then the call will return [SQLITE_MISUSE]. If any sqlite3_bind_() +** routine is passed a [prepared statement] that has been finalized, the +** result is undefined and probably harmful. +** +** ^Bindings are not cleared by the [sqlite3_reset()] routine. +** ^Unbound parameters are interpreted as NULL. +** +** ^The sqlite3_bind_* routines return [SQLITE_OK] on success or an +** [error code] if anything goes wrong. +** ^[SQLITE_RANGE] is returned if the parameter +** index is out of range. ^[SQLITE_NOMEM] is returned if malloc() fails. +** +** See also: [sqlite3_bind_parameter_count()], +** [sqlite3_bind_parameter_name()], and [sqlite3_bind_parameter_index()]. +*/ +SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*)); +SQLITE_API int sqlite3_bind_double(sqlite3_stmt*, int, double); +SQLITE_API int sqlite3_bind_int(sqlite3_stmt*, int, int); +SQLITE_API int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64); +SQLITE_API int sqlite3_bind_null(sqlite3_stmt*, int); +SQLITE_API int sqlite3_bind_text(sqlite3_stmt*, int, const char*, int n, void(*)(void*)); +SQLITE_API int sqlite3_bind_text16(sqlite3_stmt*, int, const void*, int, void(*)(void*)); +SQLITE_API int sqlite3_bind_value(sqlite3_stmt*, int, const sqlite3_value*); +SQLITE_API int sqlite3_bind_zeroblob(sqlite3_stmt*, int, int n); + +/* +** CAPI3REF: Number Of SQL Parameters +** +** ^This routine can be used to find the number of [SQL parameters] +** in a [prepared statement]. SQL parameters are tokens of the +** form "?", "?NNN", ":AAA", "$AAA", or "@AAA" that serve as +** placeholders for values that are [sqlite3_bind_blob | bound] +** to the parameters at a later time. +** +** ^(This routine actually returns the index of the largest (rightmost) +** parameter. For all forms except ?NNN, this will correspond to the +** number of unique parameters. If parameters of the ?NNN form are used, +** there may be gaps in the list.)^ +** +** See also: [sqlite3_bind_blob|sqlite3_bind()], +** [sqlite3_bind_parameter_name()], and +** [sqlite3_bind_parameter_index()]. +*/ +SQLITE_API int sqlite3_bind_parameter_count(sqlite3_stmt*); + +/* +** CAPI3REF: Name Of A Host Parameter +** +** ^The sqlite3_bind_parameter_name(P,N) interface returns +** the name of the N-th [SQL parameter] in the [prepared statement] P. +** ^(SQL parameters of the form "?NNN" or ":AAA" or "@AAA" or "$AAA" +** have a name which is the string "?NNN" or ":AAA" or "@AAA" or "$AAA" +** respectively. +** In other words, the initial ":" or "$" or "@" or "?" +** is included as part of the name.)^ +** ^Parameters of the form "?" without a following integer have no name +** and are referred to as "nameless" or "anonymous parameters". +** +** ^The first host parameter has an index of 1, not 0. +** +** ^If the value N is out of range or if the N-th parameter is +** nameless, then NULL is returned. ^The returned string is +** always in UTF-8 encoding even if the named parameter was +** originally specified as UTF-16 in [sqlite3_prepare16()] or +** [sqlite3_prepare16_v2()]. +** +** See also: [sqlite3_bind_blob|sqlite3_bind()], +** [sqlite3_bind_parameter_count()], and +** [sqlite3_bind_parameter_index()]. +*/ +SQLITE_API const char *sqlite3_bind_parameter_name(sqlite3_stmt*, int); + +/* +** CAPI3REF: Index Of A Parameter With A Given Name +** +** ^Return the index of an SQL parameter given its name. ^The +** index value returned is suitable for use as the second +** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero +** is returned if no matching parameter is found. ^The parameter +** name must be given in UTF-8 even if the original statement +** was prepared from UTF-16 text using [sqlite3_prepare16_v2()]. +** +** See also: [sqlite3_bind_blob|sqlite3_bind()], +** [sqlite3_bind_parameter_count()], and +** [sqlite3_bind_parameter_index()]. +*/ +SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName); + +/* +** CAPI3REF: Reset All Bindings On A Prepared Statement +** +** ^Contrary to the intuition of many, [sqlite3_reset()] does not reset +** the [sqlite3_bind_blob | bindings] on a [prepared statement]. +** ^Use this routine to reset all host parameters to NULL. +*/ +SQLITE_API int sqlite3_clear_bindings(sqlite3_stmt*); + +/* +** CAPI3REF: Number Of Columns In A Result Set +** +** ^Return the number of columns in the result set returned by the +** [prepared statement]. ^This routine returns 0 if pStmt is an SQL +** statement that does not return data (for example an [UPDATE]). +** +** See also: [sqlite3_data_count()] +*/ +SQLITE_API int sqlite3_column_count(sqlite3_stmt *pStmt); + +/* +** CAPI3REF: Column Names In A Result Set +** +** ^These routines return the name assigned to a particular column +** in the result set of a [SELECT] statement. ^The sqlite3_column_name() +** interface returns a pointer to a zero-terminated UTF-8 string +** and sqlite3_column_name16() returns a pointer to a zero-terminated +** UTF-16 string. ^The first parameter is the [prepared statement] +** that implements the [SELECT] statement. ^The second parameter is the +** column number. ^The leftmost column is number 0. +** +** ^The returned string pointer is valid until either the [prepared statement] +** is destroyed by [sqlite3_finalize()] or until the statement is automatically +** reprepared by the first call to [sqlite3_step()] for a particular run +** or until the next call to +** sqlite3_column_name() or sqlite3_column_name16() on the same column. +** +** ^If sqlite3_malloc() fails during the processing of either routine +** (for example during a conversion from UTF-8 to UTF-16) then a +** NULL pointer is returned. +** +** ^The name of a result column is the value of the "AS" clause for +** that column, if there is an AS clause. If there is no AS clause +** then the name of the column is unspecified and may change from +** one release of SQLite to the next. +*/ +SQLITE_API const char *sqlite3_column_name(sqlite3_stmt*, int N); +SQLITE_API const void *sqlite3_column_name16(sqlite3_stmt*, int N); + +/* +** CAPI3REF: Source Of Data In A Query Result +** +** ^These routines provide a means to determine the database, table, and +** table column that is the origin of a particular result column in +** [SELECT] statement. +** ^The name of the database or table or column can be returned as +** either a UTF-8 or UTF-16 string. ^The _database_ routines return +** the database name, the _table_ routines return the table name, and +** the origin_ routines return the column name. +** ^The returned string is valid until the [prepared statement] is destroyed +** using [sqlite3_finalize()] or until the statement is automatically +** reprepared by the first call to [sqlite3_step()] for a particular run +** or until the same information is requested +** again in a different encoding. +** +** ^The names returned are the original un-aliased names of the +** database, table, and column. +** +** ^The first argument to these interfaces is a [prepared statement]. +** ^These functions return information about the Nth result column returned by +** the statement, where N is the second function argument. +** ^The left-most column is column 0 for these routines. +** +** ^If the Nth column returned by the statement is an expression or +** subquery and is not a column value, then all of these functions return +** NULL. ^These routine might also return NULL if a memory allocation error +** occurs. ^Otherwise, they return the name of the attached database, table, +** or column that query result column was extracted from. +** +** ^As with all other SQLite APIs, those whose names end with "16" return +** UTF-16 encoded strings and the other functions return UTF-8. +** +** ^These APIs are only available if the library was compiled with the +** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol. +** +** If two or more threads call one or more of these routines against the same +** prepared statement and column at the same time then the results are +** undefined. +** +** If two or more threads call one or more +** [sqlite3_column_database_name | column metadata interfaces] +** for the same [prepared statement] and result column +** at the same time then the results are undefined. +*/ +SQLITE_API const char *sqlite3_column_database_name(sqlite3_stmt*,int); +SQLITE_API const void *sqlite3_column_database_name16(sqlite3_stmt*,int); +SQLITE_API const char *sqlite3_column_table_name(sqlite3_stmt*,int); +SQLITE_API const void *sqlite3_column_table_name16(sqlite3_stmt*,int); +SQLITE_API const char *sqlite3_column_origin_name(sqlite3_stmt*,int); +SQLITE_API const void *sqlite3_column_origin_name16(sqlite3_stmt*,int); + +/* +** CAPI3REF: Declared Datatype Of A Query Result +** +** ^(The first parameter is a [prepared statement]. +** If this statement is a [SELECT] statement and the Nth column of the +** returned result set of that [SELECT] is a table column (not an +** expression or subquery) then the declared type of the table +** column is returned.)^ ^If the Nth column of the result set is an +** expression or subquery, then a NULL pointer is returned. +** ^The returned string is always UTF-8 encoded. +** +** ^(For example, given the database schema: +** +** CREATE TABLE t1(c1 VARIANT); +** +** and the following statement to be compiled: +** +** SELECT c1 + 1, c1 FROM t1; +** +** this routine would return the string "VARIANT" for the second result +** column (i==1), and a NULL pointer for the first result column (i==0).)^ +** +** ^SQLite uses dynamic run-time typing. ^So just because a column +** is declared to contain a particular type does not mean that the +** data stored in that column is of the declared type. SQLite is +** strongly typed, but the typing is dynamic not static. ^Type +** is associated with individual values, not with the containers +** used to hold those values. +*/ +SQLITE_API const char *sqlite3_column_decltype(sqlite3_stmt*,int); +SQLITE_API const void *sqlite3_column_decltype16(sqlite3_stmt*,int); + +/* +** CAPI3REF: Evaluate An SQL Statement +** +** After a [prepared statement] has been prepared using either +** [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()] or one of the legacy +** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function +** must be called one or more times to evaluate the statement. +** +** The details of the behavior of the sqlite3_step() interface depend +** on whether the statement was prepared using the newer "v2" interface +** [sqlite3_prepare_v2()] and [sqlite3_prepare16_v2()] or the older legacy +** interface [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the +** new "v2" interface is recommended for new applications but the legacy +** interface will continue to be supported. +** +** ^In the legacy interface, the return value will be either [SQLITE_BUSY], +** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE]. +** ^With the "v2" interface, any of the other [result codes] or +** [extended result codes] might be returned as well. +** +** ^[SQLITE_BUSY] means that the database engine was unable to acquire the +** database locks it needs to do its job. ^If the statement is a [COMMIT] +** or occurs outside of an explicit transaction, then you can retry the +** statement. If the statement is not a [COMMIT] and occurs within an +** explicit transaction then you should rollback the transaction before +** continuing. +** +** ^[SQLITE_DONE] means that the statement has finished executing +** successfully. sqlite3_step() should not be called again on this virtual +** machine without first calling [sqlite3_reset()] to reset the virtual +** machine back to its initial state. +** +** ^If the SQL statement being executed returns any data, then [SQLITE_ROW] +** is returned each time a new row of data is ready for processing by the +** caller. The values may be accessed using the [column access functions]. +** sqlite3_step() is called again to retrieve the next row of data. +** +** ^[SQLITE_ERROR] means that a run-time error (such as a constraint +** violation) has occurred. sqlite3_step() should not be called again on +** the VM. More information may be found by calling [sqlite3_errmsg()]. +** ^With the legacy interface, a more specific error code (for example, +** [SQLITE_INTERRUPT], [SQLITE_SCHEMA], [SQLITE_CORRUPT], and so forth) +** can be obtained by calling [sqlite3_reset()] on the +** [prepared statement]. ^In the "v2" interface, +** the more specific error code is returned directly by sqlite3_step(). +** +** [SQLITE_MISUSE] means that the this routine was called inappropriately. +** Perhaps it was called on a [prepared statement] that has +** already been [sqlite3_finalize | finalized] or on one that had +** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could +** be the case that the same database connection is being used by two or +** more threads at the same moment in time. +** +** For all versions of SQLite up to and including 3.6.23.1, a call to +** [sqlite3_reset()] was required after sqlite3_step() returned anything +** other than [SQLITE_ROW] before any subsequent invocation of +** sqlite3_step(). Failure to reset the prepared statement using +** [sqlite3_reset()] would result in an [SQLITE_MISUSE] return from +** sqlite3_step(). But after version 3.6.23.1, sqlite3_step() began +** calling [sqlite3_reset()] automatically in this circumstance rather +** than returning [SQLITE_MISUSE]. This is not considered a compatibility +** break because any application that ever receives an SQLITE_MISUSE error +** is broken by definition. The [SQLITE_OMIT_AUTORESET] compile-time option +** can be used to restore the legacy behavior. +** +** Goofy Interface Alert: In the legacy interface, the sqlite3_step() +** API always returns a generic error code, [SQLITE_ERROR], following any +** error other than [SQLITE_BUSY] and [SQLITE_MISUSE]. You must call +** [sqlite3_reset()] or [sqlite3_finalize()] in order to find one of the +** specific [error codes] that better describes the error. +** We admit that this is a goofy design. The problem has been fixed +** with the "v2" interface. If you prepare all of your SQL statements +** using either [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()] instead +** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces, +** then the more specific [error codes] are returned directly +** by sqlite3_step(). The use of the "v2" interface is recommended. +*/ +SQLITE_API int sqlite3_step(sqlite3_stmt*); + +/* +** CAPI3REF: Number of columns in a result set +** +** ^The sqlite3_data_count(P) interface returns the number of columns in the +** current row of the result set of [prepared statement] P. +** ^If prepared statement P does not have results ready to return +** (via calls to the [sqlite3_column_int | sqlite3_column_*()] of +** interfaces) then sqlite3_data_count(P) returns 0. +** ^The sqlite3_data_count(P) routine also returns 0 if P is a NULL pointer. +** ^The sqlite3_data_count(P) routine returns 0 if the previous call to +** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P) +** will return non-zero if previous call to [sqlite3_step](P) returned +** [SQLITE_ROW], except in the case of the [PRAGMA incremental_vacuum] +** where it always returns zero since each step of that multi-step +** pragma returns 0 columns of data. +** +** See also: [sqlite3_column_count()] +*/ +SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt); + +/* +** CAPI3REF: Fundamental Datatypes +** KEYWORDS: SQLITE_TEXT +** +** ^(Every value in SQLite has one of five fundamental datatypes: +** +**
            +**
          • 64-bit signed integer +**
          • 64-bit IEEE floating point number +**
          • string +**
          • BLOB +**
          • NULL +**
          )^ +** +** These constants are codes for each of those types. +** +** Note that the SQLITE_TEXT constant was also used in SQLite version 2 +** for a completely different meaning. Software that links against both +** SQLite version 2 and SQLite version 3 should use SQLITE3_TEXT, not +** SQLITE_TEXT. +*/ +#define SQLITE_INTEGER 1 +#define SQLITE_FLOAT 2 +#define SQLITE_BLOB 4 +#define SQLITE_NULL 5 +#ifdef SQLITE_TEXT +# undef SQLITE_TEXT +#else +# define SQLITE_TEXT 3 +#endif +#define SQLITE3_TEXT 3 + +/* +** CAPI3REF: Result Values From A Query +** KEYWORDS: {column access functions} +** +** These routines form the "result set" interface. +** +** ^These routines return information about a single column of the current +** result row of a query. ^In every case the first argument is a pointer +** to the [prepared statement] that is being evaluated (the [sqlite3_stmt*] +** that was returned from [sqlite3_prepare_v2()] or one of its variants) +** and the second argument is the index of the column for which information +** should be returned. ^The leftmost column of the result set has the index 0. +** ^The number of columns in the result can be determined using +** [sqlite3_column_count()]. +** +** If the SQL statement does not currently point to a valid row, or if the +** column index is out of range, the result is undefined. +** These routines may only be called when the most recent call to +** [sqlite3_step()] has returned [SQLITE_ROW] and neither +** [sqlite3_reset()] nor [sqlite3_finalize()] have been called subsequently. +** If any of these routines are called after [sqlite3_reset()] or +** [sqlite3_finalize()] or after [sqlite3_step()] has returned +** something other than [SQLITE_ROW], the results are undefined. +** If [sqlite3_step()] or [sqlite3_reset()] or [sqlite3_finalize()] +** are called from a different thread while any of these routines +** are pending, then the results are undefined. +** +** ^The sqlite3_column_type() routine returns the +** [SQLITE_INTEGER | datatype code] for the initial data type +** of the result column. ^The returned value is one of [SQLITE_INTEGER], +** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL]. The value +** returned by sqlite3_column_type() is only meaningful if no type +** conversions have occurred as described below. After a type conversion, +** the value returned by sqlite3_column_type() is undefined. Future +** versions of SQLite may change the behavior of sqlite3_column_type() +** following a type conversion. +** +** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes() +** routine returns the number of bytes in that BLOB or string. +** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts +** the string to UTF-8 and then returns the number of bytes. +** ^If the result is a numeric value then sqlite3_column_bytes() uses +** [sqlite3_snprintf()] to convert that value to a UTF-8 string and returns +** the number of bytes in that string. +** ^If the result is NULL, then sqlite3_column_bytes() returns zero. +** +** ^If the result is a BLOB or UTF-16 string then the sqlite3_column_bytes16() +** routine returns the number of bytes in that BLOB or string. +** ^If the result is a UTF-8 string, then sqlite3_column_bytes16() converts +** the string to UTF-16 and then returns the number of bytes. +** ^If the result is a numeric value then sqlite3_column_bytes16() uses +** [sqlite3_snprintf()] to convert that value to a UTF-16 string and returns +** the number of bytes in that string. +** ^If the result is NULL, then sqlite3_column_bytes16() returns zero. +** +** ^The values returned by [sqlite3_column_bytes()] and +** [sqlite3_column_bytes16()] do not include the zero terminators at the end +** of the string. ^For clarity: the values returned by +** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of +** bytes in the string, not the number of characters. +** +** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(), +** even empty strings, are always zero-terminated. ^The return +** value from sqlite3_column_blob() for a zero-length BLOB is a NULL pointer. +** +** ^The object returned by [sqlite3_column_value()] is an +** [unprotected sqlite3_value] object. An unprotected sqlite3_value object +** may only be used with [sqlite3_bind_value()] and [sqlite3_result_value()]. +** If the [unprotected sqlite3_value] object returned by +** [sqlite3_column_value()] is used in any other way, including calls +** to routines like [sqlite3_value_int()], [sqlite3_value_text()], +** or [sqlite3_value_bytes()], then the behavior is undefined. +** +** These routines attempt to convert the value where appropriate. ^For +** example, if the internal representation is FLOAT and a text result +** is requested, [sqlite3_snprintf()] is used internally to perform the +** conversion automatically. ^(The following table details the conversions +** that are applied: +** +**
          +** +**
          Internal
          Type
          Requested
          Type
          Conversion +** +**
          NULL INTEGER Result is 0 +**
          NULL FLOAT Result is 0.0 +**
          NULL TEXT Result is a NULL pointer +**
          NULL BLOB Result is a NULL pointer +**
          INTEGER FLOAT Convert from integer to float +**
          INTEGER TEXT ASCII rendering of the integer +**
          INTEGER BLOB Same as INTEGER->TEXT +**
          FLOAT INTEGER [CAST] to INTEGER +**
          FLOAT TEXT ASCII rendering of the float +**
          FLOAT BLOB [CAST] to BLOB +**
          TEXT INTEGER [CAST] to INTEGER +**
          TEXT FLOAT [CAST] to REAL +**
          TEXT BLOB No change +**
          BLOB INTEGER [CAST] to INTEGER +**
          BLOB FLOAT [CAST] to REAL +**
          BLOB TEXT Add a zero terminator if needed +**
          +**
          )^ +** +** The table above makes reference to standard C library functions atoi() +** and atof(). SQLite does not really use these functions. It has its +** own equivalent internal routines. The atoi() and atof() names are +** used in the table for brevity and because they are familiar to most +** C programmers. +** +** Note that when type conversions occur, pointers returned by prior +** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or +** sqlite3_column_text16() may be invalidated. +** Type conversions and pointer invalidations might occur +** in the following cases: +** +**
            +**
          • The initial content is a BLOB and sqlite3_column_text() or +** sqlite3_column_text16() is called. A zero-terminator might +** need to be added to the string.
          • +**
          • The initial content is UTF-8 text and sqlite3_column_bytes16() or +** sqlite3_column_text16() is called. The content must be converted +** to UTF-16.
          • +**
          • The initial content is UTF-16 text and sqlite3_column_bytes() or +** sqlite3_column_text() is called. The content must be converted +** to UTF-8.
          • +**
          +** +** ^Conversions between UTF-16be and UTF-16le are always done in place and do +** not invalidate a prior pointer, though of course the content of the buffer +** that the prior pointer references will have been modified. Other kinds +** of conversion are done in place when it is possible, but sometimes they +** are not possible and in those cases prior pointers are invalidated. +** +** The safest and easiest to remember policy is to invoke these routines +** in one of the following ways: +** +**
            +**
          • sqlite3_column_text() followed by sqlite3_column_bytes()
          • +**
          • sqlite3_column_blob() followed by sqlite3_column_bytes()
          • +**
          • sqlite3_column_text16() followed by sqlite3_column_bytes16()
          • +**
          +** +** In other words, you should call sqlite3_column_text(), +** sqlite3_column_blob(), or sqlite3_column_text16() first to force the result +** into the desired format, then invoke sqlite3_column_bytes() or +** sqlite3_column_bytes16() to find the size of the result. Do not mix calls +** to sqlite3_column_text() or sqlite3_column_blob() with calls to +** sqlite3_column_bytes16(), and do not mix calls to sqlite3_column_text16() +** with calls to sqlite3_column_bytes(). +** +** ^The pointers returned are valid until a type conversion occurs as +** described above, or until [sqlite3_step()] or [sqlite3_reset()] or +** [sqlite3_finalize()] is called. ^The memory space used to hold strings +** and BLOBs is freed automatically. Do not pass the pointers returned +** from [sqlite3_column_blob()], [sqlite3_column_text()], etc. into +** [sqlite3_free()]. +** +** ^(If a memory allocation error occurs during the evaluation of any +** of these routines, a default value is returned. The default value +** is either the integer 0, the floating point number 0.0, or a NULL +** pointer. Subsequent calls to [sqlite3_errcode()] will return +** [SQLITE_NOMEM].)^ +*/ +SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt*, int iCol); +SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol); +SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt*, int iCol); +SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol); +SQLITE_API int sqlite3_column_int(sqlite3_stmt*, int iCol); +SQLITE_API sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol); +SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol); +SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt*, int iCol); +SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol); +SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol); + +/* +** CAPI3REF: Destroy A Prepared Statement Object +** +** ^The sqlite3_finalize() function is called to delete a [prepared statement]. +** ^If the most recent evaluation of the statement encountered no errors +** or if the statement is never been evaluated, then sqlite3_finalize() returns +** SQLITE_OK. ^If the most recent evaluation of statement S failed, then +** sqlite3_finalize(S) returns the appropriate [error code] or +** [extended error code]. +** +** ^The sqlite3_finalize(S) routine can be called at any point during +** the life cycle of [prepared statement] S: +** before statement S is ever evaluated, after +** one or more calls to [sqlite3_reset()], or after any call +** to [sqlite3_step()] regardless of whether or not the statement has +** completed execution. +** +** ^Invoking sqlite3_finalize() on a NULL pointer is a harmless no-op. +** +** The application must finalize every [prepared statement] in order to avoid +** resource leaks. It is a grievous error for the application to try to use +** a prepared statement after it has been finalized. Any use of a prepared +** statement after it has been finalized can result in undefined and +** undesirable behavior such as segfaults and heap corruption. +*/ +SQLITE_API int sqlite3_finalize(sqlite3_stmt *pStmt); + +/* +** CAPI3REF: Reset A Prepared Statement Object +** +** The sqlite3_reset() function is called to reset a [prepared statement] +** object back to its initial state, ready to be re-executed. +** ^Any SQL statement variables that had values bound to them using +** the [sqlite3_bind_blob | sqlite3_bind_*() API] retain their values. +** Use [sqlite3_clear_bindings()] to reset the bindings. +** +** ^The [sqlite3_reset(S)] interface resets the [prepared statement] S +** back to the beginning of its program. +** +** ^If the most recent call to [sqlite3_step(S)] for the +** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE], +** or if [sqlite3_step(S)] has never before been called on S, +** then [sqlite3_reset(S)] returns [SQLITE_OK]. +** +** ^If the most recent call to [sqlite3_step(S)] for the +** [prepared statement] S indicated an error, then +** [sqlite3_reset(S)] returns an appropriate [error code]. +** +** ^The [sqlite3_reset(S)] interface does not change the values +** of any [sqlite3_bind_blob|bindings] on the [prepared statement] S. +*/ +SQLITE_API int sqlite3_reset(sqlite3_stmt *pStmt); + +/* +** CAPI3REF: Create Or Redefine SQL Functions +** KEYWORDS: {function creation routines} +** KEYWORDS: {application-defined SQL function} +** KEYWORDS: {application-defined SQL functions} +** +** ^These functions (collectively known as "function creation routines") +** are used to add SQL functions or aggregates or to redefine the behavior +** of existing SQL functions or aggregates. The only differences between +** these routines are the text encoding expected for +** the second parameter (the name of the function being created) +** and the presence or absence of a destructor callback for +** the application data pointer. +** +** ^The first parameter is the [database connection] to which the SQL +** function is to be added. ^If an application uses more than one database +** connection then application-defined SQL functions must be added +** to each database connection separately. +** +** ^The second parameter is the name of the SQL function to be created or +** redefined. ^The length of the name is limited to 255 bytes in a UTF-8 +** representation, exclusive of the zero-terminator. ^Note that the name +** length limit is in UTF-8 bytes, not characters nor UTF-16 bytes. +** ^Any attempt to create a function with a longer name +** will result in [SQLITE_MISUSE] being returned. +** +** ^The third parameter (nArg) +** is the number of arguments that the SQL function or +** aggregate takes. ^If this parameter is -1, then the SQL function or +** aggregate may take any number of arguments between 0 and the limit +** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third +** parameter is less than -1 or greater than 127 then the behavior is +** undefined. +** +** ^The fourth parameter, eTextRep, specifies what +** [SQLITE_UTF8 | text encoding] this SQL function prefers for +** its parameters. The application should set this parameter to +** [SQLITE_UTF16LE] if the function implementation invokes +** [sqlite3_value_text16le()] on an input, or [SQLITE_UTF16BE] if the +** implementation invokes [sqlite3_value_text16be()] on an input, or +** [SQLITE_UTF16] if [sqlite3_value_text16()] is used, or [SQLITE_UTF8] +** otherwise. ^The same SQL function may be registered multiple times using +** different preferred text encodings, with different implementations for +** each encoding. +** ^When multiple implementations of the same function are available, SQLite +** will pick the one that involves the least amount of data conversion. +** +** ^The fourth parameter may optionally be ORed with [SQLITE_DETERMINISTIC] +** to signal that the function will always return the same result given +** the same inputs within a single SQL statement. Most SQL functions are +** deterministic. The built-in [random()] SQL function is an example of a +** function that is not deterministic. The SQLite query planner is able to +** perform additional optimizations on deterministic functions, so use +** of the [SQLITE_DETERMINISTIC] flag is recommended where possible. +** +** ^(The fifth parameter is an arbitrary pointer. The implementation of the +** function can gain access to this pointer using [sqlite3_user_data()].)^ +** +** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are +** pointers to C-language functions that implement the SQL function or +** aggregate. ^A scalar SQL function requires an implementation of the xFunc +** callback only; NULL pointers must be passed as the xStep and xFinal +** parameters. ^An aggregate SQL function requires an implementation of xStep +** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing +** SQL function or aggregate, pass NULL pointers for all three function +** callbacks. +** +** ^(If the ninth parameter to sqlite3_create_function_v2() is not NULL, +** then it is destructor for the application data pointer. +** The destructor is invoked when the function is deleted, either by being +** overloaded or when the database connection closes.)^ +** ^The destructor is also invoked if the call to +** sqlite3_create_function_v2() fails. +** ^When the destructor callback of the tenth parameter is invoked, it +** is passed a single argument which is a copy of the application data +** pointer which was the fifth parameter to sqlite3_create_function_v2(). +** +** ^It is permitted to register multiple implementations of the same +** functions with the same name but with either differing numbers of +** arguments or differing preferred text encodings. ^SQLite will use +** the implementation that most closely matches the way in which the +** SQL function is used. ^A function implementation with a non-negative +** nArg parameter is a better match than a function implementation with +** a negative nArg. ^A function where the preferred text encoding +** matches the database encoding is a better +** match than a function where the encoding is different. +** ^A function where the encoding difference is between UTF16le and UTF16be +** is a closer match than a function where the encoding difference is +** between UTF8 and UTF16. +** +** ^Built-in functions may be overloaded by new application-defined functions. +** +** ^An application-defined function is permitted to call other +** SQLite interfaces. However, such calls must not +** close the database connection nor finalize or reset the prepared +** statement in which the function is running. +*/ +SQLITE_API int sqlite3_create_function( + sqlite3 *db, + const char *zFunctionName, + int nArg, + int eTextRep, + void *pApp, + void (*xFunc)(sqlite3_context*,int,sqlite3_value**), + void (*xStep)(sqlite3_context*,int,sqlite3_value**), + void (*xFinal)(sqlite3_context*) +); +SQLITE_API int sqlite3_create_function16( + sqlite3 *db, + const void *zFunctionName, + int nArg, + int eTextRep, + void *pApp, + void (*xFunc)(sqlite3_context*,int,sqlite3_value**), + void (*xStep)(sqlite3_context*,int,sqlite3_value**), + void (*xFinal)(sqlite3_context*) +); +SQLITE_API int sqlite3_create_function_v2( + sqlite3 *db, + const char *zFunctionName, + int nArg, + int eTextRep, + void *pApp, + void (*xFunc)(sqlite3_context*,int,sqlite3_value**), + void (*xStep)(sqlite3_context*,int,sqlite3_value**), + void (*xFinal)(sqlite3_context*), + void(*xDestroy)(void*) +); + +/* +** CAPI3REF: Text Encodings +** +** These constant define integer codes that represent the various +** text encodings supported by SQLite. +*/ +#define SQLITE_UTF8 1 +#define SQLITE_UTF16LE 2 +#define SQLITE_UTF16BE 3 +#define SQLITE_UTF16 4 /* Use native byte order */ +#define SQLITE_ANY 5 /* Deprecated */ +#define SQLITE_UTF16_ALIGNED 8 /* sqlite3_create_collation only */ + +/* +** CAPI3REF: Function Flags +** +** These constants may be ORed together with the +** [SQLITE_UTF8 | preferred text encoding] as the fourth argument +** to [sqlite3_create_function()], [sqlite3_create_function16()], or +** [sqlite3_create_function_v2()]. +*/ +#define SQLITE_DETERMINISTIC 0x800 + +/* +** CAPI3REF: Deprecated Functions +** DEPRECATED +** +** These functions are [deprecated]. In order to maintain +** backwards compatibility with older code, these functions continue +** to be supported. However, new applications should avoid +** the use of these functions. To help encourage people to avoid +** using these functions, we are not going to tell you what they do. +*/ +#ifndef SQLITE_OMIT_DEPRECATED +SQLITE_API SQLITE_DEPRECATED int sqlite3_aggregate_count(sqlite3_context*); +SQLITE_API SQLITE_DEPRECATED int sqlite3_expired(sqlite3_stmt*); +SQLITE_API SQLITE_DEPRECATED int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*); +SQLITE_API SQLITE_DEPRECATED int sqlite3_global_recover(void); +SQLITE_API SQLITE_DEPRECATED void sqlite3_thread_cleanup(void); +SQLITE_API SQLITE_DEPRECATED int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int), + void*,sqlite3_int64); +#endif + +/* +** CAPI3REF: Obtaining SQL Function Parameter Values +** +** The C-language implementation of SQL functions and aggregates uses +** this set of interface routines to access the parameter values on +** the function or aggregate. +** +** The xFunc (for scalar functions) or xStep (for aggregates) parameters +** to [sqlite3_create_function()] and [sqlite3_create_function16()] +** define callbacks that implement the SQL functions and aggregates. +** The 3rd parameter to these callbacks is an array of pointers to +** [protected sqlite3_value] objects. There is one [sqlite3_value] object for +** each parameter to the SQL function. These routines are used to +** extract values from the [sqlite3_value] objects. +** +** These routines work only with [protected sqlite3_value] objects. +** Any attempt to use these routines on an [unprotected sqlite3_value] +** object results in undefined behavior. +** +** ^These routines work just like the corresponding [column access functions] +** except that these routines take a single [protected sqlite3_value] object +** pointer instead of a [sqlite3_stmt*] pointer and an integer column number. +** +** ^The sqlite3_value_text16() interface extracts a UTF-16 string +** in the native byte-order of the host machine. ^The +** sqlite3_value_text16be() and sqlite3_value_text16le() interfaces +** extract UTF-16 strings as big-endian and little-endian respectively. +** +** ^(The sqlite3_value_numeric_type() interface attempts to apply +** numeric affinity to the value. This means that an attempt is +** made to convert the value to an integer or floating point. If +** such a conversion is possible without loss of information (in other +** words, if the value is a string that looks like a number) +** then the conversion is performed. Otherwise no conversion occurs. +** The [SQLITE_INTEGER | datatype] after conversion is returned.)^ +** +** Please pay particular attention to the fact that the pointer returned +** from [sqlite3_value_blob()], [sqlite3_value_text()], or +** [sqlite3_value_text16()] can be invalidated by a subsequent call to +** [sqlite3_value_bytes()], [sqlite3_value_bytes16()], [sqlite3_value_text()], +** or [sqlite3_value_text16()]. +** +** These routines must be called from the same thread as +** the SQL function that supplied the [sqlite3_value*] parameters. +*/ +SQLITE_API const void *sqlite3_value_blob(sqlite3_value*); +SQLITE_API int sqlite3_value_bytes(sqlite3_value*); +SQLITE_API int sqlite3_value_bytes16(sqlite3_value*); +SQLITE_API double sqlite3_value_double(sqlite3_value*); +SQLITE_API int sqlite3_value_int(sqlite3_value*); +SQLITE_API sqlite3_int64 sqlite3_value_int64(sqlite3_value*); +SQLITE_API const unsigned char *sqlite3_value_text(sqlite3_value*); +SQLITE_API const void *sqlite3_value_text16(sqlite3_value*); +SQLITE_API const void *sqlite3_value_text16le(sqlite3_value*); +SQLITE_API const void *sqlite3_value_text16be(sqlite3_value*); +SQLITE_API int sqlite3_value_type(sqlite3_value*); +SQLITE_API int sqlite3_value_numeric_type(sqlite3_value*); + +/* +** CAPI3REF: Obtain Aggregate Function Context +** +** Implementations of aggregate SQL functions use this +** routine to allocate memory for storing their state. +** +** ^The first time the sqlite3_aggregate_context(C,N) routine is called +** for a particular aggregate function, SQLite +** allocates N of memory, zeroes out that memory, and returns a pointer +** to the new memory. ^On second and subsequent calls to +** sqlite3_aggregate_context() for the same aggregate function instance, +** the same buffer is returned. Sqlite3_aggregate_context() is normally +** called once for each invocation of the xStep callback and then one +** last time when the xFinal callback is invoked. ^(When no rows match +** an aggregate query, the xStep() callback of the aggregate function +** implementation is never called and xFinal() is called exactly once. +** In those cases, sqlite3_aggregate_context() might be called for the +** first time from within xFinal().)^ +** +** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer +** when first called if N is less than or equal to zero or if a memory +** allocate error occurs. +** +** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is +** determined by the N parameter on first successful call. Changing the +** value of N in subsequent call to sqlite3_aggregate_context() within +** the same aggregate function instance will not resize the memory +** allocation.)^ Within the xFinal callback, it is customary to set +** N=0 in calls to sqlite3_aggregate_context(C,N) so that no +** pointless memory allocations occur. +** +** ^SQLite automatically frees the memory allocated by +** sqlite3_aggregate_context() when the aggregate query concludes. +** +** The first parameter must be a copy of the +** [sqlite3_context | SQL function context] that is the first parameter +** to the xStep or xFinal callback routine that implements the aggregate +** function. +** +** This routine must be called from the same thread in which +** the aggregate SQL function is running. +*/ +SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes); + +/* +** CAPI3REF: User Data For Functions +** +** ^The sqlite3_user_data() interface returns a copy of +** the pointer that was the pUserData parameter (the 5th parameter) +** of the [sqlite3_create_function()] +** and [sqlite3_create_function16()] routines that originally +** registered the application defined function. +** +** This routine must be called from the same thread in which +** the application-defined function is running. +*/ +SQLITE_API void *sqlite3_user_data(sqlite3_context*); + +/* +** CAPI3REF: Database Connection For Functions +** +** ^The sqlite3_context_db_handle() interface returns a copy of +** the pointer to the [database connection] (the 1st parameter) +** of the [sqlite3_create_function()] +** and [sqlite3_create_function16()] routines that originally +** registered the application defined function. +*/ +SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context*); + +/* +** CAPI3REF: Function Auxiliary Data +** +** These functions may be used by (non-aggregate) SQL functions to +** associate metadata with argument values. If the same value is passed to +** multiple invocations of the same SQL function during query execution, under +** some circumstances the associated metadata may be preserved. An example +** of where this might be useful is in a regular-expression matching +** function. The compiled version of the regular expression can be stored as +** metadata associated with the pattern string. +** Then as long as the pattern string remains the same, +** the compiled regular expression can be reused on multiple +** invocations of the same function. +** +** ^The sqlite3_get_auxdata() interface returns a pointer to the metadata +** associated by the sqlite3_set_auxdata() function with the Nth argument +** value to the application-defined function. ^If there is no metadata +** associated with the function argument, this sqlite3_get_auxdata() interface +** returns a NULL pointer. +** +** ^The sqlite3_set_auxdata(C,N,P,X) interface saves P as metadata for the N-th +** argument of the application-defined function. ^Subsequent +** calls to sqlite3_get_auxdata(C,N) return P from the most recent +** sqlite3_set_auxdata(C,N,P,X) call if the metadata is still valid or +** NULL if the metadata has been discarded. +** ^After each call to sqlite3_set_auxdata(C,N,P,X) where X is not NULL, +** SQLite will invoke the destructor function X with parameter P exactly +** once, when the metadata is discarded. +** SQLite is free to discard the metadata at any time, including:
            +**
          • when the corresponding function parameter changes, or +**
          • when [sqlite3_reset()] or [sqlite3_finalize()] is called for the +** SQL statement, or +**
          • when sqlite3_set_auxdata() is invoked again on the same parameter, or +**
          • during the original sqlite3_set_auxdata() call when a memory +** allocation error occurs.
          )^ +** +** Note the last bullet in particular. The destructor X in +** sqlite3_set_auxdata(C,N,P,X) might be called immediately, before the +** sqlite3_set_auxdata() interface even returns. Hence sqlite3_set_auxdata() +** should be called near the end of the function implementation and the +** function implementation should not make any use of P after +** sqlite3_set_auxdata() has been called. +** +** ^(In practice, metadata is preserved between function calls for +** function parameters that are compile-time constants, including literal +** values and [parameters] and expressions composed from the same.)^ +** +** These routines must be called from the same thread in which +** the SQL function is running. +*/ +SQLITE_API void *sqlite3_get_auxdata(sqlite3_context*, int N); +SQLITE_API void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(void*)); + + +/* +** CAPI3REF: Constants Defining Special Destructor Behavior +** +** These are special values for the destructor that is passed in as the +** final argument to routines like [sqlite3_result_blob()]. ^If the destructor +** argument is SQLITE_STATIC, it means that the content pointer is constant +** and will never change. It does not need to be destroyed. ^The +** SQLITE_TRANSIENT value means that the content will likely change in +** the near future and that SQLite should make its own private copy of +** the content before returning. +** +** The typedef is necessary to work around problems in certain +** C++ compilers. +*/ +typedef void (*sqlite3_destructor_type)(void*); +#define SQLITE_STATIC ((sqlite3_destructor_type)0) +#define SQLITE_TRANSIENT ((sqlite3_destructor_type)-1) + +/* +** CAPI3REF: Setting The Result Of An SQL Function +** +** These routines are used by the xFunc or xFinal callbacks that +** implement SQL functions and aggregates. See +** [sqlite3_create_function()] and [sqlite3_create_function16()] +** for additional information. +** +** These functions work very much like the [parameter binding] family of +** functions used to bind values to host parameters in prepared statements. +** Refer to the [SQL parameter] documentation for additional information. +** +** ^The sqlite3_result_blob() interface sets the result from +** an application-defined function to be the BLOB whose content is pointed +** to by the second parameter and which is N bytes long where N is the +** third parameter. +** +** ^The sqlite3_result_zeroblob() interfaces set the result of +** the application-defined function to be a BLOB containing all zero +** bytes and N bytes in size, where N is the value of the 2nd parameter. +** +** ^The sqlite3_result_double() interface sets the result from +** an application-defined function to be a floating point value specified +** by its 2nd argument. +** +** ^The sqlite3_result_error() and sqlite3_result_error16() functions +** cause the implemented SQL function to throw an exception. +** ^SQLite uses the string pointed to by the +** 2nd parameter of sqlite3_result_error() or sqlite3_result_error16() +** as the text of an error message. ^SQLite interprets the error +** message string from sqlite3_result_error() as UTF-8. ^SQLite +** interprets the string from sqlite3_result_error16() as UTF-16 in native +** byte order. ^If the third parameter to sqlite3_result_error() +** or sqlite3_result_error16() is negative then SQLite takes as the error +** message all text up through the first zero character. +** ^If the third parameter to sqlite3_result_error() or +** sqlite3_result_error16() is non-negative then SQLite takes that many +** bytes (not characters) from the 2nd parameter as the error message. +** ^The sqlite3_result_error() and sqlite3_result_error16() +** routines make a private copy of the error message text before +** they return. Hence, the calling function can deallocate or +** modify the text after they return without harm. +** ^The sqlite3_result_error_code() function changes the error code +** returned by SQLite as a result of an error in a function. ^By default, +** the error code is SQLITE_ERROR. ^A subsequent call to sqlite3_result_error() +** or sqlite3_result_error16() resets the error code to SQLITE_ERROR. +** +** ^The sqlite3_result_error_toobig() interface causes SQLite to throw an +** error indicating that a string or BLOB is too long to represent. +** +** ^The sqlite3_result_error_nomem() interface causes SQLite to throw an +** error indicating that a memory allocation failed. +** +** ^The sqlite3_result_int() interface sets the return value +** of the application-defined function to be the 32-bit signed integer +** value given in the 2nd argument. +** ^The sqlite3_result_int64() interface sets the return value +** of the application-defined function to be the 64-bit signed integer +** value given in the 2nd argument. +** +** ^The sqlite3_result_null() interface sets the return value +** of the application-defined function to be NULL. +** +** ^The sqlite3_result_text(), sqlite3_result_text16(), +** sqlite3_result_text16le(), and sqlite3_result_text16be() interfaces +** set the return value of the application-defined function to be +** a text string which is represented as UTF-8, UTF-16 native byte order, +** UTF-16 little endian, or UTF-16 big endian, respectively. +** ^SQLite takes the text result from the application from +** the 2nd parameter of the sqlite3_result_text* interfaces. +** ^If the 3rd parameter to the sqlite3_result_text* interfaces +** is negative, then SQLite takes result text from the 2nd parameter +** through the first zero character. +** ^If the 3rd parameter to the sqlite3_result_text* interfaces +** is non-negative, then as many bytes (not characters) of the text +** pointed to by the 2nd parameter are taken as the application-defined +** function result. If the 3rd parameter is non-negative, then it +** must be the byte offset into the string where the NUL terminator would +** appear if the string where NUL terminated. If any NUL characters occur +** in the string at a byte offset that is less than the value of the 3rd +** parameter, then the resulting string will contain embedded NULs and the +** result of expressions operating on strings with embedded NULs is undefined. +** ^If the 4th parameter to the sqlite3_result_text* interfaces +** or sqlite3_result_blob is a non-NULL pointer, then SQLite calls that +** function as the destructor on the text or BLOB result when it has +** finished using that result. +** ^If the 4th parameter to the sqlite3_result_text* interfaces or to +** sqlite3_result_blob is the special constant SQLITE_STATIC, then SQLite +** assumes that the text or BLOB result is in constant space and does not +** copy the content of the parameter nor call a destructor on the content +** when it has finished using that result. +** ^If the 4th parameter to the sqlite3_result_text* interfaces +** or sqlite3_result_blob is the special constant SQLITE_TRANSIENT +** then SQLite makes a copy of the result into space obtained from +** from [sqlite3_malloc()] before it returns. +** +** ^The sqlite3_result_value() interface sets the result of +** the application-defined function to be a copy the +** [unprotected sqlite3_value] object specified by the 2nd parameter. ^The +** sqlite3_result_value() interface makes a copy of the [sqlite3_value] +** so that the [sqlite3_value] specified in the parameter may change or +** be deallocated after sqlite3_result_value() returns without harm. +** ^A [protected sqlite3_value] object may always be used where an +** [unprotected sqlite3_value] object is required, so either +** kind of [sqlite3_value] object can be used with this interface. +** +** If these routines are called from within the different thread +** than the one containing the application-defined function that received +** the [sqlite3_context] pointer, the results are undefined. +*/ +SQLITE_API void sqlite3_result_blob(sqlite3_context*, const void*, int, void(*)(void*)); +SQLITE_API void sqlite3_result_double(sqlite3_context*, double); +SQLITE_API void sqlite3_result_error(sqlite3_context*, const char*, int); +SQLITE_API void sqlite3_result_error16(sqlite3_context*, const void*, int); +SQLITE_API void sqlite3_result_error_toobig(sqlite3_context*); +SQLITE_API void sqlite3_result_error_nomem(sqlite3_context*); +SQLITE_API void sqlite3_result_error_code(sqlite3_context*, int); +SQLITE_API void sqlite3_result_int(sqlite3_context*, int); +SQLITE_API void sqlite3_result_int64(sqlite3_context*, sqlite3_int64); +SQLITE_API void sqlite3_result_null(sqlite3_context*); +SQLITE_API void sqlite3_result_text(sqlite3_context*, const char*, int, void(*)(void*)); +SQLITE_API void sqlite3_result_text16(sqlite3_context*, const void*, int, void(*)(void*)); +SQLITE_API void sqlite3_result_text16le(sqlite3_context*, const void*, int,void(*)(void*)); +SQLITE_API void sqlite3_result_text16be(sqlite3_context*, const void*, int,void(*)(void*)); +SQLITE_API void sqlite3_result_value(sqlite3_context*, sqlite3_value*); +SQLITE_API void sqlite3_result_zeroblob(sqlite3_context*, int n); + +/* +** CAPI3REF: Define New Collating Sequences +** +** ^These functions add, remove, or modify a [collation] associated +** with the [database connection] specified as the first argument. +** +** ^The name of the collation is a UTF-8 string +** for sqlite3_create_collation() and sqlite3_create_collation_v2() +** and a UTF-16 string in native byte order for sqlite3_create_collation16(). +** ^Collation names that compare equal according to [sqlite3_strnicmp()] are +** considered to be the same name. +** +** ^(The third argument (eTextRep) must be one of the constants: +**
            +**
          • [SQLITE_UTF8], +**
          • [SQLITE_UTF16LE], +**
          • [SQLITE_UTF16BE], +**
          • [SQLITE_UTF16], or +**
          • [SQLITE_UTF16_ALIGNED]. +**
          )^ +** ^The eTextRep argument determines the encoding of strings passed +** to the collating function callback, xCallback. +** ^The [SQLITE_UTF16] and [SQLITE_UTF16_ALIGNED] values for eTextRep +** force strings to be UTF16 with native byte order. +** ^The [SQLITE_UTF16_ALIGNED] value for eTextRep forces strings to begin +** on an even byte address. +** +** ^The fourth argument, pArg, is an application data pointer that is passed +** through as the first argument to the collating function callback. +** +** ^The fifth argument, xCallback, is a pointer to the collating function. +** ^Multiple collating functions can be registered using the same name but +** with different eTextRep parameters and SQLite will use whichever +** function requires the least amount of data transformation. +** ^If the xCallback argument is NULL then the collating function is +** deleted. ^When all collating functions having the same name are deleted, +** that collation is no longer usable. +** +** ^The collating function callback is invoked with a copy of the pArg +** application data pointer and with two strings in the encoding specified +** by the eTextRep argument. The collating function must return an +** integer that is negative, zero, or positive +** if the first string is less than, equal to, or greater than the second, +** respectively. A collating function must always return the same answer +** given the same inputs. If two or more collating functions are registered +** to the same collation name (using different eTextRep values) then all +** must give an equivalent answer when invoked with equivalent strings. +** The collating function must obey the following properties for all +** strings A, B, and C: +** +**
            +**
          1. If A==B then B==A. +**
          2. If A==B and B==C then A==C. +**
          3. If A<B THEN B>A. +**
          4. If A<B and B<C then A<C. +**
          +** +** If a collating function fails any of the above constraints and that +** collating function is registered and used, then the behavior of SQLite +** is undefined. +** +** ^The sqlite3_create_collation_v2() works like sqlite3_create_collation() +** with the addition that the xDestroy callback is invoked on pArg when +** the collating function is deleted. +** ^Collating functions are deleted when they are overridden by later +** calls to the collation creation functions or when the +** [database connection] is closed using [sqlite3_close()]. +** +** ^The xDestroy callback is not called if the +** sqlite3_create_collation_v2() function fails. Applications that invoke +** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should +** check the return code and dispose of the application data pointer +** themselves rather than expecting SQLite to deal with it for them. +** This is different from every other SQLite interface. The inconsistency +** is unfortunate but cannot be changed without breaking backwards +** compatibility. +** +** See also: [sqlite3_collation_needed()] and [sqlite3_collation_needed16()]. +*/ +SQLITE_API int sqlite3_create_collation( + sqlite3*, + const char *zName, + int eTextRep, + void *pArg, + int(*xCompare)(void*,int,const void*,int,const void*) +); +SQLITE_API int sqlite3_create_collation_v2( + sqlite3*, + const char *zName, + int eTextRep, + void *pArg, + int(*xCompare)(void*,int,const void*,int,const void*), + void(*xDestroy)(void*) +); +SQLITE_API int sqlite3_create_collation16( + sqlite3*, + const void *zName, + int eTextRep, + void *pArg, + int(*xCompare)(void*,int,const void*,int,const void*) +); + +/* +** CAPI3REF: Collation Needed Callbacks +** +** ^To avoid having to register all collation sequences before a database +** can be used, a single callback function may be registered with the +** [database connection] to be invoked whenever an undefined collation +** sequence is required. +** +** ^If the function is registered using the sqlite3_collation_needed() API, +** then it is passed the names of undefined collation sequences as strings +** encoded in UTF-8. ^If sqlite3_collation_needed16() is used, +** the names are passed as UTF-16 in machine native byte order. +** ^A call to either function replaces the existing collation-needed callback. +** +** ^(When the callback is invoked, the first argument passed is a copy +** of the second argument to sqlite3_collation_needed() or +** sqlite3_collation_needed16(). The second argument is the database +** connection. The third argument is one of [SQLITE_UTF8], [SQLITE_UTF16BE], +** or [SQLITE_UTF16LE], indicating the most desirable form of the collation +** sequence function required. The fourth parameter is the name of the +** required collation sequence.)^ +** +** The callback function should register the desired collation using +** [sqlite3_create_collation()], [sqlite3_create_collation16()], or +** [sqlite3_create_collation_v2()]. +*/ +SQLITE_API int sqlite3_collation_needed( + sqlite3*, + void*, + void(*)(void*,sqlite3*,int eTextRep,const char*) +); +SQLITE_API int sqlite3_collation_needed16( + sqlite3*, + void*, + void(*)(void*,sqlite3*,int eTextRep,const void*) +); + +#ifdef SQLITE_HAS_CODEC +/* +** Specify the key for an encrypted database. This routine should be +** called right after sqlite3_open(). +** +** The code to implement this API is not available in the public release +** of SQLite. +*/ +SQLITE_API int sqlite3_key( + sqlite3 *db, /* Database to be rekeyed */ + const void *pKey, int nKey /* The key */ +); +SQLITE_API int sqlite3_key_v2( + sqlite3 *db, /* Database to be rekeyed */ + const char *zDbName, /* Name of the database */ + const void *pKey, int nKey /* The key */ +); + +/* +** Change the key on an open database. If the current database is not +** encrypted, this routine will encrypt it. If pNew==0 or nNew==0, the +** database is decrypted. +** +** The code to implement this API is not available in the public release +** of SQLite. +*/ +SQLITE_API int sqlite3_rekey( + sqlite3 *db, /* Database to be rekeyed */ + const void *pKey, int nKey /* The new key */ +); +SQLITE_API int sqlite3_rekey_v2( + sqlite3 *db, /* Database to be rekeyed */ + const char *zDbName, /* Name of the database */ + const void *pKey, int nKey /* The new key */ +); + +/* +** Specify the activation key for a SEE database. Unless +** activated, none of the SEE routines will work. +*/ +SQLITE_API void sqlite3_activate_see( + const char *zPassPhrase /* Activation phrase */ +); +#endif + +#ifdef SQLITE_ENABLE_CEROD +/* +** Specify the activation key for a CEROD database. Unless +** activated, none of the CEROD routines will work. +*/ +SQLITE_API void sqlite3_activate_cerod( + const char *zPassPhrase /* Activation phrase */ +); +#endif + +/* +** CAPI3REF: Suspend Execution For A Short Time +** +** The sqlite3_sleep() function causes the current thread to suspend execution +** for at least a number of milliseconds specified in its parameter. +** +** If the operating system does not support sleep requests with +** millisecond time resolution, then the time will be rounded up to +** the nearest second. The number of milliseconds of sleep actually +** requested from the operating system is returned. +** +** ^SQLite implements this interface by calling the xSleep() +** method of the default [sqlite3_vfs] object. If the xSleep() method +** of the default VFS is not implemented correctly, or not implemented at +** all, then the behavior of sqlite3_sleep() may deviate from the description +** in the previous paragraphs. +*/ +SQLITE_API int sqlite3_sleep(int); + +/* +** CAPI3REF: Name Of The Folder Holding Temporary Files +** +** ^(If this global variable is made to point to a string which is +** the name of a folder (a.k.a. directory), then all temporary files +** created by SQLite when using a built-in [sqlite3_vfs | VFS] +** will be placed in that directory.)^ ^If this variable +** is a NULL pointer, then SQLite performs a search for an appropriate +** temporary file directory. +** +** It is not safe to read or modify this variable in more than one +** thread at a time. It is not safe to read or modify this variable +** if a [database connection] is being used at the same time in a separate +** thread. +** It is intended that this variable be set once +** as part of process initialization and before any SQLite interface +** routines have been called and that this variable remain unchanged +** thereafter. +** +** ^The [temp_store_directory pragma] may modify this variable and cause +** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore, +** the [temp_store_directory pragma] always assumes that any string +** that this variable points to is held in memory obtained from +** [sqlite3_malloc] and the pragma may attempt to free that memory +** using [sqlite3_free]. +** Hence, if this variable is modified directly, either it should be +** made NULL or made to point to memory obtained from [sqlite3_malloc] +** or else the use of the [temp_store_directory pragma] should be avoided. +** +** Note to Windows Runtime users: The temporary directory must be set +** prior to calling [sqlite3_open] or [sqlite3_open_v2]. Otherwise, various +** features that require the use of temporary files may fail. Here is an +** example of how to do this using C++ with the Windows Runtime: +** +**
          +** LPCWSTR zPath = Windows::Storage::ApplicationData::Current->
          +**       TemporaryFolder->Path->Data();
          +** char zPathBuf[MAX_PATH + 1];
          +** memset(zPathBuf, 0, sizeof(zPathBuf));
          +** WideCharToMultiByte(CP_UTF8, 0, zPath, -1, zPathBuf, sizeof(zPathBuf),
          +**       NULL, NULL);
          +** sqlite3_temp_directory = sqlite3_mprintf("%s", zPathBuf);
          +** 
          +*/ +SQLITE_API SQLITE_EXTERN char *sqlite3_temp_directory; + +/* +** CAPI3REF: Name Of The Folder Holding Database Files +** +** ^(If this global variable is made to point to a string which is +** the name of a folder (a.k.a. directory), then all database files +** specified with a relative pathname and created or accessed by +** SQLite when using a built-in windows [sqlite3_vfs | VFS] will be assumed +** to be relative to that directory.)^ ^If this variable is a NULL +** pointer, then SQLite assumes that all database files specified +** with a relative pathname are relative to the current directory +** for the process. Only the windows VFS makes use of this global +** variable; it is ignored by the unix VFS. +** +** Changing the value of this variable while a database connection is +** open can result in a corrupt database. +** +** It is not safe to read or modify this variable in more than one +** thread at a time. It is not safe to read or modify this variable +** if a [database connection] is being used at the same time in a separate +** thread. +** It is intended that this variable be set once +** as part of process initialization and before any SQLite interface +** routines have been called and that this variable remain unchanged +** thereafter. +** +** ^The [data_store_directory pragma] may modify this variable and cause +** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore, +** the [data_store_directory pragma] always assumes that any string +** that this variable points to is held in memory obtained from +** [sqlite3_malloc] and the pragma may attempt to free that memory +** using [sqlite3_free]. +** Hence, if this variable is modified directly, either it should be +** made NULL or made to point to memory obtained from [sqlite3_malloc] +** or else the use of the [data_store_directory pragma] should be avoided. +*/ +SQLITE_API SQLITE_EXTERN char *sqlite3_data_directory; + +/* +** CAPI3REF: Test For Auto-Commit Mode +** KEYWORDS: {autocommit mode} +** +** ^The sqlite3_get_autocommit() interface returns non-zero or +** zero if the given database connection is or is not in autocommit mode, +** respectively. ^Autocommit mode is on by default. +** ^Autocommit mode is disabled by a [BEGIN] statement. +** ^Autocommit mode is re-enabled by a [COMMIT] or [ROLLBACK]. +** +** If certain kinds of errors occur on a statement within a multi-statement +** transaction (errors including [SQLITE_FULL], [SQLITE_IOERR], +** [SQLITE_NOMEM], [SQLITE_BUSY], and [SQLITE_INTERRUPT]) then the +** transaction might be rolled back automatically. The only way to +** find out whether SQLite automatically rolled back the transaction after +** an error is to use this function. +** +** If another thread changes the autocommit status of the database +** connection while this routine is running, then the return value +** is undefined. +*/ +SQLITE_API int sqlite3_get_autocommit(sqlite3*); + +/* +** CAPI3REF: Find The Database Handle Of A Prepared Statement +** +** ^The sqlite3_db_handle interface returns the [database connection] handle +** to which a [prepared statement] belongs. ^The [database connection] +** returned by sqlite3_db_handle is the same [database connection] +** that was the first argument +** to the [sqlite3_prepare_v2()] call (or its variants) that was used to +** create the statement in the first place. +*/ +SQLITE_API sqlite3 *sqlite3_db_handle(sqlite3_stmt*); + +/* +** CAPI3REF: Return The Filename For A Database Connection +** +** ^The sqlite3_db_filename(D,N) interface returns a pointer to a filename +** associated with database N of connection D. ^The main database file +** has the name "main". If there is no attached database N on the database +** connection D, or if database N is a temporary or in-memory database, then +** a NULL pointer is returned. +** +** ^The filename returned by this function is the output of the +** xFullPathname method of the [VFS]. ^In other words, the filename +** will be an absolute pathname, even if the filename used +** to open the database originally was a URI or relative pathname. +*/ +SQLITE_API const char *sqlite3_db_filename(sqlite3 *db, const char *zDbName); + +/* +** CAPI3REF: Determine if a database is read-only +** +** ^The sqlite3_db_readonly(D,N) interface returns 1 if the database N +** of connection D is read-only, 0 if it is read/write, or -1 if N is not +** the name of a database on connection D. +*/ +SQLITE_API int sqlite3_db_readonly(sqlite3 *db, const char *zDbName); + +/* +** CAPI3REF: Find the next prepared statement +** +** ^This interface returns a pointer to the next [prepared statement] after +** pStmt associated with the [database connection] pDb. ^If pStmt is NULL +** then this interface returns a pointer to the first prepared statement +** associated with the database connection pDb. ^If no prepared statement +** satisfies the conditions of this routine, it returns NULL. +** +** The [database connection] pointer D in a call to +** [sqlite3_next_stmt(D,S)] must refer to an open database +** connection and in particular must not be a NULL pointer. +*/ +SQLITE_API sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt); + +/* +** CAPI3REF: Commit And Rollback Notification Callbacks +** +** ^The sqlite3_commit_hook() interface registers a callback +** function to be invoked whenever a transaction is [COMMIT | committed]. +** ^Any callback set by a previous call to sqlite3_commit_hook() +** for the same database connection is overridden. +** ^The sqlite3_rollback_hook() interface registers a callback +** function to be invoked whenever a transaction is [ROLLBACK | rolled back]. +** ^Any callback set by a previous call to sqlite3_rollback_hook() +** for the same database connection is overridden. +** ^The pArg argument is passed through to the callback. +** ^If the callback on a commit hook function returns non-zero, +** then the commit is converted into a rollback. +** +** ^The sqlite3_commit_hook(D,C,P) and sqlite3_rollback_hook(D,C,P) functions +** return the P argument from the previous call of the same function +** on the same [database connection] D, or NULL for +** the first call for each function on D. +** +** The commit and rollback hook callbacks are not reentrant. +** The callback implementation must not do anything that will modify +** the database connection that invoked the callback. Any actions +** to modify the database connection must be deferred until after the +** completion of the [sqlite3_step()] call that triggered the commit +** or rollback hook in the first place. +** Note that running any other SQL statements, including SELECT statements, +** or merely calling [sqlite3_prepare_v2()] and [sqlite3_step()] will modify +** the database connections for the meaning of "modify" in this paragraph. +** +** ^Registering a NULL function disables the callback. +** +** ^When the commit hook callback routine returns zero, the [COMMIT] +** operation is allowed to continue normally. ^If the commit hook +** returns non-zero, then the [COMMIT] is converted into a [ROLLBACK]. +** ^The rollback hook is invoked on a rollback that results from a commit +** hook returning non-zero, just as it would be with any other rollback. +** +** ^For the purposes of this API, a transaction is said to have been +** rolled back if an explicit "ROLLBACK" statement is executed, or +** an error or constraint causes an implicit rollback to occur. +** ^The rollback callback is not invoked if a transaction is +** automatically rolled back because the database connection is closed. +** +** See also the [sqlite3_update_hook()] interface. +*/ +SQLITE_API void *sqlite3_commit_hook(sqlite3*, int(*)(void*), void*); +SQLITE_API void *sqlite3_rollback_hook(sqlite3*, void(*)(void *), void*); + +/* +** CAPI3REF: Data Change Notification Callbacks +** +** ^The sqlite3_update_hook() interface registers a callback function +** with the [database connection] identified by the first argument +** to be invoked whenever a row is updated, inserted or deleted in +** a rowid table. +** ^Any callback set by a previous call to this function +** for the same database connection is overridden. +** +** ^The second argument is a pointer to the function to invoke when a +** row is updated, inserted or deleted in a rowid table. +** ^The first argument to the callback is a copy of the third argument +** to sqlite3_update_hook(). +** ^The second callback argument is one of [SQLITE_INSERT], [SQLITE_DELETE], +** or [SQLITE_UPDATE], depending on the operation that caused the callback +** to be invoked. +** ^The third and fourth arguments to the callback contain pointers to the +** database and table name containing the affected row. +** ^The final callback parameter is the [rowid] of the row. +** ^In the case of an update, this is the [rowid] after the update takes place. +** +** ^(The update hook is not invoked when internal system tables are +** modified (i.e. sqlite_master and sqlite_sequence).)^ +** ^The update hook is not invoked when [WITHOUT ROWID] tables are modified. +** +** ^In the current implementation, the update hook +** is not invoked when duplication rows are deleted because of an +** [ON CONFLICT | ON CONFLICT REPLACE] clause. ^Nor is the update hook +** invoked when rows are deleted using the [truncate optimization]. +** The exceptions defined in this paragraph might change in a future +** release of SQLite. +** +** The update hook implementation must not do anything that will modify +** the database connection that invoked the update hook. Any actions +** to modify the database connection must be deferred until after the +** completion of the [sqlite3_step()] call that triggered the update hook. +** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their +** database connections for the meaning of "modify" in this paragraph. +** +** ^The sqlite3_update_hook(D,C,P) function +** returns the P argument from the previous call +** on the same [database connection] D, or NULL for +** the first call on D. +** +** See also the [sqlite3_commit_hook()] and [sqlite3_rollback_hook()] +** interfaces. +*/ +SQLITE_API void *sqlite3_update_hook( + sqlite3*, + void(*)(void *,int ,char const *,char const *,sqlite3_int64), + void* +); + +/* +** CAPI3REF: Enable Or Disable Shared Pager Cache +** +** ^(This routine enables or disables the sharing of the database cache +** and schema data structures between [database connection | connections] +** to the same database. Sharing is enabled if the argument is true +** and disabled if the argument is false.)^ +** +** ^Cache sharing is enabled and disabled for an entire process. +** This is a change as of SQLite version 3.5.0. In prior versions of SQLite, +** sharing was enabled or disabled for each thread separately. +** +** ^(The cache sharing mode set by this interface effects all subsequent +** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()]. +** Existing database connections continue use the sharing mode +** that was in effect at the time they were opened.)^ +** +** ^(This routine returns [SQLITE_OK] if shared cache was enabled or disabled +** successfully. An [error code] is returned otherwise.)^ +** +** ^Shared cache is disabled by default. But this might change in +** future releases of SQLite. Applications that care about shared +** cache setting should set it explicitly. +** +** This interface is threadsafe on processors where writing a +** 32-bit integer is atomic. +** +** See Also: [SQLite Shared-Cache Mode] +*/ +SQLITE_API int sqlite3_enable_shared_cache(int); + +/* +** CAPI3REF: Attempt To Free Heap Memory +** +** ^The sqlite3_release_memory() interface attempts to free N bytes +** of heap memory by deallocating non-essential memory allocations +** held by the database library. Memory used to cache database +** pages to improve performance is an example of non-essential memory. +** ^sqlite3_release_memory() returns the number of bytes actually freed, +** which might be more or less than the amount requested. +** ^The sqlite3_release_memory() routine is a no-op returning zero +** if SQLite is not compiled with [SQLITE_ENABLE_MEMORY_MANAGEMENT]. +** +** See also: [sqlite3_db_release_memory()] +*/ +SQLITE_API int sqlite3_release_memory(int); + +/* +** CAPI3REF: Free Memory Used By A Database Connection +** +** ^The sqlite3_db_release_memory(D) interface attempts to free as much heap +** memory as possible from database connection D. Unlike the +** [sqlite3_release_memory()] interface, this interface is in effect even +** when the [SQLITE_ENABLE_MEMORY_MANAGEMENT] compile-time option is +** omitted. +** +** See also: [sqlite3_release_memory()] +*/ +SQLITE_API int sqlite3_db_release_memory(sqlite3*); + +/* +** CAPI3REF: Impose A Limit On Heap Size +** +** ^The sqlite3_soft_heap_limit64() interface sets and/or queries the +** soft limit on the amount of heap memory that may be allocated by SQLite. +** ^SQLite strives to keep heap memory utilization below the soft heap +** limit by reducing the number of pages held in the page cache +** as heap memory usages approaches the limit. +** ^The soft heap limit is "soft" because even though SQLite strives to stay +** below the limit, it will exceed the limit rather than generate +** an [SQLITE_NOMEM] error. In other words, the soft heap limit +** is advisory only. +** +** ^The return value from sqlite3_soft_heap_limit64() is the size of +** the soft heap limit prior to the call, or negative in the case of an +** error. ^If the argument N is negative +** then no change is made to the soft heap limit. Hence, the current +** size of the soft heap limit can be determined by invoking +** sqlite3_soft_heap_limit64() with a negative argument. +** +** ^If the argument N is zero then the soft heap limit is disabled. +** +** ^(The soft heap limit is not enforced in the current implementation +** if one or more of following conditions are true: +** +**
            +**
          • The soft heap limit is set to zero. +**
          • Memory accounting is disabled using a combination of the +** [sqlite3_config]([SQLITE_CONFIG_MEMSTATUS],...) start-time option and +** the [SQLITE_DEFAULT_MEMSTATUS] compile-time option. +**
          • An alternative page cache implementation is specified using +** [sqlite3_config]([SQLITE_CONFIG_PCACHE2],...). +**
          • The page cache allocates from its own memory pool supplied +** by [sqlite3_config]([SQLITE_CONFIG_PAGECACHE],...) rather than +** from the heap. +**
          )^ +** +** Beginning with SQLite version 3.7.3, the soft heap limit is enforced +** regardless of whether or not the [SQLITE_ENABLE_MEMORY_MANAGEMENT] +** compile-time option is invoked. With [SQLITE_ENABLE_MEMORY_MANAGEMENT], +** the soft heap limit is enforced on every memory allocation. Without +** [SQLITE_ENABLE_MEMORY_MANAGEMENT], the soft heap limit is only enforced +** when memory is allocated by the page cache. Testing suggests that because +** the page cache is the predominate memory user in SQLite, most +** applications will achieve adequate soft heap limit enforcement without +** the use of [SQLITE_ENABLE_MEMORY_MANAGEMENT]. +** +** The circumstances under which SQLite will enforce the soft heap limit may +** changes in future releases of SQLite. +*/ +SQLITE_API sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 N); + +/* +** CAPI3REF: Deprecated Soft Heap Limit Interface +** DEPRECATED +** +** This is a deprecated version of the [sqlite3_soft_heap_limit64()] +** interface. This routine is provided for historical compatibility +** only. All new applications should use the +** [sqlite3_soft_heap_limit64()] interface rather than this one. +*/ +SQLITE_API SQLITE_DEPRECATED void sqlite3_soft_heap_limit(int N); + + +/* +** CAPI3REF: Extract Metadata About A Column Of A Table +** +** ^This routine returns metadata about a specific column of a specific +** database table accessible using the [database connection] handle +** passed as the first function argument. +** +** ^The column is identified by the second, third and fourth parameters to +** this function. ^The second parameter is either the name of the database +** (i.e. "main", "temp", or an attached database) containing the specified +** table or NULL. ^If it is NULL, then all attached databases are searched +** for the table using the same algorithm used by the database engine to +** resolve unqualified table references. +** +** ^The third and fourth parameters to this function are the table and column +** name of the desired column, respectively. Neither of these parameters +** may be NULL. +** +** ^Metadata is returned by writing to the memory locations passed as the 5th +** and subsequent parameters to this function. ^Any of these arguments may be +** NULL, in which case the corresponding element of metadata is omitted. +** +** ^(
          +** +**
          Parameter Output
          Type
          Description +** +**
          5th const char* Data type +**
          6th const char* Name of default collation sequence +**
          7th int True if column has a NOT NULL constraint +**
          8th int True if column is part of the PRIMARY KEY +**
          9th int True if column is [AUTOINCREMENT] +**
          +**
          )^ +** +** ^The memory pointed to by the character pointers returned for the +** declaration type and collation sequence is valid only until the next +** call to any SQLite API function. +** +** ^If the specified table is actually a view, an [error code] is returned. +** +** ^If the specified column is "rowid", "oid" or "_rowid_" and an +** [INTEGER PRIMARY KEY] column has been explicitly declared, then the output +** parameters are set for the explicitly declared column. ^(If there is no +** explicitly declared [INTEGER PRIMARY KEY] column, then the output +** parameters are set as follows: +** +**
          +**     data type: "INTEGER"
          +**     collation sequence: "BINARY"
          +**     not null: 0
          +**     primary key: 1
          +**     auto increment: 0
          +** 
          )^ +** +** ^(This function may load one or more schemas from database files. If an +** error occurs during this process, or if the requested table or column +** cannot be found, an [error code] is returned and an error message left +** in the [database connection] (to be retrieved using sqlite3_errmsg()).)^ +** +** ^This API is only available if the library was compiled with the +** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol defined. +*/ +SQLITE_API int sqlite3_table_column_metadata( + sqlite3 *db, /* Connection handle */ + const char *zDbName, /* Database name or NULL */ + const char *zTableName, /* Table name */ + const char *zColumnName, /* Column name */ + char const **pzDataType, /* OUTPUT: Declared data type */ + char const **pzCollSeq, /* OUTPUT: Collation sequence name */ + int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */ + int *pPrimaryKey, /* OUTPUT: True if column part of PK */ + int *pAutoinc /* OUTPUT: True if column is auto-increment */ +); + +/* +** CAPI3REF: Load An Extension +** +** ^This interface loads an SQLite extension library from the named file. +** +** ^The sqlite3_load_extension() interface attempts to load an +** [SQLite extension] library contained in the file zFile. If +** the file cannot be loaded directly, attempts are made to load +** with various operating-system specific extensions added. +** So for example, if "samplelib" cannot be loaded, then names like +** "samplelib.so" or "samplelib.dylib" or "samplelib.dll" might +** be tried also. +** +** ^The entry point is zProc. +** ^(zProc may be 0, in which case SQLite will try to come up with an +** entry point name on its own. It first tries "sqlite3_extension_init". +** If that does not work, it constructs a name "sqlite3_X_init" where the +** X is consists of the lower-case equivalent of all ASCII alphabetic +** characters in the filename from the last "/" to the first following +** "." and omitting any initial "lib".)^ +** ^The sqlite3_load_extension() interface returns +** [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong. +** ^If an error occurs and pzErrMsg is not 0, then the +** [sqlite3_load_extension()] interface shall attempt to +** fill *pzErrMsg with error message text stored in memory +** obtained from [sqlite3_malloc()]. The calling function +** should free this memory by calling [sqlite3_free()]. +** +** ^Extension loading must be enabled using +** [sqlite3_enable_load_extension()] prior to calling this API, +** otherwise an error will be returned. +** +** See also the [load_extension() SQL function]. +*/ +SQLITE_API int sqlite3_load_extension( + sqlite3 *db, /* Load the extension into this database connection */ + const char *zFile, /* Name of the shared library containing extension */ + const char *zProc, /* Entry point. Derived from zFile if 0 */ + char **pzErrMsg /* Put error message here if not 0 */ +); + +/* +** CAPI3REF: Enable Or Disable Extension Loading +** +** ^So as not to open security holes in older applications that are +** unprepared to deal with [extension loading], and as a means of disabling +** [extension loading] while evaluating user-entered SQL, the following API +** is provided to turn the [sqlite3_load_extension()] mechanism on and off. +** +** ^Extension loading is off by default. +** ^Call the sqlite3_enable_load_extension() routine with onoff==1 +** to turn extension loading on and call it with onoff==0 to turn +** it back off again. +*/ +SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff); + +/* +** CAPI3REF: Automatically Load Statically Linked Extensions +** +** ^This interface causes the xEntryPoint() function to be invoked for +** each new [database connection] that is created. The idea here is that +** xEntryPoint() is the entry point for a statically linked [SQLite extension] +** that is to be automatically loaded into all new database connections. +** +** ^(Even though the function prototype shows that xEntryPoint() takes +** no arguments and returns void, SQLite invokes xEntryPoint() with three +** arguments and expects and integer result as if the signature of the +** entry point where as follows: +** +**
          +**    int xEntryPoint(
          +**      sqlite3 *db,
          +**      const char **pzErrMsg,
          +**      const struct sqlite3_api_routines *pThunk
          +**    );
          +** 
          )^ +** +** If the xEntryPoint routine encounters an error, it should make *pzErrMsg +** point to an appropriate error message (obtained from [sqlite3_mprintf()]) +** and return an appropriate [error code]. ^SQLite ensures that *pzErrMsg +** is NULL before calling the xEntryPoint(). ^SQLite will invoke +** [sqlite3_free()] on *pzErrMsg after xEntryPoint() returns. ^If any +** xEntryPoint() returns an error, the [sqlite3_open()], [sqlite3_open16()], +** or [sqlite3_open_v2()] call that provoked the xEntryPoint() will fail. +** +** ^Calling sqlite3_auto_extension(X) with an entry point X that is already +** on the list of automatic extensions is a harmless no-op. ^No entry point +** will be called more than once for each database connection that is opened. +** +** See also: [sqlite3_reset_auto_extension()] +** and [sqlite3_cancel_auto_extension()] +*/ +SQLITE_API int sqlite3_auto_extension(void (*xEntryPoint)(void)); + +/* +** CAPI3REF: Cancel Automatic Extension Loading +** +** ^The [sqlite3_cancel_auto_extension(X)] interface unregisters the +** initialization routine X that was registered using a prior call to +** [sqlite3_auto_extension(X)]. ^The [sqlite3_cancel_auto_extension(X)] +** routine returns 1 if initialization routine X was successfully +** unregistered and it returns 0 if X was not on the list of initialization +** routines. +*/ +SQLITE_API int sqlite3_cancel_auto_extension(void (*xEntryPoint)(void)); + +/* +** CAPI3REF: Reset Automatic Extension Loading +** +** ^This interface disables all automatic extensions previously +** registered using [sqlite3_auto_extension()]. +*/ +SQLITE_API void sqlite3_reset_auto_extension(void); + +/* +** The interface to the virtual-table mechanism is currently considered +** to be experimental. The interface might change in incompatible ways. +** If this is a problem for you, do not use the interface at this time. +** +** When the virtual-table mechanism stabilizes, we will declare the +** interface fixed, support it indefinitely, and remove this comment. +*/ + +/* +** Structures used by the virtual table interface +*/ +typedef struct sqlite3_vtab sqlite3_vtab; +typedef struct sqlite3_index_info sqlite3_index_info; +typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; +typedef struct sqlite3_module sqlite3_module; + +/* +** CAPI3REF: Virtual Table Object +** KEYWORDS: sqlite3_module {virtual table module} +** +** This structure, sometimes called a "virtual table module", +** defines the implementation of a [virtual tables]. +** This structure consists mostly of methods for the module. +** +** ^A virtual table module is created by filling in a persistent +** instance of this structure and passing a pointer to that instance +** to [sqlite3_create_module()] or [sqlite3_create_module_v2()]. +** ^The registration remains valid until it is replaced by a different +** module or until the [database connection] closes. The content +** of this structure must not change while it is registered with +** any database connection. +*/ +struct sqlite3_module { + int iVersion; + int (*xCreate)(sqlite3*, void *pAux, + int argc, const char *const*argv, + sqlite3_vtab **ppVTab, char**); + int (*xConnect)(sqlite3*, void *pAux, + int argc, const char *const*argv, + sqlite3_vtab **ppVTab, char**); + int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); + int (*xDisconnect)(sqlite3_vtab *pVTab); + int (*xDestroy)(sqlite3_vtab *pVTab); + int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); + int (*xClose)(sqlite3_vtab_cursor*); + int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, + int argc, sqlite3_value **argv); + int (*xNext)(sqlite3_vtab_cursor*); + int (*xEof)(sqlite3_vtab_cursor*); + int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int); + int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid); + int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *); + int (*xBegin)(sqlite3_vtab *pVTab); + int (*xSync)(sqlite3_vtab *pVTab); + int (*xCommit)(sqlite3_vtab *pVTab); + int (*xRollback)(sqlite3_vtab *pVTab); + int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName, + void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), + void **ppArg); + int (*xRename)(sqlite3_vtab *pVtab, const char *zNew); + /* The methods above are in version 1 of the sqlite_module object. Those + ** below are for version 2 and greater. */ + int (*xSavepoint)(sqlite3_vtab *pVTab, int); + int (*xRelease)(sqlite3_vtab *pVTab, int); + int (*xRollbackTo)(sqlite3_vtab *pVTab, int); +}; + +/* +** CAPI3REF: Virtual Table Indexing Information +** KEYWORDS: sqlite3_index_info +** +** The sqlite3_index_info structure and its substructures is used as part +** of the [virtual table] interface to +** pass information into and receive the reply from the [xBestIndex] +** method of a [virtual table module]. The fields under **Inputs** are the +** inputs to xBestIndex and are read-only. xBestIndex inserts its +** results into the **Outputs** fields. +** +** ^(The aConstraint[] array records WHERE clause constraints of the form: +** +**
          column OP expr
          +** +** where OP is =, <, <=, >, or >=.)^ ^(The particular operator is +** stored in aConstraint[].op using one of the +** [SQLITE_INDEX_CONSTRAINT_EQ | SQLITE_INDEX_CONSTRAINT_ values].)^ +** ^(The index of the column is stored in +** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the +** expr on the right-hand side can be evaluated (and thus the constraint +** is usable) and false if it cannot.)^ +** +** ^The optimizer automatically inverts terms of the form "expr OP column" +** and makes other simplifications to the WHERE clause in an attempt to +** get as many WHERE clause terms into the form shown above as possible. +** ^The aConstraint[] array only reports WHERE clause terms that are +** relevant to the particular virtual table being queried. +** +** ^Information about the ORDER BY clause is stored in aOrderBy[]. +** ^Each term of aOrderBy records a column of the ORDER BY clause. +** +** The [xBestIndex] method must fill aConstraintUsage[] with information +** about what parameters to pass to xFilter. ^If argvIndex>0 then +** the right-hand side of the corresponding aConstraint[] is evaluated +** and becomes the argvIndex-th entry in argv. ^(If aConstraintUsage[].omit +** is true, then the constraint is assumed to be fully handled by the +** virtual table and is not checked again by SQLite.)^ +** +** ^The idxNum and idxPtr values are recorded and passed into the +** [xFilter] method. +** ^[sqlite3_free()] is used to free idxPtr if and only if +** needToFreeIdxPtr is true. +** +** ^The orderByConsumed means that output from [xFilter]/[xNext] will occur in +** the correct order to satisfy the ORDER BY clause so that no separate +** sorting step is required. +** +** ^The estimatedCost value is an estimate of the cost of a particular +** strategy. A cost of N indicates that the cost of the strategy is similar +** to a linear scan of an SQLite table with N rows. A cost of log(N) +** indicates that the expense of the operation is similar to that of a +** binary search on a unique indexed field of an SQLite table with N rows. +** +** ^The estimatedRows value is an estimate of the number of rows that +** will be returned by the strategy. +** +** IMPORTANT: The estimatedRows field was added to the sqlite3_index_info +** structure for SQLite version 3.8.2. If a virtual table extension is +** used with an SQLite version earlier than 3.8.2, the results of attempting +** to read or write the estimatedRows field are undefined (but are likely +** to included crashing the application). The estimatedRows field should +** therefore only be used if [sqlite3_libversion_number()] returns a +** value greater than or equal to 3008002. +*/ +struct sqlite3_index_info { + /* Inputs */ + int nConstraint; /* Number of entries in aConstraint */ + struct sqlite3_index_constraint { + int iColumn; /* Column on left-hand side of constraint */ + unsigned char op; /* Constraint operator */ + unsigned char usable; /* True if this constraint is usable */ + int iTermOffset; /* Used internally - xBestIndex should ignore */ + } *aConstraint; /* Table of WHERE clause constraints */ + int nOrderBy; /* Number of terms in the ORDER BY clause */ + struct sqlite3_index_orderby { + int iColumn; /* Column number */ + unsigned char desc; /* True for DESC. False for ASC. */ + } *aOrderBy; /* The ORDER BY clause */ + /* Outputs */ + struct sqlite3_index_constraint_usage { + int argvIndex; /* if >0, constraint is part of argv to xFilter */ + unsigned char omit; /* Do not code a test for this constraint */ + } *aConstraintUsage; + int idxNum; /* Number used to identify the index */ + char *idxStr; /* String, possibly obtained from sqlite3_malloc */ + int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if true */ + int orderByConsumed; /* True if output is already ordered */ + double estimatedCost; /* Estimated cost of using this index */ + /* Fields below are only available in SQLite 3.8.2 and later */ + sqlite3_int64 estimatedRows; /* Estimated number of rows returned */ +}; + +/* +** CAPI3REF: Virtual Table Constraint Operator Codes +** +** These macros defined the allowed values for the +** [sqlite3_index_info].aConstraint[].op field. Each value represents +** an operator that is part of a constraint term in the wHERE clause of +** a query that uses a [virtual table]. +*/ +#define SQLITE_INDEX_CONSTRAINT_EQ 2 +#define SQLITE_INDEX_CONSTRAINT_GT 4 +#define SQLITE_INDEX_CONSTRAINT_LE 8 +#define SQLITE_INDEX_CONSTRAINT_LT 16 +#define SQLITE_INDEX_CONSTRAINT_GE 32 +#define SQLITE_INDEX_CONSTRAINT_MATCH 64 + +/* +** CAPI3REF: Register A Virtual Table Implementation +** +** ^These routines are used to register a new [virtual table module] name. +** ^Module names must be registered before +** creating a new [virtual table] using the module and before using a +** preexisting [virtual table] for the module. +** +** ^The module name is registered on the [database connection] specified +** by the first parameter. ^The name of the module is given by the +** second parameter. ^The third parameter is a pointer to +** the implementation of the [virtual table module]. ^The fourth +** parameter is an arbitrary client data pointer that is passed through +** into the [xCreate] and [xConnect] methods of the virtual table module +** when a new virtual table is be being created or reinitialized. +** +** ^The sqlite3_create_module_v2() interface has a fifth parameter which +** is a pointer to a destructor for the pClientData. ^SQLite will +** invoke the destructor function (if it is not NULL) when SQLite +** no longer needs the pClientData pointer. ^The destructor will also +** be invoked if the call to sqlite3_create_module_v2() fails. +** ^The sqlite3_create_module() +** interface is equivalent to sqlite3_create_module_v2() with a NULL +** destructor. +*/ +SQLITE_API int sqlite3_create_module( + sqlite3 *db, /* SQLite connection to register module with */ + const char *zName, /* Name of the module */ + const sqlite3_module *p, /* Methods for the module */ + void *pClientData /* Client data for xCreate/xConnect */ +); +SQLITE_API int sqlite3_create_module_v2( + sqlite3 *db, /* SQLite connection to register module with */ + const char *zName, /* Name of the module */ + const sqlite3_module *p, /* Methods for the module */ + void *pClientData, /* Client data for xCreate/xConnect */ + void(*xDestroy)(void*) /* Module destructor function */ +); + +/* +** CAPI3REF: Virtual Table Instance Object +** KEYWORDS: sqlite3_vtab +** +** Every [virtual table module] implementation uses a subclass +** of this object to describe a particular instance +** of the [virtual table]. Each subclass will +** be tailored to the specific needs of the module implementation. +** The purpose of this superclass is to define certain fields that are +** common to all module implementations. +** +** ^Virtual tables methods can set an error message by assigning a +** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should +** take care that any prior string is freed by a call to [sqlite3_free()] +** prior to assigning a new string to zErrMsg. ^After the error message +** is delivered up to the client application, the string will be automatically +** freed by sqlite3_free() and the zErrMsg field will be zeroed. +*/ +struct sqlite3_vtab { + const sqlite3_module *pModule; /* The module for this virtual table */ + int nRef; /* NO LONGER USED */ + char *zErrMsg; /* Error message from sqlite3_mprintf() */ + /* Virtual table implementations will typically add additional fields */ +}; + +/* +** CAPI3REF: Virtual Table Cursor Object +** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor} +** +** Every [virtual table module] implementation uses a subclass of the +** following structure to describe cursors that point into the +** [virtual table] and are used +** to loop through the virtual table. Cursors are created using the +** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed +** by the [sqlite3_module.xClose | xClose] method. Cursors are used +** by the [xFilter], [xNext], [xEof], [xColumn], and [xRowid] methods +** of the module. Each module implementation will define +** the content of a cursor structure to suit its own needs. +** +** This superclass exists in order to define fields of the cursor that +** are common to all implementations. +*/ +struct sqlite3_vtab_cursor { + sqlite3_vtab *pVtab; /* Virtual table of this cursor */ + /* Virtual table implementations will typically add additional fields */ +}; + +/* +** CAPI3REF: Declare The Schema Of A Virtual Table +** +** ^The [xCreate] and [xConnect] methods of a +** [virtual table module] call this interface +** to declare the format (the names and datatypes of the columns) of +** the virtual tables they implement. +*/ +SQLITE_API int sqlite3_declare_vtab(sqlite3*, const char *zSQL); + +/* +** CAPI3REF: Overload A Function For A Virtual Table +** +** ^(Virtual tables can provide alternative implementations of functions +** using the [xFindFunction] method of the [virtual table module]. +** But global versions of those functions +** must exist in order to be overloaded.)^ +** +** ^(This API makes sure a global version of a function with a particular +** name and number of parameters exists. If no such function exists +** before this API is called, a new function is created.)^ ^The implementation +** of the new function always causes an exception to be thrown. So +** the new function is not good for anything by itself. Its only +** purpose is to be a placeholder function that can be overloaded +** by a [virtual table]. +*/ +SQLITE_API int sqlite3_overload_function(sqlite3*, const char *zFuncName, int nArg); + +/* +** The interface to the virtual-table mechanism defined above (back up +** to a comment remarkably similar to this one) is currently considered +** to be experimental. The interface might change in incompatible ways. +** If this is a problem for you, do not use the interface at this time. +** +** When the virtual-table mechanism stabilizes, we will declare the +** interface fixed, support it indefinitely, and remove this comment. +*/ + +/* +** CAPI3REF: A Handle To An Open BLOB +** KEYWORDS: {BLOB handle} {BLOB handles} +** +** An instance of this object represents an open BLOB on which +** [sqlite3_blob_open | incremental BLOB I/O] can be performed. +** ^Objects of this type are created by [sqlite3_blob_open()] +** and destroyed by [sqlite3_blob_close()]. +** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces +** can be used to read or write small subsections of the BLOB. +** ^The [sqlite3_blob_bytes()] interface returns the size of the BLOB in bytes. +*/ +typedef struct sqlite3_blob sqlite3_blob; + +/* +** CAPI3REF: Open A BLOB For Incremental I/O +** +** ^(This interfaces opens a [BLOB handle | handle] to the BLOB located +** in row iRow, column zColumn, table zTable in database zDb; +** in other words, the same BLOB that would be selected by: +** +**
          +**     SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
          +** 
          )^ +** +** ^If the flags parameter is non-zero, then the BLOB is opened for read +** and write access. ^If it is zero, the BLOB is opened for read access. +** ^It is not possible to open a column that is part of an index or primary +** key for writing. ^If [foreign key constraints] are enabled, it is +** not possible to open a column that is part of a [child key] for writing. +** +** ^Note that the database name is not the filename that contains +** the database but rather the symbolic name of the database that +** appears after the AS keyword when the database is connected using [ATTACH]. +** ^For the main database file, the database name is "main". +** ^For TEMP tables, the database name is "temp". +** +** ^(On success, [SQLITE_OK] is returned and the new [BLOB handle] is written +** to *ppBlob. Otherwise an [error code] is returned and *ppBlob is set +** to be a null pointer.)^ +** ^This function sets the [database connection] error code and message +** accessible via [sqlite3_errcode()] and [sqlite3_errmsg()] and related +** functions. ^Note that the *ppBlob variable is always initialized in a +** way that makes it safe to invoke [sqlite3_blob_close()] on *ppBlob +** regardless of the success or failure of this routine. +** +** ^(If the row that a BLOB handle points to is modified by an +** [UPDATE], [DELETE], or by [ON CONFLICT] side-effects +** then the BLOB handle is marked as "expired". +** This is true if any column of the row is changed, even a column +** other than the one the BLOB handle is open on.)^ +** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for +** an expired BLOB handle fail with a return code of [SQLITE_ABORT]. +** ^(Changes written into a BLOB prior to the BLOB expiring are not +** rolled back by the expiration of the BLOB. Such changes will eventually +** commit if the transaction continues to completion.)^ +** +** ^Use the [sqlite3_blob_bytes()] interface to determine the size of +** the opened blob. ^The size of a blob may not be changed by this +** interface. Use the [UPDATE] SQL command to change the size of a +** blob. +** +** ^The [sqlite3_blob_open()] interface will fail for a [WITHOUT ROWID] +** table. Incremental BLOB I/O is not possible on [WITHOUT ROWID] tables. +** +** ^The [sqlite3_bind_zeroblob()] and [sqlite3_result_zeroblob()] interfaces +** and the built-in [zeroblob] SQL function can be used, if desired, +** to create an empty, zero-filled blob in which to read or write using +** this interface. +** +** To avoid a resource leak, every open [BLOB handle] should eventually +** be released by a call to [sqlite3_blob_close()]. +*/ +SQLITE_API int sqlite3_blob_open( + sqlite3*, + const char *zDb, + const char *zTable, + const char *zColumn, + sqlite3_int64 iRow, + int flags, + sqlite3_blob **ppBlob +); + +/* +** CAPI3REF: Move a BLOB Handle to a New Row +** +** ^This function is used to move an existing blob handle so that it points +** to a different row of the same database table. ^The new row is identified +** by the rowid value passed as the second argument. Only the row can be +** changed. ^The database, table and column on which the blob handle is open +** remain the same. Moving an existing blob handle to a new row can be +** faster than closing the existing handle and opening a new one. +** +** ^(The new row must meet the same criteria as for [sqlite3_blob_open()] - +** it must exist and there must be either a blob or text value stored in +** the nominated column.)^ ^If the new row is not present in the table, or if +** it does not contain a blob or text value, or if another error occurs, an +** SQLite error code is returned and the blob handle is considered aborted. +** ^All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or +** [sqlite3_blob_reopen()] on an aborted blob handle immediately return +** SQLITE_ABORT. ^Calling [sqlite3_blob_bytes()] on an aborted blob handle +** always returns zero. +** +** ^This function sets the database handle error code and message. +*/ +SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64); + +/* +** CAPI3REF: Close A BLOB Handle +** +** ^Closes an open [BLOB handle]. +** +** ^Closing a BLOB shall cause the current transaction to commit +** if there are no other BLOBs, no pending prepared statements, and the +** database connection is in [autocommit mode]. +** ^If any writes were made to the BLOB, they might be held in cache +** until the close operation if they will fit. +** +** ^(Closing the BLOB often forces the changes +** out to disk and so if any I/O errors occur, they will likely occur +** at the time when the BLOB is closed. Any errors that occur during +** closing are reported as a non-zero return value.)^ +** +** ^(The BLOB is closed unconditionally. Even if this routine returns +** an error code, the BLOB is still closed.)^ +** +** ^Calling this routine with a null pointer (such as would be returned +** by a failed call to [sqlite3_blob_open()]) is a harmless no-op. +*/ +SQLITE_API int sqlite3_blob_close(sqlite3_blob *); + +/* +** CAPI3REF: Return The Size Of An Open BLOB +** +** ^Returns the size in bytes of the BLOB accessible via the +** successfully opened [BLOB handle] in its only argument. ^The +** incremental blob I/O routines can only read or overwriting existing +** blob content; they cannot change the size of a blob. +** +** This routine only works on a [BLOB handle] which has been created +** by a prior successful call to [sqlite3_blob_open()] and which has not +** been closed by [sqlite3_blob_close()]. Passing any other pointer in +** to this routine results in undefined and probably undesirable behavior. +*/ +SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *); + +/* +** CAPI3REF: Read Data From A BLOB Incrementally +** +** ^(This function is used to read data from an open [BLOB handle] into a +** caller-supplied buffer. N bytes of data are copied into buffer Z +** from the open BLOB, starting at offset iOffset.)^ +** +** ^If offset iOffset is less than N bytes from the end of the BLOB, +** [SQLITE_ERROR] is returned and no data is read. ^If N or iOffset is +** less than zero, [SQLITE_ERROR] is returned and no data is read. +** ^The size of the blob (and hence the maximum value of N+iOffset) +** can be determined using the [sqlite3_blob_bytes()] interface. +** +** ^An attempt to read from an expired [BLOB handle] fails with an +** error code of [SQLITE_ABORT]. +** +** ^(On success, sqlite3_blob_read() returns SQLITE_OK. +** Otherwise, an [error code] or an [extended error code] is returned.)^ +** +** This routine only works on a [BLOB handle] which has been created +** by a prior successful call to [sqlite3_blob_open()] and which has not +** been closed by [sqlite3_blob_close()]. Passing any other pointer in +** to this routine results in undefined and probably undesirable behavior. +** +** See also: [sqlite3_blob_write()]. +*/ +SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset); + +/* +** CAPI3REF: Write Data Into A BLOB Incrementally +** +** ^This function is used to write data into an open [BLOB handle] from a +** caller-supplied buffer. ^N bytes of data are copied from the buffer Z +** into the open BLOB, starting at offset iOffset. +** +** ^If the [BLOB handle] passed as the first argument was not opened for +** writing (the flags parameter to [sqlite3_blob_open()] was zero), +** this function returns [SQLITE_READONLY]. +** +** ^This function may only modify the contents of the BLOB; it is +** not possible to increase the size of a BLOB using this API. +** ^If offset iOffset is less than N bytes from the end of the BLOB, +** [SQLITE_ERROR] is returned and no data is written. ^If N is +** less than zero [SQLITE_ERROR] is returned and no data is written. +** The size of the BLOB (and hence the maximum value of N+iOffset) +** can be determined using the [sqlite3_blob_bytes()] interface. +** +** ^An attempt to write to an expired [BLOB handle] fails with an +** error code of [SQLITE_ABORT]. ^Writes to the BLOB that occurred +** before the [BLOB handle] expired are not rolled back by the +** expiration of the handle, though of course those changes might +** have been overwritten by the statement that expired the BLOB handle +** or by other independent statements. +** +** ^(On success, sqlite3_blob_write() returns SQLITE_OK. +** Otherwise, an [error code] or an [extended error code] is returned.)^ +** +** This routine only works on a [BLOB handle] which has been created +** by a prior successful call to [sqlite3_blob_open()] and which has not +** been closed by [sqlite3_blob_close()]. Passing any other pointer in +** to this routine results in undefined and probably undesirable behavior. +** +** See also: [sqlite3_blob_read()]. +*/ +SQLITE_API int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset); + +/* +** CAPI3REF: Virtual File System Objects +** +** A virtual filesystem (VFS) is an [sqlite3_vfs] object +** that SQLite uses to interact +** with the underlying operating system. Most SQLite builds come with a +** single default VFS that is appropriate for the host computer. +** New VFSes can be registered and existing VFSes can be unregistered. +** The following interfaces are provided. +** +** ^The sqlite3_vfs_find() interface returns a pointer to a VFS given its name. +** ^Names are case sensitive. +** ^Names are zero-terminated UTF-8 strings. +** ^If there is no match, a NULL pointer is returned. +** ^If zVfsName is NULL then the default VFS is returned. +** +** ^New VFSes are registered with sqlite3_vfs_register(). +** ^Each new VFS becomes the default VFS if the makeDflt flag is set. +** ^The same VFS can be registered multiple times without injury. +** ^To make an existing VFS into the default VFS, register it again +** with the makeDflt flag set. If two different VFSes with the +** same name are registered, the behavior is undefined. If a +** VFS is registered with a name that is NULL or an empty string, +** then the behavior is undefined. +** +** ^Unregister a VFS with the sqlite3_vfs_unregister() interface. +** ^(If the default VFS is unregistered, another VFS is chosen as +** the default. The choice for the new VFS is arbitrary.)^ +*/ +SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName); +SQLITE_API int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt); +SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*); + +/* +** CAPI3REF: Mutexes +** +** The SQLite core uses these routines for thread +** synchronization. Though they are intended for internal +** use by SQLite, code that links against SQLite is +** permitted to use any of these routines. +** +** The SQLite source code contains multiple implementations +** of these mutex routines. An appropriate implementation +** is selected automatically at compile-time. ^(The following +** implementations are available in the SQLite core: +** +**
            +**
          • SQLITE_MUTEX_PTHREADS +**
          • SQLITE_MUTEX_W32 +**
          • SQLITE_MUTEX_NOOP +**
          )^ +** +** ^The SQLITE_MUTEX_NOOP implementation is a set of routines +** that does no real locking and is appropriate for use in +** a single-threaded application. ^The SQLITE_MUTEX_PTHREADS and +** SQLITE_MUTEX_W32 implementations are appropriate for use on Unix +** and Windows. +** +** ^(If SQLite is compiled with the SQLITE_MUTEX_APPDEF preprocessor +** macro defined (with "-DSQLITE_MUTEX_APPDEF=1"), then no mutex +** implementation is included with the library. In this case the +** application must supply a custom mutex implementation using the +** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function +** before calling sqlite3_initialize() or any other public sqlite3_ +** function that calls sqlite3_initialize().)^ +** +** ^The sqlite3_mutex_alloc() routine allocates a new +** mutex and returns a pointer to it. ^If it returns NULL +** that means that a mutex could not be allocated. ^SQLite +** will unwind its stack and return an error. ^(The argument +** to sqlite3_mutex_alloc() is one of these integer constants: +** +**
            +**
          • SQLITE_MUTEX_FAST +**
          • SQLITE_MUTEX_RECURSIVE +**
          • SQLITE_MUTEX_STATIC_MASTER +**
          • SQLITE_MUTEX_STATIC_MEM +**
          • SQLITE_MUTEX_STATIC_MEM2 +**
          • SQLITE_MUTEX_STATIC_PRNG +**
          • SQLITE_MUTEX_STATIC_LRU +**
          • SQLITE_MUTEX_STATIC_LRU2 +**
          )^ +** +** ^The first two constants (SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) +** cause sqlite3_mutex_alloc() to create +** a new mutex. ^The new mutex is recursive when SQLITE_MUTEX_RECURSIVE +** is used but not necessarily so when SQLITE_MUTEX_FAST is used. +** The mutex implementation does not need to make a distinction +** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does +** not want to. ^SQLite will only request a recursive mutex in +** cases where it really needs one. ^If a faster non-recursive mutex +** implementation is available on the host platform, the mutex subsystem +** might return such a mutex in response to SQLITE_MUTEX_FAST. +** +** ^The other allowed parameters to sqlite3_mutex_alloc() (anything other +** than SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) each return +** a pointer to a static preexisting mutex. ^Six static mutexes are +** used by the current version of SQLite. Future versions of SQLite +** may add additional static mutexes. Static mutexes are for internal +** use by SQLite only. Applications that use SQLite mutexes should +** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or +** SQLITE_MUTEX_RECURSIVE. +** +** ^Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST +** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc() +** returns a different mutex on every call. ^But for the static +** mutex types, the same mutex is returned on every call that has +** the same type number. +** +** ^The sqlite3_mutex_free() routine deallocates a previously +** allocated dynamic mutex. ^SQLite is careful to deallocate every +** dynamic mutex that it allocates. The dynamic mutexes must not be in +** use when they are deallocated. Attempting to deallocate a static +** mutex results in undefined behavior. ^SQLite never deallocates +** a static mutex. +** +** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt +** to enter a mutex. ^If another thread is already within the mutex, +** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return +** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK] +** upon successful entry. ^(Mutexes created using +** SQLITE_MUTEX_RECURSIVE can be entered multiple times by the same thread. +** In such cases the, +** mutex must be exited an equal number of times before another thread +** can enter.)^ ^(If the same thread tries to enter any other +** kind of mutex more than once, the behavior is undefined. +** SQLite will never exhibit +** such behavior in its own use of mutexes.)^ +** +** ^(Some systems (for example, Windows 95) do not support the operation +** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try() +** will always return SQLITE_BUSY. The SQLite core only ever uses +** sqlite3_mutex_try() as an optimization so this is acceptable behavior.)^ +** +** ^The sqlite3_mutex_leave() routine exits a mutex that was +** previously entered by the same thread. ^(The behavior +** is undefined if the mutex is not currently entered by the +** calling thread or is not currently allocated. SQLite will +** never do either.)^ +** +** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or +** sqlite3_mutex_leave() is a NULL pointer, then all three routines +** behave as no-ops. +** +** See also: [sqlite3_mutex_held()] and [sqlite3_mutex_notheld()]. +*/ +SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int); +SQLITE_API void sqlite3_mutex_free(sqlite3_mutex*); +SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex*); +SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*); +SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex*); + +/* +** CAPI3REF: Mutex Methods Object +** +** An instance of this structure defines the low-level routines +** used to allocate and use mutexes. +** +** Usually, the default mutex implementations provided by SQLite are +** sufficient, however the user has the option of substituting a custom +** implementation for specialized deployments or systems for which SQLite +** does not provide a suitable implementation. In this case, the user +** creates and populates an instance of this structure to pass +** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option. +** Additionally, an instance of this structure can be used as an +** output variable when querying the system for the current mutex +** implementation, using the [SQLITE_CONFIG_GETMUTEX] option. +** +** ^The xMutexInit method defined by this structure is invoked as +** part of system initialization by the sqlite3_initialize() function. +** ^The xMutexInit routine is called by SQLite exactly once for each +** effective call to [sqlite3_initialize()]. +** +** ^The xMutexEnd method defined by this structure is invoked as +** part of system shutdown by the sqlite3_shutdown() function. The +** implementation of this method is expected to release all outstanding +** resources obtained by the mutex methods implementation, especially +** those obtained by the xMutexInit method. ^The xMutexEnd() +** interface is invoked exactly once for each call to [sqlite3_shutdown()]. +** +** ^(The remaining seven methods defined by this structure (xMutexAlloc, +** xMutexFree, xMutexEnter, xMutexTry, xMutexLeave, xMutexHeld and +** xMutexNotheld) implement the following interfaces (respectively): +** +**
            +**
          • [sqlite3_mutex_alloc()]
          • +**
          • [sqlite3_mutex_free()]
          • +**
          • [sqlite3_mutex_enter()]
          • +**
          • [sqlite3_mutex_try()]
          • +**
          • [sqlite3_mutex_leave()]
          • +**
          • [sqlite3_mutex_held()]
          • +**
          • [sqlite3_mutex_notheld()]
          • +**
          )^ +** +** The only difference is that the public sqlite3_XXX functions enumerated +** above silently ignore any invocations that pass a NULL pointer instead +** of a valid mutex handle. The implementations of the methods defined +** by this structure are not required to handle this case, the results +** of passing a NULL pointer instead of a valid mutex handle are undefined +** (i.e. it is acceptable to provide an implementation that segfaults if +** it is passed a NULL pointer). +** +** The xMutexInit() method must be threadsafe. ^It must be harmless to +** invoke xMutexInit() multiple times within the same process and without +** intervening calls to xMutexEnd(). Second and subsequent calls to +** xMutexInit() must be no-ops. +** +** ^xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()] +** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory +** allocation for a static mutex. ^However xMutexAlloc() may use SQLite +** memory allocation for a fast or recursive mutex. +** +** ^SQLite will invoke the xMutexEnd() method when [sqlite3_shutdown()] is +** called, but only if the prior call to xMutexInit returned SQLITE_OK. +** If xMutexInit fails in any way, it is expected to clean up after itself +** prior to returning. +*/ +typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; +struct sqlite3_mutex_methods { + int (*xMutexInit)(void); + int (*xMutexEnd)(void); + sqlite3_mutex *(*xMutexAlloc)(int); + void (*xMutexFree)(sqlite3_mutex *); + void (*xMutexEnter)(sqlite3_mutex *); + int (*xMutexTry)(sqlite3_mutex *); + void (*xMutexLeave)(sqlite3_mutex *); + int (*xMutexHeld)(sqlite3_mutex *); + int (*xMutexNotheld)(sqlite3_mutex *); +}; + +/* +** CAPI3REF: Mutex Verification Routines +** +** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routines +** are intended for use inside assert() statements. ^The SQLite core +** never uses these routines except inside an assert() and applications +** are advised to follow the lead of the core. ^The SQLite core only +** provides implementations for these routines when it is compiled +** with the SQLITE_DEBUG flag. ^External mutex implementations +** are only required to provide these routines if SQLITE_DEBUG is +** defined and if NDEBUG is not defined. +** +** ^These routines should return true if the mutex in their argument +** is held or not held, respectively, by the calling thread. +** +** ^The implementation is not required to provide versions of these +** routines that actually work. If the implementation does not provide working +** versions of these routines, it should at least provide stubs that always +** return true so that one does not get spurious assertion failures. +** +** ^If the argument to sqlite3_mutex_held() is a NULL pointer then +** the routine should return 1. This seems counter-intuitive since +** clearly the mutex cannot be held if it does not exist. But +** the reason the mutex does not exist is because the build is not +** using mutexes. And we do not want the assert() containing the +** call to sqlite3_mutex_held() to fail, so a non-zero return is +** the appropriate thing to do. ^The sqlite3_mutex_notheld() +** interface should also return 1 when given a NULL pointer. +*/ +#ifndef NDEBUG +SQLITE_API int sqlite3_mutex_held(sqlite3_mutex*); +SQLITE_API int sqlite3_mutex_notheld(sqlite3_mutex*); +#endif + +/* +** CAPI3REF: Mutex Types +** +** The [sqlite3_mutex_alloc()] interface takes a single argument +** which is one of these integer constants. +** +** The set of static mutexes may change from one SQLite release to the +** next. Applications that override the built-in mutex logic must be +** prepared to accommodate additional static mutexes. +*/ +#define SQLITE_MUTEX_FAST 0 +#define SQLITE_MUTEX_RECURSIVE 1 +#define SQLITE_MUTEX_STATIC_MASTER 2 +#define SQLITE_MUTEX_STATIC_MEM 3 /* sqlite3_malloc() */ +#define SQLITE_MUTEX_STATIC_MEM2 4 /* NOT USED */ +#define SQLITE_MUTEX_STATIC_OPEN 4 /* sqlite3BtreeOpen() */ +#define SQLITE_MUTEX_STATIC_PRNG 5 /* sqlite3_random() */ +#define SQLITE_MUTEX_STATIC_LRU 6 /* lru page list */ +#define SQLITE_MUTEX_STATIC_LRU2 7 /* NOT USED */ +#define SQLITE_MUTEX_STATIC_PMEM 7 /* sqlite3PageMalloc() */ + +/* +** CAPI3REF: Retrieve the mutex for a database connection +** +** ^This interface returns a pointer the [sqlite3_mutex] object that +** serializes access to the [database connection] given in the argument +** when the [threading mode] is Serialized. +** ^If the [threading mode] is Single-thread or Multi-thread then this +** routine returns a NULL pointer. +*/ +SQLITE_API sqlite3_mutex *sqlite3_db_mutex(sqlite3*); + +/* +** CAPI3REF: Low-Level Control Of Database Files +** +** ^The [sqlite3_file_control()] interface makes a direct call to the +** xFileControl method for the [sqlite3_io_methods] object associated +** with a particular database identified by the second argument. ^The +** name of the database is "main" for the main database or "temp" for the +** TEMP database, or the name that appears after the AS keyword for +** databases that are added using the [ATTACH] SQL command. +** ^A NULL pointer can be used in place of "main" to refer to the +** main database file. +** ^The third and fourth parameters to this routine +** are passed directly through to the second and third parameters of +** the xFileControl method. ^The return value of the xFileControl +** method becomes the return value of this routine. +** +** ^The SQLITE_FCNTL_FILE_POINTER value for the op parameter causes +** a pointer to the underlying [sqlite3_file] object to be written into +** the space pointed to by the 4th parameter. ^The SQLITE_FCNTL_FILE_POINTER +** case is a short-circuit path which does not actually invoke the +** underlying sqlite3_io_methods.xFileControl method. +** +** ^If the second parameter (zDbName) does not match the name of any +** open database file, then SQLITE_ERROR is returned. ^This error +** code is not remembered and will not be recalled by [sqlite3_errcode()] +** or [sqlite3_errmsg()]. The underlying xFileControl method might +** also return SQLITE_ERROR. There is no way to distinguish between +** an incorrect zDbName and an SQLITE_ERROR return from the underlying +** xFileControl method. +** +** See also: [SQLITE_FCNTL_LOCKSTATE] +*/ +SQLITE_API int sqlite3_file_control(sqlite3*, const char *zDbName, int op, void*); + +/* +** CAPI3REF: Testing Interface +** +** ^The sqlite3_test_control() interface is used to read out internal +** state of SQLite and to inject faults into SQLite for testing +** purposes. ^The first parameter is an operation code that determines +** the number, meaning, and operation of all subsequent parameters. +** +** This interface is not for use by applications. It exists solely +** for verifying the correct operation of the SQLite library. Depending +** on how the SQLite library is compiled, this interface might not exist. +** +** The details of the operation codes, their meanings, the parameters +** they take, and what they do are all subject to change without notice. +** Unlike most of the SQLite API, this function is not guaranteed to +** operate consistently from one release to the next. +*/ +SQLITE_API int sqlite3_test_control(int op, ...); + +/* +** CAPI3REF: Testing Interface Operation Codes +** +** These constants are the valid operation code parameters used +** as the first argument to [sqlite3_test_control()]. +** +** These parameters and their meanings are subject to change +** without notice. These values are for testing purposes only. +** Applications should not use any of these parameters or the +** [sqlite3_test_control()] interface. +*/ +#define SQLITE_TESTCTRL_FIRST 5 +#define SQLITE_TESTCTRL_PRNG_SAVE 5 +#define SQLITE_TESTCTRL_PRNG_RESTORE 6 +#define SQLITE_TESTCTRL_PRNG_RESET 7 +#define SQLITE_TESTCTRL_BITVEC_TEST 8 +#define SQLITE_TESTCTRL_FAULT_INSTALL 9 +#define SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS 10 +#define SQLITE_TESTCTRL_PENDING_BYTE 11 +#define SQLITE_TESTCTRL_ASSERT 12 +#define SQLITE_TESTCTRL_ALWAYS 13 +#define SQLITE_TESTCTRL_RESERVE 14 +#define SQLITE_TESTCTRL_OPTIMIZATIONS 15 +#define SQLITE_TESTCTRL_ISKEYWORD 16 +#define SQLITE_TESTCTRL_SCRATCHMALLOC 17 +#define SQLITE_TESTCTRL_LOCALTIME_FAULT 18 +#define SQLITE_TESTCTRL_EXPLAIN_STMT 19 +#define SQLITE_TESTCTRL_NEVER_CORRUPT 20 +#define SQLITE_TESTCTRL_VDBE_COVERAGE 21 +#define SQLITE_TESTCTRL_BYTEORDER 22 +#define SQLITE_TESTCTRL_LAST 22 + +/* +** CAPI3REF: SQLite Runtime Status +** +** ^This interface is used to retrieve runtime status information +** about the performance of SQLite, and optionally to reset various +** highwater marks. ^The first argument is an integer code for +** the specific parameter to measure. ^(Recognized integer codes +** are of the form [status parameters | SQLITE_STATUS_...].)^ +** ^The current value of the parameter is returned into *pCurrent. +** ^The highest recorded value is returned in *pHighwater. ^If the +** resetFlag is true, then the highest record value is reset after +** *pHighwater is written. ^(Some parameters do not record the highest +** value. For those parameters +** nothing is written into *pHighwater and the resetFlag is ignored.)^ +** ^(Other parameters record only the highwater mark and not the current +** value. For these latter parameters nothing is written into *pCurrent.)^ +** +** ^The sqlite3_status() routine returns SQLITE_OK on success and a +** non-zero [error code] on failure. +** +** This routine is threadsafe but is not atomic. This routine can be +** called while other threads are running the same or different SQLite +** interfaces. However the values returned in *pCurrent and +** *pHighwater reflect the status of SQLite at different points in time +** and it is possible that another thread might change the parameter +** in between the times when *pCurrent and *pHighwater are written. +** +** See also: [sqlite3_db_status()] +*/ +SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag); + + +/* +** CAPI3REF: Status Parameters +** KEYWORDS: {status parameters} +** +** These integer constants designate various run-time status parameters +** that can be returned by [sqlite3_status()]. +** +**
          +** [[SQLITE_STATUS_MEMORY_USED]] ^(
          SQLITE_STATUS_MEMORY_USED
          +**
          This parameter is the current amount of memory checked out +** using [sqlite3_malloc()], either directly or indirectly. The +** figure includes calls made to [sqlite3_malloc()] by the application +** and internal memory usage by the SQLite library. Scratch memory +** controlled by [SQLITE_CONFIG_SCRATCH] and auxiliary page-cache +** memory controlled by [SQLITE_CONFIG_PAGECACHE] is not included in +** this parameter. The amount returned is the sum of the allocation +** sizes as reported by the xSize method in [sqlite3_mem_methods].
          )^ +** +** [[SQLITE_STATUS_MALLOC_SIZE]] ^(
          SQLITE_STATUS_MALLOC_SIZE
          +**
          This parameter records the largest memory allocation request +** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their +** internal equivalents). Only the value returned in the +** *pHighwater parameter to [sqlite3_status()] is of interest. +** The value written into the *pCurrent parameter is undefined.
          )^ +** +** [[SQLITE_STATUS_MALLOC_COUNT]] ^(
          SQLITE_STATUS_MALLOC_COUNT
          +**
          This parameter records the number of separate memory allocations +** currently checked out.
          )^ +** +** [[SQLITE_STATUS_PAGECACHE_USED]] ^(
          SQLITE_STATUS_PAGECACHE_USED
          +**
          This parameter returns the number of pages used out of the +** [pagecache memory allocator] that was configured using +** [SQLITE_CONFIG_PAGECACHE]. The +** value returned is in pages, not in bytes.
          )^ +** +** [[SQLITE_STATUS_PAGECACHE_OVERFLOW]] +** ^(
          SQLITE_STATUS_PAGECACHE_OVERFLOW
          +**
          This parameter returns the number of bytes of page cache +** allocation which could not be satisfied by the [SQLITE_CONFIG_PAGECACHE] +** buffer and where forced to overflow to [sqlite3_malloc()]. The +** returned value includes allocations that overflowed because they +** where too large (they were larger than the "sz" parameter to +** [SQLITE_CONFIG_PAGECACHE]) and allocations that overflowed because +** no space was left in the page cache.
          )^ +** +** [[SQLITE_STATUS_PAGECACHE_SIZE]] ^(
          SQLITE_STATUS_PAGECACHE_SIZE
          +**
          This parameter records the largest memory allocation request +** handed to [pagecache memory allocator]. Only the value returned in the +** *pHighwater parameter to [sqlite3_status()] is of interest. +** The value written into the *pCurrent parameter is undefined.
          )^ +** +** [[SQLITE_STATUS_SCRATCH_USED]] ^(
          SQLITE_STATUS_SCRATCH_USED
          +**
          This parameter returns the number of allocations used out of the +** [scratch memory allocator] configured using +** [SQLITE_CONFIG_SCRATCH]. The value returned is in allocations, not +** in bytes. Since a single thread may only have one scratch allocation +** outstanding at time, this parameter also reports the number of threads +** using scratch memory at the same time.
          )^ +** +** [[SQLITE_STATUS_SCRATCH_OVERFLOW]] ^(
          SQLITE_STATUS_SCRATCH_OVERFLOW
          +**
          This parameter returns the number of bytes of scratch memory +** allocation which could not be satisfied by the [SQLITE_CONFIG_SCRATCH] +** buffer and where forced to overflow to [sqlite3_malloc()]. The values +** returned include overflows because the requested allocation was too +** larger (that is, because the requested allocation was larger than the +** "sz" parameter to [SQLITE_CONFIG_SCRATCH]) and because no scratch buffer +** slots were available. +**
          )^ +** +** [[SQLITE_STATUS_SCRATCH_SIZE]] ^(
          SQLITE_STATUS_SCRATCH_SIZE
          +**
          This parameter records the largest memory allocation request +** handed to [scratch memory allocator]. Only the value returned in the +** *pHighwater parameter to [sqlite3_status()] is of interest. +** The value written into the *pCurrent parameter is undefined.
          )^ +** +** [[SQLITE_STATUS_PARSER_STACK]] ^(
          SQLITE_STATUS_PARSER_STACK
          +**
          This parameter records the deepest parser stack. It is only +** meaningful if SQLite is compiled with [YYTRACKMAXSTACKDEPTH].
          )^ +**
          +** +** New status parameters may be added from time to time. +*/ +#define SQLITE_STATUS_MEMORY_USED 0 +#define SQLITE_STATUS_PAGECACHE_USED 1 +#define SQLITE_STATUS_PAGECACHE_OVERFLOW 2 +#define SQLITE_STATUS_SCRATCH_USED 3 +#define SQLITE_STATUS_SCRATCH_OVERFLOW 4 +#define SQLITE_STATUS_MALLOC_SIZE 5 +#define SQLITE_STATUS_PARSER_STACK 6 +#define SQLITE_STATUS_PAGECACHE_SIZE 7 +#define SQLITE_STATUS_SCRATCH_SIZE 8 +#define SQLITE_STATUS_MALLOC_COUNT 9 + +/* +** CAPI3REF: Database Connection Status +** +** ^This interface is used to retrieve runtime status information +** about a single [database connection]. ^The first argument is the +** database connection object to be interrogated. ^The second argument +** is an integer constant, taken from the set of +** [SQLITE_DBSTATUS options], that +** determines the parameter to interrogate. The set of +** [SQLITE_DBSTATUS options] is likely +** to grow in future releases of SQLite. +** +** ^The current value of the requested parameter is written into *pCur +** and the highest instantaneous value is written into *pHiwtr. ^If +** the resetFlg is true, then the highest instantaneous value is +** reset back down to the current value. +** +** ^The sqlite3_db_status() routine returns SQLITE_OK on success and a +** non-zero [error code] on failure. +** +** See also: [sqlite3_status()] and [sqlite3_stmt_status()]. +*/ +SQLITE_API int sqlite3_db_status(sqlite3*, int op, int *pCur, int *pHiwtr, int resetFlg); + +/* +** CAPI3REF: Status Parameters for database connections +** KEYWORDS: {SQLITE_DBSTATUS options} +** +** These constants are the available integer "verbs" that can be passed as +** the second argument to the [sqlite3_db_status()] interface. +** +** New verbs may be added in future releases of SQLite. Existing verbs +** might be discontinued. Applications should check the return code from +** [sqlite3_db_status()] to make sure that the call worked. +** The [sqlite3_db_status()] interface will return a non-zero error code +** if a discontinued or unsupported verb is invoked. +** +**
          +** [[SQLITE_DBSTATUS_LOOKASIDE_USED]] ^(
          SQLITE_DBSTATUS_LOOKASIDE_USED
          +**
          This parameter returns the number of lookaside memory slots currently +** checked out.
          )^ +** +** [[SQLITE_DBSTATUS_LOOKASIDE_HIT]] ^(
          SQLITE_DBSTATUS_LOOKASIDE_HIT
          +**
          This parameter returns the number malloc attempts that were +** satisfied using lookaside memory. Only the high-water value is meaningful; +** the current value is always zero.)^ +** +** [[SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE]] +** ^(
          SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE
          +**
          This parameter returns the number malloc attempts that might have +** been satisfied using lookaside memory but failed due to the amount of +** memory requested being larger than the lookaside slot size. +** Only the high-water value is meaningful; +** the current value is always zero.)^ +** +** [[SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL]] +** ^(
          SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL
          +**
          This parameter returns the number malloc attempts that might have +** been satisfied using lookaside memory but failed due to all lookaside +** memory already being in use. +** Only the high-water value is meaningful; +** the current value is always zero.)^ +** +** [[SQLITE_DBSTATUS_CACHE_USED]] ^(
          SQLITE_DBSTATUS_CACHE_USED
          +**
          This parameter returns the approximate number of of bytes of heap +** memory used by all pager caches associated with the database connection.)^ +** ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_USED is always 0. +** +** [[SQLITE_DBSTATUS_SCHEMA_USED]] ^(
          SQLITE_DBSTATUS_SCHEMA_USED
          +**
          This parameter returns the approximate number of of bytes of heap +** memory used to store the schema for all databases associated +** with the connection - main, temp, and any [ATTACH]-ed databases.)^ +** ^The full amount of memory used by the schemas is reported, even if the +** schema memory is shared with other database connections due to +** [shared cache mode] being enabled. +** ^The highwater mark associated with SQLITE_DBSTATUS_SCHEMA_USED is always 0. +** +** [[SQLITE_DBSTATUS_STMT_USED]] ^(
          SQLITE_DBSTATUS_STMT_USED
          +**
          This parameter returns the approximate number of of bytes of heap +** and lookaside memory used by all prepared statements associated with +** the database connection.)^ +** ^The highwater mark associated with SQLITE_DBSTATUS_STMT_USED is always 0. +**
          +** +** [[SQLITE_DBSTATUS_CACHE_HIT]] ^(
          SQLITE_DBSTATUS_CACHE_HIT
          +**
          This parameter returns the number of pager cache hits that have +** occurred.)^ ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_HIT +** is always 0. +**
          +** +** [[SQLITE_DBSTATUS_CACHE_MISS]] ^(
          SQLITE_DBSTATUS_CACHE_MISS
          +**
          This parameter returns the number of pager cache misses that have +** occurred.)^ ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_MISS +** is always 0. +**
          +** +** [[SQLITE_DBSTATUS_CACHE_WRITE]] ^(
          SQLITE_DBSTATUS_CACHE_WRITE
          +**
          This parameter returns the number of dirty cache entries that have +** been written to disk. Specifically, the number of pages written to the +** wal file in wal mode databases, or the number of pages written to the +** database file in rollback mode databases. Any pages written as part of +** transaction rollback or database recovery operations are not included. +** If an IO or other error occurs while writing a page to disk, the effect +** on subsequent SQLITE_DBSTATUS_CACHE_WRITE requests is undefined.)^ ^The +** highwater mark associated with SQLITE_DBSTATUS_CACHE_WRITE is always 0. +**
          +** +** [[SQLITE_DBSTATUS_DEFERRED_FKS]] ^(
          SQLITE_DBSTATUS_DEFERRED_FKS
          +**
          This parameter returns zero for the current value if and only if +** all foreign key constraints (deferred or immediate) have been +** resolved.)^ ^The highwater mark is always 0. +**
          +**
          +*/ +#define SQLITE_DBSTATUS_LOOKASIDE_USED 0 +#define SQLITE_DBSTATUS_CACHE_USED 1 +#define SQLITE_DBSTATUS_SCHEMA_USED 2 +#define SQLITE_DBSTATUS_STMT_USED 3 +#define SQLITE_DBSTATUS_LOOKASIDE_HIT 4 +#define SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE 5 +#define SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL 6 +#define SQLITE_DBSTATUS_CACHE_HIT 7 +#define SQLITE_DBSTATUS_CACHE_MISS 8 +#define SQLITE_DBSTATUS_CACHE_WRITE 9 +#define SQLITE_DBSTATUS_DEFERRED_FKS 10 +#define SQLITE_DBSTATUS_MAX 10 /* Largest defined DBSTATUS */ + + +/* +** CAPI3REF: Prepared Statement Status +** +** ^(Each prepared statement maintains various +** [SQLITE_STMTSTATUS counters] that measure the number +** of times it has performed specific operations.)^ These counters can +** be used to monitor the performance characteristics of the prepared +** statements. For example, if the number of table steps greatly exceeds +** the number of table searches or result rows, that would tend to indicate +** that the prepared statement is using a full table scan rather than +** an index. +** +** ^(This interface is used to retrieve and reset counter values from +** a [prepared statement]. The first argument is the prepared statement +** object to be interrogated. The second argument +** is an integer code for a specific [SQLITE_STMTSTATUS counter] +** to be interrogated.)^ +** ^The current value of the requested counter is returned. +** ^If the resetFlg is true, then the counter is reset to zero after this +** interface call returns. +** +** See also: [sqlite3_status()] and [sqlite3_db_status()]. +*/ +SQLITE_API int sqlite3_stmt_status(sqlite3_stmt*, int op,int resetFlg); + +/* +** CAPI3REF: Status Parameters for prepared statements +** KEYWORDS: {SQLITE_STMTSTATUS counter} {SQLITE_STMTSTATUS counters} +** +** These preprocessor macros define integer codes that name counter +** values associated with the [sqlite3_stmt_status()] interface. +** The meanings of the various counters are as follows: +** +**
          +** [[SQLITE_STMTSTATUS_FULLSCAN_STEP]]
          SQLITE_STMTSTATUS_FULLSCAN_STEP
          +**
          ^This is the number of times that SQLite has stepped forward in +** a table as part of a full table scan. Large numbers for this counter +** may indicate opportunities for performance improvement through +** careful use of indices.
          +** +** [[SQLITE_STMTSTATUS_SORT]]
          SQLITE_STMTSTATUS_SORT
          +**
          ^This is the number of sort operations that have occurred. +** A non-zero value in this counter may indicate an opportunity to +** improvement performance through careful use of indices.
          +** +** [[SQLITE_STMTSTATUS_AUTOINDEX]]
          SQLITE_STMTSTATUS_AUTOINDEX
          +**
          ^This is the number of rows inserted into transient indices that +** were created automatically in order to help joins run faster. +** A non-zero value in this counter may indicate an opportunity to +** improvement performance by adding permanent indices that do not +** need to be reinitialized each time the statement is run.
          +** +** [[SQLITE_STMTSTATUS_VM_STEP]]
          SQLITE_STMTSTATUS_VM_STEP
          +**
          ^This is the number of virtual machine operations executed +** by the prepared statement if that number is less than or equal +** to 2147483647. The number of virtual machine operations can be +** used as a proxy for the total work done by the prepared statement. +** If the number of virtual machine operations exceeds 2147483647 +** then the value returned by this statement status code is undefined. +**
          +**
          +*/ +#define SQLITE_STMTSTATUS_FULLSCAN_STEP 1 +#define SQLITE_STMTSTATUS_SORT 2 +#define SQLITE_STMTSTATUS_AUTOINDEX 3 +#define SQLITE_STMTSTATUS_VM_STEP 4 + +/* +** CAPI3REF: Custom Page Cache Object +** +** The sqlite3_pcache type is opaque. It is implemented by +** the pluggable module. The SQLite core has no knowledge of +** its size or internal structure and never deals with the +** sqlite3_pcache object except by holding and passing pointers +** to the object. +** +** See [sqlite3_pcache_methods2] for additional information. +*/ +typedef struct sqlite3_pcache sqlite3_pcache; + +/* +** CAPI3REF: Custom Page Cache Object +** +** The sqlite3_pcache_page object represents a single page in the +** page cache. The page cache will allocate instances of this +** object. Various methods of the page cache use pointers to instances +** of this object as parameters or as their return value. +** +** See [sqlite3_pcache_methods2] for additional information. +*/ +typedef struct sqlite3_pcache_page sqlite3_pcache_page; +struct sqlite3_pcache_page { + void *pBuf; /* The content of the page */ + void *pExtra; /* Extra information associated with the page */ +}; + +/* +** CAPI3REF: Application Defined Page Cache. +** KEYWORDS: {page cache} +** +** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE2], ...) interface can +** register an alternative page cache implementation by passing in an +** instance of the sqlite3_pcache_methods2 structure.)^ +** In many applications, most of the heap memory allocated by +** SQLite is used for the page cache. +** By implementing a +** custom page cache using this API, an application can better control +** the amount of memory consumed by SQLite, the way in which +** that memory is allocated and released, and the policies used to +** determine exactly which parts of a database file are cached and for +** how long. +** +** The alternative page cache mechanism is an +** extreme measure that is only needed by the most demanding applications. +** The built-in page cache is recommended for most uses. +** +** ^(The contents of the sqlite3_pcache_methods2 structure are copied to an +** internal buffer by SQLite within the call to [sqlite3_config]. Hence +** the application may discard the parameter after the call to +** [sqlite3_config()] returns.)^ +** +** [[the xInit() page cache method]] +** ^(The xInit() method is called once for each effective +** call to [sqlite3_initialize()])^ +** (usually only once during the lifetime of the process). ^(The xInit() +** method is passed a copy of the sqlite3_pcache_methods2.pArg value.)^ +** The intent of the xInit() method is to set up global data structures +** required by the custom page cache implementation. +** ^(If the xInit() method is NULL, then the +** built-in default page cache is used instead of the application defined +** page cache.)^ +** +** [[the xShutdown() page cache method]] +** ^The xShutdown() method is called by [sqlite3_shutdown()]. +** It can be used to clean up +** any outstanding resources before process shutdown, if required. +** ^The xShutdown() method may be NULL. +** +** ^SQLite automatically serializes calls to the xInit method, +** so the xInit method need not be threadsafe. ^The +** xShutdown method is only called from [sqlite3_shutdown()] so it does +** not need to be threadsafe either. All other methods must be threadsafe +** in multithreaded applications. +** +** ^SQLite will never invoke xInit() more than once without an intervening +** call to xShutdown(). +** +** [[the xCreate() page cache methods]] +** ^SQLite invokes the xCreate() method to construct a new cache instance. +** SQLite will typically create one cache instance for each open database file, +** though this is not guaranteed. ^The +** first parameter, szPage, is the size in bytes of the pages that must +** be allocated by the cache. ^szPage will always a power of two. ^The +** second parameter szExtra is a number of bytes of extra storage +** associated with each page cache entry. ^The szExtra parameter will +** a number less than 250. SQLite will use the +** extra szExtra bytes on each page to store metadata about the underlying +** database page on disk. The value passed into szExtra depends +** on the SQLite version, the target platform, and how SQLite was compiled. +** ^The third argument to xCreate(), bPurgeable, is true if the cache being +** created will be used to cache database pages of a file stored on disk, or +** false if it is used for an in-memory database. The cache implementation +** does not have to do anything special based with the value of bPurgeable; +** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will +** never invoke xUnpin() except to deliberately delete a page. +** ^In other words, calls to xUnpin() on a cache with bPurgeable set to +** false will always have the "discard" flag set to true. +** ^Hence, a cache created with bPurgeable false will +** never contain any unpinned pages. +** +** [[the xCachesize() page cache method]] +** ^(The xCachesize() method may be called at any time by SQLite to set the +** suggested maximum cache-size (number of pages stored by) the cache +** instance passed as the first argument. This is the value configured using +** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable +** parameter, the implementation is not required to do anything with this +** value; it is advisory only. +** +** [[the xPagecount() page cache methods]] +** The xPagecount() method must return the number of pages currently +** stored in the cache, both pinned and unpinned. +** +** [[the xFetch() page cache methods]] +** The xFetch() method locates a page in the cache and returns a pointer to +** an sqlite3_pcache_page object associated with that page, or a NULL pointer. +** The pBuf element of the returned sqlite3_pcache_page object will be a +** pointer to a buffer of szPage bytes used to store the content of a +** single database page. The pExtra element of sqlite3_pcache_page will be +** a pointer to the szExtra bytes of extra storage that SQLite has requested +** for each entry in the page cache. +** +** The page to be fetched is determined by the key. ^The minimum key value +** is 1. After it has been retrieved using xFetch, the page is considered +** to be "pinned". +** +** If the requested page is already in the page cache, then the page cache +** implementation must return a pointer to the page buffer with its content +** intact. If the requested page is not already in the cache, then the +** cache implementation should use the value of the createFlag +** parameter to help it determined what action to take: +** +** +**
          createFlag Behavior when page is not already in cache +**
          0 Do not allocate a new page. Return NULL. +**
          1 Allocate a new page if it easy and convenient to do so. +** Otherwise return NULL. +**
          2 Make every effort to allocate a new page. Only return +** NULL if allocating a new page is effectively impossible. +**
          +** +** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite +** will only use a createFlag of 2 after a prior call with a createFlag of 1 +** failed.)^ In between the to xFetch() calls, SQLite may +** attempt to unpin one or more cache pages by spilling the content of +** pinned pages to disk and synching the operating system disk cache. +** +** [[the xUnpin() page cache method]] +** ^xUnpin() is called by SQLite with a pointer to a currently pinned page +** as its second argument. If the third parameter, discard, is non-zero, +** then the page must be evicted from the cache. +** ^If the discard parameter is +** zero, then the page may be discarded or retained at the discretion of +** page cache implementation. ^The page cache implementation +** may choose to evict unpinned pages at any time. +** +** The cache must not perform any reference counting. A single +** call to xUnpin() unpins the page regardless of the number of prior calls +** to xFetch(). +** +** [[the xRekey() page cache methods]] +** The xRekey() method is used to change the key value associated with the +** page passed as the second argument. If the cache +** previously contains an entry associated with newKey, it must be +** discarded. ^Any prior cache entry associated with newKey is guaranteed not +** to be pinned. +** +** When SQLite calls the xTruncate() method, the cache must discard all +** existing cache entries with page numbers (keys) greater than or equal +** to the value of the iLimit parameter passed to xTruncate(). If any +** of these pages are pinned, they are implicitly unpinned, meaning that +** they can be safely discarded. +** +** [[the xDestroy() page cache method]] +** ^The xDestroy() method is used to delete a cache allocated by xCreate(). +** All resources associated with the specified cache should be freed. ^After +** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*] +** handle invalid, and will not use it with any other sqlite3_pcache_methods2 +** functions. +** +** [[the xShrink() page cache method]] +** ^SQLite invokes the xShrink() method when it wants the page cache to +** free up as much of heap memory as possible. The page cache implementation +** is not obligated to free any memory, but well-behaved implementations should +** do their best. +*/ +typedef struct sqlite3_pcache_methods2 sqlite3_pcache_methods2; +struct sqlite3_pcache_methods2 { + int iVersion; + void *pArg; + int (*xInit)(void*); + void (*xShutdown)(void*); + sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable); + void (*xCachesize)(sqlite3_pcache*, int nCachesize); + int (*xPagecount)(sqlite3_pcache*); + sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); + void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_page*, int discard); + void (*xRekey)(sqlite3_pcache*, sqlite3_pcache_page*, + unsigned oldKey, unsigned newKey); + void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); + void (*xDestroy)(sqlite3_pcache*); + void (*xShrink)(sqlite3_pcache*); +}; + +/* +** This is the obsolete pcache_methods object that has now been replaced +** by sqlite3_pcache_methods2. This object is not used by SQLite. It is +** retained in the header file for backwards compatibility only. +*/ +typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; +struct sqlite3_pcache_methods { + void *pArg; + int (*xInit)(void*); + void (*xShutdown)(void*); + sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); + void (*xCachesize)(sqlite3_pcache*, int nCachesize); + int (*xPagecount)(sqlite3_pcache*); + void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); + void (*xUnpin)(sqlite3_pcache*, void*, int discard); + void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey); + void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); + void (*xDestroy)(sqlite3_pcache*); +}; + + +/* +** CAPI3REF: Online Backup Object +** +** The sqlite3_backup object records state information about an ongoing +** online backup operation. ^The sqlite3_backup object is created by +** a call to [sqlite3_backup_init()] and is destroyed by a call to +** [sqlite3_backup_finish()]. +** +** See Also: [Using the SQLite Online Backup API] +*/ +typedef struct sqlite3_backup sqlite3_backup; + +/* +** CAPI3REF: Online Backup API. +** +** The backup API copies the content of one database into another. +** It is useful either for creating backups of databases or +** for copying in-memory databases to or from persistent files. +** +** See Also: [Using the SQLite Online Backup API] +** +** ^SQLite holds a write transaction open on the destination database file +** for the duration of the backup operation. +** ^The source database is read-locked only while it is being read; +** it is not locked continuously for the entire backup operation. +** ^Thus, the backup may be performed on a live source database without +** preventing other database connections from +** reading or writing to the source database while the backup is underway. +** +** ^(To perform a backup operation: +**
            +**
          1. sqlite3_backup_init() is called once to initialize the +** backup, +**
          2. sqlite3_backup_step() is called one or more times to transfer +** the data between the two databases, and finally +**
          3. sqlite3_backup_finish() is called to release all resources +** associated with the backup operation. +**
          )^ +** There should be exactly one call to sqlite3_backup_finish() for each +** successful call to sqlite3_backup_init(). +** +** [[sqlite3_backup_init()]] sqlite3_backup_init() +** +** ^The D and N arguments to sqlite3_backup_init(D,N,S,M) are the +** [database connection] associated with the destination database +** and the database name, respectively. +** ^The database name is "main" for the main database, "temp" for the +** temporary database, or the name specified after the AS keyword in +** an [ATTACH] statement for an attached database. +** ^The S and M arguments passed to +** sqlite3_backup_init(D,N,S,M) identify the [database connection] +** and database name of the source database, respectively. +** ^The source and destination [database connections] (parameters S and D) +** must be different or else sqlite3_backup_init(D,N,S,M) will fail with +** an error. +** +** ^If an error occurs within sqlite3_backup_init(D,N,S,M), then NULL is +** returned and an error code and error message are stored in the +** destination [database connection] D. +** ^The error code and message for the failed call to sqlite3_backup_init() +** can be retrieved using the [sqlite3_errcode()], [sqlite3_errmsg()], and/or +** [sqlite3_errmsg16()] functions. +** ^A successful call to sqlite3_backup_init() returns a pointer to an +** [sqlite3_backup] object. +** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and +** sqlite3_backup_finish() functions to perform the specified backup +** operation. +** +** [[sqlite3_backup_step()]] sqlite3_backup_step() +** +** ^Function sqlite3_backup_step(B,N) will copy up to N pages between +** the source and destination databases specified by [sqlite3_backup] object B. +** ^If N is negative, all remaining source pages are copied. +** ^If sqlite3_backup_step(B,N) successfully copies N pages and there +** are still more pages to be copied, then the function returns [SQLITE_OK]. +** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages +** from source to destination, then it returns [SQLITE_DONE]. +** ^If an error occurs while running sqlite3_backup_step(B,N), +** then an [error code] is returned. ^As well as [SQLITE_OK] and +** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY], +** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an +** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX] extended error code. +** +** ^(The sqlite3_backup_step() might return [SQLITE_READONLY] if +**
            +**
          1. the destination database was opened read-only, or +**
          2. the destination database is using write-ahead-log journaling +** and the destination and source page sizes differ, or +**
          3. the destination database is an in-memory database and the +** destination and source page sizes differ. +**
          )^ +** +** ^If sqlite3_backup_step() cannot obtain a required file-system lock, then +** the [sqlite3_busy_handler | busy-handler function] +** is invoked (if one is specified). ^If the +** busy-handler returns non-zero before the lock is available, then +** [SQLITE_BUSY] is returned to the caller. ^In this case the call to +** sqlite3_backup_step() can be retried later. ^If the source +** [database connection] +** is being used to write to the source database when sqlite3_backup_step() +** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this +** case the call to sqlite3_backup_step() can be retried later on. ^(If +** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX], [SQLITE_NOMEM], or +** [SQLITE_READONLY] is returned, then +** there is no point in retrying the call to sqlite3_backup_step(). These +** errors are considered fatal.)^ The application must accept +** that the backup operation has failed and pass the backup operation handle +** to the sqlite3_backup_finish() to release associated resources. +** +** ^The first call to sqlite3_backup_step() obtains an exclusive lock +** on the destination file. ^The exclusive lock is not released until either +** sqlite3_backup_finish() is called or the backup operation is complete +** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to +** sqlite3_backup_step() obtains a [shared lock] on the source database that +** lasts for the duration of the sqlite3_backup_step() call. +** ^Because the source database is not locked between calls to +** sqlite3_backup_step(), the source database may be modified mid-way +** through the backup process. ^If the source database is modified by an +** external process or via a database connection other than the one being +** used by the backup operation, then the backup will be automatically +** restarted by the next call to sqlite3_backup_step(). ^If the source +** database is modified by the using the same database connection as is used +** by the backup operation, then the backup database is automatically +** updated at the same time. +** +** [[sqlite3_backup_finish()]] sqlite3_backup_finish() +** +** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the +** application wishes to abandon the backup operation, the application +** should destroy the [sqlite3_backup] by passing it to sqlite3_backup_finish(). +** ^The sqlite3_backup_finish() interfaces releases all +** resources associated with the [sqlite3_backup] object. +** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any +** active write-transaction on the destination database is rolled back. +** The [sqlite3_backup] object is invalid +** and may not be used following a call to sqlite3_backup_finish(). +** +** ^The value returned by sqlite3_backup_finish is [SQLITE_OK] if no +** sqlite3_backup_step() errors occurred, regardless or whether or not +** sqlite3_backup_step() completed. +** ^If an out-of-memory condition or IO error occurred during any prior +** sqlite3_backup_step() call on the same [sqlite3_backup] object, then +** sqlite3_backup_finish() returns the corresponding [error code]. +** +** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step() +** is not a permanent error and does not affect the return value of +** sqlite3_backup_finish(). +** +** [[sqlite3_backup__remaining()]] [[sqlite3_backup_pagecount()]] +** sqlite3_backup_remaining() and sqlite3_backup_pagecount() +** +** ^Each call to sqlite3_backup_step() sets two values inside +** the [sqlite3_backup] object: the number of pages still to be backed +** up and the total number of pages in the source database file. +** The sqlite3_backup_remaining() and sqlite3_backup_pagecount() interfaces +** retrieve these two values, respectively. +** +** ^The values returned by these functions are only updated by +** sqlite3_backup_step(). ^If the source database is modified during a backup +** operation, then the values are not updated to account for any extra +** pages that need to be updated or the size of the source database file +** changing. +** +** Concurrent Usage of Database Handles +** +** ^The source [database connection] may be used by the application for other +** purposes while a backup operation is underway or being initialized. +** ^If SQLite is compiled and configured to support threadsafe database +** connections, then the source database connection may be used concurrently +** from within other threads. +** +** However, the application must guarantee that the destination +** [database connection] is not passed to any other API (by any thread) after +** sqlite3_backup_init() is called and before the corresponding call to +** sqlite3_backup_finish(). SQLite does not currently check to see +** if the application incorrectly accesses the destination [database connection] +** and so no error code is reported, but the operations may malfunction +** nevertheless. Use of the destination database connection while a +** backup is in progress might also also cause a mutex deadlock. +** +** If running in [shared cache mode], the application must +** guarantee that the shared cache used by the destination database +** is not accessed while the backup is running. In practice this means +** that the application must guarantee that the disk file being +** backed up to is not accessed by any connection within the process, +** not just the specific connection that was passed to sqlite3_backup_init(). +** +** The [sqlite3_backup] object itself is partially threadsafe. Multiple +** threads may safely make multiple concurrent calls to sqlite3_backup_step(). +** However, the sqlite3_backup_remaining() and sqlite3_backup_pagecount() +** APIs are not strictly speaking threadsafe. If they are invoked at the +** same time as another thread is invoking sqlite3_backup_step() it is +** possible that they return invalid values. +*/ +SQLITE_API sqlite3_backup *sqlite3_backup_init( + sqlite3 *pDest, /* Destination database handle */ + const char *zDestName, /* Destination database name */ + sqlite3 *pSource, /* Source database handle */ + const char *zSourceName /* Source database name */ +); +SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage); +SQLITE_API int sqlite3_backup_finish(sqlite3_backup *p); +SQLITE_API int sqlite3_backup_remaining(sqlite3_backup *p); +SQLITE_API int sqlite3_backup_pagecount(sqlite3_backup *p); + +/* +** CAPI3REF: Unlock Notification +** +** ^When running in shared-cache mode, a database operation may fail with +** an [SQLITE_LOCKED] error if the required locks on the shared-cache or +** individual tables within the shared-cache cannot be obtained. See +** [SQLite Shared-Cache Mode] for a description of shared-cache locking. +** ^This API may be used to register a callback that SQLite will invoke +** when the connection currently holding the required lock relinquishes it. +** ^This API is only available if the library was compiled with the +** [SQLITE_ENABLE_UNLOCK_NOTIFY] C-preprocessor symbol defined. +** +** See Also: [Using the SQLite Unlock Notification Feature]. +** +** ^Shared-cache locks are released when a database connection concludes +** its current transaction, either by committing it or rolling it back. +** +** ^When a connection (known as the blocked connection) fails to obtain a +** shared-cache lock and SQLITE_LOCKED is returned to the caller, the +** identity of the database connection (the blocking connection) that +** has locked the required resource is stored internally. ^After an +** application receives an SQLITE_LOCKED error, it may call the +** sqlite3_unlock_notify() method with the blocked connection handle as +** the first argument to register for a callback that will be invoked +** when the blocking connections current transaction is concluded. ^The +** callback is invoked from within the [sqlite3_step] or [sqlite3_close] +** call that concludes the blocking connections transaction. +** +** ^(If sqlite3_unlock_notify() is called in a multi-threaded application, +** there is a chance that the blocking connection will have already +** concluded its transaction by the time sqlite3_unlock_notify() is invoked. +** If this happens, then the specified callback is invoked immediately, +** from within the call to sqlite3_unlock_notify().)^ +** +** ^If the blocked connection is attempting to obtain a write-lock on a +** shared-cache table, and more than one other connection currently holds +** a read-lock on the same table, then SQLite arbitrarily selects one of +** the other connections to use as the blocking connection. +** +** ^(There may be at most one unlock-notify callback registered by a +** blocked connection. If sqlite3_unlock_notify() is called when the +** blocked connection already has a registered unlock-notify callback, +** then the new callback replaces the old.)^ ^If sqlite3_unlock_notify() is +** called with a NULL pointer as its second argument, then any existing +** unlock-notify callback is canceled. ^The blocked connections +** unlock-notify callback may also be canceled by closing the blocked +** connection using [sqlite3_close()]. +** +** The unlock-notify callback is not reentrant. If an application invokes +** any sqlite3_xxx API functions from within an unlock-notify callback, a +** crash or deadlock may be the result. +** +** ^Unless deadlock is detected (see below), sqlite3_unlock_notify() always +** returns SQLITE_OK. +** +** Callback Invocation Details +** +** When an unlock-notify callback is registered, the application provides a +** single void* pointer that is passed to the callback when it is invoked. +** However, the signature of the callback function allows SQLite to pass +** it an array of void* context pointers. The first argument passed to +** an unlock-notify callback is a pointer to an array of void* pointers, +** and the second is the number of entries in the array. +** +** When a blocking connections transaction is concluded, there may be +** more than one blocked connection that has registered for an unlock-notify +** callback. ^If two or more such blocked connections have specified the +** same callback function, then instead of invoking the callback function +** multiple times, it is invoked once with the set of void* context pointers +** specified by the blocked connections bundled together into an array. +** This gives the application an opportunity to prioritize any actions +** related to the set of unblocked database connections. +** +** Deadlock Detection +** +** Assuming that after registering for an unlock-notify callback a +** database waits for the callback to be issued before taking any further +** action (a reasonable assumption), then using this API may cause the +** application to deadlock. For example, if connection X is waiting for +** connection Y's transaction to be concluded, and similarly connection +** Y is waiting on connection X's transaction, then neither connection +** will proceed and the system may remain deadlocked indefinitely. +** +** To avoid this scenario, the sqlite3_unlock_notify() performs deadlock +** detection. ^If a given call to sqlite3_unlock_notify() would put the +** system in a deadlocked state, then SQLITE_LOCKED is returned and no +** unlock-notify callback is registered. The system is said to be in +** a deadlocked state if connection A has registered for an unlock-notify +** callback on the conclusion of connection B's transaction, and connection +** B has itself registered for an unlock-notify callback when connection +** A's transaction is concluded. ^Indirect deadlock is also detected, so +** the system is also considered to be deadlocked if connection B has +** registered for an unlock-notify callback on the conclusion of connection +** C's transaction, where connection C is waiting on connection A. ^Any +** number of levels of indirection are allowed. +** +** The "DROP TABLE" Exception +** +** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost +** always appropriate to call sqlite3_unlock_notify(). There is however, +** one exception. When executing a "DROP TABLE" or "DROP INDEX" statement, +** SQLite checks if there are any currently executing SELECT statements +** that belong to the same connection. If there are, SQLITE_LOCKED is +** returned. In this case there is no "blocking connection", so invoking +** sqlite3_unlock_notify() results in the unlock-notify callback being +** invoked immediately. If the application then re-attempts the "DROP TABLE" +** or "DROP INDEX" query, an infinite loop might be the result. +** +** One way around this problem is to check the extended error code returned +** by an sqlite3_step() call. ^(If there is a blocking connection, then the +** extended error code is set to SQLITE_LOCKED_SHAREDCACHE. Otherwise, in +** the special "DROP TABLE/INDEX" case, the extended error code is just +** SQLITE_LOCKED.)^ +*/ +SQLITE_API int sqlite3_unlock_notify( + sqlite3 *pBlocked, /* Waiting connection */ + void (*xNotify)(void **apArg, int nArg), /* Callback function to invoke */ + void *pNotifyArg /* Argument to pass to xNotify */ +); + + +/* +** CAPI3REF: String Comparison +** +** ^The [sqlite3_stricmp()] and [sqlite3_strnicmp()] APIs allow applications +** and extensions to compare the contents of two buffers containing UTF-8 +** strings in a case-independent fashion, using the same definition of "case +** independence" that SQLite uses internally when comparing identifiers. +*/ +SQLITE_API int sqlite3_stricmp(const char *, const char *); +SQLITE_API int sqlite3_strnicmp(const char *, const char *, int); + +/* +** CAPI3REF: String Globbing +* +** ^The [sqlite3_strglob(P,X)] interface returns zero if string X matches +** the glob pattern P, and it returns non-zero if string X does not match +** the glob pattern P. ^The definition of glob pattern matching used in +** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the +** SQL dialect used by SQLite. ^The sqlite3_strglob(P,X) function is case +** sensitive. +** +** Note that this routine returns zero on a match and non-zero if the strings +** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()]. +*/ +SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr); + +/* +** CAPI3REF: Error Logging Interface +** +** ^The [sqlite3_log()] interface writes a message into the [error log] +** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()]. +** ^If logging is enabled, the zFormat string and subsequent arguments are +** used with [sqlite3_snprintf()] to generate the final output string. +** +** The sqlite3_log() interface is intended for use by extensions such as +** virtual tables, collating functions, and SQL functions. While there is +** nothing to prevent an application from calling sqlite3_log(), doing so +** is considered bad form. +** +** The zFormat string must not be NULL. +** +** To avoid deadlocks and other threading problems, the sqlite3_log() routine +** will not use dynamically allocated memory. The log message is stored in +** a fixed-length buffer on the stack. If the log message is longer than +** a few hundred characters, it will be truncated to the length of the +** buffer. +*/ +SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...); + +/* +** CAPI3REF: Write-Ahead Log Commit Hook +** +** ^The [sqlite3_wal_hook()] function is used to register a callback that +** will be invoked each time a database connection commits data to a +** [write-ahead log] (i.e. whenever a transaction is committed in +** [journal_mode | journal_mode=WAL mode]). +** +** ^The callback is invoked by SQLite after the commit has taken place and +** the associated write-lock on the database released, so the implementation +** may read, write or [checkpoint] the database as required. +** +** ^The first parameter passed to the callback function when it is invoked +** is a copy of the third parameter passed to sqlite3_wal_hook() when +** registering the callback. ^The second is a copy of the database handle. +** ^The third parameter is the name of the database that was written to - +** either "main" or the name of an [ATTACH]-ed database. ^The fourth parameter +** is the number of pages currently in the write-ahead log file, +** including those that were just committed. +** +** The callback function should normally return [SQLITE_OK]. ^If an error +** code is returned, that error will propagate back up through the +** SQLite code base to cause the statement that provoked the callback +** to report an error, though the commit will have still occurred. If the +** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value +** that does not correspond to any valid SQLite error code, the results +** are undefined. +** +** A single database handle may have at most a single write-ahead log callback +** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any +** previously registered write-ahead log callback. ^Note that the +** [sqlite3_wal_autocheckpoint()] interface and the +** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will +** those overwrite any prior [sqlite3_wal_hook()] settings. +*/ +SQLITE_API void *sqlite3_wal_hook( + sqlite3*, + int(*)(void *,sqlite3*,const char*,int), + void* +); + +/* +** CAPI3REF: Configure an auto-checkpoint +** +** ^The [sqlite3_wal_autocheckpoint(D,N)] is a wrapper around +** [sqlite3_wal_hook()] that causes any database on [database connection] D +** to automatically [checkpoint] +** after committing a transaction if there are N or +** more frames in the [write-ahead log] file. ^Passing zero or +** a negative value as the nFrame parameter disables automatic +** checkpoints entirely. +** +** ^The callback registered by this function replaces any existing callback +** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback +** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism +** configured by this function. +** +** ^The [wal_autocheckpoint pragma] can be used to invoke this interface +** from SQL. +** +** ^Every new [database connection] defaults to having the auto-checkpoint +** enabled with a threshold of 1000 or [SQLITE_DEFAULT_WAL_AUTOCHECKPOINT] +** pages. The use of this interface +** is only necessary if the default setting is found to be suboptimal +** for a particular application. +*/ +SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int N); + +/* +** CAPI3REF: Checkpoint a database +** +** ^The [sqlite3_wal_checkpoint(D,X)] interface causes database named X +** on [database connection] D to be [checkpointed]. ^If X is NULL or an +** empty string, then a checkpoint is run on all databases of +** connection D. ^If the database connection D is not in +** [WAL | write-ahead log mode] then this interface is a harmless no-op. +** +** ^The [wal_checkpoint pragma] can be used to invoke this interface +** from SQL. ^The [sqlite3_wal_autocheckpoint()] interface and the +** [wal_autocheckpoint pragma] can be used to cause this interface to be +** run whenever the WAL reaches a certain size threshold. +** +** See also: [sqlite3_wal_checkpoint_v2()] +*/ +SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb); + +/* +** CAPI3REF: Checkpoint a database +** +** Run a checkpoint operation on WAL database zDb attached to database +** handle db. The specific operation is determined by the value of the +** eMode parameter: +** +**
          +**
          SQLITE_CHECKPOINT_PASSIVE
          +** Checkpoint as many frames as possible without waiting for any database +** readers or writers to finish. Sync the db file if all frames in the log +** are checkpointed. This mode is the same as calling +** sqlite3_wal_checkpoint(). The busy-handler callback is never invoked. +** +**
          SQLITE_CHECKPOINT_FULL
          +** This mode blocks (calls the busy-handler callback) until there is no +** database writer and all readers are reading from the most recent database +** snapshot. It then checkpoints all frames in the log file and syncs the +** database file. This call blocks database writers while it is running, +** but not database readers. +** +**
          SQLITE_CHECKPOINT_RESTART
          +** This mode works the same way as SQLITE_CHECKPOINT_FULL, except after +** checkpointing the log file it blocks (calls the busy-handler callback) +** until all readers are reading from the database file only. This ensures +** that the next client to write to the database file restarts the log file +** from the beginning. This call blocks database writers while it is running, +** but not database readers. +**
          +** +** If pnLog is not NULL, then *pnLog is set to the total number of frames in +** the log file before returning. If pnCkpt is not NULL, then *pnCkpt is set to +** the total number of checkpointed frames (including any that were already +** checkpointed when this function is called). *pnLog and *pnCkpt may be +** populated even if sqlite3_wal_checkpoint_v2() returns other than SQLITE_OK. +** If no values are available because of an error, they are both set to -1 +** before returning to communicate this to the caller. +** +** All calls obtain an exclusive "checkpoint" lock on the database file. If +** any other process is running a checkpoint operation at the same time, the +** lock cannot be obtained and SQLITE_BUSY is returned. Even if there is a +** busy-handler configured, it will not be invoked in this case. +** +** The SQLITE_CHECKPOINT_FULL and RESTART modes also obtain the exclusive +** "writer" lock on the database file. If the writer lock cannot be obtained +** immediately, and a busy-handler is configured, it is invoked and the writer +** lock retried until either the busy-handler returns 0 or the lock is +** successfully obtained. The busy-handler is also invoked while waiting for +** database readers as described above. If the busy-handler returns 0 before +** the writer lock is obtained or while waiting for database readers, the +** checkpoint operation proceeds from that point in the same way as +** SQLITE_CHECKPOINT_PASSIVE - checkpointing as many frames as possible +** without blocking any further. SQLITE_BUSY is returned in this case. +** +** If parameter zDb is NULL or points to a zero length string, then the +** specified operation is attempted on all WAL databases. In this case the +** values written to output parameters *pnLog and *pnCkpt are undefined. If +** an SQLITE_BUSY error is encountered when processing one or more of the +** attached WAL databases, the operation is still attempted on any remaining +** attached databases and SQLITE_BUSY is returned to the caller. If any other +** error occurs while processing an attached database, processing is abandoned +** and the error code returned to the caller immediately. If no error +** (SQLITE_BUSY or otherwise) is encountered while processing the attached +** databases, SQLITE_OK is returned. +** +** If database zDb is the name of an attached database that is not in WAL +** mode, SQLITE_OK is returned and both *pnLog and *pnCkpt set to -1. If +** zDb is not NULL (or a zero length string) and is not the name of any +** attached database, SQLITE_ERROR is returned to the caller. +*/ +SQLITE_API int sqlite3_wal_checkpoint_v2( + sqlite3 *db, /* Database handle */ + const char *zDb, /* Name of attached database (or NULL) */ + int eMode, /* SQLITE_CHECKPOINT_* value */ + int *pnLog, /* OUT: Size of WAL log in frames */ + int *pnCkpt /* OUT: Total number of frames checkpointed */ +); + +/* +** CAPI3REF: Checkpoint operation parameters +** +** These constants can be used as the 3rd parameter to +** [sqlite3_wal_checkpoint_v2()]. See the [sqlite3_wal_checkpoint_v2()] +** documentation for additional information about the meaning and use of +** each of these values. +*/ +#define SQLITE_CHECKPOINT_PASSIVE 0 +#define SQLITE_CHECKPOINT_FULL 1 +#define SQLITE_CHECKPOINT_RESTART 2 + +/* +** CAPI3REF: Virtual Table Interface Configuration +** +** This function may be called by either the [xConnect] or [xCreate] method +** of a [virtual table] implementation to configure +** various facets of the virtual table interface. +** +** If this interface is invoked outside the context of an xConnect or +** xCreate virtual table method then the behavior is undefined. +** +** At present, there is only one option that may be configured using +** this function. (See [SQLITE_VTAB_CONSTRAINT_SUPPORT].) Further options +** may be added in the future. +*/ +SQLITE_API int sqlite3_vtab_config(sqlite3*, int op, ...); + +/* +** CAPI3REF: Virtual Table Configuration Options +** +** These macros define the various options to the +** [sqlite3_vtab_config()] interface that [virtual table] implementations +** can use to customize and optimize their behavior. +** +**
          +**
          SQLITE_VTAB_CONSTRAINT_SUPPORT +**
          Calls of the form +** [sqlite3_vtab_config](db,SQLITE_VTAB_CONSTRAINT_SUPPORT,X) are supported, +** where X is an integer. If X is zero, then the [virtual table] whose +** [xCreate] or [xConnect] method invoked [sqlite3_vtab_config()] does not +** support constraints. In this configuration (which is the default) if +** a call to the [xUpdate] method returns [SQLITE_CONSTRAINT], then the entire +** statement is rolled back as if [ON CONFLICT | OR ABORT] had been +** specified as part of the users SQL statement, regardless of the actual +** ON CONFLICT mode specified. +** +** If X is non-zero, then the virtual table implementation guarantees +** that if [xUpdate] returns [SQLITE_CONSTRAINT], it will do so before +** any modifications to internal or persistent data structures have been made. +** If the [ON CONFLICT] mode is ABORT, FAIL, IGNORE or ROLLBACK, SQLite +** is able to roll back a statement or database transaction, and abandon +** or continue processing the current SQL statement as appropriate. +** If the ON CONFLICT mode is REPLACE and the [xUpdate] method returns +** [SQLITE_CONSTRAINT], SQLite handles this as if the ON CONFLICT mode +** had been ABORT. +** +** Virtual table implementations that are required to handle OR REPLACE +** must do so within the [xUpdate] method. If a call to the +** [sqlite3_vtab_on_conflict()] function indicates that the current ON +** CONFLICT policy is REPLACE, the virtual table implementation should +** silently replace the appropriate rows within the xUpdate callback and +** return SQLITE_OK. Or, if this is not possible, it may return +** SQLITE_CONSTRAINT, in which case SQLite falls back to OR ABORT +** constraint handling. +**
          +*/ +#define SQLITE_VTAB_CONSTRAINT_SUPPORT 1 + +/* +** CAPI3REF: Determine The Virtual Table Conflict Policy +** +** This function may only be called from within a call to the [xUpdate] method +** of a [virtual table] implementation for an INSERT or UPDATE operation. ^The +** value returned is one of [SQLITE_ROLLBACK], [SQLITE_IGNORE], [SQLITE_FAIL], +** [SQLITE_ABORT], or [SQLITE_REPLACE], according to the [ON CONFLICT] mode +** of the SQL statement that triggered the call to the [xUpdate] method of the +** [virtual table]. +*/ +SQLITE_API int sqlite3_vtab_on_conflict(sqlite3 *); + +/* +** CAPI3REF: Conflict resolution modes +** +** These constants are returned by [sqlite3_vtab_on_conflict()] to +** inform a [virtual table] implementation what the [ON CONFLICT] mode +** is for the SQL statement being evaluated. +** +** Note that the [SQLITE_IGNORE] constant is also used as a potential +** return value from the [sqlite3_set_authorizer()] callback and that +** [SQLITE_ABORT] is also a [result code]. +*/ +#define SQLITE_ROLLBACK 1 +/* #define SQLITE_IGNORE 2 // Also used by sqlite3_authorizer() callback */ +#define SQLITE_FAIL 3 +/* #define SQLITE_ABORT 4 // Also an error code */ +#define SQLITE_REPLACE 5 + + + +/* +** Undo the hack that converts floating point types to integer for +** builds on processors without floating point support. +*/ +#ifdef SQLITE_OMIT_FLOATING_POINT +# undef double +#endif + +#ifdef __cplusplus +} /* End of the 'extern "C"' block */ +#endif +#endif /* _SQLITE3_H_ */ + +/* +** 2010 August 30 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +*/ + +#ifndef _SQLITE3RTREE_H_ +#define _SQLITE3RTREE_H_ + + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct sqlite3_rtree_geometry sqlite3_rtree_geometry; +typedef struct sqlite3_rtree_query_info sqlite3_rtree_query_info; + +/* The double-precision datatype used by RTree depends on the +** SQLITE_RTREE_INT_ONLY compile-time option. +*/ +#ifdef SQLITE_RTREE_INT_ONLY + typedef sqlite3_int64 sqlite3_rtree_dbl; +#else + typedef double sqlite3_rtree_dbl; +#endif + +/* +** Register a geometry callback named zGeom that can be used as part of an +** R-Tree geometry query as follows: +** +** SELECT ... FROM WHERE MATCH $zGeom(... params ...) +*/ +SQLITE_API int sqlite3_rtree_geometry_callback( + sqlite3 *db, + const char *zGeom, + int (*xGeom)(sqlite3_rtree_geometry*, int, sqlite3_rtree_dbl*,int*), + void *pContext +); + + +/* +** A pointer to a structure of the following type is passed as the first +** argument to callbacks registered using rtree_geometry_callback(). +*/ +struct sqlite3_rtree_geometry { + void *pContext; /* Copy of pContext passed to s_r_g_c() */ + int nParam; /* Size of array aParam[] */ + sqlite3_rtree_dbl *aParam; /* Parameters passed to SQL geom function */ + void *pUser; /* Callback implementation user data */ + void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */ +}; + +/* +** Register a 2nd-generation geometry callback named zScore that can be +** used as part of an R-Tree geometry query as follows: +** +** SELECT ... FROM WHERE MATCH $zQueryFunc(... params ...) +*/ +SQLITE_API int sqlite3_rtree_query_callback( + sqlite3 *db, + const char *zQueryFunc, + int (*xQueryFunc)(sqlite3_rtree_query_info*), + void *pContext, + void (*xDestructor)(void*) +); + + +/* +** A pointer to a structure of the following type is passed as the +** argument to scored geometry callback registered using +** sqlite3_rtree_query_callback(). +** +** Note that the first 5 fields of this structure are identical to +** sqlite3_rtree_geometry. This structure is a subclass of +** sqlite3_rtree_geometry. +*/ +struct sqlite3_rtree_query_info { + void *pContext; /* pContext from when function registered */ + int nParam; /* Number of function parameters */ + sqlite3_rtree_dbl *aParam; /* value of function parameters */ + void *pUser; /* callback can use this, if desired */ + void (*xDelUser)(void*); /* function to free pUser */ + sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */ + unsigned int *anQueue; /* Number of pending entries in the queue */ + int nCoord; /* Number of coordinates */ + int iLevel; /* Level of current node or entry */ + int mxLevel; /* The largest iLevel value in the tree */ + sqlite3_int64 iRowid; /* Rowid for current entry */ + sqlite3_rtree_dbl rParentScore; /* Score of parent node */ + int eParentWithin; /* Visibility of parent node */ + int eWithin; /* OUT: Visiblity */ + sqlite3_rtree_dbl rScore; /* OUT: Write the score here */ +}; + +/* +** Allowed values for sqlite3_rtree_query.eWithin and .eParentWithin. +*/ +#define NOT_WITHIN 0 /* Object completely outside of query region */ +#define PARTLY_WITHIN 1 /* Object partially overlaps query region */ +#define FULLY_WITHIN 2 /* Object fully contained within query region */ + + +#ifdef __cplusplus +} /* end of the 'extern "C"' block */ +#endif + +#endif /* ifndef _SQLITE3RTREE_H_ */ + diff --git a/ThirdParty/sqlite3/sqlite3ext.h b/ThirdParty/sqlite3/sqlite3ext.h new file mode 100644 index 0000000..ecf93f6 --- /dev/null +++ b/ThirdParty/sqlite3/sqlite3ext.h @@ -0,0 +1,487 @@ +/* +** 2006 June 7 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** This header file defines the SQLite interface for use by +** shared libraries that want to be imported as extensions into +** an SQLite instance. Shared libraries that intend to be loaded +** as extensions by SQLite should #include this file instead of +** sqlite3.h. +*/ +#ifndef _SQLITE3EXT_H_ +#define _SQLITE3EXT_H_ +#include "sqlite3.h" + +typedef struct sqlite3_api_routines sqlite3_api_routines; + +/* +** The following structure holds pointers to all of the SQLite API +** routines. +** +** WARNING: In order to maintain backwards compatibility, add new +** interfaces to the end of this structure only. If you insert new +** interfaces in the middle of this structure, then older different +** versions of SQLite will not be able to load each others' shared +** libraries! +*/ +struct sqlite3_api_routines { + void * (*aggregate_context)(sqlite3_context*,int nBytes); + int (*aggregate_count)(sqlite3_context*); + int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*)); + int (*bind_double)(sqlite3_stmt*,int,double); + int (*bind_int)(sqlite3_stmt*,int,int); + int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64); + int (*bind_null)(sqlite3_stmt*,int); + int (*bind_parameter_count)(sqlite3_stmt*); + int (*bind_parameter_index)(sqlite3_stmt*,const char*zName); + const char * (*bind_parameter_name)(sqlite3_stmt*,int); + int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*)); + int (*bind_text16)(sqlite3_stmt*,int,const void*,int,void(*)(void*)); + int (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*); + int (*busy_handler)(sqlite3*,int(*)(void*,int),void*); + int (*busy_timeout)(sqlite3*,int ms); + int (*changes)(sqlite3*); + int (*close)(sqlite3*); + int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*, + int eTextRep,const char*)); + int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*, + int eTextRep,const void*)); + const void * (*column_blob)(sqlite3_stmt*,int iCol); + int (*column_bytes)(sqlite3_stmt*,int iCol); + int (*column_bytes16)(sqlite3_stmt*,int iCol); + int (*column_count)(sqlite3_stmt*pStmt); + const char * (*column_database_name)(sqlite3_stmt*,int); + const void * (*column_database_name16)(sqlite3_stmt*,int); + const char * (*column_decltype)(sqlite3_stmt*,int i); + const void * (*column_decltype16)(sqlite3_stmt*,int); + double (*column_double)(sqlite3_stmt*,int iCol); + int (*column_int)(sqlite3_stmt*,int iCol); + sqlite_int64 (*column_int64)(sqlite3_stmt*,int iCol); + const char * (*column_name)(sqlite3_stmt*,int); + const void * (*column_name16)(sqlite3_stmt*,int); + const char * (*column_origin_name)(sqlite3_stmt*,int); + const void * (*column_origin_name16)(sqlite3_stmt*,int); + const char * (*column_table_name)(sqlite3_stmt*,int); + const void * (*column_table_name16)(sqlite3_stmt*,int); + const unsigned char * (*column_text)(sqlite3_stmt*,int iCol); + const void * (*column_text16)(sqlite3_stmt*,int iCol); + int (*column_type)(sqlite3_stmt*,int iCol); + sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol); + void * (*commit_hook)(sqlite3*,int(*)(void*),void*); + int (*complete)(const char*sql); + int (*complete16)(const void*sql); + int (*create_collation)(sqlite3*,const char*,int,void*, + int(*)(void*,int,const void*,int,const void*)); + int (*create_collation16)(sqlite3*,const void*,int,void*, + int(*)(void*,int,const void*,int,const void*)); + int (*create_function)(sqlite3*,const char*,int,int,void*, + void (*xFunc)(sqlite3_context*,int,sqlite3_value**), + void (*xStep)(sqlite3_context*,int,sqlite3_value**), + void (*xFinal)(sqlite3_context*)); + int (*create_function16)(sqlite3*,const void*,int,int,void*, + void (*xFunc)(sqlite3_context*,int,sqlite3_value**), + void (*xStep)(sqlite3_context*,int,sqlite3_value**), + void (*xFinal)(sqlite3_context*)); + int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*); + int (*data_count)(sqlite3_stmt*pStmt); + sqlite3 * (*db_handle)(sqlite3_stmt*); + int (*declare_vtab)(sqlite3*,const char*); + int (*enable_shared_cache)(int); + int (*errcode)(sqlite3*db); + const char * (*errmsg)(sqlite3*); + const void * (*errmsg16)(sqlite3*); + int (*exec)(sqlite3*,const char*,sqlite3_callback,void*,char**); + int (*expired)(sqlite3_stmt*); + int (*finalize)(sqlite3_stmt*pStmt); + void (*free)(void*); + void (*free_table)(char**result); + int (*get_autocommit)(sqlite3*); + void * (*get_auxdata)(sqlite3_context*,int); + int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**); + int (*global_recover)(void); + void (*interruptx)(sqlite3*); + sqlite_int64 (*last_insert_rowid)(sqlite3*); + const char * (*libversion)(void); + int (*libversion_number)(void); + void *(*malloc)(int); + char * (*mprintf)(const char*,...); + int (*open)(const char*,sqlite3**); + int (*open16)(const void*,sqlite3**); + int (*prepare)(sqlite3*,const char*,int,sqlite3_stmt**,const char**); + int (*prepare16)(sqlite3*,const void*,int,sqlite3_stmt**,const void**); + void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*); + void (*progress_handler)(sqlite3*,int,int(*)(void*),void*); + void *(*realloc)(void*,int); + int (*reset)(sqlite3_stmt*pStmt); + void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*)); + void (*result_double)(sqlite3_context*,double); + void (*result_error)(sqlite3_context*,const char*,int); + void (*result_error16)(sqlite3_context*,const void*,int); + void (*result_int)(sqlite3_context*,int); + void (*result_int64)(sqlite3_context*,sqlite_int64); + void (*result_null)(sqlite3_context*); + void (*result_text)(sqlite3_context*,const char*,int,void(*)(void*)); + void (*result_text16)(sqlite3_context*,const void*,int,void(*)(void*)); + void (*result_text16be)(sqlite3_context*,const void*,int,void(*)(void*)); + void (*result_text16le)(sqlite3_context*,const void*,int,void(*)(void*)); + void (*result_value)(sqlite3_context*,sqlite3_value*); + void * (*rollback_hook)(sqlite3*,void(*)(void*),void*); + int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*, + const char*,const char*),void*); + void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*)); + char * (*snprintf)(int,char*,const char*,...); + int (*step)(sqlite3_stmt*); + int (*table_column_metadata)(sqlite3*,const char*,const char*,const char*, + char const**,char const**,int*,int*,int*); + void (*thread_cleanup)(void); + int (*total_changes)(sqlite3*); + void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*); + int (*transfer_bindings)(sqlite3_stmt*,sqlite3_stmt*); + void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*, + sqlite_int64),void*); + void * (*user_data)(sqlite3_context*); + const void * (*value_blob)(sqlite3_value*); + int (*value_bytes)(sqlite3_value*); + int (*value_bytes16)(sqlite3_value*); + double (*value_double)(sqlite3_value*); + int (*value_int)(sqlite3_value*); + sqlite_int64 (*value_int64)(sqlite3_value*); + int (*value_numeric_type)(sqlite3_value*); + const unsigned char * (*value_text)(sqlite3_value*); + const void * (*value_text16)(sqlite3_value*); + const void * (*value_text16be)(sqlite3_value*); + const void * (*value_text16le)(sqlite3_value*); + int (*value_type)(sqlite3_value*); + char *(*vmprintf)(const char*,va_list); + /* Added ??? */ + int (*overload_function)(sqlite3*, const char *zFuncName, int nArg); + /* Added by 3.3.13 */ + int (*prepare_v2)(sqlite3*,const char*,int,sqlite3_stmt**,const char**); + int (*prepare16_v2)(sqlite3*,const void*,int,sqlite3_stmt**,const void**); + int (*clear_bindings)(sqlite3_stmt*); + /* Added by 3.4.1 */ + int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*, + void (*xDestroy)(void *)); + /* Added by 3.5.0 */ + int (*bind_zeroblob)(sqlite3_stmt*,int,int); + int (*blob_bytes)(sqlite3_blob*); + int (*blob_close)(sqlite3_blob*); + int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64, + int,sqlite3_blob**); + int (*blob_read)(sqlite3_blob*,void*,int,int); + int (*blob_write)(sqlite3_blob*,const void*,int,int); + int (*create_collation_v2)(sqlite3*,const char*,int,void*, + int(*)(void*,int,const void*,int,const void*), + void(*)(void*)); + int (*file_control)(sqlite3*,const char*,int,void*); + sqlite3_int64 (*memory_highwater)(int); + sqlite3_int64 (*memory_used)(void); + sqlite3_mutex *(*mutex_alloc)(int); + void (*mutex_enter)(sqlite3_mutex*); + void (*mutex_free)(sqlite3_mutex*); + void (*mutex_leave)(sqlite3_mutex*); + int (*mutex_try)(sqlite3_mutex*); + int (*open_v2)(const char*,sqlite3**,int,const char*); + int (*release_memory)(int); + void (*result_error_nomem)(sqlite3_context*); + void (*result_error_toobig)(sqlite3_context*); + int (*sleep)(int); + void (*soft_heap_limit)(int); + sqlite3_vfs *(*vfs_find)(const char*); + int (*vfs_register)(sqlite3_vfs*,int); + int (*vfs_unregister)(sqlite3_vfs*); + int (*xthreadsafe)(void); + void (*result_zeroblob)(sqlite3_context*,int); + void (*result_error_code)(sqlite3_context*,int); + int (*test_control)(int, ...); + void (*randomness)(int,void*); + sqlite3 *(*context_db_handle)(sqlite3_context*); + int (*extended_result_codes)(sqlite3*,int); + int (*limit)(sqlite3*,int,int); + sqlite3_stmt *(*next_stmt)(sqlite3*,sqlite3_stmt*); + const char *(*sql)(sqlite3_stmt*); + int (*status)(int,int*,int*,int); + int (*backup_finish)(sqlite3_backup*); + sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*); + int (*backup_pagecount)(sqlite3_backup*); + int (*backup_remaining)(sqlite3_backup*); + int (*backup_step)(sqlite3_backup*,int); + const char *(*compileoption_get)(int); + int (*compileoption_used)(const char*); + int (*create_function_v2)(sqlite3*,const char*,int,int,void*, + void (*xFunc)(sqlite3_context*,int,sqlite3_value**), + void (*xStep)(sqlite3_context*,int,sqlite3_value**), + void (*xFinal)(sqlite3_context*), + void(*xDestroy)(void*)); + int (*db_config)(sqlite3*,int,...); + sqlite3_mutex *(*db_mutex)(sqlite3*); + int (*db_status)(sqlite3*,int,int*,int*,int); + int (*extended_errcode)(sqlite3*); + void (*log)(int,const char*,...); + sqlite3_int64 (*soft_heap_limit64)(sqlite3_int64); + const char *(*sourceid)(void); + int (*stmt_status)(sqlite3_stmt*,int,int); + int (*strnicmp)(const char*,const char*,int); + int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*); + int (*wal_autocheckpoint)(sqlite3*,int); + int (*wal_checkpoint)(sqlite3*,const char*); + void *(*wal_hook)(sqlite3*,int(*)(void*,sqlite3*,const char*,int),void*); + int (*blob_reopen)(sqlite3_blob*,sqlite3_int64); + int (*vtab_config)(sqlite3*,int op,...); + int (*vtab_on_conflict)(sqlite3*); + /* Version 3.7.16 and later */ + int (*close_v2)(sqlite3*); + const char *(*db_filename)(sqlite3*,const char*); + int (*db_readonly)(sqlite3*,const char*); + int (*db_release_memory)(sqlite3*); + const char *(*errstr)(int); + int (*stmt_busy)(sqlite3_stmt*); + int (*stmt_readonly)(sqlite3_stmt*); + int (*stricmp)(const char*,const char*); + int (*uri_boolean)(const char*,const char*,int); + sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64); + const char *(*uri_parameter)(const char*,const char*); + char *(*vsnprintf)(int,char*,const char*,va_list); + int (*wal_checkpoint_v2)(sqlite3*,const char*,int,int*,int*); +}; + +/* +** The following macros redefine the API routines so that they are +** redirected throught the global sqlite3_api structure. +** +** This header file is also used by the loadext.c source file +** (part of the main SQLite library - not an extension) so that +** it can get access to the sqlite3_api_routines structure +** definition. But the main library does not want to redefine +** the API. So the redefinition macros are only valid if the +** SQLITE_CORE macros is undefined. +*/ +#ifndef SQLITE_CORE +#define sqlite3_aggregate_context sqlite3_api->aggregate_context +#ifndef SQLITE_OMIT_DEPRECATED +#define sqlite3_aggregate_count sqlite3_api->aggregate_count +#endif +#define sqlite3_bind_blob sqlite3_api->bind_blob +#define sqlite3_bind_double sqlite3_api->bind_double +#define sqlite3_bind_int sqlite3_api->bind_int +#define sqlite3_bind_int64 sqlite3_api->bind_int64 +#define sqlite3_bind_null sqlite3_api->bind_null +#define sqlite3_bind_parameter_count sqlite3_api->bind_parameter_count +#define sqlite3_bind_parameter_index sqlite3_api->bind_parameter_index +#define sqlite3_bind_parameter_name sqlite3_api->bind_parameter_name +#define sqlite3_bind_text sqlite3_api->bind_text +#define sqlite3_bind_text16 sqlite3_api->bind_text16 +#define sqlite3_bind_value sqlite3_api->bind_value +#define sqlite3_busy_handler sqlite3_api->busy_handler +#define sqlite3_busy_timeout sqlite3_api->busy_timeout +#define sqlite3_changes sqlite3_api->changes +#define sqlite3_close sqlite3_api->close +#define sqlite3_collation_needed sqlite3_api->collation_needed +#define sqlite3_collation_needed16 sqlite3_api->collation_needed16 +#define sqlite3_column_blob sqlite3_api->column_blob +#define sqlite3_column_bytes sqlite3_api->column_bytes +#define sqlite3_column_bytes16 sqlite3_api->column_bytes16 +#define sqlite3_column_count sqlite3_api->column_count +#define sqlite3_column_database_name sqlite3_api->column_database_name +#define sqlite3_column_database_name16 sqlite3_api->column_database_name16 +#define sqlite3_column_decltype sqlite3_api->column_decltype +#define sqlite3_column_decltype16 sqlite3_api->column_decltype16 +#define sqlite3_column_double sqlite3_api->column_double +#define sqlite3_column_int sqlite3_api->column_int +#define sqlite3_column_int64 sqlite3_api->column_int64 +#define sqlite3_column_name sqlite3_api->column_name +#define sqlite3_column_name16 sqlite3_api->column_name16 +#define sqlite3_column_origin_name sqlite3_api->column_origin_name +#define sqlite3_column_origin_name16 sqlite3_api->column_origin_name16 +#define sqlite3_column_table_name sqlite3_api->column_table_name +#define sqlite3_column_table_name16 sqlite3_api->column_table_name16 +#define sqlite3_column_text sqlite3_api->column_text +#define sqlite3_column_text16 sqlite3_api->column_text16 +#define sqlite3_column_type sqlite3_api->column_type +#define sqlite3_column_value sqlite3_api->column_value +#define sqlite3_commit_hook sqlite3_api->commit_hook +#define sqlite3_complete sqlite3_api->complete +#define sqlite3_complete16 sqlite3_api->complete16 +#define sqlite3_create_collation sqlite3_api->create_collation +#define sqlite3_create_collation16 sqlite3_api->create_collation16 +#define sqlite3_create_function sqlite3_api->create_function +#define sqlite3_create_function16 sqlite3_api->create_function16 +#define sqlite3_create_module sqlite3_api->create_module +#define sqlite3_create_module_v2 sqlite3_api->create_module_v2 +#define sqlite3_data_count sqlite3_api->data_count +#define sqlite3_db_handle sqlite3_api->db_handle +#define sqlite3_declare_vtab sqlite3_api->declare_vtab +#define sqlite3_enable_shared_cache sqlite3_api->enable_shared_cache +#define sqlite3_errcode sqlite3_api->errcode +#define sqlite3_errmsg sqlite3_api->errmsg +#define sqlite3_errmsg16 sqlite3_api->errmsg16 +#define sqlite3_exec sqlite3_api->exec +#ifndef SQLITE_OMIT_DEPRECATED +#define sqlite3_expired sqlite3_api->expired +#endif +#define sqlite3_finalize sqlite3_api->finalize +#define sqlite3_free sqlite3_api->free +#define sqlite3_free_table sqlite3_api->free_table +#define sqlite3_get_autocommit sqlite3_api->get_autocommit +#define sqlite3_get_auxdata sqlite3_api->get_auxdata +#define sqlite3_get_table sqlite3_api->get_table +#ifndef SQLITE_OMIT_DEPRECATED +#define sqlite3_global_recover sqlite3_api->global_recover +#endif +#define sqlite3_interrupt sqlite3_api->interruptx +#define sqlite3_last_insert_rowid sqlite3_api->last_insert_rowid +#define sqlite3_libversion sqlite3_api->libversion +#define sqlite3_libversion_number sqlite3_api->libversion_number +#define sqlite3_malloc sqlite3_api->malloc +#define sqlite3_mprintf sqlite3_api->mprintf +#define sqlite3_open sqlite3_api->open +#define sqlite3_open16 sqlite3_api->open16 +#define sqlite3_prepare sqlite3_api->prepare +#define sqlite3_prepare16 sqlite3_api->prepare16 +#define sqlite3_prepare_v2 sqlite3_api->prepare_v2 +#define sqlite3_prepare16_v2 sqlite3_api->prepare16_v2 +#define sqlite3_profile sqlite3_api->profile +#define sqlite3_progress_handler sqlite3_api->progress_handler +#define sqlite3_realloc sqlite3_api->realloc +#define sqlite3_reset sqlite3_api->reset +#define sqlite3_result_blob sqlite3_api->result_blob +#define sqlite3_result_double sqlite3_api->result_double +#define sqlite3_result_error sqlite3_api->result_error +#define sqlite3_result_error16 sqlite3_api->result_error16 +#define sqlite3_result_int sqlite3_api->result_int +#define sqlite3_result_int64 sqlite3_api->result_int64 +#define sqlite3_result_null sqlite3_api->result_null +#define sqlite3_result_text sqlite3_api->result_text +#define sqlite3_result_text16 sqlite3_api->result_text16 +#define sqlite3_result_text16be sqlite3_api->result_text16be +#define sqlite3_result_text16le sqlite3_api->result_text16le +#define sqlite3_result_value sqlite3_api->result_value +#define sqlite3_rollback_hook sqlite3_api->rollback_hook +#define sqlite3_set_authorizer sqlite3_api->set_authorizer +#define sqlite3_set_auxdata sqlite3_api->set_auxdata +#define sqlite3_snprintf sqlite3_api->snprintf +#define sqlite3_step sqlite3_api->step +#define sqlite3_table_column_metadata sqlite3_api->table_column_metadata +#define sqlite3_thread_cleanup sqlite3_api->thread_cleanup +#define sqlite3_total_changes sqlite3_api->total_changes +#define sqlite3_trace sqlite3_api->trace +#ifndef SQLITE_OMIT_DEPRECATED +#define sqlite3_transfer_bindings sqlite3_api->transfer_bindings +#endif +#define sqlite3_update_hook sqlite3_api->update_hook +#define sqlite3_user_data sqlite3_api->user_data +#define sqlite3_value_blob sqlite3_api->value_blob +#define sqlite3_value_bytes sqlite3_api->value_bytes +#define sqlite3_value_bytes16 sqlite3_api->value_bytes16 +#define sqlite3_value_double sqlite3_api->value_double +#define sqlite3_value_int sqlite3_api->value_int +#define sqlite3_value_int64 sqlite3_api->value_int64 +#define sqlite3_value_numeric_type sqlite3_api->value_numeric_type +#define sqlite3_value_text sqlite3_api->value_text +#define sqlite3_value_text16 sqlite3_api->value_text16 +#define sqlite3_value_text16be sqlite3_api->value_text16be +#define sqlite3_value_text16le sqlite3_api->value_text16le +#define sqlite3_value_type sqlite3_api->value_type +#define sqlite3_vmprintf sqlite3_api->vmprintf +#define sqlite3_overload_function sqlite3_api->overload_function +#define sqlite3_prepare_v2 sqlite3_api->prepare_v2 +#define sqlite3_prepare16_v2 sqlite3_api->prepare16_v2 +#define sqlite3_clear_bindings sqlite3_api->clear_bindings +#define sqlite3_bind_zeroblob sqlite3_api->bind_zeroblob +#define sqlite3_blob_bytes sqlite3_api->blob_bytes +#define sqlite3_blob_close sqlite3_api->blob_close +#define sqlite3_blob_open sqlite3_api->blob_open +#define sqlite3_blob_read sqlite3_api->blob_read +#define sqlite3_blob_write sqlite3_api->blob_write +#define sqlite3_create_collation_v2 sqlite3_api->create_collation_v2 +#define sqlite3_file_control sqlite3_api->file_control +#define sqlite3_memory_highwater sqlite3_api->memory_highwater +#define sqlite3_memory_used sqlite3_api->memory_used +#define sqlite3_mutex_alloc sqlite3_api->mutex_alloc +#define sqlite3_mutex_enter sqlite3_api->mutex_enter +#define sqlite3_mutex_free sqlite3_api->mutex_free +#define sqlite3_mutex_leave sqlite3_api->mutex_leave +#define sqlite3_mutex_try sqlite3_api->mutex_try +#define sqlite3_open_v2 sqlite3_api->open_v2 +#define sqlite3_release_memory sqlite3_api->release_memory +#define sqlite3_result_error_nomem sqlite3_api->result_error_nomem +#define sqlite3_result_error_toobig sqlite3_api->result_error_toobig +#define sqlite3_sleep sqlite3_api->sleep +#define sqlite3_soft_heap_limit sqlite3_api->soft_heap_limit +#define sqlite3_vfs_find sqlite3_api->vfs_find +#define sqlite3_vfs_register sqlite3_api->vfs_register +#define sqlite3_vfs_unregister sqlite3_api->vfs_unregister +#define sqlite3_threadsafe sqlite3_api->xthreadsafe +#define sqlite3_result_zeroblob sqlite3_api->result_zeroblob +#define sqlite3_result_error_code sqlite3_api->result_error_code +#define sqlite3_test_control sqlite3_api->test_control +#define sqlite3_randomness sqlite3_api->randomness +#define sqlite3_context_db_handle sqlite3_api->context_db_handle +#define sqlite3_extended_result_codes sqlite3_api->extended_result_codes +#define sqlite3_limit sqlite3_api->limit +#define sqlite3_next_stmt sqlite3_api->next_stmt +#define sqlite3_sql sqlite3_api->sql +#define sqlite3_status sqlite3_api->status +#define sqlite3_backup_finish sqlite3_api->backup_finish +#define sqlite3_backup_init sqlite3_api->backup_init +#define sqlite3_backup_pagecount sqlite3_api->backup_pagecount +#define sqlite3_backup_remaining sqlite3_api->backup_remaining +#define sqlite3_backup_step sqlite3_api->backup_step +#define sqlite3_compileoption_get sqlite3_api->compileoption_get +#define sqlite3_compileoption_used sqlite3_api->compileoption_used +#define sqlite3_create_function_v2 sqlite3_api->create_function_v2 +#define sqlite3_db_config sqlite3_api->db_config +#define sqlite3_db_mutex sqlite3_api->db_mutex +#define sqlite3_db_status sqlite3_api->db_status +#define sqlite3_extended_errcode sqlite3_api->extended_errcode +#define sqlite3_log sqlite3_api->log +#define sqlite3_soft_heap_limit64 sqlite3_api->soft_heap_limit64 +#define sqlite3_sourceid sqlite3_api->sourceid +#define sqlite3_stmt_status sqlite3_api->stmt_status +#define sqlite3_strnicmp sqlite3_api->strnicmp +#define sqlite3_unlock_notify sqlite3_api->unlock_notify +#define sqlite3_wal_autocheckpoint sqlite3_api->wal_autocheckpoint +#define sqlite3_wal_checkpoint sqlite3_api->wal_checkpoint +#define sqlite3_wal_hook sqlite3_api->wal_hook +#define sqlite3_blob_reopen sqlite3_api->blob_reopen +#define sqlite3_vtab_config sqlite3_api->vtab_config +#define sqlite3_vtab_on_conflict sqlite3_api->vtab_on_conflict +/* Version 3.7.16 and later */ +#define sqlite3_close_v2 sqlite3_api->close_v2 +#define sqlite3_db_filename sqlite3_api->db_filename +#define sqlite3_db_readonly sqlite3_api->db_readonly +#define sqlite3_db_release_memory sqlite3_api->db_release_memory +#define sqlite3_errstr sqlite3_api->errstr +#define sqlite3_stmt_busy sqlite3_api->stmt_busy +#define sqlite3_stmt_readonly sqlite3_api->stmt_readonly +#define sqlite3_stricmp sqlite3_api->stricmp +#define sqlite3_uri_boolean sqlite3_api->uri_boolean +#define sqlite3_uri_int64 sqlite3_api->uri_int64 +#define sqlite3_uri_parameter sqlite3_api->uri_parameter +#define sqlite3_uri_vsnprintf sqlite3_api->vsnprintf +#define sqlite3_wal_checkpoint_v2 sqlite3_api->wal_checkpoint_v2 +#endif /* SQLITE_CORE */ + +#ifndef SQLITE_CORE + /* This case when the file really is being compiled as a loadable + ** extension */ +# define SQLITE_EXTENSION_INIT1 const sqlite3_api_routines *sqlite3_api=0; +# define SQLITE_EXTENSION_INIT2(v) sqlite3_api=v; +# define SQLITE_EXTENSION_INIT3 \ + extern const sqlite3_api_routines *sqlite3_api; +#else + /* This case when the file is being statically linked into the + ** application */ +# define SQLITE_EXTENSION_INIT1 /*no-op*/ +# define SQLITE_EXTENSION_INIT2(v) (void)v; /* unused parameter */ +# define SQLITE_EXTENSION_INIT3 /*no-op*/ +#endif + +#endif /* _SQLITE3EXT_H_ */ diff --git a/ThirdParty/zlib128-dll/DLL_FAQ.txt b/ThirdParty/zlib128-dll/DLL_FAQ.txt new file mode 100644 index 0000000..12c0090 --- /dev/null +++ b/ThirdParty/zlib128-dll/DLL_FAQ.txt @@ -0,0 +1,397 @@ + + Frequently Asked Questions about ZLIB1.DLL + + +This document describes the design, the rationale, and the usage +of the official DLL build of zlib, named ZLIB1.DLL. If you have +general questions about zlib, you should see the file "FAQ" found +in the zlib distribution, or at the following location: + http://www.gzip.org/zlib/zlib_faq.html + + + 1. What is ZLIB1.DLL, and how can I get it? + + - ZLIB1.DLL is the official build of zlib as a DLL. + (Please remark the character '1' in the name.) + + Pointers to a precompiled ZLIB1.DLL can be found in the zlib + web site at: + http://www.zlib.net/ + + Applications that link to ZLIB1.DLL can rely on the following + specification: + + * The exported symbols are exclusively defined in the source + files "zlib.h" and "zlib.def", found in an official zlib + source distribution. + * The symbols are exported by name, not by ordinal. + * The exported names are undecorated. + * The calling convention of functions is "C" (CDECL). + * The ZLIB1.DLL binary is linked to MSVCRT.DLL. + + The archive in which ZLIB1.DLL is bundled contains compiled + test programs that must run with a valid build of ZLIB1.DLL. + It is recommended to download the prebuilt DLL from the zlib + web site, instead of building it yourself, to avoid potential + incompatibilities that could be introduced by your compiler + and build settings. If you do build the DLL yourself, please + make sure that it complies with all the above requirements, + and it runs with the precompiled test programs, bundled with + the original ZLIB1.DLL distribution. + + If, for any reason, you need to build an incompatible DLL, + please use a different file name. + + + 2. Why did you change the name of the DLL to ZLIB1.DLL? + What happened to the old ZLIB.DLL? + + - The old ZLIB.DLL, built from zlib-1.1.4 or earlier, required + compilation settings that were incompatible to those used by + a static build. The DLL settings were supposed to be enabled + by defining the macro ZLIB_DLL, before including "zlib.h". + Incorrect handling of this macro was silently accepted at + build time, resulting in two major problems: + + * ZLIB_DLL was missing from the old makefile. When building + the DLL, not all people added it to the build options. In + consequence, incompatible incarnations of ZLIB.DLL started + to circulate around the net. + + * When switching from using the static library to using the + DLL, applications had to define the ZLIB_DLL macro and + to recompile all the sources that contained calls to zlib + functions. Failure to do so resulted in creating binaries + that were unable to run with the official ZLIB.DLL build. + + The only possible solution that we could foresee was to make + a binary-incompatible change in the DLL interface, in order to + remove the dependency on the ZLIB_DLL macro, and to release + the new DLL under a different name. + + We chose the name ZLIB1.DLL, where '1' indicates the major + zlib version number. We hope that we will not have to break + the binary compatibility again, at least not as long as the + zlib-1.x series will last. + + There is still a ZLIB_DLL macro, that can trigger a more + efficient build and use of the DLL, but compatibility no + longer dependents on it. + + + 3. Can I build ZLIB.DLL from the new zlib sources, and replace + an old ZLIB.DLL, that was built from zlib-1.1.4 or earlier? + + - In principle, you can do it by assigning calling convention + keywords to the macros ZEXPORT and ZEXPORTVA. In practice, + it depends on what you mean by "an old ZLIB.DLL", because the + old DLL exists in several mutually-incompatible versions. + You have to find out first what kind of calling convention is + being used in your particular ZLIB.DLL build, and to use the + same one in the new build. If you don't know what this is all + about, you might be better off if you would just leave the old + DLL intact. + + + 4. Can I compile my application using the new zlib interface, and + link it to an old ZLIB.DLL, that was built from zlib-1.1.4 or + earlier? + + - The official answer is "no"; the real answer depends again on + what kind of ZLIB.DLL you have. Even if you are lucky, this + course of action is unreliable. + + If you rebuild your application and you intend to use a newer + version of zlib (post- 1.1.4), it is strongly recommended to + link it to the new ZLIB1.DLL. + + + 5. Why are the zlib symbols exported by name, and not by ordinal? + + - Although exporting symbols by ordinal is a little faster, it + is risky. Any single glitch in the maintenance or use of the + DEF file that contains the ordinals can result in incompatible + builds and frustrating crashes. Simply put, the benefits of + exporting symbols by ordinal do not justify the risks. + + Technically, it should be possible to maintain ordinals in + the DEF file, and still export the symbols by name. Ordinals + exist in every DLL, and even if the dynamic linking performed + at the DLL startup is searching for names, ordinals serve as + hints, for a faster name lookup. However, if the DEF file + contains ordinals, the Microsoft linker automatically builds + an implib that will cause the executables linked to it to use + those ordinals, and not the names. It is interesting to + notice that the GNU linker for Win32 does not suffer from this + problem. + + It is possible to avoid the DEF file if the exported symbols + are accompanied by a "__declspec(dllexport)" attribute in the + source files. You can do this in zlib by predefining the + ZLIB_DLL macro. + + + 6. I see that the ZLIB1.DLL functions use the "C" (CDECL) calling + convention. Why not use the STDCALL convention? + STDCALL is the standard convention in Win32, and I need it in + my Visual Basic project! + + (For readability, we use CDECL to refer to the convention + triggered by the "__cdecl" keyword, STDCALL to refer to + the convention triggered by "__stdcall", and FASTCALL to + refer to the convention triggered by "__fastcall".) + + - Most of the native Windows API functions (without varargs) use + indeed the WINAPI convention (which translates to STDCALL in + Win32), but the standard C functions use CDECL. If a user + application is intrinsically tied to the Windows API (e.g. + it calls native Windows API functions such as CreateFile()), + sometimes it makes sense to decorate its own functions with + WINAPI. But if ANSI C or POSIX portability is a goal (e.g. + it calls standard C functions such as fopen()), it is not a + sound decision to request the inclusion of , or to + use non-ANSI constructs, for the sole purpose to make the user + functions STDCALL-able. + + The functionality offered by zlib is not in the category of + "Windows functionality", but is more like "C functionality". + + Technically, STDCALL is not bad; in fact, it is slightly + faster than CDECL, and it works with variable-argument + functions, just like CDECL. It is unfortunate that, in spite + of using STDCALL in the Windows API, it is not the default + convention used by the C compilers that run under Windows. + The roots of the problem reside deep inside the unsafety of + the K&R-style function prototypes, where the argument types + are not specified; but that is another story for another day. + + The remaining fact is that CDECL is the default convention. + Even if an explicit convention is hard-coded into the function + prototypes inside C headers, problems may appear. The + necessity to expose the convention in users' callbacks is one + of these problems. + + The calling convention issues are also important when using + zlib in other programming languages. Some of them, like Ada + (GNAT) and Fortran (GNU G77), have C bindings implemented + initially on Unix, and relying on the C calling convention. + On the other hand, the pre- .NET versions of Microsoft Visual + Basic require STDCALL, while Borland Delphi prefers, although + it does not require, FASTCALL. + + In fairness to all possible uses of zlib outside the C + programming language, we choose the default "C" convention. + Anyone interested in different bindings or conventions is + encouraged to maintain specialized projects. The "contrib/" + directory from the zlib distribution already holds a couple + of foreign bindings, such as Ada, C++, and Delphi. + + + 7. I need a DLL for my Visual Basic project. What can I do? + + - Define the ZLIB_WINAPI macro before including "zlib.h", when + building both the DLL and the user application (except that + you don't need to define anything when using the DLL in Visual + Basic). The ZLIB_WINAPI macro will switch on the WINAPI + (STDCALL) convention. The name of this DLL must be different + than the official ZLIB1.DLL. + + Gilles Vollant has contributed a build named ZLIBWAPI.DLL, + with the ZLIB_WINAPI macro turned on, and with the minizip + functionality built in. For more information, please read + the notes inside "contrib/vstudio/readme.txt", found in the + zlib distribution. + + + 8. I need to use zlib in my Microsoft .NET project. What can I + do? + + - Henrik Ravn has contributed a .NET wrapper around zlib. Look + into contrib/dotzlib/, inside the zlib distribution. + + + 9. If my application uses ZLIB1.DLL, should I link it to + MSVCRT.DLL? Why? + + - It is not required, but it is recommended to link your + application to MSVCRT.DLL, if it uses ZLIB1.DLL. + + The executables (.EXE, .DLL, etc.) that are involved in the + same process and are using the C run-time library (i.e. they + are calling standard C functions), must link to the same + library. There are several libraries in the Win32 system: + CRTDLL.DLL, MSVCRT.DLL, the static C libraries, etc. + Since ZLIB1.DLL is linked to MSVCRT.DLL, the executables that + depend on it should also be linked to MSVCRT.DLL. + + +10. Why are you saying that ZLIB1.DLL and my application should + be linked to the same C run-time (CRT) library? I linked my + application and my DLLs to different C libraries (e.g. my + application to a static library, and my DLLs to MSVCRT.DLL), + and everything works fine. + + - If a user library invokes only pure Win32 API (accessible via + and the related headers), its DLL build will work + in any context. But if this library invokes standard C API, + things get more complicated. + + There is a single Win32 library in a Win32 system. Every + function in this library resides in a single DLL module, that + is safe to call from anywhere. On the other hand, there are + multiple versions of the C library, and each of them has its + own separate internal state. Standalone executables and user + DLLs that call standard C functions must link to a C run-time + (CRT) library, be it static or shared (DLL). Intermixing + occurs when an executable (not necessarily standalone) and a + DLL are linked to different CRTs, and both are running in the + same process. + + Intermixing multiple CRTs is possible, as long as their + internal states are kept intact. The Microsoft Knowledge Base + articles KB94248 "HOWTO: Use the C Run-Time" and KB140584 + "HOWTO: Link with the Correct C Run-Time (CRT) Library" + mention the potential problems raised by intermixing. + + If intermixing works for you, it's because your application + and DLLs are avoiding the corruption of each of the CRTs' + internal states, maybe by careful design, or maybe by fortune. + + Also note that linking ZLIB1.DLL to non-Microsoft CRTs, such + as those provided by Borland, raises similar problems. + + +11. Why are you linking ZLIB1.DLL to MSVCRT.DLL? + + - MSVCRT.DLL exists on every Windows 95 with a new service pack + installed, or with Microsoft Internet Explorer 4 or later, and + on all other Windows 4.x or later (Windows 98, Windows NT 4, + or later). It is freely distributable; if not present in the + system, it can be downloaded from Microsoft or from other + software provider for free. + + The fact that MSVCRT.DLL does not exist on a virgin Windows 95 + is not so problematic. Windows 95 is scarcely found nowadays, + Microsoft ended its support a long time ago, and many recent + applications from various vendors, including Microsoft, do not + even run on it. Furthermore, no serious user should run + Windows 95 without a proper update installed. + + +12. Why are you not linking ZLIB1.DLL to + <> ? + + - We considered and abandoned the following alternatives: + + * Linking ZLIB1.DLL to a static C library (LIBC.LIB, or + LIBCMT.LIB) is not a good option. People are using the DLL + mainly to save disk space. If you are linking your program + to a static C library, you may as well consider linking zlib + in statically, too. + + * Linking ZLIB1.DLL to CRTDLL.DLL looks appealing, because + CRTDLL.DLL is present on every Win32 installation. + Unfortunately, it has a series of problems: it does not + work properly with Microsoft's C++ libraries, it does not + provide support for 64-bit file offsets, (and so on...), + and Microsoft discontinued its support a long time ago. + + * Linking ZLIB1.DLL to MSVCR70.DLL or MSVCR71.DLL, supplied + with the Microsoft .NET platform, and Visual C++ 7.0/7.1, + raises problems related to the status of ZLIB1.DLL as a + system component. According to the Microsoft Knowledge Base + article KB326922 "INFO: Redistribution of the Shared C + Runtime Component in Visual C++ .NET", MSVCR70.DLL and + MSVCR71.DLL are not supposed to function as system DLLs, + because they may clash with MSVCRT.DLL. Instead, the + application's installer is supposed to put these DLLs + (if needed) in the application's private directory. + If ZLIB1.DLL depends on a non-system runtime, it cannot + function as a redistributable system component. + + * Linking ZLIB1.DLL to non-Microsoft runtimes, such as + Borland's, or Cygwin's, raises problems related to the + reliable presence of these runtimes on Win32 systems. + It's easier to let the DLL build of zlib up to the people + who distribute these runtimes, and who may proceed as + explained in the answer to Question 14. + + +13. If ZLIB1.DLL cannot be linked to MSVCR70.DLL or MSVCR71.DLL, + how can I build/use ZLIB1.DLL in Microsoft Visual C++ 7.0 + (Visual Studio .NET) or newer? + + - Due to the problems explained in the Microsoft Knowledge Base + article KB326922 (see the previous answer), the C runtime that + comes with the VC7 environment is no longer considered a + system component. That is, it should not be assumed that this + runtime exists, or may be installed in a system directory. + Since ZLIB1.DLL is supposed to be a system component, it may + not depend on a non-system component. + + In order to link ZLIB1.DLL and your application to MSVCRT.DLL + in VC7, you need the library of Visual C++ 6.0 or older. If + you don't have this library at hand, it's probably best not to + use ZLIB1.DLL. + + We are hoping that, in the future, Microsoft will provide a + way to build applications linked to a proper system runtime, + from the Visual C++ environment. Until then, you have a + couple of alternatives, such as linking zlib in statically. + If your application requires dynamic linking, you may proceed + as explained in the answer to Question 14. + + +14. I need to link my own DLL build to a CRT different than + MSVCRT.DLL. What can I do? + + - Feel free to rebuild the DLL from the zlib sources, and link + it the way you want. You should, however, clearly state that + your build is unofficial. You should give it a different file + name, and/or install it in a private directory that can be + accessed by your application only, and is not visible to the + others (i.e. it's neither in the PATH, nor in the SYSTEM or + SYSTEM32 directories). Otherwise, your build may clash with + applications that link to the official build. + + For example, in Cygwin, zlib is linked to the Cygwin runtime + CYGWIN1.DLL, and it is distributed under the name CYGZ.DLL. + + +15. May I include additional pieces of code that I find useful, + link them in ZLIB1.DLL, and export them? + + - No. A legitimate build of ZLIB1.DLL must not include code + that does not originate from the official zlib source code. + But you can make your own private DLL build, under a different + file name, as suggested in the previous answer. + + For example, zlib is a part of the VCL library, distributed + with Borland Delphi and C++ Builder. The DLL build of VCL + is a redistributable file, named VCLxx.DLL. + + +16. May I remove some functionality out of ZLIB1.DLL, by enabling + macros like NO_GZCOMPRESS or NO_GZIP at compile time? + + - No. A legitimate build of ZLIB1.DLL must provide the complete + zlib functionality, as implemented in the official zlib source + code. But you can make your own private DLL build, under a + different file name, as suggested in the previous answer. + + +17. I made my own ZLIB1.DLL build. Can I test it for compliance? + + - We prefer that you download the official DLL from the zlib + web site. If you need something peculiar from this DLL, you + can send your suggestion to the zlib mailing list. + + However, in case you do rebuild the DLL yourself, you can run + it with the test programs found in the DLL distribution. + Running these test programs is not a guarantee of compliance, + but a failure can imply a detected problem. + +** + +This document is written and maintained by +Cosmin Truta diff --git a/ThirdParty/zlib128-dll/README.txt b/ThirdParty/zlib128-dll/README.txt new file mode 100644 index 0000000..34a13b3 --- /dev/null +++ b/ThirdParty/zlib128-dll/README.txt @@ -0,0 +1,60 @@ + +What's here +=========== + The official ZLIB1.DLL + + +Source +====== + zlib version 1.2.8 + available at http://www.gzip.org/zlib/ + + +Specification and rationale +=========================== + See the accompanying DLL_FAQ.txt + + +Usage +===== + See the accompanying USAGE.txt + + +Build info +========== + Contributed by Jan Nijtmans. + + Compiler: + i686-w64-mingw32-gcc (GCC) 4.5.3 + Library: + mingw64-i686-runtime/headers: 3.0b_svn5747-1 + Build commands: + i686-w64-mingw32-gcc -c -DASMV contrib/asm686/match.S + i686-w64-mingw32-gcc -c -DASMINF -I. -O3 contrib/inflate86/inffas86.c + make -f win32/Makefile.gcc PREFIX=i686-w64-mingw32- LOC="-mms-bitfields -DASMV -DASMINF" OBJA="inffas86.o match.o" + Finally, from VS commandline (VS2005 or higher): + lib -machine:X86 -name:zlib1.dll -def:zlib.def -out:zdll.lib + +Copyright notice +================ + Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + diff --git a/ThirdParty/zlib128-dll/USAGE.txt b/ThirdParty/zlib128-dll/USAGE.txt new file mode 100644 index 0000000..48e594e --- /dev/null +++ b/ThirdParty/zlib128-dll/USAGE.txt @@ -0,0 +1,89 @@ + +Installing ZLIB1.DLL +==================== + Copy ZLIB1.DLL to the SYSTEM or the SYSTEM32 directory. + + +Using ZLIB1.DLL with Microsoft Visual C++ +========================================= + 1. Install the supplied header files "zlib.h" and "zconf.h" + into a directory found in the INCLUDE path list. + + 2. Install the supplied library file "zdll.lib" into a + directory found in the LIB path list. + + 3. Add "zdll.lib" to your project. + + +Using ZLIB1.DLL with gcc/MinGW +============================== + 1. Install the supplied header files "zlib.h" and "zconf.h" + into the INCLUDE directory. + + 2. Copy the supplied library file "zdll.lib" to "libzdll.a": + cp lib/zdll.lib lib/libzdll.a + + OR + + 2' Build the import library from the supplied "zlib.def": + dlltool -D zlib1.dll -d lib/zlib.def -l lib/libzdll.a + + 3. Install "libzdll.a" into the LIB directory. + + 4. Add "libzdll.a" to your project, or use the -lzdll option. + + +Using ZLIB1.DLL with gcc/Cygwin +=============================== + ZLIB1.DLL is not designed to work with Cygwin. The Cygwin + system has its own DLL build of zlib, named CYGZ.DLL. + + +Using ZLIB1.DLL with Borland C++ +================================ + 1. Install the supplied header files "zlib.h" and "zconf.h" + into a directory found in the INCLUDE path list. + + 2. Build the import library using the IMPLIB tool: + implib -a -c -f lib\zdllbor.lib zlib1.dll + + OR + + 2' Convert the supplied library file "zdll.lib" to OMF format, + using the COFF2OMF tool: + coff2omf lib\zdll.lib lib\zdllbor.lib + + 3. Install "zdllbor.lib" into a directory found in the LIB path + list. + + 4. Add "zdllbor.lib" to your project. + + Notes: + - The modules that are linked with "zdllbor.lib" must be compiled + using a 4-byte alignment (option -a): + bcc32 -a -c myprog.c + bcc32 myprog.obj zdllbor.lib + - If you wish, you may use "zlib1.lib" instead of "zdllbor.lib". + + +Rebuilding ZLIB1.DLL +==================== + Depending on your build environment, use the appropriate + makefile from the win32/ directory, found in the zlib source + distribution. + + Your custom build has to comply with the requirements stated + in DLL_FAQ.txt, including (but not limited to) the following: + - It must be built from an unaltered zlib source distribution. + - It must be linked to MSVCRT.DLL. + - The macros that compile out certain portions of the zlib + code (such as NO_GZCOMPRESS, NO_GZIP) must not be enabled. + - The ZLIB_WINAPI macro must not be enabled. + + Furthermore, it has to run successfully with the test suite + found in this package. + + It is recommended, however, to use the supplied ZLIB1.DLL, + instead of rebuilding it yourself. You should rebuild it + only if you have a special reason. + diff --git a/ThirdParty/zlib128-dll/include/zconf.h b/ThirdParty/zlib128-dll/include/zconf.h new file mode 100644 index 0000000..9987a77 --- /dev/null +++ b/ThirdParty/zlib128-dll/include/zconf.h @@ -0,0 +1,511 @@ +/* zconf.h -- configuration of the zlib compression library + * Copyright (C) 1995-2013 Jean-loup Gailly. + * For conditions of distribution and use, see copyright notice in zlib.h + */ + +/* @(#) $Id$ */ + +#ifndef ZCONF_H +#define ZCONF_H + +/* + * If you *really* need a unique prefix for all types and library functions, + * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. + * Even better than compiling with -DZ_PREFIX would be to use configure to set + * this permanently in zconf.h using "./configure --zprefix". + */ +#ifdef Z_PREFIX /* may be set to #if 1 by ./configure */ +# define Z_PREFIX_SET + +/* all linked symbols */ +# define _dist_code z__dist_code +# define _length_code z__length_code +# define _tr_align z__tr_align +# define _tr_flush_bits z__tr_flush_bits +# define _tr_flush_block z__tr_flush_block +# define _tr_init z__tr_init +# define _tr_stored_block z__tr_stored_block +# define _tr_tally z__tr_tally +# define adler32 z_adler32 +# define adler32_combine z_adler32_combine +# define adler32_combine64 z_adler32_combine64 +# ifndef Z_SOLO +# define compress z_compress +# define compress2 z_compress2 +# define compressBound z_compressBound +# endif +# define crc32 z_crc32 +# define crc32_combine z_crc32_combine +# define crc32_combine64 z_crc32_combine64 +# define deflate z_deflate +# define deflateBound z_deflateBound +# define deflateCopy z_deflateCopy +# define deflateEnd z_deflateEnd +# define deflateInit2_ z_deflateInit2_ +# define deflateInit_ z_deflateInit_ +# define deflateParams z_deflateParams +# define deflatePending z_deflatePending +# define deflatePrime z_deflatePrime +# define deflateReset z_deflateReset +# define deflateResetKeep z_deflateResetKeep +# define deflateSetDictionary z_deflateSetDictionary +# define deflateSetHeader z_deflateSetHeader +# define deflateTune z_deflateTune +# define deflate_copyright z_deflate_copyright +# define get_crc_table z_get_crc_table +# ifndef Z_SOLO +# define gz_error z_gz_error +# define gz_intmax z_gz_intmax +# define gz_strwinerror z_gz_strwinerror +# define gzbuffer z_gzbuffer +# define gzclearerr z_gzclearerr +# define gzclose z_gzclose +# define gzclose_r z_gzclose_r +# define gzclose_w z_gzclose_w +# define gzdirect z_gzdirect +# define gzdopen z_gzdopen +# define gzeof z_gzeof +# define gzerror z_gzerror +# define gzflush z_gzflush +# define gzgetc z_gzgetc +# define gzgetc_ z_gzgetc_ +# define gzgets z_gzgets +# define gzoffset z_gzoffset +# define gzoffset64 z_gzoffset64 +# define gzopen z_gzopen +# define gzopen64 z_gzopen64 +# ifdef _WIN32 +# define gzopen_w z_gzopen_w +# endif +# define gzprintf z_gzprintf +# define gzvprintf z_gzvprintf +# define gzputc z_gzputc +# define gzputs z_gzputs +# define gzread z_gzread +# define gzrewind z_gzrewind +# define gzseek z_gzseek +# define gzseek64 z_gzseek64 +# define gzsetparams z_gzsetparams +# define gztell z_gztell +# define gztell64 z_gztell64 +# define gzungetc z_gzungetc +# define gzwrite z_gzwrite +# endif +# define inflate z_inflate +# define inflateBack z_inflateBack +# define inflateBackEnd z_inflateBackEnd +# define inflateBackInit_ z_inflateBackInit_ +# define inflateCopy z_inflateCopy +# define inflateEnd z_inflateEnd +# define inflateGetHeader z_inflateGetHeader +# define inflateInit2_ z_inflateInit2_ +# define inflateInit_ z_inflateInit_ +# define inflateMark z_inflateMark +# define inflatePrime z_inflatePrime +# define inflateReset z_inflateReset +# define inflateReset2 z_inflateReset2 +# define inflateSetDictionary z_inflateSetDictionary +# define inflateGetDictionary z_inflateGetDictionary +# define inflateSync z_inflateSync +# define inflateSyncPoint z_inflateSyncPoint +# define inflateUndermine z_inflateUndermine +# define inflateResetKeep z_inflateResetKeep +# define inflate_copyright z_inflate_copyright +# define inflate_fast z_inflate_fast +# define inflate_table z_inflate_table +# ifndef Z_SOLO +# define uncompress z_uncompress +# endif +# define zError z_zError +# ifndef Z_SOLO +# define zcalloc z_zcalloc +# define zcfree z_zcfree +# endif +# define zlibCompileFlags z_zlibCompileFlags +# define zlibVersion z_zlibVersion + +/* all zlib typedefs in zlib.h and zconf.h */ +# define Byte z_Byte +# define Bytef z_Bytef +# define alloc_func z_alloc_func +# define charf z_charf +# define free_func z_free_func +# ifndef Z_SOLO +# define gzFile z_gzFile +# endif +# define gz_header z_gz_header +# define gz_headerp z_gz_headerp +# define in_func z_in_func +# define intf z_intf +# define out_func z_out_func +# define uInt z_uInt +# define uIntf z_uIntf +# define uLong z_uLong +# define uLongf z_uLongf +# define voidp z_voidp +# define voidpc z_voidpc +# define voidpf z_voidpf + +/* all zlib structs in zlib.h and zconf.h */ +# define gz_header_s z_gz_header_s +# define internal_state z_internal_state + +#endif + +#if defined(__MSDOS__) && !defined(MSDOS) +# define MSDOS +#endif +#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2) +# define OS2 +#endif +#if defined(_WINDOWS) && !defined(WINDOWS) +# define WINDOWS +#endif +#if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__) +# ifndef WIN32 +# define WIN32 +# endif +#endif +#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32) +# if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__) +# ifndef SYS16BIT +# define SYS16BIT +# endif +# endif +#endif + +/* + * Compile with -DMAXSEG_64K if the alloc function cannot allocate more + * than 64k bytes at a time (needed on systems with 16-bit int). + */ +#ifdef SYS16BIT +# define MAXSEG_64K +#endif +#ifdef MSDOS +# define UNALIGNED_OK +#endif + +#ifdef __STDC_VERSION__ +# ifndef STDC +# define STDC +# endif +# if __STDC_VERSION__ >= 199901L +# ifndef STDC99 +# define STDC99 +# endif +# endif +#endif +#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus)) +# define STDC +#endif +#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__)) +# define STDC +#endif +#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32)) +# define STDC +#endif +#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__)) +# define STDC +#endif + +#if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */ +# define STDC +#endif + +#ifndef STDC +# ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */ +# define const /* note: need a more gentle solution here */ +# endif +#endif + +#if defined(ZLIB_CONST) && !defined(z_const) +# define z_const const +#else +# define z_const +#endif + +/* Some Mac compilers merge all .h files incorrectly: */ +#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__) +# define NO_DUMMY_DECL +#endif + +/* Maximum value for memLevel in deflateInit2 */ +#ifndef MAX_MEM_LEVEL +# ifdef MAXSEG_64K +# define MAX_MEM_LEVEL 8 +# else +# define MAX_MEM_LEVEL 9 +# endif +#endif + +/* Maximum value for windowBits in deflateInit2 and inflateInit2. + * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files + * created by gzip. (Files created by minigzip can still be extracted by + * gzip.) + */ +#ifndef MAX_WBITS +# define MAX_WBITS 15 /* 32K LZ77 window */ +#endif + +/* The memory requirements for deflate are (in bytes): + (1 << (windowBits+2)) + (1 << (memLevel+9)) + that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) + plus a few kilobytes for small objects. For example, if you want to reduce + the default memory requirements from 256K to 128K, compile with + make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7" + Of course this will generally degrade compression (there's no free lunch). + + The memory requirements for inflate are (in bytes) 1 << windowBits + that is, 32K for windowBits=15 (default value) plus a few kilobytes + for small objects. +*/ + + /* Type declarations */ + +#ifndef OF /* function prototypes */ +# ifdef STDC +# define OF(args) args +# else +# define OF(args) () +# endif +#endif + +#ifndef Z_ARG /* function prototypes for stdarg */ +# if defined(STDC) || defined(Z_HAVE_STDARG_H) +# define Z_ARG(args) args +# else +# define Z_ARG(args) () +# endif +#endif + +/* The following definitions for FAR are needed only for MSDOS mixed + * model programming (small or medium model with some far allocations). + * This was tested only with MSC; for other MSDOS compilers you may have + * to define NO_MEMCPY in zutil.h. If you don't need the mixed model, + * just define FAR to be empty. + */ +#ifdef SYS16BIT +# if defined(M_I86SM) || defined(M_I86MM) + /* MSC small or medium model */ +# define SMALL_MEDIUM +# ifdef _MSC_VER +# define FAR _far +# else +# define FAR far +# endif +# endif +# if (defined(__SMALL__) || defined(__MEDIUM__)) + /* Turbo C small or medium model */ +# define SMALL_MEDIUM +# ifdef __BORLANDC__ +# define FAR _far +# else +# define FAR far +# endif +# endif +#endif + +#if defined(WINDOWS) || defined(WIN32) + /* If building or using zlib as a DLL, define ZLIB_DLL. + * This is not mandatory, but it offers a little performance increase. + */ +# ifdef ZLIB_DLL +# if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500)) +# ifdef ZLIB_INTERNAL +# define ZEXTERN extern __declspec(dllexport) +# else +# define ZEXTERN extern __declspec(dllimport) +# endif +# endif +# endif /* ZLIB_DLL */ + /* If building or using zlib with the WINAPI/WINAPIV calling convention, + * define ZLIB_WINAPI. + * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI. + */ +# ifdef ZLIB_WINAPI +# ifdef FAR +# undef FAR +# endif +# include + /* No need for _export, use ZLIB.DEF instead. */ + /* For complete Windows compatibility, use WINAPI, not __stdcall. */ +# define ZEXPORT WINAPI +# ifdef WIN32 +# define ZEXPORTVA WINAPIV +# else +# define ZEXPORTVA FAR CDECL +# endif +# endif +#endif + +#if defined (__BEOS__) +# ifdef ZLIB_DLL +# ifdef ZLIB_INTERNAL +# define ZEXPORT __declspec(dllexport) +# define ZEXPORTVA __declspec(dllexport) +# else +# define ZEXPORT __declspec(dllimport) +# define ZEXPORTVA __declspec(dllimport) +# endif +# endif +#endif + +#ifndef ZEXTERN +# define ZEXTERN extern +#endif +#ifndef ZEXPORT +# define ZEXPORT +#endif +#ifndef ZEXPORTVA +# define ZEXPORTVA +#endif + +#ifndef FAR +# define FAR +#endif + +#if !defined(__MACTYPES__) +typedef unsigned char Byte; /* 8 bits */ +#endif +typedef unsigned int uInt; /* 16 bits or more */ +typedef unsigned long uLong; /* 32 bits or more */ + +#ifdef SMALL_MEDIUM + /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */ +# define Bytef Byte FAR +#else + typedef Byte FAR Bytef; +#endif +typedef char FAR charf; +typedef int FAR intf; +typedef uInt FAR uIntf; +typedef uLong FAR uLongf; + +#ifdef STDC + typedef void const *voidpc; + typedef void FAR *voidpf; + typedef void *voidp; +#else + typedef Byte const *voidpc; + typedef Byte FAR *voidpf; + typedef Byte *voidp; +#endif + +#if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC) +# include +# if (UINT_MAX == 0xffffffffUL) +# define Z_U4 unsigned +# elif (ULONG_MAX == 0xffffffffUL) +# define Z_U4 unsigned long +# elif (USHRT_MAX == 0xffffffffUL) +# define Z_U4 unsigned short +# endif +#endif + +#ifdef Z_U4 + typedef Z_U4 z_crc_t; +#else + typedef unsigned long z_crc_t; +#endif + +#ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */ +# define Z_HAVE_UNISTD_H +#endif + +#ifdef HAVE_STDARG_H /* may be set to #if 1 by ./configure */ +# define Z_HAVE_STDARG_H +#endif + +#ifdef STDC +# ifndef Z_SOLO +# include /* for off_t */ +# endif +#endif + +#if defined(STDC) || defined(Z_HAVE_STDARG_H) +# ifndef Z_SOLO +# include /* for va_list */ +# endif +#endif + +#ifdef _WIN32 +# ifndef Z_SOLO +# include /* for wchar_t */ +# endif +#endif + +/* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and + * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even + * though the former does not conform to the LFS document), but considering + * both "#undef _LARGEFILE64_SOURCE" and "#define _LARGEFILE64_SOURCE 0" as + * equivalently requesting no 64-bit operations + */ +#if defined(_LARGEFILE64_SOURCE) && -_LARGEFILE64_SOURCE - -1 == 1 +# undef _LARGEFILE64_SOURCE +#endif + +#if defined(__WATCOMC__) && !defined(Z_HAVE_UNISTD_H) +# define Z_HAVE_UNISTD_H +#endif +#ifndef Z_SOLO +# if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE) +# include /* for SEEK_*, off_t, and _LFS64_LARGEFILE */ +# ifdef VMS +# include /* for off_t */ +# endif +# ifndef z_off_t +# define z_off_t off_t +# endif +# endif +#endif + +#if defined(_LFS64_LARGEFILE) && _LFS64_LARGEFILE-0 +# define Z_LFS64 +#endif + +#if defined(_LARGEFILE64_SOURCE) && defined(Z_LFS64) +# define Z_LARGE64 +#endif + +#if defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS-0 == 64 && defined(Z_LFS64) +# define Z_WANT64 +#endif + +#if !defined(SEEK_SET) && !defined(Z_SOLO) +# define SEEK_SET 0 /* Seek from beginning of file. */ +# define SEEK_CUR 1 /* Seek from current position. */ +# define SEEK_END 2 /* Set file pointer to EOF plus "offset" */ +#endif + +#ifndef z_off_t +# define z_off_t long +#endif + +#if !defined(_WIN32) && defined(Z_LARGE64) +# define z_off64_t off64_t +#else +# if defined(_WIN32) && !defined(__GNUC__) && !defined(Z_SOLO) +# define z_off64_t __int64 +# else +# define z_off64_t z_off_t +# endif +#endif + +/* MVS linker does not support external names larger than 8 bytes */ +#if defined(__MVS__) + #pragma map(deflateInit_,"DEIN") + #pragma map(deflateInit2_,"DEIN2") + #pragma map(deflateEnd,"DEEND") + #pragma map(deflateBound,"DEBND") + #pragma map(inflateInit_,"ININ") + #pragma map(inflateInit2_,"ININ2") + #pragma map(inflateEnd,"INEND") + #pragma map(inflateSync,"INSY") + #pragma map(inflateSetDictionary,"INSEDI") + #pragma map(compressBound,"CMBND") + #pragma map(inflate_table,"INTABL") + #pragma map(inflate_fast,"INFA") + #pragma map(inflate_copyright,"INCOPY") +#endif + +#endif /* ZCONF_H */ diff --git a/ThirdParty/zlib128-dll/include/zlib.h b/ThirdParty/zlib128-dll/include/zlib.h new file mode 100644 index 0000000..3e0c767 --- /dev/null +++ b/ThirdParty/zlib128-dll/include/zlib.h @@ -0,0 +1,1768 @@ +/* zlib.h -- interface of the 'zlib' general purpose compression library + version 1.2.8, April 28th, 2013 + + Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + + + The data format used by the zlib library is described by RFCs (Request for + Comments) 1950 to 1952 in the files http://tools.ietf.org/html/rfc1950 + (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format). +*/ + +#ifndef ZLIB_H +#define ZLIB_H + +#include "zconf.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#define ZLIB_VERSION "1.2.8" +#define ZLIB_VERNUM 0x1280 +#define ZLIB_VER_MAJOR 1 +#define ZLIB_VER_MINOR 2 +#define ZLIB_VER_REVISION 8 +#define ZLIB_VER_SUBREVISION 0 + +/* + The 'zlib' compression library provides in-memory compression and + decompression functions, including integrity checks of the uncompressed data. + This version of the library supports only one compression method (deflation) + but other algorithms will be added later and will have the same stream + interface. + + Compression can be done in a single step if the buffers are large enough, + or can be done by repeated calls of the compression function. In the latter + case, the application must provide more input and/or consume the output + (providing more output space) before each call. + + The compressed data format used by default by the in-memory functions is + the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped + around a deflate stream, which is itself documented in RFC 1951. + + The library also supports reading and writing files in gzip (.gz) format + with an interface similar to that of stdio using the functions that start + with "gz". The gzip format is different from the zlib format. gzip is a + gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. + + This library can optionally read and write gzip streams in memory as well. + + The zlib format was designed to be compact and fast for use in memory + and on communications channels. The gzip format was designed for single- + file compression on file systems, has a larger header than zlib to maintain + directory information, and uses a different, slower check method than zlib. + + The library does not install any signal handler. The decoder checks + the consistency of the compressed data, so the library should never crash + even in case of corrupted input. +*/ + +typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); +typedef void (*free_func) OF((voidpf opaque, voidpf address)); + +struct internal_state; + +typedef struct z_stream_s { + z_const Bytef *next_in; /* next input byte */ + uInt avail_in; /* number of bytes available at next_in */ + uLong total_in; /* total number of input bytes read so far */ + + Bytef *next_out; /* next output byte should be put there */ + uInt avail_out; /* remaining free space at next_out */ + uLong total_out; /* total number of bytes output so far */ + + z_const char *msg; /* last error message, NULL if no error */ + struct internal_state FAR *state; /* not visible by applications */ + + alloc_func zalloc; /* used to allocate the internal state */ + free_func zfree; /* used to free the internal state */ + voidpf opaque; /* private data object passed to zalloc and zfree */ + + int data_type; /* best guess about the data type: binary or text */ + uLong adler; /* adler32 value of the uncompressed data */ + uLong reserved; /* reserved for future use */ +} z_stream; + +typedef z_stream FAR *z_streamp; + +/* + gzip header information passed to and from zlib routines. See RFC 1952 + for more details on the meanings of these fields. +*/ +typedef struct gz_header_s { + int text; /* true if compressed data believed to be text */ + uLong time; /* modification time */ + int xflags; /* extra flags (not used when writing a gzip file) */ + int os; /* operating system */ + Bytef *extra; /* pointer to extra field or Z_NULL if none */ + uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ + uInt extra_max; /* space at extra (only when reading header) */ + Bytef *name; /* pointer to zero-terminated file name or Z_NULL */ + uInt name_max; /* space at name (only when reading header) */ + Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ + uInt comm_max; /* space at comment (only when reading header) */ + int hcrc; /* true if there was or will be a header crc */ + int done; /* true when done reading gzip header (not used + when writing a gzip file) */ +} gz_header; + +typedef gz_header FAR *gz_headerp; + +/* + The application must update next_in and avail_in when avail_in has dropped + to zero. It must update next_out and avail_out when avail_out has dropped + to zero. The application must initialize zalloc, zfree and opaque before + calling the init function. All other fields are set by the compression + library and must not be updated by the application. + + The opaque value provided by the application will be passed as the first + parameter for calls of zalloc and zfree. This can be useful for custom + memory management. The compression library attaches no meaning to the + opaque value. + + zalloc must return Z_NULL if there is not enough memory for the object. + If zlib is used in a multi-threaded application, zalloc and zfree must be + thread safe. + + On 16-bit systems, the functions zalloc and zfree must be able to allocate + exactly 65536 bytes, but will not be required to allocate more than this if + the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS, pointers + returned by zalloc for objects of exactly 65536 bytes *must* have their + offset normalized to zero. The default allocation function provided by this + library ensures this (see zutil.c). To reduce memory requirements and avoid + any allocation of 64K objects, at the expense of compression ratio, compile + the library with -DMAX_WBITS=14 (see zconf.h). + + The fields total_in and total_out can be used for statistics or progress + reports. After compression, total_in holds the total size of the + uncompressed data and may be saved for use in the decompressor (particularly + if the decompressor wants to decompress everything in a single step). +*/ + + /* constants */ + +#define Z_NO_FLUSH 0 +#define Z_PARTIAL_FLUSH 1 +#define Z_SYNC_FLUSH 2 +#define Z_FULL_FLUSH 3 +#define Z_FINISH 4 +#define Z_BLOCK 5 +#define Z_TREES 6 +/* Allowed flush values; see deflate() and inflate() below for details */ + +#define Z_OK 0 +#define Z_STREAM_END 1 +#define Z_NEED_DICT 2 +#define Z_ERRNO (-1) +#define Z_STREAM_ERROR (-2) +#define Z_DATA_ERROR (-3) +#define Z_MEM_ERROR (-4) +#define Z_BUF_ERROR (-5) +#define Z_VERSION_ERROR (-6) +/* Return codes for the compression/decompression functions. Negative values + * are errors, positive values are used for special but normal events. + */ + +#define Z_NO_COMPRESSION 0 +#define Z_BEST_SPEED 1 +#define Z_BEST_COMPRESSION 9 +#define Z_DEFAULT_COMPRESSION (-1) +/* compression levels */ + +#define Z_FILTERED 1 +#define Z_HUFFMAN_ONLY 2 +#define Z_RLE 3 +#define Z_FIXED 4 +#define Z_DEFAULT_STRATEGY 0 +/* compression strategy; see deflateInit2() below for details */ + +#define Z_BINARY 0 +#define Z_TEXT 1 +#define Z_ASCII Z_TEXT /* for compatibility with 1.2.2 and earlier */ +#define Z_UNKNOWN 2 +/* Possible values of the data_type field (though see inflate()) */ + +#define Z_DEFLATED 8 +/* The deflate compression method (the only one supported in this version) */ + +#define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ + +#define zlib_version zlibVersion() +/* for compatibility with versions < 1.0.2 */ + + + /* basic functions */ + +ZEXTERN const char * ZEXPORT zlibVersion OF((void)); +/* The application can compare zlibVersion and ZLIB_VERSION for consistency. + If the first character differs, the library code actually used is not + compatible with the zlib.h header file used by the application. This check + is automatically made by deflateInit and inflateInit. + */ + +/* +ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); + + Initializes the internal stream state for compression. The fields + zalloc, zfree and opaque must be initialized before by the caller. If + zalloc and zfree are set to Z_NULL, deflateInit updates them to use default + allocation functions. + + The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9: + 1 gives best speed, 9 gives best compression, 0 gives no compression at all + (the input data is simply copied a block at a time). Z_DEFAULT_COMPRESSION + requests a default compromise between speed and compression (currently + equivalent to level 6). + + deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough + memory, Z_STREAM_ERROR if level is not a valid compression level, or + Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible + with the version assumed by the caller (ZLIB_VERSION). msg is set to null + if there is no error message. deflateInit does not perform any compression: + this will be done by deflate(). +*/ + + +ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); +/* + deflate compresses as much data as possible, and stops when the input + buffer becomes empty or the output buffer becomes full. It may introduce + some output latency (reading input without producing any output) except when + forced to flush. + + The detailed semantics are as follows. deflate performs one or both of the + following actions: + + - Compress more input starting at next_in and update next_in and avail_in + accordingly. If not all input can be processed (because there is not + enough room in the output buffer), next_in and avail_in are updated and + processing will resume at this point for the next call of deflate(). + + - Provide more output starting at next_out and update next_out and avail_out + accordingly. This action is forced if the parameter flush is non zero. + Forcing flush frequently degrades the compression ratio, so this parameter + should be set only when necessary (in interactive applications). Some + output may be provided even if flush is not set. + + Before the call of deflate(), the application should ensure that at least + one of the actions is possible, by providing more input and/or consuming more + output, and updating avail_in or avail_out accordingly; avail_out should + never be zero before the call. The application can consume the compressed + output when it wants, for example when the output buffer is full (avail_out + == 0), or after each call of deflate(). If deflate returns Z_OK and with + zero avail_out, it must be called again after making room in the output + buffer because there might be more output pending. + + Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to + decide how much data to accumulate before producing output, in order to + maximize compression. + + If the parameter flush is set to Z_SYNC_FLUSH, all pending output is + flushed to the output buffer and the output is aligned on a byte boundary, so + that the decompressor can get all input data available so far. (In + particular avail_in is zero after the call if enough output space has been + provided before the call.) Flushing may degrade compression for some + compression algorithms and so it should be used only when necessary. This + completes the current deflate block and follows it with an empty stored block + that is three bits plus filler bits to the next byte, followed by four bytes + (00 00 ff ff). + + If flush is set to Z_PARTIAL_FLUSH, all pending output is flushed to the + output buffer, but the output is not aligned to a byte boundary. All of the + input data so far will be available to the decompressor, as for Z_SYNC_FLUSH. + This completes the current deflate block and follows it with an empty fixed + codes block that is 10 bits long. This assures that enough bytes are output + in order for the decompressor to finish the block before the empty fixed code + block. + + If flush is set to Z_BLOCK, a deflate block is completed and emitted, as + for Z_SYNC_FLUSH, but the output is not aligned on a byte boundary, and up to + seven bits of the current block are held to be written as the next byte after + the next deflate block is completed. In this case, the decompressor may not + be provided enough bits at this point in order to complete decompression of + the data provided so far to the compressor. It may need to wait for the next + block to be emitted. This is for advanced applications that need to control + the emission of deflate blocks. + + If flush is set to Z_FULL_FLUSH, all output is flushed as with + Z_SYNC_FLUSH, and the compression state is reset so that decompression can + restart from this point if previous compressed data has been damaged or if + random access is desired. Using Z_FULL_FLUSH too often can seriously degrade + compression. + + If deflate returns with avail_out == 0, this function must be called again + with the same value of the flush parameter and more output space (updated + avail_out), until the flush is complete (deflate returns with non-zero + avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that + avail_out is greater than six to avoid repeated flush markers due to + avail_out == 0 on return. + + If the parameter flush is set to Z_FINISH, pending input is processed, + pending output is flushed and deflate returns with Z_STREAM_END if there was + enough output space; if deflate returns with Z_OK, this function must be + called again with Z_FINISH and more output space (updated avail_out) but no + more input data, until it returns with Z_STREAM_END or an error. After + deflate has returned Z_STREAM_END, the only possible operations on the stream + are deflateReset or deflateEnd. + + Z_FINISH can be used immediately after deflateInit if all the compression + is to be done in a single step. In this case, avail_out must be at least the + value returned by deflateBound (see below). Then deflate is guaranteed to + return Z_STREAM_END. If not enough output space is provided, deflate will + not return Z_STREAM_END, and it must be called again as described above. + + deflate() sets strm->adler to the adler32 checksum of all input read + so far (that is, total_in bytes). + + deflate() may update strm->data_type if it can make a good guess about + the input data type (Z_BINARY or Z_TEXT). In doubt, the data is considered + binary. This field is only for information purposes and does not affect the + compression algorithm in any manner. + + deflate() returns Z_OK if some progress has been made (more input + processed or more output produced), Z_STREAM_END if all input has been + consumed and all output has been produced (only when flush is set to + Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example + if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible + (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not + fatal, and deflate() can be called again with more input and more output + space to continue compressing. +*/ + + +ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm)); +/* + All dynamically allocated data structures for this stream are freed. + This function discards any unprocessed input and does not flush any pending + output. + + deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the + stream state was inconsistent, Z_DATA_ERROR if the stream was freed + prematurely (some input or output was discarded). In the error case, msg + may be set but then points to a static string (which must not be + deallocated). +*/ + + +/* +ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm)); + + Initializes the internal stream state for decompression. The fields + next_in, avail_in, zalloc, zfree and opaque must be initialized before by + the caller. If next_in is not Z_NULL and avail_in is large enough (the + exact value depends on the compression method), inflateInit determines the + compression method from the zlib header and allocates all data structures + accordingly; otherwise the allocation will be deferred to the first call of + inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to + use default allocation functions. + + inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough + memory, Z_VERSION_ERROR if the zlib library version is incompatible with the + version assumed by the caller, or Z_STREAM_ERROR if the parameters are + invalid, such as a null pointer to the structure. msg is set to null if + there is no error message. inflateInit does not perform any decompression + apart from possibly reading the zlib header if present: actual decompression + will be done by inflate(). (So next_in and avail_in may be modified, but + next_out and avail_out are unused and unchanged.) The current implementation + of inflateInit() does not process any header information -- that is deferred + until inflate() is called. +*/ + + +ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush)); +/* + inflate decompresses as much data as possible, and stops when the input + buffer becomes empty or the output buffer becomes full. It may introduce + some output latency (reading input without producing any output) except when + forced to flush. + + The detailed semantics are as follows. inflate performs one or both of the + following actions: + + - Decompress more input starting at next_in and update next_in and avail_in + accordingly. If not all input can be processed (because there is not + enough room in the output buffer), next_in is updated and processing will + resume at this point for the next call of inflate(). + + - Provide more output starting at next_out and update next_out and avail_out + accordingly. inflate() provides as much output as possible, until there is + no more input data or no more space in the output buffer (see below about + the flush parameter). + + Before the call of inflate(), the application should ensure that at least + one of the actions is possible, by providing more input and/or consuming more + output, and updating the next_* and avail_* values accordingly. The + application can consume the uncompressed output when it wants, for example + when the output buffer is full (avail_out == 0), or after each call of + inflate(). If inflate returns Z_OK and with zero avail_out, it must be + called again after making room in the output buffer because there might be + more output pending. + + The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH, + Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much + output as possible to the output buffer. Z_BLOCK requests that inflate() + stop if and when it gets to the next deflate block boundary. When decoding + the zlib or gzip format, this will cause inflate() to return immediately + after the header and before the first block. When doing a raw inflate, + inflate() will go ahead and process the first block, and will return when it + gets to the end of that block, or when it runs out of data. + + The Z_BLOCK option assists in appending to or combining deflate streams. + Also to assist in this, on return inflate() will set strm->data_type to the + number of unused bits in the last byte taken from strm->next_in, plus 64 if + inflate() is currently decoding the last block in the deflate stream, plus + 128 if inflate() returned immediately after decoding an end-of-block code or + decoding the complete header up to just before the first byte of the deflate + stream. The end-of-block will not be indicated until all of the uncompressed + data from that block has been written to strm->next_out. The number of + unused bits may in general be greater than seven, except when bit 7 of + data_type is set, in which case the number of unused bits will be less than + eight. data_type is set as noted here every time inflate() returns for all + flush options, and so can be used to determine the amount of currently + consumed input in bits. + + The Z_TREES option behaves as Z_BLOCK does, but it also returns when the + end of each deflate block header is reached, before any actual data in that + block is decoded. This allows the caller to determine the length of the + deflate block header for later use in random access within a deflate block. + 256 is added to the value of strm->data_type when inflate() returns + immediately after reaching the end of the deflate block header. + + inflate() should normally be called until it returns Z_STREAM_END or an + error. However if all decompression is to be performed in a single step (a + single call of inflate), the parameter flush should be set to Z_FINISH. In + this case all pending input is processed and all pending output is flushed; + avail_out must be large enough to hold all of the uncompressed data for the + operation to complete. (The size of the uncompressed data may have been + saved by the compressor for this purpose.) The use of Z_FINISH is not + required to perform an inflation in one step. However it may be used to + inform inflate that a faster approach can be used for the single inflate() + call. Z_FINISH also informs inflate to not maintain a sliding window if the + stream completes, which reduces inflate's memory footprint. If the stream + does not complete, either because not all of the stream is provided or not + enough output space is provided, then a sliding window will be allocated and + inflate() can be called again to continue the operation as if Z_NO_FLUSH had + been used. + + In this implementation, inflate() always flushes as much output as + possible to the output buffer, and always uses the faster approach on the + first call. So the effects of the flush parameter in this implementation are + on the return value of inflate() as noted below, when inflate() returns early + when Z_BLOCK or Z_TREES is used, and when inflate() avoids the allocation of + memory for a sliding window when Z_FINISH is used. + + If a preset dictionary is needed after this call (see inflateSetDictionary + below), inflate sets strm->adler to the Adler-32 checksum of the dictionary + chosen by the compressor and returns Z_NEED_DICT; otherwise it sets + strm->adler to the Adler-32 checksum of all output produced so far (that is, + total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described + below. At the end of the stream, inflate() checks that its computed adler32 + checksum is equal to that saved by the compressor and returns Z_STREAM_END + only if the checksum is correct. + + inflate() can decompress and check either zlib-wrapped or gzip-wrapped + deflate data. The header type is detected automatically, if requested when + initializing with inflateInit2(). Any information contained in the gzip + header is not retained, so applications that need that information should + instead use raw inflate, see inflateInit2() below, or inflateBack() and + perform their own processing of the gzip header and trailer. When processing + gzip-wrapped deflate data, strm->adler32 is set to the CRC-32 of the output + producted so far. The CRC-32 is checked against the gzip trailer. + + inflate() returns Z_OK if some progress has been made (more input processed + or more output produced), Z_STREAM_END if the end of the compressed data has + been reached and all uncompressed output has been produced, Z_NEED_DICT if a + preset dictionary is needed at this point, Z_DATA_ERROR if the input data was + corrupted (input stream not conforming to the zlib format or incorrect check + value), Z_STREAM_ERROR if the stream structure was inconsistent (for example + next_in or next_out was Z_NULL), Z_MEM_ERROR if there was not enough memory, + Z_BUF_ERROR if no progress is possible or if there was not enough room in the + output buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and + inflate() can be called again with more input and more output space to + continue decompressing. If Z_DATA_ERROR is returned, the application may + then call inflateSync() to look for a good compression block if a partial + recovery of the data is desired. +*/ + + +ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm)); +/* + All dynamically allocated data structures for this stream are freed. + This function discards any unprocessed input and does not flush any pending + output. + + inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state + was inconsistent. In the error case, msg may be set but then points to a + static string (which must not be deallocated). +*/ + + + /* Advanced functions */ + +/* + The following functions are needed only in some special applications. +*/ + +/* +ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm, + int level, + int method, + int windowBits, + int memLevel, + int strategy)); + + This is another version of deflateInit with more compression options. The + fields next_in, zalloc, zfree and opaque must be initialized before by the + caller. + + The method parameter is the compression method. It must be Z_DEFLATED in + this version of the library. + + The windowBits parameter is the base two logarithm of the window size + (the size of the history buffer). It should be in the range 8..15 for this + version of the library. Larger values of this parameter result in better + compression at the expense of memory usage. The default value is 15 if + deflateInit is used instead. + + windowBits can also be -8..-15 for raw deflate. In this case, -windowBits + determines the window size. deflate() will then generate raw deflate data + with no zlib header or trailer, and will not compute an adler32 check value. + + windowBits can also be greater than 15 for optional gzip encoding. Add + 16 to windowBits to write a simple gzip header and trailer around the + compressed data instead of a zlib wrapper. The gzip header will have no + file name, no extra data, no comment, no modification time (set to zero), no + header crc, and the operating system will be set to 255 (unknown). If a + gzip stream is being written, strm->adler is a crc32 instead of an adler32. + + The memLevel parameter specifies how much memory should be allocated + for the internal compression state. memLevel=1 uses minimum memory but is + slow and reduces compression ratio; memLevel=9 uses maximum memory for + optimal speed. The default value is 8. See zconf.h for total memory usage + as a function of windowBits and memLevel. + + The strategy parameter is used to tune the compression algorithm. Use the + value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a + filter (or predictor), Z_HUFFMAN_ONLY to force Huffman encoding only (no + string match), or Z_RLE to limit match distances to one (run-length + encoding). Filtered data consists mostly of small values with a somewhat + random distribution. In this case, the compression algorithm is tuned to + compress them better. The effect of Z_FILTERED is to force more Huffman + coding and less string matching; it is somewhat intermediate between + Z_DEFAULT_STRATEGY and Z_HUFFMAN_ONLY. Z_RLE is designed to be almost as + fast as Z_HUFFMAN_ONLY, but give better compression for PNG image data. The + strategy parameter only affects the compression ratio but not the + correctness of the compressed output even if it is not set appropriately. + Z_FIXED prevents the use of dynamic Huffman codes, allowing for a simpler + decoder for special applications. + + deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough + memory, Z_STREAM_ERROR if any parameter is invalid (such as an invalid + method), or Z_VERSION_ERROR if the zlib library version (zlib_version) is + incompatible with the version assumed by the caller (ZLIB_VERSION). msg is + set to null if there is no error message. deflateInit2 does not perform any + compression: this will be done by deflate(). +*/ + +ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm, + const Bytef *dictionary, + uInt dictLength)); +/* + Initializes the compression dictionary from the given byte sequence + without producing any compressed output. When using the zlib format, this + function must be called immediately after deflateInit, deflateInit2 or + deflateReset, and before any call of deflate. When doing raw deflate, this + function must be called either before any call of deflate, or immediately + after the completion of a deflate block, i.e. after all input has been + consumed and all output has been delivered when using any of the flush + options Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, or Z_FULL_FLUSH. The + compressor and decompressor must use exactly the same dictionary (see + inflateSetDictionary). + + The dictionary should consist of strings (byte sequences) that are likely + to be encountered later in the data to be compressed, with the most commonly + used strings preferably put towards the end of the dictionary. Using a + dictionary is most useful when the data to be compressed is short and can be + predicted with good accuracy; the data can then be compressed better than + with the default empty dictionary. + + Depending on the size of the compression data structures selected by + deflateInit or deflateInit2, a part of the dictionary may in effect be + discarded, for example if the dictionary is larger than the window size + provided in deflateInit or deflateInit2. Thus the strings most likely to be + useful should be put at the end of the dictionary, not at the front. In + addition, the current implementation of deflate will use at most the window + size minus 262 bytes of the provided dictionary. + + Upon return of this function, strm->adler is set to the adler32 value + of the dictionary; the decompressor may later use this value to determine + which dictionary has been used by the compressor. (The adler32 value + applies to the whole dictionary even if only a subset of the dictionary is + actually used by the compressor.) If a raw deflate was requested, then the + adler32 value is not computed and strm->adler is not set. + + deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a + parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is + inconsistent (for example if deflate has already been called for this stream + or if not at a block boundary for raw deflate). deflateSetDictionary does + not perform any compression: this will be done by deflate(). +*/ + +ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest, + z_streamp source)); +/* + Sets the destination stream as a complete copy of the source stream. + + This function can be useful when several compression strategies will be + tried, for example when there are several ways of pre-processing the input + data with a filter. The streams that will be discarded should then be freed + by calling deflateEnd. Note that deflateCopy duplicates the internal + compression state which can be quite large, so this strategy is slow and can + consume lots of memory. + + deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not + enough memory, Z_STREAM_ERROR if the source stream state was inconsistent + (such as zalloc being Z_NULL). msg is left unchanged in both source and + destination. +*/ + +ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm)); +/* + This function is equivalent to deflateEnd followed by deflateInit, + but does not free and reallocate all the internal compression state. The + stream will keep the same compression level and any other attributes that + may have been set by deflateInit2. + + deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent (such as zalloc or state being Z_NULL). +*/ + +ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm, + int level, + int strategy)); +/* + Dynamically update the compression level and compression strategy. The + interpretation of level and strategy is as in deflateInit2. This can be + used to switch between compression and straight copy of the input data, or + to switch to a different kind of input data requiring a different strategy. + If the compression level is changed, the input available so far is + compressed with the old level (and may be flushed); the new level will take + effect only at the next call of deflate(). + + Before the call of deflateParams, the stream state must be set as for + a call of deflate(), since the currently available input may have to be + compressed and flushed. In particular, strm->avail_out must be non-zero. + + deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source + stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR if + strm->avail_out was zero. +*/ + +ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm, + int good_length, + int max_lazy, + int nice_length, + int max_chain)); +/* + Fine tune deflate's internal compression parameters. This should only be + used by someone who understands the algorithm used by zlib's deflate for + searching for the best matching string, and even then only by the most + fanatic optimizer trying to squeeze out the last compressed bit for their + specific input data. Read the deflate.c source code for the meaning of the + max_lazy, good_length, nice_length, and max_chain parameters. + + deflateTune() can be called after deflateInit() or deflateInit2(), and + returns Z_OK on success, or Z_STREAM_ERROR for an invalid deflate stream. + */ + +ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm, + uLong sourceLen)); +/* + deflateBound() returns an upper bound on the compressed size after + deflation of sourceLen bytes. It must be called after deflateInit() or + deflateInit2(), and after deflateSetHeader(), if used. This would be used + to allocate an output buffer for deflation in a single pass, and so would be + called before deflate(). If that first deflate() call is provided the + sourceLen input bytes, an output buffer allocated to the size returned by + deflateBound(), and the flush value Z_FINISH, then deflate() is guaranteed + to return Z_STREAM_END. Note that it is possible for the compressed size to + be larger than the value returned by deflateBound() if flush options other + than Z_FINISH or Z_NO_FLUSH are used. +*/ + +ZEXTERN int ZEXPORT deflatePending OF((z_streamp strm, + unsigned *pending, + int *bits)); +/* + deflatePending() returns the number of bytes and bits of output that have + been generated, but not yet provided in the available output. The bytes not + provided would be due to the available output space having being consumed. + The number of bits of output not provided are between 0 and 7, where they + await more bits to join them in order to fill out a full byte. If pending + or bits are Z_NULL, then those values are not set. + + deflatePending returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent. + */ + +ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm, + int bits, + int value)); +/* + deflatePrime() inserts bits in the deflate output stream. The intent + is that this function is used to start off the deflate output with the bits + leftover from a previous deflate stream when appending to it. As such, this + function can only be used for raw deflate, and must be used before the first + deflate() call after a deflateInit2() or deflateReset(). bits must be less + than or equal to 16, and that many of the least significant bits of value + will be inserted in the output. + + deflatePrime returns Z_OK if success, Z_BUF_ERROR if there was not enough + room in the internal buffer to insert the bits, or Z_STREAM_ERROR if the + source stream state was inconsistent. +*/ + +ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm, + gz_headerp head)); +/* + deflateSetHeader() provides gzip header information for when a gzip + stream is requested by deflateInit2(). deflateSetHeader() may be called + after deflateInit2() or deflateReset() and before the first call of + deflate(). The text, time, os, extra field, name, and comment information + in the provided gz_header structure are written to the gzip header (xflag is + ignored -- the extra flags are set according to the compression level). The + caller must assure that, if not Z_NULL, name and comment are terminated with + a zero byte, and that if extra is not Z_NULL, that extra_len bytes are + available there. If hcrc is true, a gzip header crc is included. Note that + the current versions of the command-line version of gzip (up through version + 1.3.x) do not support header crc's, and will report that it is a "multi-part + gzip file" and give up. + + If deflateSetHeader is not used, the default gzip header has text false, + the time set to zero, and os set to 255, with no extra, name, or comment + fields. The gzip header is returned to the default state by deflateReset(). + + deflateSetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent. +*/ + +/* +ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm, + int windowBits)); + + This is another version of inflateInit with an extra parameter. The + fields next_in, avail_in, zalloc, zfree and opaque must be initialized + before by the caller. + + The windowBits parameter is the base two logarithm of the maximum window + size (the size of the history buffer). It should be in the range 8..15 for + this version of the library. The default value is 15 if inflateInit is used + instead. windowBits must be greater than or equal to the windowBits value + provided to deflateInit2() while compressing, or it must be equal to 15 if + deflateInit2() was not used. If a compressed stream with a larger window + size is given as input, inflate() will return with the error code + Z_DATA_ERROR instead of trying to allocate a larger window. + + windowBits can also be zero to request that inflate use the window size in + the zlib header of the compressed stream. + + windowBits can also be -8..-15 for raw inflate. In this case, -windowBits + determines the window size. inflate() will then process raw deflate data, + not looking for a zlib or gzip header, not generating a check value, and not + looking for any check values for comparison at the end of the stream. This + is for use with other formats that use the deflate compressed data format + such as zip. Those formats provide their own check values. If a custom + format is developed using the raw deflate format for compressed data, it is + recommended that a check value such as an adler32 or a crc32 be applied to + the uncompressed data as is done in the zlib, gzip, and zip formats. For + most applications, the zlib format should be used as is. Note that comments + above on the use in deflateInit2() applies to the magnitude of windowBits. + + windowBits can also be greater than 15 for optional gzip decoding. Add + 32 to windowBits to enable zlib and gzip decoding with automatic header + detection, or add 16 to decode only the gzip format (the zlib format will + return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a + crc32 instead of an adler32. + + inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough + memory, Z_VERSION_ERROR if the zlib library version is incompatible with the + version assumed by the caller, or Z_STREAM_ERROR if the parameters are + invalid, such as a null pointer to the structure. msg is set to null if + there is no error message. inflateInit2 does not perform any decompression + apart from possibly reading the zlib header if present: actual decompression + will be done by inflate(). (So next_in and avail_in may be modified, but + next_out and avail_out are unused and unchanged.) The current implementation + of inflateInit2() does not process any header information -- that is + deferred until inflate() is called. +*/ + +ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm, + const Bytef *dictionary, + uInt dictLength)); +/* + Initializes the decompression dictionary from the given uncompressed byte + sequence. This function must be called immediately after a call of inflate, + if that call returned Z_NEED_DICT. The dictionary chosen by the compressor + can be determined from the adler32 value returned by that call of inflate. + The compressor and decompressor must use exactly the same dictionary (see + deflateSetDictionary). For raw inflate, this function can be called at any + time to set the dictionary. If the provided dictionary is smaller than the + window and there is already data in the window, then the provided dictionary + will amend what's there. The application must insure that the dictionary + that was used for compression is provided. + + inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a + parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is + inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the + expected one (incorrect adler32 value). inflateSetDictionary does not + perform any decompression: this will be done by subsequent calls of + inflate(). +*/ + +ZEXTERN int ZEXPORT inflateGetDictionary OF((z_streamp strm, + Bytef *dictionary, + uInt *dictLength)); +/* + Returns the sliding dictionary being maintained by inflate. dictLength is + set to the number of bytes in the dictionary, and that many bytes are copied + to dictionary. dictionary must have enough space, where 32768 bytes is + always enough. If inflateGetDictionary() is called with dictionary equal to + Z_NULL, then only the dictionary length is returned, and nothing is copied. + Similary, if dictLength is Z_NULL, then it is not set. + + inflateGetDictionary returns Z_OK on success, or Z_STREAM_ERROR if the + stream state is inconsistent. +*/ + +ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm)); +/* + Skips invalid compressed data until a possible full flush point (see above + for the description of deflate with Z_FULL_FLUSH) can be found, or until all + available input is skipped. No output is provided. + + inflateSync searches for a 00 00 FF FF pattern in the compressed data. + All full flush points have this pattern, but not all occurrences of this + pattern are full flush points. + + inflateSync returns Z_OK if a possible full flush point has been found, + Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point + has been found, or Z_STREAM_ERROR if the stream structure was inconsistent. + In the success case, the application may save the current current value of + total_in which indicates where valid compressed data was found. In the + error case, the application may repeatedly call inflateSync, providing more + input each time, until success or end of the input data. +*/ + +ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest, + z_streamp source)); +/* + Sets the destination stream as a complete copy of the source stream. + + This function can be useful when randomly accessing a large stream. The + first pass through the stream can periodically record the inflate state, + allowing restarting inflate at those points when randomly accessing the + stream. + + inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not + enough memory, Z_STREAM_ERROR if the source stream state was inconsistent + (such as zalloc being Z_NULL). msg is left unchanged in both source and + destination. +*/ + +ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm)); +/* + This function is equivalent to inflateEnd followed by inflateInit, + but does not free and reallocate all the internal decompression state. The + stream will keep attributes that may have been set by inflateInit2. + + inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent (such as zalloc or state being Z_NULL). +*/ + +ZEXTERN int ZEXPORT inflateReset2 OF((z_streamp strm, + int windowBits)); +/* + This function is the same as inflateReset, but it also permits changing + the wrap and window size requests. The windowBits parameter is interpreted + the same as it is for inflateInit2. + + inflateReset2 returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent (such as zalloc or state being Z_NULL), or if + the windowBits parameter is invalid. +*/ + +ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm, + int bits, + int value)); +/* + This function inserts bits in the inflate input stream. The intent is + that this function is used to start inflating at a bit position in the + middle of a byte. The provided bits will be used before any bytes are used + from next_in. This function should only be used with raw inflate, and + should be used before the first inflate() call after inflateInit2() or + inflateReset(). bits must be less than or equal to 16, and that many of the + least significant bits of value will be inserted in the input. + + If bits is negative, then the input stream bit buffer is emptied. Then + inflatePrime() can be called again to put bits in the buffer. This is used + to clear out bits leftover after feeding inflate a block description prior + to feeding inflate codes. + + inflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent. +*/ + +ZEXTERN long ZEXPORT inflateMark OF((z_streamp strm)); +/* + This function returns two values, one in the lower 16 bits of the return + value, and the other in the remaining upper bits, obtained by shifting the + return value down 16 bits. If the upper value is -1 and the lower value is + zero, then inflate() is currently decoding information outside of a block. + If the upper value is -1 and the lower value is non-zero, then inflate is in + the middle of a stored block, with the lower value equaling the number of + bytes from the input remaining to copy. If the upper value is not -1, then + it is the number of bits back from the current bit position in the input of + the code (literal or length/distance pair) currently being processed. In + that case the lower value is the number of bytes already emitted for that + code. + + A code is being processed if inflate is waiting for more input to complete + decoding of the code, or if it has completed decoding but is waiting for + more output space to write the literal or match data. + + inflateMark() is used to mark locations in the input data for random + access, which may be at bit positions, and to note those cases where the + output of a code may span boundaries of random access blocks. The current + location in the input stream can be determined from avail_in and data_type + as noted in the description for the Z_BLOCK flush parameter for inflate. + + inflateMark returns the value noted above or -1 << 16 if the provided + source stream state was inconsistent. +*/ + +ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm, + gz_headerp head)); +/* + inflateGetHeader() requests that gzip header information be stored in the + provided gz_header structure. inflateGetHeader() may be called after + inflateInit2() or inflateReset(), and before the first call of inflate(). + As inflate() processes the gzip stream, head->done is zero until the header + is completed, at which time head->done is set to one. If a zlib stream is + being decoded, then head->done is set to -1 to indicate that there will be + no gzip header information forthcoming. Note that Z_BLOCK or Z_TREES can be + used to force inflate() to return immediately after header processing is + complete and before any actual data is decompressed. + + The text, time, xflags, and os fields are filled in with the gzip header + contents. hcrc is set to true if there is a header CRC. (The header CRC + was valid if done is set to one.) If extra is not Z_NULL, then extra_max + contains the maximum number of bytes to write to extra. Once done is true, + extra_len contains the actual extra field length, and extra contains the + extra field, or that field truncated if extra_max is less than extra_len. + If name is not Z_NULL, then up to name_max characters are written there, + terminated with a zero unless the length is greater than name_max. If + comment is not Z_NULL, then up to comm_max characters are written there, + terminated with a zero unless the length is greater than comm_max. When any + of extra, name, or comment are not Z_NULL and the respective field is not + present in the header, then that field is set to Z_NULL to signal its + absence. This allows the use of deflateSetHeader() with the returned + structure to duplicate the header. However if those fields are set to + allocated memory, then the application will need to save those pointers + elsewhere so that they can be eventually freed. + + If inflateGetHeader is not used, then the header information is simply + discarded. The header is always checked for validity, including the header + CRC if present. inflateReset() will reset the process to discard the header + information. The application would need to call inflateGetHeader() again to + retrieve the header from the next gzip stream. + + inflateGetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source + stream state was inconsistent. +*/ + +/* +ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits, + unsigned char FAR *window)); + + Initialize the internal stream state for decompression using inflateBack() + calls. The fields zalloc, zfree and opaque in strm must be initialized + before the call. If zalloc and zfree are Z_NULL, then the default library- + derived memory allocation routines are used. windowBits is the base two + logarithm of the window size, in the range 8..15. window is a caller + supplied buffer of that size. Except for special applications where it is + assured that deflate was used with small window sizes, windowBits must be 15 + and a 32K byte window must be supplied to be able to decompress general + deflate streams. + + See inflateBack() for the usage of these routines. + + inflateBackInit will return Z_OK on success, Z_STREAM_ERROR if any of + the parameters are invalid, Z_MEM_ERROR if the internal state could not be + allocated, or Z_VERSION_ERROR if the version of the library does not match + the version of the header file. +*/ + +typedef unsigned (*in_func) OF((void FAR *, + z_const unsigned char FAR * FAR *)); +typedef int (*out_func) OF((void FAR *, unsigned char FAR *, unsigned)); + +ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm, + in_func in, void FAR *in_desc, + out_func out, void FAR *out_desc)); +/* + inflateBack() does a raw inflate with a single call using a call-back + interface for input and output. This is potentially more efficient than + inflate() for file i/o applications, in that it avoids copying between the + output and the sliding window by simply making the window itself the output + buffer. inflate() can be faster on modern CPUs when used with large + buffers. inflateBack() trusts the application to not change the output + buffer passed by the output function, at least until inflateBack() returns. + + inflateBackInit() must be called first to allocate the internal state + and to initialize the state with the user-provided window buffer. + inflateBack() may then be used multiple times to inflate a complete, raw + deflate stream with each call. inflateBackEnd() is then called to free the + allocated state. + + A raw deflate stream is one with no zlib or gzip header or trailer. + This routine would normally be used in a utility that reads zip or gzip + files and writes out uncompressed files. The utility would decode the + header and process the trailer on its own, hence this routine expects only + the raw deflate stream to decompress. This is different from the normal + behavior of inflate(), which expects either a zlib or gzip header and + trailer around the deflate stream. + + inflateBack() uses two subroutines supplied by the caller that are then + called by inflateBack() for input and output. inflateBack() calls those + routines until it reads a complete deflate stream and writes out all of the + uncompressed data, or until it encounters an error. The function's + parameters and return types are defined above in the in_func and out_func + typedefs. inflateBack() will call in(in_desc, &buf) which should return the + number of bytes of provided input, and a pointer to that input in buf. If + there is no input available, in() must return zero--buf is ignored in that + case--and inflateBack() will return a buffer error. inflateBack() will call + out(out_desc, buf, len) to write the uncompressed data buf[0..len-1]. out() + should return zero on success, or non-zero on failure. If out() returns + non-zero, inflateBack() will return with an error. Neither in() nor out() + are permitted to change the contents of the window provided to + inflateBackInit(), which is also the buffer that out() uses to write from. + The length written by out() will be at most the window size. Any non-zero + amount of input may be provided by in(). + + For convenience, inflateBack() can be provided input on the first call by + setting strm->next_in and strm->avail_in. If that input is exhausted, then + in() will be called. Therefore strm->next_in must be initialized before + calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called + immediately for input. If strm->next_in is not Z_NULL, then strm->avail_in + must also be initialized, and then if strm->avail_in is not zero, input will + initially be taken from strm->next_in[0 .. strm->avail_in - 1]. + + The in_desc and out_desc parameters of inflateBack() is passed as the + first parameter of in() and out() respectively when they are called. These + descriptors can be optionally used to pass any information that the caller- + supplied in() and out() functions need to do their job. + + On return, inflateBack() will set strm->next_in and strm->avail_in to + pass back any unused input that was provided by the last in() call. The + return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR + if in() or out() returned an error, Z_DATA_ERROR if there was a format error + in the deflate stream (in which case strm->msg is set to indicate the nature + of the error), or Z_STREAM_ERROR if the stream was not properly initialized. + In the case of Z_BUF_ERROR, an input or output error can be distinguished + using strm->next_in which will be Z_NULL only if in() returned an error. If + strm->next_in is not Z_NULL, then the Z_BUF_ERROR was due to out() returning + non-zero. (in() will always be called before out(), so strm->next_in is + assured to be defined if out() returns non-zero.) Note that inflateBack() + cannot return Z_OK. +*/ + +ZEXTERN int ZEXPORT inflateBackEnd OF((z_streamp strm)); +/* + All memory allocated by inflateBackInit() is freed. + + inflateBackEnd() returns Z_OK on success, or Z_STREAM_ERROR if the stream + state was inconsistent. +*/ + +ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void)); +/* Return flags indicating compile-time options. + + Type sizes, two bits each, 00 = 16 bits, 01 = 32, 10 = 64, 11 = other: + 1.0: size of uInt + 3.2: size of uLong + 5.4: size of voidpf (pointer) + 7.6: size of z_off_t + + Compiler, assembler, and debug options: + 8: DEBUG + 9: ASMV or ASMINF -- use ASM code + 10: ZLIB_WINAPI -- exported functions use the WINAPI calling convention + 11: 0 (reserved) + + One-time table building (smaller code, but not thread-safe if true): + 12: BUILDFIXED -- build static block decoding tables when needed + 13: DYNAMIC_CRC_TABLE -- build CRC calculation tables when needed + 14,15: 0 (reserved) + + Library content (indicates missing functionality): + 16: NO_GZCOMPRESS -- gz* functions cannot compress (to avoid linking + deflate code when not needed) + 17: NO_GZIP -- deflate can't write gzip streams, and inflate can't detect + and decode gzip streams (to avoid linking crc code) + 18-19: 0 (reserved) + + Operation variations (changes in library functionality): + 20: PKZIP_BUG_WORKAROUND -- slightly more permissive inflate + 21: FASTEST -- deflate algorithm with only one, lowest compression level + 22,23: 0 (reserved) + + The sprintf variant used by gzprintf (zero is best): + 24: 0 = vs*, 1 = s* -- 1 means limited to 20 arguments after the format + 25: 0 = *nprintf, 1 = *printf -- 1 means gzprintf() not secure! + 26: 0 = returns value, 1 = void -- 1 means inferred string length returned + + Remainder: + 27-31: 0 (reserved) + */ + +#ifndef Z_SOLO + + /* utility functions */ + +/* + The following utility functions are implemented on top of the basic + stream-oriented functions. To simplify the interface, some default options + are assumed (compression level and memory usage, standard memory allocation + functions). The source code of these utility functions can be modified if + you need special options. +*/ + +ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, + const Bytef *source, uLong sourceLen)); +/* + Compresses the source buffer into the destination buffer. sourceLen is + the byte length of the source buffer. Upon entry, destLen is the total size + of the destination buffer, which must be at least the value returned by + compressBound(sourceLen). Upon exit, destLen is the actual size of the + compressed buffer. + + compress returns Z_OK if success, Z_MEM_ERROR if there was not + enough memory, Z_BUF_ERROR if there was not enough room in the output + buffer. +*/ + +ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen, + const Bytef *source, uLong sourceLen, + int level)); +/* + Compresses the source buffer into the destination buffer. The level + parameter has the same meaning as in deflateInit. sourceLen is the byte + length of the source buffer. Upon entry, destLen is the total size of the + destination buffer, which must be at least the value returned by + compressBound(sourceLen). Upon exit, destLen is the actual size of the + compressed buffer. + + compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough + memory, Z_BUF_ERROR if there was not enough room in the output buffer, + Z_STREAM_ERROR if the level parameter is invalid. +*/ + +ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); +/* + compressBound() returns an upper bound on the compressed size after + compress() or compress2() on sourceLen bytes. It would be used before a + compress() or compress2() call to allocate the destination buffer. +*/ + +ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen, + const Bytef *source, uLong sourceLen)); +/* + Decompresses the source buffer into the destination buffer. sourceLen is + the byte length of the source buffer. Upon entry, destLen is the total size + of the destination buffer, which must be large enough to hold the entire + uncompressed data. (The size of the uncompressed data must have been saved + previously by the compressor and transmitted to the decompressor by some + mechanism outside the scope of this compression library.) Upon exit, destLen + is the actual size of the uncompressed buffer. + + uncompress returns Z_OK if success, Z_MEM_ERROR if there was not + enough memory, Z_BUF_ERROR if there was not enough room in the output + buffer, or Z_DATA_ERROR if the input data was corrupted or incomplete. In + the case where there is not enough room, uncompress() will fill the output + buffer with the uncompressed data up to that point. +*/ + + /* gzip file access functions */ + +/* + This library supports reading and writing files in gzip (.gz) format with + an interface similar to that of stdio, using the functions that start with + "gz". The gzip format is different from the zlib format. gzip is a gzip + wrapper, documented in RFC 1952, wrapped around a deflate stream. +*/ + +typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ + +/* +ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode)); + + Opens a gzip (.gz) file for reading or writing. The mode parameter is as + in fopen ("rb" or "wb") but can also include a compression level ("wb9") or + a strategy: 'f' for filtered data as in "wb6f", 'h' for Huffman-only + compression as in "wb1h", 'R' for run-length encoding as in "wb1R", or 'F' + for fixed code compression as in "wb9F". (See the description of + deflateInit2 for more information about the strategy parameter.) 'T' will + request transparent writing or appending with no compression and not using + the gzip format. + + "a" can be used instead of "w" to request that the gzip stream that will + be written be appended to the file. "+" will result in an error, since + reading and writing to the same gzip file is not supported. The addition of + "x" when writing will create the file exclusively, which fails if the file + already exists. On systems that support it, the addition of "e" when + reading or writing will set the flag to close the file on an execve() call. + + These functions, as well as gzip, will read and decode a sequence of gzip + streams in a file. The append function of gzopen() can be used to create + such a file. (Also see gzflush() for another way to do this.) When + appending, gzopen does not test whether the file begins with a gzip stream, + nor does it look for the end of the gzip streams to begin appending. gzopen + will simply append a gzip stream to the existing file. + + gzopen can be used to read a file which is not in gzip format; in this + case gzread will directly read from the file without decompression. When + reading, this will be detected automatically by looking for the magic two- + byte gzip header. + + gzopen returns NULL if the file could not be opened, if there was + insufficient memory to allocate the gzFile state, or if an invalid mode was + specified (an 'r', 'w', or 'a' was not provided, or '+' was provided). + errno can be checked to determine if the reason gzopen failed was that the + file could not be opened. +*/ + +ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode)); +/* + gzdopen associates a gzFile with the file descriptor fd. File descriptors + are obtained from calls like open, dup, creat, pipe or fileno (if the file + has been previously opened with fopen). The mode parameter is as in gzopen. + + The next call of gzclose on the returned gzFile will also close the file + descriptor fd, just like fclose(fdopen(fd, mode)) closes the file descriptor + fd. If you want to keep fd open, use fd = dup(fd_keep); gz = gzdopen(fd, + mode);. The duplicated descriptor should be saved to avoid a leak, since + gzdopen does not close fd if it fails. If you are using fileno() to get the + file descriptor from a FILE *, then you will have to use dup() to avoid + double-close()ing the file descriptor. Both gzclose() and fclose() will + close the associated file descriptor, so they need to have different file + descriptors. + + gzdopen returns NULL if there was insufficient memory to allocate the + gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not + provided, or '+' was provided), or if fd is -1. The file descriptor is not + used until the next gz* read, write, seek, or close operation, so gzdopen + will not detect if fd is invalid (unless fd is -1). +*/ + +ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size)); +/* + Set the internal buffer size used by this library's functions. The + default buffer size is 8192 bytes. This function must be called after + gzopen() or gzdopen(), and before any other calls that read or write the + file. The buffer memory allocation is always deferred to the first read or + write. Two buffers are allocated, either both of the specified size when + writing, or one of the specified size and the other twice that size when + reading. A larger buffer size of, for example, 64K or 128K bytes will + noticeably increase the speed of decompression (reading). + + The new buffer size also affects the maximum length for gzprintf(). + + gzbuffer() returns 0 on success, or -1 on failure, such as being called + too late. +*/ + +ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy)); +/* + Dynamically update the compression level or strategy. See the description + of deflateInit2 for the meaning of these parameters. + + gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not + opened for writing. +*/ + +ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); +/* + Reads the given number of uncompressed bytes from the compressed file. If + the input file is not in gzip format, gzread copies the given number of + bytes into the buffer directly from the file. + + After reaching the end of a gzip stream in the input, gzread will continue + to read, looking for another gzip stream. Any number of gzip streams may be + concatenated in the input file, and will all be decompressed by gzread(). + If something other than a gzip stream is encountered after a gzip stream, + that remaining trailing garbage is ignored (and no error is returned). + + gzread can be used to read a gzip file that is being concurrently written. + Upon reaching the end of the input, gzread will return with the available + data. If the error code returned by gzerror is Z_OK or Z_BUF_ERROR, then + gzclearerr can be used to clear the end of file indicator in order to permit + gzread to be tried again. Z_OK indicates that a gzip stream was completed + on the last gzread. Z_BUF_ERROR indicates that the input file ended in the + middle of a gzip stream. Note that gzread does not return -1 in the event + of an incomplete gzip stream. This error is deferred until gzclose(), which + will return Z_BUF_ERROR if the last gzread ended in the middle of a gzip + stream. Alternatively, gzerror can be used before gzclose to detect this + case. + + gzread returns the number of uncompressed bytes actually read, less than + len for end of file, or -1 for error. +*/ + +ZEXTERN int ZEXPORT gzwrite OF((gzFile file, + voidpc buf, unsigned len)); +/* + Writes the given number of uncompressed bytes into the compressed file. + gzwrite returns the number of uncompressed bytes written or 0 in case of + error. +*/ + +ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...)); +/* + Converts, formats, and writes the arguments to the compressed file under + control of the format string, as in fprintf. gzprintf returns the number of + uncompressed bytes actually written, or 0 in case of error. The number of + uncompressed bytes written is limited to 8191, or one less than the buffer + size given to gzbuffer(). The caller should assure that this limit is not + exceeded. If it is exceeded, then gzprintf() will return an error (0) with + nothing written. In this case, there may also be a buffer overflow with + unpredictable consequences, which is possible only if zlib was compiled with + the insecure functions sprintf() or vsprintf() because the secure snprintf() + or vsnprintf() functions were not available. This can be determined using + zlibCompileFlags(). +*/ + +ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s)); +/* + Writes the given null-terminated string to the compressed file, excluding + the terminating null character. + + gzputs returns the number of characters written, or -1 in case of error. +*/ + +ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len)); +/* + Reads bytes from the compressed file until len-1 characters are read, or a + newline character is read and transferred to buf, or an end-of-file + condition is encountered. If any characters are read or if len == 1, the + string is terminated with a null character. If no characters are read due + to an end-of-file or len < 1, then the buffer is left untouched. + + gzgets returns buf which is a null-terminated string, or it returns NULL + for end-of-file or in case of error. If there was an error, the contents at + buf are indeterminate. +*/ + +ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); +/* + Writes c, converted to an unsigned char, into the compressed file. gzputc + returns the value that was written, or -1 in case of error. +*/ + +ZEXTERN int ZEXPORT gzgetc OF((gzFile file)); +/* + Reads one byte from the compressed file. gzgetc returns this byte or -1 + in case of end of file or error. This is implemented as a macro for speed. + As such, it does not do all of the checking the other functions do. I.e. + it does not check to see if file is NULL, nor whether the structure file + points to has been clobbered or not. +*/ + +ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file)); +/* + Push one character back onto the stream to be read as the first character + on the next read. At least one character of push-back is allowed. + gzungetc() returns the character pushed, or -1 on failure. gzungetc() will + fail if c is -1, and may fail if a character has been pushed but not read + yet. If gzungetc is used immediately after gzopen or gzdopen, at least the + output buffer size of pushed characters is allowed. (See gzbuffer above.) + The pushed character will be discarded if the stream is repositioned with + gzseek() or gzrewind(). +*/ + +ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush)); +/* + Flushes all pending output into the compressed file. The parameter flush + is as in the deflate() function. The return value is the zlib error number + (see function gzerror below). gzflush is only permitted when writing. + + If the flush parameter is Z_FINISH, the remaining data is written and the + gzip stream is completed in the output. If gzwrite() is called again, a new + gzip stream will be started in the output. gzread() is able to read such + concatented gzip streams. + + gzflush should be called only when strictly necessary because it will + degrade compression if called too often. +*/ + +/* +ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file, + z_off_t offset, int whence)); + + Sets the starting position for the next gzread or gzwrite on the given + compressed file. The offset represents a number of bytes in the + uncompressed data stream. The whence parameter is defined as in lseek(2); + the value SEEK_END is not supported. + + If the file is opened for reading, this function is emulated but can be + extremely slow. If the file is opened for writing, only forward seeks are + supported; gzseek then compresses a sequence of zeroes up to the new + starting position. + + gzseek returns the resulting offset location as measured in bytes from + the beginning of the uncompressed stream, or -1 in case of error, in + particular if the file is opened for writing and the new starting position + would be before the current position. +*/ + +ZEXTERN int ZEXPORT gzrewind OF((gzFile file)); +/* + Rewinds the given file. This function is supported only for reading. + + gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET) +*/ + +/* +ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file)); + + Returns the starting position for the next gzread or gzwrite on the given + compressed file. This position represents a number of bytes in the + uncompressed data stream, and is zero when starting, even if appending or + reading a gzip stream from the middle of a file using gzdopen(). + + gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR) +*/ + +/* +ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file)); + + Returns the current offset in the file being read or written. This offset + includes the count of bytes that precede the gzip stream, for example when + appending or when using gzdopen() for reading. When reading, the offset + does not include as yet unused buffered input. This information can be used + for a progress indicator. On error, gzoffset() returns -1. +*/ + +ZEXTERN int ZEXPORT gzeof OF((gzFile file)); +/* + Returns true (1) if the end-of-file indicator has been set while reading, + false (0) otherwise. Note that the end-of-file indicator is set only if the + read tried to go past the end of the input, but came up short. Therefore, + just like feof(), gzeof() may return false even if there is no more data to + read, in the event that the last read request was for the exact number of + bytes remaining in the input file. This will happen if the input file size + is an exact multiple of the buffer size. + + If gzeof() returns true, then the read functions will return no more data, + unless the end-of-file indicator is reset by gzclearerr() and the input file + has grown since the previous end of file was detected. +*/ + +ZEXTERN int ZEXPORT gzdirect OF((gzFile file)); +/* + Returns true (1) if file is being copied directly while reading, or false + (0) if file is a gzip stream being decompressed. + + If the input file is empty, gzdirect() will return true, since the input + does not contain a gzip stream. + + If gzdirect() is used immediately after gzopen() or gzdopen() it will + cause buffers to be allocated to allow reading the file to determine if it + is a gzip file. Therefore if gzbuffer() is used, it should be called before + gzdirect(). + + When writing, gzdirect() returns true (1) if transparent writing was + requested ("wT" for the gzopen() mode), or false (0) otherwise. (Note: + gzdirect() is not needed when writing. Transparent writing must be + explicitly requested, so the application already knows the answer. When + linking statically, using gzdirect() will include all of the zlib code for + gzip file reading and decompression, which may not be desired.) +*/ + +ZEXTERN int ZEXPORT gzclose OF((gzFile file)); +/* + Flushes all pending output if necessary, closes the compressed file and + deallocates the (de)compression state. Note that once file is closed, you + cannot call gzerror with file, since its structures have been deallocated. + gzclose must not be called more than once on the same file, just as free + must not be called more than once on the same allocation. + + gzclose will return Z_STREAM_ERROR if file is not valid, Z_ERRNO on a + file operation error, Z_MEM_ERROR if out of memory, Z_BUF_ERROR if the + last read ended in the middle of a gzip stream, or Z_OK on success. +*/ + +ZEXTERN int ZEXPORT gzclose_r OF((gzFile file)); +ZEXTERN int ZEXPORT gzclose_w OF((gzFile file)); +/* + Same as gzclose(), but gzclose_r() is only for use when reading, and + gzclose_w() is only for use when writing or appending. The advantage to + using these instead of gzclose() is that they avoid linking in zlib + compression or decompression code that is not used when only reading or only + writing respectively. If gzclose() is used, then both compression and + decompression code will be included the application when linking to a static + zlib library. +*/ + +ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum)); +/* + Returns the error message for the last error which occurred on the given + compressed file. errnum is set to zlib error number. If an error occurred + in the file system and not in the compression library, errnum is set to + Z_ERRNO and the application may consult errno to get the exact error code. + + The application must not modify the returned string. Future calls to + this function may invalidate the previously returned string. If file is + closed, then the string previously returned by gzerror will no longer be + available. + + gzerror() should be used to distinguish errors from end-of-file for those + functions above that do not distinguish those cases in their return values. +*/ + +ZEXTERN void ZEXPORT gzclearerr OF((gzFile file)); +/* + Clears the error and end-of-file flags for file. This is analogous to the + clearerr() function in stdio. This is useful for continuing to read a gzip + file that is being written concurrently. +*/ + +#endif /* !Z_SOLO */ + + /* checksum functions */ + +/* + These functions are not related to compression but are exported + anyway because they might be useful in applications using the compression + library. +*/ + +ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); +/* + Update a running Adler-32 checksum with the bytes buf[0..len-1] and + return the updated checksum. If buf is Z_NULL, this function returns the + required initial value for the checksum. + + An Adler-32 checksum is almost as reliable as a CRC32 but can be computed + much faster. + + Usage example: + + uLong adler = adler32(0L, Z_NULL, 0); + + while (read_buffer(buffer, length) != EOF) { + adler = adler32(adler, buffer, length); + } + if (adler != original_adler) error(); +*/ + +/* +ZEXTERN uLong ZEXPORT adler32_combine OF((uLong adler1, uLong adler2, + z_off_t len2)); + + Combine two Adler-32 checksums into one. For two sequences of bytes, seq1 + and seq2 with lengths len1 and len2, Adler-32 checksums were calculated for + each, adler1 and adler2. adler32_combine() returns the Adler-32 checksum of + seq1 and seq2 concatenated, requiring only adler1, adler2, and len2. Note + that the z_off_t type (like off_t) is a signed integer. If len2 is + negative, the result has no meaning or utility. +*/ + +ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); +/* + Update a running CRC-32 with the bytes buf[0..len-1] and return the + updated CRC-32. If buf is Z_NULL, this function returns the required + initial value for the crc. Pre- and post-conditioning (one's complement) is + performed within this function so it shouldn't be done by the application. + + Usage example: + + uLong crc = crc32(0L, Z_NULL, 0); + + while (read_buffer(buffer, length) != EOF) { + crc = crc32(crc, buffer, length); + } + if (crc != original_crc) error(); +*/ + +/* +ZEXTERN uLong ZEXPORT crc32_combine OF((uLong crc1, uLong crc2, z_off_t len2)); + + Combine two CRC-32 check values into one. For two sequences of bytes, + seq1 and seq2 with lengths len1 and len2, CRC-32 check values were + calculated for each, crc1 and crc2. crc32_combine() returns the CRC-32 + check value of seq1 and seq2 concatenated, requiring only crc1, crc2, and + len2. +*/ + + + /* various hacks, don't look :) */ + +/* deflateInit and inflateInit are macros to allow checking the zlib version + * and the compiler's view of z_stream: + */ +ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level, + const char *version, int stream_size)); +ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm, + const char *version, int stream_size)); +ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method, + int windowBits, int memLevel, + int strategy, const char *version, + int stream_size)); +ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, + const char *version, int stream_size)); +ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, + unsigned char FAR *window, + const char *version, + int stream_size)); +#define deflateInit(strm, level) \ + deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream)) +#define inflateInit(strm) \ + inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream)) +#define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ + deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ + (strategy), ZLIB_VERSION, (int)sizeof(z_stream)) +#define inflateInit2(strm, windowBits) \ + inflateInit2_((strm), (windowBits), ZLIB_VERSION, \ + (int)sizeof(z_stream)) +#define inflateBackInit(strm, windowBits, window) \ + inflateBackInit_((strm), (windowBits), (window), \ + ZLIB_VERSION, (int)sizeof(z_stream)) + +#ifndef Z_SOLO + +/* gzgetc() macro and its supporting function and exposed data structure. Note + * that the real internal state is much larger than the exposed structure. + * This abbreviated structure exposes just enough for the gzgetc() macro. The + * user should not mess with these exposed elements, since their names or + * behavior could change in the future, perhaps even capriciously. They can + * only be used by the gzgetc() macro. You have been warned. + */ +struct gzFile_s { + unsigned have; + unsigned char *next; + z_off64_t pos; +}; +ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file)); /* backward compatibility */ +#ifdef Z_PREFIX_SET +# undef z_gzgetc +# define z_gzgetc(g) \ + ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g)) +#else +# define gzgetc(g) \ + ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g)) +#endif + +/* provide 64-bit offset functions if _LARGEFILE64_SOURCE defined, and/or + * change the regular functions to 64 bits if _FILE_OFFSET_BITS is 64 (if + * both are true, the application gets the *64 functions, and the regular + * functions are changed to 64 bits) -- in case these are set on systems + * without large file support, _LFS64_LARGEFILE must also be true + */ +#ifdef Z_LARGE64 + ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); + ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int)); + ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile)); + ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile)); + ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t)); + ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t)); +#endif + +#if !defined(ZLIB_INTERNAL) && defined(Z_WANT64) +# ifdef Z_PREFIX_SET +# define z_gzopen z_gzopen64 +# define z_gzseek z_gzseek64 +# define z_gztell z_gztell64 +# define z_gzoffset z_gzoffset64 +# define z_adler32_combine z_adler32_combine64 +# define z_crc32_combine z_crc32_combine64 +# else +# define gzopen gzopen64 +# define gzseek gzseek64 +# define gztell gztell64 +# define gzoffset gzoffset64 +# define adler32_combine adler32_combine64 +# define crc32_combine crc32_combine64 +# endif +# ifndef Z_LARGE64 + ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); + ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int)); + ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile)); + ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile)); + ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); + ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); +# endif +#else + ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *)); + ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int)); + ZEXTERN z_off_t ZEXPORT gztell OF((gzFile)); + ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile)); + ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t)); + ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t)); +#endif + +#else /* Z_SOLO */ + + ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t)); + ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t)); + +#endif /* !Z_SOLO */ + +/* hack for buggy compilers */ +#if !defined(ZUTIL_H) && !defined(NO_DUMMY_DECL) + struct internal_state {int dummy;}; +#endif + +/* undocumented functions */ +ZEXTERN const char * ZEXPORT zError OF((int)); +ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp)); +ZEXTERN const z_crc_t FAR * ZEXPORT get_crc_table OF((void)); +ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int)); +ZEXTERN int ZEXPORT inflateResetKeep OF((z_streamp)); +ZEXTERN int ZEXPORT deflateResetKeep OF((z_streamp)); +#if defined(_WIN32) && !defined(Z_SOLO) +ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path, + const char *mode)); +#endif +#if defined(STDC) || defined(Z_HAVE_STDARG_H) +# ifndef Z_SOLO +ZEXTERN int ZEXPORTVA gzvprintf Z_ARG((gzFile file, + const char *format, + va_list va)); +# endif +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* ZLIB_H */ diff --git a/ThirdParty/zlib128-dll/lib/zdll.lib b/ThirdParty/zlib128-dll/lib/zdll.lib new file mode 100644 index 0000000000000000000000000000000000000000..669b186cc5a5cfb531800a670b7abb32bfffae3b GIT binary patch literal 15256 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 literal 0 HcmV?d00001 diff --git a/ThirdParty/zlib128-dll/lib/zlib.def b/ThirdParty/zlib128-dll/lib/zlib.def new file mode 100644 index 0000000..face655 --- /dev/null +++ b/ThirdParty/zlib128-dll/lib/zlib.def @@ -0,0 +1,86 @@ +; zlib data compression library +EXPORTS +; basic functions + zlibVersion + deflate + deflateEnd + inflate + inflateEnd +; advanced functions + deflateSetDictionary + deflateCopy + deflateReset + deflateParams + deflateTune + deflateBound + deflatePending + deflatePrime + deflateSetHeader + inflateSetDictionary + inflateGetDictionary + inflateSync + inflateCopy + inflateReset + inflateReset2 + inflatePrime + inflateMark + inflateGetHeader + inflateBack + inflateBackEnd + zlibCompileFlags +; utility functions + compress + compress2 + compressBound + uncompress + gzopen + gzdopen + gzbuffer + gzsetparams + gzread + gzwrite + gzprintf + gzvprintf + gzputs + gzgets + gzputc + gzgetc + gzungetc + gzflush + gzseek + gzrewind + gztell + gzoffset + gzeof + gzdirect + gzclose + gzclose_r + gzclose_w + gzerror + gzclearerr +; large file functions + gzopen64 + gzseek64 + gztell64 + gzoffset64 + adler32_combine64 + crc32_combine64 +; checksum functions + adler32 + crc32 + adler32_combine + crc32_combine +; various hacks, don't look :) + deflateInit_ + deflateInit2_ + inflateInit_ + inflateInit2_ + inflateBackInit_ + gzgetc_ + zError + inflateSyncPoint + get_crc_table + inflateUndermine + inflateResetKeep + deflateResetKeep + gzopen_w diff --git a/ThirdParty/zlib128-dll/test/example_d.exe b/ThirdParty/zlib128-dll/test/example_d.exe new file mode 100644 index 0000000000000000000000000000000000000000..1061952b844918126d263ef1c730546bb4a50107 GIT binary patch literal 38912 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 VBe!Cl8y)|Dbm~97__rzWzXAHFG=%^F literal 0 HcmV?d00001 diff --git a/ThirdParty/zlib128-dll/test/minigzip_d.exe b/ThirdParty/zlib128-dll/test/minigzip_d.exe new file mode 100644 index 0000000000000000000000000000000000000000..e829976d93fec59cc5cc38d4f7af40a6f6b87637 GIT binary patch literal 35840 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 PuYUfY(X0RWTk*dDdX5d7 literal 0 HcmV?d00001 diff --git a/ThirdParty/zlib128-dll/zlib1.dll b/ThirdParty/zlib128-dll/zlib1.dll new file mode 100644 index 0000000000000000000000000000000000000000..9ea38d5cf3e0ddbeaccc0122ce3cdb6c3741a3e1 GIT binary patch literal 107520 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

          |MhCkB4mr`;oB! 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 + +class UtilsTest : public ::testing::Test +{ +}; + +TEST_F(UtilsTest, ConvertsStringToInt) +{ + ASSERT_EQ(5, Utils::ConvertInt("5")); +} diff --git a/UnitTest/gmock-1.7.0/CHANGES b/UnitTest/gmock-1.7.0/CHANGES new file mode 100644 index 0000000..d6f2f76 --- /dev/null +++ b/UnitTest/gmock-1.7.0/CHANGES @@ -0,0 +1,126 @@ +Changes for 1.7.0: + +* All new improvements in Google Test 1.7.0. +* New feature: matchers DoubleNear(), FloatNear(), + NanSensitiveDoubleNear(), NanSensitiveFloatNear(), + UnorderedElementsAre(), UnorderedElementsAreArray(), WhenSorted(), + WhenSortedBy(), IsEmpty(), and SizeIs(). +* Improvement: Google Mock can now be built as a DLL. +* Improvement: when compiled by a C++11 compiler, matchers AllOf() + and AnyOf() can accept an arbitrary number of matchers. +* Improvement: when compiled by a C++11 compiler, matchers + ElementsAreArray() can accept an initializer list. +* Improvement: when exceptions are enabled, a mock method with no + default action now throws instead crashing the test. +* Improvement: added class testing::StringMatchResultListener to aid + definition of composite matchers. +* Improvement: function return types used in MOCK_METHOD*() macros can + now contain unprotected commas. +* Improvement (potentially breaking): EXPECT_THAT() and ASSERT_THAT() + are now more strict in ensuring that the value type and the matcher + type are compatible, catching potential bugs in tests. +* Improvement: Pointee() now works on an optional. +* Improvement: the ElementsAreArray() matcher can now take a vector or + iterator range as input, and makes a copy of its input elements + before the conversion to a Matcher. +* Improvement: the Google Mock Generator can now generate mocks for + some class templates. +* Bug fix: mock object destruction triggerred by another mock object's + destruction no longer hangs. +* Improvement: Google Mock Doctor works better with newer Clang and + GCC now. +* Compatibility fixes. +* Bug/warning fixes. + +Changes for 1.6.0: + +* Compilation is much faster and uses much less memory, especially + when the constructor and destructor of a mock class are moved out of + the class body. +* New matchers: Pointwise(), Each(). +* New actions: ReturnPointee() and ReturnRefOfCopy(). +* CMake support. +* Project files for Visual Studio 2010. +* AllOf() and AnyOf() can handle up-to 10 arguments now. +* Google Mock doctor understands Clang error messages now. +* SetArgPointee<> now accepts string literals. +* gmock_gen.py handles storage specifier macros and template return + types now. +* Compatibility fixes. +* Bug fixes and implementation clean-ups. +* Potentially incompatible changes: disables the harmful 'make install' + command in autotools. + +Potentially breaking changes: + +* The description string for MATCHER*() changes from Python-style + interpolation to an ordinary C++ string expression. +* SetArgumentPointee is deprecated in favor of SetArgPointee. +* Some non-essential project files for Visual Studio 2005 are removed. + +Changes for 1.5.0: + + * New feature: Google Mock can be safely used in multi-threaded tests + on platforms having pthreads. + * New feature: function for printing a value of arbitrary type. + * New feature: function ExplainMatchResult() for easy definition of + composite matchers. + * The new matcher API lets user-defined matchers generate custom + explanations more directly and efficiently. + * Better failure messages all around. + * NotNull() and IsNull() now work with smart pointers. + * Field() and Property() now work when the matcher argument is a pointer + passed by reference. + * Regular expression matchers on all platforms. + * Added GCC 4.0 support for Google Mock Doctor. + * Added gmock_all_test.cc for compiling most Google Mock tests + in a single file. + * Significantly cleaned up compiler warnings. + * Bug fixes, better test coverage, and implementation clean-ups. + + Potentially breaking changes: + + * Custom matchers defined using MatcherInterface or MakePolymorphicMatcher() + need to be updated after upgrading to Google Mock 1.5.0; matchers defined + using MATCHER or MATCHER_P* aren't affected. + * Dropped support for 'make install'. + +Changes for 1.4.0 (we skipped 1.2.* and 1.3.* to match the version of +Google Test): + + * Works in more environments: Symbian and minGW, Visual C++ 7.1. + * Lighter weight: comes with our own implementation of TR1 tuple (no + more dependency on Boost!). + * New feature: --gmock_catch_leaked_mocks for detecting leaked mocks. + * New feature: ACTION_TEMPLATE for defining templatized actions. + * New feature: the .After() clause for specifying expectation order. + * New feature: the .With() clause for for specifying inter-argument + constraints. + * New feature: actions ReturnArg(), ReturnNew(...), and + DeleteArg(). + * New feature: matchers Key(), Pair(), Args<...>(), AllArgs(), IsNull(), + and Contains(). + * New feature: utility class MockFunction, useful for checkpoints, etc. + * New feature: functions Value(x, m) and SafeMatcherCast(m). + * New feature: copying a mock object is rejected at compile time. + * New feature: a script for fusing all Google Mock and Google Test + source files for easy deployment. + * Improved the Google Mock doctor to diagnose more diseases. + * Improved the Google Mock generator script. + * Compatibility fixes for Mac OS X and gcc. + * Bug fixes and implementation clean-ups. + +Changes for 1.1.0: + + * New feature: ability to use Google Mock with any testing framework. + * New feature: macros for easily defining new matchers + * New feature: macros for easily defining new actions. + * New feature: more container matchers. + * New feature: actions for accessing function arguments and throwing + exceptions. + * Improved the Google Mock doctor script for diagnosing compiler errors. + * Bug fixes and implementation clean-ups. + +Changes for 1.0.0: + + * Initial Open Source release of Google Mock diff --git a/UnitTest/gmock-1.7.0/CMakeLists.txt b/UnitTest/gmock-1.7.0/CMakeLists.txt new file mode 100644 index 0000000..572d044 --- /dev/null +++ b/UnitTest/gmock-1.7.0/CMakeLists.txt @@ -0,0 +1,171 @@ +######################################################################## +# CMake build script for Google Mock. +# +# To run the tests for Google Mock itself on Linux, use 'make test' or +# ctest. You can select which tests to run using 'ctest -R regex'. +# For more options, run 'ctest --help'. + +# BUILD_SHARED_LIBS is a standard CMake variable, but we declare it here to +# make it prominent in the GUI. +option(BUILD_SHARED_LIBS "Build shared libraries (DLLs)." OFF) + +option(gmock_build_tests "Build all of Google Mock's own tests." OFF) + +# A directory to find Google Test sources. +if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/gtest/CMakeLists.txt") + set(gtest_dir gtest) +else() + set(gtest_dir ../gtest) +endif() + +# Defines pre_project_set_up_hermetic_build() and set_up_hermetic_build(). +include("${gtest_dir}/cmake/hermetic_build.cmake" OPTIONAL) + +if (COMMAND pre_project_set_up_hermetic_build) + # Google Test also calls hermetic setup functions from add_subdirectory, + # although its changes will not affect things at the current scope. + pre_project_set_up_hermetic_build() +endif() + +######################################################################## +# +# Project-wide settings + +# Name of the project. +# +# CMake files in this project can refer to the root source directory +# as ${gmock_SOURCE_DIR} and to the root binary directory as +# ${gmock_BINARY_DIR}. +# Language "C" is required for find_package(Threads). +project(gmock CXX C) +cmake_minimum_required(VERSION 2.6.2) + +if (COMMAND set_up_hermetic_build) + set_up_hermetic_build() +endif() + +# Instructs CMake to process Google Test's CMakeLists.txt and add its +# targets to the current scope. We are placing Google Test's binary +# directory in a subdirectory of our own as VC compilation may break +# if they are the same (the default). +add_subdirectory("${gtest_dir}" "${gmock_BINARY_DIR}/gtest") + +# Although Google Test's CMakeLists.txt calls this function, the +# changes there don't affect the current scope. Therefore we have to +# call it again here. +config_compiler_and_linker() # from ${gtest_dir}/cmake/internal_utils.cmake + +# Adds Google Mock's and Google Test's header directories to the search path. +include_directories("${gmock_SOURCE_DIR}/include" + "${gmock_SOURCE_DIR}" + "${gtest_SOURCE_DIR}/include" + # This directory is needed to build directly from Google + # Test sources. + "${gtest_SOURCE_DIR}") + +######################################################################## +# +# Defines the gmock & gmock_main libraries. User tests should link +# with one of them. + +# Google Mock libraries. We build them using more strict warnings than what +# are used for other targets, to ensure that Google Mock can be compiled by +# a user aggressive about warnings. +cxx_library(gmock + "${cxx_strict}" + "${gtest_dir}/src/gtest-all.cc" + src/gmock-all.cc) + +cxx_library(gmock_main + "${cxx_strict}" + "${gtest_dir}/src/gtest-all.cc" + src/gmock-all.cc + src/gmock_main.cc) + +######################################################################## +# +# Google Mock's own tests. +# +# You can skip this section if you aren't interested in testing +# Google Mock itself. +# +# The tests are not built by default. To build them, set the +# gmock_build_tests option to ON. You can do it by running ccmake +# or specifying the -Dgmock_build_tests=ON flag when running cmake. + +if (gmock_build_tests) + # This must be set in the root directory for the tests to be run by + # 'make test' or ctest. + enable_testing() + + ############################################################ + # C++ tests built with standard compiler flags. + + cxx_test(gmock-actions_test gmock_main) + cxx_test(gmock-cardinalities_test gmock_main) + cxx_test(gmock_ex_test gmock_main) + cxx_test(gmock-generated-actions_test gmock_main) + cxx_test(gmock-generated-function-mockers_test gmock_main) + cxx_test(gmock-generated-internal-utils_test gmock_main) + cxx_test(gmock-generated-matchers_test gmock_main) + cxx_test(gmock-internal-utils_test gmock_main) + cxx_test(gmock-matchers_test gmock_main) + cxx_test(gmock-more-actions_test gmock_main) + cxx_test(gmock-nice-strict_test gmock_main) + cxx_test(gmock-port_test gmock_main) + cxx_test(gmock-spec-builders_test gmock_main) + cxx_test(gmock_link_test gmock_main test/gmock_link2_test.cc) + cxx_test(gmock_test gmock_main) + + if (CMAKE_USE_PTHREADS_INIT) + cxx_test(gmock_stress_test gmock) + endif() + + # gmock_all_test is commented to save time building and running tests. + # Uncomment if necessary. + # cxx_test(gmock_all_test gmock_main) + + ############################################################ + # C++ tests built with non-standard compiler flags. + + cxx_library(gmock_main_no_exception "${cxx_no_exception}" + "${gtest_dir}/src/gtest-all.cc" src/gmock-all.cc src/gmock_main.cc) + + cxx_library(gmock_main_no_rtti "${cxx_no_rtti}" + "${gtest_dir}/src/gtest-all.cc" src/gmock-all.cc src/gmock_main.cc) + + cxx_library(gmock_main_use_own_tuple "${cxx_use_own_tuple}" + "${gtest_dir}/src/gtest-all.cc" src/gmock-all.cc src/gmock_main.cc) + + cxx_test_with_flags(gmock-more-actions_no_exception_test "${cxx_no_exception}" + gmock_main_no_exception test/gmock-more-actions_test.cc) + + cxx_test_with_flags(gmock_no_rtti_test "${cxx_no_rtti}" + gmock_main_no_rtti test/gmock-spec-builders_test.cc) + + cxx_test_with_flags(gmock_use_own_tuple_test "${cxx_use_own_tuple}" + gmock_main_use_own_tuple test/gmock-spec-builders_test.cc) + + cxx_shared_library(shared_gmock_main "${cxx_default}" + "${gtest_dir}/src/gtest-all.cc" src/gmock-all.cc src/gmock_main.cc) + + # Tests that a binary can be built with Google Mock as a shared library. On + # some system configurations, it may not possible to run the binary without + # knowing more details about the system configurations. We do not try to run + # this binary. To get a more robust shared library coverage, configure with + # -DBUILD_SHARED_LIBS=ON. + cxx_executable_with_flags(shared_gmock_test_ "${cxx_default}" + shared_gmock_main test/gmock-spec-builders_test.cc) + set_target_properties(shared_gmock_test_ + PROPERTIES + COMPILE_DEFINITIONS "GTEST_LINKED_AS_SHARED_LIBRARY=1") + + ############################################################ + # Python tests. + + cxx_executable(gmock_leak_test_ test gmock_main) + py_test(gmock_leak_test) + + cxx_executable(gmock_output_test_ test gmock) + py_test(gmock_output_test) +endif() diff --git a/UnitTest/gmock-1.7.0/CONTRIBUTORS b/UnitTest/gmock-1.7.0/CONTRIBUTORS new file mode 100644 index 0000000..6e9ae36 --- /dev/null +++ b/UnitTest/gmock-1.7.0/CONTRIBUTORS @@ -0,0 +1,40 @@ +# This file contains a list of people who've made non-trivial +# contribution to the Google C++ Mocking Framework project. People +# who commit code to the project are encouraged to add their names +# here. Please keep the list sorted by first names. + +Benoit Sigoure +Bogdan Piloca +Chandler Carruth +Dave MacLachlan +David Anderson +Dean Sturtevant +Gene Volovich +Hal Burch +Jeffrey Yasskin +Jim Keller +Joe Walnes +Jon Wray +Keir Mierle +Keith Ray +Kostya Serebryany +Lev Makhlis +Manuel Klimek +Mario Tanev +Mark Paskin +Markus Heule +Matthew Simmons +Mike Bland +Neal Norwitz +Nermin Ozkiranartli +Owen Carlsen +Paneendra Ba +Paul Menage +Piotr Kaminski +Russ Rufer +Sverre Sundsdal +Takeshi Yoshino +Vadim Berman +Vlad Losev +Wolfgang Klier +Zhanyong Wan diff --git a/UnitTest/gmock-1.7.0/LICENSE b/UnitTest/gmock-1.7.0/LICENSE new file mode 100644 index 0000000..1941a11 --- /dev/null +++ b/UnitTest/gmock-1.7.0/LICENSE @@ -0,0 +1,28 @@ +Copyright 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/UnitTest/gmock-1.7.0/Makefile.am b/UnitTest/gmock-1.7.0/Makefile.am new file mode 100644 index 0000000..0eb7bd8 --- /dev/null +++ b/UnitTest/gmock-1.7.0/Makefile.am @@ -0,0 +1,216 @@ +# Automake file + +# Nonstandard package files for distribution. +EXTRA_DIST = LICENSE + +# We may need to build our internally packaged gtest. If so, it will be +# included in the 'subdirs' variable. +SUBDIRS = $(subdirs) + +# This is generated by the configure script, so clean it for distribution. +DISTCLEANFILES = scripts/gmock-config + +# We define the global AM_CPPFLAGS as everything we compile includes from these +# directories. +AM_CPPFLAGS = $(GTEST_CPPFLAGS) -I$(srcdir)/include + +# Modifies compiler and linker flags for pthreads compatibility. +if HAVE_PTHREADS + AM_CXXFLAGS = @PTHREAD_CFLAGS@ -DGTEST_HAS_PTHREAD=1 + AM_LIBS = @PTHREAD_LIBS@ +endif + +# Build rules for libraries. +lib_LTLIBRARIES = lib/libgmock.la lib/libgmock_main.la + +lib_libgmock_la_SOURCES = src/gmock-all.cc + +pkginclude_HEADERS = \ + include/gmock/gmock-actions.h \ + include/gmock/gmock-cardinalities.h \ + include/gmock/gmock-generated-actions.h \ + include/gmock/gmock-generated-function-mockers.h \ + include/gmock/gmock-generated-matchers.h \ + include/gmock/gmock-generated-nice-strict.h \ + include/gmock/gmock-matchers.h \ + include/gmock/gmock-more-actions.h \ + include/gmock/gmock-more-matchers.h \ + include/gmock/gmock-spec-builders.h \ + include/gmock/gmock.h + +pkginclude_internaldir = $(pkgincludedir)/internal +pkginclude_internal_HEADERS = \ + include/gmock/internal/gmock-generated-internal-utils.h \ + include/gmock/internal/gmock-internal-utils.h \ + include/gmock/internal/gmock-port.h + +lib_libgmock_main_la_SOURCES = src/gmock_main.cc +lib_libgmock_main_la_LIBADD = lib/libgmock.la + +# Build rules for tests. Automake's naming for some of these variables isn't +# terribly obvious, so this is a brief reference: +# +# TESTS -- Programs run automatically by "make check" +# check_PROGRAMS -- Programs built by "make check" but not necessarily run + +TESTS= +check_PROGRAMS= +AM_LDFLAGS = $(GTEST_LDFLAGS) + +# This exercises all major components of Google Mock. It also +# verifies that libgmock works. +TESTS += test/gmock-spec-builders_test +check_PROGRAMS += test/gmock-spec-builders_test +test_gmock_spec_builders_test_SOURCES = test/gmock-spec-builders_test.cc +test_gmock_spec_builders_test_LDADD = $(GTEST_LIBS) lib/libgmock.la + +# This tests using Google Mock in multiple translation units. It also +# verifies that libgmock_main and libgmock work. +TESTS += test/gmock_link_test +check_PROGRAMS += test/gmock_link_test +test_gmock_link_test_SOURCES = \ + test/gmock_link2_test.cc \ + test/gmock_link_test.cc \ + test/gmock_link_test.h +test_gmock_link_test_LDADD = $(GTEST_LIBS) lib/libgmock_main.la lib/libgmock.la + +if HAVE_PYTHON + # Tests that fused gmock files compile and work. + TESTS += test/gmock_fused_test + check_PROGRAMS += test/gmock_fused_test + test_gmock_fused_test_SOURCES = \ + fused-src/gmock-gtest-all.cc \ + fused-src/gmock/gmock.h \ + fused-src/gmock_main.cc \ + fused-src/gtest/gtest.h \ + test/gmock_test.cc + test_gmock_fused_test_CPPFLAGS = -I"$(srcdir)/fused-src" +endif + +# Google Mock source files that we don't compile directly. +GMOCK_SOURCE_INGLUDES = \ + src/gmock-cardinalities.cc \ + src/gmock-internal-utils.cc \ + src/gmock-matchers.cc \ + src/gmock-spec-builders.cc \ + src/gmock.cc + +EXTRA_DIST += $(GMOCK_SOURCE_INGLUDES) + +# C++ tests that we don't compile using autotools. +EXTRA_DIST += \ + test/gmock-actions_test.cc \ + test/gmock_all_test.cc \ + test/gmock-cardinalities_test.cc \ + test/gmock_ex_test.cc \ + test/gmock-generated-actions_test.cc \ + test/gmock-generated-function-mockers_test.cc \ + test/gmock-generated-internal-utils_test.cc \ + test/gmock-generated-matchers_test.cc \ + test/gmock-internal-utils_test.cc \ + test/gmock-matchers_test.cc \ + test/gmock-more-actions_test.cc \ + test/gmock-nice-strict_test.cc \ + test/gmock-port_test.cc \ + test/gmock_stress_test.cc + +# Python tests, which we don't run using autotools. +EXTRA_DIST += \ + test/gmock_leak_test.py \ + test/gmock_leak_test_.cc \ + test/gmock_output_test.py \ + test/gmock_output_test_.cc \ + test/gmock_output_test_golden.txt \ + test/gmock_test_utils.py + +# Nonstandard package files for distribution. +EXTRA_DIST += \ + CHANGES \ + CONTRIBUTORS \ + make/Makefile + +# Pump scripts for generating Google Mock headers. +# TODO(chandlerc@google.com): automate the generation of *.h from *.h.pump. +EXTRA_DIST += \ + include/gmock/gmock-generated-actions.h.pump \ + include/gmock/gmock-generated-function-mockers.h.pump \ + include/gmock/gmock-generated-matchers.h.pump \ + include/gmock/gmock-generated-nice-strict.h.pump \ + include/gmock/internal/gmock-generated-internal-utils.h.pump + +# Script for fusing Google Mock and Google Test source files. +EXTRA_DIST += scripts/fuse_gmock_files.py + +# The Google Mock Generator tool from the cppclean project. +EXTRA_DIST += \ + scripts/generator/LICENSE \ + scripts/generator/README \ + scripts/generator/README.cppclean \ + scripts/generator/cpp/__init__.py \ + scripts/generator/cpp/ast.py \ + scripts/generator/cpp/gmock_class.py \ + scripts/generator/cpp/keywords.py \ + scripts/generator/cpp/tokenize.py \ + scripts/generator/cpp/utils.py \ + scripts/generator/gmock_gen.py + +# CMake scripts. +EXTRA_DIST += \ + CMakeLists.txt + +# Microsoft Visual Studio 2005 projects. +EXTRA_DIST += \ + msvc/2005/gmock.sln \ + msvc/2005/gmock.vcproj \ + msvc/2005/gmock_config.vsprops \ + msvc/2005/gmock_main.vcproj \ + msvc/2005/gmock_test.vcproj + +# Microsoft Visual Studio 2010 projects. +EXTRA_DIST += \ + msvc/2010/gmock.sln \ + msvc/2010/gmock.vcxproj \ + msvc/2010/gmock_config.props \ + msvc/2010/gmock_main.vcxproj \ + msvc/2010/gmock_test.vcxproj + +if HAVE_PYTHON +# gmock_test.cc does not really depend on files generated by the +# fused-gmock-internal rule. However, gmock_test.o does, and it is +# important to include test/gmock_test.cc as part of this rule in order to +# prevent compiling gmock_test.o until all dependent files have been +# generated. +$(test_gmock_fused_test_SOURCES): fused-gmock-internal + +# TODO(vladl@google.com): Find a way to add Google Tests's sources here. +fused-gmock-internal: $(pkginclude_HEADERS) $(pkginclude_internal_HEADERS) \ + $(lib_libgmock_la_SOURCES) $(GMOCK_SOURCE_INGLUDES) \ + $(lib_libgmock_main_la_SOURCES) \ + scripts/fuse_gmock_files.py + mkdir -p "$(srcdir)/fused-src" + chmod -R u+w "$(srcdir)/fused-src" + rm -f "$(srcdir)/fused-src/gtest/gtest.h" + rm -f "$(srcdir)/fused-src/gmock/gmock.h" + rm -f "$(srcdir)/fused-src/gmock-gtest-all.cc" + "$(srcdir)/scripts/fuse_gmock_files.py" "$(srcdir)/fused-src" + cp -f "$(srcdir)/src/gmock_main.cc" "$(srcdir)/fused-src" + +maintainer-clean-local: + rm -rf "$(srcdir)/fused-src" +endif + +# Death tests may produce core dumps in the build directory. In case +# this happens, clean them to keep distcleancheck happy. +CLEANFILES = core + +# Disables 'make install' as installing a compiled version of Google +# Mock can lead to undefined behavior due to violation of the +# One-Definition Rule. + +install-exec-local: + echo "'make install' is dangerous and not supported. Instead, see README for how to integrate Google Mock into your build system." + false + +install-data-local: + echo "'make install' is dangerous and not supported. Instead, see README for how to integrate Google Mock into your build system." + false diff --git a/UnitTest/gmock-1.7.0/Makefile.in b/UnitTest/gmock-1.7.0/Makefile.in new file mode 100644 index 0000000..fe21536 --- /dev/null +++ b/UnitTest/gmock-1.7.0/Makefile.in @@ -0,0 +1,1357 @@ +# Makefile.in generated by automake 1.11.3 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +# Automake file + + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +TESTS = test/gmock-spec-builders_test$(EXEEXT) \ + test/gmock_link_test$(EXEEXT) $(am__EXEEXT_1) +check_PROGRAMS = test/gmock-spec-builders_test$(EXEEXT) \ + test/gmock_link_test$(EXEEXT) $(am__EXEEXT_1) +@HAVE_PYTHON_TRUE@am__append_1 = test/gmock_fused_test +@HAVE_PYTHON_TRUE@am__append_2 = test/gmock_fused_test +subdir = . +DIST_COMMON = README $(am__configure_deps) $(pkginclude_HEADERS) \ + $(pkginclude_internal_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(top_srcdir)/build-aux/config.h.in \ + $(top_srcdir)/configure $(top_srcdir)/scripts/gmock-config.in \ + build-aux/config.guess build-aux/config.sub build-aux/depcomp \ + build-aux/install-sh build-aux/ltmain.sh build-aux/missing +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/gtest/m4/acx_pthread.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/build-aux/config.h +CONFIG_CLEAN_FILES = scripts/gmock-config +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)" \ + "$(DESTDIR)$(pkginclude_internaldir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +lib_libgmock_la_LIBADD = +am__dirstamp = $(am__leading_dot)dirstamp +am_lib_libgmock_la_OBJECTS = src/gmock-all.lo +lib_libgmock_la_OBJECTS = $(am_lib_libgmock_la_OBJECTS) +lib_libgmock_main_la_DEPENDENCIES = lib/libgmock.la +am_lib_libgmock_main_la_OBJECTS = src/gmock_main.lo +lib_libgmock_main_la_OBJECTS = $(am_lib_libgmock_main_la_OBJECTS) +@HAVE_PYTHON_TRUE@am__EXEEXT_1 = test/gmock_fused_test$(EXEEXT) +am_test_gmock_spec_builders_test_OBJECTS = \ + test/gmock-spec-builders_test.$(OBJEXT) +test_gmock_spec_builders_test_OBJECTS = \ + $(am_test_gmock_spec_builders_test_OBJECTS) +am__DEPENDENCIES_1 = +test_gmock_spec_builders_test_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + lib/libgmock.la +am__test_gmock_fused_test_SOURCES_DIST = fused-src/gmock-gtest-all.cc \ + fused-src/gmock/gmock.h fused-src/gmock_main.cc \ + fused-src/gtest/gtest.h test/gmock_test.cc +@HAVE_PYTHON_TRUE@am_test_gmock_fused_test_OBJECTS = fused-src/test_gmock_fused_test-gmock-gtest-all.$(OBJEXT) \ +@HAVE_PYTHON_TRUE@ fused-src/test_gmock_fused_test-gmock_main.$(OBJEXT) \ +@HAVE_PYTHON_TRUE@ test/test_gmock_fused_test-gmock_test.$(OBJEXT) +test_gmock_fused_test_OBJECTS = $(am_test_gmock_fused_test_OBJECTS) +test_gmock_fused_test_LDADD = $(LDADD) +am_test_gmock_link_test_OBJECTS = test/gmock_link2_test.$(OBJEXT) \ + test/gmock_link_test.$(OBJEXT) +test_gmock_link_test_OBJECTS = $(am_test_gmock_link_test_OBJECTS) +test_gmock_link_test_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + lib/libgmock_main.la lib/libgmock.la +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/build-aux +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(lib_libgmock_la_SOURCES) $(lib_libgmock_main_la_SOURCES) \ + $(test_gmock_spec_builders_test_SOURCES) \ + $(test_gmock_fused_test_SOURCES) \ + $(test_gmock_link_test_SOURCES) +DIST_SOURCES = $(lib_libgmock_la_SOURCES) \ + $(lib_libgmock_main_la_SOURCES) \ + $(test_gmock_spec_builders_test_SOURCES) \ + $(am__test_gmock_fused_test_SOURCES_DIST) \ + $(test_gmock_link_test_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +HEADERS = $(pkginclude_HEADERS) $(pkginclude_internal_HEADERS) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ + $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ + distdir dist dist-all distcheck +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 $(distdir).zip +GZIP_ENV = --best +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GREP = @GREP@ +GTEST_CONFIG = @GTEST_CONFIG@ +GTEST_CPPFLAGS = @GTEST_CPPFLAGS@ +GTEST_CXXFLAGS = @GTEST_CXXFLAGS@ +GTEST_LDFLAGS = @GTEST_LDFLAGS@ +GTEST_LIBS = @GTEST_LIBS@ +GTEST_VERSION = @GTEST_VERSION@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ +PYTHON = @PYTHON@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +acx_pthread_config = @acx_pthread_config@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +subdirs = @subdirs@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ + +# Nonstandard package files for distribution. + +# C++ tests that we don't compile using autotools. + +# Python tests, which we don't run using autotools. + +# Nonstandard package files for distribution. + +# Pump scripts for generating Google Mock headers. +# TODO(chandlerc@google.com): automate the generation of *.h from *.h.pump. + +# Script for fusing Google Mock and Google Test source files. + +# The Google Mock Generator tool from the cppclean project. + +# CMake scripts. + +# Microsoft Visual Studio 2005 projects. + +# Microsoft Visual Studio 2010 projects. +EXTRA_DIST = LICENSE $(GMOCK_SOURCE_INGLUDES) \ + test/gmock-actions_test.cc test/gmock_all_test.cc \ + test/gmock-cardinalities_test.cc test/gmock_ex_test.cc \ + test/gmock-generated-actions_test.cc \ + test/gmock-generated-function-mockers_test.cc \ + test/gmock-generated-internal-utils_test.cc \ + test/gmock-generated-matchers_test.cc \ + test/gmock-internal-utils_test.cc test/gmock-matchers_test.cc \ + test/gmock-more-actions_test.cc test/gmock-nice-strict_test.cc \ + test/gmock-port_test.cc test/gmock_stress_test.cc \ + test/gmock_leak_test.py test/gmock_leak_test_.cc \ + test/gmock_output_test.py test/gmock_output_test_.cc \ + test/gmock_output_test_golden.txt test/gmock_test_utils.py \ + CHANGES CONTRIBUTORS make/Makefile \ + include/gmock/gmock-generated-actions.h.pump \ + include/gmock/gmock-generated-function-mockers.h.pump \ + include/gmock/gmock-generated-matchers.h.pump \ + include/gmock/gmock-generated-nice-strict.h.pump \ + include/gmock/internal/gmock-generated-internal-utils.h.pump \ + scripts/fuse_gmock_files.py scripts/generator/LICENSE \ + scripts/generator/README scripts/generator/README.cppclean \ + scripts/generator/cpp/__init__.py scripts/generator/cpp/ast.py \ + scripts/generator/cpp/gmock_class.py \ + scripts/generator/cpp/keywords.py \ + scripts/generator/cpp/tokenize.py \ + scripts/generator/cpp/utils.py scripts/generator/gmock_gen.py \ + CMakeLists.txt msvc/2005/gmock.sln msvc/2005/gmock.vcproj \ + msvc/2005/gmock_config.vsprops msvc/2005/gmock_main.vcproj \ + msvc/2005/gmock_test.vcproj msvc/2010/gmock.sln \ + msvc/2010/gmock.vcxproj msvc/2010/gmock_config.props \ + msvc/2010/gmock_main.vcxproj msvc/2010/gmock_test.vcxproj + +# We may need to build our internally packaged gtest. If so, it will be +# included in the 'subdirs' variable. +SUBDIRS = $(subdirs) + +# This is generated by the configure script, so clean it for distribution. +DISTCLEANFILES = scripts/gmock-config + +# We define the global AM_CPPFLAGS as everything we compile includes from these +# directories. +AM_CPPFLAGS = $(GTEST_CPPFLAGS) -I$(srcdir)/include + +# Modifies compiler and linker flags for pthreads compatibility. +@HAVE_PTHREADS_TRUE@AM_CXXFLAGS = @PTHREAD_CFLAGS@ -DGTEST_HAS_PTHREAD=1 +@HAVE_PTHREADS_TRUE@AM_LIBS = @PTHREAD_LIBS@ + +# Build rules for libraries. +lib_LTLIBRARIES = lib/libgmock.la lib/libgmock_main.la +lib_libgmock_la_SOURCES = src/gmock-all.cc +pkginclude_HEADERS = \ + include/gmock/gmock-actions.h \ + include/gmock/gmock-cardinalities.h \ + include/gmock/gmock-generated-actions.h \ + include/gmock/gmock-generated-function-mockers.h \ + include/gmock/gmock-generated-matchers.h \ + include/gmock/gmock-generated-nice-strict.h \ + include/gmock/gmock-matchers.h \ + include/gmock/gmock-more-actions.h \ + include/gmock/gmock-more-matchers.h \ + include/gmock/gmock-spec-builders.h \ + include/gmock/gmock.h + +pkginclude_internaldir = $(pkgincludedir)/internal +pkginclude_internal_HEADERS = \ + include/gmock/internal/gmock-generated-internal-utils.h \ + include/gmock/internal/gmock-internal-utils.h \ + include/gmock/internal/gmock-port.h + +lib_libgmock_main_la_SOURCES = src/gmock_main.cc +lib_libgmock_main_la_LIBADD = lib/libgmock.la +AM_LDFLAGS = $(GTEST_LDFLAGS) +test_gmock_spec_builders_test_SOURCES = test/gmock-spec-builders_test.cc +test_gmock_spec_builders_test_LDADD = $(GTEST_LIBS) lib/libgmock.la +test_gmock_link_test_SOURCES = \ + test/gmock_link2_test.cc \ + test/gmock_link_test.cc \ + test/gmock_link_test.h + +test_gmock_link_test_LDADD = $(GTEST_LIBS) lib/libgmock_main.la lib/libgmock.la +@HAVE_PYTHON_TRUE@test_gmock_fused_test_SOURCES = \ +@HAVE_PYTHON_TRUE@ fused-src/gmock-gtest-all.cc \ +@HAVE_PYTHON_TRUE@ fused-src/gmock/gmock.h \ +@HAVE_PYTHON_TRUE@ fused-src/gmock_main.cc \ +@HAVE_PYTHON_TRUE@ fused-src/gtest/gtest.h \ +@HAVE_PYTHON_TRUE@ test/gmock_test.cc + +@HAVE_PYTHON_TRUE@test_gmock_fused_test_CPPFLAGS = -I"$(srcdir)/fused-src" + +# Google Mock source files that we don't compile directly. +GMOCK_SOURCE_INGLUDES = \ + src/gmock-cardinalities.cc \ + src/gmock-internal-utils.cc \ + src/gmock-matchers.cc \ + src/gmock-spec-builders.cc \ + src/gmock.cc + + +# Death tests may produce core dumps in the build directory. In case +# this happens, clean them to keep distcleancheck happy. +CLEANFILES = core +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .cc .lo .o .obj +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +build-aux/config.h: build-aux/stamp-h1 + @if test ! -f $@; then rm -f build-aux/stamp-h1; else :; fi + @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) build-aux/stamp-h1; else :; fi + +build-aux/stamp-h1: $(top_srcdir)/build-aux/config.h.in $(top_builddir)/config.status + @rm -f build-aux/stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status build-aux/config.h +$(top_srcdir)/build-aux/config.h.in: $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f build-aux/stamp-h1 + touch $@ + +distclean-hdr: + -rm -f build-aux/config.h build-aux/stamp-h1 +scripts/gmock-config: $(top_builddir)/config.status $(top_srcdir)/scripts/gmock-config.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +src/$(am__dirstamp): + @$(MKDIR_P) src + @: > src/$(am__dirstamp) +src/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) src/$(DEPDIR) + @: > src/$(DEPDIR)/$(am__dirstamp) +src/gmock-all.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) +lib/$(am__dirstamp): + @$(MKDIR_P) lib + @: > lib/$(am__dirstamp) +lib/libgmock.la: $(lib_libgmock_la_OBJECTS) $(lib_libgmock_la_DEPENDENCIES) $(EXTRA_lib_libgmock_la_DEPENDENCIES) lib/$(am__dirstamp) + $(CXXLINK) -rpath $(libdir) $(lib_libgmock_la_OBJECTS) $(lib_libgmock_la_LIBADD) $(LIBS) +src/gmock_main.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) +lib/libgmock_main.la: $(lib_libgmock_main_la_OBJECTS) $(lib_libgmock_main_la_DEPENDENCIES) $(EXTRA_lib_libgmock_main_la_DEPENDENCIES) lib/$(am__dirstamp) + $(CXXLINK) -rpath $(libdir) $(lib_libgmock_main_la_OBJECTS) $(lib_libgmock_main_la_LIBADD) $(LIBS) + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +test/$(am__dirstamp): + @$(MKDIR_P) test + @: > test/$(am__dirstamp) +test/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) test/$(DEPDIR) + @: > test/$(DEPDIR)/$(am__dirstamp) +test/gmock-spec-builders_test.$(OBJEXT): test/$(am__dirstamp) \ + test/$(DEPDIR)/$(am__dirstamp) +test/gmock-spec-builders_test$(EXEEXT): $(test_gmock_spec_builders_test_OBJECTS) $(test_gmock_spec_builders_test_DEPENDENCIES) $(EXTRA_test_gmock_spec_builders_test_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/gmock-spec-builders_test$(EXEEXT) + $(CXXLINK) $(test_gmock_spec_builders_test_OBJECTS) $(test_gmock_spec_builders_test_LDADD) $(LIBS) +fused-src/$(am__dirstamp): + @$(MKDIR_P) fused-src + @: > fused-src/$(am__dirstamp) +fused-src/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) fused-src/$(DEPDIR) + @: > fused-src/$(DEPDIR)/$(am__dirstamp) +fused-src/test_gmock_fused_test-gmock-gtest-all.$(OBJEXT): \ + fused-src/$(am__dirstamp) fused-src/$(DEPDIR)/$(am__dirstamp) +fused-src/test_gmock_fused_test-gmock_main.$(OBJEXT): \ + fused-src/$(am__dirstamp) fused-src/$(DEPDIR)/$(am__dirstamp) +test/test_gmock_fused_test-gmock_test.$(OBJEXT): test/$(am__dirstamp) \ + test/$(DEPDIR)/$(am__dirstamp) +test/gmock_fused_test$(EXEEXT): $(test_gmock_fused_test_OBJECTS) $(test_gmock_fused_test_DEPENDENCIES) $(EXTRA_test_gmock_fused_test_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/gmock_fused_test$(EXEEXT) + $(CXXLINK) $(test_gmock_fused_test_OBJECTS) $(test_gmock_fused_test_LDADD) $(LIBS) +test/gmock_link2_test.$(OBJEXT): test/$(am__dirstamp) \ + test/$(DEPDIR)/$(am__dirstamp) +test/gmock_link_test.$(OBJEXT): test/$(am__dirstamp) \ + test/$(DEPDIR)/$(am__dirstamp) +test/gmock_link_test$(EXEEXT): $(test_gmock_link_test_OBJECTS) $(test_gmock_link_test_DEPENDENCIES) $(EXTRA_test_gmock_link_test_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/gmock_link_test$(EXEEXT) + $(CXXLINK) $(test_gmock_link_test_OBJECTS) $(test_gmock_link_test_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + -rm -f fused-src/test_gmock_fused_test-gmock-gtest-all.$(OBJEXT) + -rm -f fused-src/test_gmock_fused_test-gmock_main.$(OBJEXT) + -rm -f src/gmock-all.$(OBJEXT) + -rm -f src/gmock-all.lo + -rm -f src/gmock_main.$(OBJEXT) + -rm -f src/gmock_main.lo + -rm -f test/gmock-spec-builders_test.$(OBJEXT) + -rm -f test/gmock_link2_test.$(OBJEXT) + -rm -f test/gmock_link_test.$(OBJEXT) + -rm -f test/test_gmock_fused_test-gmock_test.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@fused-src/$(DEPDIR)/test_gmock_fused_test-gmock-gtest-all.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@fused-src/$(DEPDIR)/test_gmock_fused_test-gmock_main.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/gmock-all.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/gmock_main.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/gmock-spec-builders_test.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/gmock_link2_test.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/gmock_link_test.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_gmock_fused_test-gmock_test.Po@am__quote@ + +.cc.o: +@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< + +.cc.obj: +@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cc.lo: +@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< + +fused-src/test_gmock_fused_test-gmock-gtest-all.o: fused-src/gmock-gtest-all.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/test_gmock_fused_test-gmock-gtest-all.o -MD -MP -MF fused-src/$(DEPDIR)/test_gmock_fused_test-gmock-gtest-all.Tpo -c -o fused-src/test_gmock_fused_test-gmock-gtest-all.o `test -f 'fused-src/gmock-gtest-all.cc' || echo '$(srcdir)/'`fused-src/gmock-gtest-all.cc +@am__fastdepCXX_TRUE@ $(am__mv) fused-src/$(DEPDIR)/test_gmock_fused_test-gmock-gtest-all.Tpo fused-src/$(DEPDIR)/test_gmock_fused_test-gmock-gtest-all.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gmock-gtest-all.cc' object='fused-src/test_gmock_fused_test-gmock-gtest-all.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/test_gmock_fused_test-gmock-gtest-all.o `test -f 'fused-src/gmock-gtest-all.cc' || echo '$(srcdir)/'`fused-src/gmock-gtest-all.cc + +fused-src/test_gmock_fused_test-gmock-gtest-all.obj: fused-src/gmock-gtest-all.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/test_gmock_fused_test-gmock-gtest-all.obj -MD -MP -MF fused-src/$(DEPDIR)/test_gmock_fused_test-gmock-gtest-all.Tpo -c -o fused-src/test_gmock_fused_test-gmock-gtest-all.obj `if test -f 'fused-src/gmock-gtest-all.cc'; then $(CYGPATH_W) 'fused-src/gmock-gtest-all.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gmock-gtest-all.cc'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) fused-src/$(DEPDIR)/test_gmock_fused_test-gmock-gtest-all.Tpo fused-src/$(DEPDIR)/test_gmock_fused_test-gmock-gtest-all.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gmock-gtest-all.cc' object='fused-src/test_gmock_fused_test-gmock-gtest-all.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/test_gmock_fused_test-gmock-gtest-all.obj `if test -f 'fused-src/gmock-gtest-all.cc'; then $(CYGPATH_W) 'fused-src/gmock-gtest-all.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gmock-gtest-all.cc'; fi` + +fused-src/test_gmock_fused_test-gmock_main.o: fused-src/gmock_main.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/test_gmock_fused_test-gmock_main.o -MD -MP -MF fused-src/$(DEPDIR)/test_gmock_fused_test-gmock_main.Tpo -c -o fused-src/test_gmock_fused_test-gmock_main.o `test -f 'fused-src/gmock_main.cc' || echo '$(srcdir)/'`fused-src/gmock_main.cc +@am__fastdepCXX_TRUE@ $(am__mv) fused-src/$(DEPDIR)/test_gmock_fused_test-gmock_main.Tpo fused-src/$(DEPDIR)/test_gmock_fused_test-gmock_main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gmock_main.cc' object='fused-src/test_gmock_fused_test-gmock_main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/test_gmock_fused_test-gmock_main.o `test -f 'fused-src/gmock_main.cc' || echo '$(srcdir)/'`fused-src/gmock_main.cc + +fused-src/test_gmock_fused_test-gmock_main.obj: fused-src/gmock_main.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/test_gmock_fused_test-gmock_main.obj -MD -MP -MF fused-src/$(DEPDIR)/test_gmock_fused_test-gmock_main.Tpo -c -o fused-src/test_gmock_fused_test-gmock_main.obj `if test -f 'fused-src/gmock_main.cc'; then $(CYGPATH_W) 'fused-src/gmock_main.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gmock_main.cc'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) fused-src/$(DEPDIR)/test_gmock_fused_test-gmock_main.Tpo fused-src/$(DEPDIR)/test_gmock_fused_test-gmock_main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gmock_main.cc' object='fused-src/test_gmock_fused_test-gmock_main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/test_gmock_fused_test-gmock_main.obj `if test -f 'fused-src/gmock_main.cc'; then $(CYGPATH_W) 'fused-src/gmock_main.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gmock_main.cc'; fi` + +test/test_gmock_fused_test-gmock_test.o: test/gmock_test.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test/test_gmock_fused_test-gmock_test.o -MD -MP -MF test/$(DEPDIR)/test_gmock_fused_test-gmock_test.Tpo -c -o test/test_gmock_fused_test-gmock_test.o `test -f 'test/gmock_test.cc' || echo '$(srcdir)/'`test/gmock_test.cc +@am__fastdepCXX_TRUE@ $(am__mv) test/$(DEPDIR)/test_gmock_fused_test-gmock_test.Tpo test/$(DEPDIR)/test_gmock_fused_test-gmock_test.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test/gmock_test.cc' object='test/test_gmock_fused_test-gmock_test.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o test/test_gmock_fused_test-gmock_test.o `test -f 'test/gmock_test.cc' || echo '$(srcdir)/'`test/gmock_test.cc + +test/test_gmock_fused_test-gmock_test.obj: test/gmock_test.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test/test_gmock_fused_test-gmock_test.obj -MD -MP -MF test/$(DEPDIR)/test_gmock_fused_test-gmock_test.Tpo -c -o test/test_gmock_fused_test-gmock_test.obj `if test -f 'test/gmock_test.cc'; then $(CYGPATH_W) 'test/gmock_test.cc'; else $(CYGPATH_W) '$(srcdir)/test/gmock_test.cc'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) test/$(DEPDIR)/test_gmock_fused_test-gmock_test.Tpo test/$(DEPDIR)/test_gmock_fused_test-gmock_test.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test/gmock_test.cc' object='test/test_gmock_fused_test-gmock_test.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gmock_fused_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o test/test_gmock_fused_test-gmock_test.obj `if test -f 'test/gmock_test.cc'; then $(CYGPATH_W) 'test/gmock_test.cc'; else $(CYGPATH_W) '$(srcdir)/test/gmock_test.cc'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + -rm -rf lib/.libs lib/_libs + -rm -rf src/.libs src/_libs + -rm -rf test/.libs test/_libs + +distclean-libtool: + -rm -f libtool config.lt +install-pkgincludeHEADERS: $(pkginclude_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" + @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ + done + +uninstall-pkgincludeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) +install-pkginclude_internalHEADERS: $(pkginclude_internal_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(pkginclude_internaldir)" || $(MKDIR_P) "$(DESTDIR)$(pkginclude_internaldir)" + @list='$(pkginclude_internal_HEADERS)'; test -n "$(pkginclude_internaldir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkginclude_internaldir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkginclude_internaldir)" || exit $$?; \ + done + +uninstall-pkginclude_internalHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(pkginclude_internal_HEADERS)'; test -n "$(pkginclude_internaldir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pkginclude_internaldir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @fail= failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @fail= failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + fi; \ + echo "$${col}$$dashes$${std}"; \ + echo "$${col}$$banner$${std}"; \ + test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \ + test -z "$$report" || echo "$${col}$$report$${std}"; \ + echo "$${col}$$dashes$${std}"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__remove_distdir) + +dist-lzma: distdir + tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma + $(am__remove_distdir) + +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__remove_distdir) + +dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__remove_distdir) +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + +dist dist-all: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lzma*) \ + lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir); chmod a+w $(distdir) + mkdir $(distdir)/_build + mkdir $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-recursive +all-am: Makefile $(LTLIBRARIES) $(HEADERS) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(pkginclude_internaldir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -rm -f fused-src/$(DEPDIR)/$(am__dirstamp) + -rm -f fused-src/$(am__dirstamp) + -rm -f lib/$(am__dirstamp) + -rm -f src/$(DEPDIR)/$(am__dirstamp) + -rm -f src/$(am__dirstamp) + -rm -f test/$(DEPDIR)/$(am__dirstamp) + -rm -f test/$(am__dirstamp) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +@HAVE_PYTHON_FALSE@maintainer-clean-local: +clean: clean-recursive + +clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \ + clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf fused-src/$(DEPDIR) src/$(DEPDIR) test/$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-hdr distclean-libtool distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-data-local install-pkgincludeHEADERS \ + install-pkginclude_internalHEADERS + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: install-exec-local install-libLTLIBRARIES + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -rf fused-src/$(DEPDIR) src/$(DEPDIR) test/$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic \ + maintainer-clean-local + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES uninstall-pkgincludeHEADERS \ + uninstall-pkginclude_internalHEADERS + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ + ctags-recursive install-am install-strip tags-recursive + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am am--refresh check check-TESTS check-am clean \ + clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \ + clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ + dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \ + dist-zip distcheck distclean distclean-compile \ + distclean-generic distclean-hdr distclean-libtool \ + distclean-tags distcleancheck distdir distuninstallcheck dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-data-local install-dvi \ + install-dvi-am install-exec install-exec-am install-exec-local \ + install-html install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-pkgincludeHEADERS install-pkginclude_internalHEADERS \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic maintainer-clean-local mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-libLTLIBRARIES uninstall-pkgincludeHEADERS \ + uninstall-pkginclude_internalHEADERS + + +@HAVE_PYTHON_TRUE@ # Tests that fused gmock files compile and work. + +# gmock_test.cc does not really depend on files generated by the +# fused-gmock-internal rule. However, gmock_test.o does, and it is +# important to include test/gmock_test.cc as part of this rule in order to +# prevent compiling gmock_test.o until all dependent files have been +# generated. +@HAVE_PYTHON_TRUE@$(test_gmock_fused_test_SOURCES): fused-gmock-internal + +# TODO(vladl@google.com): Find a way to add Google Tests's sources here. +@HAVE_PYTHON_TRUE@fused-gmock-internal: $(pkginclude_HEADERS) $(pkginclude_internal_HEADERS) \ +@HAVE_PYTHON_TRUE@ $(lib_libgmock_la_SOURCES) $(GMOCK_SOURCE_INGLUDES) \ +@HAVE_PYTHON_TRUE@ $(lib_libgmock_main_la_SOURCES) \ +@HAVE_PYTHON_TRUE@ scripts/fuse_gmock_files.py +@HAVE_PYTHON_TRUE@ mkdir -p "$(srcdir)/fused-src" +@HAVE_PYTHON_TRUE@ chmod -R u+w "$(srcdir)/fused-src" +@HAVE_PYTHON_TRUE@ rm -f "$(srcdir)/fused-src/gtest/gtest.h" +@HAVE_PYTHON_TRUE@ rm -f "$(srcdir)/fused-src/gmock/gmock.h" +@HAVE_PYTHON_TRUE@ rm -f "$(srcdir)/fused-src/gmock-gtest-all.cc" +@HAVE_PYTHON_TRUE@ "$(srcdir)/scripts/fuse_gmock_files.py" "$(srcdir)/fused-src" +@HAVE_PYTHON_TRUE@ cp -f "$(srcdir)/src/gmock_main.cc" "$(srcdir)/fused-src" + +@HAVE_PYTHON_TRUE@maintainer-clean-local: +@HAVE_PYTHON_TRUE@ rm -rf "$(srcdir)/fused-src" + +# Disables 'make install' as installing a compiled version of Google +# Mock can lead to undefined behavior due to violation of the +# One-Definition Rule. + +install-exec-local: + echo "'make install' is dangerous and not supported. Instead, see README for how to integrate Google Mock into your build system." + false + +install-data-local: + echo "'make install' is dangerous and not supported. Instead, see README for how to integrate Google Mock into your build system." + false + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/UnitTest/gmock-1.7.0/README b/UnitTest/gmock-1.7.0/README new file mode 100644 index 0000000..ed2e69b --- /dev/null +++ b/UnitTest/gmock-1.7.0/README @@ -0,0 +1,369 @@ +Google C++ Mocking Framework +============================ + +http://code.google.com/p/googlemock/ + +Overview +-------- + +Google's framework for writing and using C++ mock classes on a variety +of platforms (Linux, Mac OS X, Windows, Windows CE, Symbian, etc). +Inspired by jMock, EasyMock, and Hamcrest, and designed with C++'s +specifics in mind, it can help you derive better designs of your +system and write better tests. + +Google Mock: + +- provides a declarative syntax for defining mocks, +- can easily define partial (hybrid) mocks, which are a cross of real + and mock objects, +- handles functions of arbitrary types and overloaded functions, +- comes with a rich set of matchers for validating function arguments, +- uses an intuitive syntax for controlling the behavior of a mock, +- does automatic verification of expectations (no record-and-replay + needed), +- allows arbitrary (partial) ordering constraints on + function calls to be expressed, +- lets a user extend it by defining new matchers and actions. +- does not use exceptions, and +- is easy to learn and use. + +Please see the project page above for more information as well as the +mailing list for questions, discussions, and development. There is +also an IRC channel on OFTC (irc.oftc.net) #gtest available. Please +join us! + +Please note that code under scripts/generator/ is from the cppclean +project (http://code.google.com/p/cppclean/) and under the Apache +License, which is different from Google Mock's license. + +Requirements for End Users +-------------------------- + +Google Mock is implemented on top of the Google Test C++ testing +framework (http://code.google.com/p/googletest/), and includes the +latter as part of the SVN repositary and distribution package. You +must use the bundled version of Google Test when using Google Mock, or +you may get compiler/linker errors. + +You can also easily configure Google Mock to work with another testing +framework of your choice; although it will still need Google Test as +an internal dependency. Please read +http://code.google.com/p/googlemock/wiki/ForDummies#Using_Google_Mock_with_Any_Testing_Framework +for how to do it. + +Google Mock depends on advanced C++ features and thus requires a more +modern compiler. The following are needed to use Google Mock: + +### Linux Requirements ### + +These are the base requirements to build and use Google Mock from a source +package (as described below): + + * GNU-compatible Make or "gmake" + * POSIX-standard shell + * POSIX(-2) Regular Expressions (regex.h) + * C++98-standard-compliant compiler (e.g. GCC 3.4 or newer) + +### Windows Requirements ### + + * Microsoft Visual C++ 8.0 SP1 or newer + +### Mac OS X Requirements ### + + * Mac OS X 10.4 Tiger or newer + * Developer Tools Installed + +Requirements for Contributors +----------------------------- + +We welcome patches. If you plan to contribute a patch, you need to +build Google Mock and its own tests from an SVN checkout (described +below), which has further requirements: + + * Automake version 1.9 or newer + * Autoconf version 2.59 or newer + * Libtool / Libtoolize + * Python version 2.3 or newer (for running some of the tests and + re-generating certain source files from templates) + +Getting the Source +------------------ + +There are two primary ways of getting Google Mock's source code: you +can download a stable source release in your preferred archive format, +or directly check out the source from our Subversion (SVN) repositary. +The SVN checkout requires a few extra steps and some extra software +packages on your system, but lets you track development and make +patches much more easily, so we highly encourage it. + +### Source Package ### + +Google Mock is released in versioned source packages which can be +downloaded from the download page [1]. Several different archive +formats are provided, but the only difference is the tools needed to +extract their contents, and the size of the resulting file. Download +whichever you are most comfortable with. + + [1] http://code.google.com/p/googlemock/downloads/list + +Once downloaded expand the archive using whichever tools you prefer +for that type. This will always result in a new directory with the +name "gmock-X.Y.Z" which contains all of the source code. Here are +some examples on Linux: + + tar -xvzf gmock-X.Y.Z.tar.gz + tar -xvjf gmock-X.Y.Z.tar.bz2 + unzip gmock-X.Y.Z.zip + +### SVN Checkout ### + +To check out the main branch (also known as the "trunk") of Google +Mock, run the following Subversion command: + + svn checkout http://googlemock.googlecode.com/svn/trunk/ gmock-svn + +If you are using a *nix system and plan to use the GNU Autotools build +system to build Google Mock (described below), you'll need to +configure it now. Otherwise you are done with getting the source +files. + +To prepare the Autotools build system, enter the target directory of +the checkout command you used ('gmock-svn') and proceed with the +following command: + + autoreconf -fvi + +Once you have completed this step, you are ready to build the library. +Note that you should only need to complete this step once. The +subsequent 'make' invocations will automatically re-generate the bits +of the build system that need to be changed. + +If your system uses older versions of the autotools, the above command +will fail. You may need to explicitly specify a version to use. For +instance, if you have both GNU Automake 1.4 and 1.9 installed and +'automake' would invoke the 1.4, use instead: + + AUTOMAKE=automake-1.9 ACLOCAL=aclocal-1.9 autoreconf -fvi + +Make sure you're using the same version of automake and aclocal. + +Setting up the Build +-------------------- + +To build Google Mock and your tests that use it, you need to tell your +build system where to find its headers and source files. The exact +way to do it depends on which build system you use, and is usually +straightforward. + +### Generic Build Instructions ### + +This section shows how you can integrate Google Mock into your +existing build system. + +Suppose you put Google Mock in directory ${GMOCK_DIR} and Google Test +in ${GTEST_DIR} (the latter is ${GMOCK_DIR}/gtest by default). To +build Google Mock, create a library build target (or a project as +called by Visual Studio and Xcode) to compile + + ${GTEST_DIR}/src/gtest-all.cc and ${GMOCK_DIR}/src/gmock-all.cc + +with + + ${GTEST_DIR}/include and ${GMOCK_DIR}/include + +in the system header search path, and + + ${GTEST_DIR} and ${GMOCK_DIR} + +in the normal header search path. Assuming a Linux-like system and gcc, +something like the following will do: + + g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \ + -isystem ${GMOCK_DIR}/include -I${GMOCK_DIR} \ + -pthread -c ${GTEST_DIR}/src/gtest-all.cc + g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \ + -isystem ${GMOCK_DIR}/include -I${GMOCK_DIR} \ + -pthread -c ${GMOCK_DIR}/src/gmock-all.cc + ar -rv libgmock.a gtest-all.o gmock-all.o + +(We need -pthread as Google Test and Google Mock use threads.) + +Next, you should compile your test source file with +${GTEST_DIR}/include and ${GMOCK_DIR}/include in the header search +path, and link it with gmock and any other necessary libraries: + + g++ -isystem ${GTEST_DIR}/include -isystem ${GMOCK_DIR}/include \ + -pthread path/to/your_test.cc libgmock.a -o your_test + +As an example, the make/ directory contains a Makefile that you can +use to build Google Mock on systems where GNU make is available +(e.g. Linux, Mac OS X, and Cygwin). It doesn't try to build Google +Mock's own tests. Instead, it just builds the Google Mock library and +a sample test. You can use it as a starting point for your own build +script. + +If the default settings are correct for your environment, the +following commands should succeed: + + cd ${GMOCK_DIR}/make + make + ./gmock_test + +If you see errors, try to tweak the contents of make/Makefile to make +them go away. There are instructions in make/Makefile on how to do +it. + +### Windows ### + +The msvc/2005 directory contains VC++ 2005 projects and the msvc/2010 +directory contains VC++ 2010 projects for building Google Mock and +selected tests. + +Change to the appropriate directory and run "msbuild gmock.sln" to +build the library and tests (or open the gmock.sln in the MSVC IDE). +If you want to create your own project to use with Google Mock, you'll +have to configure it to use the gmock_config propety sheet. For that: + + * Open the Property Manager window (View | Other Windows | Property Manager) + * Right-click on your project and select "Add Existing Property Sheet..." + * Navigate to gmock_config.vsprops or gmock_config.props and select it. + * In Project Properties | Configuration Properties | General | Additional + Include Directories, type /include. + +Tweaking Google Mock +-------------------- + +Google Mock can be used in diverse environments. The default +configuration may not work (or may not work well) out of the box in +some environments. However, you can easily tweak Google Mock by +defining control macros on the compiler command line. Generally, +these macros are named like GTEST_XYZ and you define them to either 1 +or 0 to enable or disable a certain feature. + +We list the most frequently used macros below. For a complete list, +see file ${GTEST_DIR}/include/gtest/internal/gtest-port.h. + +### Choosing a TR1 Tuple Library ### + +Google Mock uses the C++ Technical Report 1 (TR1) tuple library +heavily. Unfortunately TR1 tuple is not yet widely available with all +compilers. The good news is that Google Test 1.4.0+ implements a +subset of TR1 tuple that's enough for Google Mock's need. Google Mock +will automatically use that implementation when the compiler doesn't +provide TR1 tuple. + +Usually you don't need to care about which tuple library Google Test +and Google Mock use. However, if your project already uses TR1 tuple, +you need to tell Google Test and Google Mock to use the same TR1 tuple +library the rest of your project uses, or the two tuple +implementations will clash. To do that, add + + -DGTEST_USE_OWN_TR1_TUPLE=0 + +to the compiler flags while compiling Google Test, Google Mock, and +your tests. If you want to force Google Test and Google Mock to use +their own tuple library, just add + + -DGTEST_USE_OWN_TR1_TUPLE=1 + +to the compiler flags instead. + +If you want to use Boost's TR1 tuple library with Google Mock, please +refer to the Boost website (http://www.boost.org/) for how to obtain +it and set it up. + +### As a Shared Library (DLL) ### + +Google Mock is compact, so most users can build and link it as a static +library for the simplicity. Google Mock can be used as a DLL, but the +same DLL must contain Google Test as well. See Google Test's README +file for instructions on how to set up necessary compiler settings. + +### Tweaking Google Mock ### + +Most of Google Test's control macros apply to Google Mock as well. +Please see file ${GTEST_DIR}/README for how to tweak them. + +Upgrading from an Earlier Version +--------------------------------- + +We strive to keep Google Mock releases backward compatible. +Sometimes, though, we have to make some breaking changes for the +users' long-term benefits. This section describes what you'll need to +do if you are upgrading from an earlier version of Google Mock. + +### Upgrading from 1.1.0 or Earlier ### + +You may need to explicitly enable or disable Google Test's own TR1 +tuple library. See the instructions in section "Choosing a TR1 Tuple +Library". + +### Upgrading from 1.4.0 or Earlier ### + +On platforms where the pthread library is available, Google Test and +Google Mock use it in order to be thread-safe. For this to work, you +may need to tweak your compiler and/or linker flags. Please see the +"Multi-threaded Tests" section in file ${GTEST_DIR}/README for what +you may need to do. + +If you have custom matchers defined using MatcherInterface or +MakePolymorphicMatcher(), you'll need to update their definitions to +use the new matcher API [2]. Matchers defined using MATCHER() or +MATCHER_P*() aren't affected. + + [2] http://code.google.com/p/googlemock/wiki/CookBook#Writing_New_Monomorphic_Matchers, + http://code.google.com/p/googlemock/wiki/CookBook#Writing_New_Polymorphic_Matchers + +Developing Google Mock +---------------------- + +This section discusses how to make your own changes to Google Mock. + +### Testing Google Mock Itself ### + +To make sure your changes work as intended and don't break existing +functionality, you'll want to compile and run Google Test's own tests. +For that you'll need Autotools. First, make sure you have followed +the instructions in section "SVN Checkout" to configure Google Mock. +Then, create a build output directory and enter it. Next, + + ${GMOCK_DIR}/configure # Standard GNU configure script, --help for more info + +Once you have successfully configured Google Mock, the build steps are +standard for GNU-style OSS packages. + + make # Standard makefile following GNU conventions + make check # Builds and runs all tests - all should pass. + +Note that when building your project against Google Mock, you are building +against Google Test as well. There is no need to configure Google Test +separately. + +### Regenerating Source Files ### + +Some of Google Mock's source files are generated from templates (not +in the C++ sense) using a script. A template file is named FOO.pump, +where FOO is the name of the file it will generate. For example, the +file include/gmock/gmock-generated-actions.h.pump is used to generate +gmock-generated-actions.h in the same directory. + +Normally you don't need to worry about regenerating the source files, +unless you need to modify them. In that case, you should modify the +corresponding .pump files instead and run the 'pump' script (for Pump +is Useful for Meta Programming) to regenerate them. You can find +pump.py in the ${GTEST_DIR}/scripts/ directory. Read the Pump manual +[3] for how to use it. + + [3] http://code.google.com/p/googletest/wiki/PumpManual. + +### Contributing a Patch ### + +We welcome patches. Please read the Google Mock developer's guide [4] +for how you can contribute. In particular, make sure you have signed +the Contributor License Agreement, or we won't be able to accept the +patch. + + [4] http://code.google.com/p/googlemock/wiki/DevGuide + +Happy testing! diff --git a/UnitTest/gmock-1.7.0/aclocal.m4 b/UnitTest/gmock-1.7.0/aclocal.m4 new file mode 100644 index 0000000..567ee74 --- /dev/null +++ b/UnitTest/gmock-1.7.0/aclocal.m4 @@ -0,0 +1,9799 @@ +# generated automatically by aclocal 1.11.3 -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, +# Inc. +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, +[m4_warning([this file was generated for autoconf 2.68. +You have another version of autoconf. It may work, but is not guaranteed to. +If you have problems, you may need to regenerate the build system entirely. +To do so, use the procedure documented by the package, typically `autoreconf'.])]) + +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +m4_define([_LT_COPYING], [dnl +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +]) + +# serial 57 LT_INIT + + +# LT_PREREQ(VERSION) +# ------------------ +# Complain and exit if this libtool version is less that VERSION. +m4_defun([LT_PREREQ], +[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, + [m4_default([$3], + [m4_fatal([Libtool version $1 or higher is required], + 63)])], + [$2])]) + + +# _LT_CHECK_BUILDDIR +# ------------------ +# Complain if the absolute build directory name contains unusual characters +m4_defun([_LT_CHECK_BUILDDIR], +[case `pwd` in + *\ * | *\ *) + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; +esac +]) + + +# LT_INIT([OPTIONS]) +# ------------------ +AC_DEFUN([LT_INIT], +[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +AC_BEFORE([$0], [LT_LANG])dnl +AC_BEFORE([$0], [LT_OUTPUT])dnl +AC_BEFORE([$0], [LTDL_INIT])dnl +m4_require([_LT_CHECK_BUILDDIR])dnl + +dnl Autoconf doesn't catch unexpanded LT_ macros by default: +m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl +m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl +dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 +dnl unless we require an AC_DEFUNed macro: +AC_REQUIRE([LTOPTIONS_VERSION])dnl +AC_REQUIRE([LTSUGAR_VERSION])dnl +AC_REQUIRE([LTVERSION_VERSION])dnl +AC_REQUIRE([LTOBSOLETE_VERSION])dnl +m4_require([_LT_PROG_LTMAIN])dnl + +_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) + +dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +_LT_SETUP + +# Only expand once: +m4_define([LT_INIT]) +])# LT_INIT + +# Old names: +AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) +AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PROG_LIBTOOL], []) +dnl AC_DEFUN([AM_PROG_LIBTOOL], []) + + +# _LT_CC_BASENAME(CC) +# ------------------- +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +m4_defun([_LT_CC_BASENAME], +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +]) + + +# _LT_FILEUTILS_DEFAULTS +# ---------------------- +# It is okay to use these file commands and assume they have been set +# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +m4_defun([_LT_FILEUTILS_DEFAULTS], +[: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} +])# _LT_FILEUTILS_DEFAULTS + + +# _LT_SETUP +# --------- +m4_defun([_LT_SETUP], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl + +_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl +dnl +_LT_DECL([], [host_alias], [0], [The host system])dnl +_LT_DECL([], [host], [0])dnl +_LT_DECL([], [host_os], [0])dnl +dnl +_LT_DECL([], [build_alias], [0], [The build system])dnl +_LT_DECL([], [build], [0])dnl +_LT_DECL([], [build_os], [0])dnl +dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +dnl +AC_REQUIRE([AC_PROG_LN_S])dnl +test -z "$LN_S" && LN_S="ln -s" +_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl +dnl +AC_REQUIRE([LT_CMD_MAX_LEN])dnl +_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl +_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl +dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl +m4_require([_LT_CMD_RELOAD])dnl +m4_require([_LT_CHECK_MAGIC_METHOD])dnl +m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl +m4_require([_LT_CMD_OLD_ARCHIVE])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_WITH_SYSROOT])dnl + +_LT_CONFIG_LIBTOOL_INIT([ +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi +]) +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +_LT_CHECK_OBJDIR + +m4_require([_LT_TAG_COMPILER])dnl + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +_LT_CC_BASENAME([$compiler]) + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + _LT_PATH_MAGIC + fi + ;; +esac + +# Use C for the default configuration in the libtool script +LT_SUPPORTED_TAG([CC]) +_LT_LANG_C_CONFIG +_LT_LANG_DEFAULT_CONFIG +_LT_CONFIG_COMMANDS +])# _LT_SETUP + + +# _LT_PREPARE_SED_QUOTE_VARS +# -------------------------- +# Define a few sed substitution that help us do robust quoting. +m4_defun([_LT_PREPARE_SED_QUOTE_VARS], +[# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\([["`\\]]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' +]) + +# _LT_PROG_LTMAIN +# --------------- +# Note that this code is called both from `configure', and `config.status' +# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, +# `config.status' has no value for ac_aux_dir unless we are using Automake, +# so we pass a copy along to make sure it has a sensible value anyway. +m4_defun([_LT_PROG_LTMAIN], +[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl +_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) +ltmain="$ac_aux_dir/ltmain.sh" +])# _LT_PROG_LTMAIN + + + +# So that we can recreate a full libtool script including additional +# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS +# in macros and then make a single call at the end using the `libtool' +# label. + + +# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) +# ---------------------------------------- +# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL_INIT], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_INIT], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_INIT]) + + +# _LT_CONFIG_LIBTOOL([COMMANDS]) +# ------------------------------ +# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) + + +# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) +# ----------------------------------------------------- +m4_defun([_LT_CONFIG_SAVE_COMMANDS], +[_LT_CONFIG_LIBTOOL([$1]) +_LT_CONFIG_LIBTOOL_INIT([$2]) +]) + + +# _LT_FORMAT_COMMENT([COMMENT]) +# ----------------------------- +# Add leading comment marks to the start of each line, and a trailing +# full-stop to the whole comment if one is not present already. +m4_define([_LT_FORMAT_COMMENT], +[m4_ifval([$1], [ +m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], + [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) +)]) + + + + + +# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) +# ------------------------------------------------------------------- +# CONFIGNAME is the name given to the value in the libtool script. +# VARNAME is the (base) name used in the configure script. +# VALUE may be 0, 1 or 2 for a computed quote escaped value based on +# VARNAME. Any other value will be used directly. +m4_define([_LT_DECL], +[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], + [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], + [m4_ifval([$1], [$1], [$2])]) + lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) + m4_ifval([$4], + [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) + lt_dict_add_subkey([lt_decl_dict], [$2], + [tagged?], [m4_ifval([$5], [yes], [no])])]) +]) + + +# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) +# -------------------------------------------------------- +m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) + + +# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_tag_varnames], +[_lt_decl_filter([tagged?], [yes], $@)]) + + +# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) +# --------------------------------------------------------- +m4_define([_lt_decl_filter], +[m4_case([$#], + [0], [m4_fatal([$0: too few arguments: $#])], + [1], [m4_fatal([$0: too few arguments: $#: $1])], + [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], + [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], + [lt_dict_filter([lt_decl_dict], $@)])[]dnl +]) + + +# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) +# -------------------------------------------------- +m4_define([lt_decl_quote_varnames], +[_lt_decl_filter([value], [1], $@)]) + + +# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_dquote_varnames], +[_lt_decl_filter([value], [2], $@)]) + + +# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_varnames_tagged], +[m4_assert([$# <= 2])dnl +_$0(m4_quote(m4_default([$1], [[, ]])), + m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), + m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) +m4_define([_lt_decl_varnames_tagged], +[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) + + +# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_all_varnames], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_if([$2], [], + m4_quote(lt_decl_varnames), + m4_quote(m4_shift($@))))[]dnl +]) +m4_define([_lt_decl_all_varnames], +[lt_join($@, lt_decl_varnames_tagged([$1], + lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl +]) + + +# _LT_CONFIG_STATUS_DECLARE([VARNAME]) +# ------------------------------------ +# Quote a variable value, and forward it to `config.status' so that its +# declaration there will have the same value as in `configure'. VARNAME +# must have a single quote delimited value for this to work. +m4_define([_LT_CONFIG_STATUS_DECLARE], +[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) + + +# _LT_CONFIG_STATUS_DECLARATIONS +# ------------------------------ +# We delimit libtool config variables with single quotes, so when +# we write them to config.status, we have to be sure to quote all +# embedded single quotes properly. In configure, this macro expands +# each variable declared with _LT_DECL (and _LT_TAGDECL) into: +# +# ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' +m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], +[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), + [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAGS +# ---------------- +# Output comment and list of tags supported by the script +m4_defun([_LT_LIBTOOL_TAGS], +[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl +available_tags="_LT_TAGS"dnl +]) + + +# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) +# ----------------------------------- +# Extract the dictionary values for VARNAME (optionally with TAG) and +# expand to a commented shell variable setting: +# +# # Some comment about what VAR is for. +# visible_name=$lt_internal_name +m4_define([_LT_LIBTOOL_DECLARE], +[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], + [description])))[]dnl +m4_pushdef([_libtool_name], + m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl +m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), + [0], [_libtool_name=[$]$1], + [1], [_libtool_name=$lt_[]$1], + [2], [_libtool_name=$lt_[]$1], + [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl +m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl +]) + + +# _LT_LIBTOOL_CONFIG_VARS +# ----------------------- +# Produce commented declarations of non-tagged libtool config variables +# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# script. Tagged libtool config variables (even for the LIBTOOL CONFIG +# section) are produced by _LT_LIBTOOL_TAG_VARS. +m4_defun([_LT_LIBTOOL_CONFIG_VARS], +[m4_foreach([_lt_var], + m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAG_VARS(TAG) +# ------------------------- +m4_define([_LT_LIBTOOL_TAG_VARS], +[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) + + +# _LT_TAGVAR(VARNAME, [TAGNAME]) +# ------------------------------ +m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) + + +# _LT_CONFIG_COMMANDS +# ------------------- +# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of +# variables for single and double quote escaping we saved from calls +# to _LT_DECL, we can put quote escaped variables declarations +# into `config.status', and then the shell code to quote escape them in +# for loops in `config.status'. Finally, any additional code accumulated +# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. +m4_defun([_LT_CONFIG_COMMANDS], +[AC_PROVIDE_IFELSE([LT_OUTPUT], + dnl If the libtool generation code has been placed in $CONFIG_LT, + dnl instead of duplicating it all over again into config.status, + dnl then we will have config.status run $CONFIG_LT later, so it + dnl needs to know what name is stored there: + [AC_CONFIG_COMMANDS([libtool], + [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], + dnl If the libtool generation code is destined for config.status, + dnl expand the accumulated commands and init code now: + [AC_CONFIG_COMMANDS([libtool], + [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) +])#_LT_CONFIG_COMMANDS + + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], +[ + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +_LT_CONFIG_STATUS_DECLARATIONS +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$[]1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_quote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_dquote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +_LT_OUTPUT_LIBTOOL_INIT +]) + +# _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) +# ------------------------------------ +# Generate a child script FILE with all initialization necessary to +# reuse the environment learned by the parent script, and make the +# file executable. If COMMENT is supplied, it is inserted after the +# `#!' sequence but before initialization text begins. After this +# macro, additional text can be appended to FILE to form the body of +# the child script. The macro ends with non-zero status if the +# file could not be fully written (such as if the disk is full). +m4_ifdef([AS_INIT_GENERATED], +[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], +[m4_defun([_LT_GENERATED_FILE_INIT], +[m4_require([AS_PREPARE])]dnl +[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl +[lt_write_fail=0 +cat >$1 <<_ASEOF || lt_write_fail=1 +#! $SHELL +# Generated by $as_me. +$2 +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$1 <<\_ASEOF || lt_write_fail=1 +AS_SHELL_SANITIZE +_AS_PREPARE +exec AS_MESSAGE_FD>&1 +_ASEOF +test $lt_write_fail = 0 && chmod +x $1[]dnl +m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT + +# LT_OUTPUT +# --------- +# This macro allows early generation of the libtool script (before +# AC_OUTPUT is called), incase it is used in configure for compilation +# tests. +AC_DEFUN([LT_OUTPUT], +[: ${CONFIG_LT=./config.lt} +AC_MSG_NOTICE([creating $CONFIG_LT]) +_LT_GENERATED_FILE_INIT(["$CONFIG_LT"], +[# Run this file to recreate a libtool stub with the current configuration.]) + +cat >>"$CONFIG_LT" <<\_LTEOF +lt_cl_silent=false +exec AS_MESSAGE_LOG_FD>>config.log +{ + echo + AS_BOX([Running $as_me.]) +} >&AS_MESSAGE_LOG_FD + +lt_cl_help="\ +\`$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $[0] [[OPTIONS]] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl +m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) +configured by $[0], generated by m4_PACKAGE_STRING. + +Copyright (C) 2011 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test $[#] != 0 +do + case $[1] in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) AC_MSG_ERROR([unrecognized option: $[1] +Try \`$[0] --help' for more information.]) ;; + + *) AC_MSG_ERROR([unrecognized argument: $[1] +Try \`$[0] --help' for more information.]) ;; + esac + shift +done + +if $lt_cl_silent; then + exec AS_MESSAGE_FD>/dev/null +fi +_LTEOF + +cat >>"$CONFIG_LT" <<_LTEOF +_LT_OUTPUT_LIBTOOL_COMMANDS_INIT +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AC_MSG_NOTICE([creating $ofile]) +_LT_OUTPUT_LIBTOOL_COMMANDS +AS_EXIT(0) +_LTEOF +chmod +x "$CONFIG_LT" + +# configure is writing to config.log, but config.lt does its own redirection, +# appending to config.log, which fails on DOS, as config.log is still kept +# open by configure. Here we exec the FD to /dev/null, effectively closing +# config.log, so it can be properly (re)opened and appended to by config.lt. +lt_cl_success=: +test "$silent" = yes && + lt_config_lt_args="$lt_config_lt_args --quiet" +exec AS_MESSAGE_LOG_FD>/dev/null +$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false +exec AS_MESSAGE_LOG_FD>>config.log +$lt_cl_success || AS_EXIT(1) +])# LT_OUTPUT + + +# _LT_CONFIG(TAG) +# --------------- +# If TAG is the built-in tag, create an initial libtool script with a +# default configuration from the untagged config vars. Otherwise add code +# to config.status for appending the configuration named by TAG from the +# matching tagged config vars. +m4_defun([_LT_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_CONFIG_SAVE_COMMANDS([ + m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl + m4_if(_LT_TAG, [C], [ + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +_LT_COPYING +_LT_LIBTOOL_TAGS + +# ### BEGIN LIBTOOL CONFIG +_LT_LIBTOOL_CONFIG_VARS +_LT_LIBTOOL_TAG_VARS +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + _LT_PROG_LTMAIN + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + _LT_PROG_REPLACE_SHELLFNS + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" +], +[cat <<_LT_EOF >> "$ofile" + +dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded +dnl in a comment (ie after a #). +# ### BEGIN LIBTOOL TAG CONFIG: $1 +_LT_LIBTOOL_TAG_VARS(_LT_TAG) +# ### END LIBTOOL TAG CONFIG: $1 +_LT_EOF +])dnl /m4_if +], +[m4_if([$1], [], [ + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile'], []) +])dnl /_LT_CONFIG_SAVE_COMMANDS +])# _LT_CONFIG + + +# LT_SUPPORTED_TAG(TAG) +# --------------------- +# Trace this macro to discover what tags are supported by the libtool +# --tag option, using: +# autoconf --trace 'LT_SUPPORTED_TAG:$1' +AC_DEFUN([LT_SUPPORTED_TAG], []) + + +# C support is built-in for now +m4_define([_LT_LANG_C_enabled], []) +m4_define([_LT_TAGS], []) + + +# LT_LANG(LANG) +# ------------- +# Enable libtool support for the given language if not already enabled. +AC_DEFUN([LT_LANG], +[AC_BEFORE([$0], [LT_OUTPUT])dnl +m4_case([$1], + [C], [_LT_LANG(C)], + [C++], [_LT_LANG(CXX)], + [Go], [_LT_LANG(GO)], + [Java], [_LT_LANG(GCJ)], + [Fortran 77], [_LT_LANG(F77)], + [Fortran], [_LT_LANG(FC)], + [Windows Resource], [_LT_LANG(RC)], + [m4_ifdef([_LT_LANG_]$1[_CONFIG], + [_LT_LANG($1)], + [m4_fatal([$0: unsupported language: "$1"])])])dnl +])# LT_LANG + + +# _LT_LANG(LANGNAME) +# ------------------ +m4_defun([_LT_LANG], +[m4_ifdef([_LT_LANG_]$1[_enabled], [], + [LT_SUPPORTED_TAG([$1])dnl + m4_append([_LT_TAGS], [$1 ])dnl + m4_define([_LT_LANG_]$1[_enabled], [])dnl + _LT_LANG_$1_CONFIG($1)])dnl +])# _LT_LANG + + +m4_ifndef([AC_PROG_GO], [ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_GO. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +m4_defun([AC_PROG_GO], +[AC_LANG_PUSH(Go)dnl +AC_ARG_VAR([GOC], [Go compiler command])dnl +AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl +_AC_ARG_VAR_LDFLAGS()dnl +AC_CHECK_TOOL(GOC, gccgo) +if test -z "$GOC"; then + if test -n "$ac_tool_prefix"; then + AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) + fi +fi +if test -z "$GOC"; then + AC_CHECK_PROG(GOC, gccgo, gccgo, false) +fi +])#m4_defun +])#m4_ifndef + + +# _LT_LANG_DEFAULT_CONFIG +# ----------------------- +m4_defun([_LT_LANG_DEFAULT_CONFIG], +[AC_PROVIDE_IFELSE([AC_PROG_CXX], + [LT_LANG(CXX)], + [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) + +AC_PROVIDE_IFELSE([AC_PROG_F77], + [LT_LANG(F77)], + [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) + +AC_PROVIDE_IFELSE([AC_PROG_FC], + [LT_LANG(FC)], + [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) + +dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal +dnl pulling things in needlessly. +AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([LT_PROG_GCJ], + [LT_LANG(GCJ)], + [m4_ifdef([AC_PROG_GCJ], + [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([A][M_PROG_GCJ], + [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([LT_PROG_GCJ], + [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) + +AC_PROVIDE_IFELSE([AC_PROG_GO], + [LT_LANG(GO)], + [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) + +AC_PROVIDE_IFELSE([LT_PROG_RC], + [LT_LANG(RC)], + [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) +])# _LT_LANG_DEFAULT_CONFIG + +# Obsolete macros: +AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) +AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) +AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) +AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) +AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_CXX], []) +dnl AC_DEFUN([AC_LIBTOOL_F77], []) +dnl AC_DEFUN([AC_LIBTOOL_FC], []) +dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) +dnl AC_DEFUN([AC_LIBTOOL_RC], []) + + +# _LT_TAG_COMPILER +# ---------------- +m4_defun([_LT_TAG_COMPILER], +[AC_REQUIRE([AC_PROG_CC])dnl + +_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl +_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl +_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl +_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC +])# _LT_TAG_COMPILER + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +m4_defun([_LT_COMPILER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +m4_defun([_LT_LINKER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* +])# _LT_LINKER_BOILERPLATE + +# _LT_REQUIRED_DARWIN_CHECKS +# ------------------------- +m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + AC_CHECK_TOOL([LIPO], [lipo], [:]) + AC_CHECK_TOOL([OTOOL], [otool], [:]) + AC_CHECK_TOOL([OTOOL64], [otool64], [:]) + _LT_DECL([], [DSYMUTIL], [1], + [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) + _LT_DECL([], [NMEDIT], [1], + [Tool to change global to local symbols on Mac OS X]) + _LT_DECL([], [LIPO], [1], + [Tool to manipulate fat objects and archives on Mac OS X]) + _LT_DECL([], [OTOOL], [1], + [ldd/readelf like tool for Mach-O binaries on Mac OS X]) + _LT_DECL([], [OTOOL64], [1], + [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi]) + + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS="$save_LDFLAGS" + ]) + + AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], + [lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD + echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD + $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD + echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD + $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + ]) + case $host_os in + rhapsody* | darwin1.[[012]]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac +]) + + +# _LT_DARWIN_LINKER_FEATURES([TAG]) +# --------------------------------- +# Checks for linker and compiler features on darwin +m4_defun([_LT_DARWIN_LINKER_FEATURES], +[ + m4_require([_LT_REQUIRED_DARWIN_CHECKS]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_automatic, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], + [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='' + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + m4_if([$1], [CXX], +[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi +],[]) + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi +]) + +# _LT_SYS_MODULE_PATH_AIX([TAGNAME]) +# ---------------------------------- +# Links a minimal program and checks the executable +# for the system default hardcoded library path. In most cases, +# this is /usr/lib:/lib, but when the MPI compilers are used +# the location of the communication and MPI libs are included too. +# If we don't find anything, use the default library path according +# to the aix ld manual. +# Store the results from the different compilers for each TAGNAME. +# Allow to override them for all tags through lt_cv_aix_libpath. +m4_defun([_LT_SYS_MODULE_PATH_AIX], +[m4_require([_LT_DECL_SED])dnl +if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], + [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ + lt_aix_libpath_sed='[ + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }]' + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi],[]) + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + fi + ]) + aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) +fi +])# _LT_SYS_MODULE_PATH_AIX + + +# _LT_SHELL_INIT(ARG) +# ------------------- +m4_define([_LT_SHELL_INIT], +[m4_divert_text([M4SH-INIT], [$1 +])])# _LT_SHELL_INIT + + + +# _LT_PROG_ECHO_BACKSLASH +# ----------------------- +# Find how we can fake an echo command that does not interpret backslash. +# In particular, with Autoconf 2.60 or later we add some code to the start +# of the generated configure script which will find a shell with a builtin +# printf (which we can use as an echo command). +m4_defun([_LT_PROG_ECHO_BACKSLASH], +[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +AC_MSG_CHECKING([how to print strings]) +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$[]1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +case "$ECHO" in + printf*) AC_MSG_RESULT([printf]) ;; + print*) AC_MSG_RESULT([print -r]) ;; + *) AC_MSG_RESULT([cat]) ;; +esac + +m4_ifdef([_AS_DETECT_SUGGESTED], +[_AS_DETECT_SUGGESTED([ + test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test "X`printf %s $ECHO`" = "X$ECHO" \ + || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) + +_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) +_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) +])# _LT_PROG_ECHO_BACKSLASH + + +# _LT_WITH_SYSROOT +# ---------------- +AC_DEFUN([_LT_WITH_SYSROOT], +[AC_MSG_CHECKING([for sysroot]) +AC_ARG_WITH([sysroot], +[ --with-sysroot[=DIR] Search for dependent libraries within DIR + (or the compiler's sysroot if not specified).], +[], [with_sysroot=no]) + +dnl lt_sysroot will always be passed unquoted. We quote it here +dnl in case the user passed a directory name. +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_ERROR([The sysroot must be an absolute path.]) + ;; +esac + + AC_MSG_RESULT([${lt_sysroot:-no}]) +_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl +[dependent libraries, and in which our libraries should be installed.])]) + +# _LT_ENABLE_LOCK +# --------------- +m4_defun([_LT_ENABLE_LOCK], +[AC_ARG_ENABLE([libtool-lock], + [AS_HELP_STRING([--disable-libtool-lock], + [avoid locking (might break parallel builds)])]) +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*|powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" +])# _LT_ENABLE_LOCK + + +# _LT_PROG_AR +# ----------- +m4_defun([_LT_PROG_AR], +[AC_CHECK_TOOLS(AR, [ar], false) +: ${AR=ar} +: ${AR_FLAGS=cru} +_LT_DECL([], [AR], [1], [The archiver]) +_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) + +AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], + [lt_cv_ar_at_file=no + AC_COMPILE_IFELSE([AC_LANG_PROGRAM], + [echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + ]) + ]) + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi +_LT_DECL([], [archiver_list_spec], [1], + [How to feed a file listing to the archiver]) +])# _LT_PROG_AR + + +# _LT_CMD_OLD_ARCHIVE +# ------------------- +m4_defun([_LT_CMD_OLD_ARCHIVE], +[_LT_PROG_AR + +AC_CHECK_TOOL(STRIP, strip, :) +test -z "$STRIP" && STRIP=: +_LT_DECL([], [STRIP], [1], [A symbol stripping program]) + +AC_CHECK_TOOL(RANLIB, ranlib, :) +test -z "$RANLIB" && RANLIB=: +_LT_DECL([], [RANLIB], [1], + [Commands used to install an old-style archive]) + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac +_LT_DECL([], [old_postinstall_cmds], [2]) +_LT_DECL([], [old_postuninstall_cmds], [2]) +_LT_TAGDECL([], [old_archive_cmds], [2], + [Commands used to build an old-style archive]) +_LT_DECL([], [lock_old_archive_extraction], [0], + [Whether to use a lock for old archive extraction]) +])# _LT_CMD_OLD_ARCHIVE + + +# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------------------- +# Check whether the given compiler option works +AC_DEFUN([_LT_COMPILER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $RM conftest* +]) + +if test x"[$]$2" = xyes; then + m4_if([$5], , :, [$5]) +else + m4_if([$6], , :, [$6]) +fi +])# _LT_COMPILER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) + + +# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------- +# Check whether the given linker option works +AC_DEFUN([_LT_LINKER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $3" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&AS_MESSAGE_LOG_FD + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + else + $2=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" +]) + +if test x"[$]$2" = xyes; then + m4_if([$4], , :, [$4]) +else + m4_if([$5], , :, [$5]) +fi +])# _LT_LINKER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) + + +# LT_CMD_MAX_LEN +#--------------- +AC_DEFUN([LT_CMD_MAX_LEN], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +# find the maximum length of command line arguments +AC_MSG_CHECKING([the maximum length of command line arguments]) +AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac +]) +if test -n $lt_cv_sys_max_cmd_len ; then + AC_MSG_RESULT($lt_cv_sys_max_cmd_len) +else + AC_MSG_RESULT(none) +fi +max_cmd_len=$lt_cv_sys_max_cmd_len +_LT_DECL([], [max_cmd_len], [0], + [What is the maximum length of a command?]) +])# LT_CMD_MAX_LEN + +# Old name: +AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) + + +# _LT_HEADER_DLFCN +# ---------------- +m4_defun([_LT_HEADER_DLFCN], +[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl +])# _LT_HEADER_DLFCN + + +# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, +# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) +# ---------------------------------------------------------------- +m4_defun([_LT_TRY_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "$cross_compiling" = yes; then : + [$4] +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +[#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +}] +_LT_EOF + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) $1 ;; + x$lt_dlneed_uscore) $2 ;; + x$lt_dlunknown|x*) $3 ;; + esac + else : + # compilation failed + $3 + fi +fi +rm -fr conftest* +])# _LT_TRY_DLOPEN_SELF + + +# LT_SYS_DLOPEN_SELF +# ------------------ +AC_DEFUN([LT_SYS_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ]) + ;; + + *) + AC_CHECK_FUNC([shl_load], + [lt_cv_dlopen="shl_load"], + [AC_CHECK_LIB([dld], [shl_load], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [AC_CHECK_FUNC([dlopen], + [lt_cv_dlopen="dlopen"], + [AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [AC_CHECK_LIB([svld], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [AC_CHECK_LIB([dld], [dld_link], + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + ]) + ]) + ]) + ]) + ]) + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + AC_CACHE_CHECK([whether a statically linked program can dlopen itself], + lt_cv_dlopen_self_static, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, + lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) + ]) + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi +_LT_DECL([dlopen_support], [enable_dlopen], [0], + [Whether dlopen is supported]) +_LT_DECL([dlopen_self], [enable_dlopen_self], [0], + [Whether dlopen of programs is supported]) +_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], + [Whether dlopen of statically linked programs is supported]) +])# LT_SYS_DLOPEN_SELF + +# Old name: +AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) + + +# _LT_COMPILER_C_O([TAGNAME]) +# --------------------------- +# Check to see if options -c and -o are simultaneously supported by compiler. +# This macro does not hard code the compiler like AC_PROG_CC_C_O. +m4_defun([_LT_COMPILER_C_O], +[m4_require([_LT_DECL_SED])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* +]) +_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], + [Does compiler simultaneously support -c and -o options?]) +])# _LT_COMPILER_C_O + + +# _LT_COMPILER_FILE_LOCKS([TAGNAME]) +# ---------------------------------- +# Check to see if we can do hard links to lock some files if needed +m4_defun([_LT_COMPILER_FILE_LOCKS], +[m4_require([_LT_ENABLE_LOCK])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_COMPILER_C_O([$1]) + +hard_links="nottested" +if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + AC_MSG_CHECKING([if we can lock with hard links]) + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + AC_MSG_RESULT([$hard_links]) + if test "$hard_links" = no; then + AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + need_locks=warn + fi +else + need_locks=no +fi +_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) +])# _LT_COMPILER_FILE_LOCKS + + +# _LT_CHECK_OBJDIR +# ---------------- +m4_defun([_LT_CHECK_OBJDIR], +[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], +[rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null]) +objdir=$lt_cv_objdir +_LT_DECL([], [objdir], [0], + [The name of the directory that contains temporary libtool files])dnl +m4_pattern_allow([LT_OBJDIR])dnl +AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", + [Define to the sub-directory in which libtool stores uninstalled libraries.]) +])# _LT_CHECK_OBJDIR + + +# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) +# -------------------------------------- +# Check hardcoding attributes. +m4_defun([_LT_LINKER_HARDCODE_LIBPATH], +[AC_MSG_CHECKING([how to hardcode library paths into programs]) +_LT_TAGVAR(hardcode_action, $1)= +if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || + test -n "$_LT_TAGVAR(runpath_var, $1)" || + test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && + test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + # Linking always hardcodes the temporary library directory. + _LT_TAGVAR(hardcode_action, $1)=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + _LT_TAGVAR(hardcode_action, $1)=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + _LT_TAGVAR(hardcode_action, $1)=unsupported +fi +AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) + +if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || + test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi +_LT_TAGDECL([], [hardcode_action], [0], + [How to hardcode a shared library path into an executable]) +])# _LT_LINKER_HARDCODE_LIBPATH + + +# _LT_CMD_STRIPLIB +# ---------------- +m4_defun([_LT_CMD_STRIPLIB], +[m4_require([_LT_DECL_EGREP]) +striplib= +old_striplib= +AC_MSG_CHECKING([whether stripping libraries is possible]) +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac +fi +_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) +_LT_DECL([], [striplib], [1]) +])# _LT_CMD_STRIPLIB + + +# _LT_SYS_DYNAMIC_LINKER([TAG]) +# ----------------------------- +# PORTME Fill in your ld.so characteristics +m4_defun([_LT_SYS_DYNAMIC_LINKER], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_OBJDUMP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +AC_MSG_CHECKING([dynamic linker characteristics]) +m4_if([$1], + [], [ +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[[lt_foo]]++; } + if (lt_freq[[lt_foo]] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi]) +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[[4-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[[01]] | aix4.[[01]].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[[45]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[23]].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[[3-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], + [lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ + LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], + [lt_cv_shlibpath_overrides_runpath=yes])]) + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + ]) + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[[89]] | openbsd2.[[89]].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +AC_MSG_RESULT([$dynamic_linker]) +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + +_LT_DECL([], [variables_saved_for_relink], [1], + [Variables whose values should be saved in libtool wrapper scripts and + restored at link time]) +_LT_DECL([], [need_lib_prefix], [0], + [Do we need the "lib" prefix for modules?]) +_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) +_LT_DECL([], [version_type], [0], [Library versioning type]) +_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) +_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) +_LT_DECL([], [shlibpath_overrides_runpath], [0], + [Is shlibpath searched before the hard-coded library search path?]) +_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) +_LT_DECL([], [library_names_spec], [1], + [[List of archive names. First name is the real one, the rest are links. + The last name is the one that the linker finds with -lNAME]]) +_LT_DECL([], [soname_spec], [1], + [[The coded name of the library, if different from the real name]]) +_LT_DECL([], [install_override_mode], [1], + [Permission mode override for installation of shared libraries]) +_LT_DECL([], [postinstall_cmds], [2], + [Command to use after installation of a shared archive]) +_LT_DECL([], [postuninstall_cmds], [2], + [Command to use after uninstallation of a shared archive]) +_LT_DECL([], [finish_cmds], [2], + [Commands used to finish a libtool library installation in a directory]) +_LT_DECL([], [finish_eval], [1], + [[As "finish_cmds", except a single script fragment to be evaled but + not shown]]) +_LT_DECL([], [hardcode_into_libs], [0], + [Whether we should hardcode library paths into libraries]) +_LT_DECL([], [sys_lib_search_path_spec], [2], + [Compile-time system search path for libraries]) +_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], + [Run-time system search path for libraries]) +])# _LT_SYS_DYNAMIC_LINKER + + +# _LT_PATH_TOOL_PREFIX(TOOL) +# -------------------------- +# find a file program which can recognize shared library +AC_DEFUN([_LT_PATH_TOOL_PREFIX], +[m4_require([_LT_DECL_EGREP])dnl +AC_MSG_CHECKING([for $1]) +AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, +[case $MAGIC_CMD in +[[\\/*] | ?:[\\/]*]) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +dnl $ac_dummy forces splitting on constant user-supplied paths. +dnl POSIX.2 word splitting is done only on the output of word expansions, +dnl not every word. This closes a longstanding sh security hole. + ac_dummy="m4_if([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac]) +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) +else + AC_MSG_RESULT(no) +fi +_LT_DECL([], [MAGIC_CMD], [0], + [Used to examine libraries when file_magic_cmd begins with "file"])dnl +])# _LT_PATH_TOOL_PREFIX + +# Old name: +AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) + + +# _LT_PATH_MAGIC +# -------------- +# find a file program which can recognize a shared library +m4_defun([_LT_PATH_MAGIC], +[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) + else + MAGIC_CMD=: + fi +fi +])# _LT_PATH_MAGIC + + +# LT_PATH_LD +# ---------- +# find the pathname to the GNU or non-GNU linker +AC_DEFUN([LT_PATH_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PROG_ECHO_BACKSLASH])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld @<:@default=no@:>@])], + [test "$withval" = no || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(lt_cv_path_LD, +[if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[[3-9]]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac +]) + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + +_LT_DECL([], [deplibs_check_method], [1], + [Method to check whether dependent libraries are shared objects]) +_LT_DECL([], [file_magic_cmd], [1], + [Command to use when deplibs_check_method = "file_magic"]) +_LT_DECL([], [file_magic_glob], [1], + [How to find potential files when deplibs_check_method = "file_magic"]) +_LT_DECL([], [want_nocaseglob], [1], + [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) +])# _LT_CHECK_MAGIC_METHOD + + +# LT_PATH_NM +# ---------- +# find the pathname to a BSD- or MS-compatible name lister +AC_DEFUN([LT_PATH_NM], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, +[if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi]) +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + AC_SUBST([DUMPBIN]) + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm +AC_SUBST([NM]) +_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl + +AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], + [lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) + cat conftest.out >&AS_MESSAGE_LOG_FD + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest*]) +])# LT_PATH_NM + +# Old names: +AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) +AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_PROG_NM], []) +dnl AC_DEFUN([AC_PROG_NM], []) + +# _LT_CHECK_SHAREDLIB_FROM_LINKLIB +# -------------------------------- +# how to determine the name of the shared library +# associated with a specific link library. +# -- PORTME fill in with the dynamic library characteristics +m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], +[m4_require([_LT_DECL_EGREP]) +m4_require([_LT_DECL_OBJDUMP]) +m4_require([_LT_DECL_DLLTOOL]) +AC_CACHE_CHECK([how to associate runtime and link libraries], +lt_cv_sharedlib_from_linklib_cmd, +[lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac +]) +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + +_LT_DECL([], [sharedlib_from_linklib_cmd], [1], + [Command to associate shared and link libraries]) +])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB + + +# _LT_PATH_MANIFEST_TOOL +# ---------------------- +# locate the manifest tool +m4_defun([_LT_PATH_MANIFEST_TOOL], +[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], + [lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&AS_MESSAGE_LOG_FD + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest*]) +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi +_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl +])# _LT_PATH_MANIFEST_TOOL + + +# LT_LIB_M +# -------- +# check for math library +AC_DEFUN([LT_LIB_M], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +LIBM= +case $host in +*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, cos, LIBM="-lm") + ;; +esac +AC_SUBST([LIBM]) +])# LT_LIB_M + +# Old name: +AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_CHECK_LIBM], []) + + +# _LT_COMPILER_NO_RTTI([TAGNAME]) +# ------------------------------- +m4_defun([_LT_COMPILER_NO_RTTI], +[m4_require([_LT_TAG_COMPILER])dnl + +_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; + *) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; + esac + + _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], + lt_cv_prog_compiler_rtti_exceptions, + [-fno-rtti -fno-exceptions], [], + [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) +fi +_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], + [Compiler flag to turn off builtin functions]) +])# _LT_COMPILER_NO_RTTI + + +# _LT_CMD_GLOBAL_SYMBOLS +# ---------------------- +m4_defun([_LT_CMD_GLOBAL_SYMBOLS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([LT_PATH_NM])dnl +AC_REQUIRE([LT_PATH_LD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_TAG_COMPILER])dnl + +# Check for command to grab the raw symbol name followed by C symbol from nm. +AC_MSG_CHECKING([command to parse $NM output from $compiler object]) +AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], +[ +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[[BCDEGRST]]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[[BCDT]]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[[ABCDGISTW]]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[[ABCDEGRST]]' + fi + ;; +irix* | nonstopux*) + symcode='[[BCDEGRST]]' + ;; +osf*) + symcode='[[BCDEGQRST]]' + ;; +solaris*) + symcode='[[BDRT]]' + ;; +sco3.2v5*) + symcode='[[DT]]' + ;; +sysv4.2uw2*) + symcode='[[DT]]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[[ABDT]]' + ;; +sysv4) + symcode='[[DFNSTU]]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[[ABCDGIRSTW]]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK ['"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx]" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT@&t@_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT@&t@_DLSYM_CONST +#else +# define LT@&t@_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT@&t@_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[[]] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done +]) +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + AC_MSG_RESULT(failed) +else + AC_MSG_RESULT(ok) +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + +_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], + [Take the output of nm and produce a listing of raw symbols and C names]) +_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], + [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_c_name_address], + [lt_cv_sys_global_symbol_to_c_name_address], [1], + [Transform the output of nm in a C name address pair]) +_LT_DECL([global_symbol_to_c_name_address_lib_prefix], + [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], + [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([], [nm_file_list_spec], [1], + [Specify filename containing input files for $NM]) +]) # _LT_CMD_GLOBAL_SYMBOLS + + +# _LT_COMPILER_PIC([TAGNAME]) +# --------------------------- +m4_defun([_LT_COMPILER_PIC], +[m4_require([_LT_TAG_COMPILER])dnl +_LT_TAGVAR(lt_prog_compiler_wl, $1)= +_LT_TAGVAR(lt_prog_compiler_pic, $1)= +_LT_TAGVAR(lt_prog_compiler_static, $1)= + +m4_if([$1], [CXX], [ + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + case $host_os in + aix[[4-9]]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + dgux*) + case $cc_basename in + ec++*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + fi + ;; + aCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + cxx*) + # Digital/Compaq C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + lcc*) + # Lucid + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +], +[ + if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' + if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + hpux9* | hpux10* | hpux11*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC (with -KPIC) is the default. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' + _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' + ;; + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + ccc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All Alpha code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='' + ;; + *Sun\ F* | *Sun*Fortran*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + *Intel*\ [[CF]]*Compiler*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + *Portland\ Group*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All OSF/1 code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + rdos*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + solaris*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; + + sunos4*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + unicos*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + + uts4*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +]) +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" + ;; +esac + +AC_CACHE_CHECK([for $compiler option to produce PIC], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) +_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], + [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], + [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], + [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in + "" | " "*) ;; + *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; + esac], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) +fi +_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], + [Additional compiler flags for building library objects]) + +_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], + [How to pass a linker flag through the compiler]) +# +# Check to make sure the static flag actually works. +# +wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" +_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], + _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), + $lt_tmp_static_flag, + [], + [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) +_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], + [Compiler flag to prevent dynamic linking]) +])# _LT_COMPILER_PIC + + +# _LT_LINKER_SHLIBS([TAGNAME]) +# ---------------------------- +# See if the linker supports building shared libraries. +m4_defun([_LT_LINKER_SHLIBS], +[AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) +m4_if([$1], [CXX], [ + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + case $host_os in + aix[[4-9]]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + ;; + esac + ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac +], [ + runpath_var= + _LT_TAGVAR(allow_undefined_flag, $1)= + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(archive_cmds, $1)= + _LT_TAGVAR(archive_expsym_cmds, $1)= + _LT_TAGVAR(compiler_needs_object, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(hardcode_automatic, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_separator, $1)= + _LT_TAGVAR(hardcode_minus_L, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(inherit_rpath, $1)=no + _LT_TAGVAR(link_all_deplibs, $1)=unknown + _LT_TAGVAR(module_cmds, $1)= + _LT_TAGVAR(module_expsym_cmds, $1)= + _LT_TAGVAR(old_archive_from_new_cmds, $1)= + _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= + _LT_TAGVAR(thread_safe_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + _LT_TAGVAR(include_expsyms, $1)= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; + *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[[3-9]]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + _LT_TAGVAR(whole_archive_flag_spec, $1)= + tmp_sharedflag='--shared' ;; + xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + sunos4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + + if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + _LT_TAGVAR(hardcode_direct, $1)=unsupported + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + _LT_TAGVAR(link_all_deplibs, $1)=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + bsdi[[45]]*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + # FIXME: Should let the user specify the lib program. + _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + esac + ;; + + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + hpux9*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + m4_if($1, [], [ + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + _LT_LINKER_OPTION([if $CC understands -b], + _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + ;; + esac + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], + [lt_cv_irix_exported_symbol], + [save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + AC_LINK_IFELSE( + [AC_LANG_SOURCE( + [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], + [C++], [[int foo (void) { return 0; }]], + [Fortran 77], [[ + subroutine foo + end]], + [Fortran], [[ + subroutine foo + end]])])], + [lt_cv_irix_exported_symbol=yes], + [lt_cv_irix_exported_symbol=no]) + LDFLAGS="$save_LDFLAGS"]) + if test "$lt_cv_irix_exported_symbol" = yes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + newsos6) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + else + case $host_os in + openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + ;; + esac + fi + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + solaris*) + _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + fi + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4.3*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + _LT_TAGVAR(ld_shlibs, $1)=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + ;; + esac + fi + fi +]) +AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) +test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + +_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld + +_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl +_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl +_LT_DECL([], [extract_expsyms_cmds], [2], + [The commands to extract the exported symbol list from a shared archive]) + +# +# Do we need to explicitly link libc? +# +case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in +x|xyes) + # Assume -lc should be added + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $_LT_TAGVAR(archive_cmds, $1) in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + AC_CACHE_CHECK([whether -lc should be explicitly linked in], + [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), + [$RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if AC_TRY_EVAL(ac_compile) 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) + _LT_TAGVAR(allow_undefined_flag, $1)= + if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) + then + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no + else + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes + fi + _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + ]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) + ;; + esac + fi + ;; +esac + +_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], + [Whether or not to add -lc for building shared libraries]) +_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], + [enable_shared_with_static_runtimes], [0], + [Whether or not to disallow shared libs when runtime libs are static]) +_LT_TAGDECL([], [export_dynamic_flag_spec], [1], + [Compiler flag to allow reflexive dlopens]) +_LT_TAGDECL([], [whole_archive_flag_spec], [1], + [Compiler flag to generate shared objects directly from archives]) +_LT_TAGDECL([], [compiler_needs_object], [1], + [Whether the compiler copes with passing no objects directly]) +_LT_TAGDECL([], [old_archive_from_new_cmds], [2], + [Create an old-style archive from a shared archive]) +_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], + [Create a temporary old-style archive to link instead of a shared archive]) +_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) +_LT_TAGDECL([], [archive_expsym_cmds], [2]) +_LT_TAGDECL([], [module_cmds], [2], + [Commands used to build a loadable module if different from building + a shared archive.]) +_LT_TAGDECL([], [module_expsym_cmds], [2]) +_LT_TAGDECL([], [with_gnu_ld], [1], + [Whether we are building with GNU ld or not]) +_LT_TAGDECL([], [allow_undefined_flag], [1], + [Flag that allows shared libraries with undefined symbols to be built]) +_LT_TAGDECL([], [no_undefined_flag], [1], + [Flag that enforces no undefined symbols]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], + [Flag to hardcode $libdir into a binary during linking. + This must work even if $libdir does not exist]) +_LT_TAGDECL([], [hardcode_libdir_separator], [1], + [Whether we need a single "-rpath" flag with a separated argument]) +_LT_TAGDECL([], [hardcode_direct], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary]) +_LT_TAGDECL([], [hardcode_direct_absolute], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary and the resulting library dependency is + "absolute", i.e impossible to change by setting ${shlibpath_var} if the + library is relocated]) +_LT_TAGDECL([], [hardcode_minus_L], [0], + [Set to "yes" if using the -LDIR flag during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_shlibpath_var], [0], + [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_automatic], [0], + [Set to "yes" if building a shared library automatically hardcodes DIR + into the library and all subsequent libraries and executables linked + against it]) +_LT_TAGDECL([], [inherit_rpath], [0], + [Set to yes if linker adds runtime paths of dependent libraries + to runtime path list]) +_LT_TAGDECL([], [link_all_deplibs], [0], + [Whether libtool must link a program against all its dependency libraries]) +_LT_TAGDECL([], [always_export_symbols], [0], + [Set to "yes" if exported symbols are required]) +_LT_TAGDECL([], [export_symbols_cmds], [2], + [The commands to list exported symbols]) +_LT_TAGDECL([], [exclude_expsyms], [1], + [Symbols that should not be listed in the preloaded symbols]) +_LT_TAGDECL([], [include_expsyms], [1], + [Symbols that must always be exported]) +_LT_TAGDECL([], [prelink_cmds], [2], + [Commands necessary for linking programs (against libraries) with templates]) +_LT_TAGDECL([], [postlink_cmds], [2], + [Commands necessary for finishing linking programs]) +_LT_TAGDECL([], [file_list_spec], [1], + [Specify filename containing input files]) +dnl FIXME: Not yet implemented +dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], +dnl [Compiler flag to generate thread safe objects]) +])# _LT_LINKER_SHLIBS + + +# _LT_LANG_C_CONFIG([TAG]) +# ------------------------ +# Ensure that the configuration variables for a C compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_C_CONFIG], +[m4_require([_LT_DECL_EGREP])dnl +lt_save_CC="$CC" +AC_LANG_PUSH(C) + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + +_LT_TAG_COMPILER +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + LT_SYS_DLOPEN_SELF + _LT_CMD_STRIPLIB + + # Report which library types will actually be built + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_CONFIG($1) +fi +AC_LANG_POP +CC="$lt_save_CC" +])# _LT_LANG_C_CONFIG + + +# _LT_LANG_CXX_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a C++ compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_CXX_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + AC_PROG_CXXCPP +else + _lt_caught_CXX_error=yes +fi + +AC_LANG_PUSH(C++) +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(compiler_needs_object, $1)=no +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + else + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + LT_PATH_LD + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) + _LT_TAGVAR(ld_shlibs, $1)=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + freebsd-elf*) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + gnu*) + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + hpux9*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + fi + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) + _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + cxx*) + case $host in + osf3*) + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + ;; + *) + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(archive_cmds_need_lc,$1)=yes + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ + '"$_LT_TAGVAR(old_archive_cmds, $1)" + _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ + '"$_LT_TAGVAR(reload_cmds, $1)" + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) + test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + + _LT_TAGVAR(GCC, $1)="$GXX" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +AC_LANG_POP +])# _LT_LANG_CXX_CONFIG + + +# _LT_FUNC_STRIPNAME_CNF +# ---------------------- +# func_stripname_cnf prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# +# This function is identical to the (non-XSI) version of func_stripname, +# except this one can be used by m4 code that may be executed by configure, +# rather than the libtool script. +m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl +AC_REQUIRE([_LT_DECL_SED]) +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) +func_stripname_cnf () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname_cnf +])# _LT_FUNC_STRIPNAME_CNF + +# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) +# --------------------------------- +# Figure out "hidden" library dependencies from verbose +# compiler output when linking a shared library. +# Parse the compiler output and extract the necessary +# objects, libraries and library flags. +m4_defun([_LT_SYS_HIDDEN_LIBDEPS], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl +# Dependencies to place before and after the object being linked: +_LT_TAGVAR(predep_objects, $1)= +_LT_TAGVAR(postdep_objects, $1)= +_LT_TAGVAR(predeps, $1)= +_LT_TAGVAR(postdeps, $1)= +_LT_TAGVAR(compiler_lib_search_path, $1)= + +dnl we can't use the lt_simple_compile_test_code here, +dnl because it contains code intended for an executable, +dnl not a library. It's possible we should let each +dnl tag define a new lt_????_link_test_code variable, +dnl but it's only used here... +m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF +int a; +void foo (void) { a = 0; } +_LT_EOF +], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF +], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer*4 a + a=0 + return + end +_LT_EOF +], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF +], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF +public class foo { + private int a; + public void bar (void) { + a = 0; + } +}; +_LT_EOF +], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF +package foo +func foo() { +} +_LT_EOF +]) + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +dnl Parse the compiler output and extract the necessary +dnl objects, libraries and library flags. +if AC_TRY_EVAL(ac_compile); then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case ${prev}${p} in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test "$pre_test_object_deps_done" = no; then + case ${prev} in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + else + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$_LT_TAGVAR(postdeps, $1)"; then + _LT_TAGVAR(postdeps, $1)="${prev}${p}" + else + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$_LT_TAGVAR(predep_objects, $1)"; then + _LT_TAGVAR(predep_objects, $1)="$p" + else + _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" + fi + else + if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then + _LT_TAGVAR(postdep_objects, $1)="$p" + else + _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling $1 test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +m4_if([$1], [CXX], +[case $host_os in +interix[[3-9]]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + _LT_TAGVAR(predep_objects,$1)= + _LT_TAGVAR(postdep_objects,$1)= + _LT_TAGVAR(postdeps,$1)= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac +]) + +case " $_LT_TAGVAR(postdeps, $1) " in +*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; +esac + _LT_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi +_LT_TAGDECL([], [compiler_lib_search_dirs], [1], + [The directories searched by this compiler when creating a shared library]) +_LT_TAGDECL([], [predep_objects], [1], + [Dependencies to place before and after the objects being linked to + create a shared library]) +_LT_TAGDECL([], [postdep_objects], [1]) +_LT_TAGDECL([], [predeps], [1]) +_LT_TAGDECL([], [postdeps], [1]) +_LT_TAGDECL([], [compiler_lib_search_path], [1], + [The library search path used internally by the compiler when linking + a shared library]) +])# _LT_SYS_HIDDEN_LIBDEPS + + +# _LT_LANG_F77_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a Fortran 77 compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_F77_CONFIG], +[AC_LANG_PUSH(Fortran 77) +if test -z "$F77" || test "X$F77" = "Xno"; then + _lt_disable_F77=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_F77" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${F77-"f77"} + CFLAGS=$FFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + GCC=$G77 + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$G77" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" + CFLAGS="$lt_save_CFLAGS" +fi # test "$_lt_disable_F77" != yes + +AC_LANG_POP +])# _LT_LANG_F77_CONFIG + + +# _LT_LANG_FC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for a Fortran compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_FC_CONFIG], +[AC_LANG_PUSH(Fortran) + +if test -z "$FC" || test "X$FC" = "Xno"; then + _lt_disable_FC=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_FC" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${FC-"f95"} + CFLAGS=$FCFLAGS + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test "$_lt_disable_FC" != yes + +AC_LANG_POP +])# _LT_LANG_FC_CONFIG + + +# _LT_LANG_GCJ_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Java Compiler compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GCJ_CONFIG], +[AC_REQUIRE([LT_PROG_GCJ])dnl +AC_LANG_SAVE + +# Source file extension for Java test sources. +ac_ext=java + +# Object file extension for compiled Java test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="class foo {}" + +# Code to be used in simple link tests +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GCJ-"gcj"} +CFLAGS=$GCJFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# GCJ did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GCJ_CONFIG + + +# _LT_LANG_GO_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Go compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GO_CONFIG], +[AC_REQUIRE([LT_PROG_GO])dnl +AC_LANG_SAVE + +# Source file extension for Go test sources. +ac_ext=go + +# Object file extension for compiled Go test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="package main; func main() { }" + +# Code to be used in simple link tests +lt_simple_link_test_code='package main; func main() { }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GOC-"gccgo"} +CFLAGS=$GOFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# Go did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GO_CONFIG + + +# _LT_LANG_RC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for the Windows resource compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_RC_CONFIG], +[AC_REQUIRE([LT_PROG_RC])dnl +AC_LANG_SAVE + +# Source file extension for RC test sources. +ac_ext=rc + +# Object file extension for compiled RC test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' + +# Code to be used in simple link tests +lt_simple_link_test_code="$lt_simple_compile_test_code" + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC= +CC=${RC-"windres"} +CFLAGS= +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) +_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + +if test -n "$compiler"; then + : + _LT_CONFIG($1) +fi + +GCC=$lt_save_GCC +AC_LANG_RESTORE +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_RC_CONFIG + + +# LT_PROG_GCJ +# ----------- +AC_DEFUN([LT_PROG_GCJ], +[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], + [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], + [AC_CHECK_TOOL(GCJ, gcj,) + test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + AC_SUBST(GCJFLAGS)])])[]dnl +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_GCJ], []) + + +# LT_PROG_GO +# ---------- +AC_DEFUN([LT_PROG_GO], +[AC_CHECK_TOOL(GOC, gccgo,) +]) + + +# LT_PROG_RC +# ---------- +AC_DEFUN([LT_PROG_RC], +[AC_CHECK_TOOL(RC, windres,) +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_RC], []) + + +# _LT_DECL_EGREP +# -------------- +# If we don't have a new enough Autoconf to choose the best grep +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_EGREP], +[AC_REQUIRE([AC_PROG_EGREP])dnl +AC_REQUIRE([AC_PROG_FGREP])dnl +test -z "$GREP" && GREP=grep +_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) +_LT_DECL([], [EGREP], [1], [An ERE matcher]) +_LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) +]) + + +# _LT_DECL_OBJDUMP +# -------------- +# If we don't have a new enough Autoconf to choose the best objdump +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_OBJDUMP], +[AC_CHECK_TOOL(OBJDUMP, objdump, false) +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) +AC_SUBST([OBJDUMP]) +]) + +# _LT_DECL_DLLTOOL +# ---------------- +# Ensure DLLTOOL variable is set. +m4_defun([_LT_DECL_DLLTOOL], +[AC_CHECK_TOOL(DLLTOOL, dlltool, false) +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program]) +AC_SUBST([DLLTOOL]) +]) + +# _LT_DECL_SED +# ------------ +# Check for a fully-functional sed program, that truncates +# as few characters as possible. Prefer GNU sed if found. +m4_defun([_LT_DECL_SED], +[AC_PROG_SED +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" +_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) +_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], + [Sed that helps us avoid accidentally triggering echo(1) options like -n]) +])# _LT_DECL_SED + +m4_ifndef([AC_PROG_SED], [ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_SED. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # + +m4_defun([AC_PROG_SED], +[AC_MSG_CHECKING([for a sed that does not truncate output]) +AC_CACHE_VAL(lt_cv_path_SED, +[# Loop through the user's path and test for sed and gsed. +# Then use that list of sed's as ones to test for truncation. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done + done +done +IFS=$as_save_IFS +lt_ac_max=0 +lt_ac_count=0 +# Add /usr/xpg4/bin/sed as it is typically found on Solaris +# along with /bin/sed that truncates output. +for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do + test ! -f $lt_ac_sed && continue + cat /dev/null > conftest.in + lt_ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >conftest.in + # Check for GNU sed and select it if it is found. + if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then + lt_cv_path_SED=$lt_ac_sed + break + fi + while true; do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo >>conftest.nl + $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break + cmp -s conftest.out conftest.nl || break + # 10000 chars as input seems more than enough + test $lt_ac_count -gt 10 && break + lt_ac_count=`expr $lt_ac_count + 1` + if test $lt_ac_count -gt $lt_ac_max; then + lt_ac_max=$lt_ac_count + lt_cv_path_SED=$lt_ac_sed + fi + done +done +]) +SED=$lt_cv_path_SED +AC_SUBST([SED]) +AC_MSG_RESULT([$SED]) +])#AC_PROG_SED +])#m4_ifndef + +# Old name: +AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_SED], []) + + +# _LT_CHECK_SHELL_FEATURES +# ------------------------ +# Find out whether the shell is Bourne or XSI compatible, +# or has some other useful features. +m4_defun([_LT_CHECK_SHELL_FEATURES], +[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +AC_MSG_RESULT([$xsi_shell]) +_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) + +AC_MSG_CHECKING([whether the shell understands "+="]) +lt_shell_append=no +( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +AC_MSG_RESULT([$lt_shell_append]) +_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi +_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac +_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl +_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl +])# _LT_CHECK_SHELL_FEATURES + + +# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) +# ------------------------------------------------------ +# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and +# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. +m4_defun([_LT_PROG_FUNCTION_REPLACE], +[dnl { +sed -e '/^$1 ()$/,/^} # $1 /c\ +$1 ()\ +{\ +m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) +} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: +]) + + +# _LT_PROG_REPLACE_SHELLFNS +# ------------------------- +# Replace existing portable implementations of several shell functions with +# equivalent extended shell implementations where those features are available.. +m4_defun([_LT_PROG_REPLACE_SHELLFNS], +[if test x"$xsi_shell" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl + func_split_long_opt_name=${1%%=*} + func_split_long_opt_arg=${1#*=}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) + + _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) + + _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) + + _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) +fi + +if test x"$lt_shell_append" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) + + _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl + func_quote_for_eval "${2}" +dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ + eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) +fi +]) + +# _LT_PATH_CONVERSION_FUNCTIONS +# ----------------------------- +# Determine which file name conversion functions should be used by +# func_to_host_file (and, implicitly, by func_to_host_path). These are needed +# for certain cross-compile configurations and native mingw. +m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_MSG_CHECKING([how to convert $build file names to $host format]) +AC_CACHE_VAL(lt_cv_to_host_file_cmd, +[case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac +]) +to_host_file_cmd=$lt_cv_to_host_file_cmd +AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) +_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], + [0], [convert $build file names to $host format])dnl + +AC_MSG_CHECKING([how to convert $build file names to toolchain format]) +AC_CACHE_VAL(lt_cv_to_tool_file_cmd, +[#assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac +]) +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) +_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], + [0], [convert $build files to toolchain format])dnl +])# _LT_PATH_CONVERSION_FUNCTIONS + +# Helper functions for option handling. -*- Autoconf -*- +# +# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 7 ltoptions.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + + +# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +# ------------------------------------------ +m4_define([_LT_MANGLE_OPTION], +[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +# --------------------------------------- +# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +# matching handler defined, dispatch to it. Other OPTION-NAMEs are +# saved as a flag. +m4_define([_LT_SET_OPTION], +[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), + _LT_MANGLE_DEFUN([$1], [$2]), + [m4_warning([Unknown $1 option `$2'])])[]dnl +]) + + +# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +# ------------------------------------------------------------ +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +m4_define([_LT_IF_OPTION], +[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + + +# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +# ------------------------------------------------------- +# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +# are set. +m4_define([_LT_UNLESS_OPTIONS], +[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), + [m4_define([$0_found])])])[]dnl +m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +])[]dnl +]) + + +# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +# ---------------------------------------- +# OPTION-LIST is a space-separated list of Libtool options associated +# with MACRO-NAME. If any OPTION has a matching handler declared with +# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +# the unknown option and exit. +m4_defun([_LT_SET_OPTIONS], +[# Set options +m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [_LT_SET_OPTION([$1], _LT_Option)]) + +m4_if([$1],[LT_INIT],[ + dnl + dnl Simply set some default values (i.e off) if boolean options were not + dnl specified: + _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no + ]) + _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no + ]) + dnl + dnl If no reference was made to various pairs of opposing options, then + dnl we run the default mode handler for the pair. For example, if neither + dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl archives by default: + _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) + _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], + [_LT_ENABLE_FAST_INSTALL]) + ]) +])# _LT_SET_OPTIONS + + + +# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +# ----------------------------------------- +m4_define([_LT_MANGLE_DEFUN], +[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + + +# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +# ----------------------------------------------- +m4_define([LT_OPTION_DEFINE], +[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +])# LT_OPTION_DEFINE + + +# dlopen +# ------ +LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +]) + +AU_DEFUN([AC_LIBTOOL_DLOPEN], +[_LT_SET_OPTION([LT_INIT], [dlopen]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `dlopen' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + + +# win32-dll +# --------- +# Declare package support for building win32 dll's. +LT_OPTION_DEFINE([LT_INIT], [win32-dll], +[enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) + AC_CHECK_TOOL(AS, as, false) + AC_CHECK_TOOL(DLLTOOL, dlltool, false) + AC_CHECK_TOOL(OBJDUMP, objdump, false) + ;; +esac + +test -z "$AS" && AS=as +_LT_DECL([], [AS], [1], [Assembler program])dnl + +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl + +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl +])# win32-dll + +AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +_LT_SET_OPTION([LT_INIT], [win32-dll]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `win32-dll' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + + +# _LT_ENABLE_SHARED([DEFAULT]) +# ---------------------------- +# implement the --enable-shared flag, and supports the `shared' and +# `disable-shared' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_SHARED], +[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([shared], + [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], + [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) + + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED + +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +]) + +AC_DEFUN([AC_DISABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], [disable-shared]) +]) + +AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) + + + +# _LT_ENABLE_STATIC([DEFAULT]) +# ---------------------------- +# implement the --enable-static flag, and support the `static' and +# `disable-static' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_STATIC], +[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([static], + [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], + [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC + +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +]) + +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) + +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) + + + +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +# ---------------------------------- +# implement the --enable-fast-install flag, and support the `fast-install' +# and `disable-fast-install' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_FAST_INSTALL], +[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([fast-install], + [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], + [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL + +LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +# Old names: +AU_DEFUN([AC_ENABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `fast-install' option into LT_INIT's first parameter.]) +]) + +AU_DEFUN([AC_DISABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `disable-fast-install' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +# _LT_WITH_PIC([MODE]) +# -------------------- +# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# LT_INIT options. +# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +m4_define([_LT_WITH_PIC], +[AC_ARG_WITH([pic], + [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], + [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], + [lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [pic_mode=default]) + +test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC + +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + +# Old name: +AU_DEFUN([AC_LIBTOOL_PICMODE], +[_LT_SET_OPTION([LT_INIT], [pic-only]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `pic-only' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + + +m4_define([_LTDL_MODE], []) +LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], + [m4_define([_LTDL_MODE], [nonrecursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [recursive], + [m4_define([_LTDL_MODE], [recursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [subproject], + [m4_define([_LTDL_MODE], [subproject])]) + +m4_define([_LTDL_TYPE], []) +LT_OPTION_DEFINE([LTDL_INIT], [installable], + [m4_define([_LTDL_TYPE], [installable])]) +LT_OPTION_DEFINE([LTDL_INIT], [convenience], + [m4_define([_LTDL_TYPE], [convenience])]) + +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 6 ltsugar.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) + + +# lt_join(SEP, ARG1, [ARG2...]) +# ----------------------------- +# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their +# associated separator. +# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier +# versions in m4sugar had bugs. +m4_define([lt_join], +[m4_if([$#], [1], [], + [$#], [2], [[$2]], + [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) +m4_define([_lt_join], +[m4_if([$#$2], [2], [], + [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) + + +# lt_car(LIST) +# lt_cdr(LIST) +# ------------ +# Manipulate m4 lists. +# These macros are necessary as long as will still need to support +# Autoconf-2.59 which quotes differently. +m4_define([lt_car], [[$1]]) +m4_define([lt_cdr], +[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], + [$#], 1, [], + [m4_dquote(m4_shift($@))])]) +m4_define([lt_unquote], $1) + + +# lt_append(MACRO-NAME, STRING, [SEPARATOR]) +# ------------------------------------------ +# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Note that neither SEPARATOR nor STRING are expanded; they are appended +# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). +# No SEPARATOR is output if MACRO-NAME was previously undefined (different +# than defined and empty). +# +# This macro is needed until we can rely on Autoconf 2.62, since earlier +# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. +m4_define([lt_append], +[m4_define([$1], + m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) + + + +# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) +# ---------------------------------------------------------- +# Produce a SEP delimited list of all paired combinations of elements of +# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list +# has the form PREFIXmINFIXSUFFIXn. +# Needed until we can rely on m4_combine added in Autoconf 2.62. +m4_define([lt_combine], +[m4_if(m4_eval([$# > 3]), [1], + [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl +[[m4_foreach([_Lt_prefix], [$2], + [m4_foreach([_Lt_suffix], + ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, + [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) + + +# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) +# ----------------------------------------------------------------------- +# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited +# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. +m4_define([lt_if_append_uniq], +[m4_ifdef([$1], + [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], + [lt_append([$1], [$2], [$3])$4], + [$5])], + [lt_append([$1], [$2], [$3])$4])]) + + +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) + + +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) + + +# lt_dict_fetch(DICT, KEY, [SUBKEY]) +# ---------------------------------- +m4_define([lt_dict_fetch], +[m4_ifval([$3], + m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), + m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) + + +# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) +# ----------------------------------------------------------------- +m4_define([lt_if_dict_fetch], +[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], + [$5], + [$6])]) + + +# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) +# -------------------------------------------------------------- +m4_define([lt_dict_filter], +[m4_if([$5], [], [], + [lt_join(m4_quote(m4_default([$4], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), + [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl +]) + +# ltversion.m4 -- version numbers -*- Autoconf -*- +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# @configure_input@ + +# serial 3337 ltversion.m4 +# This file is part of GNU Libtool + +m4_define([LT_PACKAGE_VERSION], [2.4.2]) +m4_define([LT_PACKAGE_REVISION], [1.3337]) + +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.4.2' +macro_revision='1.3337' +_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) +_LT_DECL(, macro_revision, 0) +]) + +# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004. +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 5 lt~obsolete.m4 + +# These exist entirely to fool aclocal when bootstrapping libtool. +# +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# which have later been changed to m4_define as they aren't part of the +# exported API, or moved to Autoconf or Automake where they belong. +# +# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN +# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us +# using a macro with the same name in our local m4/libtool.m4 it'll +# pull the old libtool.m4 in (it doesn't see our shiny new m4_define +# and doesn't know about Autoconf macros at all.) +# +# So we provide this file, which has a silly filename so it's always +# included after everything else. This provides aclocal with the +# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything +# because those macros already exist, or will be overwritten later. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# +# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. +# Yes, that means every name once taken will need to remain here until +# we give up compatibility with versions before 1.7, at which point +# we need to keep only those names which we still refer to. + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) + +m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) +m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) +m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) +m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) +m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) +m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) +m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) +m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) +m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) +m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) +m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) +m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) +m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) +m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) +m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) +m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) +m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) +m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) +m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) +m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) +m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) +m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) +m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) +m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) +m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) +m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) +m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) +m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) +m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) +m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) +m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) +m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) +m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) +m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) +m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) +m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) +m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) +m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) +m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) +m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) +m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) +m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) +m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) +m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) +m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) +m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) +m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) +m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) +m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) +m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) +m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) + +# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software +# Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.11' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.11.3], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.11.3])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to +# `$srcdir', `$srcdir/..', or `$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is `.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 9 + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ(2.52)dnl + ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, +# 2010, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 12 + +# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "GCJ", or "OBJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +ifelse([$1], CC, [depcc="$CC" am_compiler_list=], + [$1], CXX, [depcc="$CXX" am_compiler_list=], + [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], UPC, [depcc="$UPC" am_compiler_list=], + [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE(dependency-tracking, +[ --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +AC_SUBST([am__nodep])dnl +_AM_SUBST_NOTMAKE([am__nodep])dnl +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +#serial 5 + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[{ + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking +# is enabled. FIXME. This creates each `.P' file that we will +# need in order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 16 + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.62])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +AM_MISSING_PROG(AUTOCONF, autoconf) +AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +AM_MISSING_PROG(AUTOHEADER, autoheader) +AM_MISSING_PROG(MAKEINFO, makeinfo) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +AC_REQUIRE([AM_PROG_MKDIR_P])dnl +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +]) +_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl +dnl The `parallel-tests' driver may need to know about EXEEXT, so add the +dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro +dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl +]) + +dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, +# Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +AC_SUBST(install_sh)]) + +# Copyright (C) 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 4 + +# AM_MAKE_INCLUDE() +# ----------------- +# Check to see how make treats includes. +AC_DEFUN([AM_MAKE_INCLUDE], +[am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +AC_MSG_CHECKING([for style of include used by $am_make]) +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 6 + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it supports --run. +# If it does, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + AC_MSG_WARN([`missing' script is too old or missing]) +fi +]) + +# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation, +# Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_MKDIR_P +# --------------- +# Check for `mkdir -p'. +AC_DEFUN([AM_PROG_MKDIR_P], +[AC_PREREQ([2.60])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, +dnl while keeping a definition of mkdir_p for backward compatibility. +dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. +dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of +dnl Makefile.ins that do not define MKDIR_P, so we do our own +dnl adjustment using top_builddir (which is defined more often than +dnl MKDIR_P). +AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl +case $mkdir_p in + [[\\/$]]* | ?:[[\\/]]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software +# Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# -------------------- +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) + +# _AM_SET_OPTIONS(OPTIONS) +# ------------------------ +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, +# 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# --------------------------------------------------------------------------- +# Adds support for distributing Python modules and packages. To +# install modules, copy them to $(pythondir), using the python_PYTHON +# automake variable. To install a package with the same name as the +# automake package, install to $(pkgpythondir), or use the +# pkgpython_PYTHON automake variable. +# +# The variables $(pyexecdir) and $(pkgpyexecdir) are provided as +# locations to install python extension modules (shared libraries). +# Another macro is required to find the appropriate flags to compile +# extension modules. +# +# If your package is configured with a different prefix to python, +# users will have to add the install directory to the PYTHONPATH +# environment variable, or create a .pth file (see the python +# documentation for details). +# +# If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will +# cause an error if the version of python installed on the system +# doesn't meet the requirement. MINIMUM-VERSION should consist of +# numbers and dots only. +AC_DEFUN([AM_PATH_PYTHON], + [ + dnl Find a Python interpreter. Python versions prior to 2.0 are not + dnl supported. (2.0 was released on October 16, 2000). + m4_define_default([_AM_PYTHON_INTERPRETER_LIST], +[python python2 python3 python3.2 python3.1 python3.0 python2.7 dnl + python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0]) + + AC_ARG_VAR([PYTHON], [the Python interpreter]) + + m4_if([$1],[],[ + dnl No version check is needed. + # Find any Python interpreter. + if test -z "$PYTHON"; then + AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) + fi + am_display_PYTHON=python + ], [ + dnl A version check is needed. + if test -n "$PYTHON"; then + # If the user set $PYTHON, use it and don't search something else. + AC_MSG_CHECKING([whether $PYTHON version >= $1]) + AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], + [AC_MSG_RESULT(yes)], + [AC_MSG_ERROR(too old)]) + am_display_PYTHON=$PYTHON + else + # Otherwise, try each interpreter until we find one that satisfies + # VERSION. + AC_CACHE_CHECK([for a Python interpreter with version >= $1], + [am_cv_pathless_PYTHON],[ + for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do + test "$am_cv_pathless_PYTHON" = none && break + AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) + done]) + # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. + if test "$am_cv_pathless_PYTHON" = none; then + PYTHON=: + else + AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) + fi + am_display_PYTHON=$am_cv_pathless_PYTHON + fi + ]) + + if test "$PYTHON" = :; then + dnl Run any user-specified action, or abort. + m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) + else + + dnl Query Python for its version number. Getting [:3] seems to be + dnl the best way to do this; it's what "site.py" does in the standard + dnl library. + + AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], + [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`]) + AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) + + dnl Use the values of $prefix and $exec_prefix for the corresponding + dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made + dnl distinct variables so they can be overridden if need be. However, + dnl general consensus is that you shouldn't need this ability. + + AC_SUBST([PYTHON_PREFIX], ['${prefix}']) + AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) + + dnl At times (like when building shared libraries) you may want + dnl to know which OS platform Python thinks this is. + + AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], + [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`]) + AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) + + + dnl Set up 4 directories: + + dnl pythondir -- where to install python scripts. This is the + dnl site-packages directory, not the python standard library + dnl directory like in previous automake betas. This behavior + dnl is more consistent with lispdir.m4 for example. + dnl Query distutils for this directory. + AC_CACHE_CHECK([for $am_display_PYTHON script directory], + [am_cv_python_pythondir], + [if test "x$prefix" = xNONE + then + am_py_prefix=$ac_default_prefix + else + am_py_prefix=$prefix + fi + am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null` + case $am_cv_python_pythondir in + $am_py_prefix*) + am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` + am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` + ;; + *) + case $am_py_prefix in + /usr|/System*) ;; + *) + am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages + ;; + esac + ;; + esac + ]) + AC_SUBST([pythondir], [$am_cv_python_pythondir]) + + dnl pkgpythondir -- $PACKAGE directory under pythondir. Was + dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is + dnl more consistent with the rest of automake. + + AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) + + dnl pyexecdir -- directory for installing python extension modules + dnl (shared libraries) + dnl Query distutils for this directory. + AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], + [am_cv_python_pyexecdir], + [if test "x$exec_prefix" = xNONE + then + am_py_exec_prefix=$am_py_prefix + else + am_py_exec_prefix=$exec_prefix + fi + am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null` + case $am_cv_python_pyexecdir in + $am_py_exec_prefix*) + am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` + am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` + ;; + *) + case $am_py_exec_prefix in + /usr|/System*) ;; + *) + am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages + ;; + esac + ;; + esac + ]) + AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) + + dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) + + AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) + + dnl Run any user-specified action. + $2 + fi + +]) + + +# AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) +# --------------------------------------------------------------------------- +# Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. +# Run ACTION-IF-FALSE otherwise. +# This test uses sys.hexversion instead of the string equivalent (first +# word of sys.version), in order to cope with versions such as 2.2c1. +# This supports Python 2.0 or higher. (2.0 was released on October 16, 2000). +AC_DEFUN([AM_PYTHON_CHECK_VERSION], + [prog="import sys +# split strings by '.' and convert to numeric. Append some zeros +# because we need at least 4 digits for the hex conversion. +# map returns an iterator in Python 3.0 and a list in 2.x +minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]] +minverhex = 0 +# xrange is not present in Python 3.0 and range returns an iterator +for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]] +sys.exit(sys.hexversion < minverhex)" + AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_RUN_LOG(COMMAND) +# ------------------- +# Run COMMAND, save the exit status in ac_status, and log it. +# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) +AC_DEFUN([AM_RUN_LOG], +[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +alias in your environment]) + fi + + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT(yes)]) + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor `install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in `make install-strip', and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 3 + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# AM_SUBST_NOTMAKE(VARIABLE) +# -------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of `v7', `ustar', or `pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AC_SUBST([AMTAR], ['$${TAR-tar}']) +m4_if([$1], [v7], + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], + [m4_case([$1], [ustar],, [pax],, + [m4_fatal([Unknown tar format])]) +AC_MSG_CHECKING([how to create a $1 tar archive]) +# Loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' +_am_tools=${am_cv_prog_tar_$1-$_am_tools} +# Do not fold the above two line into one, because Tru64 sh and +# Solaris sh will not grok spaces in the rhs of `-'. +for _am_tool in $_am_tools +do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; + do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi +done +rm -rf conftest.dir + +AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + diff --git a/UnitTest/gmock-1.7.0/build-aux/config.guess b/UnitTest/gmock-1.7.0/build-aux/config.guess new file mode 100644 index 0000000..d622a44 --- /dev/null +++ b/UnitTest/gmock-1.7.0/build-aux/config.guess @@ -0,0 +1,1530 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011, 2012 Free Software Foundation, Inc. + +timestamp='2012-02-10' + +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Originally written by Per Bothner. Please send patches (context +# diff format) to and include a ChangeLog +# entry. +# +# This script attempts to guess a canonical system name similar to +# config.sub. If it succeeds, it prints the system name on stdout, and +# exits with 0. Otherwise, it exits with 1. +# +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 +Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm:riscos:*:*|arm:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + UNAME_PROCESSOR=`/usr/bin/uname -p` + case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + i*:MSYS*:*) + echo ${UNAME_MACHINE}-pc-msys + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + aarch64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + aarch64_be:Linux:*:*) + UNAME_MACHINE=aarch64_be + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + frv:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + hexagon:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; + x86_64:VMkernel:*:*) + echo ${UNAME_MACHINE}-unknown-esx + exit ;; +esac + +#echo '(No uname command or uname output not recognized.)' 1>&2 +#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 + +eval $set_cc_for_build +cat >$dummy.c < +# include +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix\n"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + c34*) + echo c34-convex-bsd + exit ;; + c38*) + echo c38-convex-bsd + exit ;; + c4*) + echo c4-convex-bsd + exit ;; + esac +fi + +cat >&2 < in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/UnitTest/gmock-1.7.0/build-aux/config.h.in b/UnitTest/gmock-1.7.0/build-aux/config.h.in new file mode 100644 index 0000000..843b5b1 --- /dev/null +++ b/UnitTest/gmock-1.7.0/build-aux/config.h.in @@ -0,0 +1,69 @@ +/* build-aux/config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define if you have POSIX threads libraries and header files. */ +#undef HAVE_PTHREAD + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the home page for this package. */ +#undef PACKAGE_URL + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to necessary symbol if this constant uses a non-standard name on + your system. */ +#undef PTHREAD_CREATE_JOINABLE + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Version number of package */ +#undef VERSION diff --git a/UnitTest/gmock-1.7.0/build-aux/config.sub b/UnitTest/gmock-1.7.0/build-aux/config.sub new file mode 100644 index 0000000..c894da4 --- /dev/null +++ b/UnitTest/gmock-1.7.0/build-aux/config.sub @@ -0,0 +1,1773 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011, 2012 Free Software Foundation, Inc. + +timestamp='2012-02-10' + +# This file is (in principle) common to ALL GNU software. +# The presence of a machine in this file suggests that SOME GNU software +# can handle that machine. It does not imply ALL GNU software can. +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Please send patches to . Submit a context +# diff and a properly formatted GNU ChangeLog entry. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 +Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + android-linux) + os=-linux-android + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray | -microblaze) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ + | be32 | be64 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | epiphany \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 \ + | ns16k | ns32k \ + | open8 \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ + | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | we32k \ + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + xgate) + basic_machine=$basic_machine-unknown + os=-none + ;; + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | be32-* | be64-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ + | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | tahoe-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ + | tron-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + microblaze) + basic_machine=microblaze-xilinx + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + msys) + basic_machine=i386-pc + os=-msys + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc | ppcbe) basic_machine=powerpc-unknown + ;; + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -nacl*) + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/UnitTest/gmock-1.7.0/build-aux/depcomp b/UnitTest/gmock-1.7.0/build-aux/depcomp new file mode 100644 index 0000000..bd0ac08 --- /dev/null +++ b/UnitTest/gmock-1.7.0/build-aux/depcomp @@ -0,0 +1,688 @@ +#! /bin/sh +# depcomp - compile a program generating dependencies as side-effects + +scriptversion=2011-12-04.11; # UTC + +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010, +# 2011 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Alexandre Oliva . + +case $1 in + '') + echo "$0: No command. Try \`$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: depcomp [--help] [--version] PROGRAM [ARGS] + +Run PROGRAMS ARGS to compile a file, generating dependencies +as side-effects. + +Environment variables: + depmode Dependency tracking mode. + source Source file read by `PROGRAMS ARGS'. + object Object file output by `PROGRAMS ARGS'. + DEPDIR directory where to store dependencies. + depfile Dependency file to output. + tmpdepfile Temporary file to use when outputting dependencies. + libtool Whether libtool is used (yes/no). + +Report bugs to . +EOF + exit $? + ;; + -v | --v*) + echo "depcomp $scriptversion" + exit $? + ;; +esac + +if test -z "$depmode" || test -z "$source" || test -z "$object"; then + echo "depcomp: Variables source, object and depmode must be set" 1>&2 + exit 1 +fi + +# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. +depfile=${depfile-`echo "$object" | + sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} +tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} + +rm -f "$tmpdepfile" + +# Some modes work just like other modes, but use different flags. We +# parameterize here, but still list the modes in the big case below, +# to make depend.m4 easier to write. Note that we *cannot* use a case +# here, because this file can only contain one case statement. +if test "$depmode" = hp; then + # HP compiler uses -M and no extra arg. + gccflag=-M + depmode=gcc +fi + +if test "$depmode" = dashXmstdout; then + # This is just like dashmstdout with a different argument. + dashmflag=-xM + depmode=dashmstdout +fi + +cygpath_u="cygpath -u -f -" +if test "$depmode" = msvcmsys; then + # This is just like msvisualcpp but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvisualcpp +fi + +if test "$depmode" = msvc7msys; then + # This is just like msvc7 but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvc7 +fi + +case "$depmode" in +gcc3) +## gcc 3 implements dependency tracking that does exactly what +## we want. Yay! Note: for some reason libtool 1.4 doesn't like +## it if -MD -MP comes after the -MF stuff. Hmm. +## Unfortunately, FreeBSD c89 acceptance of flags depends upon +## the command line argument order; so add the flags where they +## appear in depend2.am. Note that the slowdown incurred here +## affects only configure: in makefiles, %FASTDEP% shortcuts this. + for arg + do + case $arg in + -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; + *) set fnord "$@" "$arg" ;; + esac + shift # fnord + shift # $arg + done + "$@" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + mv "$tmpdepfile" "$depfile" + ;; + +gcc) +## There are various ways to get dependency output from gcc. Here's +## why we pick this rather obscure method: +## - Don't want to use -MD because we'd like the dependencies to end +## up in a subdir. Having to rename by hand is ugly. +## (We might end up doing this anyway to support other compilers.) +## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like +## -MM, not -M (despite what the docs say). +## - Using -M directly means running the compiler twice (even worse +## than renaming). + if test -z "$gccflag"; then + gccflag=-MD, + fi + "$@" -Wp,"$gccflag$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz +## The second -e expression handles DOS-style file names with drive letters. + sed -e 's/^[^:]*: / /' \ + -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" +## This next piece of magic avoids the `deleted header file' problem. +## The problem is that when a header file which appears in a .P file +## is deleted, the dependency causes make to die (because there is +## typically no way to rebuild the header). We avoid this by adding +## dummy dependencies for each header file. Too bad gcc doesn't do +## this for us directly. + tr ' ' ' +' < "$tmpdepfile" | +## Some versions of gcc put a space before the `:'. On the theory +## that the space means something, we add a space to the output as +## well. hp depmode also adds that space, but also prefixes the VPATH +## to the object. Take care to not repeat it in the output. +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +sgi) + if test "$libtool" = yes; then + "$@" "-Wp,-MDupdate,$tmpdepfile" + else + "$@" -MDupdate "$tmpdepfile" + fi + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + + if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files + echo "$object : \\" > "$depfile" + + # Clip off the initial element (the dependent). Don't try to be + # clever and replace this with sed code, as IRIX sed won't handle + # lines with more than a fixed number of characters (4096 in + # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; + # the IRIX cc adds comments like `#:fec' to the end of the + # dependency line. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ + tr ' +' ' ' >> "$depfile" + echo >> "$depfile" + + # The second pass generates a dummy entry for each header file. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ + >> "$depfile" + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +aix) + # The C for AIX Compiler uses -M and outputs the dependencies + # in a .u file. In older versions, this file always lives in the + # current directory. Also, the AIX compiler puts `$object:' at the + # start of each line; $object doesn't have directory information. + # Version 6 uses the directory in both cases. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.u + tmpdepfile2=$base.u + tmpdepfile3=$dir.libs/$base.u + "$@" -Wc,-M + else + tmpdepfile1=$dir$base.u + tmpdepfile2=$dir$base.u + tmpdepfile3=$dir$base.u + "$@" -M + fi + stat=$? + + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + # Each line is of the form `foo.o: dependent.h'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +icc) + # Intel's C compiler understands `-MD -MF file'. However on + # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c + # ICC 7.0 will fill foo.d with something like + # foo.o: sub/foo.c + # foo.o: sub/foo.h + # which is wrong. We want: + # sub/foo.o: sub/foo.c + # sub/foo.o: sub/foo.h + # sub/foo.c: + # sub/foo.h: + # ICC 7.1 will output + # foo.o: sub/foo.c sub/foo.h + # and will wrap long lines using \ : + # foo.o: sub/foo.c ... \ + # sub/foo.h ... \ + # ... + + "$@" -MD -MF "$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each line is of the form `foo.o: dependent.h', + # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | + sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp2) + # The "hp" stanza above does not work with aCC (C++) and HP's ia64 + # compilers, which have integrated preprocessors. The correct option + # to use with these is +Maked; it writes dependencies to a file named + # 'foo.d', which lands next to the object file, wherever that + # happens to be. + # Much of this is similar to the tru64 case; see comments there. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir.libs/$base.d + "$@" -Wc,+Maked + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + "$@" +Maked + fi + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" + # Add `dependent.h:' lines. + sed -ne '2,${ + s/^ *// + s/ \\*$// + s/$/:/ + p + }' "$tmpdepfile" >> "$depfile" + else + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" "$tmpdepfile2" + ;; + +tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. + # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put + # dependencies in `foo.d' instead, so we check for that too. + # Subdirectories are respected. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + + if test "$libtool" = yes; then + # With Tru64 cc, shared objects can also be used to make a + # static library. This mechanism is used in libtool 1.4 series to + # handle both shared and static libraries in a single compilation. + # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. + # + # With libtool 1.5 this exception was removed, and libtool now + # generates 2 separate objects for the 2 libraries. These two + # compilations output dependencies in $dir.libs/$base.o.d and + # in $dir$base.o.d. We have to check for both files, because + # one of the two compilations can be disabled. We should prefer + # $dir$base.o.d over $dir.libs/$base.o.d because the latter is + # automatically cleaned when .libs/ is deleted, while ignoring + # the former would cause a distcleancheck panic. + tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 + tmpdepfile2=$dir$base.o.d # libtool 1.5 + tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 + tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 + "$@" -Wc,-MD + else + tmpdepfile1=$dir$base.o.d + tmpdepfile2=$dir$base.d + tmpdepfile3=$dir$base.d + tmpdepfile4=$dir$base.d + "$@" -MD + fi + + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + else + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +msvc7) + if test "$libtool" = yes; then + showIncludes=-Wc,-showIncludes + else + showIncludes=-showIncludes + fi + "$@" $showIncludes > "$tmpdepfile" + stat=$? + grep -v '^Note: including file: ' "$tmpdepfile" + if test "$stat" = 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + # The first sed program below extracts the file names and escapes + # backslashes for cygpath. The second sed program outputs the file + # name when reading, but also accumulates all include files in the + # hold buffer in order to output them again at the end. This only + # works with sed implementations that can handle large buffers. + sed < "$tmpdepfile" -n ' +/^Note: including file: *\(.*\)/ { + s//\1/ + s/\\/\\\\/g + p +}' | $cygpath_u | sort -u | sed -n ' +s/ /\\ /g +s/\(.*\)/ \1 \\/p +s/.\(.*\) \\/\1:/ +H +$ { + s/.*/ / + G + p +}' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvc7msys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +#nosideeffect) + # This comment above is used by automake to tell side-effect + # dependency tracking mechanisms from slower ones. + +dashmstdout) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + test -z "$dashmflag" && dashmflag=-M + # Require at least two characters before searching for `:' + # in the target name. This is to cope with DOS-style filenames: + # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. + "$@" $dashmflag | + sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + tr ' ' ' +' < "$tmpdepfile" | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +dashXmstdout) + # This case only exists to satisfy depend.m4. It is never actually + # run, as this mode is specially recognized in the preamble. + exit 1 + ;; + +makedepend) + "$@" || exit $? + # Remove any Libtool call + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + # X makedepend + shift + cleared=no eat=no + for arg + do + case $cleared in + no) + set ""; shift + cleared=yes ;; + esac + if test $eat = yes; then + eat=no + continue + fi + case "$arg" in + -D*|-I*) + set fnord "$@" "$arg"; shift ;; + # Strip any option that makedepend may not understand. Remove + # the object too, otherwise makedepend will parse it as a source file. + -arch) + eat=yes ;; + -*|$object) + ;; + *) + set fnord "$@" "$arg"; shift ;; + esac + done + obj_suffix=`echo "$object" | sed 's/^.*\././'` + touch "$tmpdepfile" + ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" + rm -f "$depfile" + # makedepend may prepend the VPATH from the source file name to the object. + # No need to regex-escape $object, excess matching of '.' is harmless. + sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" + sed '1,2d' "$tmpdepfile" | tr ' ' ' +' | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" "$tmpdepfile".bak + ;; + +cpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + "$@" -E | + sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | + sed '$ s: \\$::' > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + cat < "$tmpdepfile" >> "$depfile" + sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvisualcpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + IFS=" " + for arg + do + case "$arg" in + -o) + shift + ;; + $object) + shift + ;; + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done + "$@" -E 2>/dev/null | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" + echo " " >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvcmsys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +none) + exec "$@" + ;; + +*) + echo "Unknown depmode $depmode" 1>&2 + exit 1 + ;; +esac + +exit 0 + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/UnitTest/gmock-1.7.0/build-aux/install-sh b/UnitTest/gmock-1.7.0/build-aux/install-sh new file mode 100644 index 0000000..a9244eb --- /dev/null +++ b/UnitTest/gmock-1.7.0/build-aux/install-sh @@ -0,0 +1,527 @@ +#!/bin/sh +# install - install a program, script, or datafile + +scriptversion=2011-01-19.21; # UTC + +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. +# +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# `make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. + +nl=' +' +IFS=" "" $nl" + +# set DOITPROG to echo to test this script + +# Don't use :- since 4.3BSD and earlier shells don't like it. +doit=${DOITPROG-} +if test -z "$doit"; then + doit_exec=exec +else + doit_exec=$doit +fi + +# Put in absolute file names if you don't have them in your path; +# or use environment vars. + +chgrpprog=${CHGRPPROG-chgrp} +chmodprog=${CHMODPROG-chmod} +chownprog=${CHOWNPROG-chown} +cmpprog=${CMPPROG-cmp} +cpprog=${CPPROG-cp} +mkdirprog=${MKDIRPROG-mkdir} +mvprog=${MVPROG-mv} +rmprog=${RMPROG-rm} +stripprog=${STRIPPROG-strip} + +posix_glob='?' +initialize_posix_glob=' + test "$posix_glob" != "?" || { + if (set -f) 2>/dev/null; then + posix_glob= + else + posix_glob=: + fi + } +' + +posix_mkdir= + +# Desired mode of installed file. +mode=0755 + +chgrpcmd= +chmodcmd=$chmodprog +chowncmd= +mvcmd=$mvprog +rmcmd="$rmprog -f" +stripcmd= + +src= +dst= +dir_arg= +dst_arg= + +copy_on_change=false +no_target_directory= + +usage="\ +Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE + or: $0 [OPTION]... SRCFILES... DIRECTORY + or: $0 [OPTION]... -t DIRECTORY SRCFILES... + or: $0 [OPTION]... -d DIRECTORIES... + +In the 1st form, copy SRCFILE to DSTFILE. +In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. +In the 4th, create DIRECTORIES. + +Options: + --help display this help and exit. + --version display version info and exit. + + -c (ignored) + -C install only if different (preserve the last data modification time) + -d create directories instead of installing files. + -g GROUP $chgrpprog installed files to GROUP. + -m MODE $chmodprog installed files to MODE. + -o USER $chownprog installed files to USER. + -s $stripprog installed files. + -t DIRECTORY install into DIRECTORY. + -T report an error if DSTFILE is a directory. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG + RMPROG STRIPPROG +" + +while test $# -ne 0; do + case $1 in + -c) ;; + + -C) copy_on_change=true;; + + -d) dir_arg=true;; + + -g) chgrpcmd="$chgrpprog $2" + shift;; + + --help) echo "$usage"; exit $?;; + + -m) mode=$2 + case $mode in + *' '* | *' '* | *' +'* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; + + -o) chowncmd="$chownprog $2" + shift;; + + -s) stripcmd=$stripprog;; + + -t) dst_arg=$2 + # Protect names problematic for `test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + shift;; + + -T) no_target_directory=true;; + + --version) echo "$0 $scriptversion"; exit $?;; + + --) shift + break;; + + -*) echo "$0: invalid option: $1" >&2 + exit 1;; + + *) break;; + esac + shift +done + +if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then + # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dst_arg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dst_arg" + shift # fnord + fi + shift # arg + dst_arg=$arg + # Protect names problematic for `test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + done +fi + +if test $# -eq 0; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 + fi + # It's OK to call `install-sh -d' without argument. + # This can happen when creating conditional directories. + exit 0 +fi + +if test -z "$dir_arg"; then + do_exit='(exit $ret); exit $ret' + trap "ret=129; $do_exit" 1 + trap "ret=130; $do_exit" 2 + trap "ret=141; $do_exit" 13 + trap "ret=143; $do_exit" 15 + + # Set umask so as not to create temps with too-generous modes. + # However, 'strip' requires both read and write access to temps. + case $mode in + # Optimize common cases. + *644) cp_umask=133;; + *755) cp_umask=22;; + + *[0-7]) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw='% 200' + fi + cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; + *) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw=,u+rw + fi + cp_umask=$mode$u_plus_rw;; + esac +fi + +for src +do + # Protect names problematic for `test' and other utilities. + case $src in + -* | [=\(\)!]) src=./$src;; + esac + + if test -n "$dir_arg"; then + dst=$src + dstdir=$dst + test -d "$dstdir" + dstdir_status=$? + else + + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dst_arg"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + dst=$dst_arg + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + if test -n "$no_target_directory"; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 + fi + dstdir=$dst + dst=$dstdir/`basename "$src"` + dstdir_status=0 + else + # Prefer dirname, but fall back on a substitute if dirname fails. + dstdir=` + (dirname "$dst") 2>/dev/null || + expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$dst" : 'X\(//\)[^/]' \| \ + X"$dst" : 'X\(//\)$' \| \ + X"$dst" : 'X\(/\)' \| . 2>/dev/null || + echo X"$dst" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q' + ` + + test -d "$dstdir" + dstdir_status=$? + fi + fi + + obsolete_mkdir_used=false + + if test $dstdir_status != 0; then + case $posix_mkdir in + '') + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + + if (umask $mkdir_umask && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writeable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + ls_ld_tmpdir=`ls -ld "$tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/d" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + fi + trap '' 0;; + esac;; + esac + + if + $posix_mkdir && ( + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + ) + then : + else + + # The umask is ridiculous, or mkdir does not conform to POSIX, + # or it failed possibly due to a race condition. Create the + # directory the slow way, step by step, checking for races as we go. + + case $dstdir in + /*) prefix='/';; + [-=\(\)!]*) prefix='./';; + *) prefix='';; + esac + + eval "$initialize_posix_glob" + + oIFS=$IFS + IFS=/ + $posix_glob set -f + set fnord $dstdir + shift + $posix_glob set +f + IFS=$oIFS + + prefixes= + + for d + do + test X"$d" = X && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ + done + + if test -n "$prefixes"; then + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true + fi + fi + fi + + if test -n "$dir_arg"; then + { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && + { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || + test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + else + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + + # Copy the file name to the temp name. + (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $cpprog $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && + { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && + { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + + # If -C, don't bother to copy if it wouldn't change the file. + if $copy_on_change && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + + eval "$initialize_posix_glob" && + $posix_glob set -f && + set X $old && old=:$2:$4:$5:$6 && + set X $new && new=:$2:$4:$5:$6 && + $posix_glob set +f && + + test "$old" = "$new" && + $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 + then + rm -f "$dsttmp" + else + # Rename the file to the real destination. + $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || + + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + { + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" + } + fi || exit 1 + + trap '' 0 + fi +done + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/UnitTest/gmock-1.7.0/build-aux/ltmain.sh b/UnitTest/gmock-1.7.0/build-aux/ltmain.sh new file mode 100644 index 0000000..c2852d8 --- /dev/null +++ b/UnitTest/gmock-1.7.0/build-aux/ltmain.sh @@ -0,0 +1,9661 @@ + +# libtool (GNU libtool) 2.4.2 +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, +# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, +# or obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +# Usage: $progname [OPTION]... [MODE-ARG]... +# +# Provide generalized library-building support services. +# +# --config show all configuration variables +# --debug enable verbose shell tracing +# -n, --dry-run display commands without modifying any files +# --features display basic configuration information and exit +# --mode=MODE use operation mode MODE +# --preserve-dup-deps don't remove duplicate dependency libraries +# --quiet, --silent don't print informational messages +# --no-quiet, --no-silent +# print informational messages (default) +# --no-warn don't display warning messages +# --tag=TAG use configuration variables from tag TAG +# -v, --verbose print more informational messages than default +# --no-verbose don't print the extra informational messages +# --version print version information +# -h, --help, --help-all print short, long, or detailed help message +# +# MODE must be one of the following: +# +# clean remove files from the build directory +# compile compile a source file into a libtool object +# execute automatically set library path, then run a program +# finish complete the installation of libtool libraries +# install install libraries or executables +# link create a library or an executable +# uninstall remove libraries from an installed directory +# +# MODE-ARGS vary depending on the MODE. When passed as first option, +# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. +# Try `$progname --help --mode=MODE' for a more detailed description of MODE. +# +# When reporting a bug, please describe a test case to reproduce it and +# include the following information: +# +# host-triplet: $host +# shell: $SHELL +# compiler: $LTCC +# compiler flags: $LTCFLAGS +# linker: $LD (gnu? $with_gnu_ld) +# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 +# automake: $automake_version +# autoconf: $autoconf_version +# +# Report bugs to . +# GNU libtool home page: . +# General help using GNU software: . + +PROGRAM=libtool +PACKAGE=libtool +VERSION="2.4.2 Debian-2.4.2-1ubuntu1" +TIMESTAMP="" +package_revision=1.3337 + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# NLS nuisances: We save the old values to restore during execute mode. +lt_user_locale= +lt_safe_locale= +for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test \"\${$lt_var+set}\" = set; then + save_$lt_var=\$$lt_var + $lt_var=C + export $lt_var + lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" + lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + fi" +done +LC_ALL=C +LANGUAGE=C +export LANGUAGE LC_ALL + +$lt_unset CDPATH + + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath="$0" + + + +: ${CP="cp -f"} +test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} +: ${Xsed="$SED -e 1s/^X//"} + +# Global variables: +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +exit_status=$EXIT_SUCCESS + +# Make sure IFS has a sensible default +lt_nl=' +' +IFS=" $lt_nl" + +dirname="s,/[^/]*$,," +basename="s,^.*/,," + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi +} # func_dirname may be replaced by extended shell implementation + + +# func_basename file +func_basename () +{ + func_basename_result=`$ECHO "${1}" | $SED "$basename"` +} # func_basename may be replaced by extended shell implementation + + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi + func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` +} # func_dirname_and_basename may be replaced by extended shell implementation + + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname may be replaced by extended shell implementation + + +# These SED scripts presuppose an absolute path with a trailing slash. +pathcar='s,^/\([^/]*\).*$,\1,' +pathcdr='s,^/[^/]*,,' +removedotparts=':dotsl + s@/\./@/@g + t dotsl + s,/\.$,/,' +collapseslashes='s@/\{1,\}@/@g' +finalslash='s,/*$,/,' + +# func_normal_abspath PATH +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +# value returned in "$func_normal_abspath_result" +func_normal_abspath () +{ + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` + while :; do + # Processed it all yet? + if test "$func_normal_abspath_tpath" = / ; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result" ; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + +# func_relative_path SRCDIR DSTDIR +# generates a relative path from SRCDIR to DSTDIR, with a trailing +# slash if non-empty, suitable for immediately appending a filename +# without needing to append a separator. +# value returned in "$func_relative_path_result" +func_relative_path () +{ + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=${func_dirname_result} + if test "x$func_relative_path_tlibdir" = x ; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test "x$func_stripname_result" != x ; then + func_relative_path_result=${func_relative_path_result}/${func_stripname_result} + fi + + # Normalisation. If bindir is libdir, return empty string, + # else relative path ending with a slash; either way, target + # file name can be directly appended. + if test ! -z "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result/" + func_relative_path_result=$func_stripname_result + fi +} + +# The name of this program: +func_dirname_and_basename "$progpath" +progname=$func_basename_result + +# Make sure we have an absolute path for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=$func_dirname_result + progdir=`cd "$progdir" && pwd` + progpath="$progdir/$progname" + ;; + *) + save_IFS="$IFS" + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS="$save_IFS" + test -x "$progdir/$progname" && break + done + IFS="$save_IFS" + test -n "$progdir" || progdir=`pwd` + progpath="$progdir/$progname" + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed="${SED}"' -e 1s/^X//' +sed_quote_subst='s/\([`"$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' + +# Sed substitution that converts a w32 file name or path +# which contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-`\' parameter expansions in output of double_quote_subst that were +# `\'-ed in input to the same. If an odd number of `\' preceded a '$' +# in input to double_quote_subst, that '$' was protected from expansion. +# Since each input `\' is now two `\'s, look for any number of runs of +# four `\'s followed by two `\'s and then a '$'. `\' that '$'. +bs='\\' +bs2='\\\\' +bs4='\\\\\\\\' +dollar='\$' +sed_double_backslash="\ + s/$bs4/&\\ +/g + s/^$bs2$dollar/$bs&/ + s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g + s/\n//g" + +# Standard options: +opt_dry_run=false +opt_help=false +opt_quiet=false +opt_verbose=false +opt_warning=: + +# func_echo arg... +# Echo program name prefixed message, along with the current mode +# name if it has been set yet. +func_echo () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }$*" +} + +# func_verbose arg... +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $opt_verbose && func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +# func_error arg... +# Echo program name prefixed message to standard error. +func_error () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 +} + +# func_warning arg... +# Echo program name prefixed warning message to standard error. +func_warning () +{ + $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 + + # bash bug again: + : +} + +# func_fatal_error arg... +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + +# func_fatal_help arg... +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + func_error ${1+"$@"} + func_fatal_error "$help" +} +help="Try \`$progname --help' for more information." ## default + + +# func_grep expression filename +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_mkdir_p directory-path +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + my_directory_path="$1" + my_dir_list= + + if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + + # Protect directory names starting with `-' + case $my_directory_path in + -*) my_directory_path="./$my_directory_path" ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$my_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + my_dir_list="$my_directory_path:$my_dir_list" + + # If the last portion added has no slash in it, the list is done + case $my_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` + done + my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` + + save_mkdir_p_IFS="$IFS"; IFS=':' + for my_dir in $my_dir_list; do + IFS="$save_mkdir_p_IFS" + # mkdir can fail with a `File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$my_dir" 2>/dev/null || : + done + IFS="$save_mkdir_p_IFS" + + # Bail out if we (or some other process) failed to create a directory. + test -d "$my_directory_path" || \ + func_fatal_error "Failed to create \`$1'" + fi +} + + +# func_mktempdir [string] +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, STRING is the basename for that directory. +func_mktempdir () +{ + my_template="${TMPDIR-/tmp}/${1-$progname}" + + if test "$opt_dry_run" = ":"; then + # Return a directory name, but don't create it in dry-run mode + my_tmpdir="${my_template}-$$" + else + + # If mktemp works, use that first and foremost + my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + + if test ! -d "$my_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + my_tmpdir="${my_template}-${RANDOM-0}$$" + + save_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$my_tmpdir" + umask $save_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$my_tmpdir" || \ + func_fatal_error "cannot create temporary directory \`$my_tmpdir'" + fi + + $ECHO "$my_tmpdir" +} + + +# func_quote_for_eval arg +# Aesthetically quote ARG to be evaled later. +# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT +# is double-quoted, suitable for a subsequent eval, whereas +# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters +# which are still active within double quotes backslashified. +func_quote_for_eval () +{ + case $1 in + *[\\\`\"\$]*) + func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; + *) + func_quote_for_eval_unquoted_result="$1" ;; + esac + + case $func_quote_for_eval_unquoted_result in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and and variable + # expansion for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" + ;; + *) + func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" + esac +} + + +# func_quote_for_expand arg +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + case $1 in + *[\\\`\"]*) + my_arg=`$ECHO "$1" | $SED \ + -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + *) + my_arg="$1" ;; + esac + + case $my_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + my_arg="\"$my_arg\"" + ;; + esac + + func_quote_for_expand_result="$my_arg" +} + + +# func_show_eval cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$my_cmd" + my_status=$? + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + +# func_show_eval_locale cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$lt_user_locale + $my_cmd" + my_status=$? + eval "$lt_safe_locale" + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + +# func_tr_sh +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_version +# Echo version message to standard output and exit. +func_version () +{ + $opt_debug + + $SED -n '/(C)/!b go + :more + /\./!{ + N + s/\n# / / + b more + } + :go + /^# '$PROGRAM' (GNU /,/# warranty; / { + s/^# // + s/^# *$// + s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ + p + }' < "$progpath" + exit $? +} + +# func_usage +# Echo short help message to standard output and exit. +func_usage () +{ + $opt_debug + + $SED -n '/^# Usage:/,/^# *.*--help/ { + s/^# // + s/^# *$// + s/\$progname/'$progname'/ + p + }' < "$progpath" + echo + $ECHO "run \`$progname --help | more' for full usage" + exit $? +} + +# func_help [NOEXIT] +# Echo long help message to standard output and exit, +# unless 'noexit' is passed as argument. +func_help () +{ + $opt_debug + + $SED -n '/^# Usage:/,/# Report bugs to/ { + :print + s/^# // + s/^# *$// + s*\$progname*'$progname'* + s*\$host*'"$host"'* + s*\$SHELL*'"$SHELL"'* + s*\$LTCC*'"$LTCC"'* + s*\$LTCFLAGS*'"$LTCFLAGS"'* + s*\$LD*'"$LD"'* + s/\$with_gnu_ld/'"$with_gnu_ld"'/ + s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ + s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ + p + d + } + /^# .* home page:/b print + /^# General help using/b print + ' < "$progpath" + ret=$? + if test -z "$1"; then + exit $ret + fi +} + +# func_missing_arg argname +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + $opt_debug + + func_error "missing argument for $1." + exit_cmd=exit +} + + +# func_split_short_opt shortopt +# Set func_split_short_opt_name and func_split_short_opt_arg shell +# variables after splitting SHORTOPT after the 2nd character. +func_split_short_opt () +{ + my_sed_short_opt='1s/^\(..\).*$/\1/;q' + my_sed_short_rest='1s/^..\(.*\)$/\1/;q' + + func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` + func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` +} # func_split_short_opt may be replaced by extended shell implementation + + +# func_split_long_opt longopt +# Set func_split_long_opt_name and func_split_long_opt_arg shell +# variables after splitting LONGOPT at the `=' sign. +func_split_long_opt () +{ + my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' + my_sed_long_arg='1s/^--[^=]*=//' + + func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` + func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` +} # func_split_long_opt may be replaced by extended shell implementation + +exit_cmd=: + + + + + +magic="%%%MAGIC variable%%%" +magic_exe="%%%MAGIC EXE variable%%%" + +# Global variables. +nonopt= +preserve_args= +lo2o="s/\\.lo\$/.${objext}/" +o2lo="s/\\.${objext}\$/.lo/" +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "${1}=\$${1}\${2}" +} # func_append may be replaced by extended shell implementation + +# func_append_quoted var value +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +func_append_quoted () +{ + func_quote_for_eval "${2}" + eval "${1}=\$${1}\\ \$func_quote_for_eval_result" +} # func_append_quoted may be replaced by extended shell implementation + + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=`expr "${@}"` +} # func_arith may be replaced by extended shell implementation + + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` +} # func_len may be replaced by extended shell implementation + + +# func_lo2o object +func_lo2o () +{ + func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` +} # func_lo2o may be replaced by extended shell implementation + + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` +} # func_xform may be replaced by extended shell implementation + + +# func_fatal_configuration arg... +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () +{ + func_error ${1+"$@"} + func_error "See the $PACKAGE documentation for more information." + func_fatal_error "Fatal configuration error." +} + + +# func_config +# Display the configuration for all the tags in this script. +func_config () +{ + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + +# func_features +# Display the features supported by this script. +func_features () +{ + echo "host: $host" + if test "$build_libtool_libs" = yes; then + echo "enable shared libraries" + else + echo "disable shared libraries" + fi + if test "$build_old_libs" = yes; then + echo "enable static libraries" + else + echo "disable static libraries" + fi + + exit $? +} + +# func_enable_tag tagname +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname="$1" + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf="/$re_begincf/,/$re_endcf/p" + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + +# func_check_version_match +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +# Shorthand for --mode=foo, only valid as the first argument +case $1 in +clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; +compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; +execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; +finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; +install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; +link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; +uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; +esac + + + +# Option defaults: +opt_debug=: +opt_dry_run=false +opt_config=false +opt_preserve_dup_deps=false +opt_features=false +opt_finish=false +opt_help=false +opt_help_all=false +opt_silent=: +opt_warning=: +opt_verbose=: +opt_silent=false +opt_verbose=false + + +# Parse options once, thoroughly. This comes as soon as possible in the +# script to make things like `--version' happen as quickly as we can. +{ + # this just eases exit handling + while test $# -gt 0; do + opt="$1" + shift + case $opt in + --debug|-x) opt_debug='set -x' + func_echo "enabling shell trace mode" + $opt_debug + ;; + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + --config) + opt_config=: +func_config + ;; + --dlopen|-dlopen) + optarg="$1" + opt_dlopen="${opt_dlopen+$opt_dlopen +}$optarg" + shift + ;; + --preserve-dup-deps) + opt_preserve_dup_deps=: + ;; + --features) + opt_features=: +func_features + ;; + --finish) + opt_finish=: +set dummy --mode finish ${1+"$@"}; shift + ;; + --help) + opt_help=: + ;; + --help-all) + opt_help_all=: +opt_help=': help-all' + ;; + --mode) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_mode="$optarg" +case $optarg in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $opt" + exit_cmd=exit + break + ;; +esac + shift + ;; + --no-silent|--no-quiet) + opt_silent=false +func_append preserve_args " $opt" + ;; + --no-warning|--no-warn) + opt_warning=false +func_append preserve_args " $opt" + ;; + --no-verbose) + opt_verbose=false +func_append preserve_args " $opt" + ;; + --silent|--quiet) + opt_silent=: +func_append preserve_args " $opt" + opt_verbose=false + ;; + --verbose|-v) + opt_verbose=: +func_append preserve_args " $opt" +opt_silent=false + ;; + --tag) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_tag="$optarg" +func_append preserve_args " $opt $optarg" +func_enable_tag "$optarg" + shift + ;; + + -\?|-h) func_usage ;; + --help) func_help ;; + --version) func_version ;; + + # Separate optargs to long options: + --*=*) + func_split_long_opt "$opt" + set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-n*|-v*) + func_split_short_opt "$opt" + set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognized option \`$opt'" ;; + *) set dummy "$opt" ${1+"$@"}; shift; break ;; + esac + done + + # Validate options: + + # save first non-option argument + if test "$#" -gt 0; then + nonopt="$opt" + shift + fi + + # preserve --debug + test "$opt_debug" = : || func_append preserve_args " --debug" + + case $host in + *cygwin* | *mingw* | *pw32* | *cegcc*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then + func_fatal_configuration "not configured to build any kind of library" + fi + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test "$opt_mode" != execute; then + func_error "unrecognized option \`-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help="$help" + help="Try \`$progname --help --mode=$opt_mode' for more information." + } + + + # Bail if the options were screwed + $exit_cmd $EXIT_FAILURE +} + + + + +## ----------- ## +## Main. ## +## ----------- ## + +# func_lalib_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null \ + | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if `file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case "$lalib_p_line" in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test "$lalib_p" = yes +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + func_lalib_p "$1" +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $opt_debug + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$save_ifs + eval cmd=\"$cmd\" + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# `FILE.' does not work on cygwin managed mounts. +func_source () +{ + $opt_debug + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_resolve_sysroot PATH +# Replace a leading = in PATH with a sysroot. Store the result into +# func_resolve_sysroot_result +func_resolve_sysroot () +{ + func_resolve_sysroot_result=$1 + case $func_resolve_sysroot_result in + =*) + func_stripname '=' '' "$func_resolve_sysroot_result" + func_resolve_sysroot_result=$lt_sysroot$func_stripname_result + ;; + esac +} + +# func_replace_sysroot PATH +# If PATH begins with the sysroot, replace it with = and +# store the result into func_replace_sysroot_result. +func_replace_sysroot () +{ + case "$lt_sysroot:$1" in + ?*:"$lt_sysroot"*) + func_stripname "$lt_sysroot" '' "$1" + func_replace_sysroot_result="=$func_stripname_result" + ;; + *) + # Including no sysroot. + func_replace_sysroot_result=$1 + ;; + esac +} + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $opt_debug + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case "$@ " in + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with \`--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=${1} + if test "$build_libtool_libs" = yes; then + write_lobj=\'${2}\' + else + write_lobj=none + fi + + if test "$build_old_libs" = yes; then + write_oldobj=\'${3}\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T </dev/null` + if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | + $SED -e "$lt_sed_naive_backslashify"` + else + func_convert_core_file_wine_to_w32_result= + fi + fi +} +# end: func_convert_core_file_wine_to_w32 + + +# func_convert_core_path_wine_to_w32 ARG +# Helper function used by path conversion functions when $build is *nix, and +# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly +# configured wine environment available, with the winepath program in $build's +# $PATH. Assumes ARG has no leading or trailing path separator characters. +# +# ARG is path to be converted from $build format to win32. +# Result is available in $func_convert_core_path_wine_to_w32_result. +# Unconvertible file (directory) names in ARG are skipped; if no directory names +# are convertible, then the result may be empty. +func_convert_core_path_wine_to_w32 () +{ + $opt_debug + # unfortunately, winepath doesn't convert paths, only file names + func_convert_core_path_wine_to_w32_result="" + if test -n "$1"; then + oldIFS=$IFS + IFS=: + for func_convert_core_path_wine_to_w32_f in $1; do + IFS=$oldIFS + func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" + if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -z "$func_convert_core_path_wine_to_w32_result"; then + func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + else + func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" + fi + fi + done + IFS=$oldIFS + fi +} +# end: func_convert_core_path_wine_to_w32 + + +# func_cygpath ARGS... +# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when +# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) +# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or +# (2), returns the Cygwin file name or path in func_cygpath_result (input +# file name or path is assumed to be in w32 format, as previously converted +# from $build's *nix or MSYS format). In case (3), returns the w32 file name +# or path in func_cygpath_result (input file name or path is assumed to be in +# Cygwin format). Returns an empty string on error. +# +# ARGS are passed to cygpath, with the last one being the file name or path to +# be converted. +# +# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH +# environment variable; do not put it in $PATH. +func_cygpath () +{ + $opt_debug + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then + func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` + if test "$?" -ne 0; then + # on failure, ensure result is empty + func_cygpath_result= + fi + else + func_cygpath_result= + func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + fi +} +#end: func_cygpath + + +# func_convert_core_msys_to_w32 ARG +# Convert file name or path ARG from MSYS format to w32 format. Return +# result in func_convert_core_msys_to_w32_result. +func_convert_core_msys_to_w32 () +{ + $opt_debug + # awkward: cmd appends spaces to result + func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | + $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` +} +#end: func_convert_core_msys_to_w32 + + +# func_convert_file_check ARG1 ARG2 +# Verify that ARG1 (a file name in $build format) was converted to $host +# format in ARG2. Otherwise, emit an error message, but continue (resetting +# func_to_host_file_result to ARG1). +func_convert_file_check () +{ + $opt_debug + if test -z "$2" && test -n "$1" ; then + func_error "Could not determine host file name corresponding to" + func_error " \`$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_file_result="$1" + fi +} +# end func_convert_file_check + + +# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH +# Verify that FROM_PATH (a path in $build format) was converted to $host +# format in TO_PATH. Otherwise, emit an error message, but continue, resetting +# func_to_host_file_result to a simplistic fallback value (see below). +func_convert_path_check () +{ + $opt_debug + if test -z "$4" && test -n "$3"; then + func_error "Could not determine the host path corresponding to" + func_error " \`$3'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This is a deliberately simplistic "conversion" and + # should not be "improved". See libtool.info. + if test "x$1" != "x$2"; then + lt_replace_pathsep_chars="s|$1|$2|g" + func_to_host_path_result=`echo "$3" | + $SED -e "$lt_replace_pathsep_chars"` + else + func_to_host_path_result="$3" + fi + fi +} +# end func_convert_path_check + + +# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG +# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT +# and appending REPL if ORIG matches BACKPAT. +func_convert_path_front_back_pathsep () +{ + $opt_debug + case $4 in + $1 ) func_to_host_path_result="$3$func_to_host_path_result" + ;; + esac + case $4 in + $2 ) func_append func_to_host_path_result "$3" + ;; + esac +} +# end func_convert_path_front_back_pathsep + + +################################################## +# $build to $host FILE NAME CONVERSION FUNCTIONS # +################################################## +# invoked via `$to_host_file_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# Result will be available in $func_to_host_file_result. + + +# func_to_host_file ARG +# Converts the file name ARG from $build format to $host format. Return result +# in func_to_host_file_result. +func_to_host_file () +{ + $opt_debug + $to_host_file_cmd "$1" +} +# end func_to_host_file + + +# func_to_tool_file ARG LAZY +# converts the file name ARG from $build format to toolchain format. Return +# result in func_to_tool_file_result. If the conversion in use is listed +# in (the comma separated) LAZY, no conversion takes place. +func_to_tool_file () +{ + $opt_debug + case ,$2, in + *,"$to_tool_file_cmd",*) + func_to_tool_file_result=$1 + ;; + *) + $to_tool_file_cmd "$1" + func_to_tool_file_result=$func_to_host_file_result + ;; + esac +} +# end func_to_tool_file + + +# func_convert_file_noop ARG +# Copy ARG to func_to_host_file_result. +func_convert_file_noop () +{ + func_to_host_file_result="$1" +} +# end func_convert_file_noop + + +# func_convert_file_msys_to_w32 ARG +# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_file_result. +func_convert_file_msys_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_to_host_file_result="$func_convert_core_msys_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_w32 + + +# func_convert_file_cygwin_to_w32 ARG +# Convert file name ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_file_cygwin_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # because $build is cygwin, we call "the" cygpath in $PATH; no need to use + # LT_CYGPATH in this case. + func_to_host_file_result=`cygpath -m "$1"` + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_cygwin_to_w32 + + +# func_convert_file_nix_to_w32 ARG +# Convert file name ARG from *nix to w32 format. Requires a wine environment +# and a working winepath. Returns result in func_to_host_file_result. +func_convert_file_nix_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_file_wine_to_w32 "$1" + func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_w32 + + +# func_convert_file_msys_to_cygwin ARG +# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_file_msys_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_cygpath -u "$func_convert_core_msys_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_cygwin + + +# func_convert_file_nix_to_cygwin ARG +# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed +# in a wine environment, working winepath, and LT_CYGPATH set. Returns result +# in func_to_host_file_result. +func_convert_file_nix_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. + func_convert_core_file_wine_to_w32 "$1" + func_cygpath -u "$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_cygwin + + +############################################# +# $build to $host PATH CONVERSION FUNCTIONS # +############################################# +# invoked via `$to_host_path_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# The result will be available in $func_to_host_path_result. +# +# Path separators are also converted from $build format to $host format. If +# ARG begins or ends with a path separator character, it is preserved (but +# converted to $host format) on output. +# +# All path conversion functions are named using the following convention: +# file name conversion function : func_convert_file_X_to_Y () +# path conversion function : func_convert_path_X_to_Y () +# where, for any given $build/$host combination the 'X_to_Y' value is the +# same. If conversion functions are added for new $build/$host combinations, +# the two new functions must follow this pattern, or func_init_to_host_path_cmd +# will break. + + +# func_init_to_host_path_cmd +# Ensures that function "pointer" variable $to_host_path_cmd is set to the +# appropriate value, based on the value of $to_host_file_cmd. +to_host_path_cmd= +func_init_to_host_path_cmd () +{ + $opt_debug + if test -z "$to_host_path_cmd"; then + func_stripname 'func_convert_file_' '' "$to_host_file_cmd" + to_host_path_cmd="func_convert_path_${func_stripname_result}" + fi +} + + +# func_to_host_path ARG +# Converts the path ARG from $build format to $host format. Return result +# in func_to_host_path_result. +func_to_host_path () +{ + $opt_debug + func_init_to_host_path_cmd + $to_host_path_cmd "$1" +} +# end func_to_host_path + + +# func_convert_path_noop ARG +# Copy ARG to func_to_host_path_result. +func_convert_path_noop () +{ + func_to_host_path_result="$1" +} +# end func_convert_path_noop + + +# func_convert_path_msys_to_w32 ARG +# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_path_result. +func_convert_path_msys_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from ARG. MSYS + # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; + # and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_msys_to_w32 + + +# func_convert_path_cygwin_to_w32 ARG +# Convert path ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_path_cygwin_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_cygwin_to_w32 + + +# func_convert_path_nix_to_w32 ARG +# Convert path ARG from *nix to w32 format. Requires a wine environment and +# a working winepath. Returns result in func_to_host_file_result. +func_convert_path_nix_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_nix_to_w32 + + +# func_convert_path_msys_to_cygwin ARG +# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_path_msys_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_msys_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_msys_to_cygwin + + +# func_convert_path_nix_to_cygwin ARG +# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a +# a wine environment, working winepath, and LT_CYGPATH set. Returns result in +# func_to_host_file_result. +func_convert_path_nix_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_nix_to_cygwin + + +# func_mode_compile arg... +func_mode_compile () +{ + $opt_debug + # Get the compilation command and the source file. + base_compile= + srcfile="$nonopt" # always keep a non-empty value in "srcfile" + suppress_opt=yes + suppress_output= + arg_mode=normal + libobj= + later= + pie_flag= + + for arg + do + case $arg_mode in + arg ) + # do not "continue". Instead, add this to base_compile + lastarg="$arg" + arg_mode=normal + ;; + + target ) + libobj="$arg" + arg_mode=normal + continue + ;; + + normal ) + # Accept any command-line options. + case $arg in + -o) + test -n "$libobj" && \ + func_fatal_error "you cannot specify \`-o' more than once" + arg_mode=target + continue + ;; + + -pie | -fpie | -fPIE) + func_append pie_flag " $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) + func_append later " $arg" + continue + ;; + + -no-suppress) + suppress_opt=no + continue + ;; + + -Xcompiler) + arg_mode=arg # the next one goes into the "base_compile" arg list + continue # The current "srcfile" will either be retained or + ;; # replaced later. I would guess that would be a bug. + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + lastarg= + save_ifs="$IFS"; IFS=',' + for arg in $args; do + IFS="$save_ifs" + func_append_quoted lastarg "$arg" + done + IFS="$save_ifs" + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result + + # Add the arguments to base_compile. + func_append base_compile " $lastarg" + continue + ;; + + *) + # Accept the current argument as the source file. + # The previous "srcfile" becomes the current argument. + # + lastarg="$srcfile" + srcfile="$arg" + ;; + esac # case $arg + ;; + esac # case $arg_mode + + # Aesthetically quote the previous argument. + func_append_quoted base_compile "$lastarg" + done # for arg + + case $arg_mode in + arg) + func_fatal_error "you must specify an argument for -Xcompile" + ;; + target) + func_fatal_error "you must specify a target with \`-o'" + ;; + *) + # Get the name of the library object. + test -z "$libobj" && { + func_basename "$srcfile" + libobj="$func_basename_result" + } + ;; + esac + + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + case $libobj in + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + func_xform "$libobj" + libobj=$func_xform_result + ;; + esac + + case $libobj in + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; + *) + func_fatal_error "cannot determine name of library object from \`$libobj'" + ;; + esac + + func_infer_tag $base_compile + + for arg in $later; do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + continue + ;; + + -static) + build_libtool_libs=no + build_old_libs=yes + continue + ;; + + -prefer-pic) + pic_mode=yes + continue + ;; + + -prefer-non-pic) + pic_mode=no + continue + ;; + esac + done + + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name \`$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname="$func_basename_result" + xdir="$func_dirname_result" + lobj=${xdir}$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test "$build_old_libs" = yes; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2* | cegcc*) + pic_mode=default + ;; + esac + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test "$compiler_c_o" = no; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} + lockfile="$output_obj.lock" + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test "$need_locks" = yes; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test "$need_locks" = warn; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + func_append removelist " $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + func_append removelist " $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 + srcfile=$func_to_tool_file_result + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test "$build_libtool_libs" = yes; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test "$pic_mode" != no; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + func_append command " -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test "$suppress_opt" = yes; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test "$build_old_libs" = yes; then + if test "$pic_mode" != yes; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test "$compiler_c_o" = yes; then + func_append command " -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + func_append command "$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test "$need_locks" != no; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { + test "$opt_mode" = compile && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $opt_mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to build PIC objects only + -prefer-non-pic try to build non-PIC objects only + -shared do not build a \`.o' file suitable for static linking + -static only build a \`.o' file suitable for static linking + -Wc,FLAG pass FLAG directly to the compiler + +COMPILE-COMMAND is a command to be used in creating a \`standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix \`.c' with the +library object suffix, \`.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to \`-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the \`--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the \`install' or \`cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -bindir BINDIR specify path to binaries directory (for systems where + libraries must be found in the PATH setting at runtime) + -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE Use a list of object files found in FILE to specify objects + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + -Wc,FLAG + -Xcompiler FLAG pass linker-specific FLAG directly to the compiler + -Wl,FLAG + -Xlinker FLAG pass linker-specific FLAG directly to the linker + -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) + +All other options (arguments beginning with \`-') are ignored. + +Every other argument is treated as a filename. Files ending in \`.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in \`.la', then a libtool library is created, +only library objects (\`.lo' files) may be specified, and \`-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created +using \`ar' and \`ranlib', or on Windows using \`lib'. + +If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode \`$opt_mode'" + ;; + esac + + echo + $ECHO "Try \`$progname --help' for more information about other modes." +} + +# Now that we've collected a possible --mode arg, show help if necessary +if $opt_help; then + if test "$opt_help" = :; then + func_mode_help + else + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + func_mode_help + done + } | sed -n '1p; 2,$s/^Usage:/ or: /p' + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + echo + func_mode_help + done + } | + sed '1d + /^When reporting/,/^Report/{ + H + d + } + $x + /information about other modes/d + /more detailed .*MODE/d + s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' + fi + exit $? +fi + + +# func_mode_execute arg... +func_mode_execute () +{ + $opt_debug + # The first argument is the command name. + cmd="$nonopt" + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $opt_dlopen; do + test -f "$file" \ + || func_fatal_help "\`$file' is not a file" + + dir= + case $file in + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "\`$file' was not linked with \`-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir="$func_dirname_result" + + if test -f "$dir/$objdir/$dlname"; then + func_append dir "/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir="$func_dirname_result" + ;; + + *) + func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir="$absdir" + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic="$magic" + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -* | *.la | *.lo ) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file="$progdir/$program" + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file="$progdir/$program" + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_append_quoted args "$file" + done + + if test "X$opt_dry_run" = Xfalse; then + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd="\$cmd$args" + else + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = execute && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $opt_debug + libs= + libdirs= + admincmds= + + for opt in "$nonopt" ${1+"$@"} + do + if test -d "$opt"; then + func_append libdirs " $opt" + + elif test -f "$opt"; then + if func_lalib_unsafe_p "$opt"; then + func_append libs " $opt" + else + func_warning "\`$opt' is not a valid libtool archive" + fi + + else + func_fatal_error "invalid argument \`$opt'" + fi + done + + if test -n "$libs"; then + if test -n "$lt_sysroot"; then + sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` + sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" + else + sysroot_cmd= + fi + + # Remove sysroot references + if $opt_dry_run; then + for lib in $libs; do + echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + done + else + tmpdir=`func_mktempdir` + for lib in $libs; do + sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + > $tmpdir/tmp-la + mv -f $tmpdir/tmp-la $lib + done + ${RM}r "$tmpdir" + fi + fi + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || func_append admincmds " + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_silent && exit $EXIT_SUCCESS + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" + echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " during execution" + fi + if test -n "$runpath_var"; then + echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the \`$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + fi + echo + + echo "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" + echo "pages." + ;; + *) + echo "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + echo "----------------------------------------------------------------------" + fi + exit $EXIT_SUCCESS +} + +test "$opt_mode" = finish && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $opt_debug + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac; then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + func_append install_prog "$func_quote_for_eval_result" + install_shared_prog=$install_prog + case " $install_prog " in + *[\\\ /]cp\ *) install_cp=: ;; + *) install_cp=false ;; + esac + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=no + stripme= + no_mode=: + for arg + do + arg2= + if test -n "$dest"; then + func_append files " $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=yes ;; + -f) + if $install_cp; then :; else + prev=$arg + fi + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + if test "x$prev" = x-m && test -n "$install_override_mode"; then + arg2=$install_override_mode + no_mode=false + fi + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + func_append install_prog " $func_quote_for_eval_result" + if test -n "$arg2"; then + func_quote_for_eval "$arg2" + fi + func_append install_shared_prog " $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the \`$prev' option requires an argument" + + if test -n "$install_override_mode" && $no_mode; then + if $install_cp; then :; else + func_quote_for_eval "$install_override_mode" + func_append install_shared_prog " -m $func_quote_for_eval_result" + fi + fi + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=yes + if test "$isdir" = yes; then + destdir="$dest" + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir="$func_dirname_result" + destname="$func_basename_result" + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "\`$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "\`$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + func_append staticlibs " $file" + ;; + + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) func_append current_libdirs " $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) func_append future_libdirs " $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir="$func_dirname_result" + func_append dir "$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking \`$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname="$1" + shift + + srcname="$realname" + test -n "$relink_command" && srcname="$realname"T + + # Install the shared library and build the symlinks. + func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme="$stripme" + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme="" + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try `ln -sf' first, because the `ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib="$destdir/$realname" + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name="$func_basename_result" + instname="$dir/$name"i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && func_append staticlibs " $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest="$destfile" + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to \`$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test "$build_old_libs" = yes; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext="" + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=".exe" + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script \`$wrapper'" + + finalize=yes + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "\`$lib' has not been installed in \`$libdir'" + finalize=no + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test "$fast_install" = no && test -n "$relink_command"; then + $opt_dry_run || { + if test "$finalize" = yes; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file="$func_basename_result" + outputname="$tmpdir/$file" + # Replace the output file specification. + relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_silent || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink \`$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file="$outputname" + else + func_warning "cannot relink \`$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name="$func_basename_result" + + # Set up the ranlib parameters. + oldlib="$destdir/$name" + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run \`$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = install && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $opt_debug + my_outputname="$1" + my_originator="$2" + my_pic_p="${3-no}" + my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms="${my_outputname}S.c" + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist="$output_objdir/${my_outputname}.nm" + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" +#endif + +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +/* External symbol declarations for the compiler. */\ +" + + if test "$dlself" = yes; then + func_verbose "generating symbol list for \`$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_to_tool_file "$progfile" func_convert_file_msys_to_w32 + func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols="$output_objdir/$outputname.exp" + $opt_dry_run || { + $RM $export_symbols + eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from \`$dlprefile'" + func_basename "$dlprefile" + name="$func_basename_result" + case $host in + *cygwin* | *mingw* | *cegcc* ) + # if an import library, we need to obtain dlname + if func_win32_import_lib_p "$dlprefile"; then + func_tr_sh "$dlprefile" + eval "curr_lafile=\$libfile_$func_tr_sh_result" + dlprefile_dlbasename="" + if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then + # Use subshell, to avoid clobbering current variable values + dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` + if test -n "$dlprefile_dlname" ; then + func_basename "$dlprefile_dlname" + dlprefile_dlbasename="$func_basename_result" + else + # no lafile. user explicitly requested -dlpreopen . + $sharedlib_from_linklib_cmd "$dlprefile" + dlprefile_dlbasename=$sharedlib_from_linklib_result + fi + fi + $opt_dry_run || { + if test -n "$dlprefile_dlbasename" ; then + eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' + else + func_warning "Could not compute DLL name from $name" + eval '$ECHO ": $name " >> "$nlist"' + fi + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | + $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" + } + else # not an import lib + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + fi + ;; + *) + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + ;; + esac + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + echo '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + echo >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +extern LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[]; +LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{\ + { \"$my_originator\", (void *) 0 }," + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + echo >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + if test "X$my_pic_p" != Xno; then + pic_flag_for_symtable=" $pic_flag" + fi + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) func_append symtab_cflags " $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + + # Transform the symbol file into the correct name. + symfileobj="$output_objdir/${my_outputname}S.$objext" + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for \`$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` + fi +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +# Despite the name, also deal with 64 bit binaries. +func_win32_libid () +{ + $opt_debug + win32_libid_type="unknown" + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' + 1,100{ + / I /{ + s,.*,import, + p + q + } + }'` + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + +# func_cygming_dll_for_implib ARG +# +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib () +{ + $opt_debug + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` +} + +# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs +# +# The is the core of a fallback implementation of a +# platform-specific function to extract the name of the +# DLL associated with the specified import library LIBNAME. +# +# SECTION_NAME is either .idata$6 or .idata$7, depending +# on the platform and compiler that created the implib. +# +# Echos the name of the DLL associated with the +# specified import library. +func_cygming_dll_for_implib_fallback_core () +{ + $opt_debug + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` + $OBJDUMP -s --section "$1" "$2" 2>/dev/null | + $SED '/^Contents of section '"$match_literal"':/{ + # Place marker at beginning of archive member dllname section + s/.*/====MARK====/ + p + d + } + # These lines can sometimes be longer than 43 characters, but + # are always uninteresting + /:[ ]*file format pe[i]\{,1\}-/d + /^In archive [^:]*:/d + # Ensure marker is printed + /^====MARK====/p + # Remove all lines with less than 43 characters + /^.\{43\}/!d + # From remaining lines, remove first 43 characters + s/^.\{43\}//' | + $SED -n ' + # Join marker and all lines until next marker into a single line + /^====MARK====/ b para + H + $ b para + b + :para + x + s/\n//g + # Remove the marker + s/^====MARK====// + # Remove trailing dots and whitespace + s/[\. \t]*$// + # Print + /./p' | + # we now have a list, one entry per line, of the stringified + # contents of the appropriate section of all members of the + # archive which possess that section. Heuristic: eliminate + # all those which have a first or second character that is + # a '.' (that is, objdump's representation of an unprintable + # character.) This should work for all archives with less than + # 0x302f exports -- but will fail for DLLs whose name actually + # begins with a literal '.' or a single character followed by + # a '.'. + # + # Of those that remain, print the first one. + $SED -e '/^\./d;/^.\./d;q' +} + +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + +# func_cygming_dll_for_implib_fallback ARG +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# +# This fallback implementation is for use when $DLLTOOL +# does not support the --identify-strict option. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib_fallback () +{ + $opt_debug + if func_cygming_gnu_implib_p "$1" ; then + # binutils import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` + elif func_cygming_ms_implib_p "$1" ; then + # ms-generated import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` + else + # unknown + sharedlib_from_linklib_result="" + fi +} + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $opt_debug + f_ex_an_ar_dir="$1"; shift + f_ex_an_ar_oldlib="$1" + if test "$lock_old_archive_extraction" = yes; then + lockfile=$f_ex_an_ar_oldlib.lock + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + fi + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ + 'stat=$?; rm -f "$lockfile"; exit $stat' + if test "$lock_old_archive_extraction" = yes; then + $opt_dry_run || rm -f "$lockfile" + fi + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $opt_debug + my_gentop="$1"; shift + my_oldlibs=${1+"$@"} + my_oldobjs="" + my_xlib="" + my_xabs="" + my_xdir="" + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib="$func_basename_result" + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir="$my_gentop/$my_xlib_u" + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + darwin_base_archive=`basename "$darwin_archive"` + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches ; do + func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" + $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" + cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" + func_extract_an_archive "`pwd`" "${darwin_base_archive}" + cd "$darwin_curdir" + $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` + done + + func_extract_archives_result="$my_oldobjs" +} + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory in which it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=${1-no} + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + file=\"\$0\"" + + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + $ECHO "\ + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + ECHO=\"$qECHO\" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ which is used only on +# windows platforms, and (c) all begin with the string "--lt-" +# (application programs are unlikely to have options which match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's $0 value, followed by "$@". +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=\$0 + shift + for lt_opt + do + case \"\$lt_opt\" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` + test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. + lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` + cat \"\$lt_dump_D/\$lt_dump_F\" + exit 0 + ;; + --lt-*) + \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n \"\$lt_option_debug\"; then + echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from \$@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case \" \$* \" in + *\\ --lt-*) + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done ;; + esac + func_exec_program_core \${1+\"\$@\"} +} + + # Parse options + func_parse_lt_options \"\$0\" \${1+\"\$@\"} + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test "$fast_install" = yes; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + $ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # fixup the dll searchpath if we need to. + # + # Fix the DLL searchpath if we need to. Do this before prepending + # to shlibpath, because on Windows, both are PATH and uninstalled + # libraries must come first. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + # Export our shlibpath_var if we have one. + if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` + + export $shlibpath_var +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. + func_exec_program \${1+\"\$@\"} + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} + + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +/* declarations of non-ANSI functions */ +#if defined(__MINGW32__) +# ifdef __STRICT_ANSI__ +int _putenv (const char *); +# endif +#elif defined(__CYGWIN__) +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +/* #elif defined (other platforms) ... */ +#endif + +/* portability defines, excluding path handling macros */ +#if defined(_MSC_VER) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +# define S_IXUSR _S_IEXEC +# ifndef _INTPTR_T_DEFINED +# define _INTPTR_T_DEFINED +# define intptr_t int +# endif +#elif defined(__MINGW32__) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +#elif defined(__CYGWIN__) +# define HAVE_SETENV +# define FOPEN_WB "wb" +/* #elif defined (other platforms) ... */ +#endif + +#if defined(PATH_MAX) +# define LT_PATHMAX PATH_MAX +#elif defined(MAXPATHLEN) +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +/* path handling portability macros */ +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ + defined (__OS2__) +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free ((void *) stale); stale = 0; } \ +} while (0) + +#if defined(LT_DEBUGWRAPPER) +static int lt_debug = 1; +#else +static int lt_debug = 0; +#endif + +const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_debugprintf (const char *file, int line, const char *fmt, ...); +void lt_fatal (const char *file, int line, const char *message, ...); +static const char *nonnull (const char *s); +static const char *nonempty (const char *s); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); +char **prepare_spawn (char **argv); +void lt_dump_script (FILE *f); +EOF + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", + nonempty (path)); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + int tmp_len; + char *concat_name; + + lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", + nonempty (wrapper)); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = q - p; + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + lt_debugprintf (__FILE__, __LINE__, + "checking path component for symlinks: %s\n", + tmp_pathspec); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + lt_fatal (__FILE__, __LINE__, + "error accessing file \"%s\": %s", + tmp_pathspec, nonnull (strerror (errno))); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal (__FILE__, __LINE__, + "could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (strcmp (str, pat) == 0) + *str = '\0'; + } + return str; +} + +void +lt_debugprintf (const char *file, int line, const char *fmt, ...) +{ + va_list args; + if (lt_debug) + { + (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); + } +} + +static void +lt_error_core (int exit_status, const char *file, + int line, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *file, int line, const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); + va_end (ap); +} + +static const char * +nonnull (const char *s) +{ + return s ? s : "(null)"; +} + +static const char * +nonempty (const char *s) +{ + return (s && !*s) ? "(empty)" : nonnull (s); +} + +void +lt_setenv (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_setenv) setting '%s' to '%s'\n", + nonnull (name), nonnull (value)); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + int len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + int orig_value_len = strlen (orig_value); + int add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + int len = strlen (new_value); + while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[len-1] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +EOF + case $host_os in + mingw*) + cat <<"EOF" + +/* Prepares an argument vector before calling spawn(). + Note that spawn() does not by itself call the command interpreter + (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : + ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + GetVersionEx(&v); + v.dwPlatformId == VER_PLATFORM_WIN32_NT; + }) ? "cmd.exe" : "command.com"). + Instead it simply concatenates the arguments, separated by ' ', and calls + CreateProcess(). We must quote the arguments since Win32 CreateProcess() + interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a + special way: + - Space and tab are interpreted as delimiters. They are not treated as + delimiters if they are surrounded by double quotes: "...". + - Unescaped double quotes are removed from the input. Their only effect is + that within double quotes, space and tab are treated like normal + characters. + - Backslashes not followed by double quotes are not special. + - But 2*n+1 backslashes followed by a double quote become + n backslashes followed by a double quote (n >= 0): + \" -> " + \\\" -> \" + \\\\\" -> \\" + */ +#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +char ** +prepare_spawn (char **argv) +{ + size_t argc; + char **new_argv; + size_t i; + + /* Count number of arguments. */ + for (argc = 0; argv[argc] != NULL; argc++) + ; + + /* Allocate new argument vector. */ + new_argv = XMALLOC (char *, argc + 1); + + /* Put quoted arguments into the new argument vector. */ + for (i = 0; i < argc; i++) + { + const char *string = argv[i]; + + if (string[0] == '\0') + new_argv[i] = xstrdup ("\"\""); + else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) + { + int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); + size_t length; + unsigned int backslashes; + const char *s; + char *quoted_string; + char *p; + + length = 0; + backslashes = 0; + if (quote_around) + length++; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + length += backslashes + 1; + length++; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + length += backslashes + 1; + + quoted_string = XMALLOC (char, length + 1); + + p = quoted_string; + backslashes = 0; + if (quote_around) + *p++ = '"'; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + { + unsigned int j; + for (j = backslashes + 1; j > 0; j--) + *p++ = '\\'; + } + *p++ = c; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + { + unsigned int j; + for (j = backslashes; j > 0; j--) + *p++ = '\\'; + *p++ = '"'; + } + *p = '\0'; + + new_argv[i] = quoted_string; + } + else + new_argv[i] = (char *) string; + } + new_argv[argc] = NULL; + + return new_argv; +} +EOF + ;; + esac + + cat <<"EOF" +void lt_dump_script (FILE* f) +{ +EOF + func_emit_wrapper yes | + $SED -n -e ' +s/^\(.\{79\}\)\(..*\)/\1\ +\2/ +h +s/\([\\"]\)/\\\1/g +s/$/\\n/ +s/\([^\n]*\).*/ fputs ("\1", f);/p +g +D' + cat <<"EOF" +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_win32_import_lib_p ARG +# True if ARG is an import lib, as indicated by $file_magic_cmd +func_win32_import_lib_p () +{ + $opt_debug + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in + *import*) : ;; + *) false ;; + esac +} + +# func_mode_link arg... +func_mode_link () +{ + $opt_debug + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # which system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll which has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + bindir= + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=no + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module="${wl}-single_module" + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg="$1" + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" + ;; + esac + + case $prev in + bindir) + bindir="$arg" + prev= + continue + ;; + dlfiles|dlprefiles) + if test "$preload" = no; then + # Add the symbol object into the linking commands. + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=yes + fi + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test "$dlself" = no; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test "$prev" = dlprefiles; then + dlself=yes + elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test "$prev" = dlfiles; then + func_append dlfiles " $arg" + else + func_append dlprefiles " $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols="$arg" + test -f "$arg" \ + || func_fatal_error "symbol file \`$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex="$arg" + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) func_append deplibs " $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir="$arg" + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# func_append moreargs " $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file \`$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + precious_regex) + precious_files_regex="$arg" + prev= + continue + ;; + release) + release="-$arg" + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test "$prev" = rpath; then + case "$rpath " in + *" $arg "*) ;; + *) func_append rpath " $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) func_append xrpath " $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds="$arg" + prev= + continue + ;; + weak) + func_append weak_libs " $arg" + prev= + continue + ;; + xcclinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xcompiler) + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xlinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $wl$qarg" + prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg="$arg" + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "\`-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -bindir) + prev=bindir + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test "X$arg" = "X-export-symbols"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + func_append compile_command " $arg" + func_append finalize_command " $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname "-L" '' "$arg" + if test -z "$func_stripname_result"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between \`-L' and \`$1'" + else + func_fatal_error "need path for \`-L' option" + fi + fi + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of \`$dir'" + dir="$absdir" + ;; + esac + case "$deplibs " in + *" -L$dir "* | *" $arg "*) + # Will only happen for absolute or sysroot arguments + ;; + *) + # Preserve sysroot, but never include relative directories + case $dir in + [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; + *) func_append deplibs " -L$dir" ;; + esac + func_append lib_search_path " $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + ::) dllsearchpath=$dir;; + *) func_append dllsearchpath ":$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test "X$arg" = "X-lc" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + test "X$arg" = "X-lc" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + func_append deplibs " System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test "X$arg" = "X-lc" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test "X$arg" = "X-lc" && continue + ;; + esac + elif test "X$arg" = "X-lc_r"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + func_append deplibs " $arg" + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot|--sysroot) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) func_append new_inherited_linker_flags " $arg" ;; + esac + continue + ;; + + -multi_module) + single_module="${wl}-multi_module" + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "\`-no-install' is ignored for $host" + func_warning "assuming \`-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + =*) + func_stripname '=' '' "$dir" + dir=$lt_sysroot$func_stripname_result + ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $func_quote_for_eval_result" + func_append compiler_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $wl$func_quote_for_eval_result" + func_append compiler_flags " $wl$func_quote_for_eval_result" + func_append linker_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + # Flags to be passed through unchanged, with rationale: + # -64, -mips[0-9] enable 64-bit mode for the SGI compiler + # -r[0-9][0-9]* specify processor for the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler + # +DA*, +DD* enable 64-bit mode for the HP compiler + # -q* compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* architecture-specific flags for GCC + # -F/path path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # @file GCC response files + # -tp=* Portland pgcc target processor selection + # --sysroot=* for sysroot support + # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-flto*|-fwhopr*|-fuse-linker-plugin) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + func_append compile_command " $arg" + func_append finalize_command " $arg" + func_append compiler_flags " $arg" + continue + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + *.$objext) + # A standard object. + func_append objs " $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + func_append deplibs " $arg" + func_append old_deplibs " $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + func_resolve_sysroot "$arg" + if test "$prev" = dlfiles; then + # This library was specified with -dlopen. + func_append dlfiles " $func_resolve_sysroot_result" + prev= + elif test "$prev" = dlprefiles; then + # The library was specified with -dlpreopen. + func_append dlprefiles " $func_resolve_sysroot_result" + prev= + else + func_append deplibs " $func_resolve_sysroot_result" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the \`$prevarg' option requires an argument" + + if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname="$func_basename_result" + libobjs_save="$libobjs" + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + func_dirname "$output" "/" "" + output_objdir="$func_dirname_result$objdir" + func_to_tool_file "$output_objdir/" + tool_output_objdir=$func_to_tool_file_result + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_preserve_dup_deps ; then + case "$libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append libs " $deplib" + done + + if test "$linkmode" = lib; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; + esac + func_append pre_post_deps " $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=no + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test "$linkmode,$pass" = "lib,link"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs="$tmp_deplibs" + fi + + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan"; then + libs="$deplibs" + deplibs= + fi + if test "$linkmode" = prog; then + case $pass in + dlopen) libs="$dlfiles" ;; + dlpreopen) libs="$dlprefiles" ;; + link) + libs="$deplibs %DEPLIBS%" + test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" + ;; + esac + fi + if test "$linkmode,$pass" = "lib,dlpreopen"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + func_resolve_sysroot "$lib" + case $lib in + *.la) func_source "$func_resolve_sysroot_result" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + func_basename "$deplib" + deplib_base=$func_basename_result + case " $weak_libs " in + *" $deplib_base "*) ;; + *) func_append deplibs " $deplib" ;; + esac + done + done + libs="$dlprefiles" + fi + if test "$pass" = dlopen; then + # Collect dlpreopened libraries + save_deplibs="$deplibs" + deplibs= + fi + + for deplib in $libs; do + lib= + found=no + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append compiler_flags " $deplib" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test "$linkmode" != lib && test "$linkmode" != prog; then + func_warning "\`-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test "$linkmode" = lib; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib="$searchdir/lib${name}${search_ext}" + if test -f "$lib"; then + if test "$search_ext" = ".la"; then + found=yes + else + found=no + fi + break 2 + fi + done + done + if test "$found" != yes; then + # deplib doesn't seem to be a libtool library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + else # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll="$l" + done + if test "X$ll" = "X$old_library" ; then # only static version available + found=no + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + lib=$ladir/$old_library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + fi + ;; # -l + *.ltframework) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test "$pass" = conv && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + prog) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + if test "$pass" = scan; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + *) + func_warning "\`-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test "$pass" = link; then + func_stripname '-R' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) + func_resolve_sysroot "$deplib" + lib=$func_resolve_sysroot_result + ;; + *.$libext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=no + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=yes + fi + ;; + pass_all) + valid_a_lib=yes + ;; + esac + if test "$valid_a_lib" != yes; then + echo + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because the file extensions .$libext of this argument makes me believe" + echo "*** that it is just a static archive that I should not use here." + else + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + fi + ;; + esac + continue + ;; + prog) + if test "$pass" != link; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + elif test "$linkmode" = prog; then + if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + func_append newdlprefiles " $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append newdlfiles " $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=yes + continue + ;; + esac # case $deplib + + if test "$found" = yes || test -f "$lib"; then : + else + func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" + fi + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "\`$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan" || + { test "$linkmode" != prog && test "$linkmode" != lib; }; then + test -n "$dlopen" && func_append dlfiles " $dlopen" + test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" + fi + + if test "$pass" = conv; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + # It is a libtool convenience library, so add in its objects. + func_append convenience " $ladir/$objdir/$old_library" + func_append old_convenience " $ladir/$objdir/$old_library" + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done + elif test "$linkmode" != prog && test "$linkmode" != lib; then + func_fatal_error "\`$lib' is not a convenience library" + fi + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + if test -n "$old_library" && + { test "$prefer_static_libs" = yes || + test "$prefer_static_libs,$installed" = "built,no"; }; then + linklib=$old_library + else + for l in $old_library $library_names; do + linklib="$l" + done + fi + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + + # This library was specified with -dlopen. + if test "$pass" = dlopen; then + if test -z "$libdir"; then + func_fatal_error "cannot -dlopen a convenience library: \`$lib'" + fi + if test -z "$dlname" || + test "$dlopen_support" != yes || + test "$build_libtool_libs" = no; then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + func_append dlprefiles " $lib $dependency_libs" + else + func_append newdlfiles " $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir="$ladir" + fi + ;; + esac + func_basename "$lib" + laname="$func_basename_result" + + # Find the relevant object directory and library name. + if test "X$installed" = Xyes; then + if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library \`$lib' was moved." + dir="$ladir" + absdir="$abs_ladir" + libdir="$abs_ladir" + else + dir="$lt_sysroot$libdir" + absdir="$lt_sysroot$libdir" + fi + test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir="$ladir" + absdir="$abs_ladir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + else + dir="$ladir/$objdir" + absdir="$abs_ladir/$objdir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test "$pass" = dlpreopen; then + if test -z "$libdir" && test "$linkmode" = prog; then + func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + fi + case "$host" in + # special handling for platforms with PE-DLLs. + *cygwin* | *mingw* | *cegcc* ) + # Linker will automatically link against shared library if both + # static and shared are present. Therefore, ensure we extract + # symbols from the import library if a shared library is present + # (otherwise, the dlopen module name will be incorrect). We do + # this by putting the import library name into $newdlprefiles. + # We recover the dlopen module name by 'saving' the la file + # name in a special purpose variable, and (later) extracting the + # dlname from the la file. + if test -n "$dlname"; then + func_tr_sh "$dir/$linklib" + eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" + func_append newdlprefiles " $dir/$linklib" + else + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + fi + ;; + * ) + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + func_append newdlprefiles " $dir/$dlname" + else + func_append newdlprefiles " $dir/$linklib" + fi + ;; + esac + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test "$linkmode" = lib; then + deplibs="$dir/$old_library $deplibs" + elif test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test "$linkmode" = prog && test "$pass" != link; then + func_append newlib_search_path " $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=no + if test "$link_all_deplibs" != no || test -z "$library_names" || + test "$build_libtool_libs" = no; then + linkalldeplibs=yes + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + esac + # Need to link against all dependency_libs? + if test "$linkalldeplibs" = yes; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test "$linkmode,$pass" = "prog,link"; then + if test -n "$library_names" && + { { test "$prefer_static_libs" = no || + test "$prefer_static_libs,$installed" = "built,yes"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + # Make sure the rpath contains only unique directories. + case "$temp_rpath:" in + *"$absdir:"*) ;; + *) func_append temp_rpath "$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if test "$alldeplibs" = yes && + { test "$deplibs_check_method" = pass_all || + { test "$build_libtool_libs" = yes && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test "$use_static_libs" = built && test "$installed" = yes; then + use_static_libs=no + fi + if test -n "$library_names" && + { test "$use_static_libs" = no || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw* | *cegcc*) + # No point in relinking DLLs because paths are not encoded + func_append notinst_deplibs " $lib" + need_relink=no + ;; + *) + if test "$installed" = no; then + func_append notinst_deplibs " $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule="" + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule="$dlpremoduletest" + break + fi + done + if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + echo + if test "$linkmode" = prog; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test "$linkmode" = lib && + test "$hardcode_into_libs" = yes; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname="$1" + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname="$dlname" + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw* | *cegcc*) + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + esac + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot="$soname" + func_basename "$soroot" + soname="$func_basename_result" + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from \`$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for \`$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test "$linkmode" = prog || test "$opt_mode" != relink; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test "$hardcode_direct" = no; then + add="$dir/$linklib" + case $host in + *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; + *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir="-L$dir" ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we can not + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null ; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library" ; then + echo + echo "*** And there doesn't seem to be a static archive available" + echo "*** The link will probably fail, sorry" + else + add="$dir/$old_library" + fi + elif test -n "$old_library"; then + add="$dir/$old_library" + fi + fi + esac + elif test "$hardcode_minus_L" = no; then + case $host in + *-*-sunos*) add_shlibpath="$dir" ;; + esac + add_dir="-L$dir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = no; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + relink) + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$dir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$absdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test "$lib_linked" != yes; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) func_append compile_shlibpath "$add_shlibpath:" ;; + esac + fi + if test "$linkmode" = prog; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test "$hardcode_direct" != yes && + test "$hardcode_minus_L" != yes && + test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + fi + fi + fi + + if test "$linkmode" = prog || test "$opt_mode" = relink; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$libdir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$libdir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + add="-l$name" + elif test "$hardcode_automatic" = yes; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib" ; then + add="$inst_prefix_dir$libdir/$linklib" + else + add="$libdir/$linklib" + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir="-L$libdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + fi + + if test "$linkmode" = prog; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test "$linkmode" = prog; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test "$hardcode_direct" != unsupported; then + test -n "$old_library" && linklib="$old_library" + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test "$build_libtool_libs" = yes; then + # Not a shared library + if test "$deplibs_check_method" != pass_all; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + echo + $ECHO "*** Warning: This system can not link to static lib archive $lib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have." + if test "$module" = yes; then + echo "*** But as you try to build a module library, libtool will still create " + echo "*** a static module, that should work as long as the dlopening application" + echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test "$linkmode" = lib; then + if test -n "$dependency_libs" && + { test "$hardcode_into_libs" != yes || + test "$build_old_libs" = yes || + test "$link_static" = yes; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) func_append xrpath " $temp_xrpath";; + esac;; + *) func_append temp_deplibs " $libdir";; + esac + done + dependency_libs="$temp_deplibs" + fi + + func_append newlib_search_path " $absdir" + # Link against this library + test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result";; + *) func_resolve_sysroot "$deplib" ;; + esac + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $func_resolve_sysroot_result "*) + func_append specialdeplibs " $func_resolve_sysroot_result" ;; + esac + fi + func_append tmp_libs " $func_resolve_sysroot_result" + done + + if test "$link_all_deplibs" != no; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + path= + case $deplib in + -L*) path="$deplib" ;; + *.la) + func_resolve_sysroot "$deplib" + deplib=$func_resolve_sysroot_result + func_dirname "$deplib" "" "." + dir=$func_dirname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of \`$dir'" + absdir="$dir" + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names" ; then + for tmp in $deplibrary_names ; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl" ; then + depdepl="$absdir/$objdir/$depdepl" + darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" + func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" + path= + fi + fi + ;; + *) + path="-L$absdir/$objdir" + ;; + esac + else + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "\`$deplib' seems to be moved" + + path="-L$absdir" + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test "$pass" = link; then + if test "$linkmode" = "prog"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs="$newdependency_libs" + if test "$pass" = dlpreopen; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test "$pass" != dlopen; then + if test "$pass" != conv; then + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) func_append lib_search_path " $dir" ;; + esac + done + newlib_search_path= + fi + + if test "$linkmode,$pass" != "prog,link"; then + vars="deplibs" + else + vars="compile_deplibs finalize_deplibs" + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) func_append tmp_libs " $deplib" ;; + esac + ;; + *) func_append tmp_libs " $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs ; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i="" + ;; + esac + if test -n "$i" ; then + func_append tmp_libs " $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test "$linkmode" = prog; then + dlfiles="$newdlfiles" + fi + if test "$linkmode" = prog || test "$linkmode" = lib; then + dlprefiles="$newdlprefiles" + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "\`-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "\`-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs="$output" + func_append objs "$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form `libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test "$module" = no && \ + func_fatal_help "libtool library \`$output' must begin with \`lib'" + + if test "$need_lib_prefix" != no; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test "$deplibs_check_method" != pass_all; then + func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + else + echo + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + func_append libobjs " $objs" + fi + fi + + test "$dlself" != no && \ + func_warning "\`-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test "$#" -gt 1 && \ + func_warning "ignoring multiple \`-rpath's for a libtool library" + + install_libdir="$1" + + oldlibs= + if test -z "$rpath"; then + if test "$build_libtool_libs" = yes; then + # Building a libtool convenience library. + # Some compilers have problems with a `.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "\`-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs="$IFS"; IFS=':' + set dummy $vinfo 0 0 0 + shift + IFS="$save_ifs" + + test -n "$7" && \ + func_fatal_help "too many parameters to \`-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major="$1" + number_minor="$2" + number_revision="$3" + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # which has an extra 1 added just for fun + # + case $version_type in + # correct linux to gnu/linux during the next big refactor + darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_revision" + ;; + freebsd-aout|freebsd-elf|qnx|sunos) + current="$number_major" + revision="$number_minor" + age="0" + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_minor" + lt_irix_increment=no + ;; + *) + func_fatal_configuration "$modename: unknown library version type \`$version_type'" + ;; + esac + ;; + no) + current="$1" + revision="$2" + age="$3" + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT \`$current' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION \`$revision' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE \`$age' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE \`$age' is greater than the current interface number \`$current'" + func_fatal_error "\`$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + + freebsd-aout) + major=".$current" + versuffix=".$current.$revision"; + ;; + + freebsd-elf) + major=".$current" + versuffix=".$current" + ;; + + irix | nonstopux) + if test "X$lt_irix_increment" = "Xno"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring="$verstring_prefix$major.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test "$loop" -ne 0; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring_prefix$major.$iface:$verstring" + done + + # Before this point, $major must not contain `.'. + major=.$major + versuffix="$major.$revision" + ;; + + linux) # correct to gnu/linux during the next big refactor + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=".$current.$age.$revision" + verstring="$current.$age.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$age + while test "$loop" -ne 0; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring:${iface}.0" + done + + # Make executables depend on our current version. + func_append verstring ":${current}.0" + ;; + + qnx) + major=".$current" + versuffix=".$current" + ;; + + sunos) + major=".$current" + versuffix=".$current.$revision" + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 filesystems. + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + + *) + func_fatal_configuration "unknown library version type \`$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring="0.0" + ;; + esac + if test "$need_version" = no; then + versuffix= + else + versuffix=".0.0" + fi + fi + + # Remove version info from name if versioning should be avoided + if test "$avoid_version" = yes && test "$need_version" = no; then + major= + versuffix= + verstring="" + fi + + # Check to see if the archive will have undefined symbols. + if test "$allow_undefined" = yes; then + if test "$allow_undefined_flag" = unsupported; then + func_warning "undefined symbols not allowed in $host shared libraries" + build_libtool_libs=no + build_old_libs=yes + fi + else + # Don't allow undefined symbols. + allow_undefined_flag="$no_undefined_flag" + fi + + fi + + func_generate_dlsyms "$libname" "$libname" "yes" + func_append libobjs " $symfileobj" + test "X$libobjs" = "X " && libobjs= + + if test "$opt_mode" != relink; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext | *.gcno) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) + if test "X$precious_files_regex" != "X"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + func_append removelist " $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + func_append oldlibs " $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` + # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` + # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + func_replace_sysroot "$libdir" + func_append temp_xrpath " -R$func_replace_sysroot_result" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles="$dlfiles" + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) func_append dlfiles " $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles="$dlprefiles" + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) func_append dlprefiles " $lib" ;; + esac + done + + if test "$build_libtool_libs" = yes; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + func_append deplibs " System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then + func_append deplibs " -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release="" + versuffix="" + major="" + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + $nocaseglob + else + potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` + fi + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib="$potent_lib" + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; + *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $a_deplib "*) + func_append newdeplibs " $a_deplib" + a_deplib="" + ;; + esac + fi + if test -n "$a_deplib" ; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib="$potent_lib" # see symlink-check above in file_magic test + if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs="" + tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + for i in $predeps $postdeps ; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + done + fi + case $tmp_deplibs in + *[!\ \ ]*) + echo + if test "X$deplibs_check_method" = "Xnone"; then + echo "*** Warning: inter-library dependencies are not supported in this platform." + else + echo "*** Warning: inter-library dependencies are not known to be supported." + fi + echo "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + ;; + esac + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + if test "$droppeddeps" = yes; then + if test "$module" = yes; then + echo + echo "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + echo "*** a static module, that should work as long as the dlopening" + echo "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." + + if test "$allow_undefined" = no; then + echo + echo "*** Since this library must not contain undefined symbols," + echo "*** because either the platform does not support them or" + echo "*** it was explicitly requested with -no-undefined," + echo "*** libtool will only create a static version of it." + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + deplibs="$new_libs" + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test "$build_libtool_libs" = yes; then + # Remove ${wl} instances when linking with ld. + # FIXME: should test the right _cmds variable. + case $archive_cmds in + *\$LD\ *) wl= ;; + esac + if test "$hardcode_into_libs" = yes; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath="$finalize_rpath" + test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + func_replace_sysroot "$libdir" + libdir=$func_replace_sysroot_result + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append dep_rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath="$finalize_shlibpath" + test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname="$1" + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib="$output_objdir/$realname" + linknames= + for link + do + func_append linknames " $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols="$output_objdir/$libname.uexp" + func_append delfiles " $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols="$export_symbols" + export_symbols= + always_export_symbols=yes + fi + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs="$IFS"; IFS='~' + for cmd1 in $cmds; do + IFS="$save_ifs" + # Take the normal branch if the nm_file_list_spec branch + # doesn't work or if tool conversion is not needed. + case $nm_file_list_spec~$to_tool_file_cmd in + *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) + try_normal_branch=yes + eval cmd=\"$cmd1\" + func_len " $cmd" + len=$func_len_result + ;; + *) + try_normal_branch=no + ;; + esac + if test "$try_normal_branch" = yes \ + && { test "$len" -lt "$max_cmd_len" \ + || test "$max_cmd_len" -le -1; } + then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + elif test -n "$nm_file_list_spec"; then + func_basename "$output" + output_la=$func_basename_result + save_libobjs=$libobjs + save_output=$output + output=${output_objdir}/${output_la}.nm + func_to_tool_file "$output" + libobjs=$nm_file_list_spec$func_to_tool_file_result + func_append delfiles " $output" + func_verbose "creating $NM input file list: $output" + for obj in $save_libobjs; do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > "$output" + eval cmd=\"$cmd1\" + func_show_eval "$cmd" 'exit $?' + output=$save_output + libobjs=$save_libobjs + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS="$save_ifs" + if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + func_append tmp_deplibs " $test_deplib" + ;; + esac + done + deplibs="$tmp_deplibs" + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test "$compiler_needs_object" = yes && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + func_append linker_flags " $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test "X$skipped_export" != "X:" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + func_basename "$output" + output_la=$func_basename_result + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then + output=${output_objdir}/${output_la}.lnkscript + func_verbose "creating GNU ld script: $output" + echo 'INPUT (' > $output + for obj in $save_libobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + echo ')' >> $output + func_append delfiles " $output" + func_to_tool_file "$output" + output=$func_to_tool_file_result + elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then + output=${output_objdir}/${output_la}.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test "$compiler_needs_object" = yes; then + firstobj="$1 " + shift + fi + for obj + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + func_append delfiles " $output" + func_to_tool_file "$output" + output=$firstobj\"$file_list_spec$func_to_tool_file_result\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-${k}.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test "X$objlist" = X || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test "$k" -eq 1 ; then + # The first file doesn't have a previous command to add. + reload_objs=$objlist + eval concat_cmds=\"$reload_cmds\" + else + # All subsequent reloadable object files will link in + # the last one created. + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-${k}.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-${k}.$objext + objlist=" $obj" + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + fi + func_append delfiles " $output" + + else + output= + fi + + if ${skipped_export-false}; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + fi + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs="$IFS"; IFS='~' + for cmd in $concat_cmds; do + IFS="$save_ifs" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + if ${skipped_export-false}; then + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + fi + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + eval cmd=\"$cmd\" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test "$module" = yes || test "$export_dynamic" = yes; then + # On all known operating systems, these are identical. + dlname="$soname" + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "\`-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object \`$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj="$output" + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # reload_cmds runs $LD directly, so let us get rid of + # -Wl from whole_archive_flag_spec and hope we can get by with + # turning comma into space.. + wl= + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + else + gentop="$output_objdir/${obj}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # If we're not building shared, we need to use non_pic_objs + test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + + # Create the old-style object. + reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + + output="$obj" + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + if test "$build_libtool_libs" != yes; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + fi + + if test -n "$pic_flag" || test "$pic_mode" != default; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output="$libobj" + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "\`-release' is ignored for programs" + + test "$preload" = yes \ + && test "$dlopen_support" = unknown \ + && test "$dlopen_self" = unknown \ + && test "$dlopen_self_static" = unknown && \ + func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test "$tagname" = CXX ; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + func_append compile_command " ${wl}-bind_at_load" + func_append finalize_command " ${wl}-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + compile_deplibs="$new_libs" + + + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; + *) func_append dllsearchpath ":$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath="$rpath" + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) func_append finalize_perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath="$rpath" + + if test -n "$libobjs" && test "$build_old_libs" = yes; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=yes + case $host in + *cegcc* | *mingw32ce*) + # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. + wrappers_required=no + ;; + *cygwin* | *mingw* ) + if test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + *) + if test "$need_relink" = no || test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + esac + if test "$wrappers_required" = no; then + # Replace the output file specification. + compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + link_command="$compile_command$compile_rpath" + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.${objext}"; then + func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + fi + + exit $exit_status + fi + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + func_append rpath "$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test "$no_install" = yes; then + # We don't need to create a wrapper script. + link_command="$compile_var$compile_command$compile_rpath" + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + exit $EXIT_SUCCESS + fi + + if test "$hardcode_action" = relink; then + # Fast installation is not supported + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "\`$output' will be relinked during installation" + else + if test "$fast_install" != no; then + link_command="$finalize_var$compile_command$finalize_rpath" + if test "$fast_install" = yes; then + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + else + # fast_install is set to needless + relink_command= + fi + else + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + fi + fi + + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output_objdir/$outputname" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource="$output_path/$objdir/lt-$output_name.c" + cwrapper="$output_path/$output_name.exe" + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host" ; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + if test "$build_libtool_libs" = convenience; then + oldobjs="$libobjs_save $symfileobj" + addlibs="$convenience" + build_libtool_libs=no + else + if test "$build_libtool_libs" = module; then + oldobjs="$libobjs_save" + build_libtool_libs=no + else + oldobjs="$old_deplibs $non_pic_objects" + if test "$preload" = yes && test -f "$symfileobj"; then + func_append oldobjs " $symfileobj" + fi + fi + addlibs="$old_convenience" + fi + + if test -n "$addlibs"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $addlibs + func_append oldobjs " $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append oldobjs " $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + echo "copying selected object files to avoid basename conflicts..." + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase="$func_basename_result" + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + func_append oldobjs " $gentop/$newobj" + ;; + *) func_append oldobjs " $obj" ;; + esac + done + fi + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + elif test -n "$archiver_list_spec"; then + func_verbose "using command file archive linking..." + for obj in $oldobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > $output_objdir/$libname.libcmd + func_to_tool_file "$output_objdir/$libname.libcmd" + oldobjs=" $archiver_list_spec$func_to_tool_file_result" + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj" ; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test "X$oldobjs" = "X" ; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test "$build_old_libs" = yes && old_library="$libname.$libext" + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + if test "$hardcode_automatic" = yes ; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test "$installed" = yes; then + if test -z "$install_libdir"; then + break + fi + output="$output_objdir/$outputname"i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name="$func_basename_result" + func_resolve_sysroot "$deplib" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" + ;; + -L*) + func_stripname -L '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -L$func_replace_sysroot_result" + ;; + -R*) + func_stripname -R '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -R$func_replace_sysroot_result" + ;; + *) func_append newdependency_libs " $deplib" ;; + esac + done + dependency_libs="$newdependency_libs" + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" + ;; + *) func_append newdlfiles " $lib" ;; + esac + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" + ;; + esac + done + dlprefiles="$newdlprefiles" + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlfiles " $abs" + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlprefiles " $abs" + done + dlprefiles="$newdlprefiles" + fi + $RM $output + # place dlname in correct position for cygwin + # In fact, it would be nice if we could use this code for all target + # systems that can't hard-code library paths into their executables + # and that have no shared library path variable independent of PATH, + # but it turns out we can't easily determine that from inspecting + # libtool variables, so we have to hard-code the OSs to which it + # applies here; at the moment, that means platforms that use the PE + # object format with DLL files. See the long comment at the top of + # tests/bindir.at for full details. + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) + # If a -bindir argument was supplied, place the dll there. + if test "x$bindir" != x ; + then + func_relative_path "$install_libdir" "$bindir" + tdlname=$func_relative_path_result$dlname + else + # Otherwise fall back on heuristic. + tdlname=../bin/$dlname + fi + ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test "$installed" = no && test "$need_relink" = yes; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +{ test "$opt_mode" = link || test "$opt_mode" = relink; } && + func_mode_link ${1+"$@"} + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $opt_debug + RM="$nonopt" + files= + rmforce= + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + for arg + do + case $arg in + -f) func_append RM " $arg"; rmforce=yes ;; + -*) func_append RM " $arg" ;; + *) func_append files " $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + for file in $files; do + func_dirname "$file" "" "." + dir="$func_dirname_result" + if test "X$dir" = X.; then + odir="$objdir" + else + odir="$dir/$objdir" + fi + func_basename "$file" + name="$func_basename_result" + test "$opt_mode" = uninstall && odir="$dir" + + # Remember odir for removal later, being careful to avoid duplicates + if test "$opt_mode" = clean; then + case " $rmdirs " in + *" $odir "*) ;; + *) func_append rmdirs " $odir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif test "$rmforce" = yes; then + continue + fi + + rmfiles="$file" + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + func_append rmfiles " $odir/$n" + done + test -n "$old_library" && func_append rmfiles " $odir/$old_library" + + case "$opt_mode" in + clean) + case " $library_names " in + *" $dlname "*) ;; + *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; + esac + test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && + test "$pic_object" != none; then + func_append rmfiles " $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && + test "$non_pic_object" != none; then + func_append rmfiles " $dir/$non_pic_object" + fi + fi + ;; + + *) + if test "$opt_mode" = clean ; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + func_append rmfiles " $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + func_append rmfiles " $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + func_append rmfiles " $odir/$name $odir/${name}S.${objext}" + if test "$fast_install" = yes && test -n "$relink_command"; then + func_append rmfiles " $odir/lt-$name" + fi + if test "X$noexename" != "X$name" ; then + func_append rmfiles " $odir/lt-${noexename}.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + + # Try to remove the ${objdir}s in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && + func_mode_uninstall ${1+"$@"} + +test -z "$opt_mode" && { + help="$generic_help" + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode \`$opt_mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# in which we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: +# vi:sw=2 + diff --git a/UnitTest/gmock-1.7.0/build-aux/missing b/UnitTest/gmock-1.7.0/build-aux/missing new file mode 100644 index 0000000..86a8fc3 --- /dev/null +++ b/UnitTest/gmock-1.7.0/build-aux/missing @@ -0,0 +1,331 @@ +#! /bin/sh +# Common stub for a few missing GNU programs while installing. + +scriptversion=2012-01-06.13; # UTC + +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, +# 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. +# Originally by Fran,cois Pinard , 1996. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +if test $# -eq 0; then + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 +fi + +run=: +sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' +sed_minuso='s/.* -o \([^ ]*\).*/\1/p' + +# In the cases where this matters, `missing' is being run in the +# srcdir already. +if test -f configure.ac; then + configure_ac=configure.ac +else + configure_ac=configure.in +fi + +msg="missing on your system" + +case $1 in +--run) + # Try to run requested program, and just exit if it succeeds. + run= + shift + "$@" && exit 0 + # Exit code 63 means version mismatch. This often happens + # when the user try to use an ancient version of a tool on + # a file that requires a minimum version. In this case we + # we should proceed has if the program had been absent, or + # if --run hadn't been passed. + if test $? = 63; then + run=: + msg="probably too old" + fi + ;; + + -h|--h|--he|--hel|--help) + echo "\ +$0 [OPTION]... PROGRAM [ARGUMENT]... + +Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an +error status if there is no known handling for PROGRAM. + +Options: + -h, --help display this help and exit + -v, --version output version information and exit + --run try to run the given command, and emulate it if it fails + +Supported PROGRAM values: + aclocal touch file \`aclocal.m4' + autoconf touch file \`configure' + autoheader touch file \`config.h.in' + autom4te touch the output file, or create a stub one + automake touch all \`Makefile.in' files + bison create \`y.tab.[ch]', if possible, from existing .[ch] + flex create \`lex.yy.c', if possible, from existing .c + help2man touch the output file + lex create \`lex.yy.c', if possible, from existing .c + makeinfo touch the output file + yacc create \`y.tab.[ch]', if possible, from existing .[ch] + +Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and +\`g' are ignored when checking the name. + +Send bug reports to ." + exit $? + ;; + + -v|--v|--ve|--ver|--vers|--versi|--versio|--version) + echo "missing $scriptversion (GNU Automake)" + exit $? + ;; + + -*) + echo 1>&2 "$0: Unknown \`$1' option" + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 + ;; + +esac + +# normalize program name to check for. +program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + +# Now exit if we have it, but it failed. Also exit now if we +# don't have it and --version was passed (most likely to detect +# the program). This is about non-GNU programs, so use $1 not +# $program. +case $1 in + lex*|yacc*) + # Not GNU programs, they don't have --version. + ;; + + *) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + elif test "x$2" = "x--version" || test "x$2" = "x--help"; then + # Could not run --version or --help. This is probably someone + # running `$TOOL --version' or `$TOOL --help' to check whether + # $TOOL exists and not knowing $TOOL uses missing. + exit 1 + fi + ;; +esac + +# If it does not exist, or fails to run (possibly an outdated version), +# try to emulate it. +case $program in + aclocal*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acinclude.m4' or \`${configure_ac}'. You might want + to install the \`Automake' and \`Perl' packages. Grab them from + any GNU archive site." + touch aclocal.m4 + ;; + + autoconf*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`${configure_ac}'. You might want to install the + \`Autoconf' and \`GNU m4' packages. Grab them from any GNU + archive site." + touch configure + ;; + + autoheader*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acconfig.h' or \`${configure_ac}'. You might want + to install the \`Autoconf' and \`GNU m4' packages. Grab them + from any GNU archive site." + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` + test -z "$files" && files="config.h" + touch_files= + for f in $files; do + case $f in + *:*) touch_files="$touch_files "`echo "$f" | + sed -e 's/^[^:]*://' -e 's/:.*//'`;; + *) touch_files="$touch_files $f.in";; + esac + done + touch $touch_files + ;; + + automake*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. + You might want to install the \`Automake' and \`Perl' packages. + Grab them from any GNU archive site." + find . -type f -name Makefile.am -print | + sed 's/\.am$/.in/' | + while read f; do touch "$f"; done + ;; + + autom4te*) + echo 1>&2 "\ +WARNING: \`$1' is needed, but is $msg. + You might have modified some files without having the + proper tools for further handling them. + You can get \`$1' as part of \`Autoconf' from any GNU + archive site." + + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo "#! /bin/sh" + echo "# Created by GNU Automake missing as a replacement of" + echo "# $ $@" + echo "exit 0" + chmod +x $file + exit 1 + fi + ;; + + bison*|yacc*) + echo 1>&2 "\ +WARNING: \`$1' $msg. You should only need it if + you modified a \`.y' file. You may need the \`Bison' package + in order for those modifications to take effect. You can get + \`Bison' from any GNU archive site." + rm -f y.tab.c y.tab.h + if test $# -ne 1; then + eval LASTARG=\${$#} + case $LASTARG in + *.y) + SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.c + fi + SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.h + fi + ;; + esac + fi + if test ! -f y.tab.h; then + echo >y.tab.h + fi + if test ! -f y.tab.c; then + echo 'main() { return 0; }' >y.tab.c + fi + ;; + + lex*|flex*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.l' file. You may need the \`Flex' package + in order for those modifications to take effect. You can get + \`Flex' from any GNU archive site." + rm -f lex.yy.c + if test $# -ne 1; then + eval LASTARG=\${$#} + case $LASTARG in + *.l) + SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" lex.yy.c + fi + ;; + esac + fi + if test ! -f lex.yy.c; then + echo 'main() { return 0; }' >lex.yy.c + fi + ;; + + help2man*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a dependency of a manual page. You may need the + \`Help2man' package in order for those modifications to take + effect. You can get \`Help2man' from any GNU archive site." + + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo ".ab help2man is required to generate this page" + exit $? + fi + ;; + + makeinfo*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.texi' or \`.texinfo' file, or any other file + indirectly affecting the aspect of the manual. The spurious + call might also be the consequence of using a buggy \`make' (AIX, + DU, IRIX). You might want to install the \`Texinfo' package or + the \`GNU make' package. Grab either from any GNU archive site." + # The file to touch is that specified with -o ... + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -z "$file"; then + # ... or it is the one specified with @setfilename ... + infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` + file=`sed -n ' + /^@setfilename/{ + s/.* \([^ ]*\) *$/\1/ + p + q + }' $infile` + # ... or it is derived from the source name (dir/f.texi becomes f.info) + test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info + fi + # If the file does not exist, the user really needs makeinfo; + # let's fail without touching anything. + test -f $file || exit 1 + touch $file + ;; + + *) + echo 1>&2 "\ +WARNING: \`$1' is needed, and is $msg. + You might have modified some files without having the + proper tools for further handling them. Check the \`README' file, + it often tells you about the needed prerequisites for installing + this package. You may also peek at any GNU archive site, in case + some other package would contain this missing \`$1' program." + exit 1 + ;; +esac + +exit 0 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/UnitTest/gmock-1.7.0/configure b/UnitTest/gmock-1.7.0/configure new file mode 100644 index 0000000..d29b296 --- /dev/null +++ b/UnitTest/gmock-1.7.0/configure @@ -0,0 +1,18535 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.68 for Google C++ Mocking Framework 1.7.0. +# +# Report bugs to . +# +# +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software +# Foundation, Inc. +# +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 + + test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ + || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + # We cannot yet assume a decent shell, so we have to provide a + # neutralization value for shells without unset; and this also + # works around shells that cannot unset nonexistent variables. + # Preserve -v and -x to the replacement shell. + BASH_ENV=/dev/null + ENV=/dev/null + (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV + export CONFIG_SHELL + case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; + esac + exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: googlemock@googlegroups.com about your system, +$0: including any error possibly output before this +$0: message. Then install a modern shell, or manually run +$0: the script under such a shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' + fi +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in #( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + +SHELL=${CONFIG_SHELL-/bin/sh} + + +test -n "$DJDIR" || exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='Google C++ Mocking Framework' +PACKAGE_TARNAME='gmock' +PACKAGE_VERSION='1.7.0' +PACKAGE_STRING='Google C++ Mocking Framework 1.7.0' +PACKAGE_BUGREPORT='googlemock@googlegroups.com' +PACKAGE_URL='' + +ac_unique_file="./LICENSE" +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +enable_option_checking=no +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIBOBJS +subdirs +GTEST_VERSION +GTEST_LIBS +GTEST_LDFLAGS +GTEST_CXXFLAGS +GTEST_CPPFLAGS +GTEST_CONFIG +HAVE_PTHREADS_FALSE +HAVE_PTHREADS_TRUE +PTHREAD_CFLAGS +PTHREAD_LIBS +PTHREAD_CC +acx_pthread_config +HAVE_PYTHON_FALSE +HAVE_PYTHON_TRUE +PYTHON +CXXCPP +CPP +OTOOL64 +OTOOL +LIPO +NMEDIT +DSYMUTIL +MANIFEST_TOOL +RANLIB +ac_ct_AR +AR +DLLTOOL +OBJDUMP +LN_S +NM +ac_ct_DUMPBIN +DUMPBIN +LD +FGREP +EGREP +GREP +SED +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +LIBTOOL +am__fastdepCXX_FALSE +am__fastdepCXX_TRUE +CXXDEPMODE +ac_ct_CXX +CXXFLAGS +CXX +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +am__nodep +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CC +CPPFLAGS +LDFLAGS +CFLAGS +CC +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_dependency_tracking +enable_shared +enable_static +with_pic +enable_fast_install +with_gnu_ld +with_sysroot +enable_libtool_lock +with_pthreads +with_gtest +enable_external_gtest +' + ac_precious_vars='build_alias +host_alias +target_alias +CC +CFLAGS +LDFLAGS +LIBS +CPPFLAGS +CXX +CXXFLAGS +CCC +CPP +CXXCPP +GTEST_CONFIG +GTEST_CPPFLAGS +GTEST_CXXFLAGS +GTEST_LDFLAGS +GTEST_LIBS +GTEST_VERSION' +ac_subdirs_all='gtest' + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error $? "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used" >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error $? "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error $? "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures Google C++ Mocking Framework 1.7.0 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/gmock] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of Google C++ Mocking Framework 1.7.0:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors + --enable-shared[=PKGS] build shared libraries [default=yes] + --enable-static[=PKGS] build static libraries [default=yes] + --enable-fast-install[=PKGS] + optimize for fast installation [default=yes] + --disable-libtool-lock avoid locking (might break parallel builds) + --disable-external-gtest + Disables any detection or use of a system installed + or user provided gtest. Any option to '--with-gtest' + is ignored. (Default is enabled.) + + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use + both] + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + --with-sysroot=DIR Search for dependent libraries within DIR + (or the compiler's sysroot if not specified). + --with-pthreads use pthreads (default is yes) + --with-gtest Specifies how to find the gtest package. If no + arguments are given, the default behavior, a system + installed gtest will be used if present, and an + internal version built otherwise. If a path is + provided, the gtest built or installed at that + prefix will be used. + +Some influential environment variables: + CC C compiler command + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CXX C++ compiler command + CXXFLAGS C++ compiler flags + CPP C preprocessor + CXXCPP C++ preprocessor + GTEST_CONFIG + The exact path of Google Test's 'gtest-config' script. + GTEST_CPPFLAGS + C-like preprocessor flags for Google Test. + GTEST_CXXFLAGS + C++ compile flags for Google Test. + GTEST_LDFLAGS + Linker path and option flags for Google Test. + GTEST_LIBS Library linking flags for Google Test. + GTEST_VERSION + The version of Google Test available. + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to . +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +Google C++ Mocking Framework configure 1.7.0 +generated by GNU Autoconf 2.68 + +Copyright (C) 2010 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +# ac_fn_c_try_compile LINENO +# -------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_compile + +# ac_fn_cxx_try_compile LINENO +# ---------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_compile + +# ac_fn_c_try_link LINENO +# ----------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_link + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_compile + +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_try_run LINENO +# ---------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes +# that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_run + +# ac_fn_c_check_func LINENO FUNC VAR +# ---------------------------------- +# Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_func + +# ac_fn_cxx_try_cpp LINENO +# ------------------------ +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_cpp + +# ac_fn_cxx_try_link LINENO +# ------------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_link +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by Google C++ Mocking Framework $as_me 1.7.0, which was +generated by GNU Autoconf 2.68. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + $as_echo "## ---------------- ## +## Cache variables. ## +## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + $as_echo "## ----------------- ## +## Output variables. ## +## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + $as_echo "## ------------------- ## +## File substitutions. ## +## ------------------- ##" + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + $as_echo "## ----------- ## +## confdefs.h. ## +## ----------- ##" + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5; } + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + +# Provide various options to initialize the Autoconf and configure processes. + + +ac_aux_dir= +for ac_dir in build-aux "$srcdir"/build-aux; do + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi +done +if test -z "$ac_aux_dir"; then + as_fn_error $? "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +ac_config_headers="$ac_config_headers build-aux/config.h" + +ac_config_files="$ac_config_files Makefile" + +ac_config_files="$ac_config_files scripts/gmock-config" + + +# Initialize Automake with various options. We require at least v1.9, prevent +# pedantic complaints about package files, and enable various distribution +# targets. +am__api_version='1.11' + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if ${ac_cv_path_install+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error $? "ls -t appears to fail. Make sure there is not a broken +alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error $? "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} +fi + +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if ${ac_cv_path_mkdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +mkdir_p="$MKDIR_P" +case $mkdir_p in + [\\/$]* | ?:[\\/]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AWK+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE='gmock' + VERSION='1.7.0' + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AMTAR='$${TAR-tar}' + +am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' + + + + + + +# Check for programs used in building Google Test. +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +$as_echo_n "checking whether the C compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { { ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error 77 "C compiler cannot create executables +See \`config.log' for more details" "$LINENO" 5; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } +ac_exeext=$ac_cv_exeext + +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details" "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if ${ac_cv_objext+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of object files: cannot compile +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if ${ac_cv_c_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if ${ac_cv_prog_cc_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if ${ac_cv_prog_cc_c89+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 +$as_echo_n "checking for style of include used by $am_make... " >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 +$as_echo "$_am_result" >&6; } +rm -f confinc confmf + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CC_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC + else + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +$as_echo "$CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CXX" && break + done +fi +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CXX="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +$as_echo "$ac_ct_CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CXX" && break +done + + if test "x$ac_ct_CXX" = x; then + CXX="g++" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CXX=$ac_ct_CXX + fi +fi + + fi +fi +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 +$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } +if ${ac_cv_cxx_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GXX=yes +else + GXX= +fi +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +$as_echo_n "checking whether $CXX accepts -g... " >&6; } +if ${ac_cv_prog_cxx_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +else + CXXFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + +else + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +$as_echo "$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CXX" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CXX_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CXX_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +case `pwd` in + *\ * | *\ *) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 +$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; +esac + + + +macro_version='2.4.2' +macro_revision='1.3337' + + + + + + + + + + + + + +ltmain="$ac_aux_dir/ltmain.sh" + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if ${ac_cv_build+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if ${ac_cv_host+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 +$as_echo_n "checking how to print strings... " >&6; } +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "" +} + +case "$ECHO" in + printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 +$as_echo "printf" >&6; } ;; + print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 +$as_echo "print -r" >&6; } ;; + *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 +$as_echo "cat" >&6; } ;; +esac + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 +$as_echo_n "checking for a sed that does not truncate output... " >&6; } +if ${ac_cv_path_SED+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed + { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue +# Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_SED_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then + as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi +else + ac_cv_path_SED=$SED +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 +$as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if ${ac_cv_path_GREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_GREP=$GREP +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if ${ac_cv_path_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_EGREP=$EGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 +$as_echo_n "checking for fgrep... " >&6; } +if ${ac_cv_path_FGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 + then ac_cv_path_FGREP="$GREP -F" + else + if test -z "$FGREP"; then + ac_path_FGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in fgrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue +# Check for GNU ac_path_FGREP and select it if it is found. + # Check for GNU $ac_path_FGREP +case `"$ac_path_FGREP" --version 2>&1` in +*GNU*) + ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_FGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_FGREP="$ac_path_FGREP" + ac_path_FGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_FGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_FGREP"; then + as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_FGREP=$FGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 +$as_echo "$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" + + +test -z "$GREP" && GREP=grep + + + + + + + + + + + + + + + + + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 +$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } +if ${lt_cv_path_NM+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 +$as_echo "$lt_cv_path_NM" >&6; } +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + if test -n "$ac_tool_prefix"; then + for ac_prog in dumpbin "link -dump" + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DUMPBIN"; then + ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DUMPBIN=$ac_cv_prog_DUMPBIN +if test -n "$DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 +$as_echo "$DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$DUMPBIN" && break + done +fi +if test -z "$DUMPBIN"; then + ac_ct_DUMPBIN=$DUMPBIN + for ac_prog in dumpbin "link -dump" +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DUMPBIN"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN +if test -n "$ac_ct_DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 +$as_echo "$ac_ct_DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_DUMPBIN" && break +done + + if test "x$ac_ct_DUMPBIN" = x; then + DUMPBIN=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DUMPBIN=$ac_ct_DUMPBIN + fi +fi + + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 +$as_echo_n "checking the name lister ($NM) interface... " >&6; } +if ${lt_cv_nm_interface+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: output\"" >&5) + cat conftest.out >&5 + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 +$as_echo "$lt_cv_nm_interface" >&6; } + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +$as_echo_n "checking whether ln -s works... " >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +$as_echo "no, using $LN_S" >&6; } +fi + +# find the maximum length of command line arguments +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 +$as_echo_n "checking the maximum length of command line arguments... " >&6; } +if ${lt_cv_sys_max_cmd_len+:} false; then : + $as_echo_n "(cached) " >&6 +else + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac + +fi + +if test -n $lt_cv_sys_max_cmd_len ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 +$as_echo "$lt_cv_sys_max_cmd_len" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 +$as_echo "none" >&6; } +fi +max_cmd_len=$lt_cv_sys_max_cmd_len + + + + + + +: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 +$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 +$as_echo "$xsi_shell" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 +$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } +lt_shell_append=no +( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 +$as_echo "$lt_shell_append" >&6; } + + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi + + + + + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 +$as_echo_n "checking how to convert $build file names to $host format... " >&6; } +if ${lt_cv_to_host_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac + +fi + +to_host_file_cmd=$lt_cv_to_host_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 +$as_echo "$lt_cv_to_host_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 +$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } +if ${lt_cv_to_tool_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + #assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac + +fi + +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 +$as_echo "$lt_cv_to_tool_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 +$as_echo_n "checking for $LD option to reload object files... " >&6; } +if ${lt_cv_ld_reload_flag+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_reload_flag='-r' +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 +$as_echo "$lt_cv_ld_reload_flag" >&6; } +reload_flag=$lt_cv_ld_reload_flag +case $reload_flag in +"" | " "*) ;; +*) reload_flag=" $reload_flag" ;; +esac +reload_cmds='$LD$reload_flag -o $output$reload_objs' +case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + if test "$GCC" != yes; then + reload_cmds=false + fi + ;; + darwin*) + if test "$GCC" = yes; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' + else + reload_cmds='$LD$reload_flag -o $output$reload_objs' + fi + ;; +esac + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 +$as_echo_n "checking how to recognize dependent libraries... " >&6; } +if ${lt_cv_deplibs_check_method+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_deplibs_check_method='unknown' +# Need to set the preceding variable on all platforms that support +# interlibrary dependencies. +# 'none' -- dependencies not supported. +# `unknown' -- same as none, but documents that we really don't know. +# 'pass_all' -- all dependencies passed with no checks. +# 'test_compile' -- check by making test program. +# 'file_magic [[regex]]' -- check by looking for files in library path +# which responds to the $file_magic_cmd with a given extended regex. +# If you have `file' or equivalent on your system and you're not sure +# whether `pass_all' will *always* work, you probably want this one. + +case $host_os in +aix[4-9]*) + lt_cv_deplibs_check_method=pass_all + ;; + +beos*) + lt_cv_deplibs_check_method=pass_all + ;; + +bsdi[45]*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' + lt_cv_file_magic_cmd='/usr/bin/file -L' + lt_cv_file_magic_test_file=/shlib/libc.so + ;; + +cygwin*) + # func_win32_libid is a shell function defined in ltmain.sh + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + ;; + +mingw* | pw32*) + # Base MSYS/MinGW do not provide the 'file' command needed by + # func_win32_libid shell function, so use a weaker test based on 'objdump', + # unless we find 'file', for example because we are cross-compiling. + # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. + if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[3-9]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 +$as_echo "$lt_cv_deplibs_check_method" >&6; } + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + + + + + + + + + + + + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DLLTOOL=$ac_ct_DLLTOOL + fi +else + DLLTOOL="$ac_cv_prog_DLLTOOL" +fi + +test -z "$DLLTOOL" && DLLTOOL=dlltool + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 +$as_echo_n "checking how to associate runtime and link libraries... " >&6; } +if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 +$as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + + + + + + + + +if test -n "$ac_tool_prefix"; then + for ac_prog in ar + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AR="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AR=$ac_cv_prog_AR +if test -n "$AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 +$as_echo "$AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AR" && break + done +fi +if test -z "$AR"; then + ac_ct_AR=$AR + for ac_prog in ar +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_AR="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AR=$ac_cv_prog_ac_ct_AR +if test -n "$ac_ct_AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 +$as_echo "$ac_ct_AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_AR" && break +done + + if test "x$ac_ct_AR" = x; then + AR="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AR=$ac_ct_AR + fi +fi + +: ${AR=ar} +: ${AR_FLAGS=cru} + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 +$as_echo_n "checking for archiver @FILE support... " >&6; } +if ${lt_cv_ar_at_file+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ar_at_file=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 +$as_echo "$lt_cv_ar_at_file" >&6; } + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +test -z "$STRIP" && STRIP=: + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. +set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +RANLIB=$ac_cv_prog_RANLIB +if test -n "$RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 +$as_echo "$RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. +set dummy ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_RANLIB="ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB +if test -n "$ac_ct_RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 +$as_echo "$ac_ct_RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_RANLIB" = x; then + RANLIB=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + RANLIB=$ac_ct_RANLIB + fi +else + RANLIB="$ac_cv_prog_RANLIB" +fi + +test -z "$RANLIB" && RANLIB=: + + + + + + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + +# Check for command to grab the raw symbol name followed by C symbol from nm. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 +$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } +if ${lt_cv_sys_global_symbol_pipe+:} false; then : + $as_echo_n "(cached) " >&6 +else + +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[BCDEGRST]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([_A-Za-z][_A-Za-z0-9]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[BCDT]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[ABCDGISTW]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[ABCDEGRST]' + fi + ;; +irix* | nonstopux*) + symcode='[BCDEGRST]' + ;; +osf*) + symcode='[BCDEGQRST]' + ;; +solaris*) + symcode='[BDRT]' + ;; +sco3.2v5*) + symcode='[DT]' + ;; +sysv4.2uw2*) + symcode='[DT]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[ABDT]' + ;; +sysv4) + symcode='[DFNSTU]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[ABCDGIRSTW]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK '"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Now try to grab the symbols. + nlist=conftest.nm + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 + (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&5 + fi + else + echo "cannot find nm_test_var in $nlist" >&5 + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 + fi + else + echo "$progname: failed program was:" >&5 + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done + +fi + +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 +$as_echo "failed" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 +$as_echo "ok" >&6; } +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 +$as_echo_n "checking for sysroot... " >&6; } + +# Check whether --with-sysroot was given. +if test "${with_sysroot+set}" = set; then : + withval=$with_sysroot; +else + with_sysroot=no +fi + + +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 +$as_echo "${with_sysroot}" >&6; } + as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 + ;; +esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 +$as_echo "${lt_sysroot:-no}" >&6; } + + + + + + +# Check whether --enable-libtool-lock was given. +if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; +fi + +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*|powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 +$as_echo_n "checking whether the C compiler needs -belf... " >&6; } +if ${lt_cv_cc_needs_belf+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_cc_needs_belf=yes +else + lt_cv_cc_needs_belf=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 +$as_echo "$lt_cv_cc_needs_belf" >&6; } + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. +set dummy ${ac_tool_prefix}mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$MANIFEST_TOOL"; then + ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL +if test -n "$MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 +$as_echo "$MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_MANIFEST_TOOL"; then + ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL + # Extract the first word of "mt", so it can be a program name with args. +set dummy mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_MANIFEST_TOOL"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL +if test -n "$ac_ct_MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 +$as_echo "$ac_ct_MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_MANIFEST_TOOL" = x; then + MANIFEST_TOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL + fi +else + MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" +fi + +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 +$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } +if ${lt_cv_path_mainfest_tool+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&5 + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 +$as_echo "$lt_cv_path_mainfest_tool" >&6; } +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi + + + + + + + case $host_os in + rhapsody* | darwin*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. +set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DSYMUTIL=$ac_cv_prog_DSYMUTIL +if test -n "$DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 +$as_echo "$DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. +set dummy dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL +if test -n "$ac_ct_DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 +$as_echo "$ac_ct_DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DSYMUTIL" = x; then + DSYMUTIL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DSYMUTIL=$ac_ct_DSYMUTIL + fi +else + DSYMUTIL="$ac_cv_prog_DSYMUTIL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. +set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +NMEDIT=$ac_cv_prog_NMEDIT +if test -n "$NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 +$as_echo "$NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. +set dummy nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT +if test -n "$ac_ct_NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 +$as_echo "$ac_ct_NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_NMEDIT" = x; then + NMEDIT=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + NMEDIT=$ac_ct_NMEDIT + fi +else + NMEDIT="$ac_cv_prog_NMEDIT" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. +set dummy ${ac_tool_prefix}lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$LIPO"; then + ac_cv_prog_LIPO="$LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_LIPO="${ac_tool_prefix}lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +LIPO=$ac_cv_prog_LIPO +if test -n "$LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 +$as_echo "$LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_LIPO"; then + ac_ct_LIPO=$LIPO + # Extract the first word of "lipo", so it can be a program name with args. +set dummy lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_LIPO"; then + ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_LIPO="lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO +if test -n "$ac_ct_LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 +$as_echo "$ac_ct_LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_LIPO" = x; then + LIPO=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + LIPO=$ac_ct_LIPO + fi +else + LIPO="$ac_cv_prog_LIPO" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL"; then + ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OTOOL="${ac_tool_prefix}otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL=$ac_cv_prog_OTOOL +if test -n "$OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 +$as_echo "$OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL"; then + ac_ct_OTOOL=$OTOOL + # Extract the first word of "otool", so it can be a program name with args. +set dummy otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL"; then + ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OTOOL="otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL +if test -n "$ac_ct_OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 +$as_echo "$ac_ct_OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL" = x; then + OTOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL=$ac_ct_OTOOL + fi +else + OTOOL="$ac_cv_prog_OTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL64"; then + ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL64=$ac_cv_prog_OTOOL64 +if test -n "$OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 +$as_echo "$OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL64"; then + ac_ct_OTOOL64=$OTOOL64 + # Extract the first word of "otool64", so it can be a program name with args. +set dummy otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL64"; then + ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OTOOL64="otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 +if test -n "$ac_ct_OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 +$as_echo "$ac_ct_OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL64" = x; then + OTOOL64=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL64=$ac_ct_OTOOL64 + fi +else + OTOOL64="$ac_cv_prog_OTOOL64" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 +$as_echo_n "checking for -single_module linker flag... " >&6; } +if ${lt_cv_apple_cc_single_mod+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&5 + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&5 + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 +$as_echo "$lt_cv_apple_cc_single_mod" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 +$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } +if ${lt_cv_ld_exported_symbols_list+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_ld_exported_symbols_list=yes +else + lt_cv_ld_exported_symbols_list=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 +$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 +$as_echo_n "checking for -force_load linker flag... " >&6; } +if ${lt_cv_ld_force_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 + echo "$AR cru libconftest.a conftest.o" >&5 + $AR cru libconftest.a conftest.o 2>&5 + echo "$RANLIB libconftest.a" >&5 + $RANLIB libconftest.a 2>&5 + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&5 + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&5 + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 +$as_echo "$lt_cv_ld_force_load" >&6; } + case $host_os in + rhapsody* | darwin1.[012]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[91]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[012]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if ${ac_cv_prog_CPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if ${ac_cv_header_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +for ac_header in dlfcn.h +do : + ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default +" +if test "x$ac_cv_header_dlfcn_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DLFCN_H 1 +_ACEOF + +fi + +done + + + +func_stripname_cnf () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname_cnf + + + + + +# Set options + + + + enable_dlopen=no + + + enable_win32_dll=no + + + # Check whether --enable-shared was given. +if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_shared=yes +fi + + + + + + + + + + # Check whether --enable-static was given. +if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_static=yes +fi + + + + + + + + + + +# Check whether --with-pic was given. +if test "${with_pic+set}" = set; then : + withval=$with_pic; lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + pic_mode=default +fi + + +test -z "$pic_mode" && pic_mode=default + + + + + + + + # Check whether --enable-fast-install was given. +if test "${enable_fast_install+set}" = set; then : + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_fast_install=yes +fi + + + + + + + + + + + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +test -z "$LN_S" && LN_S="ln -s" + + + + + + + + + + + + + + +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 +$as_echo_n "checking for objdir... " >&6; } +if ${lt_cv_objdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 +$as_echo "$lt_cv_objdir" >&6; } +objdir=$lt_cv_objdir + + + + + +cat >>confdefs.h <<_ACEOF +#define LT_OBJDIR "$lt_cv_objdir/" +_ACEOF + + + + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 +$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/${ac_tool_prefix}file; then + lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + + +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 +$as_echo_n "checking for file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/file; then + lt_cv_path_MAGIC_CMD="$ac_dir/file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + else + MAGIC_CMD=: + fi +fi + + fi + ;; +esac + +# Use C for the default configuration in the libtool script + +lt_save_CC="$CC" +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +objext=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + +if test -n "$compiler"; then + +lt_prog_compiler_no_builtin_flag= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; + *) + lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } +if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-fno-rtti -fno-exceptions" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + +if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +else + : +fi + +fi + + + + + + + lt_prog_compiler_wl= +lt_prog_compiler_pic= +lt_prog_compiler_static= + + + if test "$GCC" = yes; then + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_static='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + lt_prog_compiler_wl='-Xlinker ' + if test -n "$lt_prog_compiler_pic"; then + lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + else + lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='--shared' + lt_prog_compiler_static='--static' + ;; + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-qpic' + lt_prog_compiler_static='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='' + ;; + *Sun\ F* | *Sun*Fortran*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Wl,' + ;; + *Intel*\ [CF]*Compiler*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + *Portland\ Group*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + lt_prog_compiler_wl='-Qoption ld ';; + *) + lt_prog_compiler_wl='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl='-Qoption ld ' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + lt_prog_compiler_pic='-Kconform_pic' + lt_prog_compiler_static='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_can_build_shared=no + ;; + + uts4*) + lt_prog_compiler_pic='-pic' + lt_prog_compiler_static='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic= + ;; + *) + lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic=$lt_prog_compiler_pic +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 +$as_echo "$lt_cv_prog_compiler_pic" >&6; } +lt_prog_compiler_pic=$lt_cv_prog_compiler_pic + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } +if ${lt_cv_prog_compiler_pic_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works" = xyes; then + case $lt_prog_compiler_pic in + "" | " "*) ;; + *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; + esac +else + lt_prog_compiler_pic= + lt_prog_compiler_can_build_shared=no +fi + +fi + + + + + + + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works=yes + fi + else + lt_cv_prog_compiler_static_works=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 +$as_echo "$lt_cv_prog_compiler_static_works" >&6; } + +if test x"$lt_cv_prog_compiler_static_works" = xyes; then + : +else + lt_prog_compiler_static= +fi + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag= + always_export_symbols=no + archive_cmds= + archive_expsym_cmds= + compiler_needs_object=no + enable_shared_with_static_runtimes=no + export_dynamic_flag_spec= + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic=no + hardcode_direct=no + hardcode_direct_absolute=no + hardcode_libdir_flag_spec= + hardcode_libdir_separator= + hardcode_minus_L=no + hardcode_shlibpath_var=unsupported + inherit_rpath=no + link_all_deplibs=unknown + module_cmds= + module_expsym_cmds= + old_archive_from_new_cmds= + old_archive_from_expsyms_cmds= + thread_safe_flag_spec= + whole_archive_flag_spec= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs=no + ;; + esac + + ld_shlibs=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; + *\ \(GNU\ Binutils\)\ [3-9]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + export_dynamic_flag_spec='${wl}--export-all-symbols' + allow_undefined_flag=unsupported + always_export_symbols=no + enable_shared_with_static_runtimes=yes + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs=no + fi + ;; + + haiku*) + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + link_all_deplibs=yes + ;; + + interix[3-9]*) + hardcode_direct=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + whole_archive_flag_spec= + tmp_sharedflag='--shared' ;; + xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + + if test "$ld_shlibs" = no; then + runpath_var= + hardcode_libdir_flag_spec= + export_dynamic_flag_spec= + whole_archive_flag_spec= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag=unsupported + always_export_symbols=yes + archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds='' + hardcode_direct=yes + hardcode_direct_absolute=yes + hardcode_libdir_separator=':' + link_all_deplibs=yes + file_list_spec='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + link_all_deplibs=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag="-z nodefs" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag=' ${wl}-bernotok' + allow_undefined_flag=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec='$convenience' + fi + archive_cmds_need_lc=yes + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + always_export_symbols=yes + file_list_spec='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, )='true' + enable_shared_with_static_runtimes=yes + exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + old_postinstall_cmds='chmod 644 $oldlib' + postlink_cmds='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' + enable_shared_with_static_runtimes=yes + ;; + esac + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc=no + hardcode_direct=no + hardcode_automatic=yes + hardcode_shlibpath_var=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec='' + fi + link_all_deplibs=yes + allow_undefined_flag="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + + else + ld_shlibs=no + fi + + ;; + + dgux*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + hpux9*) + if test "$GCC" = yes; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + export_dynamic_flag_spec='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 +$as_echo_n "checking if $CC understands -b... " >&6; } +if ${lt_cv_prog_compiler__b+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler__b=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -b" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler__b=yes + fi + else + lt_cv_prog_compiler__b=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 +$as_echo "$lt_cv_prog_compiler__b" >&6; } + +if test x"$lt_cv_prog_compiler__b" = xyes; then + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' +else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' +fi + + ;; + esac + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + hardcode_shlibpath_var=no + ;; + *) + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 +$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } +if ${lt_cv_irix_exported_symbol+:} false; then : + $as_echo_n "(cached) " >&6 +else + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +int foo (void) { return 0; } +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_irix_exported_symbol=yes +else + lt_cv_irix_exported_symbol=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 +$as_echo "$lt_cv_irix_exported_symbol" >&6; } + if test "$lt_cv_irix_exported_symbol" = yes; then + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + inherit_rpath=yes + link_all_deplibs=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + newsos6) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_shlibpath_var=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct=yes + hardcode_shlibpath_var=no + hardcode_direct_absolute=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + else + case $host_os in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + else + ld_shlibs=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + archive_cmds_need_lc='no' + hardcode_libdir_separator=: + ;; + + solaris*) + no_undefined_flag=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_shlibpath_var=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + whole_archive_flag_spec='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds='$CC -r -o $output$reload_objs' + hardcode_direct=no + ;; + motorola) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var=no + ;; + + sysv4.3*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + export_dynamic_flag_spec='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag='${wl}-z,text' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag='${wl}-z,text' + allow_undefined_flag='${wl}-z,nodefs' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-R,$libdir' + hardcode_libdir_separator=':' + link_all_deplibs=yes + export_dynamic_flag_spec='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + *) + ld_shlibs=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec='${wl}-Blargedynsym' + ;; + esac + fi + fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 +$as_echo "$ld_shlibs" >&6; } +test "$ld_shlibs" = no && can_build_shared=no + +with_gnu_ld=$with_gnu_ld + + + + + + + + + + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl + pic_flag=$lt_prog_compiler_pic + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc=no + else + lt_cv_archive_cmds_need_lc=yes + fi + allow_undefined_flag=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } + archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[lt_foo]++; } + if (lt_freq[lt_foo] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([A-Za-z]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action= +if test -n "$hardcode_libdir_flag_spec" || + test -n "$runpath_var" || + test "X$hardcode_automatic" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && + test "$hardcode_minus_L" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 +$as_echo "$hardcode_action" >&6; } + +if test "$hardcode_action" = relink || + test "$inherit_rpath" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + +fi + + ;; + + *) + ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" +if test "x$ac_cv_func_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 +$as_echo_n "checking for shl_load in -ldld... " >&6; } +if ${ac_cv_lib_dld_shl_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char shl_load (); +int +main () +{ +return shl_load (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_shl_load=yes +else + ac_cv_lib_dld_shl_load=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 +$as_echo "$ac_cv_lib_dld_shl_load" >&6; } +if test "x$ac_cv_lib_dld_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" +else + ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" +if test "x$ac_cv_func_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 +$as_echo_n "checking for dlopen in -lsvld... " >&6; } +if ${ac_cv_lib_svld_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lsvld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_svld_dlopen=yes +else + ac_cv_lib_svld_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 +$as_echo "$ac_cv_lib_svld_dlopen" >&6; } +if test "x$ac_cv_lib_svld_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 +$as_echo_n "checking for dld_link in -ldld... " >&6; } +if ${ac_cv_lib_dld_dld_link+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dld_link (); +int +main () +{ +return dld_link (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_dld_link=yes +else + ac_cv_lib_dld_dld_link=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 +$as_echo "$ac_cv_lib_dld_dld_link" >&6; } +if test "x$ac_cv_lib_dld_dld_link" = xyes; then : + lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" +fi + + +fi + + +fi + + +fi + + +fi + + +fi + + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 +$as_echo_n "checking whether a program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 +$as_echo "$lt_cv_dlopen_self" >&6; } + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 +$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self_static+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self_static=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self_static=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 +$as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi + + + + + + + + + + + + + + + + + +striplib= +old_striplib= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 +$as_echo_n "checking whether stripping libraries is possible... " >&6; } +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + ;; + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + ;; + esac +fi + + + + + + + + + + + + + # Report which library types will actually be built + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 +$as_echo_n "checking if libtool supports shared libraries... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 +$as_echo "$can_build_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 +$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 +$as_echo "$enable_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 +$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 +$as_echo "$enable_static" >&6; } + + + + +fi +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +CC="$lt_save_CC" + + if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 +$as_echo_n "checking how to run the C++ preprocessor... " >&6; } +if test -z "$CXXCPP"; then + if ${ac_cv_prog_CXXCPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CXXCPP needs to be expanded + for CXXCPP in "$CXX -E" "/lib/cpp" + do + ac_preproc_ok=false +for ac_cxx_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CXXCPP=$CXXCPP + +fi + CXXCPP=$ac_cv_prog_CXXCPP +else + ac_cv_prog_CXXCPP=$CXXCPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 +$as_echo "$CXXCPP" >&6; } +ac_preproc_ok=false +for ac_cxx_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +else + _lt_caught_CXX_error=yes +fi + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +archive_cmds_need_lc_CXX=no +allow_undefined_flag_CXX= +always_export_symbols_CXX=no +archive_expsym_cmds_CXX= +compiler_needs_object_CXX=no +export_dynamic_flag_spec_CXX= +hardcode_direct_CXX=no +hardcode_direct_absolute_CXX=no +hardcode_libdir_flag_spec_CXX= +hardcode_libdir_separator_CXX= +hardcode_minus_L_CXX=no +hardcode_shlibpath_var_CXX=unsupported +hardcode_automatic_CXX=no +inherit_rpath_CXX=no +module_cmds_CXX= +module_expsym_cmds_CXX= +link_all_deplibs_CXX=unknown +old_archive_cmds_CXX=$old_archive_cmds +reload_flag_CXX=$reload_flag +reload_cmds_CXX=$reload_cmds +no_undefined_flag_CXX= +whole_archive_flag_spec_CXX= +enable_shared_with_static_runtimes_CXX=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +objext_CXX=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + + # save warnings/boilerplate of simple test code + ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + + ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + compiler_CXX=$CC + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' + else + lt_prog_compiler_no_builtin_flag_CXX= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec_CXX= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + ld_shlibs_CXX=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds_CXX='' + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + file_list_spec_CXX='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct_CXX=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L_CXX=yes + hardcode_libdir_flag_spec_CXX='-L$libdir' + hardcode_libdir_separator_CXX= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec_CXX='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + always_export_symbols_CXX=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag_CXX='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath__CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath__CXX +fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + + archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag_CXX="-z nodefs" + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath__CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath__CXX +fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag_CXX=' ${wl}-bernotok' + allow_undefined_flag_CXX=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec_CXX='$convenience' + fi + archive_cmds_need_lc_CXX=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag_CXX=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs_CXX=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec_CXX=' ' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=yes + file_list_spec_CXX='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' + enable_shared_with_static_runtimes_CXX=yes + # Don't use ranlib + old_postinstall_cmds_CXX='chmod 644 $oldlib' + postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec_CXX='-L$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=no + enable_shared_with_static_runtimes_CXX=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs_CXX=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + + + archive_cmds_need_lc_CXX=no + hardcode_direct_CXX=no + hardcode_automatic_CXX=yes + hardcode_shlibpath_var_CXX=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec_CXX='' + fi + link_all_deplibs_CXX=yes + allow_undefined_flag_CXX="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + if test "$lt_cv_apple_cc_single_mod" != "yes"; then + archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi + + else + ld_shlibs_CXX=no + fi + + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + ld_shlibs_CXX=no + ;; + + freebsd-elf*) + archive_cmds_need_lc_CXX=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + ld_shlibs_CXX=yes + ;; + + gnu*) + ;; + + haiku*) + archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + link_all_deplibs_CXX=yes + ;; + + hpux9*) + hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_CXX=: + export_dynamic_flag_spec_CXX='${wl}-E' + hardcode_direct_CXX=yes + hardcode_minus_L_CXX=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aCC*) + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_CXX=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + export_dynamic_flag_spec_CXX='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + ;; + *) + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_minus_L_CXX=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + interix[3-9]*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + fi + fi + link_all_deplibs_CXX=yes + ;; + esac + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_CXX=: + inherit_rpath_CXX=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + archive_cmds_need_lc_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [1-5].* | *pgcpp\ [1-5].*) + prelink_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + old_archive_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + archive_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + hardcode_libdir_flag_spec_CXX='-R$libdir' + whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object_CXX=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + ld_shlibs_CXX=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + ld_shlibs_CXX=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + hardcode_direct_absolute_CXX=yes + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + export_dynamic_flag_spec_CXX='${wl}-E' + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + ld_shlibs_CXX=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + hardcode_libdir_separator_CXX=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + cxx*) + case $host in + osf3*) + allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + ;; + *) + allow_undefined_flag_CXX=' -expect_unresolved \*' + archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + ;; + esac + + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + archive_cmds_need_lc_CXX=yes + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_shlibpath_var_CXX=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' + ;; + esac + link_all_deplibs_CXX=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + no_undefined_flag_CXX=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag_CXX='${wl}-z,text' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag_CXX='${wl}-z,text' + allow_undefined_flag_CXX='${wl}-z,nodefs' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + export_dynamic_flag_spec_CXX='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ + '"$old_archive_cmds_CXX" + reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ + '"$reload_cmds_CXX" + ;; + *) + archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + GCC_CXX="$GXX" + LD_CXX="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + # Dependencies to place before and after the object being linked: +predep_objects_CXX= +postdep_objects_CXX= +predeps_CXX= +postdeps_CXX= +compiler_lib_search_path_CXX= + +cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF + + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case ${prev}${p} in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test "$pre_test_object_deps_done" = no; then + case ${prev} in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$compiler_lib_search_path_CXX"; then + compiler_lib_search_path_CXX="${prev}${p}" + else + compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$postdeps_CXX"; then + postdeps_CXX="${prev}${p}" + else + postdeps_CXX="${postdeps_CXX} ${prev}${p}" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$predep_objects_CXX"; then + predep_objects_CXX="$p" + else + predep_objects_CXX="$predep_objects_CXX $p" + fi + else + if test -z "$postdep_objects_CXX"; then + postdep_objects_CXX="$p" + else + postdep_objects_CXX="$postdep_objects_CXX $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling CXX test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +case $host_os in +interix[3-9]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + predep_objects_CXX= + postdep_objects_CXX= + postdeps_CXX= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + postdeps_CXX='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + postdeps_CXX='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac + + +case " $postdeps_CXX " in +*" -lc "*) archive_cmds_need_lc_CXX=no ;; +esac + compiler_lib_search_dirs_CXX= +if test -n "${compiler_lib_search_path_CXX}"; then + compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lt_prog_compiler_wl_CXX= +lt_prog_compiler_pic_CXX= +lt_prog_compiler_static_CXX= + + + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_CXX='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic_CXX='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic_CXX='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + lt_prog_compiler_pic_CXX= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static_CXX= + ;; + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic_CXX=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + lt_prog_compiler_pic_CXX='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + *) + lt_prog_compiler_pic_CXX='-fPIC' + ;; + esac + else + case $host_os in + aix[4-9]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_CXX='-Bstatic' + else + lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + ;; + dgux*) + case $cc_basename in + ec++*) + lt_prog_compiler_pic_CXX='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + lt_prog_compiler_pic_CXX='+Z' + fi + ;; + aCC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic_CXX='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + lt_prog_compiler_wl_CXX='--backend -Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + lt_prog_compiler_static_CXX='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fpic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-qpic' + lt_prog_compiler_static_CXX='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + lt_prog_compiler_pic_CXX='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + lt_prog_compiler_wl_CXX='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + lt_prog_compiler_pic_CXX='-pic' + ;; + cxx*) + # Digital/Compaq C++ + lt_prog_compiler_wl_CXX='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + lt_prog_compiler_pic_CXX='-pic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + lcc*) + # Lucid + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + lt_prog_compiler_pic_CXX='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + lt_prog_compiler_can_build_shared_CXX=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic_CXX= + ;; + *) + lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } +lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } +if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works_CXX=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works_CXX=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then + case $lt_prog_compiler_pic_CXX in + "" | " "*) ;; + *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; + esac +else + lt_prog_compiler_pic_CXX= + lt_prog_compiler_can_build_shared_CXX=no +fi + +fi + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works_CXX=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works_CXX=yes + fi + else + lt_cv_prog_compiler_static_works_CXX=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } + +if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then + : +else + lt_prog_compiler_static_CXX= +fi + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + case $host_os in + aix[4-9]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + export_symbols_cmds_CXX="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + ;; + esac + ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs_CXX=no + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } +test "$ld_shlibs_CXX" = no && can_build_shared=no + +with_gnu_ld_CXX=$with_gnu_ld + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc_CXX" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc_CXX=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds_CXX in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl_CXX + pic_flag=$lt_prog_compiler_pic_CXX + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_CXX + allow_undefined_flag_CXX= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc_CXX=no + else + lt_cv_archive_cmds_need_lc_CXX=yes + fi + allow_undefined_flag_CXX=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } + archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action_CXX= +if test -n "$hardcode_libdir_flag_spec_CXX" || + test -n "$runpath_var_CXX" || + test "X$hardcode_automatic_CXX" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct_CXX" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && + test "$hardcode_minus_L_CXX" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action_CXX=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action_CXX=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action_CXX=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 +$as_echo "$hardcode_action_CXX" >&6; } + +if test "$hardcode_action_CXX" = relink || + test "$inherit_rpath_CXX" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + + + + + + + + + + + + + + + ac_config_commands="$ac_config_commands libtool" + + + + +# Only expand once: + + + +# TODO(chandlerc@google.com): Currently we aren't running the Python tests +# against the interpreter detected by AM_PATH_PYTHON, and so we condition +# HAVE_PYTHON by requiring "python" to be in the PATH, and that interpreter's +# version to be >= 2.3. This will allow the scripts to use a "/usr/bin/env" +# hashbang. +PYTHON= # We *do not* allow the user to specify a python interpreter +# Extract the first word of "python", so it can be a program name with args. +set dummy python; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_PYTHON+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $PYTHON in + [\\/]* | ?:[\\/]*) + ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_path_PYTHON" && ac_cv_path_PYTHON=":" + ;; +esac +fi +PYTHON=$ac_cv_path_PYTHON +if test -n "$PYTHON"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 +$as_echo "$PYTHON" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test "$PYTHON" != ":"; then : + prog="import sys +# split strings by '.' and convert to numeric. Append some zeros +# because we need at least 4 digits for the hex conversion. +# map returns an iterator in Python 3.0 and a list in 2.x +minver = list(map(int, '2.3'.split('.'))) + [0, 0, 0] +minverhex = 0 +# xrange is not present in Python 3.0 and range returns an iterator +for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] +sys.exit(sys.hexversion < minverhex)" + if { echo "$as_me:$LINENO: $PYTHON -c "$prog"" >&5 + ($PYTHON -c "$prog") >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then : + : +else + PYTHON=":" +fi +fi + if test "$PYTHON" != ":"; then + HAVE_PYTHON_TRUE= + HAVE_PYTHON_FALSE='#' +else + HAVE_PYTHON_TRUE='#' + HAVE_PYTHON_FALSE= +fi + + +# TODO(chandlerc@google.com) Check for the necessary system headers. + +# Configure pthreads. + +# Check whether --with-pthreads was given. +if test "${with_pthreads+set}" = set; then : + withval=$with_pthreads; with_pthreads=$withval +else + with_pthreads=check +fi + + +have_pthreads=no +if test "x$with_pthreads" != "xno"; then : + + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +acx_pthread_ok=no + +# We used to check for pthread.h first, but this fails if pthread.h +# requires special compiler flags (e.g. on True64 or Sequent). +# It gets checked for in the link test anyway. + +# First of all, check if the user has set any of the PTHREAD_LIBS, +# etcetera environment variables, and if threads linking works using +# them: +if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + save_LIBS="$LIBS" + LIBS="$PTHREAD_LIBS $LIBS" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS" >&5 +$as_echo_n "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char pthread_join (); +int +main () +{ +return pthread_join (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + acx_pthread_ok=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_ok" >&5 +$as_echo "$acx_pthread_ok" >&6; } + if test x"$acx_pthread_ok" = xno; then + PTHREAD_LIBS="" + PTHREAD_CFLAGS="" + fi + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" +fi + +# We must check for the threads library under a number of different +# names; the ordering is very important because some systems +# (e.g. DEC) have both -lpthread and -lpthreads, where one of the +# libraries is broken (non-POSIX). + +# Create a list of thread flags to try. Items starting with a "-" are +# C compiler flags, and other items are library names, except for "none" +# which indicates that we try without any flags at all, and "pthread-config" +# which is a program returning the flags for the Pth emulation library. + +acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" + +# The ordering *is* (sometimes) important. Some notes on the +# individual items follow: + +# pthreads: AIX (must check this before -lpthread) +# none: in case threads are in libc; should be tried before -Kthread and +# other compiler flags to prevent continual compiler warnings +# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) +# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) +# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) +# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) +# -pthreads: Solaris/gcc +# -mthreads: Mingw32/gcc, Lynx/gcc +# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it +# doesn't hurt to check since this sometimes defines pthreads too; +# also defines -D_REENTRANT) +# ... -mt is also the pthreads flag for HP/aCC +# pthread: Linux, etcetera +# --thread-safe: KAI C++ +# pthread-config: use pthread-config program (for GNU Pth library) + +case "${host_cpu}-${host_os}" in + *solaris*) + + # On Solaris (at least, for some versions), libc contains stubbed + # (non-functional) versions of the pthreads routines, so link-based + # tests will erroneously succeed. (We need to link with -pthreads/-mt/ + # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather + # a function called by this macro, so we could check for that, but + # who knows whether they'll stub that too in a future libc.) So, + # we'll just look for -pthreads and -lpthread first: + + acx_pthread_flags="-pthreads pthread -mt -pthread $acx_pthread_flags" + ;; +esac + +if test x"$acx_pthread_ok" = xno; then +for flag in $acx_pthread_flags; do + + case $flag in + none) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5 +$as_echo_n "checking whether pthreads work without any flags... " >&6; } + ;; + + -*) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $flag" >&5 +$as_echo_n "checking whether pthreads work with $flag... " >&6; } + PTHREAD_CFLAGS="$flag" + ;; + + pthread-config) + # Extract the first word of "pthread-config", so it can be a program name with args. +set dummy pthread-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_acx_pthread_config+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$acx_pthread_config"; then + ac_cv_prog_acx_pthread_config="$acx_pthread_config" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_acx_pthread_config="yes" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_prog_acx_pthread_config" && ac_cv_prog_acx_pthread_config="no" +fi +fi +acx_pthread_config=$ac_cv_prog_acx_pthread_config +if test -n "$acx_pthread_config"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_config" >&5 +$as_echo "$acx_pthread_config" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + if test x"$acx_pthread_config" = xno; then continue; fi + PTHREAD_CFLAGS="`pthread-config --cflags`" + PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" + ;; + + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$flag" >&5 +$as_echo_n "checking for the pthreads library -l$flag... " >&6; } + PTHREAD_LIBS="-l$flag" + ;; + esac + + save_LIBS="$LIBS" + save_CFLAGS="$CFLAGS" + LIBS="$PTHREAD_LIBS $LIBS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + + # Check for various functions. We must include pthread.h, + # since some functions may be macros. (On the Sequent, we + # need a special flag -Kthread to make this header compile.) + # We check for pthread_join because it is in -lpthread on IRIX + # while pthread_create is in libc. We check for pthread_attr_init + # due to DEC craziness with -lpthreads. We check for + # pthread_cleanup_push because it is one of the few pthread + # functions on Solaris that doesn't have a non-functional libc stub. + # We try pthread_create on general principles. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + acx_pthread_ok=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_ok" >&5 +$as_echo "$acx_pthread_ok" >&6; } + if test "x$acx_pthread_ok" = xyes; then + break; + fi + + PTHREAD_LIBS="" + PTHREAD_CFLAGS="" +done +fi + +# Various other checks: +if test "x$acx_pthread_ok" = xyes; then + save_LIBS="$LIBS" + LIBS="$PTHREAD_LIBS $LIBS" + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + + # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5 +$as_echo_n "checking for joinable pthread attribute... " >&6; } + attr_name=unknown + for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +int attr=$attr; return attr; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + attr_name=$attr; break +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + done + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $attr_name" >&5 +$as_echo "$attr_name" >&6; } + if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then + +cat >>confdefs.h <<_ACEOF +#define PTHREAD_CREATE_JOINABLE $attr_name +_ACEOF + + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if more special flags are required for pthreads" >&5 +$as_echo_n "checking if more special flags are required for pthreads... " >&6; } + flag=no + case "${host_cpu}-${host_os}" in + *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; + *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${flag}" >&5 +$as_echo "${flag}" >&6; } + if test "x$flag" != xno; then + PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" + fi + + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" + # More AIX lossage: must compile with xlc_r or cc_r + if test x"$GCC" != xyes; then + for ac_prog in xlc_r cc_r +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_PTHREAD_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$PTHREAD_CC"; then + ac_cv_prog_PTHREAD_CC="$PTHREAD_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_PTHREAD_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +PTHREAD_CC=$ac_cv_prog_PTHREAD_CC +if test -n "$PTHREAD_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5 +$as_echo "$PTHREAD_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$PTHREAD_CC" && break +done +test -n "$PTHREAD_CC" || PTHREAD_CC="${CC}" + + else + PTHREAD_CC=$CC + fi + + # The next part tries to detect GCC inconsistency with -shared on some + # architectures and systems. The problem is that in certain + # configurations, when -shared is specified, GCC "forgets" to + # internally use various flags which are still necessary. + + # + # Prepare the flags + # + save_CFLAGS="$CFLAGS" + save_LIBS="$LIBS" + save_CC="$CC" + + # Try with the flags determined by the earlier checks. + # + # -Wl,-z,defs forces link-time symbol resolution, so that the + # linking checks with -shared actually have any value + # + # FIXME: -fPIC is required for -shared on many architectures, + # so we specify it here, but the right way would probably be to + # properly detect whether it is actually required. + CFLAGS="-shared -fPIC -Wl,-z,defs $CFLAGS $PTHREAD_CFLAGS" + LIBS="$PTHREAD_LIBS $LIBS" + CC="$PTHREAD_CC" + + # In order not to create several levels of indentation, we test + # the value of "$done" until we find the cure or run out of ideas. + done="no" + + # First, make sure the CFLAGS we added are actually accepted by our + # compiler. If not (and OS X's ld, for instance, does not accept -z), + # then we can't do this test. + if test x"$done" = xno; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to check for GCC pthread/shared inconsistencies" >&5 +$as_echo_n "checking whether to check for GCC pthread/shared inconsistencies... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + +else + done=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + if test "x$done" = xyes ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + fi + fi + + if test x"$done" = xno; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -pthread is sufficient with -shared" >&5 +$as_echo_n "checking whether -pthread is sufficient with -shared... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + done=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + if test "x$done" = xyes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + fi + + # + # Linux gcc on some architectures such as mips/mipsel forgets + # about -lpthread + # + if test x"$done" = xno; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lpthread fixes that" >&5 +$as_echo_n "checking whether -lpthread fixes that... " >&6; } + LIBS="-lpthread $PTHREAD_LIBS $save_LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + done=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + if test "x$done" = xyes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + PTHREAD_LIBS="-lpthread $PTHREAD_LIBS" + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + fi + # + # FreeBSD 4.10 gcc forgets to use -lc_r instead of -lc + # + if test x"$done" = xno; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc_r fixes that" >&5 +$as_echo_n "checking whether -lc_r fixes that... " >&6; } + LIBS="-lc_r $PTHREAD_LIBS $save_LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + done=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + if test "x$done" = xyes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + PTHREAD_LIBS="-lc_r $PTHREAD_LIBS" + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + fi + if test x"$done" = xno; then + # OK, we have run out of ideas + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Impossible to determine how to use pthreads with shared libraries" >&5 +$as_echo "$as_me: WARNING: Impossible to determine how to use pthreads with shared libraries" >&2;} + + # so it's not safe to assume that we may use pthreads + acx_pthread_ok=no + fi + + CFLAGS="$save_CFLAGS" + LIBS="$save_LIBS" + CC="$save_CC" +else + PTHREAD_CC="$CC" +fi + + + + + +# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: +if test x"$acx_pthread_ok" = xyes; then + +$as_echo "#define HAVE_PTHREAD 1" >>confdefs.h + + : +else + acx_pthread_ok=no + if test "x$with_pthreads" != "xcheck"; then : + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "--with-pthreads was specified, but unable to be used +See \`config.log' for more details" "$LINENO" 5; } +fi +fi +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + + have_pthreads="$acx_pthread_ok" +fi + if test "x$have_pthreads" == "xyes"; then + HAVE_PTHREADS_TRUE= + HAVE_PTHREADS_FALSE='#' +else + HAVE_PTHREADS_TRUE='#' + HAVE_PTHREADS_FALSE= +fi + + + + +# GoogleMock currently has hard dependencies upon GoogleTest above and beyond +# running its own test suite, so we both provide our own version in +# a subdirectory and provide some logic to use a custom version or a system +# installed version. + +# Check whether --with-gtest was given. +if test "${with_gtest+set}" = set; then : + withval=$with_gtest; +else + with_gtest=yes +fi + +# Check whether --enable-external-gtest was given. +if test "${enable_external_gtest+set}" = set; then : + enableval=$enable_external_gtest; +else + enable_external_gtest=yes +fi + +if test "x$with_gtest" == "xno"; then : + as_fn_error $? "Support for GoogleTest was explicitly disabled. Currently GoogleMock has a hard +dependency upon GoogleTest to build, please provide a version, or allow +GoogleMock to use any installed version and fall back upon its internal +version." "$LINENO" 5 +fi + +# Setup various GTEST variables. TODO(chandlerc@google.com): When these are +# used below, they should be used such that any pre-existing values always +# trump values we set them to, so that they can be used to selectively override +# details of the detection process. + + + + + + +HAVE_BUILT_GTEST="no" + +GTEST_MIN_VERSION="1.7.0" + +if test "x${enable_external_gtest}" = "xyes"; then : + # Begin filling in variables as we are able. + if test "x${with_gtest}" != "xyes"; then : + if test -x "${with_gtest}/scripts/gtest-config"; then : + GTEST_CONFIG="${with_gtest}/scripts/gtest-config" +else + GTEST_CONFIG="${with_gtest}/bin/gtest-config" +fi + if test -x "${GTEST_CONFIG}"; then : + +else + as_fn_error $? "Unable to locate either a built or installed Google Test at '${with_gtest}'." "$LINENO" 5 + +fi +fi + + if test -x "${GTEST_CONFIG}"; then : + +else + # Extract the first word of "gtest-config", so it can be a program name with args. +set dummy gtest-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GTEST_CONFIG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $GTEST_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_GTEST_CONFIG="$GTEST_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GTEST_CONFIG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +GTEST_CONFIG=$ac_cv_path_GTEST_CONFIG +if test -n "$GTEST_CONFIG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTEST_CONFIG" >&5 +$as_echo "$GTEST_CONFIG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi + if test -x "${GTEST_CONFIG}"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Google Test version >= ${GTEST_MIN_VERSION}" >&5 +$as_echo_n "checking for Google Test version >= ${GTEST_MIN_VERSION}... " >&6; } + if ${GTEST_CONFIG} --min-version=${GTEST_MIN_VERSION}; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + HAVE_BUILT_GTEST="yes" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +fi +fi + + + +if test "x${HAVE_BUILT_GTEST}" = "xyes"; then : + GTEST_CPPFLAGS=`${GTEST_CONFIG} --cppflags` + GTEST_CXXFLAGS=`${GTEST_CONFIG} --cxxflags` + GTEST_LDFLAGS=`${GTEST_CONFIG} --ldflags` + GTEST_LIBS=`${GTEST_CONFIG} --libs` + GTEST_VERSION=`${GTEST_CONFIG} --version` +else + subdirs="$subdirs gtest" + + # GTEST_CONFIG needs to be executable both in a Makefile environmont and + # in a shell script environment, so resolve an absolute path for it here. + GTEST_CONFIG="`pwd -P`/gtest/scripts/gtest-config" + GTEST_CPPFLAGS='-I$(top_srcdir)/gtest/include' + GTEST_CXXFLAGS='-g' + GTEST_LDFLAGS='' + GTEST_LIBS='$(top_builddir)/gtest/lib/libgtest.la' + GTEST_VERSION="${GTEST_MIN_VERSION}" +fi + +# TODO(chandlerc@google.com) Check the types, structures, and other compiler +# and architecture characteristics. + +# Output the generated files. No further autoconf macros may be used. +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + if test "x$cache_file" != "x/dev/null"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + if test ! -f "$cache_file" || test -h "$cache_file"; then + cat confcache >"$cache_file" + else + case $cache_file in #( + */* | ?:*) + mv -f confcache "$cache_file"$$ && + mv -f "$cache_file"$$ "$cache_file" ;; #( + *) + mv -f confcache "$cache_file" ;; + esac + fi + fi + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +U= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error $? "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${HAVE_PYTHON_TRUE}" && test -z "${HAVE_PYTHON_FALSE}"; then + as_fn_error $? "conditional \"HAVE_PYTHON\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${HAVE_PTHREADS_TRUE}" && test -z "${HAVE_PTHREADS_FALSE}"; then + as_fn_error $? "conditional \"HAVE_PTHREADS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: "${CONFIG_STATUS=./config.status}" +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' + fi +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in #( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by Google C++ Mocking Framework $as_me 1.7.0, which was +generated by GNU Autoconf 2.68. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +Google C++ Mocking Framework config.status 1.7.0 +configured by $0, generated by GNU Autoconf 2.68, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2010 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' +macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' +enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' +enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' +pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' +enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' +SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' +ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' +PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' +host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' +host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' +host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' +build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' +build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' +build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' +SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' +Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' +GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' +EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' +FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' +LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' +NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' +LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' +max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' +ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' +exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' +lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' +lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' +lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' +lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' +lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' +reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' +reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' +OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' +deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' +file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' +file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' +want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' +DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' +sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' +AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' +AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' +archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' +STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' +RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' +old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' +old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' +lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' +CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' +CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' +compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' +GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' +nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' +lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' +objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' +MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' +need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' +MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' +DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' +NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' +LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' +OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' +OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' +libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' +shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' +extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' +compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' +module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' +with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' +no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' +hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' +hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' +inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' +link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' +always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' +exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' +include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' +prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' +postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' +file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' +variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' +need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' +need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' +version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' +runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' +libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' +library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' +soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' +install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' +postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' +postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' +finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' +hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' +sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' +sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' +hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' +enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' +old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' +striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' +predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' +postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' +predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' +postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' +LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' +reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' +reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' +compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' +GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' +archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' +module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' +with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' +no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' +inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' +link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' +always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' +exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' +include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' +prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' +postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' +file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' +predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' +postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' +predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' +postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' + +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in SHELL \ +ECHO \ +PATH_SEPARATOR \ +SED \ +GREP \ +EGREP \ +FGREP \ +LD \ +NM \ +LN_S \ +lt_SP2NL \ +lt_NL2SP \ +reload_flag \ +OBJDUMP \ +deplibs_check_method \ +file_magic_cmd \ +file_magic_glob \ +want_nocaseglob \ +DLLTOOL \ +sharedlib_from_linklib_cmd \ +AR \ +AR_FLAGS \ +archiver_list_spec \ +STRIP \ +RANLIB \ +CC \ +CFLAGS \ +compiler \ +lt_cv_sys_global_symbol_pipe \ +lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_c_name_address \ +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +nm_file_list_spec \ +lt_prog_compiler_no_builtin_flag \ +lt_prog_compiler_pic \ +lt_prog_compiler_wl \ +lt_prog_compiler_static \ +lt_cv_prog_compiler_c_o \ +need_locks \ +MANIFEST_TOOL \ +DSYMUTIL \ +NMEDIT \ +LIPO \ +OTOOL \ +OTOOL64 \ +shrext_cmds \ +export_dynamic_flag_spec \ +whole_archive_flag_spec \ +compiler_needs_object \ +with_gnu_ld \ +allow_undefined_flag \ +no_undefined_flag \ +hardcode_libdir_flag_spec \ +hardcode_libdir_separator \ +exclude_expsyms \ +include_expsyms \ +file_list_spec \ +variables_saved_for_relink \ +libname_spec \ +library_names_spec \ +soname_spec \ +install_override_mode \ +finish_eval \ +old_striplib \ +striplib \ +compiler_lib_search_dirs \ +predep_objects \ +postdep_objects \ +predeps \ +postdeps \ +compiler_lib_search_path \ +LD_CXX \ +reload_flag_CXX \ +compiler_CXX \ +lt_prog_compiler_no_builtin_flag_CXX \ +lt_prog_compiler_pic_CXX \ +lt_prog_compiler_wl_CXX \ +lt_prog_compiler_static_CXX \ +lt_cv_prog_compiler_c_o_CXX \ +export_dynamic_flag_spec_CXX \ +whole_archive_flag_spec_CXX \ +compiler_needs_object_CXX \ +with_gnu_ld_CXX \ +allow_undefined_flag_CXX \ +no_undefined_flag_CXX \ +hardcode_libdir_flag_spec_CXX \ +hardcode_libdir_separator_CXX \ +exclude_expsyms_CXX \ +include_expsyms_CXX \ +file_list_spec_CXX \ +compiler_lib_search_dirs_CXX \ +predep_objects_CXX \ +postdep_objects_CXX \ +predeps_CXX \ +postdeps_CXX \ +compiler_lib_search_path_CXX; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds \ +old_postinstall_cmds \ +old_postuninstall_cmds \ +old_archive_cmds \ +extract_expsyms_cmds \ +old_archive_from_new_cmds \ +old_archive_from_expsyms_cmds \ +archive_cmds \ +archive_expsym_cmds \ +module_cmds \ +module_expsym_cmds \ +export_symbols_cmds \ +prelink_cmds \ +postlink_cmds \ +postinstall_cmds \ +postuninstall_cmds \ +finish_cmds \ +sys_lib_search_path_spec \ +sys_lib_dlsearch_path_spec \ +reload_cmds_CXX \ +old_archive_cmds_CXX \ +old_archive_from_new_cmds_CXX \ +old_archive_from_expsyms_cmds_CXX \ +archive_cmds_CXX \ +archive_expsym_cmds_CXX \ +module_cmds_CXX \ +module_expsym_cmds_CXX \ +export_symbols_cmds_CXX \ +prelink_cmds_CXX \ +postlink_cmds_CXX; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +ac_aux_dir='$ac_aux_dir' +xsi_shell='$xsi_shell' +lt_shell_append='$lt_shell_append' + +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile' + + + + + + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "build-aux/config.h") CONFIG_HEADERS="$CONFIG_HEADERS build-aux/config.h" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "scripts/gmock-config") CONFIG_FILES="$CONFIG_FILES scripts/gmock-config" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// +s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_tt=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_tt"; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "scripts/gmock-config":F) chmod +x scripts/gmock-config ;; + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +# The names of the tagged configurations supported by this script. +available_tags="CXX " + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and in which our libraries should be installed. +lt_sysroot=$lt_sysroot + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects +postdep_objects=$lt_postdep_objects +predeps=$lt_predeps +postdeps=$lt_postdeps + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path + +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain="$ac_aux_dir/ltmain.sh" + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + if test x"$xsi_shell" = xyes; then + sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ +func_dirname ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_basename ()$/,/^} # func_basename /c\ +func_basename ()\ +{\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ +func_dirname_and_basename ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ +func_stripname ()\ +{\ +\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ +\ # positional parameters, so assign one to ordinary parameter first.\ +\ func_stripname_result=${3}\ +\ func_stripname_result=${func_stripname_result#"${1}"}\ +\ func_stripname_result=${func_stripname_result%"${2}"}\ +} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ +func_split_long_opt ()\ +{\ +\ func_split_long_opt_name=${1%%=*}\ +\ func_split_long_opt_arg=${1#*=}\ +} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ +func_split_short_opt ()\ +{\ +\ func_split_short_opt_arg=${1#??}\ +\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ +} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ +func_lo2o ()\ +{\ +\ case ${1} in\ +\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ +\ *) func_lo2o_result=${1} ;;\ +\ esac\ +} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_xform ()$/,/^} # func_xform /c\ +func_xform ()\ +{\ + func_xform_result=${1%.*}.lo\ +} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_arith ()$/,/^} # func_arith /c\ +func_arith ()\ +{\ + func_arith_result=$(( $* ))\ +} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_len ()$/,/^} # func_len /c\ +func_len ()\ +{\ + func_len_result=${#1}\ +} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + +fi + +if test x"$lt_shell_append" = xyes; then + sed -e '/^func_append ()$/,/^} # func_append /c\ +func_append ()\ +{\ + eval "${1}+=\\${2}"\ +} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ +func_append_quoted ()\ +{\ +\ func_quote_for_eval "${2}"\ +\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ +} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 +$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} +fi + + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: CXX + +# The linker used to build libraries. +LD=$lt_LD_CXX + +# How to create reloadable object files. +reload_flag=$lt_reload_flag_CXX +reload_cmds=$lt_reload_cmds_CXX + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_CXX + +# A language specific compiler. +CC=$lt_compiler_CXX + +# Is the compiler the GNU compiler? +with_gcc=$GCC_CXX + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_CXX + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_CXX + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_CXX + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_CXX + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_CXX + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_CXX +archive_expsym_cmds=$lt_archive_expsym_cmds_CXX + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_CXX +module_expsym_cmds=$lt_module_expsym_cmds_CXX + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_CXX + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_CXX + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_CXX + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_CXX + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_CXX + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_CXX + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_CXX + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_CXX + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_CXX + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_CXX + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_CXX + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_CXX + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_CXX + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_CXX + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds_CXX + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_CXX + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_CXX + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_CXX +postdep_objects=$lt_postdep_objects_CXX +predeps=$lt_predeps_CXX +postdeps=$lt_postdeps_CXX + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_CXX + +# ### END LIBTOOL TAG CONFIG: CXX +_LT_EOF + + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit 1 +fi + +# +# CONFIG_SUBDIRS section. +# +if test "$no_recursion" != yes; then + + # Remove --cache-file, --srcdir, and --disable-option-checking arguments + # so they do not pile up. + ac_sub_configure_args= + ac_prev= + eval "set x $ac_configure_args" + shift + for ac_arg + do + if test -n "$ac_prev"; then + ac_prev= + continue + fi + case $ac_arg in + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* \ + | --c=*) + ;; + --config-cache | -C) + ;; + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + ;; + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + ;; + --disable-option-checking) + ;; + *) + case $ac_arg in + *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append ac_sub_configure_args " '$ac_arg'" ;; + esac + done + + # Always prepend --prefix to ensure using the same prefix + # in subdir configurations. + ac_arg="--prefix=$prefix" + case $ac_arg in + *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + ac_sub_configure_args="'$ac_arg' $ac_sub_configure_args" + + # Pass --silent + if test "$silent" = yes; then + ac_sub_configure_args="--silent $ac_sub_configure_args" + fi + + # Always prepend --disable-option-checking to silence warnings, since + # different subdirs can have different --enable and --with options. + ac_sub_configure_args="--disable-option-checking $ac_sub_configure_args" + + ac_popdir=`pwd` + for ac_dir in : $subdirs; do test "x$ac_dir" = x: && continue + + # Do not complain, so a configure script can configure whichever + # parts of a large source tree are present. + test -d "$srcdir/$ac_dir" || continue + + ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir)" + $as_echo "$as_me:${as_lineno-$LINENO}: $ac_msg" >&5 + $as_echo "$ac_msg" >&6 + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + cd "$ac_dir" + + # Check for guested configure; otherwise get Cygnus style configure. + if test -f "$ac_srcdir/configure.gnu"; then + ac_sub_configure=$ac_srcdir/configure.gnu + elif test -f "$ac_srcdir/configure"; then + ac_sub_configure=$ac_srcdir/configure + elif test -f "$ac_srcdir/configure.in"; then + # This should be Cygnus configure. + ac_sub_configure=$ac_aux_dir/configure + else + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: no configuration information is in $ac_dir" >&5 +$as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;} + ac_sub_configure= + fi + + # The recursion is here. + if test -n "$ac_sub_configure"; then + # Make the cache file name correct relative to the subdirectory. + case $cache_file in + [\\/]* | ?:[\\/]* ) ac_sub_cache_file=$cache_file ;; + *) # Relative name. + ac_sub_cache_file=$ac_top_build_prefix$cache_file ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5 +$as_echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;} + # The eval makes quoting arguments work. + eval "\$SHELL \"\$ac_sub_configure\" $ac_sub_configure_args \ + --cache-file=\"\$ac_sub_cache_file\" --srcdir=\"\$ac_srcdir\"" || + as_fn_error $? "$ac_sub_configure failed for $ac_dir" "$LINENO" 5 + fi + + cd "$ac_popdir" + done +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + diff --git a/UnitTest/gmock-1.7.0/configure.ac b/UnitTest/gmock-1.7.0/configure.ac new file mode 100644 index 0000000..d268d5d --- /dev/null +++ b/UnitTest/gmock-1.7.0/configure.ac @@ -0,0 +1,146 @@ +m4_include(gtest/m4/acx_pthread.m4) + +AC_INIT([Google C++ Mocking Framework], + [1.7.0], + [googlemock@googlegroups.com], + [gmock]) + +# Provide various options to initialize the Autoconf and configure processes. +AC_PREREQ([2.59]) +AC_CONFIG_SRCDIR([./LICENSE]) +AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_HEADERS([build-aux/config.h]) +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([scripts/gmock-config], [chmod +x scripts/gmock-config]) + +# Initialize Automake with various options. We require at least v1.9, prevent +# pedantic complaints about package files, and enable various distribution +# targets. +AM_INIT_AUTOMAKE([1.9 dist-bzip2 dist-zip foreign subdir-objects]) + +# Check for programs used in building Google Test. +AC_PROG_CC +AC_PROG_CXX +AC_LANG([C++]) +AC_PROG_LIBTOOL + +# TODO(chandlerc@google.com): Currently we aren't running the Python tests +# against the interpreter detected by AM_PATH_PYTHON, and so we condition +# HAVE_PYTHON by requiring "python" to be in the PATH, and that interpreter's +# version to be >= 2.3. This will allow the scripts to use a "/usr/bin/env" +# hashbang. +PYTHON= # We *do not* allow the user to specify a python interpreter +AC_PATH_PROG([PYTHON],[python],[:]) +AS_IF([test "$PYTHON" != ":"], + [AM_PYTHON_CHECK_VERSION([$PYTHON],[2.3],[:],[PYTHON=":"])]) +AM_CONDITIONAL([HAVE_PYTHON],[test "$PYTHON" != ":"]) + +# TODO(chandlerc@google.com) Check for the necessary system headers. + +# Configure pthreads. +AC_ARG_WITH([pthreads], + [AS_HELP_STRING([--with-pthreads], + [use pthreads (default is yes)])], + [with_pthreads=$withval], + [with_pthreads=check]) + +have_pthreads=no +AS_IF([test "x$with_pthreads" != "xno"], + [ACX_PTHREAD( + [], + [AS_IF([test "x$with_pthreads" != "xcheck"], + [AC_MSG_FAILURE( + [--with-pthreads was specified, but unable to be used])])]) + have_pthreads="$acx_pthread_ok"]) +AM_CONDITIONAL([HAVE_PTHREADS],[test "x$have_pthreads" == "xyes"]) +AC_SUBST(PTHREAD_CFLAGS) +AC_SUBST(PTHREAD_LIBS) + +# GoogleMock currently has hard dependencies upon GoogleTest above and beyond +# running its own test suite, so we both provide our own version in +# a subdirectory and provide some logic to use a custom version or a system +# installed version. +AC_ARG_WITH([gtest], + [AS_HELP_STRING([--with-gtest], + [Specifies how to find the gtest package. If no + arguments are given, the default behavior, a + system installed gtest will be used if present, + and an internal version built otherwise. If a + path is provided, the gtest built or installed at + that prefix will be used.])], + [], + [with_gtest=yes]) +AC_ARG_ENABLE([external-gtest], + [AS_HELP_STRING([--disable-external-gtest], + [Disables any detection or use of a system + installed or user provided gtest. Any option to + '--with-gtest' is ignored. (Default is enabled.)]) + ], [], [enable_external_gtest=yes]) +AS_IF([test "x$with_gtest" == "xno"], + [AC_MSG_ERROR([dnl +Support for GoogleTest was explicitly disabled. Currently GoogleMock has a hard +dependency upon GoogleTest to build, please provide a version, or allow +GoogleMock to use any installed version and fall back upon its internal +version.])]) + +# Setup various GTEST variables. TODO(chandlerc@google.com): When these are +# used below, they should be used such that any pre-existing values always +# trump values we set them to, so that they can be used to selectively override +# details of the detection process. +AC_ARG_VAR([GTEST_CONFIG], + [The exact path of Google Test's 'gtest-config' script.]) +AC_ARG_VAR([GTEST_CPPFLAGS], + [C-like preprocessor flags for Google Test.]) +AC_ARG_VAR([GTEST_CXXFLAGS], + [C++ compile flags for Google Test.]) +AC_ARG_VAR([GTEST_LDFLAGS], + [Linker path and option flags for Google Test.]) +AC_ARG_VAR([GTEST_LIBS], + [Library linking flags for Google Test.]) +AC_ARG_VAR([GTEST_VERSION], + [The version of Google Test available.]) +HAVE_BUILT_GTEST="no" + +GTEST_MIN_VERSION="1.7.0" + +AS_IF([test "x${enable_external_gtest}" = "xyes"], + [# Begin filling in variables as we are able. + AS_IF([test "x${with_gtest}" != "xyes"], + [AS_IF([test -x "${with_gtest}/scripts/gtest-config"], + [GTEST_CONFIG="${with_gtest}/scripts/gtest-config"], + [GTEST_CONFIG="${with_gtest}/bin/gtest-config"]) + AS_IF([test -x "${GTEST_CONFIG}"], [], + [AC_MSG_ERROR([dnl +Unable to locate either a built or installed Google Test at '${with_gtest}'.]) + ])]) + + AS_IF([test -x "${GTEST_CONFIG}"], [], + [AC_PATH_PROG([GTEST_CONFIG], [gtest-config])]) + AS_IF([test -x "${GTEST_CONFIG}"], + [AC_MSG_CHECKING([for Google Test version >= ${GTEST_MIN_VERSION}]) + AS_IF([${GTEST_CONFIG} --min-version=${GTEST_MIN_VERSION}], + [AC_MSG_RESULT([yes]) + HAVE_BUILT_GTEST="yes"], + [AC_MSG_RESULT([no])])])]) + +AS_IF([test "x${HAVE_BUILT_GTEST}" = "xyes"], + [GTEST_CPPFLAGS=`${GTEST_CONFIG} --cppflags` + GTEST_CXXFLAGS=`${GTEST_CONFIG} --cxxflags` + GTEST_LDFLAGS=`${GTEST_CONFIG} --ldflags` + GTEST_LIBS=`${GTEST_CONFIG} --libs` + GTEST_VERSION=`${GTEST_CONFIG} --version`], + [AC_CONFIG_SUBDIRS([gtest]) + # GTEST_CONFIG needs to be executable both in a Makefile environmont and + # in a shell script environment, so resolve an absolute path for it here. + GTEST_CONFIG="`pwd -P`/gtest/scripts/gtest-config" + GTEST_CPPFLAGS='-I$(top_srcdir)/gtest/include' + GTEST_CXXFLAGS='-g' + GTEST_LDFLAGS='' + GTEST_LIBS='$(top_builddir)/gtest/lib/libgtest.la' + GTEST_VERSION="${GTEST_MIN_VERSION}"]) + +# TODO(chandlerc@google.com) Check the types, structures, and other compiler +# and architecture characteristics. + +# Output the generated files. No further autoconf macros may be used. +AC_OUTPUT diff --git a/UnitTest/gmock-1.7.0/fused-src/gmock-gtest-all.cc b/UnitTest/gmock-1.7.0/fused-src/gmock-gtest-all.cc new file mode 100644 index 0000000..1a63a8c --- /dev/null +++ b/UnitTest/gmock-1.7.0/fused-src/gmock-gtest-all.cc @@ -0,0 +1,11443 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: mheule@google.com (Markus Heule) +// +// Google C++ Testing Framework (Google Test) +// +// Sometimes it's desirable to build Google Test by compiling a single file. +// This file serves this purpose. + +// This line ensures that gtest.h can be compiled on its own, even +// when it's fused. +#include "gtest/gtest.h" + +// The following lines pull in the real gtest *.cc files. +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// The Google C++ Testing Framework (Google Test) + +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Utilities for testing Google Test itself and code that uses Google Test +// (e.g. frameworks built on top of Google Test). + +#ifndef GTEST_INCLUDE_GTEST_GTEST_SPI_H_ +#define GTEST_INCLUDE_GTEST_GTEST_SPI_H_ + + +namespace testing { + +// This helper class can be used to mock out Google Test failure reporting +// so that we can test Google Test or code that builds on Google Test. +// +// An object of this class appends a TestPartResult object to the +// TestPartResultArray object given in the constructor whenever a Google Test +// failure is reported. It can either intercept only failures that are +// generated in the same thread that created this object or it can intercept +// all generated failures. The scope of this mock object can be controlled with +// the second argument to the two arguments constructor. +class GTEST_API_ ScopedFakeTestPartResultReporter + : public TestPartResultReporterInterface { + public: + // The two possible mocking modes of this object. + enum InterceptMode { + INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. + INTERCEPT_ALL_THREADS // Intercepts all failures. + }; + + // The c'tor sets this object as the test part result reporter used + // by Google Test. The 'result' parameter specifies where to report the + // results. This reporter will only catch failures generated in the current + // thread. DEPRECATED + explicit ScopedFakeTestPartResultReporter(TestPartResultArray* result); + + // Same as above, but you can choose the interception scope of this object. + ScopedFakeTestPartResultReporter(InterceptMode intercept_mode, + TestPartResultArray* result); + + // The d'tor restores the previous test part result reporter. + virtual ~ScopedFakeTestPartResultReporter(); + + // Appends the TestPartResult object to the TestPartResultArray + // received in the constructor. + // + // This method is from the TestPartResultReporterInterface + // interface. + virtual void ReportTestPartResult(const TestPartResult& result); + private: + void Init(); + + const InterceptMode intercept_mode_; + TestPartResultReporterInterface* old_reporter_; + TestPartResultArray* const result_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter); +}; + +namespace internal { + +// A helper class for implementing EXPECT_FATAL_FAILURE() and +// EXPECT_NONFATAL_FAILURE(). Its destructor verifies that the given +// TestPartResultArray contains exactly one failure that has the given +// type and contains the given substring. If that's not the case, a +// non-fatal failure will be generated. +class GTEST_API_ SingleFailureChecker { + public: + // The constructor remembers the arguments. + SingleFailureChecker(const TestPartResultArray* results, + TestPartResult::Type type, + const string& substr); + ~SingleFailureChecker(); + private: + const TestPartResultArray* const results_; + const TestPartResult::Type type_; + const string substr_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(SingleFailureChecker); +}; + +} // namespace internal + +} // namespace testing + +// A set of macros for testing Google Test assertions or code that's expected +// to generate Google Test fatal failures. It verifies that the given +// statement will cause exactly one fatal Google Test failure with 'substr' +// being part of the failure message. +// +// There are two different versions of this macro. EXPECT_FATAL_FAILURE only +// affects and considers failures generated in the current thread and +// EXPECT_FATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. +// +// The verification of the assertion is done correctly even when the statement +// throws an exception or aborts the current function. +// +// Known restrictions: +// - 'statement' cannot reference local non-static variables or +// non-static members of the current object. +// - 'statement' cannot return a value. +// - You cannot stream a failure message to this macro. +// +// Note that even though the implementations of the following two +// macros are much alike, we cannot refactor them to use a common +// helper macro, due to some peculiarity in how the preprocessor +// works. The AcceptsMacroThatExpandsToUnprotectedComma test in +// gtest_unittest.cc will fail to compile if we do that. +#define EXPECT_FATAL_FAILURE(statement, substr) \ + do { \ + class GTestExpectFatalFailureHelper {\ + public:\ + static void Execute() { statement; }\ + };\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter:: \ + INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ + GTestExpectFatalFailureHelper::Execute();\ + }\ + } while (::testing::internal::AlwaysFalse()) + +#define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ + do { \ + class GTestExpectFatalFailureHelper {\ + public:\ + static void Execute() { statement; }\ + };\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter:: \ + INTERCEPT_ALL_THREADS, >est_failures);\ + GTestExpectFatalFailureHelper::Execute();\ + }\ + } while (::testing::internal::AlwaysFalse()) + +// A macro for testing Google Test assertions or code that's expected to +// generate Google Test non-fatal failures. It asserts that the given +// statement will cause exactly one non-fatal Google Test failure with 'substr' +// being part of the failure message. +// +// There are two different versions of this macro. EXPECT_NONFATAL_FAILURE only +// affects and considers failures generated in the current thread and +// EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. +// +// 'statement' is allowed to reference local variables and members of +// the current object. +// +// The verification of the assertion is done correctly even when the statement +// throws an exception or aborts the current function. +// +// Known restrictions: +// - You cannot stream a failure message to this macro. +// +// Note that even though the implementations of the following two +// macros are much alike, we cannot refactor them to use a common +// helper macro, due to some peculiarity in how the preprocessor +// works. If we do that, the code won't compile when the user gives +// EXPECT_NONFATAL_FAILURE() a statement that contains a macro that +// expands to code containing an unprotected comma. The +// AcceptsMacroThatExpandsToUnprotectedComma test in gtest_unittest.cc +// catches that. +// +// For the same reason, we have to write +// if (::testing::internal::AlwaysTrue()) { statement; } +// instead of +// GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) +// to avoid an MSVC warning on unreachable code. +#define EXPECT_NONFATAL_FAILURE(statement, substr) \ + do {\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ + (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter:: \ + INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ + if (::testing::internal::AlwaysTrue()) { statement; }\ + }\ + } while (::testing::internal::AlwaysFalse()) + +#define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ + do {\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ + (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS, \ + >est_failures);\ + if (::testing::internal::AlwaysTrue()) { statement; }\ + }\ + } while (::testing::internal::AlwaysFalse()) + +#endif // GTEST_INCLUDE_GTEST_GTEST_SPI_H_ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include // NOLINT +#include +#include + +#if GTEST_OS_LINUX + +// TODO(kenton@google.com): Use autoconf to detect availability of +// gettimeofday(). +# define GTEST_HAS_GETTIMEOFDAY_ 1 + +# include // NOLINT +# include // NOLINT +# include // NOLINT +// Declares vsnprintf(). This header is not available on Windows. +# include // NOLINT +# include // NOLINT +# include // NOLINT +# include // NOLINT +# include + +#elif GTEST_OS_SYMBIAN +# define GTEST_HAS_GETTIMEOFDAY_ 1 +# include // NOLINT + +#elif GTEST_OS_ZOS +# define GTEST_HAS_GETTIMEOFDAY_ 1 +# include // NOLINT + +// On z/OS we additionally need strings.h for strcasecmp. +# include // NOLINT + +#elif GTEST_OS_WINDOWS_MOBILE // We are on Windows CE. + +# include // NOLINT + +#elif GTEST_OS_WINDOWS // We are on Windows proper. + +# include // NOLINT +# include // NOLINT +# include // NOLINT +# include // NOLINT + +# if GTEST_OS_WINDOWS_MINGW +// MinGW has gettimeofday() but not _ftime64(). +// TODO(kenton@google.com): Use autoconf to detect availability of +// gettimeofday(). +// TODO(kenton@google.com): There are other ways to get the time on +// Windows, like GetTickCount() or GetSystemTimeAsFileTime(). MinGW +// supports these. consider using them instead. +# define GTEST_HAS_GETTIMEOFDAY_ 1 +# include // NOLINT +# endif // GTEST_OS_WINDOWS_MINGW + +// cpplint thinks that the header is already included, so we want to +// silence it. +# include // NOLINT + +#else + +// Assume other platforms have gettimeofday(). +// TODO(kenton@google.com): Use autoconf to detect availability of +// gettimeofday(). +# define GTEST_HAS_GETTIMEOFDAY_ 1 + +// cpplint thinks that the header is already included, so we want to +// silence it. +# include // NOLINT +# include // NOLINT + +#endif // GTEST_OS_LINUX + +#if GTEST_HAS_EXCEPTIONS +# include +#endif + +#if GTEST_CAN_STREAM_RESULTS_ +# include // NOLINT +# include // NOLINT +#endif + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// Utility functions and classes used by the Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) +// +// This file contains purely Google Test's internal implementation. Please +// DO NOT #INCLUDE IT IN A USER PROGRAM. + +#ifndef GTEST_SRC_GTEST_INTERNAL_INL_H_ +#define GTEST_SRC_GTEST_INTERNAL_INL_H_ + +// GTEST_IMPLEMENTATION_ is defined to 1 iff the current translation unit is +// part of Google Test's implementation; otherwise it's undefined. +#if !GTEST_IMPLEMENTATION_ +// A user is trying to include this from his code - just say no. +# error "gtest-internal-inl.h is part of Google Test's internal implementation." +# error "It must not be included except by Google Test itself." +#endif // GTEST_IMPLEMENTATION_ + +#ifndef _WIN32_WCE +# include +#endif // !_WIN32_WCE +#include +#include // For strtoll/_strtoul64/malloc/free. +#include // For memmove. + +#include +#include +#include + + +#if GTEST_CAN_STREAM_RESULTS_ +# include // NOLINT +# include // NOLINT +#endif + +#if GTEST_OS_WINDOWS +# include // NOLINT +#endif // GTEST_OS_WINDOWS + + +namespace testing { + +// Declares the flags. +// +// We don't want the users to modify this flag in the code, but want +// Google Test's own unit tests to be able to access it. Therefore we +// declare it here as opposed to in gtest.h. +GTEST_DECLARE_bool_(death_test_use_fork); + +namespace internal { + +// The value of GetTestTypeId() as seen from within the Google Test +// library. This is solely for testing GetTestTypeId(). +GTEST_API_ extern const TypeId kTestTypeIdInGoogleTest; + +// Names of the flags (needed for parsing Google Test flags). +const char kAlsoRunDisabledTestsFlag[] = "also_run_disabled_tests"; +const char kBreakOnFailureFlag[] = "break_on_failure"; +const char kCatchExceptionsFlag[] = "catch_exceptions"; +const char kColorFlag[] = "color"; +const char kFilterFlag[] = "filter"; +const char kListTestsFlag[] = "list_tests"; +const char kOutputFlag[] = "output"; +const char kPrintTimeFlag[] = "print_time"; +const char kRandomSeedFlag[] = "random_seed"; +const char kRepeatFlag[] = "repeat"; +const char kShuffleFlag[] = "shuffle"; +const char kStackTraceDepthFlag[] = "stack_trace_depth"; +const char kStreamResultToFlag[] = "stream_result_to"; +const char kThrowOnFailureFlag[] = "throw_on_failure"; + +// A valid random seed must be in [1, kMaxRandomSeed]. +const int kMaxRandomSeed = 99999; + +// g_help_flag is true iff the --help flag or an equivalent form is +// specified on the command line. +GTEST_API_ extern bool g_help_flag; + +// Returns the current time in milliseconds. +GTEST_API_ TimeInMillis GetTimeInMillis(); + +// Returns true iff Google Test should use colors in the output. +GTEST_API_ bool ShouldUseColor(bool stdout_is_tty); + +// Formats the given time in milliseconds as seconds. +GTEST_API_ std::string FormatTimeInMillisAsSeconds(TimeInMillis ms); + +// Converts the given time in milliseconds to a date string in the ISO 8601 +// format, without the timezone information. N.B.: due to the use the +// non-reentrant localtime() function, this function is not thread safe. Do +// not use it in any code that can be called from multiple threads. +GTEST_API_ std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms); + +// Parses a string for an Int32 flag, in the form of "--flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +GTEST_API_ bool ParseInt32Flag( + const char* str, const char* flag, Int32* value); + +// Returns a random seed in range [1, kMaxRandomSeed] based on the +// given --gtest_random_seed flag value. +inline int GetRandomSeedFromFlag(Int32 random_seed_flag) { + const unsigned int raw_seed = (random_seed_flag == 0) ? + static_cast(GetTimeInMillis()) : + static_cast(random_seed_flag); + + // Normalizes the actual seed to range [1, kMaxRandomSeed] such that + // it's easy to type. + const int normalized_seed = + static_cast((raw_seed - 1U) % + static_cast(kMaxRandomSeed)) + 1; + return normalized_seed; +} + +// Returns the first valid random seed after 'seed'. The behavior is +// undefined if 'seed' is invalid. The seed after kMaxRandomSeed is +// considered to be 1. +inline int GetNextRandomSeed(int seed) { + GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed) + << "Invalid random seed " << seed << " - must be in [1, " + << kMaxRandomSeed << "]."; + const int next_seed = seed + 1; + return (next_seed > kMaxRandomSeed) ? 1 : next_seed; +} + +// This class saves the values of all Google Test flags in its c'tor, and +// restores them in its d'tor. +class GTestFlagSaver { + public: + // The c'tor. + GTestFlagSaver() { + also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests); + break_on_failure_ = GTEST_FLAG(break_on_failure); + catch_exceptions_ = GTEST_FLAG(catch_exceptions); + color_ = GTEST_FLAG(color); + death_test_style_ = GTEST_FLAG(death_test_style); + death_test_use_fork_ = GTEST_FLAG(death_test_use_fork); + filter_ = GTEST_FLAG(filter); + internal_run_death_test_ = GTEST_FLAG(internal_run_death_test); + list_tests_ = GTEST_FLAG(list_tests); + output_ = GTEST_FLAG(output); + print_time_ = GTEST_FLAG(print_time); + random_seed_ = GTEST_FLAG(random_seed); + repeat_ = GTEST_FLAG(repeat); + shuffle_ = GTEST_FLAG(shuffle); + stack_trace_depth_ = GTEST_FLAG(stack_trace_depth); + stream_result_to_ = GTEST_FLAG(stream_result_to); + throw_on_failure_ = GTEST_FLAG(throw_on_failure); + } + + // The d'tor is not virtual. DO NOT INHERIT FROM THIS CLASS. + ~GTestFlagSaver() { + GTEST_FLAG(also_run_disabled_tests) = also_run_disabled_tests_; + GTEST_FLAG(break_on_failure) = break_on_failure_; + GTEST_FLAG(catch_exceptions) = catch_exceptions_; + GTEST_FLAG(color) = color_; + GTEST_FLAG(death_test_style) = death_test_style_; + GTEST_FLAG(death_test_use_fork) = death_test_use_fork_; + GTEST_FLAG(filter) = filter_; + GTEST_FLAG(internal_run_death_test) = internal_run_death_test_; + GTEST_FLAG(list_tests) = list_tests_; + GTEST_FLAG(output) = output_; + GTEST_FLAG(print_time) = print_time_; + GTEST_FLAG(random_seed) = random_seed_; + GTEST_FLAG(repeat) = repeat_; + GTEST_FLAG(shuffle) = shuffle_; + GTEST_FLAG(stack_trace_depth) = stack_trace_depth_; + GTEST_FLAG(stream_result_to) = stream_result_to_; + GTEST_FLAG(throw_on_failure) = throw_on_failure_; + } + + private: + // Fields for saving the original values of flags. + bool also_run_disabled_tests_; + bool break_on_failure_; + bool catch_exceptions_; + std::string color_; + std::string death_test_style_; + bool death_test_use_fork_; + std::string filter_; + std::string internal_run_death_test_; + bool list_tests_; + std::string output_; + bool print_time_; + internal::Int32 random_seed_; + internal::Int32 repeat_; + bool shuffle_; + internal::Int32 stack_trace_depth_; + std::string stream_result_to_; + bool throw_on_failure_; +} GTEST_ATTRIBUTE_UNUSED_; + +// Converts a Unicode code point to a narrow string in UTF-8 encoding. +// code_point parameter is of type UInt32 because wchar_t may not be +// wide enough to contain a code point. +// If the code_point is not a valid Unicode code point +// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted +// to "(Invalid Unicode 0xXXXXXXXX)". +GTEST_API_ std::string CodePointToUtf8(UInt32 code_point); + +// Converts a wide string to a narrow string in UTF-8 encoding. +// The wide string is assumed to have the following encoding: +// UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) +// UTF-32 if sizeof(wchar_t) == 4 (on Linux) +// Parameter str points to a null-terminated wide string. +// Parameter num_chars may additionally limit the number +// of wchar_t characters processed. -1 is used when the entire string +// should be processed. +// If the string contains code points that are not valid Unicode code points +// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output +// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding +// and contains invalid UTF-16 surrogate pairs, values in those pairs +// will be encoded as individual Unicode characters from Basic Normal Plane. +GTEST_API_ std::string WideStringToUtf8(const wchar_t* str, int num_chars); + +// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file +// if the variable is present. If a file already exists at this location, this +// function will write over it. If the variable is present, but the file cannot +// be created, prints an error and exits. +void WriteToShardStatusFileIfNeeded(); + +// Checks whether sharding is enabled by examining the relevant +// environment variable values. If the variables are present, +// but inconsistent (e.g., shard_index >= total_shards), prints +// an error and exits. If in_subprocess_for_death_test, sharding is +// disabled because it must only be applied to the original test +// process. Otherwise, we could filter out death tests we intended to execute. +GTEST_API_ bool ShouldShard(const char* total_shards_str, + const char* shard_index_str, + bool in_subprocess_for_death_test); + +// Parses the environment variable var as an Int32. If it is unset, +// returns default_val. If it is not an Int32, prints an error and +// and aborts. +GTEST_API_ Int32 Int32FromEnvOrDie(const char* env_var, Int32 default_val); + +// Given the total number of shards, the shard index, and the test id, +// returns true iff the test should be run on this shard. The test id is +// some arbitrary but unique non-negative integer assigned to each test +// method. Assumes that 0 <= shard_index < total_shards. +GTEST_API_ bool ShouldRunTestOnShard( + int total_shards, int shard_index, int test_id); + +// STL container utilities. + +// Returns the number of elements in the given container that satisfy +// the given predicate. +template +inline int CountIf(const Container& c, Predicate predicate) { + // Implemented as an explicit loop since std::count_if() in libCstd on + // Solaris has a non-standard signature. + int count = 0; + for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { + if (predicate(*it)) + ++count; + } + return count; +} + +// Applies a function/functor to each element in the container. +template +void ForEach(const Container& c, Functor functor) { + std::for_each(c.begin(), c.end(), functor); +} + +// Returns the i-th element of the vector, or default_value if i is not +// in range [0, v.size()). +template +inline E GetElementOr(const std::vector& v, int i, E default_value) { + return (i < 0 || i >= static_cast(v.size())) ? default_value : v[i]; +} + +// Performs an in-place shuffle of a range of the vector's elements. +// 'begin' and 'end' are element indices as an STL-style range; +// i.e. [begin, end) are shuffled, where 'end' == size() means to +// shuffle to the end of the vector. +template +void ShuffleRange(internal::Random* random, int begin, int end, + std::vector* v) { + const int size = static_cast(v->size()); + GTEST_CHECK_(0 <= begin && begin <= size) + << "Invalid shuffle range start " << begin << ": must be in range [0, " + << size << "]."; + GTEST_CHECK_(begin <= end && end <= size) + << "Invalid shuffle range finish " << end << ": must be in range [" + << begin << ", " << size << "]."; + + // Fisher-Yates shuffle, from + // http://en.wikipedia.org/wiki/Fisher-Yates_shuffle + for (int range_width = end - begin; range_width >= 2; range_width--) { + const int last_in_range = begin + range_width - 1; + const int selected = begin + random->Generate(range_width); + std::swap((*v)[selected], (*v)[last_in_range]); + } +} + +// Performs an in-place shuffle of the vector's elements. +template +inline void Shuffle(internal::Random* random, std::vector* v) { + ShuffleRange(random, 0, static_cast(v->size()), v); +} + +// A function for deleting an object. Handy for being used as a +// functor. +template +static void Delete(T* x) { + delete x; +} + +// A predicate that checks the key of a TestProperty against a known key. +// +// TestPropertyKeyIs is copyable. +class TestPropertyKeyIs { + public: + // Constructor. + // + // TestPropertyKeyIs has NO default constructor. + explicit TestPropertyKeyIs(const std::string& key) : key_(key) {} + + // Returns true iff the test name of test property matches on key_. + bool operator()(const TestProperty& test_property) const { + return test_property.key() == key_; + } + + private: + std::string key_; +}; + +// Class UnitTestOptions. +// +// This class contains functions for processing options the user +// specifies when running the tests. It has only static members. +// +// In most cases, the user can specify an option using either an +// environment variable or a command line flag. E.g. you can set the +// test filter using either GTEST_FILTER or --gtest_filter. If both +// the variable and the flag are present, the latter overrides the +// former. +class GTEST_API_ UnitTestOptions { + public: + // Functions for processing the gtest_output flag. + + // Returns the output format, or "" for normal printed output. + static std::string GetOutputFormat(); + + // Returns the absolute path of the requested output file, or the + // default (test_detail.xml in the original working directory) if + // none was explicitly specified. + static std::string GetAbsolutePathToOutputFile(); + + // Functions for processing the gtest_filter flag. + + // Returns true iff the wildcard pattern matches the string. The + // first ':' or '\0' character in pattern marks the end of it. + // + // This recursive algorithm isn't very efficient, but is clear and + // works well enough for matching test names, which are short. + static bool PatternMatchesString(const char *pattern, const char *str); + + // Returns true iff the user-specified filter matches the test case + // name and the test name. + static bool FilterMatchesTest(const std::string &test_case_name, + const std::string &test_name); + +#if GTEST_OS_WINDOWS + // Function for supporting the gtest_catch_exception flag. + + // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the + // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. + // This function is useful as an __except condition. + static int GTestShouldProcessSEH(DWORD exception_code); +#endif // GTEST_OS_WINDOWS + + // Returns true if "name" matches the ':' separated list of glob-style + // filters in "filter". + static bool MatchesFilter(const std::string& name, const char* filter); +}; + +// Returns the current application's name, removing directory path if that +// is present. Used by UnitTestOptions::GetOutputFile. +GTEST_API_ FilePath GetCurrentExecutableName(); + +// The role interface for getting the OS stack trace as a string. +class OsStackTraceGetterInterface { + public: + OsStackTraceGetterInterface() {} + virtual ~OsStackTraceGetterInterface() {} + + // Returns the current OS stack trace as an std::string. Parameters: + // + // max_depth - the maximum number of stack frames to be included + // in the trace. + // skip_count - the number of top frames to be skipped; doesn't count + // against max_depth. + virtual string CurrentStackTrace(int max_depth, int skip_count) = 0; + + // UponLeavingGTest() should be called immediately before Google Test calls + // user code. It saves some information about the current stack that + // CurrentStackTrace() will use to find and hide Google Test stack frames. + virtual void UponLeavingGTest() = 0; + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetterInterface); +}; + +// A working implementation of the OsStackTraceGetterInterface interface. +class OsStackTraceGetter : public OsStackTraceGetterInterface { + public: + OsStackTraceGetter() : caller_frame_(NULL) {} + + virtual string CurrentStackTrace(int max_depth, int skip_count) + GTEST_LOCK_EXCLUDED_(mutex_); + + virtual void UponLeavingGTest() GTEST_LOCK_EXCLUDED_(mutex_); + + // This string is inserted in place of stack frames that are part of + // Google Test's implementation. + static const char* const kElidedFramesMarker; + + private: + Mutex mutex_; // protects all internal state + + // We save the stack frame below the frame that calls user code. + // We do this because the address of the frame immediately below + // the user code changes between the call to UponLeavingGTest() + // and any calls to CurrentStackTrace() from within the user code. + void* caller_frame_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetter); +}; + +// Information about a Google Test trace point. +struct TraceInfo { + const char* file; + int line; + std::string message; +}; + +// This is the default global test part result reporter used in UnitTestImpl. +// This class should only be used by UnitTestImpl. +class DefaultGlobalTestPartResultReporter + : public TestPartResultReporterInterface { + public: + explicit DefaultGlobalTestPartResultReporter(UnitTestImpl* unit_test); + // Implements the TestPartResultReporterInterface. Reports the test part + // result in the current test. + virtual void ReportTestPartResult(const TestPartResult& result); + + private: + UnitTestImpl* const unit_test_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultGlobalTestPartResultReporter); +}; + +// This is the default per thread test part result reporter used in +// UnitTestImpl. This class should only be used by UnitTestImpl. +class DefaultPerThreadTestPartResultReporter + : public TestPartResultReporterInterface { + public: + explicit DefaultPerThreadTestPartResultReporter(UnitTestImpl* unit_test); + // Implements the TestPartResultReporterInterface. The implementation just + // delegates to the current global test part result reporter of *unit_test_. + virtual void ReportTestPartResult(const TestPartResult& result); + + private: + UnitTestImpl* const unit_test_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultPerThreadTestPartResultReporter); +}; + +// The private implementation of the UnitTest class. We don't protect +// the methods under a mutex, as this class is not accessible by a +// user and the UnitTest class that delegates work to this class does +// proper locking. +class GTEST_API_ UnitTestImpl { + public: + explicit UnitTestImpl(UnitTest* parent); + virtual ~UnitTestImpl(); + + // There are two different ways to register your own TestPartResultReporter. + // You can register your own repoter to listen either only for test results + // from the current thread or for results from all threads. + // By default, each per-thread test result repoter just passes a new + // TestPartResult to the global test result reporter, which registers the + // test part result for the currently running test. + + // Returns the global test part result reporter. + TestPartResultReporterInterface* GetGlobalTestPartResultReporter(); + + // Sets the global test part result reporter. + void SetGlobalTestPartResultReporter( + TestPartResultReporterInterface* reporter); + + // Returns the test part result reporter for the current thread. + TestPartResultReporterInterface* GetTestPartResultReporterForCurrentThread(); + + // Sets the test part result reporter for the current thread. + void SetTestPartResultReporterForCurrentThread( + TestPartResultReporterInterface* reporter); + + // Gets the number of successful test cases. + int successful_test_case_count() const; + + // Gets the number of failed test cases. + int failed_test_case_count() const; + + // Gets the number of all test cases. + int total_test_case_count() const; + + // Gets the number of all test cases that contain at least one test + // that should run. + int test_case_to_run_count() const; + + // Gets the number of successful tests. + int successful_test_count() const; + + // Gets the number of failed tests. + int failed_test_count() const; + + // Gets the number of disabled tests that will be reported in the XML report. + int reportable_disabled_test_count() const; + + // Gets the number of disabled tests. + int disabled_test_count() const; + + // Gets the number of tests to be printed in the XML report. + int reportable_test_count() const; + + // Gets the number of all tests. + int total_test_count() const; + + // Gets the number of tests that should run. + int test_to_run_count() const; + + // Gets the time of the test program start, in ms from the start of the + // UNIX epoch. + TimeInMillis start_timestamp() const { return start_timestamp_; } + + // Gets the elapsed time, in milliseconds. + TimeInMillis elapsed_time() const { return elapsed_time_; } + + // Returns true iff the unit test passed (i.e. all test cases passed). + bool Passed() const { return !Failed(); } + + // Returns true iff the unit test failed (i.e. some test case failed + // or something outside of all tests failed). + bool Failed() const { + return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed(); + } + + // Gets the i-th test case among all the test cases. i can range from 0 to + // total_test_case_count() - 1. If i is not in that range, returns NULL. + const TestCase* GetTestCase(int i) const { + const int index = GetElementOr(test_case_indices_, i, -1); + return index < 0 ? NULL : test_cases_[i]; + } + + // Gets the i-th test case among all the test cases. i can range from 0 to + // total_test_case_count() - 1. If i is not in that range, returns NULL. + TestCase* GetMutableTestCase(int i) { + const int index = GetElementOr(test_case_indices_, i, -1); + return index < 0 ? NULL : test_cases_[index]; + } + + // Provides access to the event listener list. + TestEventListeners* listeners() { return &listeners_; } + + // Returns the TestResult for the test that's currently running, or + // the TestResult for the ad hoc test if no test is running. + TestResult* current_test_result(); + + // Returns the TestResult for the ad hoc test. + const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } + + // Sets the OS stack trace getter. + // + // Does nothing if the input and the current OS stack trace getter + // are the same; otherwise, deletes the old getter and makes the + // input the current getter. + void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter); + + // Returns the current OS stack trace getter if it is not NULL; + // otherwise, creates an OsStackTraceGetter, makes it the current + // getter, and returns it. + OsStackTraceGetterInterface* os_stack_trace_getter(); + + // Returns the current OS stack trace as an std::string. + // + // The maximum number of stack frames to be included is specified by + // the gtest_stack_trace_depth flag. The skip_count parameter + // specifies the number of top frames to be skipped, which doesn't + // count against the number of frames to be included. + // + // For example, if Foo() calls Bar(), which in turn calls + // CurrentOsStackTraceExceptTop(1), Foo() will be included in the + // trace but Bar() and CurrentOsStackTraceExceptTop() won't. + std::string CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_; + + // Finds and returns a TestCase with the given name. If one doesn't + // exist, creates one and returns it. + // + // Arguments: + // + // test_case_name: name of the test case + // type_param: the name of the test's type parameter, or NULL if + // this is not a typed or a type-parameterized test. + // set_up_tc: pointer to the function that sets up the test case + // tear_down_tc: pointer to the function that tears down the test case + TestCase* GetTestCase(const char* test_case_name, + const char* type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc); + + // Adds a TestInfo to the unit test. + // + // Arguments: + // + // set_up_tc: pointer to the function that sets up the test case + // tear_down_tc: pointer to the function that tears down the test case + // test_info: the TestInfo object + void AddTestInfo(Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc, + TestInfo* test_info) { + // In order to support thread-safe death tests, we need to + // remember the original working directory when the test program + // was first invoked. We cannot do this in RUN_ALL_TESTS(), as + // the user may have changed the current directory before calling + // RUN_ALL_TESTS(). Therefore we capture the current directory in + // AddTestInfo(), which is called to register a TEST or TEST_F + // before main() is reached. + if (original_working_dir_.IsEmpty()) { + original_working_dir_.Set(FilePath::GetCurrentDir()); + GTEST_CHECK_(!original_working_dir_.IsEmpty()) + << "Failed to get the current working directory."; + } + + GetTestCase(test_info->test_case_name(), + test_info->type_param(), + set_up_tc, + tear_down_tc)->AddTestInfo(test_info); + } + +#if GTEST_HAS_PARAM_TEST + // Returns ParameterizedTestCaseRegistry object used to keep track of + // value-parameterized tests and instantiate and register them. + internal::ParameterizedTestCaseRegistry& parameterized_test_registry() { + return parameterized_test_registry_; + } +#endif // GTEST_HAS_PARAM_TEST + + // Sets the TestCase object for the test that's currently running. + void set_current_test_case(TestCase* a_current_test_case) { + current_test_case_ = a_current_test_case; + } + + // Sets the TestInfo object for the test that's currently running. If + // current_test_info is NULL, the assertion results will be stored in + // ad_hoc_test_result_. + void set_current_test_info(TestInfo* a_current_test_info) { + current_test_info_ = a_current_test_info; + } + + // Registers all parameterized tests defined using TEST_P and + // INSTANTIATE_TEST_CASE_P, creating regular tests for each test/parameter + // combination. This method can be called more then once; it has guards + // protecting from registering the tests more then once. If + // value-parameterized tests are disabled, RegisterParameterizedTests is + // present but does nothing. + void RegisterParameterizedTests(); + + // Runs all tests in this UnitTest object, prints the result, and + // returns true if all tests are successful. If any exception is + // thrown during a test, this test is considered to be failed, but + // the rest of the tests will still be run. + bool RunAllTests(); + + // Clears the results of all tests, except the ad hoc tests. + void ClearNonAdHocTestResult() { + ForEach(test_cases_, TestCase::ClearTestCaseResult); + } + + // Clears the results of ad-hoc test assertions. + void ClearAdHocTestResult() { + ad_hoc_test_result_.Clear(); + } + + // Adds a TestProperty to the current TestResult object when invoked in a + // context of a test or a test case, or to the global property set. If the + // result already contains a property with the same key, the value will be + // updated. + void RecordProperty(const TestProperty& test_property); + + enum ReactionToSharding { + HONOR_SHARDING_PROTOCOL, + IGNORE_SHARDING_PROTOCOL + }; + + // Matches the full name of each test against the user-specified + // filter to decide whether the test should run, then records the + // result in each TestCase and TestInfo object. + // If shard_tests == HONOR_SHARDING_PROTOCOL, further filters tests + // based on sharding variables in the environment. + // Returns the number of tests that should run. + int FilterTests(ReactionToSharding shard_tests); + + // Prints the names of the tests matching the user-specified filter flag. + void ListTestsMatchingFilter(); + + const TestCase* current_test_case() const { return current_test_case_; } + TestInfo* current_test_info() { return current_test_info_; } + const TestInfo* current_test_info() const { return current_test_info_; } + + // Returns the vector of environments that need to be set-up/torn-down + // before/after the tests are run. + std::vector& environments() { return environments_; } + + // Getters for the per-thread Google Test trace stack. + std::vector& gtest_trace_stack() { + return *(gtest_trace_stack_.pointer()); + } + const std::vector& gtest_trace_stack() const { + return gtest_trace_stack_.get(); + } + +#if GTEST_HAS_DEATH_TEST + void InitDeathTestSubprocessControlInfo() { + internal_run_death_test_flag_.reset(ParseInternalRunDeathTestFlag()); + } + // Returns a pointer to the parsed --gtest_internal_run_death_test + // flag, or NULL if that flag was not specified. + // This information is useful only in a death test child process. + // Must not be called before a call to InitGoogleTest. + const InternalRunDeathTestFlag* internal_run_death_test_flag() const { + return internal_run_death_test_flag_.get(); + } + + // Returns a pointer to the current death test factory. + internal::DeathTestFactory* death_test_factory() { + return death_test_factory_.get(); + } + + void SuppressTestEventsIfInSubprocess(); + + friend class ReplaceDeathTestFactory; +#endif // GTEST_HAS_DEATH_TEST + + // Initializes the event listener performing XML output as specified by + // UnitTestOptions. Must not be called before InitGoogleTest. + void ConfigureXmlOutput(); + +#if GTEST_CAN_STREAM_RESULTS_ + // Initializes the event listener for streaming test results to a socket. + // Must not be called before InitGoogleTest. + void ConfigureStreamingOutput(); +#endif + + // Performs initialization dependent upon flag values obtained in + // ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to + // ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest + // this function is also called from RunAllTests. Since this function can be + // called more than once, it has to be idempotent. + void PostFlagParsingInit(); + + // Gets the random seed used at the start of the current test iteration. + int random_seed() const { return random_seed_; } + + // Gets the random number generator. + internal::Random* random() { return &random_; } + + // Shuffles all test cases, and the tests within each test case, + // making sure that death tests are still run first. + void ShuffleTests(); + + // Restores the test cases and tests to their order before the first shuffle. + void UnshuffleTests(); + + // Returns the value of GTEST_FLAG(catch_exceptions) at the moment + // UnitTest::Run() starts. + bool catch_exceptions() const { return catch_exceptions_; } + + private: + friend class ::testing::UnitTest; + + // Used by UnitTest::Run() to capture the state of + // GTEST_FLAG(catch_exceptions) at the moment it starts. + void set_catch_exceptions(bool value) { catch_exceptions_ = value; } + + // The UnitTest object that owns this implementation object. + UnitTest* const parent_; + + // The working directory when the first TEST() or TEST_F() was + // executed. + internal::FilePath original_working_dir_; + + // The default test part result reporters. + DefaultGlobalTestPartResultReporter default_global_test_part_result_reporter_; + DefaultPerThreadTestPartResultReporter + default_per_thread_test_part_result_reporter_; + + // Points to (but doesn't own) the global test part result reporter. + TestPartResultReporterInterface* global_test_part_result_repoter_; + + // Protects read and write access to global_test_part_result_reporter_. + internal::Mutex global_test_part_result_reporter_mutex_; + + // Points to (but doesn't own) the per-thread test part result reporter. + internal::ThreadLocal + per_thread_test_part_result_reporter_; + + // The vector of environments that need to be set-up/torn-down + // before/after the tests are run. + std::vector environments_; + + // The vector of TestCases in their original order. It owns the + // elements in the vector. + std::vector test_cases_; + + // Provides a level of indirection for the test case list to allow + // easy shuffling and restoring the test case order. The i-th + // element of this vector is the index of the i-th test case in the + // shuffled order. + std::vector test_case_indices_; + +#if GTEST_HAS_PARAM_TEST + // ParameterizedTestRegistry object used to register value-parameterized + // tests. + internal::ParameterizedTestCaseRegistry parameterized_test_registry_; + + // Indicates whether RegisterParameterizedTests() has been called already. + bool parameterized_tests_registered_; +#endif // GTEST_HAS_PARAM_TEST + + // Index of the last death test case registered. Initially -1. + int last_death_test_case_; + + // This points to the TestCase for the currently running test. It + // changes as Google Test goes through one test case after another. + // When no test is running, this is set to NULL and Google Test + // stores assertion results in ad_hoc_test_result_. Initially NULL. + TestCase* current_test_case_; + + // This points to the TestInfo for the currently running test. It + // changes as Google Test goes through one test after another. When + // no test is running, this is set to NULL and Google Test stores + // assertion results in ad_hoc_test_result_. Initially NULL. + TestInfo* current_test_info_; + + // Normally, a user only writes assertions inside a TEST or TEST_F, + // or inside a function called by a TEST or TEST_F. Since Google + // Test keeps track of which test is current running, it can + // associate such an assertion with the test it belongs to. + // + // If an assertion is encountered when no TEST or TEST_F is running, + // Google Test attributes the assertion result to an imaginary "ad hoc" + // test, and records the result in ad_hoc_test_result_. + TestResult ad_hoc_test_result_; + + // The list of event listeners that can be used to track events inside + // Google Test. + TestEventListeners listeners_; + + // The OS stack trace getter. Will be deleted when the UnitTest + // object is destructed. By default, an OsStackTraceGetter is used, + // but the user can set this field to use a custom getter if that is + // desired. + OsStackTraceGetterInterface* os_stack_trace_getter_; + + // True iff PostFlagParsingInit() has been called. + bool post_flag_parse_init_performed_; + + // The random number seed used at the beginning of the test run. + int random_seed_; + + // Our random number generator. + internal::Random random_; + + // The time of the test program start, in ms from the start of the + // UNIX epoch. + TimeInMillis start_timestamp_; + + // How long the test took to run, in milliseconds. + TimeInMillis elapsed_time_; + +#if GTEST_HAS_DEATH_TEST + // The decomposed components of the gtest_internal_run_death_test flag, + // parsed when RUN_ALL_TESTS is called. + internal::scoped_ptr internal_run_death_test_flag_; + internal::scoped_ptr death_test_factory_; +#endif // GTEST_HAS_DEATH_TEST + + // A per-thread stack of traces created by the SCOPED_TRACE() macro. + internal::ThreadLocal > gtest_trace_stack_; + + // The value of GTEST_FLAG(catch_exceptions) at the moment RunAllTests() + // starts. + bool catch_exceptions_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTestImpl); +}; // class UnitTestImpl + +// Convenience function for accessing the global UnitTest +// implementation object. +inline UnitTestImpl* GetUnitTestImpl() { + return UnitTest::GetInstance()->impl(); +} + +#if GTEST_USES_SIMPLE_RE + +// Internal helper functions for implementing the simple regular +// expression matcher. +GTEST_API_ bool IsInSet(char ch, const char* str); +GTEST_API_ bool IsAsciiDigit(char ch); +GTEST_API_ bool IsAsciiPunct(char ch); +GTEST_API_ bool IsRepeat(char ch); +GTEST_API_ bool IsAsciiWhiteSpace(char ch); +GTEST_API_ bool IsAsciiWordChar(char ch); +GTEST_API_ bool IsValidEscape(char ch); +GTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch); +GTEST_API_ bool ValidateRegex(const char* regex); +GTEST_API_ bool MatchRegexAtHead(const char* regex, const char* str); +GTEST_API_ bool MatchRepetitionAndRegexAtHead( + bool escaped, char ch, char repeat, const char* regex, const char* str); +GTEST_API_ bool MatchRegexAnywhere(const char* regex, const char* str); + +#endif // GTEST_USES_SIMPLE_RE + +// Parses the command line for Google Test flags, without initializing +// other parts of Google Test. +GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, char** argv); +GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv); + +#if GTEST_HAS_DEATH_TEST + +// Returns the message describing the last system error, regardless of the +// platform. +GTEST_API_ std::string GetLastErrnoDescription(); + +# if GTEST_OS_WINDOWS +// Provides leak-safe Windows kernel handle ownership. +class AutoHandle { + public: + AutoHandle() : handle_(INVALID_HANDLE_VALUE) {} + explicit AutoHandle(HANDLE handle) : handle_(handle) {} + + ~AutoHandle() { Reset(); } + + HANDLE Get() const { return handle_; } + void Reset() { Reset(INVALID_HANDLE_VALUE); } + void Reset(HANDLE handle) { + if (handle != handle_) { + if (handle_ != INVALID_HANDLE_VALUE) + ::CloseHandle(handle_); + handle_ = handle; + } + } + + private: + HANDLE handle_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle); +}; +# endif // GTEST_OS_WINDOWS + +// Attempts to parse a string into a positive integer pointed to by the +// number parameter. Returns true if that is possible. +// GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we can use +// it here. +template +bool ParseNaturalNumber(const ::std::string& str, Integer* number) { + // Fail fast if the given string does not begin with a digit; + // this bypasses strtoXXX's "optional leading whitespace and plus + // or minus sign" semantics, which are undesirable here. + if (str.empty() || !IsDigit(str[0])) { + return false; + } + errno = 0; + + char* end; + // BiggestConvertible is the largest integer type that system-provided + // string-to-number conversion routines can return. + +# if GTEST_OS_WINDOWS && !defined(__GNUC__) + + // MSVC and C++ Builder define __int64 instead of the standard long long. + typedef unsigned __int64 BiggestConvertible; + const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10); + +# else + + typedef unsigned long long BiggestConvertible; // NOLINT + const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10); + +# endif // GTEST_OS_WINDOWS && !defined(__GNUC__) + + const bool parse_success = *end == '\0' && errno == 0; + + // TODO(vladl@google.com): Convert this to compile time assertion when it is + // available. + GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed)); + + const Integer result = static_cast(parsed); + if (parse_success && static_cast(result) == parsed) { + *number = result; + return true; + } + return false; +} +#endif // GTEST_HAS_DEATH_TEST + +// TestResult contains some private methods that should be hidden from +// Google Test user but are required for testing. This class allow our tests +// to access them. +// +// This class is supplied only for the purpose of testing Google Test's own +// constructs. Do not use it in user tests, either directly or indirectly. +class TestResultAccessor { + public: + static void RecordProperty(TestResult* test_result, + const std::string& xml_element, + const TestProperty& property) { + test_result->RecordProperty(xml_element, property); + } + + static void ClearTestPartResults(TestResult* test_result) { + test_result->ClearTestPartResults(); + } + + static const std::vector& test_part_results( + const TestResult& test_result) { + return test_result.test_part_results(); + } +}; + +#if GTEST_CAN_STREAM_RESULTS_ + +// Streams test results to the given port on the given host machine. +class StreamingListener : public EmptyTestEventListener { + public: + // Abstract base class for writing strings to a socket. + class AbstractSocketWriter { + public: + virtual ~AbstractSocketWriter() {} + + // Sends a string to the socket. + virtual void Send(const string& message) = 0; + + // Closes the socket. + virtual void CloseConnection() {} + + // Sends a string and a newline to the socket. + void SendLn(const string& message) { + Send(message + "\n"); + } + }; + + // Concrete class for actually writing strings to a socket. + class SocketWriter : public AbstractSocketWriter { + public: + SocketWriter(const string& host, const string& port) + : sockfd_(-1), host_name_(host), port_num_(port) { + MakeConnection(); + } + + virtual ~SocketWriter() { + if (sockfd_ != -1) + CloseConnection(); + } + + // Sends a string to the socket. + virtual void Send(const string& message) { + GTEST_CHECK_(sockfd_ != -1) + << "Send() can be called only when there is a connection."; + + const int len = static_cast(message.length()); + if (write(sockfd_, message.c_str(), len) != len) { + GTEST_LOG_(WARNING) + << "stream_result_to: failed to stream to " + << host_name_ << ":" << port_num_; + } + } + + private: + // Creates a client socket and connects to the server. + void MakeConnection(); + + // Closes the socket. + void CloseConnection() { + GTEST_CHECK_(sockfd_ != -1) + << "CloseConnection() can be called only when there is a connection."; + + close(sockfd_); + sockfd_ = -1; + } + + int sockfd_; // socket file descriptor + const string host_name_; + const string port_num_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(SocketWriter); + }; // class SocketWriter + + // Escapes '=', '&', '%', and '\n' characters in str as "%xx". + static string UrlEncode(const char* str); + + StreamingListener(const string& host, const string& port) + : socket_writer_(new SocketWriter(host, port)) { Start(); } + + explicit StreamingListener(AbstractSocketWriter* socket_writer) + : socket_writer_(socket_writer) { Start(); } + + void OnTestProgramStart(const UnitTest& /* unit_test */) { + SendLn("event=TestProgramStart"); + } + + void OnTestProgramEnd(const UnitTest& unit_test) { + // Note that Google Test current only report elapsed time for each + // test iteration, not for the entire test program. + SendLn("event=TestProgramEnd&passed=" + FormatBool(unit_test.Passed())); + + // Notify the streaming server to stop. + socket_writer_->CloseConnection(); + } + + void OnTestIterationStart(const UnitTest& /* unit_test */, int iteration) { + SendLn("event=TestIterationStart&iteration=" + + StreamableToString(iteration)); + } + + void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration */) { + SendLn("event=TestIterationEnd&passed=" + + FormatBool(unit_test.Passed()) + "&elapsed_time=" + + StreamableToString(unit_test.elapsed_time()) + "ms"); + } + + void OnTestCaseStart(const TestCase& test_case) { + SendLn(std::string("event=TestCaseStart&name=") + test_case.name()); + } + + void OnTestCaseEnd(const TestCase& test_case) { + SendLn("event=TestCaseEnd&passed=" + FormatBool(test_case.Passed()) + + "&elapsed_time=" + StreamableToString(test_case.elapsed_time()) + + "ms"); + } + + void OnTestStart(const TestInfo& test_info) { + SendLn(std::string("event=TestStart&name=") + test_info.name()); + } + + void OnTestEnd(const TestInfo& test_info) { + SendLn("event=TestEnd&passed=" + + FormatBool((test_info.result())->Passed()) + + "&elapsed_time=" + + StreamableToString((test_info.result())->elapsed_time()) + "ms"); + } + + void OnTestPartResult(const TestPartResult& test_part_result) { + const char* file_name = test_part_result.file_name(); + if (file_name == NULL) + file_name = ""; + SendLn("event=TestPartResult&file=" + UrlEncode(file_name) + + "&line=" + StreamableToString(test_part_result.line_number()) + + "&message=" + UrlEncode(test_part_result.message())); + } + + private: + // Sends the given message and a newline to the socket. + void SendLn(const string& message) { socket_writer_->SendLn(message); } + + // Called at the start of streaming to notify the receiver what + // protocol we are using. + void Start() { SendLn("gtest_streaming_protocol_version=1.0"); } + + string FormatBool(bool value) { return value ? "1" : "0"; } + + const scoped_ptr socket_writer_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamingListener); +}; // class StreamingListener + +#endif // GTEST_CAN_STREAM_RESULTS_ + +} // namespace internal +} // namespace testing + +#endif // GTEST_SRC_GTEST_INTERNAL_INL_H_ +#undef GTEST_IMPLEMENTATION_ + +#if GTEST_OS_WINDOWS +# define vsnprintf _vsnprintf +#endif // GTEST_OS_WINDOWS + +namespace testing { + +using internal::CountIf; +using internal::ForEach; +using internal::GetElementOr; +using internal::Shuffle; + +// Constants. + +// A test whose test case name or test name matches this filter is +// disabled and not run. +static const char kDisableTestFilter[] = "DISABLED_*:*/DISABLED_*"; + +// A test case whose name matches this filter is considered a death +// test case and will be run before test cases whose name doesn't +// match this filter. +static const char kDeathTestCaseFilter[] = "*DeathTest:*DeathTest/*"; + +// A test filter that matches everything. +static const char kUniversalFilter[] = "*"; + +// The default output file for XML output. +static const char kDefaultOutputFile[] = "test_detail.xml"; + +// The environment variable name for the test shard index. +static const char kTestShardIndex[] = "GTEST_SHARD_INDEX"; +// The environment variable name for the total number of test shards. +static const char kTestTotalShards[] = "GTEST_TOTAL_SHARDS"; +// The environment variable name for the test shard status file. +static const char kTestShardStatusFile[] = "GTEST_SHARD_STATUS_FILE"; + +namespace internal { + +// The text used in failure messages to indicate the start of the +// stack trace. +const char kStackTraceMarker[] = "\nStack trace:\n"; + +// g_help_flag is true iff the --help flag or an equivalent form is +// specified on the command line. +bool g_help_flag = false; + +} // namespace internal + +static const char* GetDefaultFilter() { + return kUniversalFilter; +} + +GTEST_DEFINE_bool_( + also_run_disabled_tests, + internal::BoolFromGTestEnv("also_run_disabled_tests", false), + "Run disabled tests too, in addition to the tests normally being run."); + +GTEST_DEFINE_bool_( + break_on_failure, + internal::BoolFromGTestEnv("break_on_failure", false), + "True iff a failed assertion should be a debugger break-point."); + +GTEST_DEFINE_bool_( + catch_exceptions, + internal::BoolFromGTestEnv("catch_exceptions", true), + "True iff " GTEST_NAME_ + " should catch exceptions and treat them as test failures."); + +GTEST_DEFINE_string_( + color, + internal::StringFromGTestEnv("color", "auto"), + "Whether to use colors in the output. Valid values: yes, no, " + "and auto. 'auto' means to use colors if the output is " + "being sent to a terminal and the TERM environment variable " + "is set to a terminal type that supports colors."); + +GTEST_DEFINE_string_( + filter, + internal::StringFromGTestEnv("filter", GetDefaultFilter()), + "A colon-separated list of glob (not regex) patterns " + "for filtering the tests to run, optionally followed by a " + "'-' and a : separated list of negative patterns (tests to " + "exclude). A test is run if it matches one of the positive " + "patterns and does not match any of the negative patterns."); + +GTEST_DEFINE_bool_(list_tests, false, + "List all tests without running them."); + +GTEST_DEFINE_string_( + output, + internal::StringFromGTestEnv("output", ""), + "A format (currently must be \"xml\"), optionally followed " + "by a colon and an output file name or directory. A directory " + "is indicated by a trailing pathname separator. " + "Examples: \"xml:filename.xml\", \"xml::directoryname/\". " + "If a directory is specified, output files will be created " + "within that directory, with file-names based on the test " + "executable's name and, if necessary, made unique by adding " + "digits."); + +GTEST_DEFINE_bool_( + print_time, + internal::BoolFromGTestEnv("print_time", true), + "True iff " GTEST_NAME_ + " should display elapsed time in text output."); + +GTEST_DEFINE_int32_( + random_seed, + internal::Int32FromGTestEnv("random_seed", 0), + "Random number seed to use when shuffling test orders. Must be in range " + "[1, 99999], or 0 to use a seed based on the current time."); + +GTEST_DEFINE_int32_( + repeat, + internal::Int32FromGTestEnv("repeat", 1), + "How many times to repeat each test. Specify a negative number " + "for repeating forever. Useful for shaking out flaky tests."); + +GTEST_DEFINE_bool_( + show_internal_stack_frames, false, + "True iff " GTEST_NAME_ " should include internal stack frames when " + "printing test failure stack traces."); + +GTEST_DEFINE_bool_( + shuffle, + internal::BoolFromGTestEnv("shuffle", false), + "True iff " GTEST_NAME_ + " should randomize tests' order on every run."); + +GTEST_DEFINE_int32_( + stack_trace_depth, + internal::Int32FromGTestEnv("stack_trace_depth", kMaxStackTraceDepth), + "The maximum number of stack frames to print when an " + "assertion fails. The valid range is 0 through 100, inclusive."); + +GTEST_DEFINE_string_( + stream_result_to, + internal::StringFromGTestEnv("stream_result_to", ""), + "This flag specifies the host name and the port number on which to stream " + "test results. Example: \"localhost:555\". The flag is effective only on " + "Linux."); + +GTEST_DEFINE_bool_( + throw_on_failure, + internal::BoolFromGTestEnv("throw_on_failure", false), + "When this flag is specified, a failed assertion will throw an exception " + "if exceptions are enabled or exit the program with a non-zero code " + "otherwise."); + +namespace internal { + +// Generates a random number from [0, range), using a Linear +// Congruential Generator (LCG). Crashes if 'range' is 0 or greater +// than kMaxRange. +UInt32 Random::Generate(UInt32 range) { + // These constants are the same as are used in glibc's rand(3). + state_ = (1103515245U*state_ + 12345U) % kMaxRange; + + GTEST_CHECK_(range > 0) + << "Cannot generate a number in the range [0, 0)."; + GTEST_CHECK_(range <= kMaxRange) + << "Generation of a number in [0, " << range << ") was requested, " + << "but this can only generate numbers in [0, " << kMaxRange << ")."; + + // Converting via modulus introduces a bit of downward bias, but + // it's simple, and a linear congruential generator isn't too good + // to begin with. + return state_ % range; +} + +// GTestIsInitialized() returns true iff the user has initialized +// Google Test. Useful for catching the user mistake of not initializing +// Google Test before calling RUN_ALL_TESTS(). +// +// A user must call testing::InitGoogleTest() to initialize Google +// Test. g_init_gtest_count is set to the number of times +// InitGoogleTest() has been called. We don't protect this variable +// under a mutex as it is only accessed in the main thread. +GTEST_API_ int g_init_gtest_count = 0; +static bool GTestIsInitialized() { return g_init_gtest_count != 0; } + +// Iterates over a vector of TestCases, keeping a running sum of the +// results of calling a given int-returning method on each. +// Returns the sum. +static int SumOverTestCaseList(const std::vector& case_list, + int (TestCase::*method)() const) { + int sum = 0; + for (size_t i = 0; i < case_list.size(); i++) { + sum += (case_list[i]->*method)(); + } + return sum; +} + +// Returns true iff the test case passed. +static bool TestCasePassed(const TestCase* test_case) { + return test_case->should_run() && test_case->Passed(); +} + +// Returns true iff the test case failed. +static bool TestCaseFailed(const TestCase* test_case) { + return test_case->should_run() && test_case->Failed(); +} + +// Returns true iff test_case contains at least one test that should +// run. +static bool ShouldRunTestCase(const TestCase* test_case) { + return test_case->should_run(); +} + +// AssertHelper constructor. +AssertHelper::AssertHelper(TestPartResult::Type type, + const char* file, + int line, + const char* message) + : data_(new AssertHelperData(type, file, line, message)) { +} + +AssertHelper::~AssertHelper() { + delete data_; +} + +// Message assignment, for assertion streaming support. +void AssertHelper::operator=(const Message& message) const { + UnitTest::GetInstance()-> + AddTestPartResult(data_->type, data_->file, data_->line, + AppendUserMessage(data_->message, message), + UnitTest::GetInstance()->impl() + ->CurrentOsStackTraceExceptTop(1) + // Skips the stack frame for this function itself. + ); // NOLINT +} + +// Mutex for linked pointers. +GTEST_API_ GTEST_DEFINE_STATIC_MUTEX_(g_linked_ptr_mutex); + +// Application pathname gotten in InitGoogleTest. +std::string g_executable_path; + +// Returns the current application's name, removing directory path if that +// is present. +FilePath GetCurrentExecutableName() { + FilePath result; + +#if GTEST_OS_WINDOWS + result.Set(FilePath(g_executable_path).RemoveExtension("exe")); +#else + result.Set(FilePath(g_executable_path)); +#endif // GTEST_OS_WINDOWS + + return result.RemoveDirectoryName(); +} + +// Functions for processing the gtest_output flag. + +// Returns the output format, or "" for normal printed output. +std::string UnitTestOptions::GetOutputFormat() { + const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); + if (gtest_output_flag == NULL) return std::string(""); + + const char* const colon = strchr(gtest_output_flag, ':'); + return (colon == NULL) ? + std::string(gtest_output_flag) : + std::string(gtest_output_flag, colon - gtest_output_flag); +} + +// Returns the name of the requested output file, or the default if none +// was explicitly specified. +std::string UnitTestOptions::GetAbsolutePathToOutputFile() { + const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); + if (gtest_output_flag == NULL) + return ""; + + const char* const colon = strchr(gtest_output_flag, ':'); + if (colon == NULL) + return internal::FilePath::ConcatPaths( + internal::FilePath( + UnitTest::GetInstance()->original_working_dir()), + internal::FilePath(kDefaultOutputFile)).string(); + + internal::FilePath output_name(colon + 1); + if (!output_name.IsAbsolutePath()) + // TODO(wan@google.com): on Windows \some\path is not an absolute + // path (as its meaning depends on the current drive), yet the + // following logic for turning it into an absolute path is wrong. + // Fix it. + output_name = internal::FilePath::ConcatPaths( + internal::FilePath(UnitTest::GetInstance()->original_working_dir()), + internal::FilePath(colon + 1)); + + if (!output_name.IsDirectory()) + return output_name.string(); + + internal::FilePath result(internal::FilePath::GenerateUniqueFileName( + output_name, internal::GetCurrentExecutableName(), + GetOutputFormat().c_str())); + return result.string(); +} + +// Returns true iff the wildcard pattern matches the string. The +// first ':' or '\0' character in pattern marks the end of it. +// +// This recursive algorithm isn't very efficient, but is clear and +// works well enough for matching test names, which are short. +bool UnitTestOptions::PatternMatchesString(const char *pattern, + const char *str) { + switch (*pattern) { + case '\0': + case ':': // Either ':' or '\0' marks the end of the pattern. + return *str == '\0'; + case '?': // Matches any single character. + return *str != '\0' && PatternMatchesString(pattern + 1, str + 1); + case '*': // Matches any string (possibly empty) of characters. + return (*str != '\0' && PatternMatchesString(pattern, str + 1)) || + PatternMatchesString(pattern + 1, str); + default: // Non-special character. Matches itself. + return *pattern == *str && + PatternMatchesString(pattern + 1, str + 1); + } +} + +bool UnitTestOptions::MatchesFilter( + const std::string& name, const char* filter) { + const char *cur_pattern = filter; + for (;;) { + if (PatternMatchesString(cur_pattern, name.c_str())) { + return true; + } + + // Finds the next pattern in the filter. + cur_pattern = strchr(cur_pattern, ':'); + + // Returns if no more pattern can be found. + if (cur_pattern == NULL) { + return false; + } + + // Skips the pattern separater (the ':' character). + cur_pattern++; + } +} + +// Returns true iff the user-specified filter matches the test case +// name and the test name. +bool UnitTestOptions::FilterMatchesTest(const std::string &test_case_name, + const std::string &test_name) { + const std::string& full_name = test_case_name + "." + test_name.c_str(); + + // Split --gtest_filter at '-', if there is one, to separate into + // positive filter and negative filter portions + const char* const p = GTEST_FLAG(filter).c_str(); + const char* const dash = strchr(p, '-'); + std::string positive; + std::string negative; + if (dash == NULL) { + positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter + negative = ""; + } else { + positive = std::string(p, dash); // Everything up to the dash + negative = std::string(dash + 1); // Everything after the dash + if (positive.empty()) { + // Treat '-test1' as the same as '*-test1' + positive = kUniversalFilter; + } + } + + // A filter is a colon-separated list of patterns. It matches a + // test if any pattern in it matches the test. + return (MatchesFilter(full_name, positive.c_str()) && + !MatchesFilter(full_name, negative.c_str())); +} + +#if GTEST_HAS_SEH +// Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the +// given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. +// This function is useful as an __except condition. +int UnitTestOptions::GTestShouldProcessSEH(DWORD exception_code) { + // Google Test should handle a SEH exception if: + // 1. the user wants it to, AND + // 2. this is not a breakpoint exception, AND + // 3. this is not a C++ exception (VC++ implements them via SEH, + // apparently). + // + // SEH exception code for C++ exceptions. + // (see http://support.microsoft.com/kb/185294 for more information). + const DWORD kCxxExceptionCode = 0xe06d7363; + + bool should_handle = true; + + if (!GTEST_FLAG(catch_exceptions)) + should_handle = false; + else if (exception_code == EXCEPTION_BREAKPOINT) + should_handle = false; + else if (exception_code == kCxxExceptionCode) + should_handle = false; + + return should_handle ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH; +} +#endif // GTEST_HAS_SEH + +} // namespace internal + +// The c'tor sets this object as the test part result reporter used by +// Google Test. The 'result' parameter specifies where to report the +// results. Intercepts only failures from the current thread. +ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( + TestPartResultArray* result) + : intercept_mode_(INTERCEPT_ONLY_CURRENT_THREAD), + result_(result) { + Init(); +} + +// The c'tor sets this object as the test part result reporter used by +// Google Test. The 'result' parameter specifies where to report the +// results. +ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( + InterceptMode intercept_mode, TestPartResultArray* result) + : intercept_mode_(intercept_mode), + result_(result) { + Init(); +} + +void ScopedFakeTestPartResultReporter::Init() { + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + if (intercept_mode_ == INTERCEPT_ALL_THREADS) { + old_reporter_ = impl->GetGlobalTestPartResultReporter(); + impl->SetGlobalTestPartResultReporter(this); + } else { + old_reporter_ = impl->GetTestPartResultReporterForCurrentThread(); + impl->SetTestPartResultReporterForCurrentThread(this); + } +} + +// The d'tor restores the test part result reporter used by Google Test +// before. +ScopedFakeTestPartResultReporter::~ScopedFakeTestPartResultReporter() { + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + if (intercept_mode_ == INTERCEPT_ALL_THREADS) { + impl->SetGlobalTestPartResultReporter(old_reporter_); + } else { + impl->SetTestPartResultReporterForCurrentThread(old_reporter_); + } +} + +// Increments the test part result count and remembers the result. +// This method is from the TestPartResultReporterInterface interface. +void ScopedFakeTestPartResultReporter::ReportTestPartResult( + const TestPartResult& result) { + result_->Append(result); +} + +namespace internal { + +// Returns the type ID of ::testing::Test. We should always call this +// instead of GetTypeId< ::testing::Test>() to get the type ID of +// testing::Test. This is to work around a suspected linker bug when +// using Google Test as a framework on Mac OS X. The bug causes +// GetTypeId< ::testing::Test>() to return different values depending +// on whether the call is from the Google Test framework itself or +// from user test code. GetTestTypeId() is guaranteed to always +// return the same value, as it always calls GetTypeId<>() from the +// gtest.cc, which is within the Google Test framework. +TypeId GetTestTypeId() { + return GetTypeId(); +} + +// The value of GetTestTypeId() as seen from within the Google Test +// library. This is solely for testing GetTestTypeId(). +extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId(); + +// This predicate-formatter checks that 'results' contains a test part +// failure of the given type and that the failure message contains the +// given substring. +AssertionResult HasOneFailure(const char* /* results_expr */, + const char* /* type_expr */, + const char* /* substr_expr */, + const TestPartResultArray& results, + TestPartResult::Type type, + const string& substr) { + const std::string expected(type == TestPartResult::kFatalFailure ? + "1 fatal failure" : + "1 non-fatal failure"); + Message msg; + if (results.size() != 1) { + msg << "Expected: " << expected << "\n" + << " Actual: " << results.size() << " failures"; + for (int i = 0; i < results.size(); i++) { + msg << "\n" << results.GetTestPartResult(i); + } + return AssertionFailure() << msg; + } + + const TestPartResult& r = results.GetTestPartResult(0); + if (r.type() != type) { + return AssertionFailure() << "Expected: " << expected << "\n" + << " Actual:\n" + << r; + } + + if (strstr(r.message(), substr.c_str()) == NULL) { + return AssertionFailure() << "Expected: " << expected << " containing \"" + << substr << "\"\n" + << " Actual:\n" + << r; + } + + return AssertionSuccess(); +} + +// The constructor of SingleFailureChecker remembers where to look up +// test part results, what type of failure we expect, and what +// substring the failure message should contain. +SingleFailureChecker:: SingleFailureChecker( + const TestPartResultArray* results, + TestPartResult::Type type, + const string& substr) + : results_(results), + type_(type), + substr_(substr) {} + +// The destructor of SingleFailureChecker verifies that the given +// TestPartResultArray contains exactly one failure that has the given +// type and contains the given substring. If that's not the case, a +// non-fatal failure will be generated. +SingleFailureChecker::~SingleFailureChecker() { + EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_); +} + +DefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter( + UnitTestImpl* unit_test) : unit_test_(unit_test) {} + +void DefaultGlobalTestPartResultReporter::ReportTestPartResult( + const TestPartResult& result) { + unit_test_->current_test_result()->AddTestPartResult(result); + unit_test_->listeners()->repeater()->OnTestPartResult(result); +} + +DefaultPerThreadTestPartResultReporter::DefaultPerThreadTestPartResultReporter( + UnitTestImpl* unit_test) : unit_test_(unit_test) {} + +void DefaultPerThreadTestPartResultReporter::ReportTestPartResult( + const TestPartResult& result) { + unit_test_->GetGlobalTestPartResultReporter()->ReportTestPartResult(result); +} + +// Returns the global test part result reporter. +TestPartResultReporterInterface* +UnitTestImpl::GetGlobalTestPartResultReporter() { + internal::MutexLock lock(&global_test_part_result_reporter_mutex_); + return global_test_part_result_repoter_; +} + +// Sets the global test part result reporter. +void UnitTestImpl::SetGlobalTestPartResultReporter( + TestPartResultReporterInterface* reporter) { + internal::MutexLock lock(&global_test_part_result_reporter_mutex_); + global_test_part_result_repoter_ = reporter; +} + +// Returns the test part result reporter for the current thread. +TestPartResultReporterInterface* +UnitTestImpl::GetTestPartResultReporterForCurrentThread() { + return per_thread_test_part_result_reporter_.get(); +} + +// Sets the test part result reporter for the current thread. +void UnitTestImpl::SetTestPartResultReporterForCurrentThread( + TestPartResultReporterInterface* reporter) { + per_thread_test_part_result_reporter_.set(reporter); +} + +// Gets the number of successful test cases. +int UnitTestImpl::successful_test_case_count() const { + return CountIf(test_cases_, TestCasePassed); +} + +// Gets the number of failed test cases. +int UnitTestImpl::failed_test_case_count() const { + return CountIf(test_cases_, TestCaseFailed); +} + +// Gets the number of all test cases. +int UnitTestImpl::total_test_case_count() const { + return static_cast(test_cases_.size()); +} + +// Gets the number of all test cases that contain at least one test +// that should run. +int UnitTestImpl::test_case_to_run_count() const { + return CountIf(test_cases_, ShouldRunTestCase); +} + +// Gets the number of successful tests. +int UnitTestImpl::successful_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count); +} + +// Gets the number of failed tests. +int UnitTestImpl::failed_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count); +} + +// Gets the number of disabled tests that will be reported in the XML report. +int UnitTestImpl::reportable_disabled_test_count() const { + return SumOverTestCaseList(test_cases_, + &TestCase::reportable_disabled_test_count); +} + +// Gets the number of disabled tests. +int UnitTestImpl::disabled_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count); +} + +// Gets the number of tests to be printed in the XML report. +int UnitTestImpl::reportable_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::reportable_test_count); +} + +// Gets the number of all tests. +int UnitTestImpl::total_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::total_test_count); +} + +// Gets the number of tests that should run. +int UnitTestImpl::test_to_run_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::test_to_run_count); +} + +// Returns the current OS stack trace as an std::string. +// +// The maximum number of stack frames to be included is specified by +// the gtest_stack_trace_depth flag. The skip_count parameter +// specifies the number of top frames to be skipped, which doesn't +// count against the number of frames to be included. +// +// For example, if Foo() calls Bar(), which in turn calls +// CurrentOsStackTraceExceptTop(1), Foo() will be included in the +// trace but Bar() and CurrentOsStackTraceExceptTop() won't. +std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { + (void)skip_count; + return ""; +} + +// Returns the current time in milliseconds. +TimeInMillis GetTimeInMillis() { +#if GTEST_OS_WINDOWS_MOBILE || defined(__BORLANDC__) + // Difference between 1970-01-01 and 1601-01-01 in milliseconds. + // http://analogous.blogspot.com/2005/04/epoch.html + const TimeInMillis kJavaEpochToWinFileTimeDelta = + static_cast(116444736UL) * 100000UL; + const DWORD kTenthMicrosInMilliSecond = 10000; + + SYSTEMTIME now_systime; + FILETIME now_filetime; + ULARGE_INTEGER now_int64; + // TODO(kenton@google.com): Shouldn't this just use + // GetSystemTimeAsFileTime()? + GetSystemTime(&now_systime); + if (SystemTimeToFileTime(&now_systime, &now_filetime)) { + now_int64.LowPart = now_filetime.dwLowDateTime; + now_int64.HighPart = now_filetime.dwHighDateTime; + now_int64.QuadPart = (now_int64.QuadPart / kTenthMicrosInMilliSecond) - + kJavaEpochToWinFileTimeDelta; + return now_int64.QuadPart; + } + return 0; +#elif GTEST_OS_WINDOWS && !GTEST_HAS_GETTIMEOFDAY_ + __timeb64 now; + +# ifdef _MSC_VER + + // MSVC 8 deprecates _ftime64(), so we want to suppress warning 4996 + // (deprecated function) there. + // TODO(kenton@google.com): Use GetTickCount()? Or use + // SystemTimeToFileTime() +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4996) // Temporarily disables warning 4996. + _ftime64(&now); +# pragma warning(pop) // Restores the warning state. +# else + + _ftime64(&now); + +# endif // _MSC_VER + + return static_cast(now.time) * 1000 + now.millitm; +#elif GTEST_HAS_GETTIMEOFDAY_ + struct timeval now; + gettimeofday(&now, NULL); + return static_cast(now.tv_sec) * 1000 + now.tv_usec / 1000; +#else +# error "Don't know how to get the current time on your system." +#endif +} + +// Utilities + +// class String. + +#if GTEST_OS_WINDOWS_MOBILE +// Creates a UTF-16 wide string from the given ANSI string, allocating +// memory using new. The caller is responsible for deleting the return +// value using delete[]. Returns the wide string, or NULL if the +// input is NULL. +LPCWSTR String::AnsiToUtf16(const char* ansi) { + if (!ansi) return NULL; + const int length = strlen(ansi); + const int unicode_length = + MultiByteToWideChar(CP_ACP, 0, ansi, length, + NULL, 0); + WCHAR* unicode = new WCHAR[unicode_length + 1]; + MultiByteToWideChar(CP_ACP, 0, ansi, length, + unicode, unicode_length); + unicode[unicode_length] = 0; + return unicode; +} + +// Creates an ANSI string from the given wide string, allocating +// memory using new. The caller is responsible for deleting the return +// value using delete[]. Returns the ANSI string, or NULL if the +// input is NULL. +const char* String::Utf16ToAnsi(LPCWSTR utf16_str) { + if (!utf16_str) return NULL; + const int ansi_length = + WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, + NULL, 0, NULL, NULL); + char* ansi = new char[ansi_length + 1]; + WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, + ansi, ansi_length, NULL, NULL); + ansi[ansi_length] = 0; + return ansi; +} + +#endif // GTEST_OS_WINDOWS_MOBILE + +// Compares two C strings. Returns true iff they have the same content. +// +// Unlike strcmp(), this function can handle NULL argument(s). A NULL +// C string is considered different to any non-NULL C string, +// including the empty string. +bool String::CStringEquals(const char * lhs, const char * rhs) { + if ( lhs == NULL ) return rhs == NULL; + + if ( rhs == NULL ) return false; + + return strcmp(lhs, rhs) == 0; +} + +#if GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING + +// Converts an array of wide chars to a narrow string using the UTF-8 +// encoding, and streams the result to the given Message object. +static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, + Message* msg) { + for (size_t i = 0; i != length; ) { // NOLINT + if (wstr[i] != L'\0') { + *msg << WideStringToUtf8(wstr + i, static_cast(length - i)); + while (i != length && wstr[i] != L'\0') + i++; + } else { + *msg << '\0'; + i++; + } + } +} + +#endif // GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING + +} // namespace internal + +// Constructs an empty Message. +// We allocate the stringstream separately because otherwise each use of +// ASSERT/EXPECT in a procedure adds over 200 bytes to the procedure's +// stack frame leading to huge stack frames in some cases; gcc does not reuse +// the stack space. +Message::Message() : ss_(new ::std::stringstream) { + // By default, we want there to be enough precision when printing + // a double to a Message. + *ss_ << std::setprecision(std::numeric_limits::digits10 + 2); +} + +// These two overloads allow streaming a wide C string to a Message +// using the UTF-8 encoding. +Message& Message::operator <<(const wchar_t* wide_c_str) { + return *this << internal::String::ShowWideCString(wide_c_str); +} +Message& Message::operator <<(wchar_t* wide_c_str) { + return *this << internal::String::ShowWideCString(wide_c_str); +} + +#if GTEST_HAS_STD_WSTRING +// Converts the given wide string to a narrow string using the UTF-8 +// encoding, and streams the result to this Message object. +Message& Message::operator <<(const ::std::wstring& wstr) { + internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); + return *this; +} +#endif // GTEST_HAS_STD_WSTRING + +#if GTEST_HAS_GLOBAL_WSTRING +// Converts the given wide string to a narrow string using the UTF-8 +// encoding, and streams the result to this Message object. +Message& Message::operator <<(const ::wstring& wstr) { + internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); + return *this; +} +#endif // GTEST_HAS_GLOBAL_WSTRING + +// Gets the text streamed to this object so far as an std::string. +// Each '\0' character in the buffer is replaced with "\\0". +std::string Message::GetString() const { + return internal::StringStreamToString(ss_.get()); +} + +// AssertionResult constructors. +// Used in EXPECT_TRUE/FALSE(assertion_result). +AssertionResult::AssertionResult(const AssertionResult& other) + : success_(other.success_), + message_(other.message_.get() != NULL ? + new ::std::string(*other.message_) : + static_cast< ::std::string*>(NULL)) { +} + +// Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. +AssertionResult AssertionResult::operator!() const { + AssertionResult negation(!success_); + if (message_.get() != NULL) + negation << *message_; + return negation; +} + +// Makes a successful assertion result. +AssertionResult AssertionSuccess() { + return AssertionResult(true); +} + +// Makes a failed assertion result. +AssertionResult AssertionFailure() { + return AssertionResult(false); +} + +// Makes a failed assertion result with the given failure message. +// Deprecated; use AssertionFailure() << message. +AssertionResult AssertionFailure(const Message& message) { + return AssertionFailure() << message; +} + +namespace internal { + +// Constructs and returns the message for an equality assertion +// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. +// +// The first four parameters are the expressions used in the assertion +// and their values, as strings. For example, for ASSERT_EQ(foo, bar) +// where foo is 5 and bar is 6, we have: +// +// expected_expression: "foo" +// actual_expression: "bar" +// expected_value: "5" +// actual_value: "6" +// +// The ignoring_case parameter is true iff the assertion is a +// *_STRCASEEQ*. When it's true, the string " (ignoring case)" will +// be inserted into the message. +AssertionResult EqFailure(const char* expected_expression, + const char* actual_expression, + const std::string& expected_value, + const std::string& actual_value, + bool ignoring_case) { + Message msg; + msg << "Value of: " << actual_expression; + if (actual_value != actual_expression) { + msg << "\n Actual: " << actual_value; + } + + msg << "\nExpected: " << expected_expression; + if (ignoring_case) { + msg << " (ignoring case)"; + } + if (expected_value != expected_expression) { + msg << "\nWhich is: " << expected_value; + } + + return AssertionFailure() << msg; +} + +// Constructs a failure message for Boolean assertions such as EXPECT_TRUE. +std::string GetBoolAssertionFailureMessage( + const AssertionResult& assertion_result, + const char* expression_text, + const char* actual_predicate_value, + const char* expected_predicate_value) { + const char* actual_message = assertion_result.message(); + Message msg; + msg << "Value of: " << expression_text + << "\n Actual: " << actual_predicate_value; + if (actual_message[0] != '\0') + msg << " (" << actual_message << ")"; + msg << "\nExpected: " << expected_predicate_value; + return msg.GetString(); +} + +// Helper function for implementing ASSERT_NEAR. +AssertionResult DoubleNearPredFormat(const char* expr1, + const char* expr2, + const char* abs_error_expr, + double val1, + double val2, + double abs_error) { + const double diff = fabs(val1 - val2); + if (diff <= abs_error) return AssertionSuccess(); + + // TODO(wan): do not print the value of an expression if it's + // already a literal. + return AssertionFailure() + << "The difference between " << expr1 << " and " << expr2 + << " is " << diff << ", which exceeds " << abs_error_expr << ", where\n" + << expr1 << " evaluates to " << val1 << ",\n" + << expr2 << " evaluates to " << val2 << ", and\n" + << abs_error_expr << " evaluates to " << abs_error << "."; +} + + +// Helper template for implementing FloatLE() and DoubleLE(). +template +AssertionResult FloatingPointLE(const char* expr1, + const char* expr2, + RawType val1, + RawType val2) { + // Returns success if val1 is less than val2, + if (val1 < val2) { + return AssertionSuccess(); + } + + // or if val1 is almost equal to val2. + const FloatingPoint lhs(val1), rhs(val2); + if (lhs.AlmostEquals(rhs)) { + return AssertionSuccess(); + } + + // Note that the above two checks will both fail if either val1 or + // val2 is NaN, as the IEEE floating-point standard requires that + // any predicate involving a NaN must return false. + + ::std::stringstream val1_ss; + val1_ss << std::setprecision(std::numeric_limits::digits10 + 2) + << val1; + + ::std::stringstream val2_ss; + val2_ss << std::setprecision(std::numeric_limits::digits10 + 2) + << val2; + + return AssertionFailure() + << "Expected: (" << expr1 << ") <= (" << expr2 << ")\n" + << " Actual: " << StringStreamToString(&val1_ss) << " vs " + << StringStreamToString(&val2_ss); +} + +} // namespace internal + +// Asserts that val1 is less than, or almost equal to, val2. Fails +// otherwise. In particular, it fails if either val1 or val2 is NaN. +AssertionResult FloatLE(const char* expr1, const char* expr2, + float val1, float val2) { + return internal::FloatingPointLE(expr1, expr2, val1, val2); +} + +// Asserts that val1 is less than, or almost equal to, val2. Fails +// otherwise. In particular, it fails if either val1 or val2 is NaN. +AssertionResult DoubleLE(const char* expr1, const char* expr2, + double val1, double val2) { + return internal::FloatingPointLE(expr1, expr2, val1, val2); +} + +namespace internal { + +// The helper function for {ASSERT|EXPECT}_EQ with int or enum +// arguments. +AssertionResult CmpHelperEQ(const char* expected_expression, + const char* actual_expression, + BiggestInt expected, + BiggestInt actual) { + if (expected == actual) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + FormatForComparisonFailureMessage(expected, actual), + FormatForComparisonFailureMessage(actual, expected), + false); +} + +// A macro for implementing the helper functions needed to implement +// ASSERT_?? and EXPECT_?? with integer or enum arguments. It is here +// just to avoid copy-and-paste of similar code. +#define GTEST_IMPL_CMP_HELPER_(op_name, op)\ +AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ + BiggestInt val1, BiggestInt val2) {\ + if (val1 op val2) {\ + return AssertionSuccess();\ + } else {\ + return AssertionFailure() \ + << "Expected: (" << expr1 << ") " #op " (" << expr2\ + << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\ + << " vs " << FormatForComparisonFailureMessage(val2, val1);\ + }\ +} + +// Implements the helper function for {ASSERT|EXPECT}_NE with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(NE, !=) +// Implements the helper function for {ASSERT|EXPECT}_LE with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(LE, <=) +// Implements the helper function for {ASSERT|EXPECT}_LT with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(LT, < ) +// Implements the helper function for {ASSERT|EXPECT}_GE with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(GE, >=) +// Implements the helper function for {ASSERT|EXPECT}_GT with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(GT, > ) + +#undef GTEST_IMPL_CMP_HELPER_ + +// The helper function for {ASSERT|EXPECT}_STREQ. +AssertionResult CmpHelperSTREQ(const char* expected_expression, + const char* actual_expression, + const char* expected, + const char* actual) { + if (String::CStringEquals(expected, actual)) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + PrintToString(expected), + PrintToString(actual), + false); +} + +// The helper function for {ASSERT|EXPECT}_STRCASEEQ. +AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression, + const char* actual_expression, + const char* expected, + const char* actual) { + if (String::CaseInsensitiveCStringEquals(expected, actual)) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + PrintToString(expected), + PrintToString(actual), + true); +} + +// The helper function for {ASSERT|EXPECT}_STRNE. +AssertionResult CmpHelperSTRNE(const char* s1_expression, + const char* s2_expression, + const char* s1, + const char* s2) { + if (!String::CStringEquals(s1, s2)) { + return AssertionSuccess(); + } else { + return AssertionFailure() << "Expected: (" << s1_expression << ") != (" + << s2_expression << "), actual: \"" + << s1 << "\" vs \"" << s2 << "\""; + } +} + +// The helper function for {ASSERT|EXPECT}_STRCASENE. +AssertionResult CmpHelperSTRCASENE(const char* s1_expression, + const char* s2_expression, + const char* s1, + const char* s2) { + if (!String::CaseInsensitiveCStringEquals(s1, s2)) { + return AssertionSuccess(); + } else { + return AssertionFailure() + << "Expected: (" << s1_expression << ") != (" + << s2_expression << ") (ignoring case), actual: \"" + << s1 << "\" vs \"" << s2 << "\""; + } +} + +} // namespace internal + +namespace { + +// Helper functions for implementing IsSubString() and IsNotSubstring(). + +// This group of overloaded functions return true iff needle is a +// substring of haystack. NULL is considered a substring of itself +// only. + +bool IsSubstringPred(const char* needle, const char* haystack) { + if (needle == NULL || haystack == NULL) + return needle == haystack; + + return strstr(haystack, needle) != NULL; +} + +bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) { + if (needle == NULL || haystack == NULL) + return needle == haystack; + + return wcsstr(haystack, needle) != NULL; +} + +// StringType here can be either ::std::string or ::std::wstring. +template +bool IsSubstringPred(const StringType& needle, + const StringType& haystack) { + return haystack.find(needle) != StringType::npos; +} + +// This function implements either IsSubstring() or IsNotSubstring(), +// depending on the value of the expected_to_be_substring parameter. +// StringType here can be const char*, const wchar_t*, ::std::string, +// or ::std::wstring. +template +AssertionResult IsSubstringImpl( + bool expected_to_be_substring, + const char* needle_expr, const char* haystack_expr, + const StringType& needle, const StringType& haystack) { + if (IsSubstringPred(needle, haystack) == expected_to_be_substring) + return AssertionSuccess(); + + const bool is_wide_string = sizeof(needle[0]) > 1; + const char* const begin_string_quote = is_wide_string ? "L\"" : "\""; + return AssertionFailure() + << "Value of: " << needle_expr << "\n" + << " Actual: " << begin_string_quote << needle << "\"\n" + << "Expected: " << (expected_to_be_substring ? "" : "not ") + << "a substring of " << haystack_expr << "\n" + << "Which is: " << begin_string_quote << haystack << "\""; +} + +} // namespace + +// IsSubstring() and IsNotSubstring() check whether needle is a +// substring of haystack (NULL is considered a substring of itself +// only), and return an appropriate error message when they fail. + +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const char* needle, const char* haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const wchar_t* needle, const wchar_t* haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const char* needle, const char* haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const wchar_t* needle, const wchar_t* haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::string& needle, const ::std::string& haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::string& needle, const ::std::string& haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} + +#if GTEST_HAS_STD_WSTRING +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::wstring& needle, const ::std::wstring& haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::wstring& needle, const ::std::wstring& haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} +#endif // GTEST_HAS_STD_WSTRING + +namespace internal { + +#if GTEST_OS_WINDOWS + +namespace { + +// Helper function for IsHRESULT{SuccessFailure} predicates +AssertionResult HRESULTFailureHelper(const char* expr, + const char* expected, + long hr) { // NOLINT +# if GTEST_OS_WINDOWS_MOBILE + + // Windows CE doesn't support FormatMessage. + const char error_text[] = ""; + +# else + + // Looks up the human-readable system message for the HRESULT code + // and since we're not passing any params to FormatMessage, we don't + // want inserts expanded. + const DWORD kFlags = FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS; + const DWORD kBufSize = 4096; + // Gets the system's human readable message string for this HRESULT. + char error_text[kBufSize] = { '\0' }; + DWORD message_length = ::FormatMessageA(kFlags, + 0, // no source, we're asking system + hr, // the error + 0, // no line width restrictions + error_text, // output buffer + kBufSize, // buf size + NULL); // no arguments for inserts + // Trims tailing white space (FormatMessage leaves a trailing CR-LF) + for (; message_length && IsSpace(error_text[message_length - 1]); + --message_length) { + error_text[message_length - 1] = '\0'; + } + +# endif // GTEST_OS_WINDOWS_MOBILE + + const std::string error_hex("0x" + String::FormatHexInt(hr)); + return ::testing::AssertionFailure() + << "Expected: " << expr << " " << expected << ".\n" + << " Actual: " << error_hex << " " << error_text << "\n"; +} + +} // namespace + +AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT + if (SUCCEEDED(hr)) { + return AssertionSuccess(); + } + return HRESULTFailureHelper(expr, "succeeds", hr); +} + +AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT + if (FAILED(hr)) { + return AssertionSuccess(); + } + return HRESULTFailureHelper(expr, "fails", hr); +} + +#endif // GTEST_OS_WINDOWS + +// Utility functions for encoding Unicode text (wide strings) in +// UTF-8. + +// A Unicode code-point can have upto 21 bits, and is encoded in UTF-8 +// like this: +// +// Code-point length Encoding +// 0 - 7 bits 0xxxxxxx +// 8 - 11 bits 110xxxxx 10xxxxxx +// 12 - 16 bits 1110xxxx 10xxxxxx 10xxxxxx +// 17 - 21 bits 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx + +// The maximum code-point a one-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint1 = (static_cast(1) << 7) - 1; + +// The maximum code-point a two-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint2 = (static_cast(1) << (5 + 6)) - 1; + +// The maximum code-point a three-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint3 = (static_cast(1) << (4 + 2*6)) - 1; + +// The maximum code-point a four-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint4 = (static_cast(1) << (3 + 3*6)) - 1; + +// Chops off the n lowest bits from a bit pattern. Returns the n +// lowest bits. As a side effect, the original bit pattern will be +// shifted to the right by n bits. +inline UInt32 ChopLowBits(UInt32* bits, int n) { + const UInt32 low_bits = *bits & ((static_cast(1) << n) - 1); + *bits >>= n; + return low_bits; +} + +// Converts a Unicode code point to a narrow string in UTF-8 encoding. +// code_point parameter is of type UInt32 because wchar_t may not be +// wide enough to contain a code point. +// If the code_point is not a valid Unicode code point +// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted +// to "(Invalid Unicode 0xXXXXXXXX)". +std::string CodePointToUtf8(UInt32 code_point) { + if (code_point > kMaxCodePoint4) { + return "(Invalid Unicode 0x" + String::FormatHexInt(code_point) + ")"; + } + + char str[5]; // Big enough for the largest valid code point. + if (code_point <= kMaxCodePoint1) { + str[1] = '\0'; + str[0] = static_cast(code_point); // 0xxxxxxx + } else if (code_point <= kMaxCodePoint2) { + str[2] = '\0'; + str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[0] = static_cast(0xC0 | code_point); // 110xxxxx + } else if (code_point <= kMaxCodePoint3) { + str[3] = '\0'; + str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[0] = static_cast(0xE0 | code_point); // 1110xxxx + } else { // code_point <= kMaxCodePoint4 + str[4] = '\0'; + str[3] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[0] = static_cast(0xF0 | code_point); // 11110xxx + } + return str; +} + +// The following two functions only make sense if the the system +// uses UTF-16 for wide string encoding. All supported systems +// with 16 bit wchar_t (Windows, Cygwin, Symbian OS) do use UTF-16. + +// Determines if the arguments constitute UTF-16 surrogate pair +// and thus should be combined into a single Unicode code point +// using CreateCodePointFromUtf16SurrogatePair. +inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { + return sizeof(wchar_t) == 2 && + (first & 0xFC00) == 0xD800 && (second & 0xFC00) == 0xDC00; +} + +// Creates a Unicode code point from UTF16 surrogate pair. +inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, + wchar_t second) { + const UInt32 mask = (1 << 10) - 1; + return (sizeof(wchar_t) == 2) ? + (((first & mask) << 10) | (second & mask)) + 0x10000 : + // This function should not be called when the condition is + // false, but we provide a sensible default in case it is. + static_cast(first); +} + +// Converts a wide string to a narrow string in UTF-8 encoding. +// The wide string is assumed to have the following encoding: +// UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) +// UTF-32 if sizeof(wchar_t) == 4 (on Linux) +// Parameter str points to a null-terminated wide string. +// Parameter num_chars may additionally limit the number +// of wchar_t characters processed. -1 is used when the entire string +// should be processed. +// If the string contains code points that are not valid Unicode code points +// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output +// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding +// and contains invalid UTF-16 surrogate pairs, values in those pairs +// will be encoded as individual Unicode characters from Basic Normal Plane. +std::string WideStringToUtf8(const wchar_t* str, int num_chars) { + if (num_chars == -1) + num_chars = static_cast(wcslen(str)); + + ::std::stringstream stream; + for (int i = 0; i < num_chars; ++i) { + UInt32 unicode_code_point; + + if (str[i] == L'\0') { + break; + } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) { + unicode_code_point = CreateCodePointFromUtf16SurrogatePair(str[i], + str[i + 1]); + i++; + } else { + unicode_code_point = static_cast(str[i]); + } + + stream << CodePointToUtf8(unicode_code_point); + } + return StringStreamToString(&stream); +} + +// Converts a wide C string to an std::string using the UTF-8 encoding. +// NULL will be converted to "(null)". +std::string String::ShowWideCString(const wchar_t * wide_c_str) { + if (wide_c_str == NULL) return "(null)"; + + return internal::WideStringToUtf8(wide_c_str, -1); +} + +// Compares two wide C strings. Returns true iff they have the same +// content. +// +// Unlike wcscmp(), this function can handle NULL argument(s). A NULL +// C string is considered different to any non-NULL C string, +// including the empty string. +bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) { + if (lhs == NULL) return rhs == NULL; + + if (rhs == NULL) return false; + + return wcscmp(lhs, rhs) == 0; +} + +// Helper function for *_STREQ on wide strings. +AssertionResult CmpHelperSTREQ(const char* expected_expression, + const char* actual_expression, + const wchar_t* expected, + const wchar_t* actual) { + if (String::WideCStringEquals(expected, actual)) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + PrintToString(expected), + PrintToString(actual), + false); +} + +// Helper function for *_STRNE on wide strings. +AssertionResult CmpHelperSTRNE(const char* s1_expression, + const char* s2_expression, + const wchar_t* s1, + const wchar_t* s2) { + if (!String::WideCStringEquals(s1, s2)) { + return AssertionSuccess(); + } + + return AssertionFailure() << "Expected: (" << s1_expression << ") != (" + << s2_expression << "), actual: " + << PrintToString(s1) + << " vs " << PrintToString(s2); +} + +// Compares two C strings, ignoring case. Returns true iff they have +// the same content. +// +// Unlike strcasecmp(), this function can handle NULL argument(s). A +// NULL C string is considered different to any non-NULL C string, +// including the empty string. +bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) { + if (lhs == NULL) + return rhs == NULL; + if (rhs == NULL) + return false; + return posix::StrCaseCmp(lhs, rhs) == 0; +} + + // Compares two wide C strings, ignoring case. Returns true iff they + // have the same content. + // + // Unlike wcscasecmp(), this function can handle NULL argument(s). + // A NULL C string is considered different to any non-NULL wide C string, + // including the empty string. + // NB: The implementations on different platforms slightly differ. + // On windows, this method uses _wcsicmp which compares according to LC_CTYPE + // environment variable. On GNU platform this method uses wcscasecmp + // which compares according to LC_CTYPE category of the current locale. + // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the + // current locale. +bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs, + const wchar_t* rhs) { + if (lhs == NULL) return rhs == NULL; + + if (rhs == NULL) return false; + +#if GTEST_OS_WINDOWS + return _wcsicmp(lhs, rhs) == 0; +#elif GTEST_OS_LINUX && !GTEST_OS_LINUX_ANDROID + return wcscasecmp(lhs, rhs) == 0; +#else + // Android, Mac OS X and Cygwin don't define wcscasecmp. + // Other unknown OSes may not define it either. + wint_t left, right; + do { + left = towlower(*lhs++); + right = towlower(*rhs++); + } while (left && left == right); + return left == right; +#endif // OS selector +} + +// Returns true iff str ends with the given suffix, ignoring case. +// Any string is considered to end with an empty suffix. +bool String::EndsWithCaseInsensitive( + const std::string& str, const std::string& suffix) { + const size_t str_len = str.length(); + const size_t suffix_len = suffix.length(); + return (str_len >= suffix_len) && + CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len, + suffix.c_str()); +} + +// Formats an int value as "%02d". +std::string String::FormatIntWidth2(int value) { + std::stringstream ss; + ss << std::setfill('0') << std::setw(2) << value; + return ss.str(); +} + +// Formats an int value as "%X". +std::string String::FormatHexInt(int value) { + std::stringstream ss; + ss << std::hex << std::uppercase << value; + return ss.str(); +} + +// Formats a byte as "%02X". +std::string String::FormatByte(unsigned char value) { + std::stringstream ss; + ss << std::setfill('0') << std::setw(2) << std::hex << std::uppercase + << static_cast(value); + return ss.str(); +} + +// Converts the buffer in a stringstream to an std::string, converting NUL +// bytes to "\\0" along the way. +std::string StringStreamToString(::std::stringstream* ss) { + const ::std::string& str = ss->str(); + const char* const start = str.c_str(); + const char* const end = start + str.length(); + + std::string result; + result.reserve(2 * (end - start)); + for (const char* ch = start; ch != end; ++ch) { + if (*ch == '\0') { + result += "\\0"; // Replaces NUL with "\\0"; + } else { + result += *ch; + } + } + + return result; +} + +// Appends the user-supplied message to the Google-Test-generated message. +std::string AppendUserMessage(const std::string& gtest_msg, + const Message& user_msg) { + // Appends the user message if it's non-empty. + const std::string user_msg_string = user_msg.GetString(); + if (user_msg_string.empty()) { + return gtest_msg; + } + + return gtest_msg + "\n" + user_msg_string; +} + +} // namespace internal + +// class TestResult + +// Creates an empty TestResult. +TestResult::TestResult() + : death_test_count_(0), + elapsed_time_(0) { +} + +// D'tor. +TestResult::~TestResult() { +} + +// Returns the i-th test part result among all the results. i can +// range from 0 to total_part_count() - 1. If i is not in that range, +// aborts the program. +const TestPartResult& TestResult::GetTestPartResult(int i) const { + if (i < 0 || i >= total_part_count()) + internal::posix::Abort(); + return test_part_results_.at(i); +} + +// Returns the i-th test property. i can range from 0 to +// test_property_count() - 1. If i is not in that range, aborts the +// program. +const TestProperty& TestResult::GetTestProperty(int i) const { + if (i < 0 || i >= test_property_count()) + internal::posix::Abort(); + return test_properties_.at(i); +} + +// Clears the test part results. +void TestResult::ClearTestPartResults() { + test_part_results_.clear(); +} + +// Adds a test part result to the list. +void TestResult::AddTestPartResult(const TestPartResult& test_part_result) { + test_part_results_.push_back(test_part_result); +} + +// Adds a test property to the list. If a property with the same key as the +// supplied property is already represented, the value of this test_property +// replaces the old value for that key. +void TestResult::RecordProperty(const std::string& xml_element, + const TestProperty& test_property) { + if (!ValidateTestProperty(xml_element, test_property)) { + return; + } + internal::MutexLock lock(&test_properites_mutex_); + const std::vector::iterator property_with_matching_key = + std::find_if(test_properties_.begin(), test_properties_.end(), + internal::TestPropertyKeyIs(test_property.key())); + if (property_with_matching_key == test_properties_.end()) { + test_properties_.push_back(test_property); + return; + } + property_with_matching_key->SetValue(test_property.value()); +} + +// The list of reserved attributes used in the element of XML +// output. +static const char* const kReservedTestSuitesAttributes[] = { + "disabled", + "errors", + "failures", + "name", + "random_seed", + "tests", + "time", + "timestamp" +}; + +// The list of reserved attributes used in the element of XML +// output. +static const char* const kReservedTestSuiteAttributes[] = { + "disabled", + "errors", + "failures", + "name", + "tests", + "time" +}; + +// The list of reserved attributes used in the element of XML output. +static const char* const kReservedTestCaseAttributes[] = { + "classname", + "name", + "status", + "time", + "type_param", + "value_param" +}; + +template +std::vector ArrayAsVector(const char* const (&array)[kSize]) { + return std::vector(array, array + kSize); +} + +static std::vector GetReservedAttributesForElement( + const std::string& xml_element) { + if (xml_element == "testsuites") { + return ArrayAsVector(kReservedTestSuitesAttributes); + } else if (xml_element == "testsuite") { + return ArrayAsVector(kReservedTestSuiteAttributes); + } else if (xml_element == "testcase") { + return ArrayAsVector(kReservedTestCaseAttributes); + } else { + GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element; + } + // This code is unreachable but some compilers may not realizes that. + return std::vector(); +} + +static std::string FormatWordList(const std::vector& words) { + Message word_list; + for (size_t i = 0; i < words.size(); ++i) { + if (i > 0 && words.size() > 2) { + word_list << ", "; + } + if (i == words.size() - 1) { + word_list << "and "; + } + word_list << "'" << words[i] << "'"; + } + return word_list.GetString(); +} + +bool ValidateTestPropertyName(const std::string& property_name, + const std::vector& reserved_names) { + if (std::find(reserved_names.begin(), reserved_names.end(), property_name) != + reserved_names.end()) { + ADD_FAILURE() << "Reserved key used in RecordProperty(): " << property_name + << " (" << FormatWordList(reserved_names) + << " are reserved by " << GTEST_NAME_ << ")"; + return false; + } + return true; +} + +// Adds a failure if the key is a reserved attribute of the element named +// xml_element. Returns true if the property is valid. +bool TestResult::ValidateTestProperty(const std::string& xml_element, + const TestProperty& test_property) { + return ValidateTestPropertyName(test_property.key(), + GetReservedAttributesForElement(xml_element)); +} + +// Clears the object. +void TestResult::Clear() { + test_part_results_.clear(); + test_properties_.clear(); + death_test_count_ = 0; + elapsed_time_ = 0; +} + +// Returns true iff the test failed. +bool TestResult::Failed() const { + for (int i = 0; i < total_part_count(); ++i) { + if (GetTestPartResult(i).failed()) + return true; + } + return false; +} + +// Returns true iff the test part fatally failed. +static bool TestPartFatallyFailed(const TestPartResult& result) { + return result.fatally_failed(); +} + +// Returns true iff the test fatally failed. +bool TestResult::HasFatalFailure() const { + return CountIf(test_part_results_, TestPartFatallyFailed) > 0; +} + +// Returns true iff the test part non-fatally failed. +static bool TestPartNonfatallyFailed(const TestPartResult& result) { + return result.nonfatally_failed(); +} + +// Returns true iff the test has a non-fatal failure. +bool TestResult::HasNonfatalFailure() const { + return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0; +} + +// Gets the number of all test parts. This is the sum of the number +// of successful test parts and the number of failed test parts. +int TestResult::total_part_count() const { + return static_cast(test_part_results_.size()); +} + +// Returns the number of the test properties. +int TestResult::test_property_count() const { + return static_cast(test_properties_.size()); +} + +// class Test + +// Creates a Test object. + +// The c'tor saves the values of all Google Test flags. +Test::Test() + : gtest_flag_saver_(new internal::GTestFlagSaver) { +} + +// The d'tor restores the values of all Google Test flags. +Test::~Test() { + delete gtest_flag_saver_; +} + +// Sets up the test fixture. +// +// A sub-class may override this. +void Test::SetUp() { +} + +// Tears down the test fixture. +// +// A sub-class may override this. +void Test::TearDown() { +} + +// Allows user supplied key value pairs to be recorded for later output. +void Test::RecordProperty(const std::string& key, const std::string& value) { + UnitTest::GetInstance()->RecordProperty(key, value); +} + +// Allows user supplied key value pairs to be recorded for later output. +void Test::RecordProperty(const std::string& key, int value) { + Message value_message; + value_message << value; + RecordProperty(key, value_message.GetString().c_str()); +} + +namespace internal { + +void ReportFailureInUnknownLocation(TestPartResult::Type result_type, + const std::string& message) { + // This function is a friend of UnitTest and as such has access to + // AddTestPartResult. + UnitTest::GetInstance()->AddTestPartResult( + result_type, + NULL, // No info about the source file where the exception occurred. + -1, // We have no info on which line caused the exception. + message, + ""); // No stack trace, either. +} + +} // namespace internal + +// Google Test requires all tests in the same test case to use the same test +// fixture class. This function checks if the current test has the +// same fixture class as the first test in the current test case. If +// yes, it returns true; otherwise it generates a Google Test failure and +// returns false. +bool Test::HasSameFixtureClass() { + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + const TestCase* const test_case = impl->current_test_case(); + + // Info about the first test in the current test case. + const TestInfo* const first_test_info = test_case->test_info_list()[0]; + const internal::TypeId first_fixture_id = first_test_info->fixture_class_id_; + const char* const first_test_name = first_test_info->name(); + + // Info about the current test. + const TestInfo* const this_test_info = impl->current_test_info(); + const internal::TypeId this_fixture_id = this_test_info->fixture_class_id_; + const char* const this_test_name = this_test_info->name(); + + if (this_fixture_id != first_fixture_id) { + // Is the first test defined using TEST? + const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId(); + // Is this test defined using TEST? + const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId(); + + if (first_is_TEST || this_is_TEST) { + // The user mixed TEST and TEST_F in this test case - we'll tell + // him/her how to fix it. + + // Gets the name of the TEST and the name of the TEST_F. Note + // that first_is_TEST and this_is_TEST cannot both be true, as + // the fixture IDs are different for the two tests. + const char* const TEST_name = + first_is_TEST ? first_test_name : this_test_name; + const char* const TEST_F_name = + first_is_TEST ? this_test_name : first_test_name; + + ADD_FAILURE() + << "All tests in the same test case must use the same test fixture\n" + << "class, so mixing TEST_F and TEST in the same test case is\n" + << "illegal. In test case " << this_test_info->test_case_name() + << ",\n" + << "test " << TEST_F_name << " is defined using TEST_F but\n" + << "test " << TEST_name << " is defined using TEST. You probably\n" + << "want to change the TEST to TEST_F or move it to another test\n" + << "case."; + } else { + // The user defined two fixture classes with the same name in + // two namespaces - we'll tell him/her how to fix it. + ADD_FAILURE() + << "All tests in the same test case must use the same test fixture\n" + << "class. However, in test case " + << this_test_info->test_case_name() << ",\n" + << "you defined test " << first_test_name + << " and test " << this_test_name << "\n" + << "using two different test fixture classes. This can happen if\n" + << "the two classes are from different namespaces or translation\n" + << "units and have the same name. You should probably rename one\n" + << "of the classes to put the tests into different test cases."; + } + return false; + } + + return true; +} + +#if GTEST_HAS_SEH + +// Adds an "exception thrown" fatal failure to the current test. This +// function returns its result via an output parameter pointer because VC++ +// prohibits creation of objects with destructors on stack in functions +// using __try (see error C2712). +static std::string* FormatSehExceptionMessage(DWORD exception_code, + const char* location) { + Message message; + message << "SEH exception with code 0x" << std::setbase(16) << + exception_code << std::setbase(10) << " thrown in " << location << "."; + + return new std::string(message.GetString()); +} + +#endif // GTEST_HAS_SEH + +namespace internal { + +#if GTEST_HAS_EXCEPTIONS + +// Adds an "exception thrown" fatal failure to the current test. +static std::string FormatCxxExceptionMessage(const char* description, + const char* location) { + Message message; + if (description != NULL) { + message << "C++ exception with description \"" << description << "\""; + } else { + message << "Unknown C++ exception"; + } + message << " thrown in " << location << "."; + + return message.GetString(); +} + +static std::string PrintTestPartResultToString( + const TestPartResult& test_part_result); + +GoogleTestFailureException::GoogleTestFailureException( + const TestPartResult& failure) + : ::std::runtime_error(PrintTestPartResultToString(failure).c_str()) {} + +#endif // GTEST_HAS_EXCEPTIONS + +// We put these helper functions in the internal namespace as IBM's xlC +// compiler rejects the code if they were declared static. + +// Runs the given method and handles SEH exceptions it throws, when +// SEH is supported; returns the 0-value for type Result in case of an +// SEH exception. (Microsoft compilers cannot handle SEH and C++ +// exceptions in the same function. Therefore, we provide a separate +// wrapper function for handling SEH exceptions.) +template +Result HandleSehExceptionsInMethodIfSupported( + T* object, Result (T::*method)(), const char* location) { +#if GTEST_HAS_SEH + __try { + return (object->*method)(); + } __except (internal::UnitTestOptions::GTestShouldProcessSEH( // NOLINT + GetExceptionCode())) { + // We create the exception message on the heap because VC++ prohibits + // creation of objects with destructors on stack in functions using __try + // (see error C2712). + std::string* exception_message = FormatSehExceptionMessage( + GetExceptionCode(), location); + internal::ReportFailureInUnknownLocation(TestPartResult::kFatalFailure, + *exception_message); + delete exception_message; + return static_cast(0); + } +#else + (void)location; + return (object->*method)(); +#endif // GTEST_HAS_SEH +} + +// Runs the given method and catches and reports C++ and/or SEH-style +// exceptions, if they are supported; returns the 0-value for type +// Result in case of an SEH exception. +template +Result HandleExceptionsInMethodIfSupported( + T* object, Result (T::*method)(), const char* location) { + // NOTE: The user code can affect the way in which Google Test handles + // exceptions by setting GTEST_FLAG(catch_exceptions), but only before + // RUN_ALL_TESTS() starts. It is technically possible to check the flag + // after the exception is caught and either report or re-throw the + // exception based on the flag's value: + // + // try { + // // Perform the test method. + // } catch (...) { + // if (GTEST_FLAG(catch_exceptions)) + // // Report the exception as failure. + // else + // throw; // Re-throws the original exception. + // } + // + // However, the purpose of this flag is to allow the program to drop into + // the debugger when the exception is thrown. On most platforms, once the + // control enters the catch block, the exception origin information is + // lost and the debugger will stop the program at the point of the + // re-throw in this function -- instead of at the point of the original + // throw statement in the code under test. For this reason, we perform + // the check early, sacrificing the ability to affect Google Test's + // exception handling in the method where the exception is thrown. + if (internal::GetUnitTestImpl()->catch_exceptions()) { +#if GTEST_HAS_EXCEPTIONS + try { + return HandleSehExceptionsInMethodIfSupported(object, method, location); + } catch (const internal::GoogleTestFailureException&) { // NOLINT + // This exception type can only be thrown by a failed Google + // Test assertion with the intention of letting another testing + // framework catch it. Therefore we just re-throw it. + throw; + } catch (const std::exception& e) { // NOLINT + internal::ReportFailureInUnknownLocation( + TestPartResult::kFatalFailure, + FormatCxxExceptionMessage(e.what(), location)); + } catch (...) { // NOLINT + internal::ReportFailureInUnknownLocation( + TestPartResult::kFatalFailure, + FormatCxxExceptionMessage(NULL, location)); + } + return static_cast(0); +#else + return HandleSehExceptionsInMethodIfSupported(object, method, location); +#endif // GTEST_HAS_EXCEPTIONS + } else { + return (object->*method)(); + } +} + +} // namespace internal + +// Runs the test and updates the test result. +void Test::Run() { + if (!HasSameFixtureClass()) return; + + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported(this, &Test::SetUp, "SetUp()"); + // We will run the test only if SetUp() was successful. + if (!HasFatalFailure()) { + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &Test::TestBody, "the test body"); + } + + // However, we want to clean up as much as possible. Hence we will + // always call TearDown(), even if SetUp() or the test body has + // failed. + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &Test::TearDown, "TearDown()"); +} + +// Returns true iff the current test has a fatal failure. +bool Test::HasFatalFailure() { + return internal::GetUnitTestImpl()->current_test_result()->HasFatalFailure(); +} + +// Returns true iff the current test has a non-fatal failure. +bool Test::HasNonfatalFailure() { + return internal::GetUnitTestImpl()->current_test_result()-> + HasNonfatalFailure(); +} + +// class TestInfo + +// Constructs a TestInfo object. It assumes ownership of the test factory +// object. +TestInfo::TestInfo(const std::string& a_test_case_name, + const std::string& a_name, + const char* a_type_param, + const char* a_value_param, + internal::TypeId fixture_class_id, + internal::TestFactoryBase* factory) + : test_case_name_(a_test_case_name), + name_(a_name), + type_param_(a_type_param ? new std::string(a_type_param) : NULL), + value_param_(a_value_param ? new std::string(a_value_param) : NULL), + fixture_class_id_(fixture_class_id), + should_run_(false), + is_disabled_(false), + matches_filter_(false), + factory_(factory), + result_() {} + +// Destructs a TestInfo object. +TestInfo::~TestInfo() { delete factory_; } + +namespace internal { + +// Creates a new TestInfo object and registers it with Google Test; +// returns the created object. +// +// Arguments: +// +// test_case_name: name of the test case +// name: name of the test +// type_param: the name of the test's type parameter, or NULL if +// this is not a typed or a type-parameterized test. +// value_param: text representation of the test's value parameter, +// or NULL if this is not a value-parameterized test. +// fixture_class_id: ID of the test fixture class +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +// factory: pointer to the factory that creates a test object. +// The newly created TestInfo instance will assume +// ownership of the factory object. +TestInfo* MakeAndRegisterTestInfo( + const char* test_case_name, + const char* name, + const char* type_param, + const char* value_param, + TypeId fixture_class_id, + SetUpTestCaseFunc set_up_tc, + TearDownTestCaseFunc tear_down_tc, + TestFactoryBase* factory) { + TestInfo* const test_info = + new TestInfo(test_case_name, name, type_param, value_param, + fixture_class_id, factory); + GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info); + return test_info; +} + +#if GTEST_HAS_PARAM_TEST +void ReportInvalidTestCaseType(const char* test_case_name, + const char* file, int line) { + Message errors; + errors + << "Attempted redefinition of test case " << test_case_name << ".\n" + << "All tests in the same test case must use the same test fixture\n" + << "class. However, in test case " << test_case_name << ", you tried\n" + << "to define a test using a fixture class different from the one\n" + << "used earlier. This can happen if the two fixture classes are\n" + << "from different namespaces and have the same name. You should\n" + << "probably rename one of the classes to put the tests into different\n" + << "test cases."; + + fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), + errors.GetString().c_str()); +} +#endif // GTEST_HAS_PARAM_TEST + +} // namespace internal + +namespace { + +// A predicate that checks the test name of a TestInfo against a known +// value. +// +// This is used for implementation of the TestCase class only. We put +// it in the anonymous namespace to prevent polluting the outer +// namespace. +// +// TestNameIs is copyable. +class TestNameIs { + public: + // Constructor. + // + // TestNameIs has NO default constructor. + explicit TestNameIs(const char* name) + : name_(name) {} + + // Returns true iff the test name of test_info matches name_. + bool operator()(const TestInfo * test_info) const { + return test_info && test_info->name() == name_; + } + + private: + std::string name_; +}; + +} // namespace + +namespace internal { + +// This method expands all parameterized tests registered with macros TEST_P +// and INSTANTIATE_TEST_CASE_P into regular tests and registers those. +// This will be done just once during the program runtime. +void UnitTestImpl::RegisterParameterizedTests() { +#if GTEST_HAS_PARAM_TEST + if (!parameterized_tests_registered_) { + parameterized_test_registry_.RegisterTests(); + parameterized_tests_registered_ = true; + } +#endif +} + +} // namespace internal + +// Creates the test object, runs it, records its result, and then +// deletes it. +void TestInfo::Run() { + if (!should_run_) return; + + // Tells UnitTest where to store test result. + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + impl->set_current_test_info(this); + + TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); + + // Notifies the unit test event listeners that a test is about to start. + repeater->OnTestStart(*this); + + const TimeInMillis start = internal::GetTimeInMillis(); + + impl->os_stack_trace_getter()->UponLeavingGTest(); + + // Creates the test object. + Test* const test = internal::HandleExceptionsInMethodIfSupported( + factory_, &internal::TestFactoryBase::CreateTest, + "the test fixture's constructor"); + + // Runs the test only if the test object was created and its + // constructor didn't generate a fatal failure. + if ((test != NULL) && !Test::HasFatalFailure()) { + // This doesn't throw as all user code that can throw are wrapped into + // exception handling code. + test->Run(); + } + + // Deletes the test object. + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + test, &Test::DeleteSelf_, "the test fixture's destructor"); + + result_.set_elapsed_time(internal::GetTimeInMillis() - start); + + // Notifies the unit test event listener that a test has just finished. + repeater->OnTestEnd(*this); + + // Tells UnitTest to stop associating assertion results to this + // test. + impl->set_current_test_info(NULL); +} + +// class TestCase + +// Gets the number of successful tests in this test case. +int TestCase::successful_test_count() const { + return CountIf(test_info_list_, TestPassed); +} + +// Gets the number of failed tests in this test case. +int TestCase::failed_test_count() const { + return CountIf(test_info_list_, TestFailed); +} + +// Gets the number of disabled tests that will be reported in the XML report. +int TestCase::reportable_disabled_test_count() const { + return CountIf(test_info_list_, TestReportableDisabled); +} + +// Gets the number of disabled tests in this test case. +int TestCase::disabled_test_count() const { + return CountIf(test_info_list_, TestDisabled); +} + +// Gets the number of tests to be printed in the XML report. +int TestCase::reportable_test_count() const { + return CountIf(test_info_list_, TestReportable); +} + +// Get the number of tests in this test case that should run. +int TestCase::test_to_run_count() const { + return CountIf(test_info_list_, ShouldRunTest); +} + +// Gets the number of all tests. +int TestCase::total_test_count() const { + return static_cast(test_info_list_.size()); +} + +// Creates a TestCase with the given name. +// +// Arguments: +// +// name: name of the test case +// a_type_param: the name of the test case's type parameter, or NULL if +// this is not a typed or a type-parameterized test case. +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +TestCase::TestCase(const char* a_name, const char* a_type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc) + : name_(a_name), + type_param_(a_type_param ? new std::string(a_type_param) : NULL), + set_up_tc_(set_up_tc), + tear_down_tc_(tear_down_tc), + should_run_(false), + elapsed_time_(0) { +} + +// Destructor of TestCase. +TestCase::~TestCase() { + // Deletes every Test in the collection. + ForEach(test_info_list_, internal::Delete); +} + +// Returns the i-th test among all the tests. i can range from 0 to +// total_test_count() - 1. If i is not in that range, returns NULL. +const TestInfo* TestCase::GetTestInfo(int i) const { + const int index = GetElementOr(test_indices_, i, -1); + return index < 0 ? NULL : test_info_list_[index]; +} + +// Returns the i-th test among all the tests. i can range from 0 to +// total_test_count() - 1. If i is not in that range, returns NULL. +TestInfo* TestCase::GetMutableTestInfo(int i) { + const int index = GetElementOr(test_indices_, i, -1); + return index < 0 ? NULL : test_info_list_[index]; +} + +// Adds a test to this test case. Will delete the test upon +// destruction of the TestCase object. +void TestCase::AddTestInfo(TestInfo * test_info) { + test_info_list_.push_back(test_info); + test_indices_.push_back(static_cast(test_indices_.size())); +} + +// Runs every test in this TestCase. +void TestCase::Run() { + if (!should_run_) return; + + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + impl->set_current_test_case(this); + + TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); + + repeater->OnTestCaseStart(*this); + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &TestCase::RunSetUpTestCase, "SetUpTestCase()"); + + const internal::TimeInMillis start = internal::GetTimeInMillis(); + for (int i = 0; i < total_test_count(); i++) { + GetMutableTestInfo(i)->Run(); + } + elapsed_time_ = internal::GetTimeInMillis() - start; + + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &TestCase::RunTearDownTestCase, "TearDownTestCase()"); + + repeater->OnTestCaseEnd(*this); + impl->set_current_test_case(NULL); +} + +// Clears the results of all tests in this test case. +void TestCase::ClearResult() { + ad_hoc_test_result_.Clear(); + ForEach(test_info_list_, TestInfo::ClearTestResult); +} + +// Shuffles the tests in this test case. +void TestCase::ShuffleTests(internal::Random* random) { + Shuffle(random, &test_indices_); +} + +// Restores the test order to before the first shuffle. +void TestCase::UnshuffleTests() { + for (size_t i = 0; i < test_indices_.size(); i++) { + test_indices_[i] = static_cast(i); + } +} + +// Formats a countable noun. Depending on its quantity, either the +// singular form or the plural form is used. e.g. +// +// FormatCountableNoun(1, "formula", "formuli") returns "1 formula". +// FormatCountableNoun(5, "book", "books") returns "5 books". +static std::string FormatCountableNoun(int count, + const char * singular_form, + const char * plural_form) { + return internal::StreamableToString(count) + " " + + (count == 1 ? singular_form : plural_form); +} + +// Formats the count of tests. +static std::string FormatTestCount(int test_count) { + return FormatCountableNoun(test_count, "test", "tests"); +} + +// Formats the count of test cases. +static std::string FormatTestCaseCount(int test_case_count) { + return FormatCountableNoun(test_case_count, "test case", "test cases"); +} + +// Converts a TestPartResult::Type enum to human-friendly string +// representation. Both kNonFatalFailure and kFatalFailure are translated +// to "Failure", as the user usually doesn't care about the difference +// between the two when viewing the test result. +static const char * TestPartResultTypeToString(TestPartResult::Type type) { + switch (type) { + case TestPartResult::kSuccess: + return "Success"; + + case TestPartResult::kNonFatalFailure: + case TestPartResult::kFatalFailure: +#ifdef _MSC_VER + return "error: "; +#else + return "Failure\n"; +#endif + default: + return "Unknown result type"; + } +} + +namespace internal { + +// Prints a TestPartResult to an std::string. +static std::string PrintTestPartResultToString( + const TestPartResult& test_part_result) { + return (Message() + << internal::FormatFileLocation(test_part_result.file_name(), + test_part_result.line_number()) + << " " << TestPartResultTypeToString(test_part_result.type()) + << test_part_result.message()).GetString(); +} + +// Prints a TestPartResult. +static void PrintTestPartResult(const TestPartResult& test_part_result) { + const std::string& result = + PrintTestPartResultToString(test_part_result); + printf("%s\n", result.c_str()); + fflush(stdout); + // If the test program runs in Visual Studio or a debugger, the + // following statements add the test part result message to the Output + // window such that the user can double-click on it to jump to the + // corresponding source code location; otherwise they do nothing. +#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + // We don't call OutputDebugString*() on Windows Mobile, as printing + // to stdout is done by OutputDebugString() there already - we don't + // want the same message printed twice. + ::OutputDebugStringA(result.c_str()); + ::OutputDebugStringA("\n"); +#endif +} + +// class PrettyUnitTestResultPrinter + +enum GTestColor { + COLOR_DEFAULT, + COLOR_RED, + COLOR_GREEN, + COLOR_YELLOW +}; + +#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + +// Returns the character attribute for the given color. +WORD GetColorAttribute(GTestColor color) { + switch (color) { + case COLOR_RED: return FOREGROUND_RED; + case COLOR_GREEN: return FOREGROUND_GREEN; + case COLOR_YELLOW: return FOREGROUND_RED | FOREGROUND_GREEN; + default: return 0; + } +} + +#else + +// Returns the ANSI color code for the given color. COLOR_DEFAULT is +// an invalid input. +const char* GetAnsiColorCode(GTestColor color) { + switch (color) { + case COLOR_RED: return "1"; + case COLOR_GREEN: return "2"; + case COLOR_YELLOW: return "3"; + default: return NULL; + }; +} + +#endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + +// Returns true iff Google Test should use colors in the output. +bool ShouldUseColor(bool stdout_is_tty) { + const char* const gtest_color = GTEST_FLAG(color).c_str(); + + if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { +#if GTEST_OS_WINDOWS + // On Windows the TERM variable is usually not set, but the + // console there does support colors. + return stdout_is_tty; +#else + // On non-Windows platforms, we rely on the TERM variable. + const char* const term = posix::GetEnv("TERM"); + const bool term_supports_color = + String::CStringEquals(term, "xterm") || + String::CStringEquals(term, "xterm-color") || + String::CStringEquals(term, "xterm-256color") || + String::CStringEquals(term, "screen") || + String::CStringEquals(term, "screen-256color") || + String::CStringEquals(term, "linux") || + String::CStringEquals(term, "cygwin"); + return stdout_is_tty && term_supports_color; +#endif // GTEST_OS_WINDOWS + } + + return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || + String::CaseInsensitiveCStringEquals(gtest_color, "true") || + String::CaseInsensitiveCStringEquals(gtest_color, "t") || + String::CStringEquals(gtest_color, "1"); + // We take "yes", "true", "t", and "1" as meaning "yes". If the + // value is neither one of these nor "auto", we treat it as "no" to + // be conservative. +} + +// Helpers for printing colored strings to stdout. Note that on Windows, we +// cannot simply emit special characters and have the terminal change colors. +// This routine must actually emit the characters rather than return a string +// that would be colored when printed, as can be done on Linux. +void ColoredPrintf(GTestColor color, const char* fmt, ...) { + va_list args; + va_start(args, fmt); + +#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS || GTEST_OS_IOS + const bool use_color = false; +#else + static const bool in_color_mode = + ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); + const bool use_color = in_color_mode && (color != COLOR_DEFAULT); +#endif // GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS + // The '!= 0' comparison is necessary to satisfy MSVC 7.1. + + if (!use_color) { + vprintf(fmt, args); + va_end(args); + return; + } + +#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + const HANDLE stdout_handle = GetStdHandle(STD_OUTPUT_HANDLE); + + // Gets the current text color. + CONSOLE_SCREEN_BUFFER_INFO buffer_info; + GetConsoleScreenBufferInfo(stdout_handle, &buffer_info); + const WORD old_color_attrs = buffer_info.wAttributes; + + // We need to flush the stream buffers into the console before each + // SetConsoleTextAttribute call lest it affect the text that is already + // printed but has not yet reached the console. + fflush(stdout); + SetConsoleTextAttribute(stdout_handle, + GetColorAttribute(color) | FOREGROUND_INTENSITY); + vprintf(fmt, args); + + fflush(stdout); + // Restores the text color. + SetConsoleTextAttribute(stdout_handle, old_color_attrs); +#else + printf("\033[0;3%sm", GetAnsiColorCode(color)); + vprintf(fmt, args); + printf("\033[m"); // Resets the terminal to default. +#endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + va_end(args); +} + +// Text printed in Google Test's text output and --gunit_list_tests +// output to label the type parameter and value parameter for a test. +static const char kTypeParamLabel[] = "TypeParam"; +static const char kValueParamLabel[] = "GetParam()"; + +void PrintFullTestCommentIfPresent(const TestInfo& test_info) { + const char* const type_param = test_info.type_param(); + const char* const value_param = test_info.value_param(); + + if (type_param != NULL || value_param != NULL) { + printf(", where "); + if (type_param != NULL) { + printf("%s = %s", kTypeParamLabel, type_param); + if (value_param != NULL) + printf(" and "); + } + if (value_param != NULL) { + printf("%s = %s", kValueParamLabel, value_param); + } + } +} + +// This class implements the TestEventListener interface. +// +// Class PrettyUnitTestResultPrinter is copyable. +class PrettyUnitTestResultPrinter : public TestEventListener { + public: + PrettyUnitTestResultPrinter() {} + static void PrintTestName(const char * test_case, const char * test) { + printf("%s.%s", test_case, test); + } + + // The following methods override what's in the TestEventListener class. + virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} + virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); + virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); + virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} + virtual void OnTestCaseStart(const TestCase& test_case); + virtual void OnTestStart(const TestInfo& test_info); + virtual void OnTestPartResult(const TestPartResult& result); + virtual void OnTestEnd(const TestInfo& test_info); + virtual void OnTestCaseEnd(const TestCase& test_case); + virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); + virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} + virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); + virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} + + private: + static void PrintFailedTests(const UnitTest& unit_test); +}; + + // Fired before each iteration of tests starts. +void PrettyUnitTestResultPrinter::OnTestIterationStart( + const UnitTest& unit_test, int iteration) { + if (GTEST_FLAG(repeat) != 1) + printf("\nRepeating all tests (iteration %d) . . .\n\n", iteration + 1); + + const char* const filter = GTEST_FLAG(filter).c_str(); + + // Prints the filter if it's not *. This reminds the user that some + // tests may be skipped. + if (!String::CStringEquals(filter, kUniversalFilter)) { + ColoredPrintf(COLOR_YELLOW, + "Note: %s filter = %s\n", GTEST_NAME_, filter); + } + + if (internal::ShouldShard(kTestTotalShards, kTestShardIndex, false)) { + const Int32 shard_index = Int32FromEnvOrDie(kTestShardIndex, -1); + ColoredPrintf(COLOR_YELLOW, + "Note: This is test shard %d of %s.\n", + static_cast(shard_index) + 1, + internal::posix::GetEnv(kTestTotalShards)); + } + + if (GTEST_FLAG(shuffle)) { + ColoredPrintf(COLOR_YELLOW, + "Note: Randomizing tests' orders with a seed of %d .\n", + unit_test.random_seed()); + } + + ColoredPrintf(COLOR_GREEN, "[==========] "); + printf("Running %s from %s.\n", + FormatTestCount(unit_test.test_to_run_count()).c_str(), + FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart( + const UnitTest& /*unit_test*/) { + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("Global test environment set-up.\n"); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) { + const std::string counts = + FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("%s from %s", counts.c_str(), test_case.name()); + if (test_case.type_param() == NULL) { + printf("\n"); + } else { + printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); + } + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) { + ColoredPrintf(COLOR_GREEN, "[ RUN ] "); + PrintTestName(test_info.test_case_name(), test_info.name()); + printf("\n"); + fflush(stdout); +} + +// Called after an assertion failure. +void PrettyUnitTestResultPrinter::OnTestPartResult( + const TestPartResult& result) { + // If the test part succeeded, we don't need to do anything. + if (result.type() == TestPartResult::kSuccess) + return; + + // Print failure message from the assertion (e.g. expected this and got that). + PrintTestPartResult(result); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) { + if (test_info.result()->Passed()) { + ColoredPrintf(COLOR_GREEN, "[ OK ] "); + } else { + ColoredPrintf(COLOR_RED, "[ FAILED ] "); + } + PrintTestName(test_info.test_case_name(), test_info.name()); + if (test_info.result()->Failed()) + PrintFullTestCommentIfPresent(test_info); + + if (GTEST_FLAG(print_time)) { + printf(" (%s ms)\n", internal::StreamableToString( + test_info.result()->elapsed_time()).c_str()); + } else { + printf("\n"); + } + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) { + if (!GTEST_FLAG(print_time)) return; + + const std::string counts = + FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("%s from %s (%s ms total)\n\n", + counts.c_str(), test_case.name(), + internal::StreamableToString(test_case.elapsed_time()).c_str()); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart( + const UnitTest& /*unit_test*/) { + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("Global test environment tear-down\n"); + fflush(stdout); +} + +// Internal helper for printing the list of failed tests. +void PrettyUnitTestResultPrinter::PrintFailedTests(const UnitTest& unit_test) { + const int failed_test_count = unit_test.failed_test_count(); + if (failed_test_count == 0) { + return; + } + + for (int i = 0; i < unit_test.total_test_case_count(); ++i) { + const TestCase& test_case = *unit_test.GetTestCase(i); + if (!test_case.should_run() || (test_case.failed_test_count() == 0)) { + continue; + } + for (int j = 0; j < test_case.total_test_count(); ++j) { + const TestInfo& test_info = *test_case.GetTestInfo(j); + if (!test_info.should_run() || test_info.result()->Passed()) { + continue; + } + ColoredPrintf(COLOR_RED, "[ FAILED ] "); + printf("%s.%s", test_case.name(), test_info.name()); + PrintFullTestCommentIfPresent(test_info); + printf("\n"); + } + } +} + +void PrettyUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, + int /*iteration*/) { + ColoredPrintf(COLOR_GREEN, "[==========] "); + printf("%s from %s ran.", + FormatTestCount(unit_test.test_to_run_count()).c_str(), + FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); + if (GTEST_FLAG(print_time)) { + printf(" (%s ms total)", + internal::StreamableToString(unit_test.elapsed_time()).c_str()); + } + printf("\n"); + ColoredPrintf(COLOR_GREEN, "[ PASSED ] "); + printf("%s.\n", FormatTestCount(unit_test.successful_test_count()).c_str()); + + int num_failures = unit_test.failed_test_count(); + if (!unit_test.Passed()) { + const int failed_test_count = unit_test.failed_test_count(); + ColoredPrintf(COLOR_RED, "[ FAILED ] "); + printf("%s, listed below:\n", FormatTestCount(failed_test_count).c_str()); + PrintFailedTests(unit_test); + printf("\n%2d FAILED %s\n", num_failures, + num_failures == 1 ? "TEST" : "TESTS"); + } + + int num_disabled = unit_test.reportable_disabled_test_count(); + if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) { + if (!num_failures) { + printf("\n"); // Add a spacer if no FAILURE banner is displayed. + } + ColoredPrintf(COLOR_YELLOW, + " YOU HAVE %d DISABLED %s\n\n", + num_disabled, + num_disabled == 1 ? "TEST" : "TESTS"); + } + // Ensure that Google Test output is printed before, e.g., heapchecker output. + fflush(stdout); +} + +// End PrettyUnitTestResultPrinter + +// class TestEventRepeater +// +// This class forwards events to other event listeners. +class TestEventRepeater : public TestEventListener { + public: + TestEventRepeater() : forwarding_enabled_(true) {} + virtual ~TestEventRepeater(); + void Append(TestEventListener *listener); + TestEventListener* Release(TestEventListener* listener); + + // Controls whether events will be forwarded to listeners_. Set to false + // in death test child processes. + bool forwarding_enabled() const { return forwarding_enabled_; } + void set_forwarding_enabled(bool enable) { forwarding_enabled_ = enable; } + + virtual void OnTestProgramStart(const UnitTest& unit_test); + virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); + virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); + virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test); + virtual void OnTestCaseStart(const TestCase& test_case); + virtual void OnTestStart(const TestInfo& test_info); + virtual void OnTestPartResult(const TestPartResult& result); + virtual void OnTestEnd(const TestInfo& test_info); + virtual void OnTestCaseEnd(const TestCase& test_case); + virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); + virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test); + virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); + virtual void OnTestProgramEnd(const UnitTest& unit_test); + + private: + // Controls whether events will be forwarded to listeners_. Set to false + // in death test child processes. + bool forwarding_enabled_; + // The list of listeners that receive events. + std::vector listeners_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventRepeater); +}; + +TestEventRepeater::~TestEventRepeater() { + ForEach(listeners_, Delete); +} + +void TestEventRepeater::Append(TestEventListener *listener) { + listeners_.push_back(listener); +} + +// TODO(vladl@google.com): Factor the search functionality into Vector::Find. +TestEventListener* TestEventRepeater::Release(TestEventListener *listener) { + for (size_t i = 0; i < listeners_.size(); ++i) { + if (listeners_[i] == listener) { + listeners_.erase(listeners_.begin() + i); + return listener; + } + } + + return NULL; +} + +// Since most methods are very similar, use macros to reduce boilerplate. +// This defines a member that forwards the call to all listeners. +#define GTEST_REPEATER_METHOD_(Name, Type) \ +void TestEventRepeater::Name(const Type& parameter) { \ + if (forwarding_enabled_) { \ + for (size_t i = 0; i < listeners_.size(); i++) { \ + listeners_[i]->Name(parameter); \ + } \ + } \ +} +// This defines a member that forwards the call to all listeners in reverse +// order. +#define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \ +void TestEventRepeater::Name(const Type& parameter) { \ + if (forwarding_enabled_) { \ + for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { \ + listeners_[i]->Name(parameter); \ + } \ + } \ +} + +GTEST_REPEATER_METHOD_(OnTestProgramStart, UnitTest) +GTEST_REPEATER_METHOD_(OnEnvironmentsSetUpStart, UnitTest) +GTEST_REPEATER_METHOD_(OnTestCaseStart, TestCase) +GTEST_REPEATER_METHOD_(OnTestStart, TestInfo) +GTEST_REPEATER_METHOD_(OnTestPartResult, TestPartResult) +GTEST_REPEATER_METHOD_(OnEnvironmentsTearDownStart, UnitTest) +GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsSetUpEnd, UnitTest) +GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsTearDownEnd, UnitTest) +GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo) +GTEST_REVERSE_REPEATER_METHOD_(OnTestCaseEnd, TestCase) +GTEST_REVERSE_REPEATER_METHOD_(OnTestProgramEnd, UnitTest) + +#undef GTEST_REPEATER_METHOD_ +#undef GTEST_REVERSE_REPEATER_METHOD_ + +void TestEventRepeater::OnTestIterationStart(const UnitTest& unit_test, + int iteration) { + if (forwarding_enabled_) { + for (size_t i = 0; i < listeners_.size(); i++) { + listeners_[i]->OnTestIterationStart(unit_test, iteration); + } + } +} + +void TestEventRepeater::OnTestIterationEnd(const UnitTest& unit_test, + int iteration) { + if (forwarding_enabled_) { + for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { + listeners_[i]->OnTestIterationEnd(unit_test, iteration); + } + } +} + +// End TestEventRepeater + +// This class generates an XML output file. +class XmlUnitTestResultPrinter : public EmptyTestEventListener { + public: + explicit XmlUnitTestResultPrinter(const char* output_file); + + virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); + + private: + // Is c a whitespace character that is normalized to a space character + // when it appears in an XML attribute value? + static bool IsNormalizableWhitespace(char c) { + return c == 0x9 || c == 0xA || c == 0xD; + } + + // May c appear in a well-formed XML document? + static bool IsValidXmlCharacter(char c) { + return IsNormalizableWhitespace(c) || c >= 0x20; + } + + // Returns an XML-escaped copy of the input string str. If + // is_attribute is true, the text is meant to appear as an attribute + // value, and normalizable whitespace is preserved by replacing it + // with character references. + static std::string EscapeXml(const std::string& str, bool is_attribute); + + // Returns the given string with all characters invalid in XML removed. + static std::string RemoveInvalidXmlCharacters(const std::string& str); + + // Convenience wrapper around EscapeXml when str is an attribute value. + static std::string EscapeXmlAttribute(const std::string& str) { + return EscapeXml(str, true); + } + + // Convenience wrapper around EscapeXml when str is not an attribute value. + static std::string EscapeXmlText(const char* str) { + return EscapeXml(str, false); + } + + // Verifies that the given attribute belongs to the given element and + // streams the attribute as XML. + static void OutputXmlAttribute(std::ostream* stream, + const std::string& element_name, + const std::string& name, + const std::string& value); + + // Streams an XML CDATA section, escaping invalid CDATA sequences as needed. + static void OutputXmlCDataSection(::std::ostream* stream, const char* data); + + // Streams an XML representation of a TestInfo object. + static void OutputXmlTestInfo(::std::ostream* stream, + const char* test_case_name, + const TestInfo& test_info); + + // Prints an XML representation of a TestCase object + static void PrintXmlTestCase(::std::ostream* stream, + const TestCase& test_case); + + // Prints an XML summary of unit_test to output stream out. + static void PrintXmlUnitTest(::std::ostream* stream, + const UnitTest& unit_test); + + // Produces a string representing the test properties in a result as space + // delimited XML attributes based on the property key="value" pairs. + // When the std::string is not empty, it includes a space at the beginning, + // to delimit this attribute from prior attributes. + static std::string TestPropertiesAsXmlAttributes(const TestResult& result); + + // The output file. + const std::string output_file_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(XmlUnitTestResultPrinter); +}; + +// Creates a new XmlUnitTestResultPrinter. +XmlUnitTestResultPrinter::XmlUnitTestResultPrinter(const char* output_file) + : output_file_(output_file) { + if (output_file_.c_str() == NULL || output_file_.empty()) { + fprintf(stderr, "XML output file may not be null\n"); + fflush(stderr); + exit(EXIT_FAILURE); + } +} + +// Called after the unit test ends. +void XmlUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, + int /*iteration*/) { + FILE* xmlout = NULL; + FilePath output_file(output_file_); + FilePath output_dir(output_file.RemoveFileName()); + + if (output_dir.CreateDirectoriesRecursively()) { + xmlout = posix::FOpen(output_file_.c_str(), "w"); + } + if (xmlout == NULL) { + // TODO(wan): report the reason of the failure. + // + // We don't do it for now as: + // + // 1. There is no urgent need for it. + // 2. It's a bit involved to make the errno variable thread-safe on + // all three operating systems (Linux, Windows, and Mac OS). + // 3. To interpret the meaning of errno in a thread-safe way, + // we need the strerror_r() function, which is not available on + // Windows. + fprintf(stderr, + "Unable to open file \"%s\"\n", + output_file_.c_str()); + fflush(stderr); + exit(EXIT_FAILURE); + } + std::stringstream stream; + PrintXmlUnitTest(&stream, unit_test); + fprintf(xmlout, "%s", StringStreamToString(&stream).c_str()); + fclose(xmlout); +} + +// Returns an XML-escaped copy of the input string str. If is_attribute +// is true, the text is meant to appear as an attribute value, and +// normalizable whitespace is preserved by replacing it with character +// references. +// +// Invalid XML characters in str, if any, are stripped from the output. +// It is expected that most, if not all, of the text processed by this +// module will consist of ordinary English text. +// If this module is ever modified to produce version 1.1 XML output, +// most invalid characters can be retained using character references. +// TODO(wan): It might be nice to have a minimally invasive, human-readable +// escaping scheme for invalid characters, rather than dropping them. +std::string XmlUnitTestResultPrinter::EscapeXml( + const std::string& str, bool is_attribute) { + Message m; + + for (size_t i = 0; i < str.size(); ++i) { + const char ch = str[i]; + switch (ch) { + case '<': + m << "<"; + break; + case '>': + m << ">"; + break; + case '&': + m << "&"; + break; + case '\'': + if (is_attribute) + m << "'"; + else + m << '\''; + break; + case '"': + if (is_attribute) + m << """; + else + m << '"'; + break; + default: + if (IsValidXmlCharacter(ch)) { + if (is_attribute && IsNormalizableWhitespace(ch)) + m << "&#x" << String::FormatByte(static_cast(ch)) + << ";"; + else + m << ch; + } + break; + } + } + + return m.GetString(); +} + +// Returns the given string with all characters invalid in XML removed. +// Currently invalid characters are dropped from the string. An +// alternative is to replace them with certain characters such as . or ?. +std::string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters( + const std::string& str) { + std::string output; + output.reserve(str.size()); + for (std::string::const_iterator it = str.begin(); it != str.end(); ++it) + if (IsValidXmlCharacter(*it)) + output.push_back(*it); + + return output; +} + +// The following routines generate an XML representation of a UnitTest +// object. +// +// This is how Google Test concepts map to the DTD: +// +// <-- corresponds to a UnitTest object +// <-- corresponds to a TestCase object +// <-- corresponds to a TestInfo object +// ... +// ... +// ... +// <-- individual assertion failures +// +// +// + +// Formats the given time in milliseconds as seconds. +std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { + ::std::stringstream ss; + ss << ms/1000.0; + return ss.str(); +} + +// Converts the given epoch time in milliseconds to a date string in the ISO +// 8601 format, without the timezone information. +std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms) { + // Using non-reentrant version as localtime_r is not portable. + time_t seconds = static_cast(ms / 1000); +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4996) // Temporarily disables warning 4996 + // (function or variable may be unsafe). + const struct tm* const time_struct = localtime(&seconds); // NOLINT +# pragma warning(pop) // Restores the warning state again. +#else + const struct tm* const time_struct = localtime(&seconds); // NOLINT +#endif + if (time_struct == NULL) + return ""; // Invalid ms value + + // YYYY-MM-DDThh:mm:ss + return StreamableToString(time_struct->tm_year + 1900) + "-" + + String::FormatIntWidth2(time_struct->tm_mon + 1) + "-" + + String::FormatIntWidth2(time_struct->tm_mday) + "T" + + String::FormatIntWidth2(time_struct->tm_hour) + ":" + + String::FormatIntWidth2(time_struct->tm_min) + ":" + + String::FormatIntWidth2(time_struct->tm_sec); +} + +// Streams an XML CDATA section, escaping invalid CDATA sequences as needed. +void XmlUnitTestResultPrinter::OutputXmlCDataSection(::std::ostream* stream, + const char* data) { + const char* segment = data; + *stream << ""); + if (next_segment != NULL) { + stream->write( + segment, static_cast(next_segment - segment)); + *stream << "]]>]]>"); + } else { + *stream << segment; + break; + } + } + *stream << "]]>"; +} + +void XmlUnitTestResultPrinter::OutputXmlAttribute( + std::ostream* stream, + const std::string& element_name, + const std::string& name, + const std::string& value) { + const std::vector& allowed_names = + GetReservedAttributesForElement(element_name); + + GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) != + allowed_names.end()) + << "Attribute " << name << " is not allowed for element <" << element_name + << ">."; + + *stream << " " << name << "=\"" << EscapeXmlAttribute(value) << "\""; +} + +// Prints an XML representation of a TestInfo object. +// TODO(wan): There is also value in printing properties with the plain printer. +void XmlUnitTestResultPrinter::OutputXmlTestInfo(::std::ostream* stream, + const char* test_case_name, + const TestInfo& test_info) { + const TestResult& result = *test_info.result(); + const std::string kTestcase = "testcase"; + + *stream << " \n"; + } + const string location = internal::FormatCompilerIndependentFileLocation( + part.file_name(), part.line_number()); + const string summary = location + "\n" + part.summary(); + *stream << " "; + const string detail = location + "\n" + part.message(); + OutputXmlCDataSection(stream, RemoveInvalidXmlCharacters(detail).c_str()); + *stream << "\n"; + } + } + + if (failures == 0) + *stream << " />\n"; + else + *stream << " \n"; +} + +// Prints an XML representation of a TestCase object +void XmlUnitTestResultPrinter::PrintXmlTestCase(std::ostream* stream, + const TestCase& test_case) { + const std::string kTestsuite = "testsuite"; + *stream << " <" << kTestsuite; + OutputXmlAttribute(stream, kTestsuite, "name", test_case.name()); + OutputXmlAttribute(stream, kTestsuite, "tests", + StreamableToString(test_case.reportable_test_count())); + OutputXmlAttribute(stream, kTestsuite, "failures", + StreamableToString(test_case.failed_test_count())); + OutputXmlAttribute( + stream, kTestsuite, "disabled", + StreamableToString(test_case.reportable_disabled_test_count())); + OutputXmlAttribute(stream, kTestsuite, "errors", "0"); + OutputXmlAttribute(stream, kTestsuite, "time", + FormatTimeInMillisAsSeconds(test_case.elapsed_time())); + *stream << TestPropertiesAsXmlAttributes(test_case.ad_hoc_test_result()) + << ">\n"; + + for (int i = 0; i < test_case.total_test_count(); ++i) { + if (test_case.GetTestInfo(i)->is_reportable()) + OutputXmlTestInfo(stream, test_case.name(), *test_case.GetTestInfo(i)); + } + *stream << " \n"; +} + +// Prints an XML summary of unit_test to output stream out. +void XmlUnitTestResultPrinter::PrintXmlUnitTest(std::ostream* stream, + const UnitTest& unit_test) { + const std::string kTestsuites = "testsuites"; + + *stream << "\n"; + *stream << "<" << kTestsuites; + + OutputXmlAttribute(stream, kTestsuites, "tests", + StreamableToString(unit_test.reportable_test_count())); + OutputXmlAttribute(stream, kTestsuites, "failures", + StreamableToString(unit_test.failed_test_count())); + OutputXmlAttribute( + stream, kTestsuites, "disabled", + StreamableToString(unit_test.reportable_disabled_test_count())); + OutputXmlAttribute(stream, kTestsuites, "errors", "0"); + OutputXmlAttribute( + stream, kTestsuites, "timestamp", + FormatEpochTimeInMillisAsIso8601(unit_test.start_timestamp())); + OutputXmlAttribute(stream, kTestsuites, "time", + FormatTimeInMillisAsSeconds(unit_test.elapsed_time())); + + if (GTEST_FLAG(shuffle)) { + OutputXmlAttribute(stream, kTestsuites, "random_seed", + StreamableToString(unit_test.random_seed())); + } + + *stream << TestPropertiesAsXmlAttributes(unit_test.ad_hoc_test_result()); + + OutputXmlAttribute(stream, kTestsuites, "name", "AllTests"); + *stream << ">\n"; + + for (int i = 0; i < unit_test.total_test_case_count(); ++i) { + if (unit_test.GetTestCase(i)->reportable_test_count() > 0) + PrintXmlTestCase(stream, *unit_test.GetTestCase(i)); + } + *stream << "\n"; +} + +// Produces a string representing the test properties in a result as space +// delimited XML attributes based on the property key="value" pairs. +std::string XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( + const TestResult& result) { + Message attributes; + for (int i = 0; i < result.test_property_count(); ++i) { + const TestProperty& property = result.GetTestProperty(i); + attributes << " " << property.key() << "=" + << "\"" << EscapeXmlAttribute(property.value()) << "\""; + } + return attributes.GetString(); +} + +// End XmlUnitTestResultPrinter + +#if GTEST_CAN_STREAM_RESULTS_ + +// Checks if str contains '=', '&', '%' or '\n' characters. If yes, +// replaces them by "%xx" where xx is their hexadecimal value. For +// example, replaces "=" with "%3D". This algorithm is O(strlen(str)) +// in both time and space -- important as the input str may contain an +// arbitrarily long test failure message and stack trace. +string StreamingListener::UrlEncode(const char* str) { + string result; + result.reserve(strlen(str) + 1); + for (char ch = *str; ch != '\0'; ch = *++str) { + switch (ch) { + case '%': + case '=': + case '&': + case '\n': + result.append("%" + String::FormatByte(static_cast(ch))); + break; + default: + result.push_back(ch); + break; + } + } + return result; +} + +void StreamingListener::SocketWriter::MakeConnection() { + GTEST_CHECK_(sockfd_ == -1) + << "MakeConnection() can't be called when there is already a connection."; + + addrinfo hints; + memset(&hints, 0, sizeof(hints)); + hints.ai_family = AF_UNSPEC; // To allow both IPv4 and IPv6 addresses. + hints.ai_socktype = SOCK_STREAM; + addrinfo* servinfo = NULL; + + // Use the getaddrinfo() to get a linked list of IP addresses for + // the given host name. + const int error_num = getaddrinfo( + host_name_.c_str(), port_num_.c_str(), &hints, &servinfo); + if (error_num != 0) { + GTEST_LOG_(WARNING) << "stream_result_to: getaddrinfo() failed: " + << gai_strerror(error_num); + } + + // Loop through all the results and connect to the first we can. + for (addrinfo* cur_addr = servinfo; sockfd_ == -1 && cur_addr != NULL; + cur_addr = cur_addr->ai_next) { + sockfd_ = socket( + cur_addr->ai_family, cur_addr->ai_socktype, cur_addr->ai_protocol); + if (sockfd_ != -1) { + // Connect the client socket to the server socket. + if (connect(sockfd_, cur_addr->ai_addr, cur_addr->ai_addrlen) == -1) { + close(sockfd_); + sockfd_ = -1; + } + } + } + + freeaddrinfo(servinfo); // all done with this structure + + if (sockfd_ == -1) { + GTEST_LOG_(WARNING) << "stream_result_to: failed to connect to " + << host_name_ << ":" << port_num_; + } +} + +// End of class Streaming Listener +#endif // GTEST_CAN_STREAM_RESULTS__ + +// Class ScopedTrace + +// Pushes the given source file location and message onto a per-thread +// trace stack maintained by Google Test. +ScopedTrace::ScopedTrace(const char* file, int line, const Message& message) + GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) { + TraceInfo trace; + trace.file = file; + trace.line = line; + trace.message = message.GetString(); + + UnitTest::GetInstance()->PushGTestTrace(trace); +} + +// Pops the info pushed by the c'tor. +ScopedTrace::~ScopedTrace() + GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) { + UnitTest::GetInstance()->PopGTestTrace(); +} + + +// class OsStackTraceGetter + +// Returns the current OS stack trace as an std::string. Parameters: +// +// max_depth - the maximum number of stack frames to be included +// in the trace. +// skip_count - the number of top frames to be skipped; doesn't count +// against max_depth. +// +string OsStackTraceGetter::CurrentStackTrace(int /* max_depth */, + int /* skip_count */) + GTEST_LOCK_EXCLUDED_(mutex_) { + return ""; +} + +void OsStackTraceGetter::UponLeavingGTest() + GTEST_LOCK_EXCLUDED_(mutex_) { +} + +const char* const +OsStackTraceGetter::kElidedFramesMarker = + "... " GTEST_NAME_ " internal frames ..."; + +// A helper class that creates the premature-exit file in its +// constructor and deletes the file in its destructor. +class ScopedPrematureExitFile { + public: + explicit ScopedPrematureExitFile(const char* premature_exit_filepath) + : premature_exit_filepath_(premature_exit_filepath) { + // If a path to the premature-exit file is specified... + if (premature_exit_filepath != NULL && *premature_exit_filepath != '\0') { + // create the file with a single "0" character in it. I/O + // errors are ignored as there's nothing better we can do and we + // don't want to fail the test because of this. + FILE* pfile = posix::FOpen(premature_exit_filepath, "w"); + fwrite("0", 1, 1, pfile); + fclose(pfile); + } + } + + ~ScopedPrematureExitFile() { + if (premature_exit_filepath_ != NULL && *premature_exit_filepath_ != '\0') { + remove(premature_exit_filepath_); + } + } + + private: + const char* const premature_exit_filepath_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedPrematureExitFile); +}; + +} // namespace internal + +// class TestEventListeners + +TestEventListeners::TestEventListeners() + : repeater_(new internal::TestEventRepeater()), + default_result_printer_(NULL), + default_xml_generator_(NULL) { +} + +TestEventListeners::~TestEventListeners() { delete repeater_; } + +// Returns the standard listener responsible for the default console +// output. Can be removed from the listeners list to shut down default +// console output. Note that removing this object from the listener list +// with Release transfers its ownership to the user. +void TestEventListeners::Append(TestEventListener* listener) { + repeater_->Append(listener); +} + +// Removes the given event listener from the list and returns it. It then +// becomes the caller's responsibility to delete the listener. Returns +// NULL if the listener is not found in the list. +TestEventListener* TestEventListeners::Release(TestEventListener* listener) { + if (listener == default_result_printer_) + default_result_printer_ = NULL; + else if (listener == default_xml_generator_) + default_xml_generator_ = NULL; + return repeater_->Release(listener); +} + +// Returns repeater that broadcasts the TestEventListener events to all +// subscribers. +TestEventListener* TestEventListeners::repeater() { return repeater_; } + +// Sets the default_result_printer attribute to the provided listener. +// The listener is also added to the listener list and previous +// default_result_printer is removed from it and deleted. The listener can +// also be NULL in which case it will not be added to the list. Does +// nothing if the previous and the current listener objects are the same. +void TestEventListeners::SetDefaultResultPrinter(TestEventListener* listener) { + if (default_result_printer_ != listener) { + // It is an error to pass this method a listener that is already in the + // list. + delete Release(default_result_printer_); + default_result_printer_ = listener; + if (listener != NULL) + Append(listener); + } +} + +// Sets the default_xml_generator attribute to the provided listener. The +// listener is also added to the listener list and previous +// default_xml_generator is removed from it and deleted. The listener can +// also be NULL in which case it will not be added to the list. Does +// nothing if the previous and the current listener objects are the same. +void TestEventListeners::SetDefaultXmlGenerator(TestEventListener* listener) { + if (default_xml_generator_ != listener) { + // It is an error to pass this method a listener that is already in the + // list. + delete Release(default_xml_generator_); + default_xml_generator_ = listener; + if (listener != NULL) + Append(listener); + } +} + +// Controls whether events will be forwarded by the repeater to the +// listeners in the list. +bool TestEventListeners::EventForwardingEnabled() const { + return repeater_->forwarding_enabled(); +} + +void TestEventListeners::SuppressEventForwarding() { + repeater_->set_forwarding_enabled(false); +} + +// class UnitTest + +// Gets the singleton UnitTest object. The first time this method is +// called, a UnitTest object is constructed and returned. Consecutive +// calls will return the same object. +// +// We don't protect this under mutex_ as a user is not supposed to +// call this before main() starts, from which point on the return +// value will never change. +UnitTest* UnitTest::GetInstance() { + // When compiled with MSVC 7.1 in optimized mode, destroying the + // UnitTest object upon exiting the program messes up the exit code, + // causing successful tests to appear failed. We have to use a + // different implementation in this case to bypass the compiler bug. + // This implementation makes the compiler happy, at the cost of + // leaking the UnitTest object. + + // CodeGear C++Builder insists on a public destructor for the + // default implementation. Use this implementation to keep good OO + // design with private destructor. + +#if (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) + static UnitTest* const instance = new UnitTest; + return instance; +#else + static UnitTest instance; + return &instance; +#endif // (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) +} + +// Gets the number of successful test cases. +int UnitTest::successful_test_case_count() const { + return impl()->successful_test_case_count(); +} + +// Gets the number of failed test cases. +int UnitTest::failed_test_case_count() const { + return impl()->failed_test_case_count(); +} + +// Gets the number of all test cases. +int UnitTest::total_test_case_count() const { + return impl()->total_test_case_count(); +} + +// Gets the number of all test cases that contain at least one test +// that should run. +int UnitTest::test_case_to_run_count() const { + return impl()->test_case_to_run_count(); +} + +// Gets the number of successful tests. +int UnitTest::successful_test_count() const { + return impl()->successful_test_count(); +} + +// Gets the number of failed tests. +int UnitTest::failed_test_count() const { return impl()->failed_test_count(); } + +// Gets the number of disabled tests that will be reported in the XML report. +int UnitTest::reportable_disabled_test_count() const { + return impl()->reportable_disabled_test_count(); +} + +// Gets the number of disabled tests. +int UnitTest::disabled_test_count() const { + return impl()->disabled_test_count(); +} + +// Gets the number of tests to be printed in the XML report. +int UnitTest::reportable_test_count() const { + return impl()->reportable_test_count(); +} + +// Gets the number of all tests. +int UnitTest::total_test_count() const { return impl()->total_test_count(); } + +// Gets the number of tests that should run. +int UnitTest::test_to_run_count() const { return impl()->test_to_run_count(); } + +// Gets the time of the test program start, in ms from the start of the +// UNIX epoch. +internal::TimeInMillis UnitTest::start_timestamp() const { + return impl()->start_timestamp(); +} + +// Gets the elapsed time, in milliseconds. +internal::TimeInMillis UnitTest::elapsed_time() const { + return impl()->elapsed_time(); +} + +// Returns true iff the unit test passed (i.e. all test cases passed). +bool UnitTest::Passed() const { return impl()->Passed(); } + +// Returns true iff the unit test failed (i.e. some test case failed +// or something outside of all tests failed). +bool UnitTest::Failed() const { return impl()->Failed(); } + +// Gets the i-th test case among all the test cases. i can range from 0 to +// total_test_case_count() - 1. If i is not in that range, returns NULL. +const TestCase* UnitTest::GetTestCase(int i) const { + return impl()->GetTestCase(i); +} + +// Returns the TestResult containing information on test failures and +// properties logged outside of individual test cases. +const TestResult& UnitTest::ad_hoc_test_result() const { + return *impl()->ad_hoc_test_result(); +} + +// Gets the i-th test case among all the test cases. i can range from 0 to +// total_test_case_count() - 1. If i is not in that range, returns NULL. +TestCase* UnitTest::GetMutableTestCase(int i) { + return impl()->GetMutableTestCase(i); +} + +// Returns the list of event listeners that can be used to track events +// inside Google Test. +TestEventListeners& UnitTest::listeners() { + return *impl()->listeners(); +} + +// Registers and returns a global test environment. When a test +// program is run, all global test environments will be set-up in the +// order they were registered. After all tests in the program have +// finished, all global test environments will be torn-down in the +// *reverse* order they were registered. +// +// The UnitTest object takes ownership of the given environment. +// +// We don't protect this under mutex_, as we only support calling it +// from the main thread. +Environment* UnitTest::AddEnvironment(Environment* env) { + if (env == NULL) { + return NULL; + } + + impl_->environments().push_back(env); + return env; +} + +// Adds a TestPartResult to the current TestResult object. All Google Test +// assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) eventually call +// this to report their results. The user code should use the +// assertion macros instead of calling this directly. +void UnitTest::AddTestPartResult( + TestPartResult::Type result_type, + const char* file_name, + int line_number, + const std::string& message, + const std::string& os_stack_trace) GTEST_LOCK_EXCLUDED_(mutex_) { + Message msg; + msg << message; + + internal::MutexLock lock(&mutex_); + if (impl_->gtest_trace_stack().size() > 0) { + msg << "\n" << GTEST_NAME_ << " trace:"; + + for (int i = static_cast(impl_->gtest_trace_stack().size()); + i > 0; --i) { + const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1]; + msg << "\n" << internal::FormatFileLocation(trace.file, trace.line) + << " " << trace.message; + } + } + + if (os_stack_trace.c_str() != NULL && !os_stack_trace.empty()) { + msg << internal::kStackTraceMarker << os_stack_trace; + } + + const TestPartResult result = + TestPartResult(result_type, file_name, line_number, + msg.GetString().c_str()); + impl_->GetTestPartResultReporterForCurrentThread()-> + ReportTestPartResult(result); + + if (result_type != TestPartResult::kSuccess) { + // gtest_break_on_failure takes precedence over + // gtest_throw_on_failure. This allows a user to set the latter + // in the code (perhaps in order to use Google Test assertions + // with another testing framework) and specify the former on the + // command line for debugging. + if (GTEST_FLAG(break_on_failure)) { +#if GTEST_OS_WINDOWS + // Using DebugBreak on Windows allows gtest to still break into a debugger + // when a failure happens and both the --gtest_break_on_failure and + // the --gtest_catch_exceptions flags are specified. + DebugBreak(); +#else + // Dereference NULL through a volatile pointer to prevent the compiler + // from removing. We use this rather than abort() or __builtin_trap() for + // portability: Symbian doesn't implement abort() well, and some debuggers + // don't correctly trap abort(). + *static_cast(NULL) = 1; +#endif // GTEST_OS_WINDOWS + } else if (GTEST_FLAG(throw_on_failure)) { +#if GTEST_HAS_EXCEPTIONS + throw internal::GoogleTestFailureException(result); +#else + // We cannot call abort() as it generates a pop-up in debug mode + // that cannot be suppressed in VC 7.1 or below. + exit(1); +#endif + } + } +} + +// Adds a TestProperty to the current TestResult object when invoked from +// inside a test, to current TestCase's ad_hoc_test_result_ when invoked +// from SetUpTestCase or TearDownTestCase, or to the global property set +// when invoked elsewhere. If the result already contains a property with +// the same key, the value will be updated. +void UnitTest::RecordProperty(const std::string& key, + const std::string& value) { + impl_->RecordProperty(TestProperty(key, value)); +} + +// Runs all tests in this UnitTest object and prints the result. +// Returns 0 if successful, or 1 otherwise. +// +// We don't protect this under mutex_, as we only support calling it +// from the main thread. +int UnitTest::Run() { + const bool in_death_test_child_process = + internal::GTEST_FLAG(internal_run_death_test).length() > 0; + + // Google Test implements this protocol for catching that a test + // program exits before returning control to Google Test: + // + // 1. Upon start, Google Test creates a file whose absolute path + // is specified by the environment variable + // TEST_PREMATURE_EXIT_FILE. + // 2. When Google Test has finished its work, it deletes the file. + // + // This allows a test runner to set TEST_PREMATURE_EXIT_FILE before + // running a Google-Test-based test program and check the existence + // of the file at the end of the test execution to see if it has + // exited prematurely. + + // If we are in the child process of a death test, don't + // create/delete the premature exit file, as doing so is unnecessary + // and will confuse the parent process. Otherwise, create/delete + // the file upon entering/leaving this function. If the program + // somehow exits before this function has a chance to return, the + // premature-exit file will be left undeleted, causing a test runner + // that understands the premature-exit-file protocol to report the + // test as having failed. + const internal::ScopedPrematureExitFile premature_exit_file( + in_death_test_child_process ? + NULL : internal::posix::GetEnv("TEST_PREMATURE_EXIT_FILE")); + + // Captures the value of GTEST_FLAG(catch_exceptions). This value will be + // used for the duration of the program. + impl()->set_catch_exceptions(GTEST_FLAG(catch_exceptions)); + +#if GTEST_HAS_SEH + // Either the user wants Google Test to catch exceptions thrown by the + // tests or this is executing in the context of death test child + // process. In either case the user does not want to see pop-up dialogs + // about crashes - they are expected. + if (impl()->catch_exceptions() || in_death_test_child_process) { +# if !GTEST_OS_WINDOWS_MOBILE + // SetErrorMode doesn't exist on CE. + SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOALIGNMENTFAULTEXCEPT | + SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX); +# endif // !GTEST_OS_WINDOWS_MOBILE + +# if (defined(_MSC_VER) || GTEST_OS_WINDOWS_MINGW) && !GTEST_OS_WINDOWS_MOBILE + // Death test children can be terminated with _abort(). On Windows, + // _abort() can show a dialog with a warning message. This forces the + // abort message to go to stderr instead. + _set_error_mode(_OUT_TO_STDERR); +# endif + +# if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE + // In the debug version, Visual Studio pops up a separate dialog + // offering a choice to debug the aborted program. We need to suppress + // this dialog or it will pop up for every EXPECT/ASSERT_DEATH statement + // executed. Google Test will notify the user of any unexpected + // failure via stderr. + // + // VC++ doesn't define _set_abort_behavior() prior to the version 8.0. + // Users of prior VC versions shall suffer the agony and pain of + // clicking through the countless debug dialogs. + // TODO(vladl@google.com): find a way to suppress the abort dialog() in the + // debug mode when compiled with VC 7.1 or lower. + if (!GTEST_FLAG(break_on_failure)) + _set_abort_behavior( + 0x0, // Clear the following flags: + _WRITE_ABORT_MSG | _CALL_REPORTFAULT); // pop-up window, core dump. +# endif + } +#endif // GTEST_HAS_SEH + + return internal::HandleExceptionsInMethodIfSupported( + impl(), + &internal::UnitTestImpl::RunAllTests, + "auxiliary test code (environments or event listeners)") ? 0 : 1; +} + +// Returns the working directory when the first TEST() or TEST_F() was +// executed. +const char* UnitTest::original_working_dir() const { + return impl_->original_working_dir_.c_str(); +} + +// Returns the TestCase object for the test that's currently running, +// or NULL if no test is running. +const TestCase* UnitTest::current_test_case() const + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + return impl_->current_test_case(); +} + +// Returns the TestInfo object for the test that's currently running, +// or NULL if no test is running. +const TestInfo* UnitTest::current_test_info() const + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + return impl_->current_test_info(); +} + +// Returns the random seed used at the start of the current test run. +int UnitTest::random_seed() const { return impl_->random_seed(); } + +#if GTEST_HAS_PARAM_TEST +// Returns ParameterizedTestCaseRegistry object used to keep track of +// value-parameterized tests and instantiate and register them. +internal::ParameterizedTestCaseRegistry& + UnitTest::parameterized_test_registry() + GTEST_LOCK_EXCLUDED_(mutex_) { + return impl_->parameterized_test_registry(); +} +#endif // GTEST_HAS_PARAM_TEST + +// Creates an empty UnitTest. +UnitTest::UnitTest() { + impl_ = new internal::UnitTestImpl(this); +} + +// Destructor of UnitTest. +UnitTest::~UnitTest() { + delete impl_; +} + +// Pushes a trace defined by SCOPED_TRACE() on to the per-thread +// Google Test trace stack. +void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + impl_->gtest_trace_stack().push_back(trace); +} + +// Pops a trace from the per-thread Google Test trace stack. +void UnitTest::PopGTestTrace() + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + impl_->gtest_trace_stack().pop_back(); +} + +namespace internal { + +UnitTestImpl::UnitTestImpl(UnitTest* parent) + : parent_(parent), +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4355) // Temporarily disables warning 4355 + // (using this in initializer). + default_global_test_part_result_reporter_(this), + default_per_thread_test_part_result_reporter_(this), +# pragma warning(pop) // Restores the warning state again. +#else + default_global_test_part_result_reporter_(this), + default_per_thread_test_part_result_reporter_(this), +#endif // _MSC_VER + global_test_part_result_repoter_( + &default_global_test_part_result_reporter_), + per_thread_test_part_result_reporter_( + &default_per_thread_test_part_result_reporter_), +#if GTEST_HAS_PARAM_TEST + parameterized_test_registry_(), + parameterized_tests_registered_(false), +#endif // GTEST_HAS_PARAM_TEST + last_death_test_case_(-1), + current_test_case_(NULL), + current_test_info_(NULL), + ad_hoc_test_result_(), + os_stack_trace_getter_(NULL), + post_flag_parse_init_performed_(false), + random_seed_(0), // Will be overridden by the flag before first use. + random_(0), // Will be reseeded before first use. + start_timestamp_(0), + elapsed_time_(0), +#if GTEST_HAS_DEATH_TEST + death_test_factory_(new DefaultDeathTestFactory), +#endif + // Will be overridden by the flag before first use. + catch_exceptions_(false) { + listeners()->SetDefaultResultPrinter(new PrettyUnitTestResultPrinter); +} + +UnitTestImpl::~UnitTestImpl() { + // Deletes every TestCase. + ForEach(test_cases_, internal::Delete); + + // Deletes every Environment. + ForEach(environments_, internal::Delete); + + delete os_stack_trace_getter_; +} + +// Adds a TestProperty to the current TestResult object when invoked in a +// context of a test, to current test case's ad_hoc_test_result when invoke +// from SetUpTestCase/TearDownTestCase, or to the global property set +// otherwise. If the result already contains a property with the same key, +// the value will be updated. +void UnitTestImpl::RecordProperty(const TestProperty& test_property) { + std::string xml_element; + TestResult* test_result; // TestResult appropriate for property recording. + + if (current_test_info_ != NULL) { + xml_element = "testcase"; + test_result = &(current_test_info_->result_); + } else if (current_test_case_ != NULL) { + xml_element = "testsuite"; + test_result = &(current_test_case_->ad_hoc_test_result_); + } else { + xml_element = "testsuites"; + test_result = &ad_hoc_test_result_; + } + test_result->RecordProperty(xml_element, test_property); +} + +#if GTEST_HAS_DEATH_TEST +// Disables event forwarding if the control is currently in a death test +// subprocess. Must not be called before InitGoogleTest. +void UnitTestImpl::SuppressTestEventsIfInSubprocess() { + if (internal_run_death_test_flag_.get() != NULL) + listeners()->SuppressEventForwarding(); +} +#endif // GTEST_HAS_DEATH_TEST + +// Initializes event listeners performing XML output as specified by +// UnitTestOptions. Must not be called before InitGoogleTest. +void UnitTestImpl::ConfigureXmlOutput() { + const std::string& output_format = UnitTestOptions::GetOutputFormat(); + if (output_format == "xml") { + listeners()->SetDefaultXmlGenerator(new XmlUnitTestResultPrinter( + UnitTestOptions::GetAbsolutePathToOutputFile().c_str())); + } else if (output_format != "") { + printf("WARNING: unrecognized output format \"%s\" ignored.\n", + output_format.c_str()); + fflush(stdout); + } +} + +#if GTEST_CAN_STREAM_RESULTS_ +// Initializes event listeners for streaming test results in string form. +// Must not be called before InitGoogleTest. +void UnitTestImpl::ConfigureStreamingOutput() { + const std::string& target = GTEST_FLAG(stream_result_to); + if (!target.empty()) { + const size_t pos = target.find(':'); + if (pos != std::string::npos) { + listeners()->Append(new StreamingListener(target.substr(0, pos), + target.substr(pos+1))); + } else { + printf("WARNING: unrecognized streaming target \"%s\" ignored.\n", + target.c_str()); + fflush(stdout); + } + } +} +#endif // GTEST_CAN_STREAM_RESULTS_ + +// Performs initialization dependent upon flag values obtained in +// ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to +// ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest +// this function is also called from RunAllTests. Since this function can be +// called more than once, it has to be idempotent. +void UnitTestImpl::PostFlagParsingInit() { + // Ensures that this function does not execute more than once. + if (!post_flag_parse_init_performed_) { + post_flag_parse_init_performed_ = true; + +#if GTEST_HAS_DEATH_TEST + InitDeathTestSubprocessControlInfo(); + SuppressTestEventsIfInSubprocess(); +#endif // GTEST_HAS_DEATH_TEST + + // Registers parameterized tests. This makes parameterized tests + // available to the UnitTest reflection API without running + // RUN_ALL_TESTS. + RegisterParameterizedTests(); + + // Configures listeners for XML output. This makes it possible for users + // to shut down the default XML output before invoking RUN_ALL_TESTS. + ConfigureXmlOutput(); + +#if GTEST_CAN_STREAM_RESULTS_ + // Configures listeners for streaming test results to the specified server. + ConfigureStreamingOutput(); +#endif // GTEST_CAN_STREAM_RESULTS_ + } +} + +// A predicate that checks the name of a TestCase against a known +// value. +// +// This is used for implementation of the UnitTest class only. We put +// it in the anonymous namespace to prevent polluting the outer +// namespace. +// +// TestCaseNameIs is copyable. +class TestCaseNameIs { + public: + // Constructor. + explicit TestCaseNameIs(const std::string& name) + : name_(name) {} + + // Returns true iff the name of test_case matches name_. + bool operator()(const TestCase* test_case) const { + return test_case != NULL && strcmp(test_case->name(), name_.c_str()) == 0; + } + + private: + std::string name_; +}; + +// Finds and returns a TestCase with the given name. If one doesn't +// exist, creates one and returns it. It's the CALLER'S +// RESPONSIBILITY to ensure that this function is only called WHEN THE +// TESTS ARE NOT SHUFFLED. +// +// Arguments: +// +// test_case_name: name of the test case +// type_param: the name of the test case's type parameter, or NULL if +// this is not a typed or a type-parameterized test case. +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, + const char* type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc) { + // Can we find a TestCase with the given name? + const std::vector::const_iterator test_case = + std::find_if(test_cases_.begin(), test_cases_.end(), + TestCaseNameIs(test_case_name)); + + if (test_case != test_cases_.end()) + return *test_case; + + // No. Let's create one. + TestCase* const new_test_case = + new TestCase(test_case_name, type_param, set_up_tc, tear_down_tc); + + // Is this a death test case? + if (internal::UnitTestOptions::MatchesFilter(test_case_name, + kDeathTestCaseFilter)) { + // Yes. Inserts the test case after the last death test case + // defined so far. This only works when the test cases haven't + // been shuffled. Otherwise we may end up running a death test + // after a non-death test. + ++last_death_test_case_; + test_cases_.insert(test_cases_.begin() + last_death_test_case_, + new_test_case); + } else { + // No. Appends to the end of the list. + test_cases_.push_back(new_test_case); + } + + test_case_indices_.push_back(static_cast(test_case_indices_.size())); + return new_test_case; +} + +// Helpers for setting up / tearing down the given environment. They +// are for use in the ForEach() function. +static void SetUpEnvironment(Environment* env) { env->SetUp(); } +static void TearDownEnvironment(Environment* env) { env->TearDown(); } + +// Runs all tests in this UnitTest object, prints the result, and +// returns true if all tests are successful. If any exception is +// thrown during a test, the test is considered to be failed, but the +// rest of the tests will still be run. +// +// When parameterized tests are enabled, it expands and registers +// parameterized tests first in RegisterParameterizedTests(). +// All other functions called from RunAllTests() may safely assume that +// parameterized tests are ready to be counted and run. +bool UnitTestImpl::RunAllTests() { + // Makes sure InitGoogleTest() was called. + if (!GTestIsInitialized()) { + printf("%s", + "\nThis test program did NOT call ::testing::InitGoogleTest " + "before calling RUN_ALL_TESTS(). Please fix it.\n"); + return false; + } + + // Do not run any test if the --help flag was specified. + if (g_help_flag) + return true; + + // Repeats the call to the post-flag parsing initialization in case the + // user didn't call InitGoogleTest. + PostFlagParsingInit(); + + // Even if sharding is not on, test runners may want to use the + // GTEST_SHARD_STATUS_FILE to query whether the test supports the sharding + // protocol. + internal::WriteToShardStatusFileIfNeeded(); + + // True iff we are in a subprocess for running a thread-safe-style + // death test. + bool in_subprocess_for_death_test = false; + +#if GTEST_HAS_DEATH_TEST + in_subprocess_for_death_test = (internal_run_death_test_flag_.get() != NULL); +#endif // GTEST_HAS_DEATH_TEST + + const bool should_shard = ShouldShard(kTestTotalShards, kTestShardIndex, + in_subprocess_for_death_test); + + // Compares the full test names with the filter to decide which + // tests to run. + const bool has_tests_to_run = FilterTests(should_shard + ? HONOR_SHARDING_PROTOCOL + : IGNORE_SHARDING_PROTOCOL) > 0; + + // Lists the tests and exits if the --gtest_list_tests flag was specified. + if (GTEST_FLAG(list_tests)) { + // This must be called *after* FilterTests() has been called. + ListTestsMatchingFilter(); + return true; + } + + random_seed_ = GTEST_FLAG(shuffle) ? + GetRandomSeedFromFlag(GTEST_FLAG(random_seed)) : 0; + + // True iff at least one test has failed. + bool failed = false; + + TestEventListener* repeater = listeners()->repeater(); + + start_timestamp_ = GetTimeInMillis(); + repeater->OnTestProgramStart(*parent_); + + // How many times to repeat the tests? We don't want to repeat them + // when we are inside the subprocess of a death test. + const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); + // Repeats forever if the repeat count is negative. + const bool forever = repeat < 0; + for (int i = 0; forever || i != repeat; i++) { + // We want to preserve failures generated by ad-hoc test + // assertions executed before RUN_ALL_TESTS(). + ClearNonAdHocTestResult(); + + const TimeInMillis start = GetTimeInMillis(); + + // Shuffles test cases and tests if requested. + if (has_tests_to_run && GTEST_FLAG(shuffle)) { + random()->Reseed(random_seed_); + // This should be done before calling OnTestIterationStart(), + // such that a test event listener can see the actual test order + // in the event. + ShuffleTests(); + } + + // Tells the unit test event listeners that the tests are about to start. + repeater->OnTestIterationStart(*parent_, i); + + // Runs each test case if there is at least one test to run. + if (has_tests_to_run) { + // Sets up all environments beforehand. + repeater->OnEnvironmentsSetUpStart(*parent_); + ForEach(environments_, SetUpEnvironment); + repeater->OnEnvironmentsSetUpEnd(*parent_); + + // Runs the tests only if there was no fatal failure during global + // set-up. + if (!Test::HasFatalFailure()) { + for (int test_index = 0; test_index < total_test_case_count(); + test_index++) { + GetMutableTestCase(test_index)->Run(); + } + } + + // Tears down all environments in reverse order afterwards. + repeater->OnEnvironmentsTearDownStart(*parent_); + std::for_each(environments_.rbegin(), environments_.rend(), + TearDownEnvironment); + repeater->OnEnvironmentsTearDownEnd(*parent_); + } + + elapsed_time_ = GetTimeInMillis() - start; + + // Tells the unit test event listener that the tests have just finished. + repeater->OnTestIterationEnd(*parent_, i); + + // Gets the result and clears it. + if (!Passed()) { + failed = true; + } + + // Restores the original test order after the iteration. This + // allows the user to quickly repro a failure that happens in the + // N-th iteration without repeating the first (N - 1) iterations. + // This is not enclosed in "if (GTEST_FLAG(shuffle)) { ... }", in + // case the user somehow changes the value of the flag somewhere + // (it's always safe to unshuffle the tests). + UnshuffleTests(); + + if (GTEST_FLAG(shuffle)) { + // Picks a new random seed for each iteration. + random_seed_ = GetNextRandomSeed(random_seed_); + } + } + + repeater->OnTestProgramEnd(*parent_); + + return !failed; +} + +// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file +// if the variable is present. If a file already exists at this location, this +// function will write over it. If the variable is present, but the file cannot +// be created, prints an error and exits. +void WriteToShardStatusFileIfNeeded() { + const char* const test_shard_file = posix::GetEnv(kTestShardStatusFile); + if (test_shard_file != NULL) { + FILE* const file = posix::FOpen(test_shard_file, "w"); + if (file == NULL) { + ColoredPrintf(COLOR_RED, + "Could not write to the test shard status file \"%s\" " + "specified by the %s environment variable.\n", + test_shard_file, kTestShardStatusFile); + fflush(stdout); + exit(EXIT_FAILURE); + } + fclose(file); + } +} + +// Checks whether sharding is enabled by examining the relevant +// environment variable values. If the variables are present, +// but inconsistent (i.e., shard_index >= total_shards), prints +// an error and exits. If in_subprocess_for_death_test, sharding is +// disabled because it must only be applied to the original test +// process. Otherwise, we could filter out death tests we intended to execute. +bool ShouldShard(const char* total_shards_env, + const char* shard_index_env, + bool in_subprocess_for_death_test) { + if (in_subprocess_for_death_test) { + return false; + } + + const Int32 total_shards = Int32FromEnvOrDie(total_shards_env, -1); + const Int32 shard_index = Int32FromEnvOrDie(shard_index_env, -1); + + if (total_shards == -1 && shard_index == -1) { + return false; + } else if (total_shards == -1 && shard_index != -1) { + const Message msg = Message() + << "Invalid environment variables: you have " + << kTestShardIndex << " = " << shard_index + << ", but have left " << kTestTotalShards << " unset.\n"; + ColoredPrintf(COLOR_RED, msg.GetString().c_str()); + fflush(stdout); + exit(EXIT_FAILURE); + } else if (total_shards != -1 && shard_index == -1) { + const Message msg = Message() + << "Invalid environment variables: you have " + << kTestTotalShards << " = " << total_shards + << ", but have left " << kTestShardIndex << " unset.\n"; + ColoredPrintf(COLOR_RED, msg.GetString().c_str()); + fflush(stdout); + exit(EXIT_FAILURE); + } else if (shard_index < 0 || shard_index >= total_shards) { + const Message msg = Message() + << "Invalid environment variables: we require 0 <= " + << kTestShardIndex << " < " << kTestTotalShards + << ", but you have " << kTestShardIndex << "=" << shard_index + << ", " << kTestTotalShards << "=" << total_shards << ".\n"; + ColoredPrintf(COLOR_RED, msg.GetString().c_str()); + fflush(stdout); + exit(EXIT_FAILURE); + } + + return total_shards > 1; +} + +// Parses the environment variable var as an Int32. If it is unset, +// returns default_val. If it is not an Int32, prints an error +// and aborts. +Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { + const char* str_val = posix::GetEnv(var); + if (str_val == NULL) { + return default_val; + } + + Int32 result; + if (!ParseInt32(Message() << "The value of environment variable " << var, + str_val, &result)) { + exit(EXIT_FAILURE); + } + return result; +} + +// Given the total number of shards, the shard index, and the test id, +// returns true iff the test should be run on this shard. The test id is +// some arbitrary but unique non-negative integer assigned to each test +// method. Assumes that 0 <= shard_index < total_shards. +bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_id) { + return (test_id % total_shards) == shard_index; +} + +// Compares the name of each test with the user-specified filter to +// decide whether the test should be run, then records the result in +// each TestCase and TestInfo object. +// If shard_tests == true, further filters tests based on sharding +// variables in the environment - see +// http://code.google.com/p/googletest/wiki/GoogleTestAdvancedGuide. +// Returns the number of tests that should run. +int UnitTestImpl::FilterTests(ReactionToSharding shard_tests) { + const Int32 total_shards = shard_tests == HONOR_SHARDING_PROTOCOL ? + Int32FromEnvOrDie(kTestTotalShards, -1) : -1; + const Int32 shard_index = shard_tests == HONOR_SHARDING_PROTOCOL ? + Int32FromEnvOrDie(kTestShardIndex, -1) : -1; + + // num_runnable_tests are the number of tests that will + // run across all shards (i.e., match filter and are not disabled). + // num_selected_tests are the number of tests to be run on + // this shard. + int num_runnable_tests = 0; + int num_selected_tests = 0; + for (size_t i = 0; i < test_cases_.size(); i++) { + TestCase* const test_case = test_cases_[i]; + const std::string &test_case_name = test_case->name(); + test_case->set_should_run(false); + + for (size_t j = 0; j < test_case->test_info_list().size(); j++) { + TestInfo* const test_info = test_case->test_info_list()[j]; + const std::string test_name(test_info->name()); + // A test is disabled if test case name or test name matches + // kDisableTestFilter. + const bool is_disabled = + internal::UnitTestOptions::MatchesFilter(test_case_name, + kDisableTestFilter) || + internal::UnitTestOptions::MatchesFilter(test_name, + kDisableTestFilter); + test_info->is_disabled_ = is_disabled; + + const bool matches_filter = + internal::UnitTestOptions::FilterMatchesTest(test_case_name, + test_name); + test_info->matches_filter_ = matches_filter; + + const bool is_runnable = + (GTEST_FLAG(also_run_disabled_tests) || !is_disabled) && + matches_filter; + + const bool is_selected = is_runnable && + (shard_tests == IGNORE_SHARDING_PROTOCOL || + ShouldRunTestOnShard(total_shards, shard_index, + num_runnable_tests)); + + num_runnable_tests += is_runnable; + num_selected_tests += is_selected; + + test_info->should_run_ = is_selected; + test_case->set_should_run(test_case->should_run() || is_selected); + } + } + return num_selected_tests; +} + +// Prints the given C-string on a single line by replacing all '\n' +// characters with string "\\n". If the output takes more than +// max_length characters, only prints the first max_length characters +// and "...". +static void PrintOnOneLine(const char* str, int max_length) { + if (str != NULL) { + for (int i = 0; *str != '\0'; ++str) { + if (i >= max_length) { + printf("..."); + break; + } + if (*str == '\n') { + printf("\\n"); + i += 2; + } else { + printf("%c", *str); + ++i; + } + } + } +} + +// Prints the names of the tests matching the user-specified filter flag. +void UnitTestImpl::ListTestsMatchingFilter() { + // Print at most this many characters for each type/value parameter. + const int kMaxParamLength = 250; + + for (size_t i = 0; i < test_cases_.size(); i++) { + const TestCase* const test_case = test_cases_[i]; + bool printed_test_case_name = false; + + for (size_t j = 0; j < test_case->test_info_list().size(); j++) { + const TestInfo* const test_info = + test_case->test_info_list()[j]; + if (test_info->matches_filter_) { + if (!printed_test_case_name) { + printed_test_case_name = true; + printf("%s.", test_case->name()); + if (test_case->type_param() != NULL) { + printf(" # %s = ", kTypeParamLabel); + // We print the type parameter on a single line to make + // the output easy to parse by a program. + PrintOnOneLine(test_case->type_param(), kMaxParamLength); + } + printf("\n"); + } + printf(" %s", test_info->name()); + if (test_info->value_param() != NULL) { + printf(" # %s = ", kValueParamLabel); + // We print the value parameter on a single line to make the + // output easy to parse by a program. + PrintOnOneLine(test_info->value_param(), kMaxParamLength); + } + printf("\n"); + } + } + } + fflush(stdout); +} + +// Sets the OS stack trace getter. +// +// Does nothing if the input and the current OS stack trace getter are +// the same; otherwise, deletes the old getter and makes the input the +// current getter. +void UnitTestImpl::set_os_stack_trace_getter( + OsStackTraceGetterInterface* getter) { + if (os_stack_trace_getter_ != getter) { + delete os_stack_trace_getter_; + os_stack_trace_getter_ = getter; + } +} + +// Returns the current OS stack trace getter if it is not NULL; +// otherwise, creates an OsStackTraceGetter, makes it the current +// getter, and returns it. +OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { + if (os_stack_trace_getter_ == NULL) { + os_stack_trace_getter_ = new OsStackTraceGetter; + } + + return os_stack_trace_getter_; +} + +// Returns the TestResult for the test that's currently running, or +// the TestResult for the ad hoc test if no test is running. +TestResult* UnitTestImpl::current_test_result() { + return current_test_info_ ? + &(current_test_info_->result_) : &ad_hoc_test_result_; +} + +// Shuffles all test cases, and the tests within each test case, +// making sure that death tests are still run first. +void UnitTestImpl::ShuffleTests() { + // Shuffles the death test cases. + ShuffleRange(random(), 0, last_death_test_case_ + 1, &test_case_indices_); + + // Shuffles the non-death test cases. + ShuffleRange(random(), last_death_test_case_ + 1, + static_cast(test_cases_.size()), &test_case_indices_); + + // Shuffles the tests inside each test case. + for (size_t i = 0; i < test_cases_.size(); i++) { + test_cases_[i]->ShuffleTests(random()); + } +} + +// Restores the test cases and tests to their order before the first shuffle. +void UnitTestImpl::UnshuffleTests() { + for (size_t i = 0; i < test_cases_.size(); i++) { + // Unshuffles the tests in each test case. + test_cases_[i]->UnshuffleTests(); + // Resets the index of each test case. + test_case_indices_[i] = static_cast(i); + } +} + +// Returns the current OS stack trace as an std::string. +// +// The maximum number of stack frames to be included is specified by +// the gtest_stack_trace_depth flag. The skip_count parameter +// specifies the number of top frames to be skipped, which doesn't +// count against the number of frames to be included. +// +// For example, if Foo() calls Bar(), which in turn calls +// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in +// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. +std::string GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, + int skip_count) { + // We pass skip_count + 1 to skip this wrapper function in addition + // to what the user really wants to skip. + return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1); +} + +// Used by the GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_ macro to +// suppress unreachable code warnings. +namespace { +class ClassUniqueToAlwaysTrue {}; +} + +bool IsTrue(bool condition) { return condition; } + +bool AlwaysTrue() { +#if GTEST_HAS_EXCEPTIONS + // This condition is always false so AlwaysTrue() never actually throws, + // but it makes the compiler think that it may throw. + if (IsTrue(false)) + throw ClassUniqueToAlwaysTrue(); +#endif // GTEST_HAS_EXCEPTIONS + return true; +} + +// If *pstr starts with the given prefix, modifies *pstr to be right +// past the prefix and returns true; otherwise leaves *pstr unchanged +// and returns false. None of pstr, *pstr, and prefix can be NULL. +bool SkipPrefix(const char* prefix, const char** pstr) { + const size_t prefix_len = strlen(prefix); + if (strncmp(*pstr, prefix, prefix_len) == 0) { + *pstr += prefix_len; + return true; + } + return false; +} + +// Parses a string as a command line flag. The string should have +// the format "--flag=value". When def_optional is true, the "=value" +// part can be omitted. +// +// Returns the value of the flag, or NULL if the parsing failed. +const char* ParseFlagValue(const char* str, + const char* flag, + bool def_optional) { + // str and flag must not be NULL. + if (str == NULL || flag == NULL) return NULL; + + // The flag must start with "--" followed by GTEST_FLAG_PREFIX_. + const std::string flag_str = std::string("--") + GTEST_FLAG_PREFIX_ + flag; + const size_t flag_len = flag_str.length(); + if (strncmp(str, flag_str.c_str(), flag_len) != 0) return NULL; + + // Skips the flag name. + const char* flag_end = str + flag_len; + + // When def_optional is true, it's OK to not have a "=value" part. + if (def_optional && (flag_end[0] == '\0')) { + return flag_end; + } + + // If def_optional is true and there are more characters after the + // flag name, or if def_optional is false, there must be a '=' after + // the flag name. + if (flag_end[0] != '=') return NULL; + + // Returns the string after "=". + return flag_end + 1; +} + +// Parses a string for a bool flag, in the form of either +// "--flag=value" or "--flag". +// +// In the former case, the value is taken as true as long as it does +// not start with '0', 'f', or 'F'. +// +// In the latter case, the value is taken as true. +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +bool ParseBoolFlag(const char* str, const char* flag, bool* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseFlagValue(str, flag, true); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Converts the string value to a bool. + *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F'); + return true; +} + +// Parses a string for an Int32 flag, in the form of +// "--flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseFlagValue(str, flag, false); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Sets *value to the value of the flag. + return ParseInt32(Message() << "The value of flag --" << flag, + value_str, value); +} + +// Parses a string for a string flag, in the form of +// "--flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +bool ParseStringFlag(const char* str, const char* flag, std::string* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseFlagValue(str, flag, false); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Sets *value to the value of the flag. + *value = value_str; + return true; +} + +// Determines whether a string has a prefix that Google Test uses for its +// flags, i.e., starts with GTEST_FLAG_PREFIX_ or GTEST_FLAG_PREFIX_DASH_. +// If Google Test detects that a command line flag has its prefix but is not +// recognized, it will print its help message. Flags starting with +// GTEST_INTERNAL_PREFIX_ followed by "internal_" are considered Google Test +// internal flags and do not trigger the help message. +static bool HasGoogleTestFlagPrefix(const char* str) { + return (SkipPrefix("--", &str) || + SkipPrefix("-", &str) || + SkipPrefix("/", &str)) && + !SkipPrefix(GTEST_FLAG_PREFIX_ "internal_", &str) && + (SkipPrefix(GTEST_FLAG_PREFIX_, &str) || + SkipPrefix(GTEST_FLAG_PREFIX_DASH_, &str)); +} + +// Prints a string containing code-encoded text. The following escape +// sequences can be used in the string to control the text color: +// +// @@ prints a single '@' character. +// @R changes the color to red. +// @G changes the color to green. +// @Y changes the color to yellow. +// @D changes to the default terminal text color. +// +// TODO(wan@google.com): Write tests for this once we add stdout +// capturing to Google Test. +static void PrintColorEncoded(const char* str) { + GTestColor color = COLOR_DEFAULT; // The current color. + + // Conceptually, we split the string into segments divided by escape + // sequences. Then we print one segment at a time. At the end of + // each iteration, the str pointer advances to the beginning of the + // next segment. + for (;;) { + const char* p = strchr(str, '@'); + if (p == NULL) { + ColoredPrintf(color, "%s", str); + return; + } + + ColoredPrintf(color, "%s", std::string(str, p).c_str()); + + const char ch = p[1]; + str = p + 2; + if (ch == '@') { + ColoredPrintf(color, "@"); + } else if (ch == 'D') { + color = COLOR_DEFAULT; + } else if (ch == 'R') { + color = COLOR_RED; + } else if (ch == 'G') { + color = COLOR_GREEN; + } else if (ch == 'Y') { + color = COLOR_YELLOW; + } else { + --str; + } + } +} + +static const char kColorEncodedHelpMessage[] = +"This program contains tests written using " GTEST_NAME_ ". You can use the\n" +"following command line flags to control its behavior:\n" +"\n" +"Test Selection:\n" +" @G--" GTEST_FLAG_PREFIX_ "list_tests@D\n" +" List the names of all tests instead of running them. The name of\n" +" TEST(Foo, Bar) is \"Foo.Bar\".\n" +" @G--" GTEST_FLAG_PREFIX_ "filter=@YPOSTIVE_PATTERNS" + "[@G-@YNEGATIVE_PATTERNS]@D\n" +" Run only the tests whose name matches one of the positive patterns but\n" +" none of the negative patterns. '?' matches any single character; '*'\n" +" matches any substring; ':' separates two patterns.\n" +" @G--" GTEST_FLAG_PREFIX_ "also_run_disabled_tests@D\n" +" Run all disabled tests too.\n" +"\n" +"Test Execution:\n" +" @G--" GTEST_FLAG_PREFIX_ "repeat=@Y[COUNT]@D\n" +" Run the tests repeatedly; use a negative count to repeat forever.\n" +" @G--" GTEST_FLAG_PREFIX_ "shuffle@D\n" +" Randomize tests' orders on every iteration.\n" +" @G--" GTEST_FLAG_PREFIX_ "random_seed=@Y[NUMBER]@D\n" +" Random number seed to use for shuffling test orders (between 1 and\n" +" 99999, or 0 to use a seed based on the current time).\n" +"\n" +"Test Output:\n" +" @G--" GTEST_FLAG_PREFIX_ "color=@Y(@Gyes@Y|@Gno@Y|@Gauto@Y)@D\n" +" Enable/disable colored output. The default is @Gauto@D.\n" +" -@G-" GTEST_FLAG_PREFIX_ "print_time=0@D\n" +" Don't print the elapsed time of each test.\n" +" @G--" GTEST_FLAG_PREFIX_ "output=xml@Y[@G:@YDIRECTORY_PATH@G" + GTEST_PATH_SEP_ "@Y|@G:@YFILE_PATH]@D\n" +" Generate an XML report in the given directory or with the given file\n" +" name. @YFILE_PATH@D defaults to @Gtest_details.xml@D.\n" +#if GTEST_CAN_STREAM_RESULTS_ +" @G--" GTEST_FLAG_PREFIX_ "stream_result_to=@YHOST@G:@YPORT@D\n" +" Stream test results to the given server.\n" +#endif // GTEST_CAN_STREAM_RESULTS_ +"\n" +"Assertion Behavior:\n" +#if GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS +" @G--" GTEST_FLAG_PREFIX_ "death_test_style=@Y(@Gfast@Y|@Gthreadsafe@Y)@D\n" +" Set the default death test style.\n" +#endif // GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS +" @G--" GTEST_FLAG_PREFIX_ "break_on_failure@D\n" +" Turn assertion failures into debugger break-points.\n" +" @G--" GTEST_FLAG_PREFIX_ "throw_on_failure@D\n" +" Turn assertion failures into C++ exceptions.\n" +" @G--" GTEST_FLAG_PREFIX_ "catch_exceptions=0@D\n" +" Do not report exceptions as test failures. Instead, allow them\n" +" to crash the program or throw a pop-up (on Windows).\n" +"\n" +"Except for @G--" GTEST_FLAG_PREFIX_ "list_tests@D, you can alternatively set " + "the corresponding\n" +"environment variable of a flag (all letters in upper-case). For example, to\n" +"disable colored text output, you can either specify @G--" GTEST_FLAG_PREFIX_ + "color=no@D or set\n" +"the @G" GTEST_FLAG_PREFIX_UPPER_ "COLOR@D environment variable to @Gno@D.\n" +"\n" +"For more information, please read the " GTEST_NAME_ " documentation at\n" +"@G" GTEST_PROJECT_URL_ "@D. If you find a bug in " GTEST_NAME_ "\n" +"(not one in your own code or tests), please report it to\n" +"@G<" GTEST_DEV_EMAIL_ ">@D.\n"; + +// Parses the command line for Google Test flags, without initializing +// other parts of Google Test. The type parameter CharType can be +// instantiated to either char or wchar_t. +template +void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { + for (int i = 1; i < *argc; i++) { + const std::string arg_string = StreamableToString(argv[i]); + const char* const arg = arg_string.c_str(); + + using internal::ParseBoolFlag; + using internal::ParseInt32Flag; + using internal::ParseStringFlag; + + // Do we see a Google Test flag? + if (ParseBoolFlag(arg, kAlsoRunDisabledTestsFlag, + >EST_FLAG(also_run_disabled_tests)) || + ParseBoolFlag(arg, kBreakOnFailureFlag, + >EST_FLAG(break_on_failure)) || + ParseBoolFlag(arg, kCatchExceptionsFlag, + >EST_FLAG(catch_exceptions)) || + ParseStringFlag(arg, kColorFlag, >EST_FLAG(color)) || + ParseStringFlag(arg, kDeathTestStyleFlag, + >EST_FLAG(death_test_style)) || + ParseBoolFlag(arg, kDeathTestUseFork, + >EST_FLAG(death_test_use_fork)) || + ParseStringFlag(arg, kFilterFlag, >EST_FLAG(filter)) || + ParseStringFlag(arg, kInternalRunDeathTestFlag, + >EST_FLAG(internal_run_death_test)) || + ParseBoolFlag(arg, kListTestsFlag, >EST_FLAG(list_tests)) || + ParseStringFlag(arg, kOutputFlag, >EST_FLAG(output)) || + ParseBoolFlag(arg, kPrintTimeFlag, >EST_FLAG(print_time)) || + ParseInt32Flag(arg, kRandomSeedFlag, >EST_FLAG(random_seed)) || + ParseInt32Flag(arg, kRepeatFlag, >EST_FLAG(repeat)) || + ParseBoolFlag(arg, kShuffleFlag, >EST_FLAG(shuffle)) || + ParseInt32Flag(arg, kStackTraceDepthFlag, + >EST_FLAG(stack_trace_depth)) || + ParseStringFlag(arg, kStreamResultToFlag, + >EST_FLAG(stream_result_to)) || + ParseBoolFlag(arg, kThrowOnFailureFlag, + >EST_FLAG(throw_on_failure)) + ) { + // Yes. Shift the remainder of the argv list left by one. Note + // that argv has (*argc + 1) elements, the last one always being + // NULL. The following loop moves the trailing NULL element as + // well. + for (int j = i; j != *argc; j++) { + argv[j] = argv[j + 1]; + } + + // Decrements the argument count. + (*argc)--; + + // We also need to decrement the iterator as we just removed + // an element. + i--; + } else if (arg_string == "--help" || arg_string == "-h" || + arg_string == "-?" || arg_string == "/?" || + HasGoogleTestFlagPrefix(arg)) { + // Both help flag and unrecognized Google Test flags (excluding + // internal ones) trigger help display. + g_help_flag = true; + } + } + + if (g_help_flag) { + // We print the help here instead of in RUN_ALL_TESTS(), as the + // latter may not be called at all if the user is using Google + // Test with another testing framework. + PrintColorEncoded(kColorEncodedHelpMessage); + } +} + +// Parses the command line for Google Test flags, without initializing +// other parts of Google Test. +void ParseGoogleTestFlagsOnly(int* argc, char** argv) { + ParseGoogleTestFlagsOnlyImpl(argc, argv); +} +void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { + ParseGoogleTestFlagsOnlyImpl(argc, argv); +} + +// The internal implementation of InitGoogleTest(). +// +// The type parameter CharType can be instantiated to either char or +// wchar_t. +template +void InitGoogleTestImpl(int* argc, CharType** argv) { + g_init_gtest_count++; + + // We don't want to run the initialization code twice. + if (g_init_gtest_count != 1) return; + + if (*argc <= 0) return; + + internal::g_executable_path = internal::StreamableToString(argv[0]); + +#if GTEST_HAS_DEATH_TEST + + g_argvs.clear(); + for (int i = 0; i != *argc; i++) { + g_argvs.push_back(StreamableToString(argv[i])); + } + +#endif // GTEST_HAS_DEATH_TEST + + ParseGoogleTestFlagsOnly(argc, argv); + GetUnitTestImpl()->PostFlagParsingInit(); +} + +} // namespace internal + +// Initializes Google Test. This must be called before calling +// RUN_ALL_TESTS(). In particular, it parses a command line for the +// flags that Google Test recognizes. Whenever a Google Test flag is +// seen, it is removed from argv, and *argc is decremented. +// +// No value is returned. Instead, the Google Test flag variables are +// updated. +// +// Calling the function for the second time has no user-visible effect. +void InitGoogleTest(int* argc, char** argv) { + internal::InitGoogleTestImpl(argc, argv); +} + +// This overloaded version can be used in Windows programs compiled in +// UNICODE mode. +void InitGoogleTest(int* argc, wchar_t** argv) { + internal::InitGoogleTestImpl(argc, argv); +} + +} // namespace testing +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan), vladl@google.com (Vlad Losev) +// +// This file implements death tests. + + +#if GTEST_HAS_DEATH_TEST + +# if GTEST_OS_MAC +# include +# endif // GTEST_OS_MAC + +# include +# include +# include + +# if GTEST_OS_LINUX +# include +# endif // GTEST_OS_LINUX + +# include + +# if GTEST_OS_WINDOWS +# include +# else +# include +# include +# endif // GTEST_OS_WINDOWS + +# if GTEST_OS_QNX +# include +# endif // GTEST_OS_QNX + +#endif // GTEST_HAS_DEATH_TEST + + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#undef GTEST_IMPLEMENTATION_ + +namespace testing { + +// Constants. + +// The default death test style. +static const char kDefaultDeathTestStyle[] = "fast"; + +GTEST_DEFINE_string_( + death_test_style, + internal::StringFromGTestEnv("death_test_style", kDefaultDeathTestStyle), + "Indicates how to run a death test in a forked child process: " + "\"threadsafe\" (child process re-executes the test binary " + "from the beginning, running only the specific death test) or " + "\"fast\" (child process runs the death test immediately " + "after forking)."); + +GTEST_DEFINE_bool_( + death_test_use_fork, + internal::BoolFromGTestEnv("death_test_use_fork", false), + "Instructs to use fork()/_exit() instead of clone() in death tests. " + "Ignored and always uses fork() on POSIX systems where clone() is not " + "implemented. Useful when running under valgrind or similar tools if " + "those do not support clone(). Valgrind 3.3.1 will just fail if " + "it sees an unsupported combination of clone() flags. " + "It is not recommended to use this flag w/o valgrind though it will " + "work in 99% of the cases. Once valgrind is fixed, this flag will " + "most likely be removed."); + +namespace internal { +GTEST_DEFINE_string_( + internal_run_death_test, "", + "Indicates the file, line number, temporal index of " + "the single death test to run, and a file descriptor to " + "which a success code may be sent, all separated by " + "the '|' characters. This flag is specified if and only if the current " + "process is a sub-process launched for running a thread-safe " + "death test. FOR INTERNAL USE ONLY."); +} // namespace internal + +#if GTEST_HAS_DEATH_TEST + +namespace internal { + +// Valid only for fast death tests. Indicates the code is running in the +// child process of a fast style death test. +static bool g_in_fast_death_test_child = false; + +// Returns a Boolean value indicating whether the caller is currently +// executing in the context of the death test child process. Tools such as +// Valgrind heap checkers may need this to modify their behavior in death +// tests. IMPORTANT: This is an internal utility. Using it may break the +// implementation of death tests. User code MUST NOT use it. +bool InDeathTestChild() { +# if GTEST_OS_WINDOWS + + // On Windows, death tests are thread-safe regardless of the value of the + // death_test_style flag. + return !GTEST_FLAG(internal_run_death_test).empty(); + +# else + + if (GTEST_FLAG(death_test_style) == "threadsafe") + return !GTEST_FLAG(internal_run_death_test).empty(); + else + return g_in_fast_death_test_child; +#endif +} + +} // namespace internal + +// ExitedWithCode constructor. +ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { +} + +// ExitedWithCode function-call operator. +bool ExitedWithCode::operator()(int exit_status) const { +# if GTEST_OS_WINDOWS + + return exit_status == exit_code_; + +# else + + return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_; + +# endif // GTEST_OS_WINDOWS +} + +# if !GTEST_OS_WINDOWS +// KilledBySignal constructor. +KilledBySignal::KilledBySignal(int signum) : signum_(signum) { +} + +// KilledBySignal function-call operator. +bool KilledBySignal::operator()(int exit_status) const { + return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; +} +# endif // !GTEST_OS_WINDOWS + +namespace internal { + +// Utilities needed for death tests. + +// Generates a textual description of a given exit code, in the format +// specified by wait(2). +static std::string ExitSummary(int exit_code) { + Message m; + +# if GTEST_OS_WINDOWS + + m << "Exited with exit status " << exit_code; + +# else + + if (WIFEXITED(exit_code)) { + m << "Exited with exit status " << WEXITSTATUS(exit_code); + } else if (WIFSIGNALED(exit_code)) { + m << "Terminated by signal " << WTERMSIG(exit_code); + } +# ifdef WCOREDUMP + if (WCOREDUMP(exit_code)) { + m << " (core dumped)"; + } +# endif +# endif // GTEST_OS_WINDOWS + + return m.GetString(); +} + +// Returns true if exit_status describes a process that was terminated +// by a signal, or exited normally with a nonzero exit code. +bool ExitedUnsuccessfully(int exit_status) { + return !ExitedWithCode(0)(exit_status); +} + +# if !GTEST_OS_WINDOWS +// Generates a textual failure message when a death test finds more than +// one thread running, or cannot determine the number of threads, prior +// to executing the given statement. It is the responsibility of the +// caller not to pass a thread_count of 1. +static std::string DeathTestThreadWarning(size_t thread_count) { + Message msg; + msg << "Death tests use fork(), which is unsafe particularly" + << " in a threaded context. For this test, " << GTEST_NAME_ << " "; + if (thread_count == 0) + msg << "couldn't detect the number of threads."; + else + msg << "detected " << thread_count << " threads."; + return msg.GetString(); +} +# endif // !GTEST_OS_WINDOWS + +// Flag characters for reporting a death test that did not die. +static const char kDeathTestLived = 'L'; +static const char kDeathTestReturned = 'R'; +static const char kDeathTestThrew = 'T'; +static const char kDeathTestInternalError = 'I'; + +// An enumeration describing all of the possible ways that a death test can +// conclude. DIED means that the process died while executing the test +// code; LIVED means that process lived beyond the end of the test code; +// RETURNED means that the test statement attempted to execute a return +// statement, which is not allowed; THREW means that the test statement +// returned control by throwing an exception. IN_PROGRESS means the test +// has not yet concluded. +// TODO(vladl@google.com): Unify names and possibly values for +// AbortReason, DeathTestOutcome, and flag characters above. +enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW }; + +// Routine for aborting the program which is safe to call from an +// exec-style death test child process, in which case the error +// message is propagated back to the parent process. Otherwise, the +// message is simply printed to stderr. In either case, the program +// then exits with status 1. +void DeathTestAbort(const std::string& message) { + // On a POSIX system, this function may be called from a threadsafe-style + // death test child process, which operates on a very small stack. Use + // the heap for any additional non-minuscule memory requirements. + const InternalRunDeathTestFlag* const flag = + GetUnitTestImpl()->internal_run_death_test_flag(); + if (flag != NULL) { + FILE* parent = posix::FDOpen(flag->write_fd(), "w"); + fputc(kDeathTestInternalError, parent); + fprintf(parent, "%s", message.c_str()); + fflush(parent); + _exit(1); + } else { + fprintf(stderr, "%s", message.c_str()); + fflush(stderr); + posix::Abort(); + } +} + +// A replacement for CHECK that calls DeathTestAbort if the assertion +// fails. +# define GTEST_DEATH_TEST_CHECK_(expression) \ + do { \ + if (!::testing::internal::IsTrue(expression)) { \ + DeathTestAbort( \ + ::std::string("CHECK failed: File ") + __FILE__ + ", line " \ + + ::testing::internal::StreamableToString(__LINE__) + ": " \ + + #expression); \ + } \ + } while (::testing::internal::AlwaysFalse()) + +// This macro is similar to GTEST_DEATH_TEST_CHECK_, but it is meant for +// evaluating any system call that fulfills two conditions: it must return +// -1 on failure, and set errno to EINTR when it is interrupted and +// should be tried again. The macro expands to a loop that repeatedly +// evaluates the expression as long as it evaluates to -1 and sets +// errno to EINTR. If the expression evaluates to -1 but errno is +// something other than EINTR, DeathTestAbort is called. +# define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \ + do { \ + int gtest_retval; \ + do { \ + gtest_retval = (expression); \ + } while (gtest_retval == -1 && errno == EINTR); \ + if (gtest_retval == -1) { \ + DeathTestAbort( \ + ::std::string("CHECK failed: File ") + __FILE__ + ", line " \ + + ::testing::internal::StreamableToString(__LINE__) + ": " \ + + #expression + " != -1"); \ + } \ + } while (::testing::internal::AlwaysFalse()) + +// Returns the message describing the last system error in errno. +std::string GetLastErrnoDescription() { + return errno == 0 ? "" : posix::StrError(errno); +} + +// This is called from a death test parent process to read a failure +// message from the death test child process and log it with the FATAL +// severity. On Windows, the message is read from a pipe handle. On other +// platforms, it is read from a file descriptor. +static void FailFromInternalError(int fd) { + Message error; + char buffer[256]; + int num_read; + + do { + while ((num_read = posix::Read(fd, buffer, 255)) > 0) { + buffer[num_read] = '\0'; + error << buffer; + } + } while (num_read == -1 && errno == EINTR); + + if (num_read == 0) { + GTEST_LOG_(FATAL) << error.GetString(); + } else { + const int last_error = errno; + GTEST_LOG_(FATAL) << "Error while reading death test internal: " + << GetLastErrnoDescription() << " [" << last_error << "]"; + } +} + +// Death test constructor. Increments the running death test count +// for the current test. +DeathTest::DeathTest() { + TestInfo* const info = GetUnitTestImpl()->current_test_info(); + if (info == NULL) { + DeathTestAbort("Cannot run a death test outside of a TEST or " + "TEST_F construct"); + } +} + +// Creates and returns a death test by dispatching to the current +// death test factory. +bool DeathTest::Create(const char* statement, const RE* regex, + const char* file, int line, DeathTest** test) { + return GetUnitTestImpl()->death_test_factory()->Create( + statement, regex, file, line, test); +} + +const char* DeathTest::LastMessage() { + return last_death_test_message_.c_str(); +} + +void DeathTest::set_last_death_test_message(const std::string& message) { + last_death_test_message_ = message; +} + +std::string DeathTest::last_death_test_message_; + +// Provides cross platform implementation for some death functionality. +class DeathTestImpl : public DeathTest { + protected: + DeathTestImpl(const char* a_statement, const RE* a_regex) + : statement_(a_statement), + regex_(a_regex), + spawned_(false), + status_(-1), + outcome_(IN_PROGRESS), + read_fd_(-1), + write_fd_(-1) {} + + // read_fd_ is expected to be closed and cleared by a derived class. + ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); } + + void Abort(AbortReason reason); + virtual bool Passed(bool status_ok); + + const char* statement() const { return statement_; } + const RE* regex() const { return regex_; } + bool spawned() const { return spawned_; } + void set_spawned(bool is_spawned) { spawned_ = is_spawned; } + int status() const { return status_; } + void set_status(int a_status) { status_ = a_status; } + DeathTestOutcome outcome() const { return outcome_; } + void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outcome; } + int read_fd() const { return read_fd_; } + void set_read_fd(int fd) { read_fd_ = fd; } + int write_fd() const { return write_fd_; } + void set_write_fd(int fd) { write_fd_ = fd; } + + // Called in the parent process only. Reads the result code of the death + // test child process via a pipe, interprets it to set the outcome_ + // member, and closes read_fd_. Outputs diagnostics and terminates in + // case of unexpected codes. + void ReadAndInterpretStatusByte(); + + private: + // The textual content of the code this object is testing. This class + // doesn't own this string and should not attempt to delete it. + const char* const statement_; + // The regular expression which test output must match. DeathTestImpl + // doesn't own this object and should not attempt to delete it. + const RE* const regex_; + // True if the death test child process has been successfully spawned. + bool spawned_; + // The exit status of the child process. + int status_; + // How the death test concluded. + DeathTestOutcome outcome_; + // Descriptor to the read end of the pipe to the child process. It is + // always -1 in the child process. The child keeps its write end of the + // pipe in write_fd_. + int read_fd_; + // Descriptor to the child's write end of the pipe to the parent process. + // It is always -1 in the parent process. The parent keeps its end of the + // pipe in read_fd_. + int write_fd_; +}; + +// Called in the parent process only. Reads the result code of the death +// test child process via a pipe, interprets it to set the outcome_ +// member, and closes read_fd_. Outputs diagnostics and terminates in +// case of unexpected codes. +void DeathTestImpl::ReadAndInterpretStatusByte() { + char flag; + int bytes_read; + + // The read() here blocks until data is available (signifying the + // failure of the death test) or until the pipe is closed (signifying + // its success), so it's okay to call this in the parent before + // the child process has exited. + do { + bytes_read = posix::Read(read_fd(), &flag, 1); + } while (bytes_read == -1 && errno == EINTR); + + if (bytes_read == 0) { + set_outcome(DIED); + } else if (bytes_read == 1) { + switch (flag) { + case kDeathTestReturned: + set_outcome(RETURNED); + break; + case kDeathTestThrew: + set_outcome(THREW); + break; + case kDeathTestLived: + set_outcome(LIVED); + break; + case kDeathTestInternalError: + FailFromInternalError(read_fd()); // Does not return. + break; + default: + GTEST_LOG_(FATAL) << "Death test child process reported " + << "unexpected status byte (" + << static_cast(flag) << ")"; + } + } else { + GTEST_LOG_(FATAL) << "Read from death test child process failed: " + << GetLastErrnoDescription(); + } + GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd())); + set_read_fd(-1); +} + +// Signals that the death test code which should have exited, didn't. +// Should be called only in a death test child process. +// Writes a status byte to the child's status file descriptor, then +// calls _exit(1). +void DeathTestImpl::Abort(AbortReason reason) { + // The parent process considers the death test to be a failure if + // it finds any data in our pipe. So, here we write a single flag byte + // to the pipe, then exit. + const char status_ch = + reason == TEST_DID_NOT_DIE ? kDeathTestLived : + reason == TEST_THREW_EXCEPTION ? kDeathTestThrew : kDeathTestReturned; + + GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1)); + // We are leaking the descriptor here because on some platforms (i.e., + // when built as Windows DLL), destructors of global objects will still + // run after calling _exit(). On such systems, write_fd_ will be + // indirectly closed from the destructor of UnitTestImpl, causing double + // close if it is also closed here. On debug configurations, double close + // may assert. As there are no in-process buffers to flush here, we are + // relying on the OS to close the descriptor after the process terminates + // when the destructors are not run. + _exit(1); // Exits w/o any normal exit hooks (we were supposed to crash) +} + +// Returns an indented copy of stderr output for a death test. +// This makes distinguishing death test output lines from regular log lines +// much easier. +static ::std::string FormatDeathTestOutput(const ::std::string& output) { + ::std::string ret; + for (size_t at = 0; ; ) { + const size_t line_end = output.find('\n', at); + ret += "[ DEATH ] "; + if (line_end == ::std::string::npos) { + ret += output.substr(at); + break; + } + ret += output.substr(at, line_end + 1 - at); + at = line_end + 1; + } + return ret; +} + +// Assesses the success or failure of a death test, using both private +// members which have previously been set, and one argument: +// +// Private data members: +// outcome: An enumeration describing how the death test +// concluded: DIED, LIVED, THREW, or RETURNED. The death test +// fails in the latter three cases. +// status: The exit status of the child process. On *nix, it is in the +// in the format specified by wait(2). On Windows, this is the +// value supplied to the ExitProcess() API or a numeric code +// of the exception that terminated the program. +// regex: A regular expression object to be applied to +// the test's captured standard error output; the death test +// fails if it does not match. +// +// Argument: +// status_ok: true if exit_status is acceptable in the context of +// this particular death test, which fails if it is false +// +// Returns true iff all of the above conditions are met. Otherwise, the +// first failing condition, in the order given above, is the one that is +// reported. Also sets the last death test message string. +bool DeathTestImpl::Passed(bool status_ok) { + if (!spawned()) + return false; + + const std::string error_message = GetCapturedStderr(); + + bool success = false; + Message buffer; + + buffer << "Death test: " << statement() << "\n"; + switch (outcome()) { + case LIVED: + buffer << " Result: failed to die.\n" + << " Error msg:\n" << FormatDeathTestOutput(error_message); + break; + case THREW: + buffer << " Result: threw an exception.\n" + << " Error msg:\n" << FormatDeathTestOutput(error_message); + break; + case RETURNED: + buffer << " Result: illegal return in test statement.\n" + << " Error msg:\n" << FormatDeathTestOutput(error_message); + break; + case DIED: + if (status_ok) { + const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); + if (matched) { + success = true; + } else { + buffer << " Result: died but not with expected error.\n" + << " Expected: " << regex()->pattern() << "\n" + << "Actual msg:\n" << FormatDeathTestOutput(error_message); + } + } else { + buffer << " Result: died but not with expected exit code:\n" + << " " << ExitSummary(status()) << "\n" + << "Actual msg:\n" << FormatDeathTestOutput(error_message); + } + break; + case IN_PROGRESS: + default: + GTEST_LOG_(FATAL) + << "DeathTest::Passed somehow called before conclusion of test"; + } + + DeathTest::set_last_death_test_message(buffer.GetString()); + return success; +} + +# if GTEST_OS_WINDOWS +// WindowsDeathTest implements death tests on Windows. Due to the +// specifics of starting new processes on Windows, death tests there are +// always threadsafe, and Google Test considers the +// --gtest_death_test_style=fast setting to be equivalent to +// --gtest_death_test_style=threadsafe there. +// +// A few implementation notes: Like the Linux version, the Windows +// implementation uses pipes for child-to-parent communication. But due to +// the specifics of pipes on Windows, some extra steps are required: +// +// 1. The parent creates a communication pipe and stores handles to both +// ends of it. +// 2. The parent starts the child and provides it with the information +// necessary to acquire the handle to the write end of the pipe. +// 3. The child acquires the write end of the pipe and signals the parent +// using a Windows event. +// 4. Now the parent can release the write end of the pipe on its side. If +// this is done before step 3, the object's reference count goes down to +// 0 and it is destroyed, preventing the child from acquiring it. The +// parent now has to release it, or read operations on the read end of +// the pipe will not return when the child terminates. +// 5. The parent reads child's output through the pipe (outcome code and +// any possible error messages) from the pipe, and its stderr and then +// determines whether to fail the test. +// +// Note: to distinguish Win32 API calls from the local method and function +// calls, the former are explicitly resolved in the global namespace. +// +class WindowsDeathTest : public DeathTestImpl { + public: + WindowsDeathTest(const char* a_statement, + const RE* a_regex, + const char* file, + int line) + : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {} + + // All of these virtual functions are inherited from DeathTest. + virtual int Wait(); + virtual TestRole AssumeRole(); + + private: + // The name of the file in which the death test is located. + const char* const file_; + // The line number on which the death test is located. + const int line_; + // Handle to the write end of the pipe to the child process. + AutoHandle write_handle_; + // Child process handle. + AutoHandle child_handle_; + // Event the child process uses to signal the parent that it has + // acquired the handle to the write end of the pipe. After seeing this + // event the parent can release its own handles to make sure its + // ReadFile() calls return when the child terminates. + AutoHandle event_handle_; +}; + +// Waits for the child in a death test to exit, returning its exit +// status, or 0 if no child process exists. As a side effect, sets the +// outcome data member. +int WindowsDeathTest::Wait() { + if (!spawned()) + return 0; + + // Wait until the child either signals that it has acquired the write end + // of the pipe or it dies. + const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() }; + switch (::WaitForMultipleObjects(2, + wait_handles, + FALSE, // Waits for any of the handles. + INFINITE)) { + case WAIT_OBJECT_0: + case WAIT_OBJECT_0 + 1: + break; + default: + GTEST_DEATH_TEST_CHECK_(false); // Should not get here. + } + + // The child has acquired the write end of the pipe or exited. + // We release the handle on our side and continue. + write_handle_.Reset(); + event_handle_.Reset(); + + ReadAndInterpretStatusByte(); + + // Waits for the child process to exit if it haven't already. This + // returns immediately if the child has already exited, regardless of + // whether previous calls to WaitForMultipleObjects synchronized on this + // handle or not. + GTEST_DEATH_TEST_CHECK_( + WAIT_OBJECT_0 == ::WaitForSingleObject(child_handle_.Get(), + INFINITE)); + DWORD status_code; + GTEST_DEATH_TEST_CHECK_( + ::GetExitCodeProcess(child_handle_.Get(), &status_code) != FALSE); + child_handle_.Reset(); + set_status(static_cast(status_code)); + return status(); +} + +// The AssumeRole process for a Windows death test. It creates a child +// process with the same executable as the current process to run the +// death test. The child process is given the --gtest_filter and +// --gtest_internal_run_death_test flags such that it knows to run the +// current death test only. +DeathTest::TestRole WindowsDeathTest::AssumeRole() { + const UnitTestImpl* const impl = GetUnitTestImpl(); + const InternalRunDeathTestFlag* const flag = + impl->internal_run_death_test_flag(); + const TestInfo* const info = impl->current_test_info(); + const int death_test_index = info->result()->death_test_count(); + + if (flag != NULL) { + // ParseInternalRunDeathTestFlag() has performed all the necessary + // processing. + set_write_fd(flag->write_fd()); + return EXECUTE_TEST; + } + + // WindowsDeathTest uses an anonymous pipe to communicate results of + // a death test. + SECURITY_ATTRIBUTES handles_are_inheritable = { + sizeof(SECURITY_ATTRIBUTES), NULL, TRUE }; + HANDLE read_handle, write_handle; + GTEST_DEATH_TEST_CHECK_( + ::CreatePipe(&read_handle, &write_handle, &handles_are_inheritable, + 0) // Default buffer size. + != FALSE); + set_read_fd(::_open_osfhandle(reinterpret_cast(read_handle), + O_RDONLY)); + write_handle_.Reset(write_handle); + event_handle_.Reset(::CreateEvent( + &handles_are_inheritable, + TRUE, // The event will automatically reset to non-signaled state. + FALSE, // The initial state is non-signalled. + NULL)); // The even is unnamed. + GTEST_DEATH_TEST_CHECK_(event_handle_.Get() != NULL); + const std::string filter_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + + info->test_case_name() + "." + info->name(); + const std::string internal_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + + "=" + file_ + "|" + StreamableToString(line_) + "|" + + StreamableToString(death_test_index) + "|" + + StreamableToString(static_cast(::GetCurrentProcessId())) + + // size_t has the same width as pointers on both 32-bit and 64-bit + // Windows platforms. + // See http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx. + "|" + StreamableToString(reinterpret_cast(write_handle)) + + "|" + StreamableToString(reinterpret_cast(event_handle_.Get())); + + char executable_path[_MAX_PATH + 1]; // NOLINT + GTEST_DEATH_TEST_CHECK_( + _MAX_PATH + 1 != ::GetModuleFileNameA(NULL, + executable_path, + _MAX_PATH)); + + std::string command_line = + std::string(::GetCommandLineA()) + " " + filter_flag + " \"" + + internal_flag + "\""; + + DeathTest::set_last_death_test_message(""); + + CaptureStderr(); + // Flush the log buffers since the log streams are shared with the child. + FlushInfoLog(); + + // The child process will share the standard handles with the parent. + STARTUPINFOA startup_info; + memset(&startup_info, 0, sizeof(STARTUPINFO)); + startup_info.dwFlags = STARTF_USESTDHANDLES; + startup_info.hStdInput = ::GetStdHandle(STD_INPUT_HANDLE); + startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); + startup_info.hStdError = ::GetStdHandle(STD_ERROR_HANDLE); + + PROCESS_INFORMATION process_info; + GTEST_DEATH_TEST_CHECK_(::CreateProcessA( + executable_path, + const_cast(command_line.c_str()), + NULL, // Retuned process handle is not inheritable. + NULL, // Retuned thread handle is not inheritable. + TRUE, // Child inherits all inheritable handles (for write_handle_). + 0x0, // Default creation flags. + NULL, // Inherit the parent's environment. + UnitTest::GetInstance()->original_working_dir(), + &startup_info, + &process_info) != FALSE); + child_handle_.Reset(process_info.hProcess); + ::CloseHandle(process_info.hThread); + set_spawned(true); + return OVERSEE_TEST; +} +# else // We are not on Windows. + +// ForkingDeathTest provides implementations for most of the abstract +// methods of the DeathTest interface. Only the AssumeRole method is +// left undefined. +class ForkingDeathTest : public DeathTestImpl { + public: + ForkingDeathTest(const char* statement, const RE* regex); + + // All of these virtual functions are inherited from DeathTest. + virtual int Wait(); + + protected: + void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } + + private: + // PID of child process during death test; 0 in the child process itself. + pid_t child_pid_; +}; + +// Constructs a ForkingDeathTest. +ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex) + : DeathTestImpl(a_statement, a_regex), + child_pid_(-1) {} + +// Waits for the child in a death test to exit, returning its exit +// status, or 0 if no child process exists. As a side effect, sets the +// outcome data member. +int ForkingDeathTest::Wait() { + if (!spawned()) + return 0; + + ReadAndInterpretStatusByte(); + + int status_value; + GTEST_DEATH_TEST_CHECK_SYSCALL_(waitpid(child_pid_, &status_value, 0)); + set_status(status_value); + return status_value; +} + +// A concrete death test class that forks, then immediately runs the test +// in the child process. +class NoExecDeathTest : public ForkingDeathTest { + public: + NoExecDeathTest(const char* a_statement, const RE* a_regex) : + ForkingDeathTest(a_statement, a_regex) { } + virtual TestRole AssumeRole(); +}; + +// The AssumeRole process for a fork-and-run death test. It implements a +// straightforward fork, with a simple pipe to transmit the status byte. +DeathTest::TestRole NoExecDeathTest::AssumeRole() { + const size_t thread_count = GetThreadCount(); + if (thread_count != 1) { + GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count); + } + + int pipe_fd[2]; + GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); + + DeathTest::set_last_death_test_message(""); + CaptureStderr(); + // When we fork the process below, the log file buffers are copied, but the + // file descriptors are shared. We flush all log files here so that closing + // the file descriptors in the child process doesn't throw off the + // synchronization between descriptors and buffers in the parent process. + // This is as close to the fork as possible to avoid a race condition in case + // there are multiple threads running before the death test, and another + // thread writes to the log file. + FlushInfoLog(); + + const pid_t child_pid = fork(); + GTEST_DEATH_TEST_CHECK_(child_pid != -1); + set_child_pid(child_pid); + if (child_pid == 0) { + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0])); + set_write_fd(pipe_fd[1]); + // Redirects all logging to stderr in the child process to prevent + // concurrent writes to the log files. We capture stderr in the parent + // process and append the child process' output to a log. + LogToStderr(); + // Event forwarding to the listeners of event listener API mush be shut + // down in death test subprocesses. + GetUnitTestImpl()->listeners()->SuppressEventForwarding(); + g_in_fast_death_test_child = true; + return EXECUTE_TEST; + } else { + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); + set_read_fd(pipe_fd[0]); + set_spawned(true); + return OVERSEE_TEST; + } +} + +// A concrete death test class that forks and re-executes the main +// program from the beginning, with command-line flags set that cause +// only this specific death test to be run. +class ExecDeathTest : public ForkingDeathTest { + public: + ExecDeathTest(const char* a_statement, const RE* a_regex, + const char* file, int line) : + ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { } + virtual TestRole AssumeRole(); + private: + static ::std::vector + GetArgvsForDeathTestChildProcess() { + ::std::vector args = GetInjectableArgvs(); + return args; + } + // The name of the file in which the death test is located. + const char* const file_; + // The line number on which the death test is located. + const int line_; +}; + +// Utility class for accumulating command-line arguments. +class Arguments { + public: + Arguments() { + args_.push_back(NULL); + } + + ~Arguments() { + for (std::vector::iterator i = args_.begin(); i != args_.end(); + ++i) { + free(*i); + } + } + void AddArgument(const char* argument) { + args_.insert(args_.end() - 1, posix::StrDup(argument)); + } + + template + void AddArguments(const ::std::vector& arguments) { + for (typename ::std::vector::const_iterator i = arguments.begin(); + i != arguments.end(); + ++i) { + args_.insert(args_.end() - 1, posix::StrDup(i->c_str())); + } + } + char* const* Argv() { + return &args_[0]; + } + + private: + std::vector args_; +}; + +// A struct that encompasses the arguments to the child process of a +// threadsafe-style death test process. +struct ExecDeathTestArgs { + char* const* argv; // Command-line arguments for the child's call to exec + int close_fd; // File descriptor to close; the read end of a pipe +}; + +# if GTEST_OS_MAC +inline char** GetEnviron() { + // When Google Test is built as a framework on MacOS X, the environ variable + // is unavailable. Apple's documentation (man environ) recommends using + // _NSGetEnviron() instead. + return *_NSGetEnviron(); +} +# else +// Some POSIX platforms expect you to declare environ. extern "C" makes +// it reside in the global namespace. +extern "C" char** environ; +inline char** GetEnviron() { return environ; } +# endif // GTEST_OS_MAC + +# if !GTEST_OS_QNX +// The main function for a threadsafe-style death test child process. +// This function is called in a clone()-ed process and thus must avoid +// any potentially unsafe operations like malloc or libc functions. +static int ExecDeathTestChildMain(void* child_arg) { + ExecDeathTestArgs* const args = static_cast(child_arg); + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd)); + + // We need to execute the test program in the same environment where + // it was originally invoked. Therefore we change to the original + // working directory first. + const char* const original_dir = + UnitTest::GetInstance()->original_working_dir(); + // We can safely call chdir() as it's a direct system call. + if (chdir(original_dir) != 0) { + DeathTestAbort(std::string("chdir(\"") + original_dir + "\") failed: " + + GetLastErrnoDescription()); + return EXIT_FAILURE; + } + + // We can safely call execve() as it's a direct system call. We + // cannot use execvp() as it's a libc function and thus potentially + // unsafe. Since execve() doesn't search the PATH, the user must + // invoke the test program via a valid path that contains at least + // one path separator. + execve(args->argv[0], args->argv, GetEnviron()); + DeathTestAbort(std::string("execve(") + args->argv[0] + ", ...) in " + + original_dir + " failed: " + + GetLastErrnoDescription()); + return EXIT_FAILURE; +} +# endif // !GTEST_OS_QNX + +// Two utility routines that together determine the direction the stack +// grows. +// This could be accomplished more elegantly by a single recursive +// function, but we want to guard against the unlikely possibility of +// a smart compiler optimizing the recursion away. +// +// GTEST_NO_INLINE_ is required to prevent GCC 4.6 from inlining +// StackLowerThanAddress into StackGrowsDown, which then doesn't give +// correct answer. +void StackLowerThanAddress(const void* ptr, bool* result) GTEST_NO_INLINE_; +void StackLowerThanAddress(const void* ptr, bool* result) { + int dummy; + *result = (&dummy < ptr); +} + +bool StackGrowsDown() { + int dummy; + bool result; + StackLowerThanAddress(&dummy, &result); + return result; +} + +// Spawns a child process with the same executable as the current process in +// a thread-safe manner and instructs it to run the death test. The +// implementation uses fork(2) + exec. On systems where clone(2) is +// available, it is used instead, being slightly more thread-safe. On QNX, +// fork supports only single-threaded environments, so this function uses +// spawn(2) there instead. The function dies with an error message if +// anything goes wrong. +static pid_t ExecDeathTestSpawnChild(char* const* argv, int close_fd) { + ExecDeathTestArgs args = { argv, close_fd }; + pid_t child_pid = -1; + +# if GTEST_OS_QNX + // Obtains the current directory and sets it to be closed in the child + // process. + const int cwd_fd = open(".", O_RDONLY); + GTEST_DEATH_TEST_CHECK_(cwd_fd != -1); + GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(cwd_fd, F_SETFD, FD_CLOEXEC)); + // We need to execute the test program in the same environment where + // it was originally invoked. Therefore we change to the original + // working directory first. + const char* const original_dir = + UnitTest::GetInstance()->original_working_dir(); + // We can safely call chdir() as it's a direct system call. + if (chdir(original_dir) != 0) { + DeathTestAbort(std::string("chdir(\"") + original_dir + "\") failed: " + + GetLastErrnoDescription()); + return EXIT_FAILURE; + } + + int fd_flags; + // Set close_fd to be closed after spawn. + GTEST_DEATH_TEST_CHECK_SYSCALL_(fd_flags = fcntl(close_fd, F_GETFD)); + GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(close_fd, F_SETFD, + fd_flags | FD_CLOEXEC)); + struct inheritance inherit = {0}; + // spawn is a system call. + child_pid = spawn(args.argv[0], 0, NULL, &inherit, args.argv, GetEnviron()); + // Restores the current working directory. + GTEST_DEATH_TEST_CHECK_(fchdir(cwd_fd) != -1); + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(cwd_fd)); + +# else // GTEST_OS_QNX +# if GTEST_OS_LINUX + // When a SIGPROF signal is received while fork() or clone() are executing, + // the process may hang. To avoid this, we ignore SIGPROF here and re-enable + // it after the call to fork()/clone() is complete. + struct sigaction saved_sigprof_action; + struct sigaction ignore_sigprof_action; + memset(&ignore_sigprof_action, 0, sizeof(ignore_sigprof_action)); + sigemptyset(&ignore_sigprof_action.sa_mask); + ignore_sigprof_action.sa_handler = SIG_IGN; + GTEST_DEATH_TEST_CHECK_SYSCALL_(sigaction( + SIGPROF, &ignore_sigprof_action, &saved_sigprof_action)); +# endif // GTEST_OS_LINUX + +# if GTEST_HAS_CLONE + const bool use_fork = GTEST_FLAG(death_test_use_fork); + + if (!use_fork) { + static const bool stack_grows_down = StackGrowsDown(); + const size_t stack_size = getpagesize(); + // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead. + void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, + MAP_ANON | MAP_PRIVATE, -1, 0); + GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED); + + // Maximum stack alignment in bytes: For a downward-growing stack, this + // amount is subtracted from size of the stack space to get an address + // that is within the stack space and is aligned on all systems we care + // about. As far as I know there is no ABI with stack alignment greater + // than 64. We assume stack and stack_size already have alignment of + // kMaxStackAlignment. + const size_t kMaxStackAlignment = 64; + void* const stack_top = + static_cast(stack) + + (stack_grows_down ? stack_size - kMaxStackAlignment : 0); + GTEST_DEATH_TEST_CHECK_(stack_size > kMaxStackAlignment && + reinterpret_cast(stack_top) % kMaxStackAlignment == 0); + + child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args); + + GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1); + } +# else + const bool use_fork = true; +# endif // GTEST_HAS_CLONE + + if (use_fork && (child_pid = fork()) == 0) { + ExecDeathTestChildMain(&args); + _exit(0); + } +# endif // GTEST_OS_QNX +# if GTEST_OS_LINUX + GTEST_DEATH_TEST_CHECK_SYSCALL_( + sigaction(SIGPROF, &saved_sigprof_action, NULL)); +# endif // GTEST_OS_LINUX + + GTEST_DEATH_TEST_CHECK_(child_pid != -1); + return child_pid; +} + +// The AssumeRole process for a fork-and-exec death test. It re-executes the +// main program from the beginning, setting the --gtest_filter +// and --gtest_internal_run_death_test flags to cause only the current +// death test to be re-run. +DeathTest::TestRole ExecDeathTest::AssumeRole() { + const UnitTestImpl* const impl = GetUnitTestImpl(); + const InternalRunDeathTestFlag* const flag = + impl->internal_run_death_test_flag(); + const TestInfo* const info = impl->current_test_info(); + const int death_test_index = info->result()->death_test_count(); + + if (flag != NULL) { + set_write_fd(flag->write_fd()); + return EXECUTE_TEST; + } + + int pipe_fd[2]; + GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); + // Clear the close-on-exec flag on the write end of the pipe, lest + // it be closed when the child process does an exec: + GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1); + + const std::string filter_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + + info->test_case_name() + "." + info->name(); + const std::string internal_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + "=" + + file_ + "|" + StreamableToString(line_) + "|" + + StreamableToString(death_test_index) + "|" + + StreamableToString(pipe_fd[1]); + Arguments args; + args.AddArguments(GetArgvsForDeathTestChildProcess()); + args.AddArgument(filter_flag.c_str()); + args.AddArgument(internal_flag.c_str()); + + DeathTest::set_last_death_test_message(""); + + CaptureStderr(); + // See the comment in NoExecDeathTest::AssumeRole for why the next line + // is necessary. + FlushInfoLog(); + + const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]); + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); + set_child_pid(child_pid); + set_read_fd(pipe_fd[0]); + set_spawned(true); + return OVERSEE_TEST; +} + +# endif // !GTEST_OS_WINDOWS + +// Creates a concrete DeathTest-derived class that depends on the +// --gtest_death_test_style flag, and sets the pointer pointed to +// by the "test" argument to its address. If the test should be +// skipped, sets that pointer to NULL. Returns true, unless the +// flag is set to an invalid value. +bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, + const char* file, int line, + DeathTest** test) { + UnitTestImpl* const impl = GetUnitTestImpl(); + const InternalRunDeathTestFlag* const flag = + impl->internal_run_death_test_flag(); + const int death_test_index = impl->current_test_info() + ->increment_death_test_count(); + + if (flag != NULL) { + if (death_test_index > flag->index()) { + DeathTest::set_last_death_test_message( + "Death test count (" + StreamableToString(death_test_index) + + ") somehow exceeded expected maximum (" + + StreamableToString(flag->index()) + ")"); + return false; + } + + if (!(flag->file() == file && flag->line() == line && + flag->index() == death_test_index)) { + *test = NULL; + return true; + } + } + +# if GTEST_OS_WINDOWS + + if (GTEST_FLAG(death_test_style) == "threadsafe" || + GTEST_FLAG(death_test_style) == "fast") { + *test = new WindowsDeathTest(statement, regex, file, line); + } + +# else + + if (GTEST_FLAG(death_test_style) == "threadsafe") { + *test = new ExecDeathTest(statement, regex, file, line); + } else if (GTEST_FLAG(death_test_style) == "fast") { + *test = new NoExecDeathTest(statement, regex); + } + +# endif // GTEST_OS_WINDOWS + + else { // NOLINT - this is more readable than unbalanced brackets inside #if. + DeathTest::set_last_death_test_message( + "Unknown death test style \"" + GTEST_FLAG(death_test_style) + + "\" encountered"); + return false; + } + + return true; +} + +// Splits a given string on a given delimiter, populating a given +// vector with the fields. GTEST_HAS_DEATH_TEST implies that we have +// ::std::string, so we can use it here. +static void SplitString(const ::std::string& str, char delimiter, + ::std::vector< ::std::string>* dest) { + ::std::vector< ::std::string> parsed; + ::std::string::size_type pos = 0; + while (::testing::internal::AlwaysTrue()) { + const ::std::string::size_type colon = str.find(delimiter, pos); + if (colon == ::std::string::npos) { + parsed.push_back(str.substr(pos)); + break; + } else { + parsed.push_back(str.substr(pos, colon - pos)); + pos = colon + 1; + } + } + dest->swap(parsed); +} + +# if GTEST_OS_WINDOWS +// Recreates the pipe and event handles from the provided parameters, +// signals the event, and returns a file descriptor wrapped around the pipe +// handle. This function is called in the child process only. +int GetStatusFileDescriptor(unsigned int parent_process_id, + size_t write_handle_as_size_t, + size_t event_handle_as_size_t) { + AutoHandle parent_process_handle(::OpenProcess(PROCESS_DUP_HANDLE, + FALSE, // Non-inheritable. + parent_process_id)); + if (parent_process_handle.Get() == INVALID_HANDLE_VALUE) { + DeathTestAbort("Unable to open parent process " + + StreamableToString(parent_process_id)); + } + + // TODO(vladl@google.com): Replace the following check with a + // compile-time assertion when available. + GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t)); + + const HANDLE write_handle = + reinterpret_cast(write_handle_as_size_t); + HANDLE dup_write_handle; + + // The newly initialized handle is accessible only in in the parent + // process. To obtain one accessible within the child, we need to use + // DuplicateHandle. + if (!::DuplicateHandle(parent_process_handle.Get(), write_handle, + ::GetCurrentProcess(), &dup_write_handle, + 0x0, // Requested privileges ignored since + // DUPLICATE_SAME_ACCESS is used. + FALSE, // Request non-inheritable handler. + DUPLICATE_SAME_ACCESS)) { + DeathTestAbort("Unable to duplicate the pipe handle " + + StreamableToString(write_handle_as_size_t) + + " from the parent process " + + StreamableToString(parent_process_id)); + } + + const HANDLE event_handle = reinterpret_cast(event_handle_as_size_t); + HANDLE dup_event_handle; + + if (!::DuplicateHandle(parent_process_handle.Get(), event_handle, + ::GetCurrentProcess(), &dup_event_handle, + 0x0, + FALSE, + DUPLICATE_SAME_ACCESS)) { + DeathTestAbort("Unable to duplicate the event handle " + + StreamableToString(event_handle_as_size_t) + + " from the parent process " + + StreamableToString(parent_process_id)); + } + + const int write_fd = + ::_open_osfhandle(reinterpret_cast(dup_write_handle), O_APPEND); + if (write_fd == -1) { + DeathTestAbort("Unable to convert pipe handle " + + StreamableToString(write_handle_as_size_t) + + " to a file descriptor"); + } + + // Signals the parent that the write end of the pipe has been acquired + // so the parent can release its own write end. + ::SetEvent(dup_event_handle); + + return write_fd; +} +# endif // GTEST_OS_WINDOWS + +// Returns a newly created InternalRunDeathTestFlag object with fields +// initialized from the GTEST_FLAG(internal_run_death_test) flag if +// the flag is specified; otherwise returns NULL. +InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { + if (GTEST_FLAG(internal_run_death_test) == "") return NULL; + + // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we + // can use it here. + int line = -1; + int index = -1; + ::std::vector< ::std::string> fields; + SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields); + int write_fd = -1; + +# if GTEST_OS_WINDOWS + + unsigned int parent_process_id = 0; + size_t write_handle_as_size_t = 0; + size_t event_handle_as_size_t = 0; + + if (fields.size() != 6 + || !ParseNaturalNumber(fields[1], &line) + || !ParseNaturalNumber(fields[2], &index) + || !ParseNaturalNumber(fields[3], &parent_process_id) + || !ParseNaturalNumber(fields[4], &write_handle_as_size_t) + || !ParseNaturalNumber(fields[5], &event_handle_as_size_t)) { + DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + + GTEST_FLAG(internal_run_death_test)); + } + write_fd = GetStatusFileDescriptor(parent_process_id, + write_handle_as_size_t, + event_handle_as_size_t); +# else + + if (fields.size() != 4 + || !ParseNaturalNumber(fields[1], &line) + || !ParseNaturalNumber(fields[2], &index) + || !ParseNaturalNumber(fields[3], &write_fd)) { + DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + + GTEST_FLAG(internal_run_death_test)); + } + +# endif // GTEST_OS_WINDOWS + + return new InternalRunDeathTestFlag(fields[0], line, index, write_fd); +} + +} // namespace internal + +#endif // GTEST_HAS_DEATH_TEST + +} // namespace testing +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: keith.ray@gmail.com (Keith Ray) + + +#include + +#if GTEST_OS_WINDOWS_MOBILE +# include +#elif GTEST_OS_WINDOWS +# include +# include +#elif GTEST_OS_SYMBIAN +// Symbian OpenC has PATH_MAX in sys/syslimits.h +# include +#else +# include +# include // Some Linux distributions define PATH_MAX here. +#endif // GTEST_OS_WINDOWS_MOBILE + +#if GTEST_OS_WINDOWS +# define GTEST_PATH_MAX_ _MAX_PATH +#elif defined(PATH_MAX) +# define GTEST_PATH_MAX_ PATH_MAX +#elif defined(_XOPEN_PATH_MAX) +# define GTEST_PATH_MAX_ _XOPEN_PATH_MAX +#else +# define GTEST_PATH_MAX_ _POSIX_PATH_MAX +#endif // GTEST_OS_WINDOWS + + +namespace testing { +namespace internal { + +#if GTEST_OS_WINDOWS +// On Windows, '\\' is the standard path separator, but many tools and the +// Windows API also accept '/' as an alternate path separator. Unless otherwise +// noted, a file path can contain either kind of path separators, or a mixture +// of them. +const char kPathSeparator = '\\'; +const char kAlternatePathSeparator = '/'; +const char kPathSeparatorString[] = "\\"; +const char kAlternatePathSeparatorString[] = "/"; +# if GTEST_OS_WINDOWS_MOBILE +// Windows CE doesn't have a current directory. You should not use +// the current directory in tests on Windows CE, but this at least +// provides a reasonable fallback. +const char kCurrentDirectoryString[] = "\\"; +// Windows CE doesn't define INVALID_FILE_ATTRIBUTES +const DWORD kInvalidFileAttributes = 0xffffffff; +# else +const char kCurrentDirectoryString[] = ".\\"; +# endif // GTEST_OS_WINDOWS_MOBILE +#else +const char kPathSeparator = '/'; +const char kPathSeparatorString[] = "/"; +const char kCurrentDirectoryString[] = "./"; +#endif // GTEST_OS_WINDOWS + +// Returns whether the given character is a valid path separator. +static bool IsPathSeparator(char c) { +#if GTEST_HAS_ALT_PATH_SEP_ + return (c == kPathSeparator) || (c == kAlternatePathSeparator); +#else + return c == kPathSeparator; +#endif +} + +// Returns the current working directory, or "" if unsuccessful. +FilePath FilePath::GetCurrentDir() { +#if GTEST_OS_WINDOWS_MOBILE + // Windows CE doesn't have a current directory, so we just return + // something reasonable. + return FilePath(kCurrentDirectoryString); +#elif GTEST_OS_WINDOWS + char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; + return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); +#else + char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; + return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); +#endif // GTEST_OS_WINDOWS_MOBILE +} + +// Returns a copy of the FilePath with the case-insensitive extension removed. +// Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns +// FilePath("dir/file"). If a case-insensitive extension is not +// found, returns a copy of the original FilePath. +FilePath FilePath::RemoveExtension(const char* extension) const { + const std::string dot_extension = std::string(".") + extension; + if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) { + return FilePath(pathname_.substr( + 0, pathname_.length() - dot_extension.length())); + } + return *this; +} + +// Returns a pointer to the last occurence of a valid path separator in +// the FilePath. On Windows, for example, both '/' and '\' are valid path +// separators. Returns NULL if no path separator was found. +const char* FilePath::FindLastPathSeparator() const { + const char* const last_sep = strrchr(c_str(), kPathSeparator); +#if GTEST_HAS_ALT_PATH_SEP_ + const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator); + // Comparing two pointers of which only one is NULL is undefined. + if (last_alt_sep != NULL && + (last_sep == NULL || last_alt_sep > last_sep)) { + return last_alt_sep; + } +#endif + return last_sep; +} + +// Returns a copy of the FilePath with the directory part removed. +// Example: FilePath("path/to/file").RemoveDirectoryName() returns +// FilePath("file"). If there is no directory part ("just_a_file"), it returns +// the FilePath unmodified. If there is no file part ("just_a_dir/") it +// returns an empty FilePath (""). +// On Windows platform, '\' is the path separator, otherwise it is '/'. +FilePath FilePath::RemoveDirectoryName() const { + const char* const last_sep = FindLastPathSeparator(); + return last_sep ? FilePath(last_sep + 1) : *this; +} + +// RemoveFileName returns the directory path with the filename removed. +// Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". +// If the FilePath is "a_file" or "/a_file", RemoveFileName returns +// FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does +// not have a file, like "just/a/dir/", it returns the FilePath unmodified. +// On Windows platform, '\' is the path separator, otherwise it is '/'. +FilePath FilePath::RemoveFileName() const { + const char* const last_sep = FindLastPathSeparator(); + std::string dir; + if (last_sep) { + dir = std::string(c_str(), last_sep + 1 - c_str()); + } else { + dir = kCurrentDirectoryString; + } + return FilePath(dir); +} + +// Helper functions for naming files in a directory for xml output. + +// Given directory = "dir", base_name = "test", number = 0, +// extension = "xml", returns "dir/test.xml". If number is greater +// than zero (e.g., 12), returns "dir/test_12.xml". +// On Windows platform, uses \ as the separator rather than /. +FilePath FilePath::MakeFileName(const FilePath& directory, + const FilePath& base_name, + int number, + const char* extension) { + std::string file; + if (number == 0) { + file = base_name.string() + "." + extension; + } else { + file = base_name.string() + "_" + StreamableToString(number) + + "." + extension; + } + return ConcatPaths(directory, FilePath(file)); +} + +// Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". +// On Windows, uses \ as the separator rather than /. +FilePath FilePath::ConcatPaths(const FilePath& directory, + const FilePath& relative_path) { + if (directory.IsEmpty()) + return relative_path; + const FilePath dir(directory.RemoveTrailingPathSeparator()); + return FilePath(dir.string() + kPathSeparator + relative_path.string()); +} + +// Returns true if pathname describes something findable in the file-system, +// either a file, directory, or whatever. +bool FilePath::FileOrDirectoryExists() const { +#if GTEST_OS_WINDOWS_MOBILE + LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); + const DWORD attributes = GetFileAttributes(unicode); + delete [] unicode; + return attributes != kInvalidFileAttributes; +#else + posix::StatStruct file_stat; + return posix::Stat(pathname_.c_str(), &file_stat) == 0; +#endif // GTEST_OS_WINDOWS_MOBILE +} + +// Returns true if pathname describes a directory in the file-system +// that exists. +bool FilePath::DirectoryExists() const { + bool result = false; +#if GTEST_OS_WINDOWS + // Don't strip off trailing separator if path is a root directory on + // Windows (like "C:\\"). + const FilePath& path(IsRootDirectory() ? *this : + RemoveTrailingPathSeparator()); +#else + const FilePath& path(*this); +#endif + +#if GTEST_OS_WINDOWS_MOBILE + LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); + const DWORD attributes = GetFileAttributes(unicode); + delete [] unicode; + if ((attributes != kInvalidFileAttributes) && + (attributes & FILE_ATTRIBUTE_DIRECTORY)) { + result = true; + } +#else + posix::StatStruct file_stat; + result = posix::Stat(path.c_str(), &file_stat) == 0 && + posix::IsDir(file_stat); +#endif // GTEST_OS_WINDOWS_MOBILE + + return result; +} + +// Returns true if pathname describes a root directory. (Windows has one +// root directory per disk drive.) +bool FilePath::IsRootDirectory() const { +#if GTEST_OS_WINDOWS + // TODO(wan@google.com): on Windows a network share like + // \\server\share can be a root directory, although it cannot be the + // current directory. Handle this properly. + return pathname_.length() == 3 && IsAbsolutePath(); +#else + return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]); +#endif +} + +// Returns true if pathname describes an absolute path. +bool FilePath::IsAbsolutePath() const { + const char* const name = pathname_.c_str(); +#if GTEST_OS_WINDOWS + return pathname_.length() >= 3 && + ((name[0] >= 'a' && name[0] <= 'z') || + (name[0] >= 'A' && name[0] <= 'Z')) && + name[1] == ':' && + IsPathSeparator(name[2]); +#else + return IsPathSeparator(name[0]); +#endif +} + +// Returns a pathname for a file that does not currently exist. The pathname +// will be directory/base_name.extension or +// directory/base_name_.extension if directory/base_name.extension +// already exists. The number will be incremented until a pathname is found +// that does not already exist. +// Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. +// There could be a race condition if two or more processes are calling this +// function at the same time -- they could both pick the same filename. +FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, + const FilePath& base_name, + const char* extension) { + FilePath full_pathname; + int number = 0; + do { + full_pathname.Set(MakeFileName(directory, base_name, number++, extension)); + } while (full_pathname.FileOrDirectoryExists()); + return full_pathname; +} + +// Returns true if FilePath ends with a path separator, which indicates that +// it is intended to represent a directory. Returns false otherwise. +// This does NOT check that a directory (or file) actually exists. +bool FilePath::IsDirectory() const { + return !pathname_.empty() && + IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]); +} + +// Create directories so that path exists. Returns true if successful or if +// the directories already exist; returns false if unable to create directories +// for any reason. +bool FilePath::CreateDirectoriesRecursively() const { + if (!this->IsDirectory()) { + return false; + } + + if (pathname_.length() == 0 || this->DirectoryExists()) { + return true; + } + + const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName()); + return parent.CreateDirectoriesRecursively() && this->CreateFolder(); +} + +// Create the directory so that path exists. Returns true if successful or +// if the directory already exists; returns false if unable to create the +// directory for any reason, including if the parent directory does not +// exist. Not named "CreateDirectory" because that's a macro on Windows. +bool FilePath::CreateFolder() const { +#if GTEST_OS_WINDOWS_MOBILE + FilePath removed_sep(this->RemoveTrailingPathSeparator()); + LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); + int result = CreateDirectory(unicode, NULL) ? 0 : -1; + delete [] unicode; +#elif GTEST_OS_WINDOWS + int result = _mkdir(pathname_.c_str()); +#else + int result = mkdir(pathname_.c_str(), 0777); +#endif // GTEST_OS_WINDOWS_MOBILE + + if (result == -1) { + return this->DirectoryExists(); // An error is OK if the directory exists. + } + return true; // No error. +} + +// If input name has a trailing separator character, remove it and return the +// name, otherwise return the name string unmodified. +// On Windows platform, uses \ as the separator, other platforms use /. +FilePath FilePath::RemoveTrailingPathSeparator() const { + return IsDirectory() + ? FilePath(pathname_.substr(0, pathname_.length() - 1)) + : *this; +} + +// Removes any redundant separators that might be in the pathname. +// For example, "bar///foo" becomes "bar/foo". Does not eliminate other +// redundancies that might be in a pathname involving "." or "..". +// TODO(wan@google.com): handle Windows network shares (e.g. \\server\share). +void FilePath::Normalize() { + if (pathname_.c_str() == NULL) { + pathname_ = ""; + return; + } + const char* src = pathname_.c_str(); + char* const dest = new char[pathname_.length() + 1]; + char* dest_ptr = dest; + memset(dest_ptr, 0, pathname_.length() + 1); + + while (*src != '\0') { + *dest_ptr = *src; + if (!IsPathSeparator(*src)) { + src++; + } else { +#if GTEST_HAS_ALT_PATH_SEP_ + if (*dest_ptr == kAlternatePathSeparator) { + *dest_ptr = kPathSeparator; + } +#endif + while (IsPathSeparator(*src)) + src++; + } + dest_ptr++; + } + *dest_ptr = '\0'; + pathname_ = dest; + delete[] dest; +} + +} // namespace internal +} // namespace testing +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + + +#include +#include +#include +#include + +#if GTEST_OS_WINDOWS_MOBILE +# include // For TerminateProcess() +#elif GTEST_OS_WINDOWS +# include +# include +#else +# include +#endif // GTEST_OS_WINDOWS_MOBILE + +#if GTEST_OS_MAC +# include +# include +# include +#endif // GTEST_OS_MAC + +#if GTEST_OS_QNX +# include +# include +#endif // GTEST_OS_QNX + + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#undef GTEST_IMPLEMENTATION_ + +namespace testing { +namespace internal { + +#if defined(_MSC_VER) || defined(__BORLANDC__) +// MSVC and C++Builder do not provide a definition of STDERR_FILENO. +const int kStdOutFileno = 1; +const int kStdErrFileno = 2; +#else +const int kStdOutFileno = STDOUT_FILENO; +const int kStdErrFileno = STDERR_FILENO; +#endif // _MSC_VER + +#if GTEST_OS_MAC + +// Returns the number of threads running in the process, or 0 to indicate that +// we cannot detect it. +size_t GetThreadCount() { + const task_t task = mach_task_self(); + mach_msg_type_number_t thread_count; + thread_act_array_t thread_list; + const kern_return_t status = task_threads(task, &thread_list, &thread_count); + if (status == KERN_SUCCESS) { + // task_threads allocates resources in thread_list and we need to free them + // to avoid leaks. + vm_deallocate(task, + reinterpret_cast(thread_list), + sizeof(thread_t) * thread_count); + return static_cast(thread_count); + } else { + return 0; + } +} + +#elif GTEST_OS_QNX + +// Returns the number of threads running in the process, or 0 to indicate that +// we cannot detect it. +size_t GetThreadCount() { + const int fd = open("/proc/self/as", O_RDONLY); + if (fd < 0) { + return 0; + } + procfs_info process_info; + const int status = + devctl(fd, DCMD_PROC_INFO, &process_info, sizeof(process_info), NULL); + close(fd); + if (status == EOK) { + return static_cast(process_info.num_threads); + } else { + return 0; + } +} + +#else + +size_t GetThreadCount() { + // There's no portable way to detect the number of threads, so we just + // return 0 to indicate that we cannot detect it. + return 0; +} + +#endif // GTEST_OS_MAC + +#if GTEST_USES_POSIX_RE + +// Implements RE. Currently only needed for death tests. + +RE::~RE() { + if (is_valid_) { + // regfree'ing an invalid regex might crash because the content + // of the regex is undefined. Since the regex's are essentially + // the same, one cannot be valid (or invalid) without the other + // being so too. + regfree(&partial_regex_); + regfree(&full_regex_); + } + free(const_cast(pattern_)); +} + +// Returns true iff regular expression re matches the entire str. +bool RE::FullMatch(const char* str, const RE& re) { + if (!re.is_valid_) return false; + + regmatch_t match; + return regexec(&re.full_regex_, str, 1, &match, 0) == 0; +} + +// Returns true iff regular expression re matches a substring of str +// (including str itself). +bool RE::PartialMatch(const char* str, const RE& re) { + if (!re.is_valid_) return false; + + regmatch_t match; + return regexec(&re.partial_regex_, str, 1, &match, 0) == 0; +} + +// Initializes an RE from its string representation. +void RE::Init(const char* regex) { + pattern_ = posix::StrDup(regex); + + // Reserves enough bytes to hold the regular expression used for a + // full match. + const size_t full_regex_len = strlen(regex) + 10; + char* const full_pattern = new char[full_regex_len]; + + snprintf(full_pattern, full_regex_len, "^(%s)$", regex); + is_valid_ = regcomp(&full_regex_, full_pattern, REG_EXTENDED) == 0; + // We want to call regcomp(&partial_regex_, ...) even if the + // previous expression returns false. Otherwise partial_regex_ may + // not be properly initialized can may cause trouble when it's + // freed. + // + // Some implementation of POSIX regex (e.g. on at least some + // versions of Cygwin) doesn't accept the empty string as a valid + // regex. We change it to an equivalent form "()" to be safe. + if (is_valid_) { + const char* const partial_regex = (*regex == '\0') ? "()" : regex; + is_valid_ = regcomp(&partial_regex_, partial_regex, REG_EXTENDED) == 0; + } + EXPECT_TRUE(is_valid_) + << "Regular expression \"" << regex + << "\" is not a valid POSIX Extended regular expression."; + + delete[] full_pattern; +} + +#elif GTEST_USES_SIMPLE_RE + +// Returns true iff ch appears anywhere in str (excluding the +// terminating '\0' character). +bool IsInSet(char ch, const char* str) { + return ch != '\0' && strchr(str, ch) != NULL; +} + +// Returns true iff ch belongs to the given classification. Unlike +// similar functions in , these aren't affected by the +// current locale. +bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } +bool IsAsciiPunct(char ch) { + return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); +} +bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } +bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } +bool IsAsciiWordChar(char ch) { + return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') || + ('0' <= ch && ch <= '9') || ch == '_'; +} + +// Returns true iff "\\c" is a supported escape sequence. +bool IsValidEscape(char c) { + return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); +} + +// Returns true iff the given atom (specified by escaped and pattern) +// matches ch. The result is undefined if the atom is invalid. +bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { + if (escaped) { // "\\p" where p is pattern_char. + switch (pattern_char) { + case 'd': return IsAsciiDigit(ch); + case 'D': return !IsAsciiDigit(ch); + case 'f': return ch == '\f'; + case 'n': return ch == '\n'; + case 'r': return ch == '\r'; + case 's': return IsAsciiWhiteSpace(ch); + case 'S': return !IsAsciiWhiteSpace(ch); + case 't': return ch == '\t'; + case 'v': return ch == '\v'; + case 'w': return IsAsciiWordChar(ch); + case 'W': return !IsAsciiWordChar(ch); + } + return IsAsciiPunct(pattern_char) && pattern_char == ch; + } + + return (pattern_char == '.' && ch != '\n') || pattern_char == ch; +} + +// Helper function used by ValidateRegex() to format error messages. +std::string FormatRegexSyntaxError(const char* regex, int index) { + return (Message() << "Syntax error at index " << index + << " in simple regular expression \"" << regex << "\": ").GetString(); +} + +// Generates non-fatal failures and returns false if regex is invalid; +// otherwise returns true. +bool ValidateRegex(const char* regex) { + if (regex == NULL) { + // TODO(wan@google.com): fix the source file location in the + // assertion failures to match where the regex is used in user + // code. + ADD_FAILURE() << "NULL is not a valid simple regular expression."; + return false; + } + + bool is_valid = true; + + // True iff ?, *, or + can follow the previous atom. + bool prev_repeatable = false; + for (int i = 0; regex[i]; i++) { + if (regex[i] == '\\') { // An escape sequence + i++; + if (regex[i] == '\0') { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) + << "'\\' cannot appear at the end."; + return false; + } + + if (!IsValidEscape(regex[i])) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) + << "invalid escape sequence \"\\" << regex[i] << "\"."; + is_valid = false; + } + prev_repeatable = true; + } else { // Not an escape sequence. + const char ch = regex[i]; + + if (ch == '^' && i > 0) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'^' can only appear at the beginning."; + is_valid = false; + } else if (ch == '$' && regex[i + 1] != '\0') { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'$' can only appear at the end."; + is_valid = false; + } else if (IsInSet(ch, "()[]{}|")) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'" << ch << "' is unsupported."; + is_valid = false; + } else if (IsRepeat(ch) && !prev_repeatable) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'" << ch << "' can only follow a repeatable token."; + is_valid = false; + } + + prev_repeatable = !IsInSet(ch, "^$?*+"); + } + } + + return is_valid; +} + +// Matches a repeated regex atom followed by a valid simple regular +// expression. The regex atom is defined as c if escaped is false, +// or \c otherwise. repeat is the repetition meta character (?, *, +// or +). The behavior is undefined if str contains too many +// characters to be indexable by size_t, in which case the test will +// probably time out anyway. We are fine with this limitation as +// std::string has it too. +bool MatchRepetitionAndRegexAtHead( + bool escaped, char c, char repeat, const char* regex, + const char* str) { + const size_t min_count = (repeat == '+') ? 1 : 0; + const size_t max_count = (repeat == '?') ? 1 : + static_cast(-1) - 1; + // We cannot call numeric_limits::max() as it conflicts with the + // max() macro on Windows. + + for (size_t i = 0; i <= max_count; ++i) { + // We know that the atom matches each of the first i characters in str. + if (i >= min_count && MatchRegexAtHead(regex, str + i)) { + // We have enough matches at the head, and the tail matches too. + // Since we only care about *whether* the pattern matches str + // (as opposed to *how* it matches), there is no need to find a + // greedy match. + return true; + } + if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i])) + return false; + } + return false; +} + +// Returns true iff regex matches a prefix of str. regex must be a +// valid simple regular expression and not start with "^", or the +// result is undefined. +bool MatchRegexAtHead(const char* regex, const char* str) { + if (*regex == '\0') // An empty regex matches a prefix of anything. + return true; + + // "$" only matches the end of a string. Note that regex being + // valid guarantees that there's nothing after "$" in it. + if (*regex == '$') + return *str == '\0'; + + // Is the first thing in regex an escape sequence? + const bool escaped = *regex == '\\'; + if (escaped) + ++regex; + if (IsRepeat(regex[1])) { + // MatchRepetitionAndRegexAtHead() calls MatchRegexAtHead(), so + // here's an indirect recursion. It terminates as the regex gets + // shorter in each recursion. + return MatchRepetitionAndRegexAtHead( + escaped, regex[0], regex[1], regex + 2, str); + } else { + // regex isn't empty, isn't "$", and doesn't start with a + // repetition. We match the first atom of regex with the first + // character of str and recurse. + return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) && + MatchRegexAtHead(regex + 1, str + 1); + } +} + +// Returns true iff regex matches any substring of str. regex must be +// a valid simple regular expression, or the result is undefined. +// +// The algorithm is recursive, but the recursion depth doesn't exceed +// the regex length, so we won't need to worry about running out of +// stack space normally. In rare cases the time complexity can be +// exponential with respect to the regex length + the string length, +// but usually it's must faster (often close to linear). +bool MatchRegexAnywhere(const char* regex, const char* str) { + if (regex == NULL || str == NULL) + return false; + + if (*regex == '^') + return MatchRegexAtHead(regex + 1, str); + + // A successful match can be anywhere in str. + do { + if (MatchRegexAtHead(regex, str)) + return true; + } while (*str++ != '\0'); + return false; +} + +// Implements the RE class. + +RE::~RE() { + free(const_cast(pattern_)); + free(const_cast(full_pattern_)); +} + +// Returns true iff regular expression re matches the entire str. +bool RE::FullMatch(const char* str, const RE& re) { + return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_, str); +} + +// Returns true iff regular expression re matches a substring of str +// (including str itself). +bool RE::PartialMatch(const char* str, const RE& re) { + return re.is_valid_ && MatchRegexAnywhere(re.pattern_, str); +} + +// Initializes an RE from its string representation. +void RE::Init(const char* regex) { + pattern_ = full_pattern_ = NULL; + if (regex != NULL) { + pattern_ = posix::StrDup(regex); + } + + is_valid_ = ValidateRegex(regex); + if (!is_valid_) { + // No need to calculate the full pattern when the regex is invalid. + return; + } + + const size_t len = strlen(regex); + // Reserves enough bytes to hold the regular expression used for a + // full match: we need space to prepend a '^', append a '$', and + // terminate the string with '\0'. + char* buffer = static_cast(malloc(len + 3)); + full_pattern_ = buffer; + + if (*regex != '^') + *buffer++ = '^'; // Makes sure full_pattern_ starts with '^'. + + // We don't use snprintf or strncpy, as they trigger a warning when + // compiled with VC++ 8.0. + memcpy(buffer, regex, len); + buffer += len; + + if (len == 0 || regex[len - 1] != '$') + *buffer++ = '$'; // Makes sure full_pattern_ ends with '$'. + + *buffer = '\0'; +} + +#endif // GTEST_USES_POSIX_RE + +const char kUnknownFile[] = "unknown file"; + +// Formats a source file path and a line number as they would appear +// in an error message from the compiler used to compile this code. +GTEST_API_ ::std::string FormatFileLocation(const char* file, int line) { + const std::string file_name(file == NULL ? kUnknownFile : file); + + if (line < 0) { + return file_name + ":"; + } +#ifdef _MSC_VER + return file_name + "(" + StreamableToString(line) + "):"; +#else + return file_name + ":" + StreamableToString(line) + ":"; +#endif // _MSC_VER +} + +// Formats a file location for compiler-independent XML output. +// Although this function is not platform dependent, we put it next to +// FormatFileLocation in order to contrast the two functions. +// Note that FormatCompilerIndependentFileLocation() does NOT append colon +// to the file location it produces, unlike FormatFileLocation(). +GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( + const char* file, int line) { + const std::string file_name(file == NULL ? kUnknownFile : file); + + if (line < 0) + return file_name; + else + return file_name + ":" + StreamableToString(line); +} + + +GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line) + : severity_(severity) { + const char* const marker = + severity == GTEST_INFO ? "[ INFO ]" : + severity == GTEST_WARNING ? "[WARNING]" : + severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]"; + GetStream() << ::std::endl << marker << " " + << FormatFileLocation(file, line).c_str() << ": "; +} + +// Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. +GTestLog::~GTestLog() { + GetStream() << ::std::endl; + if (severity_ == GTEST_FATAL) { + fflush(stderr); + posix::Abort(); + } +} +// Disable Microsoft deprecation warnings for POSIX functions called from +// this class (creat, dup, dup2, and close) +#ifdef _MSC_VER +# pragma warning(push) +# pragma warning(disable: 4996) +#endif // _MSC_VER + +#if GTEST_HAS_STREAM_REDIRECTION + +// Object that captures an output stream (stdout/stderr). +class CapturedStream { + public: + // The ctor redirects the stream to a temporary file. + explicit CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { +# if GTEST_OS_WINDOWS + char temp_dir_path[MAX_PATH + 1] = { '\0' }; // NOLINT + char temp_file_path[MAX_PATH + 1] = { '\0' }; // NOLINT + + ::GetTempPathA(sizeof(temp_dir_path), temp_dir_path); + const UINT success = ::GetTempFileNameA(temp_dir_path, + "gtest_redir", + 0, // Generate unique file name. + temp_file_path); + GTEST_CHECK_(success != 0) + << "Unable to create a temporary file in " << temp_dir_path; + const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE); + GTEST_CHECK_(captured_fd != -1) << "Unable to open temporary file " + << temp_file_path; + filename_ = temp_file_path; +# else + // There's no guarantee that a test has write access to the current + // directory, so we create the temporary file in the /tmp directory + // instead. We use /tmp on most systems, and /sdcard on Android. + // That's because Android doesn't have /tmp. +# if GTEST_OS_LINUX_ANDROID + // Note: Android applications are expected to call the framework's + // Context.getExternalStorageDirectory() method through JNI to get + // the location of the world-writable SD Card directory. However, + // this requires a Context handle, which cannot be retrieved + // globally from native code. Doing so also precludes running the + // code as part of a regular standalone executable, which doesn't + // run in a Dalvik process (e.g. when running it through 'adb shell'). + // + // The location /sdcard is directly accessible from native code + // and is the only location (unofficially) supported by the Android + // team. It's generally a symlink to the real SD Card mount point + // which can be /mnt/sdcard, /mnt/sdcard0, /system/media/sdcard, or + // other OEM-customized locations. Never rely on these, and always + // use /sdcard. + char name_template[] = "/sdcard/gtest_captured_stream.XXXXXX"; +# else + char name_template[] = "/tmp/captured_stream.XXXXXX"; +# endif // GTEST_OS_LINUX_ANDROID + const int captured_fd = mkstemp(name_template); + filename_ = name_template; +# endif // GTEST_OS_WINDOWS + fflush(NULL); + dup2(captured_fd, fd_); + close(captured_fd); + } + + ~CapturedStream() { + remove(filename_.c_str()); + } + + std::string GetCapturedString() { + if (uncaptured_fd_ != -1) { + // Restores the original stream. + fflush(NULL); + dup2(uncaptured_fd_, fd_); + close(uncaptured_fd_); + uncaptured_fd_ = -1; + } + + FILE* const file = posix::FOpen(filename_.c_str(), "r"); + const std::string content = ReadEntireFile(file); + posix::FClose(file); + return content; + } + + private: + // Reads the entire content of a file as an std::string. + static std::string ReadEntireFile(FILE* file); + + // Returns the size (in bytes) of a file. + static size_t GetFileSize(FILE* file); + + const int fd_; // A stream to capture. + int uncaptured_fd_; + // Name of the temporary file holding the stderr output. + ::std::string filename_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream); +}; + +// Returns the size (in bytes) of a file. +size_t CapturedStream::GetFileSize(FILE* file) { + fseek(file, 0, SEEK_END); + return static_cast(ftell(file)); +} + +// Reads the entire content of a file as a string. +std::string CapturedStream::ReadEntireFile(FILE* file) { + const size_t file_size = GetFileSize(file); + char* const buffer = new char[file_size]; + + size_t bytes_last_read = 0; // # of bytes read in the last fread() + size_t bytes_read = 0; // # of bytes read so far + + fseek(file, 0, SEEK_SET); + + // Keeps reading the file until we cannot read further or the + // pre-determined file size is reached. + do { + bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file); + bytes_read += bytes_last_read; + } while (bytes_last_read > 0 && bytes_read < file_size); + + const std::string content(buffer, bytes_read); + delete[] buffer; + + return content; +} + +# ifdef _MSC_VER +# pragma warning(pop) +# endif // _MSC_VER + +static CapturedStream* g_captured_stderr = NULL; +static CapturedStream* g_captured_stdout = NULL; + +// Starts capturing an output stream (stdout/stderr). +void CaptureStream(int fd, const char* stream_name, CapturedStream** stream) { + if (*stream != NULL) { + GTEST_LOG_(FATAL) << "Only one " << stream_name + << " capturer can exist at a time."; + } + *stream = new CapturedStream(fd); +} + +// Stops capturing the output stream and returns the captured string. +std::string GetCapturedStream(CapturedStream** captured_stream) { + const std::string content = (*captured_stream)->GetCapturedString(); + + delete *captured_stream; + *captured_stream = NULL; + + return content; +} + +// Starts capturing stdout. +void CaptureStdout() { + CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout); +} + +// Starts capturing stderr. +void CaptureStderr() { + CaptureStream(kStdErrFileno, "stderr", &g_captured_stderr); +} + +// Stops capturing stdout and returns the captured string. +std::string GetCapturedStdout() { + return GetCapturedStream(&g_captured_stdout); +} + +// Stops capturing stderr and returns the captured string. +std::string GetCapturedStderr() { + return GetCapturedStream(&g_captured_stderr); +} + +#endif // GTEST_HAS_STREAM_REDIRECTION + +#if GTEST_HAS_DEATH_TEST + +// A copy of all command line arguments. Set by InitGoogleTest(). +::std::vector g_argvs; + +static const ::std::vector* g_injected_test_argvs = + NULL; // Owned. + +void SetInjectableArgvs(const ::std::vector* argvs) { + if (g_injected_test_argvs != argvs) + delete g_injected_test_argvs; + g_injected_test_argvs = argvs; +} + +const ::std::vector& GetInjectableArgvs() { + if (g_injected_test_argvs != NULL) { + return *g_injected_test_argvs; + } + return g_argvs; +} +#endif // GTEST_HAS_DEATH_TEST + +#if GTEST_OS_WINDOWS_MOBILE +namespace posix { +void Abort() { + DebugBreak(); + TerminateProcess(GetCurrentProcess(), 1); +} +} // namespace posix +#endif // GTEST_OS_WINDOWS_MOBILE + +// Returns the name of the environment variable corresponding to the +// given flag. For example, FlagToEnvVar("foo") will return +// "GTEST_FOO" in the open-source version. +static std::string FlagToEnvVar(const char* flag) { + const std::string full_flag = + (Message() << GTEST_FLAG_PREFIX_ << flag).GetString(); + + Message env_var; + for (size_t i = 0; i != full_flag.length(); i++) { + env_var << ToUpper(full_flag.c_str()[i]); + } + + return env_var.GetString(); +} + +// Parses 'str' for a 32-bit signed integer. If successful, writes +// the result to *value and returns true; otherwise leaves *value +// unchanged and returns false. +bool ParseInt32(const Message& src_text, const char* str, Int32* value) { + // Parses the environment variable as a decimal integer. + char* end = NULL; + const long long_value = strtol(str, &end, 10); // NOLINT + + // Has strtol() consumed all characters in the string? + if (*end != '\0') { + // No - an invalid character was encountered. + Message msg; + msg << "WARNING: " << src_text + << " is expected to be a 32-bit integer, but actually" + << " has value \"" << str << "\".\n"; + printf("%s", msg.GetString().c_str()); + fflush(stdout); + return false; + } + + // Is the parsed value in the range of an Int32? + const Int32 result = static_cast(long_value); + if (long_value == LONG_MAX || long_value == LONG_MIN || + // The parsed value overflows as a long. (strtol() returns + // LONG_MAX or LONG_MIN when the input overflows.) + result != long_value + // The parsed value overflows as an Int32. + ) { + Message msg; + msg << "WARNING: " << src_text + << " is expected to be a 32-bit integer, but actually" + << " has value " << str << ", which overflows.\n"; + printf("%s", msg.GetString().c_str()); + fflush(stdout); + return false; + } + + *value = result; + return true; +} + +// Reads and returns the Boolean environment variable corresponding to +// the given flag; if it's not set, returns default_value. +// +// The value is considered true iff it's not "0". +bool BoolFromGTestEnv(const char* flag, bool default_value) { + const std::string env_var = FlagToEnvVar(flag); + const char* const string_value = posix::GetEnv(env_var.c_str()); + return string_value == NULL ? + default_value : strcmp(string_value, "0") != 0; +} + +// Reads and returns a 32-bit integer stored in the environment +// variable corresponding to the given flag; if it isn't set or +// doesn't represent a valid 32-bit integer, returns default_value. +Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { + const std::string env_var = FlagToEnvVar(flag); + const char* const string_value = posix::GetEnv(env_var.c_str()); + if (string_value == NULL) { + // The environment variable is not set. + return default_value; + } + + Int32 result = default_value; + if (!ParseInt32(Message() << "Environment variable " << env_var, + string_value, &result)) { + printf("The default value %s is used.\n", + (Message() << default_value).GetString().c_str()); + fflush(stdout); + return default_value; + } + + return result; +} + +// Reads and returns the string environment variable corresponding to +// the given flag; if it's not set, returns default_value. +const char* StringFromGTestEnv(const char* flag, const char* default_value) { + const std::string env_var = FlagToEnvVar(flag); + const char* const value = posix::GetEnv(env_var.c_str()); + return value == NULL ? default_value : value; +} + +} // namespace internal +} // namespace testing +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Test - The Google C++ Testing Framework +// +// This file implements a universal value printer that can print a +// value of any type T: +// +// void ::testing::internal::UniversalPrinter::Print(value, ostream_ptr); +// +// It uses the << operator when possible, and prints the bytes in the +// object otherwise. A user can override its behavior for a class +// type Foo by defining either operator<<(::std::ostream&, const Foo&) +// or void PrintTo(const Foo&, ::std::ostream*) in the namespace that +// defines Foo. + +#include +#include +#include // NOLINT +#include + +namespace testing { + +namespace { + +using ::std::ostream; + +// Prints a segment of bytes in the given object. +void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, + size_t count, ostream* os) { + char text[5] = ""; + for (size_t i = 0; i != count; i++) { + const size_t j = start + i; + if (i != 0) { + // Organizes the bytes into groups of 2 for easy parsing by + // human. + if ((j % 2) == 0) + *os << ' '; + else + *os << '-'; + } + GTEST_SNPRINTF_(text, sizeof(text), "%02X", obj_bytes[j]); + *os << text; + } +} + +// Prints the bytes in the given value to the given ostream. +void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, + ostream* os) { + // Tells the user how big the object is. + *os << count << "-byte object <"; + + const size_t kThreshold = 132; + const size_t kChunkSize = 64; + // If the object size is bigger than kThreshold, we'll have to omit + // some details by printing only the first and the last kChunkSize + // bytes. + // TODO(wan): let the user control the threshold using a flag. + if (count < kThreshold) { + PrintByteSegmentInObjectTo(obj_bytes, 0, count, os); + } else { + PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os); + *os << " ... "; + // Rounds up to 2-byte boundary. + const size_t resume_pos = (count - kChunkSize + 1)/2*2; + PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os); + } + *os << ">"; +} + +} // namespace + +namespace internal2 { + +// Delegates to PrintBytesInObjectToImpl() to print the bytes in the +// given object. The delegation simplifies the implementation, which +// uses the << operator and thus is easier done outside of the +// ::testing::internal namespace, which contains a << operator that +// sometimes conflicts with the one in STL. +void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, + ostream* os) { + PrintBytesInObjectToImpl(obj_bytes, count, os); +} + +} // namespace internal2 + +namespace internal { + +// Depending on the value of a char (or wchar_t), we print it in one +// of three formats: +// - as is if it's a printable ASCII (e.g. 'a', '2', ' '), +// - as a hexidecimal escape sequence (e.g. '\x7F'), or +// - as a special escape sequence (e.g. '\r', '\n'). +enum CharFormat { + kAsIs, + kHexEscape, + kSpecialEscape +}; + +// Returns true if c is a printable ASCII character. We test the +// value of c directly instead of calling isprint(), which is buggy on +// Windows Mobile. +inline bool IsPrintableAscii(wchar_t c) { + return 0x20 <= c && c <= 0x7E; +} + +// Prints a wide or narrow char c as a character literal without the +// quotes, escaping it when necessary; returns how c was formatted. +// The template argument UnsignedChar is the unsigned version of Char, +// which is the type of c. +template +static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { + switch (static_cast(c)) { + case L'\0': + *os << "\\0"; + break; + case L'\'': + *os << "\\'"; + break; + case L'\\': + *os << "\\\\"; + break; + case L'\a': + *os << "\\a"; + break; + case L'\b': + *os << "\\b"; + break; + case L'\f': + *os << "\\f"; + break; + case L'\n': + *os << "\\n"; + break; + case L'\r': + *os << "\\r"; + break; + case L'\t': + *os << "\\t"; + break; + case L'\v': + *os << "\\v"; + break; + default: + if (IsPrintableAscii(c)) { + *os << static_cast(c); + return kAsIs; + } else { + *os << "\\x" + String::FormatHexInt(static_cast(c)); + return kHexEscape; + } + } + return kSpecialEscape; +} + +// Prints a wchar_t c as if it's part of a string literal, escaping it when +// necessary; returns how c was formatted. +static CharFormat PrintAsStringLiteralTo(wchar_t c, ostream* os) { + switch (c) { + case L'\'': + *os << "'"; + return kAsIs; + case L'"': + *os << "\\\""; + return kSpecialEscape; + default: + return PrintAsCharLiteralTo(c, os); + } +} + +// Prints a char c as if it's part of a string literal, escaping it when +// necessary; returns how c was formatted. +static CharFormat PrintAsStringLiteralTo(char c, ostream* os) { + return PrintAsStringLiteralTo( + static_cast(static_cast(c)), os); +} + +// Prints a wide or narrow character c and its code. '\0' is printed +// as "'\\0'", other unprintable characters are also properly escaped +// using the standard C++ escape sequence. The template argument +// UnsignedChar is the unsigned version of Char, which is the type of c. +template +void PrintCharAndCodeTo(Char c, ostream* os) { + // First, print c as a literal in the most readable form we can find. + *os << ((sizeof(c) > 1) ? "L'" : "'"); + const CharFormat format = PrintAsCharLiteralTo(c, os); + *os << "'"; + + // To aid user debugging, we also print c's code in decimal, unless + // it's 0 (in which case c was printed as '\\0', making the code + // obvious). + if (c == 0) + return; + *os << " (" << static_cast(c); + + // For more convenience, we print c's code again in hexidecimal, + // unless c was already printed in the form '\x##' or the code is in + // [1, 9]. + if (format == kHexEscape || (1 <= c && c <= 9)) { + // Do nothing. + } else { + *os << ", 0x" << String::FormatHexInt(static_cast(c)); + } + *os << ")"; +} + +void PrintTo(unsigned char c, ::std::ostream* os) { + PrintCharAndCodeTo(c, os); +} +void PrintTo(signed char c, ::std::ostream* os) { + PrintCharAndCodeTo(c, os); +} + +// Prints a wchar_t as a symbol if it is printable or as its internal +// code otherwise and also as its code. L'\0' is printed as "L'\\0'". +void PrintTo(wchar_t wc, ostream* os) { + PrintCharAndCodeTo(wc, os); +} + +// Prints the given array of characters to the ostream. CharType must be either +// char or wchar_t. +// The array starts at begin, the length is len, it may include '\0' characters +// and may not be NUL-terminated. +template +static void PrintCharsAsStringTo( + const CharType* begin, size_t len, ostream* os) { + const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\""; + *os << kQuoteBegin; + bool is_previous_hex = false; + for (size_t index = 0; index < len; ++index) { + const CharType cur = begin[index]; + if (is_previous_hex && IsXDigit(cur)) { + // Previous character is of '\x..' form and this character can be + // interpreted as another hexadecimal digit in its number. Break string to + // disambiguate. + *os << "\" " << kQuoteBegin; + } + is_previous_hex = PrintAsStringLiteralTo(cur, os) == kHexEscape; + } + *os << "\""; +} + +// Prints a (const) char/wchar_t array of 'len' elements, starting at address +// 'begin'. CharType must be either char or wchar_t. +template +static void UniversalPrintCharArray( + const CharType* begin, size_t len, ostream* os) { + // The code + // const char kFoo[] = "foo"; + // generates an array of 4, not 3, elements, with the last one being '\0'. + // + // Therefore when printing a char array, we don't print the last element if + // it's '\0', such that the output matches the string literal as it's + // written in the source code. + if (len > 0 && begin[len - 1] == '\0') { + PrintCharsAsStringTo(begin, len - 1, os); + return; + } + + // If, however, the last element in the array is not '\0', e.g. + // const char kFoo[] = { 'f', 'o', 'o' }; + // we must print the entire array. We also print a message to indicate + // that the array is not NUL-terminated. + PrintCharsAsStringTo(begin, len, os); + *os << " (no terminating NUL)"; +} + +// Prints a (const) char array of 'len' elements, starting at address 'begin'. +void UniversalPrintArray(const char* begin, size_t len, ostream* os) { + UniversalPrintCharArray(begin, len, os); +} + +// Prints a (const) wchar_t array of 'len' elements, starting at address +// 'begin'. +void UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) { + UniversalPrintCharArray(begin, len, os); +} + +// Prints the given C string to the ostream. +void PrintTo(const char* s, ostream* os) { + if (s == NULL) { + *os << "NULL"; + } else { + *os << ImplicitCast_(s) << " pointing to "; + PrintCharsAsStringTo(s, strlen(s), os); + } +} + +// MSVC compiler can be configured to define whar_t as a typedef +// of unsigned short. Defining an overload for const wchar_t* in that case +// would cause pointers to unsigned shorts be printed as wide strings, +// possibly accessing more memory than intended and causing invalid +// memory accesses. MSVC defines _NATIVE_WCHAR_T_DEFINED symbol when +// wchar_t is implemented as a native type. +#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) +// Prints the given wide C string to the ostream. +void PrintTo(const wchar_t* s, ostream* os) { + if (s == NULL) { + *os << "NULL"; + } else { + *os << ImplicitCast_(s) << " pointing to "; + PrintCharsAsStringTo(s, wcslen(s), os); + } +} +#endif // wchar_t is native + +// Prints a ::string object. +#if GTEST_HAS_GLOBAL_STRING +void PrintStringTo(const ::string& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} +#endif // GTEST_HAS_GLOBAL_STRING + +void PrintStringTo(const ::std::string& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} + +// Prints a ::wstring object. +#if GTEST_HAS_GLOBAL_WSTRING +void PrintWideStringTo(const ::wstring& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} +#endif // GTEST_HAS_GLOBAL_WSTRING + +#if GTEST_HAS_STD_WSTRING +void PrintWideStringTo(const ::std::wstring& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} +#endif // GTEST_HAS_STD_WSTRING + +} // namespace internal + +} // namespace testing +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: mheule@google.com (Markus Heule) +// +// The Google C++ Testing Framework (Google Test) + + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#undef GTEST_IMPLEMENTATION_ + +namespace testing { + +using internal::GetUnitTestImpl; + +// Gets the summary of the failure message by omitting the stack trace +// in it. +std::string TestPartResult::ExtractSummary(const char* message) { + const char* const stack_trace = strstr(message, internal::kStackTraceMarker); + return stack_trace == NULL ? message : + std::string(message, stack_trace); +} + +// Prints a TestPartResult object. +std::ostream& operator<<(std::ostream& os, const TestPartResult& result) { + return os + << result.file_name() << ":" << result.line_number() << ": " + << (result.type() == TestPartResult::kSuccess ? "Success" : + result.type() == TestPartResult::kFatalFailure ? "Fatal failure" : + "Non-fatal failure") << ":\n" + << result.message() << std::endl; +} + +// Appends a TestPartResult to the array. +void TestPartResultArray::Append(const TestPartResult& result) { + array_.push_back(result); +} + +// Returns the TestPartResult at the given index (0-based). +const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const { + if (index < 0 || index >= size()) { + printf("\nInvalid index (%d) into TestPartResultArray.\n", index); + internal::posix::Abort(); + } + + return array_[index]; +} + +// Returns the number of TestPartResult objects in the array. +int TestPartResultArray::size() const { + return static_cast(array_.size()); +} + +namespace internal { + +HasNewFatalFailureHelper::HasNewFatalFailureHelper() + : has_new_fatal_failure_(false), + original_reporter_(GetUnitTestImpl()-> + GetTestPartResultReporterForCurrentThread()) { + GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(this); +} + +HasNewFatalFailureHelper::~HasNewFatalFailureHelper() { + GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread( + original_reporter_); +} + +void HasNewFatalFailureHelper::ReportTestPartResult( + const TestPartResult& result) { + if (result.fatally_failed()) + has_new_fatal_failure_ = true; + original_reporter_->ReportTestPartResult(result); +} + +} // namespace internal + +} // namespace testing +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + + +namespace testing { +namespace internal { + +#if GTEST_HAS_TYPED_TEST_P + +// Skips to the first non-space char in str. Returns an empty string if str +// contains only whitespace characters. +static const char* SkipSpaces(const char* str) { + while (IsSpace(*str)) + str++; + return str; +} + +// Verifies that registered_tests match the test names in +// defined_test_names_; returns registered_tests if successful, or +// aborts the program otherwise. +const char* TypedTestCasePState::VerifyRegisteredTestNames( + const char* file, int line, const char* registered_tests) { + typedef ::std::set::const_iterator DefinedTestIter; + registered_ = true; + + // Skip initial whitespace in registered_tests since some + // preprocessors prefix stringizied literals with whitespace. + registered_tests = SkipSpaces(registered_tests); + + Message errors; + ::std::set tests; + for (const char* names = registered_tests; names != NULL; + names = SkipComma(names)) { + const std::string name = GetPrefixUntilComma(names); + if (tests.count(name) != 0) { + errors << "Test " << name << " is listed more than once.\n"; + continue; + } + + bool found = false; + for (DefinedTestIter it = defined_test_names_.begin(); + it != defined_test_names_.end(); + ++it) { + if (name == *it) { + found = true; + break; + } + } + + if (found) { + tests.insert(name); + } else { + errors << "No test named " << name + << " can be found in this test case.\n"; + } + } + + for (DefinedTestIter it = defined_test_names_.begin(); + it != defined_test_names_.end(); + ++it) { + if (tests.count(*it) == 0) { + errors << "You forgot to list test " << *it << ".\n"; + } + } + + const std::string& errors_str = errors.GetString(); + if (errors_str != "") { + fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), + errors_str.c_str()); + fflush(stderr); + posix::Abort(); + } + + return registered_tests; +} + +#endif // GTEST_HAS_TYPED_TEST_P + +} // namespace internal +} // namespace testing +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Google C++ Mocking Framework (Google Mock) +// +// This file #includes all Google Mock implementation .cc files. The +// purpose is to allow a user to build Google Mock by compiling this +// file alone. + +// This line ensures that gmock.h can be compiled on its own, even +// when it's fused. +#include "gmock/gmock.h" + +// The following lines pull in the real gmock *.cc files. +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file implements cardinalities. + + +#include +#include // NOLINT +#include +#include + +namespace testing { + +namespace { + +// Implements the Between(m, n) cardinality. +class BetweenCardinalityImpl : public CardinalityInterface { + public: + BetweenCardinalityImpl(int min, int max) + : min_(min >= 0 ? min : 0), + max_(max >= min_ ? max : min_) { + std::stringstream ss; + if (min < 0) { + ss << "The invocation lower bound must be >= 0, " + << "but is actually " << min << "."; + internal::Expect(false, __FILE__, __LINE__, ss.str()); + } else if (max < 0) { + ss << "The invocation upper bound must be >= 0, " + << "but is actually " << max << "."; + internal::Expect(false, __FILE__, __LINE__, ss.str()); + } else if (min > max) { + ss << "The invocation upper bound (" << max + << ") must be >= the invocation lower bound (" << min + << ")."; + internal::Expect(false, __FILE__, __LINE__, ss.str()); + } + } + + // Conservative estimate on the lower/upper bound of the number of + // calls allowed. + virtual int ConservativeLowerBound() const { return min_; } + virtual int ConservativeUpperBound() const { return max_; } + + virtual bool IsSatisfiedByCallCount(int call_count) const { + return min_ <= call_count && call_count <= max_; + } + + virtual bool IsSaturatedByCallCount(int call_count) const { + return call_count >= max_; + } + + virtual void DescribeTo(::std::ostream* os) const; + + private: + const int min_; + const int max_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(BetweenCardinalityImpl); +}; + +// Formats "n times" in a human-friendly way. +inline internal::string FormatTimes(int n) { + if (n == 1) { + return "once"; + } else if (n == 2) { + return "twice"; + } else { + std::stringstream ss; + ss << n << " times"; + return ss.str(); + } +} + +// Describes the Between(m, n) cardinality in human-friendly text. +void BetweenCardinalityImpl::DescribeTo(::std::ostream* os) const { + if (min_ == 0) { + if (max_ == 0) { + *os << "never called"; + } else if (max_ == INT_MAX) { + *os << "called any number of times"; + } else { + *os << "called at most " << FormatTimes(max_); + } + } else if (min_ == max_) { + *os << "called " << FormatTimes(min_); + } else if (max_ == INT_MAX) { + *os << "called at least " << FormatTimes(min_); + } else { + // 0 < min_ < max_ < INT_MAX + *os << "called between " << min_ << " and " << max_ << " times"; + } +} + +} // Unnamed namespace + +// Describes the given call count to an ostream. +void Cardinality::DescribeActualCallCountTo(int actual_call_count, + ::std::ostream* os) { + if (actual_call_count > 0) { + *os << "called " << FormatTimes(actual_call_count); + } else { + *os << "never called"; + } +} + +// Creates a cardinality that allows at least n calls. +GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); } + +// Creates a cardinality that allows at most n calls. +GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); } + +// Creates a cardinality that allows any number of calls. +GTEST_API_ Cardinality AnyNumber() { return AtLeast(0); } + +// Creates a cardinality that allows between min and max calls. +GTEST_API_ Cardinality Between(int min, int max) { + return Cardinality(new BetweenCardinalityImpl(min, max)); +} + +// Creates a cardinality that allows exactly n calls. +GTEST_API_ Cardinality Exactly(int n) { return Between(n, n); } + +} // namespace testing +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file defines some utilities useful for implementing Google +// Mock. They are subject to change without notice, so please DO NOT +// USE THEM IN USER CODE. + + +#include +#include // NOLINT +#include + +namespace testing { +namespace internal { + +// Converts an identifier name to a space-separated list of lower-case +// words. Each maximum substring of the form [A-Za-z][a-z]*|\d+ is +// treated as one word. For example, both "FooBar123" and +// "foo_bar_123" are converted to "foo bar 123". +GTEST_API_ string ConvertIdentifierNameToWords(const char* id_name) { + string result; + char prev_char = '\0'; + for (const char* p = id_name; *p != '\0'; prev_char = *(p++)) { + // We don't care about the current locale as the input is + // guaranteed to be a valid C++ identifier name. + const bool starts_new_word = IsUpper(*p) || + (!IsAlpha(prev_char) && IsLower(*p)) || + (!IsDigit(prev_char) && IsDigit(*p)); + + if (IsAlNum(*p)) { + if (starts_new_word && result != "") + result += ' '; + result += ToLower(*p); + } + } + return result; +} + +// This class reports Google Mock failures as Google Test failures. A +// user can define another class in a similar fashion if he intends to +// use Google Mock with a testing framework other than Google Test. +class GoogleTestFailureReporter : public FailureReporterInterface { + public: + virtual void ReportFailure(FailureType type, const char* file, int line, + const string& message) { + AssertHelper(type == kFatal ? + TestPartResult::kFatalFailure : + TestPartResult::kNonFatalFailure, + file, + line, + message.c_str()) = Message(); + if (type == kFatal) { + posix::Abort(); + } + } +}; + +// Returns the global failure reporter. Will create a +// GoogleTestFailureReporter and return it the first time called. +GTEST_API_ FailureReporterInterface* GetFailureReporter() { + // Points to the global failure reporter used by Google Mock. gcc + // guarantees that the following use of failure_reporter is + // thread-safe. We may need to add additional synchronization to + // protect failure_reporter if we port Google Mock to other + // compilers. + static FailureReporterInterface* const failure_reporter = + new GoogleTestFailureReporter(); + return failure_reporter; +} + +// Protects global resources (stdout in particular) used by Log(). +static GTEST_DEFINE_STATIC_MUTEX_(g_log_mutex); + +// Returns true iff a log with the given severity is visible according +// to the --gmock_verbose flag. +GTEST_API_ bool LogIsVisible(LogSeverity severity) { + if (GMOCK_FLAG(verbose) == kInfoVerbosity) { + // Always show the log if --gmock_verbose=info. + return true; + } else if (GMOCK_FLAG(verbose) == kErrorVerbosity) { + // Always hide it if --gmock_verbose=error. + return false; + } else { + // If --gmock_verbose is neither "info" nor "error", we treat it + // as "warning" (its default value). + return severity == kWarning; + } +} + +// Prints the given message to stdout iff 'severity' >= the level +// specified by the --gmock_verbose flag. If stack_frames_to_skip >= +// 0, also prints the stack trace excluding the top +// stack_frames_to_skip frames. In opt mode, any positive +// stack_frames_to_skip is treated as 0, since we don't know which +// function calls will be inlined by the compiler and need to be +// conservative. +GTEST_API_ void Log(LogSeverity severity, + const string& message, + int stack_frames_to_skip) { + if (!LogIsVisible(severity)) + return; + + // Ensures that logs from different threads don't interleave. + MutexLock l(&g_log_mutex); + + // "using ::std::cout;" doesn't work with Symbian's STLport, where cout is a + // macro. + + if (severity == kWarning) { + // Prints a GMOCK WARNING marker to make the warnings easily searchable. + std::cout << "\nGMOCK WARNING:"; + } + // Pre-pends a new-line to message if it doesn't start with one. + if (message.empty() || message[0] != '\n') { + std::cout << "\n"; + } + std::cout << message; + if (stack_frames_to_skip >= 0) { +#ifdef NDEBUG + // In opt mode, we have to be conservative and skip no stack frame. + const int actual_to_skip = 0; +#else + // In dbg mode, we can do what the caller tell us to do (plus one + // for skipping this function's stack frame). + const int actual_to_skip = stack_frames_to_skip + 1; +#endif // NDEBUG + + // Appends a new-line to message if it doesn't end with one. + if (!message.empty() && *message.rbegin() != '\n') { + std::cout << "\n"; + } + std::cout << "Stack trace:\n" + << ::testing::internal::GetCurrentOsStackTraceExceptTop( + ::testing::UnitTest::GetInstance(), actual_to_skip); + } + std::cout << ::std::flush; +} + +} // namespace internal +} // namespace testing +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file implements Matcher, Matcher, and +// utilities for defining matchers. + + +#include +#include +#include + +namespace testing { + +// Constructs a matcher that matches a const string& whose value is +// equal to s. +Matcher::Matcher(const internal::string& s) { + *this = Eq(s); +} + +// Constructs a matcher that matches a const string& whose value is +// equal to s. +Matcher::Matcher(const char* s) { + *this = Eq(internal::string(s)); +} + +// Constructs a matcher that matches a string whose value is equal to s. +Matcher::Matcher(const internal::string& s) { *this = Eq(s); } + +// Constructs a matcher that matches a string whose value is equal to s. +Matcher::Matcher(const char* s) { + *this = Eq(internal::string(s)); +} + +#if GTEST_HAS_STRING_PIECE_ +// Constructs a matcher that matches a const StringPiece& whose value is +// equal to s. +Matcher::Matcher(const internal::string& s) { + *this = Eq(s); +} + +// Constructs a matcher that matches a const StringPiece& whose value is +// equal to s. +Matcher::Matcher(const char* s) { + *this = Eq(internal::string(s)); +} + +// Constructs a matcher that matches a const StringPiece& whose value is +// equal to s. +Matcher::Matcher(StringPiece s) { + *this = Eq(s.ToString()); +} + +// Constructs a matcher that matches a StringPiece whose value is equal to s. +Matcher::Matcher(const internal::string& s) { + *this = Eq(s); +} + +// Constructs a matcher that matches a StringPiece whose value is equal to s. +Matcher::Matcher(const char* s) { + *this = Eq(internal::string(s)); +} + +// Constructs a matcher that matches a StringPiece whose value is equal to s. +Matcher::Matcher(StringPiece s) { + *this = Eq(s.ToString()); +} +#endif // GTEST_HAS_STRING_PIECE_ + +namespace internal { + +// Joins a vector of strings as if they are fields of a tuple; returns +// the joined string. +GTEST_API_ string JoinAsTuple(const Strings& fields) { + switch (fields.size()) { + case 0: + return ""; + case 1: + return fields[0]; + default: + string result = "(" + fields[0]; + for (size_t i = 1; i < fields.size(); i++) { + result += ", "; + result += fields[i]; + } + result += ")"; + return result; + } +} + +// Returns the description for a matcher defined using the MATCHER*() +// macro where the user-supplied description string is "", if +// 'negation' is false; otherwise returns the description of the +// negation of the matcher. 'param_values' contains a list of strings +// that are the print-out of the matcher's parameters. +GTEST_API_ string FormatMatcherDescription(bool negation, + const char* matcher_name, + const Strings& param_values) { + string result = ConvertIdentifierNameToWords(matcher_name); + if (param_values.size() >= 1) + result += " " + JoinAsTuple(param_values); + return negation ? "not (" + result + ")" : result; +} + +// FindMaxBipartiteMatching and its helper class. +// +// Uses the well-known Ford-Fulkerson max flow method to find a maximum +// bipartite matching. Flow is considered to be from left to right. +// There is an implicit source node that is connected to all of the left +// nodes, and an implicit sink node that is connected to all of the +// right nodes. All edges have unit capacity. +// +// Neither the flow graph nor the residual flow graph are represented +// explicitly. Instead, they are implied by the information in 'graph' and +// a vector called 'left_' whose elements are initialized to the +// value kUnused. This represents the initial state of the algorithm, +// where the flow graph is empty, and the residual flow graph has the +// following edges: +// - An edge from source to each left_ node +// - An edge from each right_ node to sink +// - An edge from each left_ node to each right_ node, if the +// corresponding edge exists in 'graph'. +// +// When the TryAugment() method adds a flow, it sets left_[l] = r for some +// nodes l and r. This induces the following changes: +// - The edges (source, l), (l, r), and (r, sink) are added to the +// flow graph. +// - The same three edges are removed from the residual flow graph. +// - The reverse edges (l, source), (r, l), and (sink, r) are added +// to the residual flow graph, which is a directional graph +// representing unused flow capacity. +// +// When the method augments a flow (moving left_[l] from some r1 to some +// other r2), this can be thought of as "undoing" the above steps with +// respect to r1 and "redoing" them with respect to r2. +// +// It bears repeating that the flow graph and residual flow graph are +// never represented explicitly, but can be derived by looking at the +// information in 'graph' and in left_. +// +// As an optimization, there is a second vector called right_ which +// does not provide any new information. Instead, it enables more +// efficient queries about edges entering or leaving the right-side nodes +// of the flow or residual flow graphs. The following invariants are +// maintained: +// +// left[l] == kUnused or right[left[l]] == l +// right[r] == kUnused or left[right[r]] == r +// +// . [ source ] . +// . ||| . +// . ||| . +// . ||\--> left[0]=1 ---\ right[0]=-1 ----\ . +// . || | | . +// . |\---> left[1]=-1 \--> right[1]=0 ---\| . +// . | || . +// . \----> left[2]=2 ------> right[2]=2 --\|| . +// . ||| . +// . elements matchers vvv . +// . [ sink ] . +// +// See Also: +// [1] Cormen, et al (2001). "Section 26.2: The Ford–Fulkerson method". +// "Introduction to Algorithms (Second ed.)", pp. 651–664. +// [2] "Ford–Fulkerson algorithm", Wikipedia, +// 'http://en.wikipedia.org/wiki/Ford%E2%80%93Fulkerson_algorithm' +class MaxBipartiteMatchState { + public: + explicit MaxBipartiteMatchState(const MatchMatrix& graph) + : graph_(&graph), + left_(graph_->LhsSize(), kUnused), + right_(graph_->RhsSize(), kUnused) { + } + + // Returns the edges of a maximal match, each in the form {left, right}. + ElementMatcherPairs Compute() { + // 'seen' is used for path finding { 0: unseen, 1: seen }. + ::std::vector seen; + // Searches the residual flow graph for a path from each left node to + // the sink in the residual flow graph, and if one is found, add flow + // to the graph. It's okay to search through the left nodes once. The + // edge from the implicit source node to each previously-visited left + // node will have flow if that left node has any path to the sink + // whatsoever. Subsequent augmentations can only add flow to the + // network, and cannot take away that previous flow unit from the source. + // Since the source-to-left edge can only carry one flow unit (or, + // each element can be matched to only one matcher), there is no need + // to visit the left nodes more than once looking for augmented paths. + // The flow is known to be possible or impossible by looking at the + // node once. + for (size_t ilhs = 0; ilhs < graph_->LhsSize(); ++ilhs) { + // Reset the path-marking vector and try to find a path from + // source to sink starting at the left_[ilhs] node. + GTEST_CHECK_(left_[ilhs] == kUnused) + << "ilhs: " << ilhs << ", left_[ilhs]: " << left_[ilhs]; + // 'seen' initialized to 'graph_->RhsSize()' copies of 0. + seen.assign(graph_->RhsSize(), 0); + TryAugment(ilhs, &seen); + } + ElementMatcherPairs result; + for (size_t ilhs = 0; ilhs < left_.size(); ++ilhs) { + size_t irhs = left_[ilhs]; + if (irhs == kUnused) continue; + result.push_back(ElementMatcherPair(ilhs, irhs)); + } + return result; + } + + private: + static const size_t kUnused = static_cast(-1); + + // Perform a depth-first search from left node ilhs to the sink. If a + // path is found, flow is added to the network by linking the left and + // right vector elements corresponding each segment of the path. + // Returns true if a path to sink was found, which means that a unit of + // flow was added to the network. The 'seen' vector elements correspond + // to right nodes and are marked to eliminate cycles from the search. + // + // Left nodes will only be explored at most once because they + // are accessible from at most one right node in the residual flow + // graph. + // + // Note that left_[ilhs] is the only element of left_ that TryAugment will + // potentially transition from kUnused to another value. Any other + // left_ element holding kUnused before TryAugment will be holding it + // when TryAugment returns. + // + bool TryAugment(size_t ilhs, ::std::vector* seen) { + for (size_t irhs = 0; irhs < graph_->RhsSize(); ++irhs) { + if ((*seen)[irhs]) + continue; + if (!graph_->HasEdge(ilhs, irhs)) + continue; + // There's an available edge from ilhs to irhs. + (*seen)[irhs] = 1; + // Next a search is performed to determine whether + // this edge is a dead end or leads to the sink. + // + // right_[irhs] == kUnused means that there is residual flow from + // right node irhs to the sink, so we can use that to finish this + // flow path and return success. + // + // Otherwise there is residual flow to some ilhs. We push flow + // along that path and call ourselves recursively to see if this + // ultimately leads to sink. + if (right_[irhs] == kUnused || TryAugment(right_[irhs], seen)) { + // Add flow from left_[ilhs] to right_[irhs]. + left_[ilhs] = irhs; + right_[irhs] = ilhs; + return true; + } + } + return false; + } + + const MatchMatrix* graph_; // not owned + // Each element of the left_ vector represents a left hand side node + // (i.e. an element) and each element of right_ is a right hand side + // node (i.e. a matcher). The values in the left_ vector indicate + // outflow from that node to a node on the the right_ side. The values + // in the right_ indicate inflow, and specify which left_ node is + // feeding that right_ node, if any. For example, left_[3] == 1 means + // there's a flow from element #3 to matcher #1. Such a flow would also + // be redundantly represented in the right_ vector as right_[1] == 3. + // Elements of left_ and right_ are either kUnused or mutually + // referent. Mutually referent means that left_[right_[i]] = i and + // right_[left_[i]] = i. + ::std::vector left_; + ::std::vector right_; + + GTEST_DISALLOW_ASSIGN_(MaxBipartiteMatchState); +}; + +const size_t MaxBipartiteMatchState::kUnused; + +GTEST_API_ ElementMatcherPairs +FindMaxBipartiteMatching(const MatchMatrix& g) { + return MaxBipartiteMatchState(g).Compute(); +} + +static void LogElementMatcherPairVec(const ElementMatcherPairs& pairs, + ::std::ostream* stream) { + typedef ElementMatcherPairs::const_iterator Iter; + ::std::ostream& os = *stream; + os << "{"; + const char *sep = ""; + for (Iter it = pairs.begin(); it != pairs.end(); ++it) { + os << sep << "\n (" + << "element #" << it->first << ", " + << "matcher #" << it->second << ")"; + sep = ","; + } + os << "\n}"; +} + +// Tries to find a pairing, and explains the result. +GTEST_API_ bool FindPairing(const MatchMatrix& matrix, + MatchResultListener* listener) { + ElementMatcherPairs matches = FindMaxBipartiteMatching(matrix); + + size_t max_flow = matches.size(); + bool result = (max_flow == matrix.RhsSize()); + + if (!result) { + if (listener->IsInterested()) { + *listener << "where no permutation of the elements can " + "satisfy all matchers, and the closest match is " + << max_flow << " of " << matrix.RhsSize() + << " matchers with the pairings:\n"; + LogElementMatcherPairVec(matches, listener->stream()); + } + return false; + } + + if (matches.size() > 1) { + if (listener->IsInterested()) { + const char *sep = "where:\n"; + for (size_t mi = 0; mi < matches.size(); ++mi) { + *listener << sep << " - element #" << matches[mi].first + << " is matched by matcher #" << matches[mi].second; + sep = ",\n"; + } + } + } + return true; +} + +bool MatchMatrix::NextGraph() { + for (size_t ilhs = 0; ilhs < LhsSize(); ++ilhs) { + for (size_t irhs = 0; irhs < RhsSize(); ++irhs) { + char& b = matched_[SpaceIndex(ilhs, irhs)]; + if (!b) { + b = 1; + return true; + } + b = 0; + } + } + return false; +} + +void MatchMatrix::Randomize() { + for (size_t ilhs = 0; ilhs < LhsSize(); ++ilhs) { + for (size_t irhs = 0; irhs < RhsSize(); ++irhs) { + char& b = matched_[SpaceIndex(ilhs, irhs)]; + b = static_cast(rand() & 1); // NOLINT + } + } +} + +string MatchMatrix::DebugString() const { + ::std::stringstream ss; + const char *sep = ""; + for (size_t i = 0; i < LhsSize(); ++i) { + ss << sep; + for (size_t j = 0; j < RhsSize(); ++j) { + ss << HasEdge(i, j); + } + sep = ";"; + } + return ss.str(); +} + +void UnorderedElementsAreMatcherImplBase::DescribeToImpl( + ::std::ostream* os) const { + if (matcher_describers_.empty()) { + *os << "is empty"; + return; + } + if (matcher_describers_.size() == 1) { + *os << "has " << Elements(1) << " and that element "; + matcher_describers_[0]->DescribeTo(os); + return; + } + *os << "has " << Elements(matcher_describers_.size()) + << " and there exists some permutation of elements such that:\n"; + const char* sep = ""; + for (size_t i = 0; i != matcher_describers_.size(); ++i) { + *os << sep << " - element #" << i << " "; + matcher_describers_[i]->DescribeTo(os); + sep = ", and\n"; + } +} + +void UnorderedElementsAreMatcherImplBase::DescribeNegationToImpl( + ::std::ostream* os) const { + if (matcher_describers_.empty()) { + *os << "isn't empty"; + return; + } + if (matcher_describers_.size() == 1) { + *os << "doesn't have " << Elements(1) + << ", or has " << Elements(1) << " that "; + matcher_describers_[0]->DescribeNegationTo(os); + return; + } + *os << "doesn't have " << Elements(matcher_describers_.size()) + << ", or there exists no permutation of elements such that:\n"; + const char* sep = ""; + for (size_t i = 0; i != matcher_describers_.size(); ++i) { + *os << sep << " - element #" << i << " "; + matcher_describers_[i]->DescribeTo(os); + sep = ", and\n"; + } +} + +// Checks that all matchers match at least one element, and that all +// elements match at least one matcher. This enables faster matching +// and better error reporting. +// Returns false, writing an explanation to 'listener', if and only +// if the success criteria are not met. +bool UnorderedElementsAreMatcherImplBase:: +VerifyAllElementsAndMatchersAreMatched( + const ::std::vector& element_printouts, + const MatchMatrix& matrix, + MatchResultListener* listener) const { + bool result = true; + ::std::vector element_matched(matrix.LhsSize(), 0); + ::std::vector matcher_matched(matrix.RhsSize(), 0); + + for (size_t ilhs = 0; ilhs < matrix.LhsSize(); ilhs++) { + for (size_t irhs = 0; irhs < matrix.RhsSize(); irhs++) { + char matched = matrix.HasEdge(ilhs, irhs); + element_matched[ilhs] |= matched; + matcher_matched[irhs] |= matched; + } + } + + { + const char* sep = + "where the following matchers don't match any elements:\n"; + for (size_t mi = 0; mi < matcher_matched.size(); ++mi) { + if (matcher_matched[mi]) + continue; + result = false; + if (listener->IsInterested()) { + *listener << sep << "matcher #" << mi << ": "; + matcher_describers_[mi]->DescribeTo(listener->stream()); + sep = ",\n"; + } + } + } + + { + const char* sep = + "where the following elements don't match any matchers:\n"; + const char* outer_sep = ""; + if (!result) { + outer_sep = "\nand "; + } + for (size_t ei = 0; ei < element_matched.size(); ++ei) { + if (element_matched[ei]) + continue; + result = false; + if (listener->IsInterested()) { + *listener << outer_sep << sep << "element #" << ei << ": " + << element_printouts[ei]; + sep = ",\n"; + outer_sep = ""; + } + } + } + return result; +} + +} // namespace internal +} // namespace testing +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file implements the spec builder syntax (ON_CALL and +// EXPECT_CALL). + + +#include +#include // NOLINT +#include +#include +#include + +#if GTEST_OS_CYGWIN || GTEST_OS_LINUX || GTEST_OS_MAC +# include // NOLINT +#endif + +namespace testing { +namespace internal { + +// Protects the mock object registry (in class Mock), all function +// mockers, and all expectations. +GTEST_API_ GTEST_DEFINE_STATIC_MUTEX_(g_gmock_mutex); + +// Logs a message including file and line number information. +GTEST_API_ void LogWithLocation(testing::internal::LogSeverity severity, + const char* file, int line, + const string& message) { + ::std::ostringstream s; + s << file << ":" << line << ": " << message << ::std::endl; + Log(severity, s.str(), 0); +} + +// Constructs an ExpectationBase object. +ExpectationBase::ExpectationBase(const char* a_file, + int a_line, + const string& a_source_text) + : file_(a_file), + line_(a_line), + source_text_(a_source_text), + cardinality_specified_(false), + cardinality_(Exactly(1)), + call_count_(0), + retired_(false), + extra_matcher_specified_(false), + repeated_action_specified_(false), + retires_on_saturation_(false), + last_clause_(kNone), + action_count_checked_(false) {} + +// Destructs an ExpectationBase object. +ExpectationBase::~ExpectationBase() {} + +// Explicitly specifies the cardinality of this expectation. Used by +// the subclasses to implement the .Times() clause. +void ExpectationBase::SpecifyCardinality(const Cardinality& a_cardinality) { + cardinality_specified_ = true; + cardinality_ = a_cardinality; +} + +// Retires all pre-requisites of this expectation. +void ExpectationBase::RetireAllPreRequisites() + GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) { + if (is_retired()) { + // We can take this short-cut as we never retire an expectation + // until we have retired all its pre-requisites. + return; + } + + for (ExpectationSet::const_iterator it = immediate_prerequisites_.begin(); + it != immediate_prerequisites_.end(); ++it) { + ExpectationBase* const prerequisite = it->expectation_base().get(); + if (!prerequisite->is_retired()) { + prerequisite->RetireAllPreRequisites(); + prerequisite->Retire(); + } + } +} + +// Returns true iff all pre-requisites of this expectation have been +// satisfied. +bool ExpectationBase::AllPrerequisitesAreSatisfied() const + GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) { + g_gmock_mutex.AssertHeld(); + for (ExpectationSet::const_iterator it = immediate_prerequisites_.begin(); + it != immediate_prerequisites_.end(); ++it) { + if (!(it->expectation_base()->IsSatisfied()) || + !(it->expectation_base()->AllPrerequisitesAreSatisfied())) + return false; + } + return true; +} + +// Adds unsatisfied pre-requisites of this expectation to 'result'. +void ExpectationBase::FindUnsatisfiedPrerequisites(ExpectationSet* result) const + GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) { + g_gmock_mutex.AssertHeld(); + for (ExpectationSet::const_iterator it = immediate_prerequisites_.begin(); + it != immediate_prerequisites_.end(); ++it) { + if (it->expectation_base()->IsSatisfied()) { + // If *it is satisfied and has a call count of 0, some of its + // pre-requisites may not be satisfied yet. + if (it->expectation_base()->call_count_ == 0) { + it->expectation_base()->FindUnsatisfiedPrerequisites(result); + } + } else { + // Now that we know *it is unsatisfied, we are not so interested + // in whether its pre-requisites are satisfied. Therefore we + // don't recursively call FindUnsatisfiedPrerequisites() here. + *result += *it; + } + } +} + +// Describes how many times a function call matching this +// expectation has occurred. +void ExpectationBase::DescribeCallCountTo(::std::ostream* os) const + GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) { + g_gmock_mutex.AssertHeld(); + + // Describes how many times the function is expected to be called. + *os << " Expected: to be "; + cardinality().DescribeTo(os); + *os << "\n Actual: "; + Cardinality::DescribeActualCallCountTo(call_count(), os); + + // Describes the state of the expectation (e.g. is it satisfied? + // is it active?). + *os << " - " << (IsOverSaturated() ? "over-saturated" : + IsSaturated() ? "saturated" : + IsSatisfied() ? "satisfied" : "unsatisfied") + << " and " + << (is_retired() ? "retired" : "active"); +} + +// Checks the action count (i.e. the number of WillOnce() and +// WillRepeatedly() clauses) against the cardinality if this hasn't +// been done before. Prints a warning if there are too many or too +// few actions. +void ExpectationBase::CheckActionCountIfNotDone() const + GTEST_LOCK_EXCLUDED_(mutex_) { + bool should_check = false; + { + MutexLock l(&mutex_); + if (!action_count_checked_) { + action_count_checked_ = true; + should_check = true; + } + } + + if (should_check) { + if (!cardinality_specified_) { + // The cardinality was inferred - no need to check the action + // count against it. + return; + } + + // The cardinality was explicitly specified. + const int action_count = static_cast(untyped_actions_.size()); + const int upper_bound = cardinality().ConservativeUpperBound(); + const int lower_bound = cardinality().ConservativeLowerBound(); + bool too_many; // True if there are too many actions, or false + // if there are too few. + if (action_count > upper_bound || + (action_count == upper_bound && repeated_action_specified_)) { + too_many = true; + } else if (0 < action_count && action_count < lower_bound && + !repeated_action_specified_) { + too_many = false; + } else { + return; + } + + ::std::stringstream ss; + DescribeLocationTo(&ss); + ss << "Too " << (too_many ? "many" : "few") + << " actions specified in " << source_text() << "...\n" + << "Expected to be "; + cardinality().DescribeTo(&ss); + ss << ", but has " << (too_many ? "" : "only ") + << action_count << " WillOnce()" + << (action_count == 1 ? "" : "s"); + if (repeated_action_specified_) { + ss << " and a WillRepeatedly()"; + } + ss << "."; + Log(kWarning, ss.str(), -1); // -1 means "don't print stack trace". + } +} + +// Implements the .Times() clause. +void ExpectationBase::UntypedTimes(const Cardinality& a_cardinality) { + if (last_clause_ == kTimes) { + ExpectSpecProperty(false, + ".Times() cannot appear " + "more than once in an EXPECT_CALL()."); + } else { + ExpectSpecProperty(last_clause_ < kTimes, + ".Times() cannot appear after " + ".InSequence(), .WillOnce(), .WillRepeatedly(), " + "or .RetiresOnSaturation()."); + } + last_clause_ = kTimes; + + SpecifyCardinality(a_cardinality); +} + +// Points to the implicit sequence introduced by a living InSequence +// object (if any) in the current thread or NULL. +GTEST_API_ ThreadLocal g_gmock_implicit_sequence; + +// Reports an uninteresting call (whose description is in msg) in the +// manner specified by 'reaction'. +void ReportUninterestingCall(CallReaction reaction, const string& msg) { + switch (reaction) { + case kAllow: + Log(kInfo, msg, 3); + break; + case kWarn: + Log(kWarning, msg, 3); + break; + default: // FAIL + Expect(false, NULL, -1, msg); + } +} + +UntypedFunctionMockerBase::UntypedFunctionMockerBase() + : mock_obj_(NULL), name_("") {} + +UntypedFunctionMockerBase::~UntypedFunctionMockerBase() {} + +// Sets the mock object this mock method belongs to, and registers +// this information in the global mock registry. Will be called +// whenever an EXPECT_CALL() or ON_CALL() is executed on this mock +// method. +void UntypedFunctionMockerBase::RegisterOwner(const void* mock_obj) + GTEST_LOCK_EXCLUDED_(g_gmock_mutex) { + { + MutexLock l(&g_gmock_mutex); + mock_obj_ = mock_obj; + } + Mock::Register(mock_obj, this); +} + +// Sets the mock object this mock method belongs to, and sets the name +// of the mock function. Will be called upon each invocation of this +// mock function. +void UntypedFunctionMockerBase::SetOwnerAndName(const void* mock_obj, + const char* name) + GTEST_LOCK_EXCLUDED_(g_gmock_mutex) { + // We protect name_ under g_gmock_mutex in case this mock function + // is called from two threads concurrently. + MutexLock l(&g_gmock_mutex); + mock_obj_ = mock_obj; + name_ = name; +} + +// Returns the name of the function being mocked. Must be called +// after RegisterOwner() or SetOwnerAndName() has been called. +const void* UntypedFunctionMockerBase::MockObject() const + GTEST_LOCK_EXCLUDED_(g_gmock_mutex) { + const void* mock_obj; + { + // We protect mock_obj_ under g_gmock_mutex in case this mock + // function is called from two threads concurrently. + MutexLock l(&g_gmock_mutex); + Assert(mock_obj_ != NULL, __FILE__, __LINE__, + "MockObject() must not be called before RegisterOwner() or " + "SetOwnerAndName() has been called."); + mock_obj = mock_obj_; + } + return mock_obj; +} + +// Returns the name of this mock method. Must be called after +// SetOwnerAndName() has been called. +const char* UntypedFunctionMockerBase::Name() const + GTEST_LOCK_EXCLUDED_(g_gmock_mutex) { + const char* name; + { + // We protect name_ under g_gmock_mutex in case this mock + // function is called from two threads concurrently. + MutexLock l(&g_gmock_mutex); + Assert(name_ != NULL, __FILE__, __LINE__, + "Name() must not be called before SetOwnerAndName() has " + "been called."); + name = name_; + } + return name; +} + +// Calculates the result of invoking this mock function with the given +// arguments, prints it, and returns it. The caller is responsible +// for deleting the result. +const UntypedActionResultHolderBase* +UntypedFunctionMockerBase::UntypedInvokeWith(const void* const untyped_args) + GTEST_LOCK_EXCLUDED_(g_gmock_mutex) { + if (untyped_expectations_.size() == 0) { + // No expectation is set on this mock method - we have an + // uninteresting call. + + // We must get Google Mock's reaction on uninteresting calls + // made on this mock object BEFORE performing the action, + // because the action may DELETE the mock object and make the + // following expression meaningless. + const CallReaction reaction = + Mock::GetReactionOnUninterestingCalls(MockObject()); + + // True iff we need to print this call's arguments and return + // value. This definition must be kept in sync with + // the behavior of ReportUninterestingCall(). + const bool need_to_report_uninteresting_call = + // If the user allows this uninteresting call, we print it + // only when he wants informational messages. + reaction == kAllow ? LogIsVisible(kInfo) : + // If the user wants this to be a warning, we print it only + // when he wants to see warnings. + reaction == kWarn ? LogIsVisible(kWarning) : + // Otherwise, the user wants this to be an error, and we + // should always print detailed information in the error. + true; + + if (!need_to_report_uninteresting_call) { + // Perform the action without printing the call information. + return this->UntypedPerformDefaultAction(untyped_args, ""); + } + + // Warns about the uninteresting call. + ::std::stringstream ss; + this->UntypedDescribeUninterestingCall(untyped_args, &ss); + + // Calculates the function result. + const UntypedActionResultHolderBase* const result = + this->UntypedPerformDefaultAction(untyped_args, ss.str()); + + // Prints the function result. + if (result != NULL) + result->PrintAsActionResult(&ss); + + ReportUninterestingCall(reaction, ss.str()); + return result; + } + + bool is_excessive = false; + ::std::stringstream ss; + ::std::stringstream why; + ::std::stringstream loc; + const void* untyped_action = NULL; + + // The UntypedFindMatchingExpectation() function acquires and + // releases g_gmock_mutex. + const ExpectationBase* const untyped_expectation = + this->UntypedFindMatchingExpectation( + untyped_args, &untyped_action, &is_excessive, + &ss, &why); + const bool found = untyped_expectation != NULL; + + // True iff we need to print the call's arguments and return value. + // This definition must be kept in sync with the uses of Expect() + // and Log() in this function. + const bool need_to_report_call = + !found || is_excessive || LogIsVisible(kInfo); + if (!need_to_report_call) { + // Perform the action without printing the call information. + return + untyped_action == NULL ? + this->UntypedPerformDefaultAction(untyped_args, "") : + this->UntypedPerformAction(untyped_action, untyped_args); + } + + ss << " Function call: " << Name(); + this->UntypedPrintArgs(untyped_args, &ss); + + // In case the action deletes a piece of the expectation, we + // generate the message beforehand. + if (found && !is_excessive) { + untyped_expectation->DescribeLocationTo(&loc); + } + + const UntypedActionResultHolderBase* const result = + untyped_action == NULL ? + this->UntypedPerformDefaultAction(untyped_args, ss.str()) : + this->UntypedPerformAction(untyped_action, untyped_args); + if (result != NULL) + result->PrintAsActionResult(&ss); + ss << "\n" << why.str(); + + if (!found) { + // No expectation matches this call - reports a failure. + Expect(false, NULL, -1, ss.str()); + } else if (is_excessive) { + // We had an upper-bound violation and the failure message is in ss. + Expect(false, untyped_expectation->file(), + untyped_expectation->line(), ss.str()); + } else { + // We had an expected call and the matching expectation is + // described in ss. + Log(kInfo, loc.str() + ss.str(), 2); + } + + return result; +} + +// Returns an Expectation object that references and co-owns exp, +// which must be an expectation on this mock function. +Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) { + for (UntypedExpectations::const_iterator it = + untyped_expectations_.begin(); + it != untyped_expectations_.end(); ++it) { + if (it->get() == exp) { + return Expectation(*it); + } + } + + Assert(false, __FILE__, __LINE__, "Cannot find expectation."); + return Expectation(); + // The above statement is just to make the code compile, and will + // never be executed. +} + +// Verifies that all expectations on this mock function have been +// satisfied. Reports one or more Google Test non-fatal failures +// and returns false if not. +bool UntypedFunctionMockerBase::VerifyAndClearExpectationsLocked() + GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) { + g_gmock_mutex.AssertHeld(); + bool expectations_met = true; + for (UntypedExpectations::const_iterator it = + untyped_expectations_.begin(); + it != untyped_expectations_.end(); ++it) { + ExpectationBase* const untyped_expectation = it->get(); + if (untyped_expectation->IsOverSaturated()) { + // There was an upper-bound violation. Since the error was + // already reported when it occurred, there is no need to do + // anything here. + expectations_met = false; + } else if (!untyped_expectation->IsSatisfied()) { + expectations_met = false; + ::std::stringstream ss; + ss << "Actual function call count doesn't match " + << untyped_expectation->source_text() << "...\n"; + // No need to show the source file location of the expectation + // in the description, as the Expect() call that follows already + // takes care of it. + untyped_expectation->MaybeDescribeExtraMatcherTo(&ss); + untyped_expectation->DescribeCallCountTo(&ss); + Expect(false, untyped_expectation->file(), + untyped_expectation->line(), ss.str()); + } + } + + // Deleting our expectations may trigger other mock objects to be deleted, for + // example if an action contains a reference counted smart pointer to that + // mock object, and that is the last reference. So if we delete our + // expectations within the context of the global mutex we may deadlock when + // this method is called again. Instead, make a copy of the set of + // expectations to delete, clear our set within the mutex, and then clear the + // copied set outside of it. + UntypedExpectations expectations_to_delete; + untyped_expectations_.swap(expectations_to_delete); + + g_gmock_mutex.Unlock(); + expectations_to_delete.clear(); + g_gmock_mutex.Lock(); + + return expectations_met; +} + +} // namespace internal + +// Class Mock. + +namespace { + +typedef std::set FunctionMockers; + +// The current state of a mock object. Such information is needed for +// detecting leaked mock objects and explicitly verifying a mock's +// expectations. +struct MockObjectState { + MockObjectState() + : first_used_file(NULL), first_used_line(-1), leakable(false) {} + + // Where in the source file an ON_CALL or EXPECT_CALL is first + // invoked on this mock object. + const char* first_used_file; + int first_used_line; + ::std::string first_used_test_case; + ::std::string first_used_test; + bool leakable; // true iff it's OK to leak the object. + FunctionMockers function_mockers; // All registered methods of the object. +}; + +// A global registry holding the state of all mock objects that are +// alive. A mock object is added to this registry the first time +// Mock::AllowLeak(), ON_CALL(), or EXPECT_CALL() is called on it. It +// is removed from the registry in the mock object's destructor. +class MockObjectRegistry { + public: + // Maps a mock object (identified by its address) to its state. + typedef std::map StateMap; + + // This destructor will be called when a program exits, after all + // tests in it have been run. By then, there should be no mock + // object alive. Therefore we report any living object as test + // failure, unless the user explicitly asked us to ignore it. + ~MockObjectRegistry() { + // "using ::std::cout;" doesn't work with Symbian's STLport, where cout is + // a macro. + + if (!GMOCK_FLAG(catch_leaked_mocks)) + return; + + int leaked_count = 0; + for (StateMap::const_iterator it = states_.begin(); it != states_.end(); + ++it) { + if (it->second.leakable) // The user said it's fine to leak this object. + continue; + + // TODO(wan@google.com): Print the type of the leaked object. + // This can help the user identify the leaked object. + std::cout << "\n"; + const MockObjectState& state = it->second; + std::cout << internal::FormatFileLocation(state.first_used_file, + state.first_used_line); + std::cout << " ERROR: this mock object"; + if (state.first_used_test != "") { + std::cout << " (used in test " << state.first_used_test_case << "." + << state.first_used_test << ")"; + } + std::cout << " should be deleted but never is. Its address is @" + << it->first << "."; + leaked_count++; + } + if (leaked_count > 0) { + std::cout << "\nERROR: " << leaked_count + << " leaked mock " << (leaked_count == 1 ? "object" : "objects") + << " found at program exit.\n"; + std::cout.flush(); + ::std::cerr.flush(); + // RUN_ALL_TESTS() has already returned when this destructor is + // called. Therefore we cannot use the normal Google Test + // failure reporting mechanism. + _exit(1); // We cannot call exit() as it is not reentrant and + // may already have been called. + } + } + + StateMap& states() { return states_; } + + private: + StateMap states_; +}; + +// Protected by g_gmock_mutex. +MockObjectRegistry g_mock_object_registry; + +// Maps a mock object to the reaction Google Mock should have when an +// uninteresting method is called. Protected by g_gmock_mutex. +std::map g_uninteresting_call_reaction; + +// Sets the reaction Google Mock should have when an uninteresting +// method of the given mock object is called. +void SetReactionOnUninterestingCalls(const void* mock_obj, + internal::CallReaction reaction) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + internal::MutexLock l(&internal::g_gmock_mutex); + g_uninteresting_call_reaction[mock_obj] = reaction; +} + +} // namespace + +// Tells Google Mock to allow uninteresting calls on the given mock +// object. +void Mock::AllowUninterestingCalls(const void* mock_obj) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + SetReactionOnUninterestingCalls(mock_obj, internal::kAllow); +} + +// Tells Google Mock to warn the user about uninteresting calls on the +// given mock object. +void Mock::WarnUninterestingCalls(const void* mock_obj) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + SetReactionOnUninterestingCalls(mock_obj, internal::kWarn); +} + +// Tells Google Mock to fail uninteresting calls on the given mock +// object. +void Mock::FailUninterestingCalls(const void* mock_obj) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + SetReactionOnUninterestingCalls(mock_obj, internal::kFail); +} + +// Tells Google Mock the given mock object is being destroyed and its +// entry in the call-reaction table should be removed. +void Mock::UnregisterCallReaction(const void* mock_obj) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + internal::MutexLock l(&internal::g_gmock_mutex); + g_uninteresting_call_reaction.erase(mock_obj); +} + +// Returns the reaction Google Mock will have on uninteresting calls +// made on the given mock object. +internal::CallReaction Mock::GetReactionOnUninterestingCalls( + const void* mock_obj) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + internal::MutexLock l(&internal::g_gmock_mutex); + return (g_uninteresting_call_reaction.count(mock_obj) == 0) ? + internal::kDefault : g_uninteresting_call_reaction[mock_obj]; +} + +// Tells Google Mock to ignore mock_obj when checking for leaked mock +// objects. +void Mock::AllowLeak(const void* mock_obj) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + internal::MutexLock l(&internal::g_gmock_mutex); + g_mock_object_registry.states()[mock_obj].leakable = true; +} + +// Verifies and clears all expectations on the given mock object. If +// the expectations aren't satisfied, generates one or more Google +// Test non-fatal failures and returns false. +bool Mock::VerifyAndClearExpectations(void* mock_obj) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + internal::MutexLock l(&internal::g_gmock_mutex); + return VerifyAndClearExpectationsLocked(mock_obj); +} + +// Verifies all expectations on the given mock object and clears its +// default actions and expectations. Returns true iff the +// verification was successful. +bool Mock::VerifyAndClear(void* mock_obj) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + internal::MutexLock l(&internal::g_gmock_mutex); + ClearDefaultActionsLocked(mock_obj); + return VerifyAndClearExpectationsLocked(mock_obj); +} + +// Verifies and clears all expectations on the given mock object. If +// the expectations aren't satisfied, generates one or more Google +// Test non-fatal failures and returns false. +bool Mock::VerifyAndClearExpectationsLocked(void* mock_obj) + GTEST_EXCLUSIVE_LOCK_REQUIRED_(internal::g_gmock_mutex) { + internal::g_gmock_mutex.AssertHeld(); + if (g_mock_object_registry.states().count(mock_obj) == 0) { + // No EXPECT_CALL() was set on the given mock object. + return true; + } + + // Verifies and clears the expectations on each mock method in the + // given mock object. + bool expectations_met = true; + FunctionMockers& mockers = + g_mock_object_registry.states()[mock_obj].function_mockers; + for (FunctionMockers::const_iterator it = mockers.begin(); + it != mockers.end(); ++it) { + if (!(*it)->VerifyAndClearExpectationsLocked()) { + expectations_met = false; + } + } + + // We don't clear the content of mockers, as they may still be + // needed by ClearDefaultActionsLocked(). + return expectations_met; +} + +// Registers a mock object and a mock method it owns. +void Mock::Register(const void* mock_obj, + internal::UntypedFunctionMockerBase* mocker) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + internal::MutexLock l(&internal::g_gmock_mutex); + g_mock_object_registry.states()[mock_obj].function_mockers.insert(mocker); +} + +// Tells Google Mock where in the source code mock_obj is used in an +// ON_CALL or EXPECT_CALL. In case mock_obj is leaked, this +// information helps the user identify which object it is. +void Mock::RegisterUseByOnCallOrExpectCall(const void* mock_obj, + const char* file, int line) + GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex) { + internal::MutexLock l(&internal::g_gmock_mutex); + MockObjectState& state = g_mock_object_registry.states()[mock_obj]; + if (state.first_used_file == NULL) { + state.first_used_file = file; + state.first_used_line = line; + const TestInfo* const test_info = + UnitTest::GetInstance()->current_test_info(); + if (test_info != NULL) { + // TODO(wan@google.com): record the test case name when the + // ON_CALL or EXPECT_CALL is invoked from SetUpTestCase() or + // TearDownTestCase(). + state.first_used_test_case = test_info->test_case_name(); + state.first_used_test = test_info->name(); + } + } +} + +// Unregisters a mock method; removes the owning mock object from the +// registry when the last mock method associated with it has been +// unregistered. This is called only in the destructor of +// FunctionMockerBase. +void Mock::UnregisterLocked(internal::UntypedFunctionMockerBase* mocker) + GTEST_EXCLUSIVE_LOCK_REQUIRED_(internal::g_gmock_mutex) { + internal::g_gmock_mutex.AssertHeld(); + for (MockObjectRegistry::StateMap::iterator it = + g_mock_object_registry.states().begin(); + it != g_mock_object_registry.states().end(); ++it) { + FunctionMockers& mockers = it->second.function_mockers; + if (mockers.erase(mocker) > 0) { + // mocker was in mockers and has been just removed. + if (mockers.empty()) { + g_mock_object_registry.states().erase(it); + } + return; + } + } +} + +// Clears all ON_CALL()s set on the given mock object. +void Mock::ClearDefaultActionsLocked(void* mock_obj) + GTEST_EXCLUSIVE_LOCK_REQUIRED_(internal::g_gmock_mutex) { + internal::g_gmock_mutex.AssertHeld(); + + if (g_mock_object_registry.states().count(mock_obj) == 0) { + // No ON_CALL() was set on the given mock object. + return; + } + + // Clears the default actions for each mock method in the given mock + // object. + FunctionMockers& mockers = + g_mock_object_registry.states()[mock_obj].function_mockers; + for (FunctionMockers::const_iterator it = mockers.begin(); + it != mockers.end(); ++it) { + (*it)->ClearDefaultActionsLocked(); + } + + // We don't clear the content of mockers, as they may still be + // needed by VerifyAndClearExpectationsLocked(). +} + +Expectation::Expectation() {} + +Expectation::Expectation( + const internal::linked_ptr& an_expectation_base) + : expectation_base_(an_expectation_base) {} + +Expectation::~Expectation() {} + +// Adds an expectation to a sequence. +void Sequence::AddExpectation(const Expectation& expectation) const { + if (*last_expectation_ != expectation) { + if (last_expectation_->expectation_base() != NULL) { + expectation.expectation_base()->immediate_prerequisites_ + += *last_expectation_; + } + *last_expectation_ = expectation; + } +} + +// Creates the implicit sequence if there isn't one. +InSequence::InSequence() { + if (internal::g_gmock_implicit_sequence.get() == NULL) { + internal::g_gmock_implicit_sequence.set(new Sequence); + sequence_created_ = true; + } else { + sequence_created_ = false; + } +} + +// Deletes the implicit sequence if it was created by the constructor +// of this object. +InSequence::~InSequence() { + if (sequence_created_) { + delete internal::g_gmock_implicit_sequence.get(); + internal::g_gmock_implicit_sequence.set(NULL); + } +} + +} // namespace testing +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + + +namespace testing { + +// TODO(wan@google.com): support using environment variables to +// control the flag values, like what Google Test does. + +GMOCK_DEFINE_bool_(catch_leaked_mocks, true, + "true iff Google Mock should report leaked mock objects " + "as failures."); + +GMOCK_DEFINE_string_(verbose, internal::kWarningVerbosity, + "Controls how verbose Google Mock's output is." + " Valid values:\n" + " info - prints all messages.\n" + " warning - prints warnings and errors.\n" + " error - prints errors only."); + +namespace internal { + +// Parses a string as a command line flag. The string should have the +// format "--gmock_flag=value". When def_optional is true, the +// "=value" part can be omitted. +// +// Returns the value of the flag, or NULL if the parsing failed. +static const char* ParseGoogleMockFlagValue(const char* str, + const char* flag, + bool def_optional) { + // str and flag must not be NULL. + if (str == NULL || flag == NULL) return NULL; + + // The flag must start with "--gmock_". + const std::string flag_str = std::string("--gmock_") + flag; + const size_t flag_len = flag_str.length(); + if (strncmp(str, flag_str.c_str(), flag_len) != 0) return NULL; + + // Skips the flag name. + const char* flag_end = str + flag_len; + + // When def_optional is true, it's OK to not have a "=value" part. + if (def_optional && (flag_end[0] == '\0')) { + return flag_end; + } + + // If def_optional is true and there are more characters after the + // flag name, or if def_optional is false, there must be a '=' after + // the flag name. + if (flag_end[0] != '=') return NULL; + + // Returns the string after "=". + return flag_end + 1; +} + +// Parses a string for a Google Mock bool flag, in the form of +// "--gmock_flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +static bool ParseGoogleMockBoolFlag(const char* str, const char* flag, + bool* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseGoogleMockFlagValue(str, flag, true); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Converts the string value to a bool. + *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F'); + return true; +} + +// Parses a string for a Google Mock string flag, in the form of +// "--gmock_flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +static bool ParseGoogleMockStringFlag(const char* str, const char* flag, + std::string* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseGoogleMockFlagValue(str, flag, false); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Sets *value to the value of the flag. + *value = value_str; + return true; +} + +// The internal implementation of InitGoogleMock(). +// +// The type parameter CharType can be instantiated to either char or +// wchar_t. +template +void InitGoogleMockImpl(int* argc, CharType** argv) { + // Makes sure Google Test is initialized. InitGoogleTest() is + // idempotent, so it's fine if the user has already called it. + InitGoogleTest(argc, argv); + if (*argc <= 0) return; + + for (int i = 1; i != *argc; i++) { + const std::string arg_string = StreamableToString(argv[i]); + const char* const arg = arg_string.c_str(); + + // Do we see a Google Mock flag? + if (ParseGoogleMockBoolFlag(arg, "catch_leaked_mocks", + &GMOCK_FLAG(catch_leaked_mocks)) || + ParseGoogleMockStringFlag(arg, "verbose", &GMOCK_FLAG(verbose))) { + // Yes. Shift the remainder of the argv list left by one. Note + // that argv has (*argc + 1) elements, the last one always being + // NULL. The following loop moves the trailing NULL element as + // well. + for (int j = i; j != *argc; j++) { + argv[j] = argv[j + 1]; + } + + // Decrements the argument count. + (*argc)--; + + // We also need to decrement the iterator as we just removed + // an element. + i--; + } + } +} + +} // namespace internal + +// Initializes Google Mock. This must be called before running the +// tests. In particular, it parses a command line for the flags that +// Google Mock recognizes. Whenever a Google Mock flag is seen, it is +// removed from argv, and *argc is decremented. +// +// No value is returned. Instead, the Google Mock flag variables are +// updated. +// +// Since Google Test is needed for Google Mock to work, this function +// also initializes Google Test and parses its flags, if that hasn't +// been done. +GTEST_API_ void InitGoogleMock(int* argc, char** argv) { + internal::InitGoogleMockImpl(argc, argv); +} + +// This overloaded version can be used in Windows programs compiled in +// UNICODE mode. +GTEST_API_ void InitGoogleMock(int* argc, wchar_t** argv) { + internal::InitGoogleMockImpl(argc, argv); +} + +} // namespace testing diff --git a/UnitTest/gmock-1.7.0/fused-src/gmock/gmock.h b/UnitTest/gmock-1.7.0/fused-src/gmock/gmock.h new file mode 100644 index 0000000..e8dd7fc --- /dev/null +++ b/UnitTest/gmock-1.7.0/fused-src/gmock/gmock.h @@ -0,0 +1,14198 @@ +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This is the main header file a user should include. + +#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_H_ +#define GMOCK_INCLUDE_GMOCK_GMOCK_H_ + +// This file implements the following syntax: +// +// ON_CALL(mock_object.Method(...)) +// .With(...) ? +// .WillByDefault(...); +// +// where With() is optional and WillByDefault() must appear exactly +// once. +// +// EXPECT_CALL(mock_object.Method(...)) +// .With(...) ? +// .Times(...) ? +// .InSequence(...) * +// .WillOnce(...) * +// .WillRepeatedly(...) ? +// .RetiresOnSaturation() ? ; +// +// where all clauses are optional and WillOnce() can be repeated. + +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file implements some commonly used actions. + +#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_ACTIONS_H_ +#define GMOCK_INCLUDE_GMOCK_GMOCK_ACTIONS_H_ + +#ifndef _WIN32_WCE +# include +#endif + +#include +#include + +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file defines some utilities useful for implementing Google +// Mock. They are subject to change without notice, so please DO NOT +// USE THEM IN USER CODE. + +#ifndef GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_ +#define GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_ + +#include +#include // NOLINT +#include + +// This file was GENERATED by command: +// pump.py gmock-generated-internal-utils.h.pump +// DO NOT EDIT BY HAND!!! + +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file contains template meta-programming utility classes needed +// for implementing Google Mock. + +#ifndef GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_GENERATED_INTERNAL_UTILS_H_ +#define GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_GENERATED_INTERNAL_UTILS_H_ + +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vadimb@google.com (Vadim Berman) +// +// Low-level types and utilities for porting Google Mock to various +// platforms. They are subject to change without notice. DO NOT USE +// THEM IN USER CODE. + +#ifndef GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_PORT_H_ +#define GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_PORT_H_ + +#include +#include +#include + +// Most of the types needed for porting Google Mock are also required +// for Google Test and are defined in gtest-port.h. +#include "gtest/gtest.h" + +// To avoid conditional compilation everywhere, we make it +// gmock-port.h's responsibility to #include the header implementing +// tr1/tuple. gmock-port.h does this via gtest-port.h, which is +// guaranteed to pull in the tuple header. + +// For MS Visual C++, check the compiler version. At least VS 2003 is +// required to compile Google Mock. +#if defined(_MSC_VER) && _MSC_VER < 1310 +# error "At least Visual C++ 2003 (7.1) is required to compile Google Mock." +#endif + +// Macro for referencing flags. This is public as we want the user to +// use this syntax to reference Google Mock flags. +#define GMOCK_FLAG(name) FLAGS_gmock_##name + +// Macros for declaring flags. +#define GMOCK_DECLARE_bool_(name) extern GTEST_API_ bool GMOCK_FLAG(name) +#define GMOCK_DECLARE_int32_(name) \ + extern GTEST_API_ ::testing::internal::Int32 GMOCK_FLAG(name) +#define GMOCK_DECLARE_string_(name) \ + extern GTEST_API_ ::std::string GMOCK_FLAG(name) + +// Macros for defining flags. +#define GMOCK_DEFINE_bool_(name, default_val, doc) \ + GTEST_API_ bool GMOCK_FLAG(name) = (default_val) +#define GMOCK_DEFINE_int32_(name, default_val, doc) \ + GTEST_API_ ::testing::internal::Int32 GMOCK_FLAG(name) = (default_val) +#define GMOCK_DEFINE_string_(name, default_val, doc) \ + GTEST_API_ ::std::string GMOCK_FLAG(name) = (default_val) + +#endif // GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_PORT_H_ + +namespace testing { + +template +class Matcher; + +namespace internal { + +// An IgnoredValue object can be implicitly constructed from ANY value. +// This is used in implementing the IgnoreResult(a) action. +class IgnoredValue { + public: + // This constructor template allows any value to be implicitly + // converted to IgnoredValue. The object has no data member and + // doesn't try to remember anything about the argument. We + // deliberately omit the 'explicit' keyword in order to allow the + // conversion to be implicit. + template + IgnoredValue(const T& /* ignored */) {} // NOLINT(runtime/explicit) +}; + +// MatcherTuple::type is a tuple type where each field is a Matcher +// for the corresponding field in tuple type T. +template +struct MatcherTuple; + +template <> +struct MatcherTuple< ::std::tr1::tuple<> > { + typedef ::std::tr1::tuple< > type; +}; + +template +struct MatcherTuple< ::std::tr1::tuple > { + typedef ::std::tr1::tuple > type; +}; + +template +struct MatcherTuple< ::std::tr1::tuple > { + typedef ::std::tr1::tuple, Matcher > type; +}; + +template +struct MatcherTuple< ::std::tr1::tuple > { + typedef ::std::tr1::tuple, Matcher, Matcher > type; +}; + +template +struct MatcherTuple< ::std::tr1::tuple > { + typedef ::std::tr1::tuple, Matcher, Matcher, + Matcher > type; +}; + +template +struct MatcherTuple< ::std::tr1::tuple > { + typedef ::std::tr1::tuple, Matcher, Matcher, Matcher, + Matcher > type; +}; + +template +struct MatcherTuple< ::std::tr1::tuple > { + typedef ::std::tr1::tuple, Matcher, Matcher, Matcher, + Matcher, Matcher > type; +}; + +template +struct MatcherTuple< ::std::tr1::tuple > { + typedef ::std::tr1::tuple, Matcher, Matcher, Matcher, + Matcher, Matcher, Matcher > type; +}; + +template +struct MatcherTuple< ::std::tr1::tuple > { + typedef ::std::tr1::tuple, Matcher, Matcher, Matcher, + Matcher, Matcher, Matcher, Matcher > type; +}; + +template +struct MatcherTuple< ::std::tr1::tuple > { + typedef ::std::tr1::tuple, Matcher, Matcher, Matcher, + Matcher, Matcher, Matcher, Matcher, Matcher > type; +}; + +template +struct MatcherTuple< ::std::tr1::tuple > { + typedef ::std::tr1::tuple, Matcher, Matcher, Matcher, + Matcher, Matcher, Matcher, Matcher, Matcher, + Matcher > type; +}; + +// Template struct Function, where F must be a function type, contains +// the following typedefs: +// +// Result: the function's return type. +// ArgumentN: the type of the N-th argument, where N starts with 1. +// ArgumentTuple: the tuple type consisting of all parameters of F. +// ArgumentMatcherTuple: the tuple type consisting of Matchers for all +// parameters of F. +// MakeResultVoid: the function type obtained by substituting void +// for the return type of F. +// MakeResultIgnoredValue: +// the function type obtained by substituting Something +// for the return type of F. +template +struct Function; + +template +struct Function { + typedef R Result; + typedef ::std::tr1::tuple<> ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(); + typedef IgnoredValue MakeResultIgnoredValue(); +}; + +template +struct Function + : Function { + typedef A1 Argument1; + typedef ::std::tr1::tuple ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(A1); + typedef IgnoredValue MakeResultIgnoredValue(A1); +}; + +template +struct Function + : Function { + typedef A2 Argument2; + typedef ::std::tr1::tuple ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(A1, A2); + typedef IgnoredValue MakeResultIgnoredValue(A1, A2); +}; + +template +struct Function + : Function { + typedef A3 Argument3; + typedef ::std::tr1::tuple ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(A1, A2, A3); + typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3); +}; + +template +struct Function + : Function { + typedef A4 Argument4; + typedef ::std::tr1::tuple ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(A1, A2, A3, A4); + typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4); +}; + +template +struct Function + : Function { + typedef A5 Argument5; + typedef ::std::tr1::tuple ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(A1, A2, A3, A4, A5); + typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5); +}; + +template +struct Function + : Function { + typedef A6 Argument6; + typedef ::std::tr1::tuple ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(A1, A2, A3, A4, A5, A6); + typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5, A6); +}; + +template +struct Function + : Function { + typedef A7 Argument7; + typedef ::std::tr1::tuple ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(A1, A2, A3, A4, A5, A6, A7); + typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5, A6, A7); +}; + +template +struct Function + : Function { + typedef A8 Argument8; + typedef ::std::tr1::tuple ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(A1, A2, A3, A4, A5, A6, A7, A8); + typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5, A6, A7, A8); +}; + +template +struct Function + : Function { + typedef A9 Argument9; + typedef ::std::tr1::tuple ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(A1, A2, A3, A4, A5, A6, A7, A8, A9); + typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5, A6, A7, A8, + A9); +}; + +template +struct Function + : Function { + typedef A10 Argument10; + typedef ::std::tr1::tuple ArgumentTuple; + typedef typename MatcherTuple::type ArgumentMatcherTuple; + typedef void MakeResultVoid(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10); + typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5, A6, A7, A8, + A9, A10); +}; + +} // namespace internal + +} // namespace testing + +#endif // GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_GENERATED_INTERNAL_UTILS_H_ + +namespace testing { +namespace internal { + +// Converts an identifier name to a space-separated list of lower-case +// words. Each maximum substring of the form [A-Za-z][a-z]*|\d+ is +// treated as one word. For example, both "FooBar123" and +// "foo_bar_123" are converted to "foo bar 123". +GTEST_API_ string ConvertIdentifierNameToWords(const char* id_name); + +// PointeeOf::type is the type of a value pointed to by a +// Pointer, which can be either a smart pointer or a raw pointer. The +// following default implementation is for the case where Pointer is a +// smart pointer. +template +struct PointeeOf { + // Smart pointer classes define type element_type as the type of + // their pointees. + typedef typename Pointer::element_type type; +}; +// This specialization is for the raw pointer case. +template +struct PointeeOf { typedef T type; }; // NOLINT + +// GetRawPointer(p) returns the raw pointer underlying p when p is a +// smart pointer, or returns p itself when p is already a raw pointer. +// The following default implementation is for the smart pointer case. +template +inline const typename Pointer::element_type* GetRawPointer(const Pointer& p) { + return p.get(); +} +// This overloaded version is for the raw pointer case. +template +inline Element* GetRawPointer(Element* p) { return p; } + +// This comparator allows linked_ptr to be stored in sets. +template +struct LinkedPtrLessThan { + bool operator()(const ::testing::internal::linked_ptr& lhs, + const ::testing::internal::linked_ptr& rhs) const { + return lhs.get() < rhs.get(); + } +}; + +// Symbian compilation can be done with wchar_t being either a native +// type or a typedef. Using Google Mock with OpenC without wchar_t +// should require the definition of _STLP_NO_WCHAR_T. +// +// MSVC treats wchar_t as a native type usually, but treats it as the +// same as unsigned short when the compiler option /Zc:wchar_t- is +// specified. It defines _NATIVE_WCHAR_T_DEFINED symbol when wchar_t +// is a native type. +#if (GTEST_OS_SYMBIAN && defined(_STLP_NO_WCHAR_T)) || \ + (defined(_MSC_VER) && !defined(_NATIVE_WCHAR_T_DEFINED)) +// wchar_t is a typedef. +#else +# define GMOCK_WCHAR_T_IS_NATIVE_ 1 +#endif + +// signed wchar_t and unsigned wchar_t are NOT in the C++ standard. +// Using them is a bad practice and not portable. So DON'T use them. +// +// Still, Google Mock is designed to work even if the user uses signed +// wchar_t or unsigned wchar_t (obviously, assuming the compiler +// supports them). +// +// To gcc, +// wchar_t == signed wchar_t != unsigned wchar_t == unsigned int +#ifdef __GNUC__ +// signed/unsigned wchar_t are valid types. +# define GMOCK_HAS_SIGNED_WCHAR_T_ 1 +#endif + +// In what follows, we use the term "kind" to indicate whether a type +// is bool, an integer type (excluding bool), a floating-point type, +// or none of them. This categorization is useful for determining +// when a matcher argument type can be safely converted to another +// type in the implementation of SafeMatcherCast. +enum TypeKind { + kBool, kInteger, kFloatingPoint, kOther +}; + +// KindOf::value is the kind of type T. +template struct KindOf { + enum { value = kOther }; // The default kind. +}; + +// This macro declares that the kind of 'type' is 'kind'. +#define GMOCK_DECLARE_KIND_(type, kind) \ + template <> struct KindOf { enum { value = kind }; } + +GMOCK_DECLARE_KIND_(bool, kBool); + +// All standard integer types. +GMOCK_DECLARE_KIND_(char, kInteger); +GMOCK_DECLARE_KIND_(signed char, kInteger); +GMOCK_DECLARE_KIND_(unsigned char, kInteger); +GMOCK_DECLARE_KIND_(short, kInteger); // NOLINT +GMOCK_DECLARE_KIND_(unsigned short, kInteger); // NOLINT +GMOCK_DECLARE_KIND_(int, kInteger); +GMOCK_DECLARE_KIND_(unsigned int, kInteger); +GMOCK_DECLARE_KIND_(long, kInteger); // NOLINT +GMOCK_DECLARE_KIND_(unsigned long, kInteger); // NOLINT + +#if GMOCK_WCHAR_T_IS_NATIVE_ +GMOCK_DECLARE_KIND_(wchar_t, kInteger); +#endif + +// Non-standard integer types. +GMOCK_DECLARE_KIND_(Int64, kInteger); +GMOCK_DECLARE_KIND_(UInt64, kInteger); + +// All standard floating-point types. +GMOCK_DECLARE_KIND_(float, kFloatingPoint); +GMOCK_DECLARE_KIND_(double, kFloatingPoint); +GMOCK_DECLARE_KIND_(long double, kFloatingPoint); + +#undef GMOCK_DECLARE_KIND_ + +// Evaluates to the kind of 'type'. +#define GMOCK_KIND_OF_(type) \ + static_cast< ::testing::internal::TypeKind>( \ + ::testing::internal::KindOf::value) + +// Evaluates to true iff integer type T is signed. +#define GMOCK_IS_SIGNED_(T) (static_cast(-1) < 0) + +// LosslessArithmeticConvertibleImpl::value +// is true iff arithmetic type From can be losslessly converted to +// arithmetic type To. +// +// It's the user's responsibility to ensure that both From and To are +// raw (i.e. has no CV modifier, is not a pointer, and is not a +// reference) built-in arithmetic types, kFromKind is the kind of +// From, and kToKind is the kind of To; the value is +// implementation-defined when the above pre-condition is violated. +template +struct LosslessArithmeticConvertibleImpl : public false_type {}; + +// Converting bool to bool is lossless. +template <> +struct LosslessArithmeticConvertibleImpl + : public true_type {}; // NOLINT + +// Converting bool to any integer type is lossless. +template +struct LosslessArithmeticConvertibleImpl + : public true_type {}; // NOLINT + +// Converting bool to any floating-point type is lossless. +template +struct LosslessArithmeticConvertibleImpl + : public true_type {}; // NOLINT + +// Converting an integer to bool is lossy. +template +struct LosslessArithmeticConvertibleImpl + : public false_type {}; // NOLINT + +// Converting an integer to another non-bool integer is lossless iff +// the target type's range encloses the source type's range. +template +struct LosslessArithmeticConvertibleImpl + : public bool_constant< + // When converting from a smaller size to a larger size, we are + // fine as long as we are not converting from signed to unsigned. + ((sizeof(From) < sizeof(To)) && + (!GMOCK_IS_SIGNED_(From) || GMOCK_IS_SIGNED_(To))) || + // When converting between the same size, the signedness must match. + ((sizeof(From) == sizeof(To)) && + (GMOCK_IS_SIGNED_(From) == GMOCK_IS_SIGNED_(To)))> {}; // NOLINT + +#undef GMOCK_IS_SIGNED_ + +// Converting an integer to a floating-point type may be lossy, since +// the format of a floating-point number is implementation-defined. +template +struct LosslessArithmeticConvertibleImpl + : public false_type {}; // NOLINT + +// Converting a floating-point to bool is lossy. +template +struct LosslessArithmeticConvertibleImpl + : public false_type {}; // NOLINT + +// Converting a floating-point to an integer is lossy. +template +struct LosslessArithmeticConvertibleImpl + : public false_type {}; // NOLINT + +// Converting a floating-point to another floating-point is lossless +// iff the target type is at least as big as the source type. +template +struct LosslessArithmeticConvertibleImpl< + kFloatingPoint, From, kFloatingPoint, To> + : public bool_constant {}; // NOLINT + +// LosslessArithmeticConvertible::value is true iff arithmetic +// type From can be losslessly converted to arithmetic type To. +// +// It's the user's responsibility to ensure that both From and To are +// raw (i.e. has no CV modifier, is not a pointer, and is not a +// reference) built-in arithmetic types; the value is +// implementation-defined when the above pre-condition is violated. +template +struct LosslessArithmeticConvertible + : public LosslessArithmeticConvertibleImpl< + GMOCK_KIND_OF_(From), From, GMOCK_KIND_OF_(To), To> {}; // NOLINT + +// This interface knows how to report a Google Mock failure (either +// non-fatal or fatal). +class FailureReporterInterface { + public: + // The type of a failure (either non-fatal or fatal). + enum FailureType { + kNonfatal, kFatal + }; + + virtual ~FailureReporterInterface() {} + + // Reports a failure that occurred at the given source file location. + virtual void ReportFailure(FailureType type, const char* file, int line, + const string& message) = 0; +}; + +// Returns the failure reporter used by Google Mock. +GTEST_API_ FailureReporterInterface* GetFailureReporter(); + +// Asserts that condition is true; aborts the process with the given +// message if condition is false. We cannot use LOG(FATAL) or CHECK() +// as Google Mock might be used to mock the log sink itself. We +// inline this function to prevent it from showing up in the stack +// trace. +inline void Assert(bool condition, const char* file, int line, + const string& msg) { + if (!condition) { + GetFailureReporter()->ReportFailure(FailureReporterInterface::kFatal, + file, line, msg); + } +} +inline void Assert(bool condition, const char* file, int line) { + Assert(condition, file, line, "Assertion failed."); +} + +// Verifies that condition is true; generates a non-fatal failure if +// condition is false. +inline void Expect(bool condition, const char* file, int line, + const string& msg) { + if (!condition) { + GetFailureReporter()->ReportFailure(FailureReporterInterface::kNonfatal, + file, line, msg); + } +} +inline void Expect(bool condition, const char* file, int line) { + Expect(condition, file, line, "Expectation failed."); +} + +// Severity level of a log. +enum LogSeverity { + kInfo = 0, + kWarning = 1 +}; + +// Valid values for the --gmock_verbose flag. + +// All logs (informational and warnings) are printed. +const char kInfoVerbosity[] = "info"; +// Only warnings are printed. +const char kWarningVerbosity[] = "warning"; +// No logs are printed. +const char kErrorVerbosity[] = "error"; + +// Returns true iff a log with the given severity is visible according +// to the --gmock_verbose flag. +GTEST_API_ bool LogIsVisible(LogSeverity severity); + +// Prints the given message to stdout iff 'severity' >= the level +// specified by the --gmock_verbose flag. If stack_frames_to_skip >= +// 0, also prints the stack trace excluding the top +// stack_frames_to_skip frames. In opt mode, any positive +// stack_frames_to_skip is treated as 0, since we don't know which +// function calls will be inlined by the compiler and need to be +// conservative. +GTEST_API_ void Log(LogSeverity severity, + const string& message, + int stack_frames_to_skip); + +// TODO(wan@google.com): group all type utilities together. + +// Type traits. + +// is_reference::value is non-zero iff T is a reference type. +template struct is_reference : public false_type {}; +template struct is_reference : public true_type {}; + +// type_equals::value is non-zero iff T1 and T2 are the same type. +template struct type_equals : public false_type {}; +template struct type_equals : public true_type {}; + +// remove_reference::type removes the reference from type T, if any. +template struct remove_reference { typedef T type; }; // NOLINT +template struct remove_reference { typedef T type; }; // NOLINT + +// DecayArray::type turns an array type U[N] to const U* and preserves +// other types. Useful for saving a copy of a function argument. +template struct DecayArray { typedef T type; }; // NOLINT +template struct DecayArray { + typedef const T* type; +}; +// Sometimes people use arrays whose size is not available at the use site +// (e.g. extern const char kNamePrefix[]). This specialization covers that +// case. +template struct DecayArray { + typedef const T* type; +}; + +// Invalid() returns an invalid value of type T. This is useful +// when a value of type T is needed for compilation, but the statement +// will not really be executed (or we don't care if the statement +// crashes). +template +inline T Invalid() { + return const_cast::type&>( + *static_cast::type*>(NULL)); +} +template <> +inline void Invalid() {} + +// Given a raw type (i.e. having no top-level reference or const +// modifier) RawContainer that's either an STL-style container or a +// native array, class StlContainerView has the +// following members: +// +// - type is a type that provides an STL-style container view to +// (i.e. implements the STL container concept for) RawContainer; +// - const_reference is a type that provides a reference to a const +// RawContainer; +// - ConstReference(raw_container) returns a const reference to an STL-style +// container view to raw_container, which is a RawContainer. +// - Copy(raw_container) returns an STL-style container view of a +// copy of raw_container, which is a RawContainer. +// +// This generic version is used when RawContainer itself is already an +// STL-style container. +template +class StlContainerView { + public: + typedef RawContainer type; + typedef const type& const_reference; + + static const_reference ConstReference(const RawContainer& container) { + // Ensures that RawContainer is not a const type. + testing::StaticAssertTypeEq(); + return container; + } + static type Copy(const RawContainer& container) { return container; } +}; + +// This specialization is used when RawContainer is a native array type. +template +class StlContainerView { + public: + typedef GTEST_REMOVE_CONST_(Element) RawElement; + typedef internal::NativeArray type; + // NativeArray can represent a native array either by value or by + // reference (selected by a constructor argument), so 'const type' + // can be used to reference a const native array. We cannot + // 'typedef const type& const_reference' here, as that would mean + // ConstReference() has to return a reference to a local variable. + typedef const type const_reference; + + static const_reference ConstReference(const Element (&array)[N]) { + // Ensures that Element is not a const type. + testing::StaticAssertTypeEq(); +#if GTEST_OS_SYMBIAN + // The Nokia Symbian compiler confuses itself in template instantiation + // for this call without the cast to Element*: + // function call '[testing::internal::NativeArray].NativeArray( + // {lval} const char *[4], long, testing::internal::RelationToSource)' + // does not match + // 'testing::internal::NativeArray::NativeArray( + // char *const *, unsigned int, testing::internal::RelationToSource)' + // (instantiating: 'testing::internal::ContainsMatcherImpl + // ::Matches(const char * (&)[4]) const') + // (instantiating: 'testing::internal::StlContainerView:: + // ConstReference(const char * (&)[4])') + // (and though the N parameter type is mismatched in the above explicit + // conversion of it doesn't help - only the conversion of the array). + return type(const_cast(&array[0]), N, kReference); +#else + return type(array, N, kReference); +#endif // GTEST_OS_SYMBIAN + } + static type Copy(const Element (&array)[N]) { +#if GTEST_OS_SYMBIAN + return type(const_cast(&array[0]), N, kCopy); +#else + return type(array, N, kCopy); +#endif // GTEST_OS_SYMBIAN + } +}; + +// This specialization is used when RawContainer is a native array +// represented as a (pointer, size) tuple. +template +class StlContainerView< ::std::tr1::tuple > { + public: + typedef GTEST_REMOVE_CONST_( + typename internal::PointeeOf::type) RawElement; + typedef internal::NativeArray type; + typedef const type const_reference; + + static const_reference ConstReference( + const ::std::tr1::tuple& array) { + using ::std::tr1::get; + return type(get<0>(array), get<1>(array), kReference); + } + static type Copy(const ::std::tr1::tuple& array) { + using ::std::tr1::get; + return type(get<0>(array), get<1>(array), kCopy); + } +}; + +// The following specialization prevents the user from instantiating +// StlContainer with a reference type. +template class StlContainerView; + +// A type transform to remove constness from the first part of a pair. +// Pairs like that are used as the value_type of associative containers, +// and this transform produces a similar but assignable pair. +template +struct RemoveConstFromKey { + typedef T type; +}; + +// Partially specialized to remove constness from std::pair. +template +struct RemoveConstFromKey > { + typedef std::pair type; +}; + +// Mapping from booleans to types. Similar to boost::bool_ and +// std::integral_constant. +template +struct BooleanConstant {}; + +} // namespace internal +} // namespace testing + +#endif // GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_ + +namespace testing { + +// To implement an action Foo, define: +// 1. a class FooAction that implements the ActionInterface interface, and +// 2. a factory function that creates an Action object from a +// const FooAction*. +// +// The two-level delegation design follows that of Matcher, providing +// consistency for extension developers. It also eases ownership +// management as Action objects can now be copied like plain values. + +namespace internal { + +template +class ActionAdaptor; + +// BuiltInDefaultValue::Get() returns the "built-in" default +// value for type T, which is NULL when T is a pointer type, 0 when T +// is a numeric type, false when T is bool, or "" when T is string or +// std::string. For any other type T, this value is undefined and the +// function will abort the process. +template +class BuiltInDefaultValue { + public: + // This function returns true iff type T has a built-in default value. + static bool Exists() { return false; } + static T Get() { + Assert(false, __FILE__, __LINE__, + "Default action undefined for the function return type."); + return internal::Invalid(); + // The above statement will never be reached, but is required in + // order for this function to compile. + } +}; + +// This partial specialization says that we use the same built-in +// default value for T and const T. +template +class BuiltInDefaultValue { + public: + static bool Exists() { return BuiltInDefaultValue::Exists(); } + static T Get() { return BuiltInDefaultValue::Get(); } +}; + +// This partial specialization defines the default values for pointer +// types. +template +class BuiltInDefaultValue { + public: + static bool Exists() { return true; } + static T* Get() { return NULL; } +}; + +// The following specializations define the default values for +// specific types we care about. +#define GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(type, value) \ + template <> \ + class BuiltInDefaultValue { \ + public: \ + static bool Exists() { return true; } \ + static type Get() { return value; } \ + } + +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(void, ); // NOLINT +#if GTEST_HAS_GLOBAL_STRING +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(::string, ""); +#endif // GTEST_HAS_GLOBAL_STRING +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(::std::string, ""); +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(bool, false); +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(unsigned char, '\0'); +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(signed char, '\0'); +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(char, '\0'); + +// There's no need for a default action for signed wchar_t, as that +// type is the same as wchar_t for gcc, and invalid for MSVC. +// +// There's also no need for a default action for unsigned wchar_t, as +// that type is the same as unsigned int for gcc, and invalid for +// MSVC. +#if GMOCK_WCHAR_T_IS_NATIVE_ +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(wchar_t, 0U); // NOLINT +#endif + +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(unsigned short, 0U); // NOLINT +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(signed short, 0); // NOLINT +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(unsigned int, 0U); +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(signed int, 0); +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(unsigned long, 0UL); // NOLINT +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(signed long, 0L); // NOLINT +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(UInt64, 0); +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(Int64, 0); +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(float, 0); +GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(double, 0); + +#undef GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ + +} // namespace internal + +// When an unexpected function call is encountered, Google Mock will +// let it return a default value if the user has specified one for its +// return type, or if the return type has a built-in default value; +// otherwise Google Mock won't know what value to return and will have +// to abort the process. +// +// The DefaultValue class allows a user to specify the +// default value for a type T that is both copyable and publicly +// destructible (i.e. anything that can be used as a function return +// type). The usage is: +// +// // Sets the default value for type T to be foo. +// DefaultValue::Set(foo); +template +class DefaultValue { + public: + // Sets the default value for type T; requires T to be + // copy-constructable and have a public destructor. + static void Set(T x) { + delete value_; + value_ = new T(x); + } + + // Unsets the default value for type T. + static void Clear() { + delete value_; + value_ = NULL; + } + + // Returns true iff the user has set the default value for type T. + static bool IsSet() { return value_ != NULL; } + + // Returns true if T has a default return value set by the user or there + // exists a built-in default value. + static bool Exists() { + return IsSet() || internal::BuiltInDefaultValue::Exists(); + } + + // Returns the default value for type T if the user has set one; + // otherwise returns the built-in default value if there is one; + // otherwise aborts the process. + static T Get() { + return value_ == NULL ? + internal::BuiltInDefaultValue::Get() : *value_; + } + + private: + static const T* value_; +}; + +// This partial specialization allows a user to set default values for +// reference types. +template +class DefaultValue { + public: + // Sets the default value for type T&. + static void Set(T& x) { // NOLINT + address_ = &x; + } + + // Unsets the default value for type T&. + static void Clear() { + address_ = NULL; + } + + // Returns true iff the user has set the default value for type T&. + static bool IsSet() { return address_ != NULL; } + + // Returns true if T has a default return value set by the user or there + // exists a built-in default value. + static bool Exists() { + return IsSet() || internal::BuiltInDefaultValue::Exists(); + } + + // Returns the default value for type T& if the user has set one; + // otherwise returns the built-in default value if there is one; + // otherwise aborts the process. + static T& Get() { + return address_ == NULL ? + internal::BuiltInDefaultValue::Get() : *address_; + } + + private: + static T* address_; +}; + +// This specialization allows DefaultValue::Get() to +// compile. +template <> +class DefaultValue { + public: + static bool Exists() { return true; } + static void Get() {} +}; + +// Points to the user-set default value for type T. +template +const T* DefaultValue::value_ = NULL; + +// Points to the user-set default value for type T&. +template +T* DefaultValue::address_ = NULL; + +// Implement this interface to define an action for function type F. +template +class ActionInterface { + public: + typedef typename internal::Function::Result Result; + typedef typename internal::Function::ArgumentTuple ArgumentTuple; + + ActionInterface() {} + virtual ~ActionInterface() {} + + // Performs the action. This method is not const, as in general an + // action can have side effects and be stateful. For example, a + // get-the-next-element-from-the-collection action will need to + // remember the current element. + virtual Result Perform(const ArgumentTuple& args) = 0; + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(ActionInterface); +}; + +// An Action is a copyable and IMMUTABLE (except by assignment) +// object that represents an action to be taken when a mock function +// of type F is called. The implementation of Action is just a +// linked_ptr to const ActionInterface, so copying is fairly cheap. +// Don't inherit from Action! +// +// You can view an object implementing ActionInterface as a +// concrete action (including its current state), and an Action +// object as a handle to it. +template +class Action { + public: + typedef typename internal::Function::Result Result; + typedef typename internal::Function::ArgumentTuple ArgumentTuple; + + // Constructs a null Action. Needed for storing Action objects in + // STL containers. + Action() : impl_(NULL) {} + + // Constructs an Action from its implementation. A NULL impl is + // used to represent the "do-default" action. + explicit Action(ActionInterface* impl) : impl_(impl) {} + + // Copy constructor. + Action(const Action& action) : impl_(action.impl_) {} + + // This constructor allows us to turn an Action object into an + // Action, as long as F's arguments can be implicitly converted + // to Func's and Func's return type can be implicitly converted to + // F's. + template + explicit Action(const Action& action); + + // Returns true iff this is the DoDefault() action. + bool IsDoDefault() const { return impl_.get() == NULL; } + + // Performs the action. Note that this method is const even though + // the corresponding method in ActionInterface is not. The reason + // is that a const Action means that it cannot be re-bound to + // another concrete action, not that the concrete action it binds to + // cannot change state. (Think of the difference between a const + // pointer and a pointer to const.) + Result Perform(const ArgumentTuple& args) const { + internal::Assert( + !IsDoDefault(), __FILE__, __LINE__, + "You are using DoDefault() inside a composite action like " + "DoAll() or WithArgs(). This is not supported for technical " + "reasons. Please instead spell out the default action, or " + "assign the default action to an Action variable and use " + "the variable in various places."); + return impl_->Perform(args); + } + + private: + template + friend class internal::ActionAdaptor; + + internal::linked_ptr > impl_; +}; + +// The PolymorphicAction class template makes it easy to implement a +// polymorphic action (i.e. an action that can be used in mock +// functions of than one type, e.g. Return()). +// +// To define a polymorphic action, a user first provides a COPYABLE +// implementation class that has a Perform() method template: +// +// class FooAction { +// public: +// template +// Result Perform(const ArgumentTuple& args) const { +// // Processes the arguments and returns a result, using +// // tr1::get(args) to get the N-th (0-based) argument in the tuple. +// } +// ... +// }; +// +// Then the user creates the polymorphic action using +// MakePolymorphicAction(object) where object has type FooAction. See +// the definition of Return(void) and SetArgumentPointee(value) for +// complete examples. +template +class PolymorphicAction { + public: + explicit PolymorphicAction(const Impl& impl) : impl_(impl) {} + + template + operator Action() const { + return Action(new MonomorphicImpl(impl_)); + } + + private: + template + class MonomorphicImpl : public ActionInterface { + public: + typedef typename internal::Function::Result Result; + typedef typename internal::Function::ArgumentTuple ArgumentTuple; + + explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} + + virtual Result Perform(const ArgumentTuple& args) { + return impl_.template Perform(args); + } + + private: + Impl impl_; + + GTEST_DISALLOW_ASSIGN_(MonomorphicImpl); + }; + + Impl impl_; + + GTEST_DISALLOW_ASSIGN_(PolymorphicAction); +}; + +// Creates an Action from its implementation and returns it. The +// created Action object owns the implementation. +template +Action MakeAction(ActionInterface* impl) { + return Action(impl); +} + +// Creates a polymorphic action from its implementation. This is +// easier to use than the PolymorphicAction constructor as it +// doesn't require you to explicitly write the template argument, e.g. +// +// MakePolymorphicAction(foo); +// vs +// PolymorphicAction(foo); +template +inline PolymorphicAction MakePolymorphicAction(const Impl& impl) { + return PolymorphicAction(impl); +} + +namespace internal { + +// Allows an Action object to pose as an Action, as long as F2 +// and F1 are compatible. +template +class ActionAdaptor : public ActionInterface { + public: + typedef typename internal::Function::Result Result; + typedef typename internal::Function::ArgumentTuple ArgumentTuple; + + explicit ActionAdaptor(const Action& from) : impl_(from.impl_) {} + + virtual Result Perform(const ArgumentTuple& args) { + return impl_->Perform(args); + } + + private: + const internal::linked_ptr > impl_; + + GTEST_DISALLOW_ASSIGN_(ActionAdaptor); +}; + +// Implements the polymorphic Return(x) action, which can be used in +// any function that returns the type of x, regardless of the argument +// types. +// +// Note: The value passed into Return must be converted into +// Function::Result when this action is cast to Action rather than +// when that action is performed. This is important in scenarios like +// +// MOCK_METHOD1(Method, T(U)); +// ... +// { +// Foo foo; +// X x(&foo); +// EXPECT_CALL(mock, Method(_)).WillOnce(Return(x)); +// } +// +// In the example above the variable x holds reference to foo which leaves +// scope and gets destroyed. If copying X just copies a reference to foo, +// that copy will be left with a hanging reference. If conversion to T +// makes a copy of foo, the above code is safe. To support that scenario, we +// need to make sure that the type conversion happens inside the EXPECT_CALL +// statement, and conversion of the result of Return to Action is a +// good place for that. +// +template +class ReturnAction { + public: + // Constructs a ReturnAction object from the value to be returned. + // 'value' is passed by value instead of by const reference in order + // to allow Return("string literal") to compile. + explicit ReturnAction(R value) : value_(value) {} + + // This template type conversion operator allows Return(x) to be + // used in ANY function that returns x's type. + template + operator Action() const { + // Assert statement belongs here because this is the best place to verify + // conditions on F. It produces the clearest error messages + // in most compilers. + // Impl really belongs in this scope as a local class but can't + // because MSVC produces duplicate symbols in different translation units + // in this case. Until MS fixes that bug we put Impl into the class scope + // and put the typedef both here (for use in assert statement) and + // in the Impl class. But both definitions must be the same. + typedef typename Function::Result Result; + GTEST_COMPILE_ASSERT_( + !internal::is_reference::value, + use_ReturnRef_instead_of_Return_to_return_a_reference); + return Action(new Impl(value_)); + } + + private: + // Implements the Return(x) action for a particular function type F. + template + class Impl : public ActionInterface { + public: + typedef typename Function::Result Result; + typedef typename Function::ArgumentTuple ArgumentTuple; + + // The implicit cast is necessary when Result has more than one + // single-argument constructor (e.g. Result is std::vector) and R + // has a type conversion operator template. In that case, value_(value) + // won't compile as the compiler doesn't known which constructor of + // Result to call. ImplicitCast_ forces the compiler to convert R to + // Result without considering explicit constructors, thus resolving the + // ambiguity. value_ is then initialized using its copy constructor. + explicit Impl(R value) + : value_(::testing::internal::ImplicitCast_(value)) {} + + virtual Result Perform(const ArgumentTuple&) { return value_; } + + private: + GTEST_COMPILE_ASSERT_(!internal::is_reference::value, + Result_cannot_be_a_reference_type); + Result value_; + + GTEST_DISALLOW_ASSIGN_(Impl); + }; + + R value_; + + GTEST_DISALLOW_ASSIGN_(ReturnAction); +}; + +// Implements the ReturnNull() action. +class ReturnNullAction { + public: + // Allows ReturnNull() to be used in any pointer-returning function. + template + static Result Perform(const ArgumentTuple&) { + GTEST_COMPILE_ASSERT_(internal::is_pointer::value, + ReturnNull_can_be_used_to_return_a_pointer_only); + return NULL; + } +}; + +// Implements the Return() action. +class ReturnVoidAction { + public: + // Allows Return() to be used in any void-returning function. + template + static void Perform(const ArgumentTuple&) { + CompileAssertTypesEqual(); + } +}; + +// Implements the polymorphic ReturnRef(x) action, which can be used +// in any function that returns a reference to the type of x, +// regardless of the argument types. +template +class ReturnRefAction { + public: + // Constructs a ReturnRefAction object from the reference to be returned. + explicit ReturnRefAction(T& ref) : ref_(ref) {} // NOLINT + + // This template type conversion operator allows ReturnRef(x) to be + // used in ANY function that returns a reference to x's type. + template + operator Action() const { + typedef typename Function::Result Result; + // Asserts that the function return type is a reference. This + // catches the user error of using ReturnRef(x) when Return(x) + // should be used, and generates some helpful error message. + GTEST_COMPILE_ASSERT_(internal::is_reference::value, + use_Return_instead_of_ReturnRef_to_return_a_value); + return Action(new Impl(ref_)); + } + + private: + // Implements the ReturnRef(x) action for a particular function type F. + template + class Impl : public ActionInterface { + public: + typedef typename Function::Result Result; + typedef typename Function::ArgumentTuple ArgumentTuple; + + explicit Impl(T& ref) : ref_(ref) {} // NOLINT + + virtual Result Perform(const ArgumentTuple&) { + return ref_; + } + + private: + T& ref_; + + GTEST_DISALLOW_ASSIGN_(Impl); + }; + + T& ref_; + + GTEST_DISALLOW_ASSIGN_(ReturnRefAction); +}; + +// Implements the polymorphic ReturnRefOfCopy(x) action, which can be +// used in any function that returns a reference to the type of x, +// regardless of the argument types. +template +class ReturnRefOfCopyAction { + public: + // Constructs a ReturnRefOfCopyAction object from the reference to + // be returned. + explicit ReturnRefOfCopyAction(const T& value) : value_(value) {} // NOLINT + + // This template type conversion operator allows ReturnRefOfCopy(x) to be + // used in ANY function that returns a reference to x's type. + template + operator Action() const { + typedef typename Function::Result Result; + // Asserts that the function return type is a reference. This + // catches the user error of using ReturnRefOfCopy(x) when Return(x) + // should be used, and generates some helpful error message. + GTEST_COMPILE_ASSERT_( + internal::is_reference::value, + use_Return_instead_of_ReturnRefOfCopy_to_return_a_value); + return Action(new Impl(value_)); + } + + private: + // Implements the ReturnRefOfCopy(x) action for a particular function type F. + template + class Impl : public ActionInterface { + public: + typedef typename Function::Result Result; + typedef typename Function::ArgumentTuple ArgumentTuple; + + explicit Impl(const T& value) : value_(value) {} // NOLINT + + virtual Result Perform(const ArgumentTuple&) { + return value_; + } + + private: + T value_; + + GTEST_DISALLOW_ASSIGN_(Impl); + }; + + const T value_; + + GTEST_DISALLOW_ASSIGN_(ReturnRefOfCopyAction); +}; + +// Implements the polymorphic DoDefault() action. +class DoDefaultAction { + public: + // This template type conversion operator allows DoDefault() to be + // used in any function. + template + operator Action() const { return Action(NULL); } +}; + +// Implements the Assign action to set a given pointer referent to a +// particular value. +template +class AssignAction { + public: + AssignAction(T1* ptr, T2 value) : ptr_(ptr), value_(value) {} + + template + void Perform(const ArgumentTuple& /* args */) const { + *ptr_ = value_; + } + + private: + T1* const ptr_; + const T2 value_; + + GTEST_DISALLOW_ASSIGN_(AssignAction); +}; + +#if !GTEST_OS_WINDOWS_MOBILE + +// Implements the SetErrnoAndReturn action to simulate return from +// various system calls and libc functions. +template +class SetErrnoAndReturnAction { + public: + SetErrnoAndReturnAction(int errno_value, T result) + : errno_(errno_value), + result_(result) {} + template + Result Perform(const ArgumentTuple& /* args */) const { + errno = errno_; + return result_; + } + + private: + const int errno_; + const T result_; + + GTEST_DISALLOW_ASSIGN_(SetErrnoAndReturnAction); +}; + +#endif // !GTEST_OS_WINDOWS_MOBILE + +// Implements the SetArgumentPointee(x) action for any function +// whose N-th argument (0-based) is a pointer to x's type. The +// template parameter kIsProto is true iff type A is ProtocolMessage, +// proto2::Message, or a sub-class of those. +template +class SetArgumentPointeeAction { + public: + // Constructs an action that sets the variable pointed to by the + // N-th function argument to 'value'. + explicit SetArgumentPointeeAction(const A& value) : value_(value) {} + + template + void Perform(const ArgumentTuple& args) const { + CompileAssertTypesEqual(); + *::std::tr1::get(args) = value_; + } + + private: + const A value_; + + GTEST_DISALLOW_ASSIGN_(SetArgumentPointeeAction); +}; + +template +class SetArgumentPointeeAction { + public: + // Constructs an action that sets the variable pointed to by the + // N-th function argument to 'proto'. Both ProtocolMessage and + // proto2::Message have the CopyFrom() method, so the same + // implementation works for both. + explicit SetArgumentPointeeAction(const Proto& proto) : proto_(new Proto) { + proto_->CopyFrom(proto); + } + + template + void Perform(const ArgumentTuple& args) const { + CompileAssertTypesEqual(); + ::std::tr1::get(args)->CopyFrom(*proto_); + } + + private: + const internal::linked_ptr proto_; + + GTEST_DISALLOW_ASSIGN_(SetArgumentPointeeAction); +}; + +// Implements the InvokeWithoutArgs(f) action. The template argument +// FunctionImpl is the implementation type of f, which can be either a +// function pointer or a functor. InvokeWithoutArgs(f) can be used as an +// Action as long as f's type is compatible with F (i.e. f can be +// assigned to a tr1::function). +template +class InvokeWithoutArgsAction { + public: + // The c'tor makes a copy of function_impl (either a function + // pointer or a functor). + explicit InvokeWithoutArgsAction(FunctionImpl function_impl) + : function_impl_(function_impl) {} + + // Allows InvokeWithoutArgs(f) to be used as any action whose type is + // compatible with f. + template + Result Perform(const ArgumentTuple&) { return function_impl_(); } + + private: + FunctionImpl function_impl_; + + GTEST_DISALLOW_ASSIGN_(InvokeWithoutArgsAction); +}; + +// Implements the InvokeWithoutArgs(object_ptr, &Class::Method) action. +template +class InvokeMethodWithoutArgsAction { + public: + InvokeMethodWithoutArgsAction(Class* obj_ptr, MethodPtr method_ptr) + : obj_ptr_(obj_ptr), method_ptr_(method_ptr) {} + + template + Result Perform(const ArgumentTuple&) const { + return (obj_ptr_->*method_ptr_)(); + } + + private: + Class* const obj_ptr_; + const MethodPtr method_ptr_; + + GTEST_DISALLOW_ASSIGN_(InvokeMethodWithoutArgsAction); +}; + +// Implements the IgnoreResult(action) action. +template +class IgnoreResultAction { + public: + explicit IgnoreResultAction(const A& action) : action_(action) {} + + template + operator Action() const { + // Assert statement belongs here because this is the best place to verify + // conditions on F. It produces the clearest error messages + // in most compilers. + // Impl really belongs in this scope as a local class but can't + // because MSVC produces duplicate symbols in different translation units + // in this case. Until MS fixes that bug we put Impl into the class scope + // and put the typedef both here (for use in assert statement) and + // in the Impl class. But both definitions must be the same. + typedef typename internal::Function::Result Result; + + // Asserts at compile time that F returns void. + CompileAssertTypesEqual(); + + return Action(new Impl(action_)); + } + + private: + template + class Impl : public ActionInterface { + public: + typedef typename internal::Function::Result Result; + typedef typename internal::Function::ArgumentTuple ArgumentTuple; + + explicit Impl(const A& action) : action_(action) {} + + virtual void Perform(const ArgumentTuple& args) { + // Performs the action and ignores its result. + action_.Perform(args); + } + + private: + // Type OriginalFunction is the same as F except that its return + // type is IgnoredValue. + typedef typename internal::Function::MakeResultIgnoredValue + OriginalFunction; + + const Action action_; + + GTEST_DISALLOW_ASSIGN_(Impl); + }; + + const A action_; + + GTEST_DISALLOW_ASSIGN_(IgnoreResultAction); +}; + +// A ReferenceWrapper object represents a reference to type T, +// which can be either const or not. It can be explicitly converted +// from, and implicitly converted to, a T&. Unlike a reference, +// ReferenceWrapper can be copied and can survive template type +// inference. This is used to support by-reference arguments in the +// InvokeArgument(...) action. The idea was from "reference +// wrappers" in tr1, which we don't have in our source tree yet. +template +class ReferenceWrapper { + public: + // Constructs a ReferenceWrapper object from a T&. + explicit ReferenceWrapper(T& l_value) : pointer_(&l_value) {} // NOLINT + + // Allows a ReferenceWrapper object to be implicitly converted to + // a T&. + operator T&() const { return *pointer_; } + private: + T* pointer_; +}; + +// Allows the expression ByRef(x) to be printed as a reference to x. +template +void PrintTo(const ReferenceWrapper& ref, ::std::ostream* os) { + T& value = ref; + UniversalPrinter::Print(value, os); +} + +// Does two actions sequentially. Used for implementing the DoAll(a1, +// a2, ...) action. +template +class DoBothAction { + public: + DoBothAction(Action1 action1, Action2 action2) + : action1_(action1), action2_(action2) {} + + // This template type conversion operator allows DoAll(a1, ..., a_n) + // to be used in ANY function of compatible type. + template + operator Action() const { + return Action(new Impl(action1_, action2_)); + } + + private: + // Implements the DoAll(...) action for a particular function type F. + template + class Impl : public ActionInterface { + public: + typedef typename Function::Result Result; + typedef typename Function::ArgumentTuple ArgumentTuple; + typedef typename Function::MakeResultVoid VoidResult; + + Impl(const Action& action1, const Action& action2) + : action1_(action1), action2_(action2) {} + + virtual Result Perform(const ArgumentTuple& args) { + action1_.Perform(args); + return action2_.Perform(args); + } + + private: + const Action action1_; + const Action action2_; + + GTEST_DISALLOW_ASSIGN_(Impl); + }; + + Action1 action1_; + Action2 action2_; + + GTEST_DISALLOW_ASSIGN_(DoBothAction); +}; + +} // namespace internal + +// An Unused object can be implicitly constructed from ANY value. +// This is handy when defining actions that ignore some or all of the +// mock function arguments. For example, given +// +// MOCK_METHOD3(Foo, double(const string& label, double x, double y)); +// MOCK_METHOD3(Bar, double(int index, double x, double y)); +// +// instead of +// +// double DistanceToOriginWithLabel(const string& label, double x, double y) { +// return sqrt(x*x + y*y); +// } +// double DistanceToOriginWithIndex(int index, double x, double y) { +// return sqrt(x*x + y*y); +// } +// ... +// EXEPCT_CALL(mock, Foo("abc", _, _)) +// .WillOnce(Invoke(DistanceToOriginWithLabel)); +// EXEPCT_CALL(mock, Bar(5, _, _)) +// .WillOnce(Invoke(DistanceToOriginWithIndex)); +// +// you could write +// +// // We can declare any uninteresting argument as Unused. +// double DistanceToOrigin(Unused, double x, double y) { +// return sqrt(x*x + y*y); +// } +// ... +// EXEPCT_CALL(mock, Foo("abc", _, _)).WillOnce(Invoke(DistanceToOrigin)); +// EXEPCT_CALL(mock, Bar(5, _, _)).WillOnce(Invoke(DistanceToOrigin)); +typedef internal::IgnoredValue Unused; + +// This constructor allows us to turn an Action object into an +// Action, as long as To's arguments can be implicitly converted +// to From's and From's return type cann be implicitly converted to +// To's. +template +template +Action::Action(const Action& from) + : impl_(new internal::ActionAdaptor(from)) {} + +// Creates an action that returns 'value'. 'value' is passed by value +// instead of const reference - otherwise Return("string literal") +// will trigger a compiler error about using array as initializer. +template +internal::ReturnAction Return(R value) { + return internal::ReturnAction(value); +} + +// Creates an action that returns NULL. +inline PolymorphicAction ReturnNull() { + return MakePolymorphicAction(internal::ReturnNullAction()); +} + +// Creates an action that returns from a void function. +inline PolymorphicAction Return() { + return MakePolymorphicAction(internal::ReturnVoidAction()); +} + +// Creates an action that returns the reference to a variable. +template +inline internal::ReturnRefAction ReturnRef(R& x) { // NOLINT + return internal::ReturnRefAction(x); +} + +// Creates an action that returns the reference to a copy of the +// argument. The copy is created when the action is constructed and +// lives as long as the action. +template +inline internal::ReturnRefOfCopyAction ReturnRefOfCopy(const R& x) { + return internal::ReturnRefOfCopyAction(x); +} + +// Creates an action that does the default action for the give mock function. +inline internal::DoDefaultAction DoDefault() { + return internal::DoDefaultAction(); +} + +// Creates an action that sets the variable pointed by the N-th +// (0-based) function argument to 'value'. +template +PolymorphicAction< + internal::SetArgumentPointeeAction< + N, T, internal::IsAProtocolMessage::value> > +SetArgPointee(const T& x) { + return MakePolymorphicAction(internal::SetArgumentPointeeAction< + N, T, internal::IsAProtocolMessage::value>(x)); +} + +#if !((GTEST_GCC_VER_ && GTEST_GCC_VER_ < 40000) || GTEST_OS_SYMBIAN) +// This overload allows SetArgPointee() to accept a string literal. +// GCC prior to the version 4.0 and Symbian C++ compiler cannot distinguish +// this overload from the templated version and emit a compile error. +template +PolymorphicAction< + internal::SetArgumentPointeeAction > +SetArgPointee(const char* p) { + return MakePolymorphicAction(internal::SetArgumentPointeeAction< + N, const char*, false>(p)); +} + +template +PolymorphicAction< + internal::SetArgumentPointeeAction > +SetArgPointee(const wchar_t* p) { + return MakePolymorphicAction(internal::SetArgumentPointeeAction< + N, const wchar_t*, false>(p)); +} +#endif + +// The following version is DEPRECATED. +template +PolymorphicAction< + internal::SetArgumentPointeeAction< + N, T, internal::IsAProtocolMessage::value> > +SetArgumentPointee(const T& x) { + return MakePolymorphicAction(internal::SetArgumentPointeeAction< + N, T, internal::IsAProtocolMessage::value>(x)); +} + +// Creates an action that sets a pointer referent to a given value. +template +PolymorphicAction > Assign(T1* ptr, T2 val) { + return MakePolymorphicAction(internal::AssignAction(ptr, val)); +} + +#if !GTEST_OS_WINDOWS_MOBILE + +// Creates an action that sets errno and returns the appropriate error. +template +PolymorphicAction > +SetErrnoAndReturn(int errval, T result) { + return MakePolymorphicAction( + internal::SetErrnoAndReturnAction(errval, result)); +} + +#endif // !GTEST_OS_WINDOWS_MOBILE + +// Various overloads for InvokeWithoutArgs(). + +// Creates an action that invokes 'function_impl' with no argument. +template +PolymorphicAction > +InvokeWithoutArgs(FunctionImpl function_impl) { + return MakePolymorphicAction( + internal::InvokeWithoutArgsAction(function_impl)); +} + +// Creates an action that invokes the given method on the given object +// with no argument. +template +PolymorphicAction > +InvokeWithoutArgs(Class* obj_ptr, MethodPtr method_ptr) { + return MakePolymorphicAction( + internal::InvokeMethodWithoutArgsAction( + obj_ptr, method_ptr)); +} + +// Creates an action that performs an_action and throws away its +// result. In other words, it changes the return type of an_action to +// void. an_action MUST NOT return void, or the code won't compile. +template +inline internal::IgnoreResultAction IgnoreResult(const A& an_action) { + return internal::IgnoreResultAction(an_action); +} + +// Creates a reference wrapper for the given L-value. If necessary, +// you can explicitly specify the type of the reference. For example, +// suppose 'derived' is an object of type Derived, ByRef(derived) +// would wrap a Derived&. If you want to wrap a const Base& instead, +// where Base is a base class of Derived, just write: +// +// ByRef(derived) +template +inline internal::ReferenceWrapper ByRef(T& l_value) { // NOLINT + return internal::ReferenceWrapper(l_value); +} + +} // namespace testing + +#endif // GMOCK_INCLUDE_GMOCK_GMOCK_ACTIONS_H_ +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file implements some commonly used cardinalities. More +// cardinalities can be defined by the user implementing the +// CardinalityInterface interface if necessary. + +#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_CARDINALITIES_H_ +#define GMOCK_INCLUDE_GMOCK_GMOCK_CARDINALITIES_H_ + +#include +#include // NOLINT + +namespace testing { + +// To implement a cardinality Foo, define: +// 1. a class FooCardinality that implements the +// CardinalityInterface interface, and +// 2. a factory function that creates a Cardinality object from a +// const FooCardinality*. +// +// The two-level delegation design follows that of Matcher, providing +// consistency for extension developers. It also eases ownership +// management as Cardinality objects can now be copied like plain values. + +// The implementation of a cardinality. +class CardinalityInterface { + public: + virtual ~CardinalityInterface() {} + + // Conservative estimate on the lower/upper bound of the number of + // calls allowed. + virtual int ConservativeLowerBound() const { return 0; } + virtual int ConservativeUpperBound() const { return INT_MAX; } + + // Returns true iff call_count calls will satisfy this cardinality. + virtual bool IsSatisfiedByCallCount(int call_count) const = 0; + + // Returns true iff call_count calls will saturate this cardinality. + virtual bool IsSaturatedByCallCount(int call_count) const = 0; + + // Describes self to an ostream. + virtual void DescribeTo(::std::ostream* os) const = 0; +}; + +// A Cardinality is a copyable and IMMUTABLE (except by assignment) +// object that specifies how many times a mock function is expected to +// be called. The implementation of Cardinality is just a linked_ptr +// to const CardinalityInterface, so copying is fairly cheap. +// Don't inherit from Cardinality! +class GTEST_API_ Cardinality { + public: + // Constructs a null cardinality. Needed for storing Cardinality + // objects in STL containers. + Cardinality() {} + + // Constructs a Cardinality from its implementation. + explicit Cardinality(const CardinalityInterface* impl) : impl_(impl) {} + + // Conservative estimate on the lower/upper bound of the number of + // calls allowed. + int ConservativeLowerBound() const { return impl_->ConservativeLowerBound(); } + int ConservativeUpperBound() const { return impl_->ConservativeUpperBound(); } + + // Returns true iff call_count calls will satisfy this cardinality. + bool IsSatisfiedByCallCount(int call_count) const { + return impl_->IsSatisfiedByCallCount(call_count); + } + + // Returns true iff call_count calls will saturate this cardinality. + bool IsSaturatedByCallCount(int call_count) const { + return impl_->IsSaturatedByCallCount(call_count); + } + + // Returns true iff call_count calls will over-saturate this + // cardinality, i.e. exceed the maximum number of allowed calls. + bool IsOverSaturatedByCallCount(int call_count) const { + return impl_->IsSaturatedByCallCount(call_count) && + !impl_->IsSatisfiedByCallCount(call_count); + } + + // Describes self to an ostream + void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); } + + // Describes the given actual call count to an ostream. + static void DescribeActualCallCountTo(int actual_call_count, + ::std::ostream* os); + + private: + internal::linked_ptr impl_; +}; + +// Creates a cardinality that allows at least n calls. +GTEST_API_ Cardinality AtLeast(int n); + +// Creates a cardinality that allows at most n calls. +GTEST_API_ Cardinality AtMost(int n); + +// Creates a cardinality that allows any number of calls. +GTEST_API_ Cardinality AnyNumber(); + +// Creates a cardinality that allows between min and max calls. +GTEST_API_ Cardinality Between(int min, int max); + +// Creates a cardinality that allows exactly n calls. +GTEST_API_ Cardinality Exactly(int n); + +// Creates a cardinality from its implementation. +inline Cardinality MakeCardinality(const CardinalityInterface* c) { + return Cardinality(c); +} + +} // namespace testing + +#endif // GMOCK_INCLUDE_GMOCK_GMOCK_CARDINALITIES_H_ +// This file was GENERATED by a script. DO NOT EDIT BY HAND!!! + +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file implements some commonly used variadic actions. + +#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_ACTIONS_H_ +#define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_ACTIONS_H_ + + +namespace testing { +namespace internal { + +// InvokeHelper knows how to unpack an N-tuple and invoke an N-ary +// function or method with the unpacked values, where F is a function +// type that takes N arguments. +template +class InvokeHelper; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple<>&) { + return function(); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple<>&) { + return (obj_ptr->*method_ptr)(); + } +}; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return function(get<0>(args)); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return (obj_ptr->*method_ptr)(get<0>(args)); + } +}; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return function(get<0>(args), get<1>(args)); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args)); + } +}; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return function(get<0>(args), get<1>(args), get<2>(args)); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args)); + } +}; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args)); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args), + get<3>(args)); + } +}; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args), + get<4>(args)); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args), + get<3>(args), get<4>(args)); + } +}; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args), + get<4>(args), get<5>(args)); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args), + get<3>(args), get<4>(args), get<5>(args)); + } +}; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args), + get<4>(args), get<5>(args), get<6>(args)); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args), + get<3>(args), get<4>(args), get<5>(args), get<6>(args)); + } +}; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args), + get<4>(args), get<5>(args), get<6>(args), get<7>(args)); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args), + get<3>(args), get<4>(args), get<5>(args), get<6>(args), get<7>(args)); + } +}; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args), + get<4>(args), get<5>(args), get<6>(args), get<7>(args), get<8>(args)); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args), + get<3>(args), get<4>(args), get<5>(args), get<6>(args), get<7>(args), + get<8>(args)); + } +}; + +template +class InvokeHelper > { + public: + template + static R Invoke(Function function, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args), + get<4>(args), get<5>(args), get<6>(args), get<7>(args), get<8>(args), + get<9>(args)); + } + + template + static R InvokeMethod(Class* obj_ptr, + MethodPtr method_ptr, + const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args), + get<3>(args), get<4>(args), get<5>(args), get<6>(args), get<7>(args), + get<8>(args), get<9>(args)); + } +}; + +// CallableHelper has static methods for invoking "callables", +// i.e. function pointers and functors. It uses overloading to +// provide a uniform interface for invoking different kinds of +// callables. In particular, you can use: +// +// CallableHelper::Call(callable, a1, a2, ..., an) +// +// to invoke an n-ary callable, where R is its return type. If an +// argument, say a2, needs to be passed by reference, you should write +// ByRef(a2) instead of a2 in the above expression. +template +class CallableHelper { + public: + // Calls a nullary callable. + template + static R Call(Function function) { return function(); } + + // Calls a unary callable. + + // We deliberately pass a1 by value instead of const reference here + // in case it is a C-string literal. If we had declared the + // parameter as 'const A1& a1' and write Call(function, "Hi"), the + // compiler would've thought A1 is 'char[3]', which causes trouble + // when you need to copy a value of type A1. By declaring the + // parameter as 'A1 a1', the compiler will correctly infer that A1 + // is 'const char*' when it sees Call(function, "Hi"). + // + // Since this function is defined inline, the compiler can get rid + // of the copying of the arguments. Therefore the performance won't + // be hurt. + template + static R Call(Function function, A1 a1) { return function(a1); } + + // Calls a binary callable. + template + static R Call(Function function, A1 a1, A2 a2) { + return function(a1, a2); + } + + // Calls a ternary callable. + template + static R Call(Function function, A1 a1, A2 a2, A3 a3) { + return function(a1, a2, a3); + } + + // Calls a 4-ary callable. + template + static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4) { + return function(a1, a2, a3, a4); + } + + // Calls a 5-ary callable. + template + static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) { + return function(a1, a2, a3, a4, a5); + } + + // Calls a 6-ary callable. + template + static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6) { + return function(a1, a2, a3, a4, a5, a6); + } + + // Calls a 7-ary callable. + template + static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, + A7 a7) { + return function(a1, a2, a3, a4, a5, a6, a7); + } + + // Calls a 8-ary callable. + template + static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, + A7 a7, A8 a8) { + return function(a1, a2, a3, a4, a5, a6, a7, a8); + } + + // Calls a 9-ary callable. + template + static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, + A7 a7, A8 a8, A9 a9) { + return function(a1, a2, a3, a4, a5, a6, a7, a8, a9); + } + + // Calls a 10-ary callable. + template + static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, + A7 a7, A8 a8, A9 a9, A10 a10) { + return function(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10); + } +}; // class CallableHelper + +// An INTERNAL macro for extracting the type of a tuple field. It's +// subject to change without notice - DO NOT USE IN USER CODE! +#define GMOCK_FIELD_(Tuple, N) \ + typename ::std::tr1::tuple_element::type + +// SelectArgs::type is the +// type of an n-ary function whose i-th (1-based) argument type is the +// k{i}-th (0-based) field of ArgumentTuple, which must be a tuple +// type, and whose return type is Result. For example, +// SelectArgs, 0, 3>::type +// is int(bool, long). +// +// SelectArgs::Select(args) +// returns the selected fields (k1, k2, ..., k_n) of args as a tuple. +// For example, +// SelectArgs, 2, 0>::Select( +// ::std::tr1::make_tuple(true, 'a', 2.5)) +// returns ::std::tr1::tuple (2.5, true). +// +// The numbers in list k1, k2, ..., k_n must be >= 0, where n can be +// in the range [0, 10]. Duplicates are allowed and they don't have +// to be in an ascending or descending order. + +template +class SelectArgs { + public: + typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1), + GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3), + GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5), + GMOCK_FIELD_(ArgumentTuple, k6), GMOCK_FIELD_(ArgumentTuple, k7), + GMOCK_FIELD_(ArgumentTuple, k8), GMOCK_FIELD_(ArgumentTuple, k9), + GMOCK_FIELD_(ArgumentTuple, k10)); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& args) { + using ::std::tr1::get; + return SelectedArgs(get(args), get(args), get(args), + get(args), get(args), get(args), get(args), + get(args), get(args), get(args)); + } +}; + +template +class SelectArgs { + public: + typedef Result type(); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& /* args */) { + using ::std::tr1::get; + return SelectedArgs(); + } +}; + +template +class SelectArgs { + public: + typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1)); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& args) { + using ::std::tr1::get; + return SelectedArgs(get(args)); + } +}; + +template +class SelectArgs { + public: + typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1), + GMOCK_FIELD_(ArgumentTuple, k2)); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& args) { + using ::std::tr1::get; + return SelectedArgs(get(args), get(args)); + } +}; + +template +class SelectArgs { + public: + typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1), + GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3)); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& args) { + using ::std::tr1::get; + return SelectedArgs(get(args), get(args), get(args)); + } +}; + +template +class SelectArgs { + public: + typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1), + GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3), + GMOCK_FIELD_(ArgumentTuple, k4)); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& args) { + using ::std::tr1::get; + return SelectedArgs(get(args), get(args), get(args), + get(args)); + } +}; + +template +class SelectArgs { + public: + typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1), + GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3), + GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5)); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& args) { + using ::std::tr1::get; + return SelectedArgs(get(args), get(args), get(args), + get(args), get(args)); + } +}; + +template +class SelectArgs { + public: + typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1), + GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3), + GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5), + GMOCK_FIELD_(ArgumentTuple, k6)); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& args) { + using ::std::tr1::get; + return SelectedArgs(get(args), get(args), get(args), + get(args), get(args), get(args)); + } +}; + +template +class SelectArgs { + public: + typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1), + GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3), + GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5), + GMOCK_FIELD_(ArgumentTuple, k6), GMOCK_FIELD_(ArgumentTuple, k7)); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& args) { + using ::std::tr1::get; + return SelectedArgs(get(args), get(args), get(args), + get(args), get(args), get(args), get(args)); + } +}; + +template +class SelectArgs { + public: + typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1), + GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3), + GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5), + GMOCK_FIELD_(ArgumentTuple, k6), GMOCK_FIELD_(ArgumentTuple, k7), + GMOCK_FIELD_(ArgumentTuple, k8)); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& args) { + using ::std::tr1::get; + return SelectedArgs(get(args), get(args), get(args), + get(args), get(args), get(args), get(args), + get(args)); + } +}; + +template +class SelectArgs { + public: + typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1), + GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3), + GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5), + GMOCK_FIELD_(ArgumentTuple, k6), GMOCK_FIELD_(ArgumentTuple, k7), + GMOCK_FIELD_(ArgumentTuple, k8), GMOCK_FIELD_(ArgumentTuple, k9)); + typedef typename Function::ArgumentTuple SelectedArgs; + static SelectedArgs Select(const ArgumentTuple& args) { + using ::std::tr1::get; + return SelectedArgs(get(args), get(args), get(args), + get(args), get(args), get(args), get(args), + get(args), get(args)); + } +}; + +#undef GMOCK_FIELD_ + +// Implements the WithArgs action. +template +class WithArgsAction { + public: + explicit WithArgsAction(const InnerAction& action) : action_(action) {} + + template + operator Action() const { return MakeAction(new Impl(action_)); } + + private: + template + class Impl : public ActionInterface { + public: + typedef typename Function::Result Result; + typedef typename Function::ArgumentTuple ArgumentTuple; + + explicit Impl(const InnerAction& action) : action_(action) {} + + virtual Result Perform(const ArgumentTuple& args) { + return action_.Perform(SelectArgs::Select(args)); + } + + private: + typedef typename SelectArgs::type InnerFunctionType; + + Action action_; + }; + + const InnerAction action_; + + GTEST_DISALLOW_ASSIGN_(WithArgsAction); +}; + +// A macro from the ACTION* family (defined later in this file) +// defines an action that can be used in a mock function. Typically, +// these actions only care about a subset of the arguments of the mock +// function. For example, if such an action only uses the second +// argument, it can be used in any mock function that takes >= 2 +// arguments where the type of the second argument is compatible. +// +// Therefore, the action implementation must be prepared to take more +// arguments than it needs. The ExcessiveArg type is used to +// represent those excessive arguments. In order to keep the compiler +// error messages tractable, we define it in the testing namespace +// instead of testing::internal. However, this is an INTERNAL TYPE +// and subject to change without notice, so a user MUST NOT USE THIS +// TYPE DIRECTLY. +struct ExcessiveArg {}; + +// A helper class needed for implementing the ACTION* macros. +template +class ActionHelper { + public: + static Result Perform(Impl* impl, const ::std::tr1::tuple<>& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl<>(args, ExcessiveArg(), + ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg()); + } + + template + static Result Perform(Impl* impl, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl(args, get<0>(args), + ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg()); + } + + template + static Result Perform(Impl* impl, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl(args, get<0>(args), + get<1>(args), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg()); + } + + template + static Result Perform(Impl* impl, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl(args, get<0>(args), + get<1>(args), get<2>(args), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg()); + } + + template + static Result Perform(Impl* impl, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl(args, get<0>(args), + get<1>(args), get<2>(args), get<3>(args), ExcessiveArg(), + ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg()); + } + + template + static Result Perform(Impl* impl, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl(args, + get<0>(args), get<1>(args), get<2>(args), get<3>(args), get<4>(args), + ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg()); + } + + template + static Result Perform(Impl* impl, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl(args, + get<0>(args), get<1>(args), get<2>(args), get<3>(args), get<4>(args), + get<5>(args), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg()); + } + + template + static Result Perform(Impl* impl, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl(args, + get<0>(args), get<1>(args), get<2>(args), get<3>(args), get<4>(args), + get<5>(args), get<6>(args), ExcessiveArg(), ExcessiveArg(), + ExcessiveArg()); + } + + template + static Result Perform(Impl* impl, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl(args, get<0>(args), get<1>(args), get<2>(args), get<3>(args), + get<4>(args), get<5>(args), get<6>(args), get<7>(args), ExcessiveArg(), + ExcessiveArg()); + } + + template + static Result Perform(Impl* impl, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl(args, get<0>(args), get<1>(args), get<2>(args), get<3>(args), + get<4>(args), get<5>(args), get<6>(args), get<7>(args), get<8>(args), + ExcessiveArg()); + } + + template + static Result Perform(Impl* impl, const ::std::tr1::tuple& args) { + using ::std::tr1::get; + return impl->template gmock_PerformImpl(args, get<0>(args), get<1>(args), get<2>(args), get<3>(args), + get<4>(args), get<5>(args), get<6>(args), get<7>(args), get<8>(args), + get<9>(args)); + } +}; + +} // namespace internal + +// Various overloads for Invoke(). + +// WithArgs(an_action) creates an action that passes +// the selected arguments of the mock function to an_action and +// performs it. It serves as an adaptor between actions with +// different argument lists. C++ doesn't support default arguments for +// function templates, so we have to overload it. +template +inline internal::WithArgsAction +WithArgs(const InnerAction& action) { + return internal::WithArgsAction(action); +} + +template +inline internal::WithArgsAction +WithArgs(const InnerAction& action) { + return internal::WithArgsAction(action); +} + +template +inline internal::WithArgsAction +WithArgs(const InnerAction& action) { + return internal::WithArgsAction(action); +} + +template +inline internal::WithArgsAction +WithArgs(const InnerAction& action) { + return internal::WithArgsAction(action); +} + +template +inline internal::WithArgsAction +WithArgs(const InnerAction& action) { + return internal::WithArgsAction(action); +} + +template +inline internal::WithArgsAction +WithArgs(const InnerAction& action) { + return internal::WithArgsAction(action); +} + +template +inline internal::WithArgsAction +WithArgs(const InnerAction& action) { + return internal::WithArgsAction(action); +} + +template +inline internal::WithArgsAction +WithArgs(const InnerAction& action) { + return internal::WithArgsAction(action); +} + +template +inline internal::WithArgsAction +WithArgs(const InnerAction& action) { + return internal::WithArgsAction(action); +} + +template +inline internal::WithArgsAction +WithArgs(const InnerAction& action) { + return internal::WithArgsAction(action); +} + +// Creates an action that does actions a1, a2, ..., sequentially in +// each invocation. +template +inline internal::DoBothAction +DoAll(Action1 a1, Action2 a2) { + return internal::DoBothAction(a1, a2); +} + +template +inline internal::DoBothAction > +DoAll(Action1 a1, Action2 a2, Action3 a3) { + return DoAll(a1, DoAll(a2, a3)); +} + +template +inline internal::DoBothAction > > +DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4) { + return DoAll(a1, DoAll(a2, a3, a4)); +} + +template +inline internal::DoBothAction > > > +DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5) { + return DoAll(a1, DoAll(a2, a3, a4, a5)); +} + +template +inline internal::DoBothAction > > > > +DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6) { + return DoAll(a1, DoAll(a2, a3, a4, a5, a6)); +} + +template +inline internal::DoBothAction > > > > > +DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6, + Action7 a7) { + return DoAll(a1, DoAll(a2, a3, a4, a5, a6, a7)); +} + +template +inline internal::DoBothAction > > > > > > +DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6, + Action7 a7, Action8 a8) { + return DoAll(a1, DoAll(a2, a3, a4, a5, a6, a7, a8)); +} + +template +inline internal::DoBothAction > > > > > > > +DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6, + Action7 a7, Action8 a8, Action9 a9) { + return DoAll(a1, DoAll(a2, a3, a4, a5, a6, a7, a8, a9)); +} + +template +inline internal::DoBothAction > > > > > > > > +DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6, + Action7 a7, Action8 a8, Action9 a9, Action10 a10) { + return DoAll(a1, DoAll(a2, a3, a4, a5, a6, a7, a8, a9, a10)); +} + +} // namespace testing + +// The ACTION* family of macros can be used in a namespace scope to +// define custom actions easily. The syntax: +// +// ACTION(name) { statements; } +// +// will define an action with the given name that executes the +// statements. The value returned by the statements will be used as +// the return value of the action. Inside the statements, you can +// refer to the K-th (0-based) argument of the mock function by +// 'argK', and refer to its type by 'argK_type'. For example: +// +// ACTION(IncrementArg1) { +// arg1_type temp = arg1; +// return ++(*temp); +// } +// +// allows you to write +// +// ...WillOnce(IncrementArg1()); +// +// You can also refer to the entire argument tuple and its type by +// 'args' and 'args_type', and refer to the mock function type and its +// return type by 'function_type' and 'return_type'. +// +// Note that you don't need to specify the types of the mock function +// arguments. However rest assured that your code is still type-safe: +// you'll get a compiler error if *arg1 doesn't support the ++ +// operator, or if the type of ++(*arg1) isn't compatible with the +// mock function's return type, for example. +// +// Sometimes you'll want to parameterize the action. For that you can use +// another macro: +// +// ACTION_P(name, param_name) { statements; } +// +// For example: +// +// ACTION_P(Add, n) { return arg0 + n; } +// +// will allow you to write: +// +// ...WillOnce(Add(5)); +// +// Note that you don't need to provide the type of the parameter +// either. If you need to reference the type of a parameter named +// 'foo', you can write 'foo_type'. For example, in the body of +// ACTION_P(Add, n) above, you can write 'n_type' to refer to the type +// of 'n'. +// +// We also provide ACTION_P2, ACTION_P3, ..., up to ACTION_P10 to support +// multi-parameter actions. +// +// For the purpose of typing, you can view +// +// ACTION_Pk(Foo, p1, ..., pk) { ... } +// +// as shorthand for +// +// template +// FooActionPk Foo(p1_type p1, ..., pk_type pk) { ... } +// +// In particular, you can provide the template type arguments +// explicitly when invoking Foo(), as in Foo(5, false); +// although usually you can rely on the compiler to infer the types +// for you automatically. You can assign the result of expression +// Foo(p1, ..., pk) to a variable of type FooActionPk. This can be useful when composing actions. +// +// You can also overload actions with different numbers of parameters: +// +// ACTION_P(Plus, a) { ... } +// ACTION_P2(Plus, a, b) { ... } +// +// While it's tempting to always use the ACTION* macros when defining +// a new action, you should also consider implementing ActionInterface +// or using MakePolymorphicAction() instead, especially if you need to +// use the action a lot. While these approaches require more work, +// they give you more control on the types of the mock function +// arguments and the action parameters, which in general leads to +// better compiler error messages that pay off in the long run. They +// also allow overloading actions based on parameter types (as opposed +// to just based on the number of parameters). +// +// CAVEAT: +// +// ACTION*() can only be used in a namespace scope. The reason is +// that C++ doesn't yet allow function-local types to be used to +// instantiate templates. The up-coming C++0x standard will fix this. +// Once that's done, we'll consider supporting using ACTION*() inside +// a function. +// +// MORE INFORMATION: +// +// To learn more about using these macros, please search for 'ACTION' +// on http://code.google.com/p/googlemock/wiki/CookBook. + +// An internal macro needed for implementing ACTION*(). +#define GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_\ + const args_type& args GTEST_ATTRIBUTE_UNUSED_, \ + arg0_type arg0 GTEST_ATTRIBUTE_UNUSED_, \ + arg1_type arg1 GTEST_ATTRIBUTE_UNUSED_, \ + arg2_type arg2 GTEST_ATTRIBUTE_UNUSED_, \ + arg3_type arg3 GTEST_ATTRIBUTE_UNUSED_, \ + arg4_type arg4 GTEST_ATTRIBUTE_UNUSED_, \ + arg5_type arg5 GTEST_ATTRIBUTE_UNUSED_, \ + arg6_type arg6 GTEST_ATTRIBUTE_UNUSED_, \ + arg7_type arg7 GTEST_ATTRIBUTE_UNUSED_, \ + arg8_type arg8 GTEST_ATTRIBUTE_UNUSED_, \ + arg9_type arg9 GTEST_ATTRIBUTE_UNUSED_ + +// Sometimes you want to give an action explicit template parameters +// that cannot be inferred from its value parameters. ACTION() and +// ACTION_P*() don't support that. ACTION_TEMPLATE() remedies that +// and can be viewed as an extension to ACTION() and ACTION_P*(). +// +// The syntax: +// +// ACTION_TEMPLATE(ActionName, +// HAS_m_TEMPLATE_PARAMS(kind1, name1, ..., kind_m, name_m), +// AND_n_VALUE_PARAMS(p1, ..., p_n)) { statements; } +// +// defines an action template that takes m explicit template +// parameters and n value parameters. name_i is the name of the i-th +// template parameter, and kind_i specifies whether it's a typename, +// an integral constant, or a template. p_i is the name of the i-th +// value parameter. +// +// Example: +// +// // DuplicateArg(output) converts the k-th argument of the mock +// // function to type T and copies it to *output. +// ACTION_TEMPLATE(DuplicateArg, +// HAS_2_TEMPLATE_PARAMS(int, k, typename, T), +// AND_1_VALUE_PARAMS(output)) { +// *output = T(std::tr1::get(args)); +// } +// ... +// int n; +// EXPECT_CALL(mock, Foo(_, _)) +// .WillOnce(DuplicateArg<1, unsigned char>(&n)); +// +// To create an instance of an action template, write: +// +// ActionName(v1, ..., v_n) +// +// where the ts are the template arguments and the vs are the value +// arguments. The value argument types are inferred by the compiler. +// If you want to explicitly specify the value argument types, you can +// provide additional template arguments: +// +// ActionName(v1, ..., v_n) +// +// where u_i is the desired type of v_i. +// +// ACTION_TEMPLATE and ACTION/ACTION_P* can be overloaded on the +// number of value parameters, but not on the number of template +// parameters. Without the restriction, the meaning of the following +// is unclear: +// +// OverloadedAction(x); +// +// Are we using a single-template-parameter action where 'bool' refers +// to the type of x, or are we using a two-template-parameter action +// where the compiler is asked to infer the type of x? +// +// Implementation notes: +// +// GMOCK_INTERNAL_*_HAS_m_TEMPLATE_PARAMS and +// GMOCK_INTERNAL_*_AND_n_VALUE_PARAMS are internal macros for +// implementing ACTION_TEMPLATE. The main trick we use is to create +// new macro invocations when expanding a macro. For example, we have +// +// #define ACTION_TEMPLATE(name, template_params, value_params) +// ... GMOCK_INTERNAL_DECL_##template_params ... +// +// which causes ACTION_TEMPLATE(..., HAS_1_TEMPLATE_PARAMS(typename, T), ...) +// to expand to +// +// ... GMOCK_INTERNAL_DECL_HAS_1_TEMPLATE_PARAMS(typename, T) ... +// +// Since GMOCK_INTERNAL_DECL_HAS_1_TEMPLATE_PARAMS is a macro, the +// preprocessor will continue to expand it to +// +// ... typename T ... +// +// This technique conforms to the C++ standard and is portable. It +// allows us to implement action templates using O(N) code, where N is +// the maximum number of template/value parameters supported. Without +// using it, we'd have to devote O(N^2) amount of code to implement all +// combinations of m and n. + +// Declares the template parameters. +#define GMOCK_INTERNAL_DECL_HAS_1_TEMPLATE_PARAMS(kind0, name0) kind0 name0 +#define GMOCK_INTERNAL_DECL_HAS_2_TEMPLATE_PARAMS(kind0, name0, kind1, \ + name1) kind0 name0, kind1 name1 +#define GMOCK_INTERNAL_DECL_HAS_3_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2) kind0 name0, kind1 name1, kind2 name2 +#define GMOCK_INTERNAL_DECL_HAS_4_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3) kind0 name0, kind1 name1, kind2 name2, \ + kind3 name3 +#define GMOCK_INTERNAL_DECL_HAS_5_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3, kind4, name4) kind0 name0, kind1 name1, \ + kind2 name2, kind3 name3, kind4 name4 +#define GMOCK_INTERNAL_DECL_HAS_6_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3, kind4, name4, kind5, name5) kind0 name0, \ + kind1 name1, kind2 name2, kind3 name3, kind4 name4, kind5 name5 +#define GMOCK_INTERNAL_DECL_HAS_7_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \ + name6) kind0 name0, kind1 name1, kind2 name2, kind3 name3, kind4 name4, \ + kind5 name5, kind6 name6 +#define GMOCK_INTERNAL_DECL_HAS_8_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \ + kind7, name7) kind0 name0, kind1 name1, kind2 name2, kind3 name3, \ + kind4 name4, kind5 name5, kind6 name6, kind7 name7 +#define GMOCK_INTERNAL_DECL_HAS_9_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \ + kind7, name7, kind8, name8) kind0 name0, kind1 name1, kind2 name2, \ + kind3 name3, kind4 name4, kind5 name5, kind6 name6, kind7 name7, \ + kind8 name8 +#define GMOCK_INTERNAL_DECL_HAS_10_TEMPLATE_PARAMS(kind0, name0, kind1, \ + name1, kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \ + name6, kind7, name7, kind8, name8, kind9, name9) kind0 name0, \ + kind1 name1, kind2 name2, kind3 name3, kind4 name4, kind5 name5, \ + kind6 name6, kind7 name7, kind8 name8, kind9 name9 + +// Lists the template parameters. +#define GMOCK_INTERNAL_LIST_HAS_1_TEMPLATE_PARAMS(kind0, name0) name0 +#define GMOCK_INTERNAL_LIST_HAS_2_TEMPLATE_PARAMS(kind0, name0, kind1, \ + name1) name0, name1 +#define GMOCK_INTERNAL_LIST_HAS_3_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2) name0, name1, name2 +#define GMOCK_INTERNAL_LIST_HAS_4_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3) name0, name1, name2, name3 +#define GMOCK_INTERNAL_LIST_HAS_5_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3, kind4, name4) name0, name1, name2, name3, \ + name4 +#define GMOCK_INTERNAL_LIST_HAS_6_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3, kind4, name4, kind5, name5) name0, name1, \ + name2, name3, name4, name5 +#define GMOCK_INTERNAL_LIST_HAS_7_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \ + name6) name0, name1, name2, name3, name4, name5, name6 +#define GMOCK_INTERNAL_LIST_HAS_8_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \ + kind7, name7) name0, name1, name2, name3, name4, name5, name6, name7 +#define GMOCK_INTERNAL_LIST_HAS_9_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \ + kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \ + kind7, name7, kind8, name8) name0, name1, name2, name3, name4, name5, \ + name6, name7, name8 +#define GMOCK_INTERNAL_LIST_HAS_10_TEMPLATE_PARAMS(kind0, name0, kind1, \ + name1, kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \ + name6, kind7, name7, kind8, name8, kind9, name9) name0, name1, name2, \ + name3, name4, name5, name6, name7, name8, name9 + +// Declares the types of value parameters. +#define GMOCK_INTERNAL_DECL_TYPE_AND_0_VALUE_PARAMS() +#define GMOCK_INTERNAL_DECL_TYPE_AND_1_VALUE_PARAMS(p0) , typename p0##_type +#define GMOCK_INTERNAL_DECL_TYPE_AND_2_VALUE_PARAMS(p0, p1) , \ + typename p0##_type, typename p1##_type +#define GMOCK_INTERNAL_DECL_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) , \ + typename p0##_type, typename p1##_type, typename p2##_type +#define GMOCK_INTERNAL_DECL_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) , \ + typename p0##_type, typename p1##_type, typename p2##_type, \ + typename p3##_type +#define GMOCK_INTERNAL_DECL_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \ + typename p0##_type, typename p1##_type, typename p2##_type, \ + typename p3##_type, typename p4##_type +#define GMOCK_INTERNAL_DECL_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \ + typename p0##_type, typename p1##_type, typename p2##_type, \ + typename p3##_type, typename p4##_type, typename p5##_type +#define GMOCK_INTERNAL_DECL_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6) , typename p0##_type, typename p1##_type, typename p2##_type, \ + typename p3##_type, typename p4##_type, typename p5##_type, \ + typename p6##_type +#define GMOCK_INTERNAL_DECL_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6, p7) , typename p0##_type, typename p1##_type, typename p2##_type, \ + typename p3##_type, typename p4##_type, typename p5##_type, \ + typename p6##_type, typename p7##_type +#define GMOCK_INTERNAL_DECL_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6, p7, p8) , typename p0##_type, typename p1##_type, typename p2##_type, \ + typename p3##_type, typename p4##_type, typename p5##_type, \ + typename p6##_type, typename p7##_type, typename p8##_type +#define GMOCK_INTERNAL_DECL_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6, p7, p8, p9) , typename p0##_type, typename p1##_type, \ + typename p2##_type, typename p3##_type, typename p4##_type, \ + typename p5##_type, typename p6##_type, typename p7##_type, \ + typename p8##_type, typename p9##_type + +// Initializes the value parameters. +#define GMOCK_INTERNAL_INIT_AND_0_VALUE_PARAMS()\ + () +#define GMOCK_INTERNAL_INIT_AND_1_VALUE_PARAMS(p0)\ + (p0##_type gmock_p0) : p0(gmock_p0) +#define GMOCK_INTERNAL_INIT_AND_2_VALUE_PARAMS(p0, p1)\ + (p0##_type gmock_p0, p1##_type gmock_p1) : p0(gmock_p0), p1(gmock_p1) +#define GMOCK_INTERNAL_INIT_AND_3_VALUE_PARAMS(p0, p1, p2)\ + (p0##_type gmock_p0, p1##_type gmock_p1, \ + p2##_type gmock_p2) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2) +#define GMOCK_INTERNAL_INIT_AND_4_VALUE_PARAMS(p0, p1, p2, p3)\ + (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3) +#define GMOCK_INTERNAL_INIT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)\ + (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4) : p0(gmock_p0), p1(gmock_p1), \ + p2(gmock_p2), p3(gmock_p3), p4(gmock_p4) +#define GMOCK_INTERNAL_INIT_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)\ + (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4, \ + p5##_type gmock_p5) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5) +#define GMOCK_INTERNAL_INIT_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)\ + (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ + p6##_type gmock_p6) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6) +#define GMOCK_INTERNAL_INIT_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)\ + (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ + p6##_type gmock_p6, p7##_type gmock_p7) : p0(gmock_p0), p1(gmock_p1), \ + p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \ + p7(gmock_p7) +#define GMOCK_INTERNAL_INIT_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7, p8)\ + (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ + p6##_type gmock_p6, p7##_type gmock_p7, \ + p8##_type gmock_p8) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \ + p8(gmock_p8) +#define GMOCK_INTERNAL_INIT_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7, p8, p9)\ + (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ + p6##_type gmock_p6, p7##_type gmock_p7, p8##_type gmock_p8, \ + p9##_type gmock_p9) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \ + p8(gmock_p8), p9(gmock_p9) + +// Declares the fields for storing the value parameters. +#define GMOCK_INTERNAL_DEFN_AND_0_VALUE_PARAMS() +#define GMOCK_INTERNAL_DEFN_AND_1_VALUE_PARAMS(p0) p0##_type p0; +#define GMOCK_INTERNAL_DEFN_AND_2_VALUE_PARAMS(p0, p1) p0##_type p0; \ + p1##_type p1; +#define GMOCK_INTERNAL_DEFN_AND_3_VALUE_PARAMS(p0, p1, p2) p0##_type p0; \ + p1##_type p1; p2##_type p2; +#define GMOCK_INTERNAL_DEFN_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0##_type p0; \ + p1##_type p1; p2##_type p2; p3##_type p3; +#define GMOCK_INTERNAL_DEFN_AND_5_VALUE_PARAMS(p0, p1, p2, p3, \ + p4) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; +#define GMOCK_INTERNAL_DEFN_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, \ + p5) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \ + p5##_type p5; +#define GMOCK_INTERNAL_DEFN_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \ + p5##_type p5; p6##_type p6; +#define GMOCK_INTERNAL_DEFN_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \ + p5##_type p5; p6##_type p6; p7##_type p7; +#define GMOCK_INTERNAL_DEFN_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7, p8) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; \ + p4##_type p4; p5##_type p5; p6##_type p6; p7##_type p7; p8##_type p8; +#define GMOCK_INTERNAL_DEFN_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7, p8, p9) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; \ + p4##_type p4; p5##_type p5; p6##_type p6; p7##_type p7; p8##_type p8; \ + p9##_type p9; + +// Lists the value parameters. +#define GMOCK_INTERNAL_LIST_AND_0_VALUE_PARAMS() +#define GMOCK_INTERNAL_LIST_AND_1_VALUE_PARAMS(p0) p0 +#define GMOCK_INTERNAL_LIST_AND_2_VALUE_PARAMS(p0, p1) p0, p1 +#define GMOCK_INTERNAL_LIST_AND_3_VALUE_PARAMS(p0, p1, p2) p0, p1, p2 +#define GMOCK_INTERNAL_LIST_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0, p1, p2, p3 +#define GMOCK_INTERNAL_LIST_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) p0, p1, \ + p2, p3, p4 +#define GMOCK_INTERNAL_LIST_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) p0, \ + p1, p2, p3, p4, p5 +#define GMOCK_INTERNAL_LIST_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6) p0, p1, p2, p3, p4, p5, p6 +#define GMOCK_INTERNAL_LIST_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7) p0, p1, p2, p3, p4, p5, p6, p7 +#define GMOCK_INTERNAL_LIST_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7, p8) p0, p1, p2, p3, p4, p5, p6, p7, p8 +#define GMOCK_INTERNAL_LIST_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7, p8, p9) p0, p1, p2, p3, p4, p5, p6, p7, p8, p9 + +// Lists the value parameter types. +#define GMOCK_INTERNAL_LIST_TYPE_AND_0_VALUE_PARAMS() +#define GMOCK_INTERNAL_LIST_TYPE_AND_1_VALUE_PARAMS(p0) , p0##_type +#define GMOCK_INTERNAL_LIST_TYPE_AND_2_VALUE_PARAMS(p0, p1) , p0##_type, \ + p1##_type +#define GMOCK_INTERNAL_LIST_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) , p0##_type, \ + p1##_type, p2##_type +#define GMOCK_INTERNAL_LIST_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) , \ + p0##_type, p1##_type, p2##_type, p3##_type +#define GMOCK_INTERNAL_LIST_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \ + p0##_type, p1##_type, p2##_type, p3##_type, p4##_type +#define GMOCK_INTERNAL_LIST_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \ + p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, p5##_type +#define GMOCK_INTERNAL_LIST_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, p5##_type, \ + p6##_type +#define GMOCK_INTERNAL_LIST_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6, p7) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \ + p5##_type, p6##_type, p7##_type +#define GMOCK_INTERNAL_LIST_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6, p7, p8) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \ + p5##_type, p6##_type, p7##_type, p8##_type +#define GMOCK_INTERNAL_LIST_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6, p7, p8, p9) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \ + p5##_type, p6##_type, p7##_type, p8##_type, p9##_type + +// Declares the value parameters. +#define GMOCK_INTERNAL_DECL_AND_0_VALUE_PARAMS() +#define GMOCK_INTERNAL_DECL_AND_1_VALUE_PARAMS(p0) p0##_type p0 +#define GMOCK_INTERNAL_DECL_AND_2_VALUE_PARAMS(p0, p1) p0##_type p0, \ + p1##_type p1 +#define GMOCK_INTERNAL_DECL_AND_3_VALUE_PARAMS(p0, p1, p2) p0##_type p0, \ + p1##_type p1, p2##_type p2 +#define GMOCK_INTERNAL_DECL_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0##_type p0, \ + p1##_type p1, p2##_type p2, p3##_type p3 +#define GMOCK_INTERNAL_DECL_AND_5_VALUE_PARAMS(p0, p1, p2, p3, \ + p4) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4 +#define GMOCK_INTERNAL_DECL_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, \ + p5) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \ + p5##_type p5 +#define GMOCK_INTERNAL_DECL_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ + p6) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \ + p5##_type p5, p6##_type p6 +#define GMOCK_INTERNAL_DECL_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \ + p5##_type p5, p6##_type p6, p7##_type p7 +#define GMOCK_INTERNAL_DECL_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7, p8) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \ + p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8 +#define GMOCK_INTERNAL_DECL_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7, p8, p9) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \ + p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8, \ + p9##_type p9 + +// The suffix of the class template implementing the action template. +#define GMOCK_INTERNAL_COUNT_AND_0_VALUE_PARAMS() +#define GMOCK_INTERNAL_COUNT_AND_1_VALUE_PARAMS(p0) P +#define GMOCK_INTERNAL_COUNT_AND_2_VALUE_PARAMS(p0, p1) P2 +#define GMOCK_INTERNAL_COUNT_AND_3_VALUE_PARAMS(p0, p1, p2) P3 +#define GMOCK_INTERNAL_COUNT_AND_4_VALUE_PARAMS(p0, p1, p2, p3) P4 +#define GMOCK_INTERNAL_COUNT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) P5 +#define GMOCK_INTERNAL_COUNT_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) P6 +#define GMOCK_INTERNAL_COUNT_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6) P7 +#define GMOCK_INTERNAL_COUNT_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7) P8 +#define GMOCK_INTERNAL_COUNT_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7, p8) P9 +#define GMOCK_INTERNAL_COUNT_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \ + p7, p8, p9) P10 + +// The name of the class template implementing the action template. +#define GMOCK_ACTION_CLASS_(name, value_params)\ + GTEST_CONCAT_TOKEN_(name##Action, GMOCK_INTERNAL_COUNT_##value_params) + +#define ACTION_TEMPLATE(name, template_params, value_params)\ + template \ + class GMOCK_ACTION_CLASS_(name, value_params) {\ + public:\ + GMOCK_ACTION_CLASS_(name, value_params)\ + GMOCK_INTERNAL_INIT_##value_params {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + explicit gmock_Impl GMOCK_INTERNAL_INIT_##value_params {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + GMOCK_INTERNAL_DEFN_##value_params\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(\ + new gmock_Impl(GMOCK_INTERNAL_LIST_##value_params));\ + }\ + GMOCK_INTERNAL_DEFN_##value_params\ + private:\ + GTEST_DISALLOW_ASSIGN_(GMOCK_ACTION_CLASS_(name, value_params));\ + };\ + template \ + inline GMOCK_ACTION_CLASS_(name, value_params)<\ + GMOCK_INTERNAL_LIST_##template_params\ + GMOCK_INTERNAL_LIST_TYPE_##value_params> name(\ + GMOCK_INTERNAL_DECL_##value_params) {\ + return GMOCK_ACTION_CLASS_(name, value_params)<\ + GMOCK_INTERNAL_LIST_##template_params\ + GMOCK_INTERNAL_LIST_TYPE_##value_params>(\ + GMOCK_INTERNAL_LIST_##value_params);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + GMOCK_ACTION_CLASS_(name, value_params)<\ + GMOCK_INTERNAL_LIST_##template_params\ + GMOCK_INTERNAL_LIST_TYPE_##value_params>::gmock_Impl::\ + gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION(name)\ + class name##Action {\ + public:\ + name##Action() {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + gmock_Impl() {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl());\ + }\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##Action);\ + };\ + inline name##Action name() {\ + return name##Action();\ + }\ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##Action::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION_P(name, p0)\ + template \ + class name##ActionP {\ + public:\ + name##ActionP(p0##_type gmock_p0) : p0(gmock_p0) {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + explicit gmock_Impl(p0##_type gmock_p0) : p0(gmock_p0) {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + p0##_type p0;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl(p0));\ + }\ + p0##_type p0;\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##ActionP);\ + };\ + template \ + inline name##ActionP name(p0##_type p0) {\ + return name##ActionP(p0);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##ActionP::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION_P2(name, p0, p1)\ + template \ + class name##ActionP2 {\ + public:\ + name##ActionP2(p0##_type gmock_p0, p1##_type gmock_p1) : p0(gmock_p0), \ + p1(gmock_p1) {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1) : p0(gmock_p0), \ + p1(gmock_p1) {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + p0##_type p0;\ + p1##_type p1;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl(p0, p1));\ + }\ + p0##_type p0;\ + p1##_type p1;\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##ActionP2);\ + };\ + template \ + inline name##ActionP2 name(p0##_type p0, \ + p1##_type p1) {\ + return name##ActionP2(p0, p1);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##ActionP2::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION_P3(name, p0, p1, p2)\ + template \ + class name##ActionP3 {\ + public:\ + name##ActionP3(p0##_type gmock_p0, p1##_type gmock_p1, \ + p2##_type gmock_p2) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2) {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, \ + p2##_type gmock_p2) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2) {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl(p0, p1, p2));\ + }\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##ActionP3);\ + };\ + template \ + inline name##ActionP3 name(p0##_type p0, \ + p1##_type p1, p2##_type p2) {\ + return name##ActionP3(p0, p1, p2);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##ActionP3::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION_P4(name, p0, p1, p2, p3)\ + template \ + class name##ActionP4 {\ + public:\ + name##ActionP4(p0##_type gmock_p0, p1##_type gmock_p1, \ + p2##_type gmock_p2, p3##_type gmock_p3) : p0(gmock_p0), p1(gmock_p1), \ + p2(gmock_p2), p3(gmock_p3) {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3) {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl(p0, p1, p2, p3));\ + }\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##ActionP4);\ + };\ + template \ + inline name##ActionP4 name(p0##_type p0, p1##_type p1, p2##_type p2, \ + p3##_type p3) {\ + return name##ActionP4(p0, p1, \ + p2, p3);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##ActionP4::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION_P5(name, p0, p1, p2, p3, p4)\ + template \ + class name##ActionP5 {\ + public:\ + name##ActionP5(p0##_type gmock_p0, p1##_type gmock_p1, \ + p2##_type gmock_p2, p3##_type gmock_p3, \ + p4##_type gmock_p4) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4) {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4) : p0(gmock_p0), \ + p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), p4(gmock_p4) {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl(p0, p1, p2, p3, p4));\ + }\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##ActionP5);\ + };\ + template \ + inline name##ActionP5 name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \ + p4##_type p4) {\ + return name##ActionP5(p0, p1, p2, p3, p4);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##ActionP5::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION_P6(name, p0, p1, p2, p3, p4, p5)\ + template \ + class name##ActionP6 {\ + public:\ + name##ActionP6(p0##_type gmock_p0, p1##_type gmock_p1, \ + p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \ + p5##_type gmock_p5) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5) {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4, \ + p5##_type gmock_p5) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5) {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + p5##_type p5;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl(p0, p1, p2, p3, p4, p5));\ + }\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + p5##_type p5;\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##ActionP6);\ + };\ + template \ + inline name##ActionP6 name(p0##_type p0, p1##_type p1, p2##_type p2, \ + p3##_type p3, p4##_type p4, p5##_type p5) {\ + return name##ActionP6(p0, p1, p2, p3, p4, p5);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##ActionP6::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION_P7(name, p0, p1, p2, p3, p4, p5, p6)\ + template \ + class name##ActionP7 {\ + public:\ + name##ActionP7(p0##_type gmock_p0, p1##_type gmock_p1, \ + p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \ + p5##_type gmock_p5, p6##_type gmock_p6) : p0(gmock_p0), p1(gmock_p1), \ + p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), \ + p6(gmock_p6) {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ + p6##_type gmock_p6) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6) {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + p5##_type p5;\ + p6##_type p6;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl(p0, p1, p2, p3, p4, p5, \ + p6));\ + }\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + p5##_type p5;\ + p6##_type p6;\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##ActionP7);\ + };\ + template \ + inline name##ActionP7 name(p0##_type p0, p1##_type p1, \ + p2##_type p2, p3##_type p3, p4##_type p4, p5##_type p5, \ + p6##_type p6) {\ + return name##ActionP7(p0, p1, p2, p3, p4, p5, p6);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##ActionP7::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION_P8(name, p0, p1, p2, p3, p4, p5, p6, p7)\ + template \ + class name##ActionP8 {\ + public:\ + name##ActionP8(p0##_type gmock_p0, p1##_type gmock_p1, \ + p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \ + p5##_type gmock_p5, p6##_type gmock_p6, \ + p7##_type gmock_p7) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \ + p7(gmock_p7) {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ + p6##_type gmock_p6, p7##_type gmock_p7) : p0(gmock_p0), \ + p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), \ + p5(gmock_p5), p6(gmock_p6), p7(gmock_p7) {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + p5##_type p5;\ + p6##_type p6;\ + p7##_type p7;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl(p0, p1, p2, p3, p4, p5, \ + p6, p7));\ + }\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + p5##_type p5;\ + p6##_type p6;\ + p7##_type p7;\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##ActionP8);\ + };\ + template \ + inline name##ActionP8 name(p0##_type p0, \ + p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, p5##_type p5, \ + p6##_type p6, p7##_type p7) {\ + return name##ActionP8(p0, p1, p2, p3, p4, p5, \ + p6, p7);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##ActionP8::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION_P9(name, p0, p1, p2, p3, p4, p5, p6, p7, p8)\ + template \ + class name##ActionP9 {\ + public:\ + name##ActionP9(p0##_type gmock_p0, p1##_type gmock_p1, \ + p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \ + p5##_type gmock_p5, p6##_type gmock_p6, p7##_type gmock_p7, \ + p8##_type gmock_p8) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \ + p8(gmock_p8) {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ + p6##_type gmock_p6, p7##_type gmock_p7, \ + p8##_type gmock_p8) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \ + p7(gmock_p7), p8(gmock_p8) {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + p5##_type p5;\ + p6##_type p6;\ + p7##_type p7;\ + p8##_type p8;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl(p0, p1, p2, p3, p4, p5, \ + p6, p7, p8));\ + }\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + p5##_type p5;\ + p6##_type p6;\ + p7##_type p7;\ + p8##_type p8;\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##ActionP9);\ + };\ + template \ + inline name##ActionP9 name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \ + p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, \ + p8##_type p8) {\ + return name##ActionP9(p0, p1, p2, \ + p3, p4, p5, p6, p7, p8);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##ActionP9::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +#define ACTION_P10(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)\ + template \ + class name##ActionP10 {\ + public:\ + name##ActionP10(p0##_type gmock_p0, p1##_type gmock_p1, \ + p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \ + p5##_type gmock_p5, p6##_type gmock_p6, p7##_type gmock_p7, \ + p8##_type gmock_p8, p9##_type gmock_p9) : p0(gmock_p0), p1(gmock_p1), \ + p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \ + p7(gmock_p7), p8(gmock_p8), p9(gmock_p9) {}\ + template \ + class gmock_Impl : public ::testing::ActionInterface {\ + public:\ + typedef F function_type;\ + typedef typename ::testing::internal::Function::Result return_type;\ + typedef typename ::testing::internal::Function::ArgumentTuple\ + args_type;\ + gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \ + p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \ + p6##_type gmock_p6, p7##_type gmock_p7, p8##_type gmock_p8, \ + p9##_type gmock_p9) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \ + p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \ + p7(gmock_p7), p8(gmock_p8), p9(gmock_p9) {}\ + virtual return_type Perform(const args_type& args) {\ + return ::testing::internal::ActionHelper::\ + Perform(this, args);\ + }\ + template \ + return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \ + arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \ + arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \ + arg9_type arg9) const;\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + p5##_type p5;\ + p6##_type p6;\ + p7##_type p7;\ + p8##_type p8;\ + p9##_type p9;\ + private:\ + GTEST_DISALLOW_ASSIGN_(gmock_Impl);\ + };\ + template operator ::testing::Action() const {\ + return ::testing::Action(new gmock_Impl(p0, p1, p2, p3, p4, p5, \ + p6, p7, p8, p9));\ + }\ + p0##_type p0;\ + p1##_type p1;\ + p2##_type p2;\ + p3##_type p3;\ + p4##_type p4;\ + p5##_type p5;\ + p6##_type p6;\ + p7##_type p7;\ + p8##_type p8;\ + p9##_type p9;\ + private:\ + GTEST_DISALLOW_ASSIGN_(name##ActionP10);\ + };\ + template \ + inline name##ActionP10 name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \ + p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8, \ + p9##_type p9) {\ + return name##ActionP10(p0, \ + p1, p2, p3, p4, p5, p6, p7, p8, p9);\ + }\ + template \ + template \ + template \ + typename ::testing::internal::Function::Result\ + name##ActionP10::gmock_Impl::gmock_PerformImpl(\ + GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const + +namespace testing { + +// The ACTION*() macros trigger warning C4100 (unreferenced formal +// parameter) in MSVC with -W4. Unfortunately they cannot be fixed in +// the macro definition, as the warnings are generated when the macro +// is expanded and macro expansion cannot contain #pragma. Therefore +// we suppress them here. +#ifdef _MSC_VER +# pragma warning(push) +# pragma warning(disable:4100) +#endif + +// Various overloads for InvokeArgument(). +// +// The InvokeArgument(a1, a2, ..., a_k) action invokes the N-th +// (0-based) argument, which must be a k-ary callable, of the mock +// function, with arguments a1, a2, ..., a_k. +// +// Notes: +// +// 1. The arguments are passed by value by default. If you need to +// pass an argument by reference, wrap it inside ByRef(). For +// example, +// +// InvokeArgument<1>(5, string("Hello"), ByRef(foo)) +// +// passes 5 and string("Hello") by value, and passes foo by +// reference. +// +// 2. If the callable takes an argument by reference but ByRef() is +// not used, it will receive the reference to a copy of the value, +// instead of the original value. For example, when the 0-th +// argument of the mock function takes a const string&, the action +// +// InvokeArgument<0>(string("Hello")) +// +// makes a copy of the temporary string("Hello") object and passes a +// reference of the copy, instead of the original temporary object, +// to the callable. This makes it easy for a user to define an +// InvokeArgument action from temporary values and have it performed +// later. + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_0_VALUE_PARAMS()) { + return internal::CallableHelper::Call( + ::std::tr1::get(args)); +} + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_1_VALUE_PARAMS(p0)) { + return internal::CallableHelper::Call( + ::std::tr1::get(args), p0); +} + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_2_VALUE_PARAMS(p0, p1)) { + return internal::CallableHelper::Call( + ::std::tr1::get(args), p0, p1); +} + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_3_VALUE_PARAMS(p0, p1, p2)) { + return internal::CallableHelper::Call( + ::std::tr1::get(args), p0, p1, p2); +} + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_4_VALUE_PARAMS(p0, p1, p2, p3)) { + return internal::CallableHelper::Call( + ::std::tr1::get(args), p0, p1, p2, p3); +} + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)) { + return internal::CallableHelper::Call( + ::std::tr1::get(args), p0, p1, p2, p3, p4); +} + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)) { + return internal::CallableHelper::Call( + ::std::tr1::get(args), p0, p1, p2, p3, p4, p5); +} + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)) { + return internal::CallableHelper::Call( + ::std::tr1::get(args), p0, p1, p2, p3, p4, p5, p6); +} + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)) { + return internal::CallableHelper::Call( + ::std::tr1::get(args), p0, p1, p2, p3, p4, p5, p6, p7); +} + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8)) { + return internal::CallableHelper::Call( + ::std::tr1::get(args), p0, p1, p2, p3, p4, p5, p6, p7, p8); +} + +ACTION_TEMPLATE(InvokeArgument, + HAS_1_TEMPLATE_PARAMS(int, k), + AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)) { + return internal::CallableHelper::Call( + ::std::tr1::get(args), p0, p1, p2, p3, p4, p5, p6, p7, p8, p9); +} + +// Various overloads for ReturnNew(). +// +// The ReturnNew(a1, a2, ..., a_k) action returns a pointer to a new +// instance of type T, constructed on the heap with constructor arguments +// a1, a2, ..., and a_k. The caller assumes ownership of the returned value. +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_0_VALUE_PARAMS()) { + return new T(); +} + +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_1_VALUE_PARAMS(p0)) { + return new T(p0); +} + +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_2_VALUE_PARAMS(p0, p1)) { + return new T(p0, p1); +} + +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_3_VALUE_PARAMS(p0, p1, p2)) { + return new T(p0, p1, p2); +} + +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_4_VALUE_PARAMS(p0, p1, p2, p3)) { + return new T(p0, p1, p2, p3); +} + +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)) { + return new T(p0, p1, p2, p3, p4); +} + +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)) { + return new T(p0, p1, p2, p3, p4, p5); +} + +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)) { + return new T(p0, p1, p2, p3, p4, p5, p6); +} + +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)) { + return new T(p0, p1, p2, p3, p4, p5, p6, p7); +} + +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8)) { + return new T(p0, p1, p2, p3, p4, p5, p6, p7, p8); +} + +ACTION_TEMPLATE(ReturnNew, + HAS_1_TEMPLATE_PARAMS(typename, T), + AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)) { + return new T(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9); +} + +#ifdef _MSC_VER +# pragma warning(pop) +#endif + +} // namespace testing + +#endif // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_ACTIONS_H_ +// This file was GENERATED by command: +// pump.py gmock-generated-function-mockers.h.pump +// DO NOT EDIT BY HAND!!! + +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file implements function mockers of various arities. + +#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_FUNCTION_MOCKERS_H_ +#define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_FUNCTION_MOCKERS_H_ + +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file implements the ON_CALL() and EXPECT_CALL() macros. +// +// A user can use the ON_CALL() macro to specify the default action of +// a mock method. The syntax is: +// +// ON_CALL(mock_object, Method(argument-matchers)) +// .With(multi-argument-matcher) +// .WillByDefault(action); +// +// where the .With() clause is optional. +// +// A user can use the EXPECT_CALL() macro to specify an expectation on +// a mock method. The syntax is: +// +// EXPECT_CALL(mock_object, Method(argument-matchers)) +// .With(multi-argument-matchers) +// .Times(cardinality) +// .InSequence(sequences) +// .After(expectations) +// .WillOnce(action) +// .WillRepeatedly(action) +// .RetiresOnSaturation(); +// +// where all clauses are optional, and .InSequence()/.After()/ +// .WillOnce() can appear any number of times. + +#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_SPEC_BUILDERS_H_ +#define GMOCK_INCLUDE_GMOCK_GMOCK_SPEC_BUILDERS_H_ + +#include +#include +#include +#include +#include + +#if GTEST_HAS_EXCEPTIONS +# include // NOLINT +#endif + +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Mock - a framework for writing C++ mock classes. +// +// This file implements some commonly used argument matchers. More +// matchers can be defined by the user implementing the +// MatcherInterface interface if necessary. + +#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_ +#define GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_ + +#include +#include +#include +#include +#include // NOLINT +#include +#include +#include +#include + + +#if GTEST_LANG_CXX11 +#include // NOLINT -- must be after gtest.h +#endif + +namespace testing { + +// To implement a matcher Foo for type T, define: +// 1. a class FooMatcherImpl that implements the +// MatcherInterface interface, and +// 2. a factory function that creates a Matcher object from a +// FooMatcherImpl*. +// +// The two-level delegation design makes it possible to allow a user +// to write "v" instead of "Eq(v)" where a Matcher is expected, which +// is impossible if we pass matchers by pointers. It also eases +// ownership management as Matcher objects can now be copied like +// plain values. + +// MatchResultListener is an abstract class. Its << operator can be +// used by a matcher to explain why a value matches or doesn't match. +// +// TODO(wan@google.com): add method +// bool InterestedInWhy(bool result) const; +// to indicate whether the listener is interested in why the match +// result is 'result'. +class MatchResultListener { + public: + // Creates a listener object with the given underlying ostream. The + // listener does not own the ostream, and does not dereference it + // in the constructor or destructor. + explicit MatchResultListener(::std::ostream* os) : stream_(os) {} + virtual ~MatchResultListener() = 0; // Makes this class abstract. + + // Streams x to the underlying ostream; does nothing if the ostream + // is NULL. + template + MatchResultListener& operator<<(const T& x) { + if (stream_ != NULL) + *stream_ << x; + return *this; + } + + // Returns the underlying ostream. + ::std::ostream* stream() { return stream_; } + + // Returns true iff the listener is interested in an explanation of + // the match result. A matcher's MatchAndExplain() method can use + // this information to avoid generating the explanation when no one + // intends to hear it. + bool IsInterested() const { return stream_ != NULL; } + + private: + ::std::ostream* const stream_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(MatchResultListener); +}; + +inline MatchResultListener::~MatchResultListener() { +} + +// An instance of a subclass of this knows how to describe itself as a +// matcher. +class MatcherDescriberInterface { + public: + virtual ~MatcherDescriberInterface() {} + + // Describes this matcher to an ostream. The function should print + // a verb phrase that describes the property a value matching this + // matcher should have. The subject of the verb phrase is the value + // being matched. For example, the DescribeTo() method of the Gt(7) + // matcher prints "is greater than 7". + virtual void DescribeTo(::std::ostream* os) const = 0; + + // Describes the negation of this matcher to an ostream. For + // example, if the description of this matcher is "is greater than + // 7", the negated description could be "is not greater than 7". + // You are not required to override this when implementing + // MatcherInterface, but it is highly advised so that your matcher + // can produce good error messages. + virtual void DescribeNegationTo(::std::ostream* os) const { + *os << "not ("; + DescribeTo(os); + *os << ")"; + } +}; + +// The implementation of a matcher. +template +class MatcherInterface : public MatcherDescriberInterface { + public: + // Returns true iff the matcher matches x; also explains the match + // result to 'listener' if necessary (see the next paragraph), in + // the form of a non-restrictive relative clause ("which ...", + // "whose ...", etc) that describes x. For example, the + // MatchAndExplain() method of the Pointee(...) matcher should + // generate an explanation like "which points to ...". + // + // Implementations of MatchAndExplain() should add an explanation of + // the match result *if and only if* they can provide additional + // information that's not already present (or not obvious) in the + // print-out of x and the matcher's description. Whether the match + // succeeds is not a factor in deciding whether an explanation is + // needed, as sometimes the caller needs to print a failure message + // when the match succeeds (e.g. when the matcher is used inside + // Not()). + // + // For example, a "has at least 10 elements" matcher should explain + // what the actual element count is, regardless of the match result, + // as it is useful information to the reader; on the other hand, an + // "is empty" matcher probably only needs to explain what the actual + // size is when the match fails, as it's redundant to say that the + // size is 0 when the value is already known to be empty. + // + // You should override this method when defining a new matcher. + // + // It's the responsibility of the caller (Google Mock) to guarantee + // that 'listener' is not NULL. This helps to simplify a matcher's + // implementation when it doesn't care about the performance, as it + // can talk to 'listener' without checking its validity first. + // However, in order to implement dummy listeners efficiently, + // listener->stream() may be NULL. + virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0; + + // Inherits these methods from MatcherDescriberInterface: + // virtual void DescribeTo(::std::ostream* os) const = 0; + // virtual void DescribeNegationTo(::std::ostream* os) const; +}; + +// A match result listener that stores the explanation in a string. +class StringMatchResultListener : public MatchResultListener { + public: + StringMatchResultListener() : MatchResultListener(&ss_) {} + + // Returns the explanation accumulated so far. + internal::string str() const { return ss_.str(); } + + // Clears the explanation accumulated so far. + void Clear() { ss_.str(""); } + + private: + ::std::stringstream ss_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(StringMatchResultListener); +}; + +namespace internal { + +// A match result listener that ignores the explanation. +class DummyMatchResultListener : public MatchResultListener { + public: + DummyMatchResultListener() : MatchResultListener(NULL) {} + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(DummyMatchResultListener); +}; + +// A match result listener that forwards the explanation to a given +// ostream. The difference between this and MatchResultListener is +// that the former is concrete. +class StreamMatchResultListener : public MatchResultListener { + public: + explicit StreamMatchResultListener(::std::ostream* os) + : MatchResultListener(os) {} + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamMatchResultListener); +}; + +// An internal class for implementing Matcher, which will derive +// from it. We put functionalities common to all Matcher +// specializations here to avoid code duplication. +template +class MatcherBase { + public: + // Returns true iff the matcher matches x; also explains the match + // result to 'listener'. + bool MatchAndExplain(T x, MatchResultListener* listener) const { + return impl_->MatchAndExplain(x, listener); + } + + // Returns true iff this matcher matches x. + bool Matches(T x) const { + DummyMatchResultListener dummy; + return MatchAndExplain(x, &dummy); + } + + // Describes this matcher to an ostream. + void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); } + + // Describes the negation of this matcher to an ostream. + void DescribeNegationTo(::std::ostream* os) const { + impl_->DescribeNegationTo(os); + } + + // Explains why x matches, or doesn't match, the matcher. + void ExplainMatchResultTo(T x, ::std::ostream* os) const { + StreamMatchResultListener listener(os); + MatchAndExplain(x, &listener); + } + + // Returns the describer for this matcher object; retains ownership + // of the describer, which is only guaranteed to be alive when + // this matcher object is alive. + const MatcherDescriberInterface* GetDescriber() const { + return impl_.get(); + } + + protected: + MatcherBase() {} + + // Constructs a matcher from its implementation. + explicit MatcherBase(const MatcherInterface* impl) + : impl_(impl) {} + + virtual ~MatcherBase() {} + + private: + // shared_ptr (util/gtl/shared_ptr.h) and linked_ptr have similar + // interfaces. The former dynamically allocates a chunk of memory + // to hold the reference count, while the latter tracks all + // references using a circular linked list without allocating + // memory. It has been observed that linked_ptr performs better in + // typical scenarios. However, shared_ptr can out-perform + // linked_ptr when there are many more uses of the copy constructor + // than the default constructor. + // + // If performance becomes a problem, we should see if using + // shared_ptr helps. + ::testing::internal::linked_ptr > impl_; +}; + +} // namespace internal + +// A Matcher is a copyable and IMMUTABLE (except by assignment) +// object that can check whether a value of type T matches. The +// implementation of Matcher is just a linked_ptr to const +// MatcherInterface, so copying is fairly cheap. Don't inherit +// from Matcher! +template +class Matcher : public internal::MatcherBase { + public: + // Constructs a null matcher. Needed for storing Matcher objects in STL + // containers. A default-constructed matcher is not yet initialized. You + // cannot use it until a valid value has been assigned to it. + Matcher() {} + + // Constructs a matcher from its implementation. + explicit Matcher(const MatcherInterface* impl) + : internal::MatcherBase(impl) {} + + // Implicit constructor here allows people to write + // EXPECT_CALL(foo, Bar(5)) instead of EXPECT_CALL(foo, Bar(Eq(5))) sometimes + Matcher(T value); // NOLINT +}; + +// The following two specializations allow the user to write str +// instead of Eq(str) and "foo" instead of Eq("foo") when a string +// matcher is expected. +template <> +class GTEST_API_ Matcher + : public internal::MatcherBase { + public: + Matcher() {} + + explicit Matcher(const MatcherInterface* impl) + : internal::MatcherBase(impl) {} + + // Allows the user to write str instead of Eq(str) sometimes, where + // str is a string object. + Matcher(const internal::string& s); // NOLINT + + // Allows the user to write "foo" instead of Eq("foo") sometimes. + Matcher(const char* s); // NOLINT +}; + +template <> +class GTEST_API_ Matcher + : public internal::MatcherBase { + public: + Matcher() {} + + explicit Matcher(const MatcherInterface* impl) + : internal::MatcherBase(impl) {} + + // Allows the user to write str instead of Eq(str) sometimes, where + // str is a string object. + Matcher(const internal::string& s); // NOLINT + + // Allows the user to write "foo" instead of Eq("foo") sometimes. + Matcher(const char* s); // NOLINT +}; + +#if GTEST_HAS_STRING_PIECE_ +// The following two specializations allow the user to write str +// instead of Eq(str) and "foo" instead of Eq("foo") when a StringPiece +// matcher is expected. +template <> +class GTEST_API_ Matcher + : public internal::MatcherBase { + public: + Matcher() {} + + explicit Matcher(const MatcherInterface* impl) + : internal::MatcherBase(impl) {} + + // Allows the user to write str instead of Eq(str) sometimes, where + // str is a string object. + Matcher(const internal::string& s); // NOLINT + + // Allows the user to write "foo" instead of Eq("foo") sometimes. + Matcher(const char* s); // NOLINT + + // Allows the user to pass StringPieces directly. + Matcher(StringPiece s); // NOLINT +}; + +template <> +class GTEST_API_ Matcher + : public internal::MatcherBase { + public: + Matcher() {} + + explicit Matcher(const MatcherInterface* impl) + : internal::MatcherBase(impl) {} + + // Allows the user to write str instead of Eq(str) sometimes, where + // str is a string object. + Matcher(const internal::string& s); // NOLINT + + // Allows the user to write "foo" instead of Eq("foo") sometimes. + Matcher(const char* s); // NOLINT + + // Allows the user to pass StringPieces directly. + Matcher(StringPiece s); // NOLINT +}; +#endif // GTEST_HAS_STRING_PIECE_ + +// The PolymorphicMatcher class template makes it easy to implement a +// polymorphic matcher (i.e. a matcher that can match values of more +// than one type, e.g. Eq(n) and NotNull()). +// +// To define a polymorphic matcher, a user should provide an Impl +// class that has a DescribeTo() method and a DescribeNegationTo() +// method, and define a member function (or member function template) +// +// bool MatchAndExplain(const Value& value, +// MatchResultListener* listener) const; +// +// See the definition of NotNull() for a complete example. +template +class PolymorphicMatcher { + public: + explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {} + + // Returns a mutable reference to the underlying matcher + // implementation object. + Impl& mutable_impl() { return impl_; } + + // Returns an immutable reference to the underlying matcher + // implementation object. + const Impl& impl() const { return impl_; } + + template + operator Matcher() const { + return Matcher(new MonomorphicImpl(impl_)); + } + + private: + template + class MonomorphicImpl : public MatcherInterface { + public: + explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} + + virtual void DescribeTo(::std::ostream* os) const { + impl_.DescribeTo(os); + } + + virtual void DescribeNegationTo(::std::ostream* os) const { + impl_.DescribeNegationTo(os); + } + + virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { + return impl_.MatchAndExplain(x, listener); + } + + private: + const Impl impl_; + + GTEST_DISALLOW_ASSIGN_(MonomorphicImpl); + }; + + Impl impl_; + + GTEST_DISALLOW_ASSIGN_(PolymorphicMatcher); +}; + +// Creates a matcher from its implementation. This is easier to use +// than the Matcher constructor as it doesn't require you to +// explicitly write the template argument, e.g. +// +// MakeMatcher(foo); +// vs +// Matcher(foo); +template +inline Matcher MakeMatcher(const MatcherInterface* impl) { + return Matcher(impl); +} + +// Creates a polymorphic matcher from its implementation. This is +// easier to use than the PolymorphicMatcher constructor as it +// doesn't require you to explicitly write the template argument, e.g. +// +// MakePolymorphicMatcher(foo); +// vs +// PolymorphicMatcher(foo); +template +inline PolymorphicMatcher MakePolymorphicMatcher(const Impl& impl) { + return PolymorphicMatcher(impl); +} + +// Anything inside the 'internal' namespace IS INTERNAL IMPLEMENTATION +// and MUST NOT BE USED IN USER CODE!!! +namespace internal { + +// The MatcherCastImpl class template is a helper for implementing +// MatcherCast(). We need this helper in order to partially +// specialize the implementation of MatcherCast() (C++ allows +// class/struct templates to be partially specialized, but not +// function templates.). + +// This general version is used when MatcherCast()'s argument is a +// polymorphic matcher (i.e. something that can be converted to a +// Matcher but is not one yet; for example, Eq(value)) or a value (for +// example, "hello"). +template +class MatcherCastImpl { + public: + static Matcher Cast(M polymorphic_matcher_or_value) { + // M can be a polymorhic matcher, in which case we want to use + // its conversion operator to create Matcher. Or it can be a value + // that should be passed to the Matcher's constructor. + // + // We can't call Matcher(polymorphic_matcher_or_value) when M is a + // polymorphic matcher because it'll be ambiguous if T has an implicit + // constructor from M (this usually happens when T has an implicit + // constructor from any type). + // + // It won't work to unconditionally implict_cast + // polymorphic_matcher_or_value to Matcher because it won't trigger + // a user-defined conversion from M to T if one exists (assuming M is + // a value). + return CastImpl( + polymorphic_matcher_or_value, + BooleanConstant< + internal::ImplicitlyConvertible >::value>()); + } + + private: + static Matcher CastImpl(M value, BooleanConstant) { + // M can't be implicitly converted to Matcher, so M isn't a polymorphic + // matcher. It must be a value then. Use direct initialization to create + // a matcher. + return Matcher(ImplicitCast_(value)); + } + + static Matcher CastImpl(M polymorphic_matcher_or_value, + BooleanConstant) { + // M is implicitly convertible to Matcher, which means that either + // M is a polymorhpic matcher or Matcher has an implicit constructor + // from M. In both cases using the implicit conversion will produce a + // matcher. + // + // Even if T has an implicit constructor from M, it won't be called because + // creating Matcher would require a chain of two user-defined conversions + // (first to create T from M and then to create Matcher from T). + return polymorphic_matcher_or_value; + } +}; + +// This more specialized version is used when MatcherCast()'s argument +// is already a Matcher. This only compiles when type T can be +// statically converted to type U. +template +class MatcherCastImpl > { + public: + static Matcher Cast(const Matcher& source_matcher) { + return Matcher(new Impl(source_matcher)); + } + + private: + class Impl : public MatcherInterface { + public: + explicit Impl(const Matcher& source_matcher) + : source_matcher_(source_matcher) {} + + // We delegate the matching logic to the source matcher. + virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { + return source_matcher_.MatchAndExplain(static_cast(x), listener); + } + + virtual void DescribeTo(::std::ostream* os) const { + source_matcher_.DescribeTo(os); + } + + virtual void DescribeNegationTo(::std::ostream* os) const { + source_matcher_.DescribeNegationTo(os); + } + + private: + const Matcher source_matcher_; + + GTEST_DISALLOW_ASSIGN_(Impl); + }; +}; + +// This even more specialized version is used for efficiently casting +// a matcher to its own type. +template +class MatcherCastImpl > { + public: + static Matcher Cast(const Matcher& matcher) { return matcher; } +}; + +} // namespace internal + +// In order to be safe and clear, casting between different matcher +// types is done explicitly via MatcherCast(m), which takes a +// matcher m and returns a Matcher. It compiles only when T can be +// statically converted to the argument type of m. +template +inline Matcher MatcherCast(M matcher) { + return internal::MatcherCastImpl::Cast(matcher); +} + +// Implements SafeMatcherCast(). +// +// We use an intermediate class to do the actual safe casting as Nokia's +// Symbian compiler cannot decide between +// template ... (M) and +// template ... (const Matcher&) +// for function templates but can for member function templates. +template +class SafeMatcherCastImpl { + public: + // This overload handles polymorphic matchers and values only since + // monomorphic matchers are handled by the next one. + template + static inline Matcher Cast(M polymorphic_matcher_or_value) { + return internal::MatcherCastImpl::Cast(polymorphic_matcher_or_value); + } + + // This overload handles monomorphic matchers. + // + // In general, if type T can be implicitly converted to type U, we can + // safely convert a Matcher to a Matcher (i.e. Matcher is + // contravariant): just keep a copy of the original Matcher, convert the + // argument from type T to U, and then pass it to the underlying Matcher. + // The only exception is when U is a reference and T is not, as the + // underlying Matcher may be interested in the argument's address, which + // is not preserved in the conversion from T to U. + template + static inline Matcher Cast(const Matcher& matcher) { + // Enforce that T can be implicitly converted to U. + GTEST_COMPILE_ASSERT_((internal::ImplicitlyConvertible::value), + T_must_be_implicitly_convertible_to_U); + // Enforce that we are not converting a non-reference type T to a reference + // type U. + GTEST_COMPILE_ASSERT_( + internal::is_reference::value || !internal::is_reference::value, + cannot_convert_non_referentce_arg_to_reference); + // In case both T and U are arithmetic types, enforce that the + // conversion is not lossy. + typedef GTEST_REMOVE_REFERENCE_AND_CONST_(T) RawT; + typedef GTEST_REMOVE_REFERENCE_AND_CONST_(U) RawU; + const bool kTIsOther = GMOCK_KIND_OF_(RawT) == internal::kOther; + const bool kUIsOther = GMOCK_KIND_OF_(RawU) == internal::kOther; + GTEST_COMPILE_ASSERT_( + kTIsOther || kUIsOther || + (internal::LosslessArithmeticConvertible::value), + conversion_of_arithmetic_types_must_be_lossless); + return MatcherCast(matcher); + } +}; + +template +inline Matcher SafeMatcherCast(const M& polymorphic_matcher) { + return SafeMatcherCastImpl::Cast(polymorphic_matcher); +} + +// A() returns a matcher that matches any value of type T. +template +Matcher A(); + +// Anything inside the 'internal' namespace IS INTERNAL IMPLEMENTATION +// and MUST NOT BE USED IN USER CODE!!! +namespace internal { + +// If the explanation is not empty, prints it to the ostream. +inline void PrintIfNotEmpty(const internal::string& explanation, + ::std::ostream* os) { + if (explanation != "" && os != NULL) { + *os << ", " << explanation; + } +} + +// Returns true if the given type name is easy to read by a human. +// This is used to decide whether printing the type of a value might +// be helpful. +inline bool IsReadableTypeName(const string& type_name) { + // We consider a type name readable if it's short or doesn't contain + // a template or function type. + return (type_name.length() <= 20 || + type_name.find_first_of("<(") == string::npos); +} + +// Matches the value against the given matcher, prints the value and explains +// the match result to the listener. Returns the match result. +// 'listener' must not be NULL. +// Value cannot be passed by const reference, because some matchers take a +// non-const argument. +template +bool MatchPrintAndExplain(Value& value, const Matcher& matcher, + MatchResultListener* listener) { + if (!listener->IsInterested()) { + // If the listener is not interested, we do not need to construct the + // inner explanation. + return matcher.Matches(value); + } + + StringMatchResultListener inner_listener; + const bool match = matcher.MatchAndExplain(value, &inner_listener); + + UniversalPrint(value, listener->stream()); +#if GTEST_HAS_RTTI + const string& type_name = GetTypeName(); + if (IsReadableTypeName(type_name)) + *listener->stream() << " (of type " << type_name << ")"; +#endif + PrintIfNotEmpty(inner_listener.str(), listener->stream()); + + return match; +} + +// An internal helper class for doing compile-time loop on a tuple's +// fields. +template +class TuplePrefix { + public: + // TuplePrefix::Matches(matcher_tuple, value_tuple) returns true + // iff the first N fields of matcher_tuple matches the first N + // fields of value_tuple, respectively. + template + static bool Matches(const MatcherTuple& matcher_tuple, + const ValueTuple& value_tuple) { + using ::std::tr1::get; + return TuplePrefix::Matches(matcher_tuple, value_tuple) + && get(matcher_tuple).Matches(get(value_tuple)); + } + + // TuplePrefix::ExplainMatchFailuresTo(matchers, values, os) + // describes failures in matching the first N fields of matchers + // against the first N fields of values. If there is no failure, + // nothing will be streamed to os. + template + static void ExplainMatchFailuresTo(const MatcherTuple& matchers, + const ValueTuple& values, + ::std::ostream* os) { + using ::std::tr1::tuple_element; + using ::std::tr1::get; + + // First, describes failures in the first N - 1 fields. + TuplePrefix::ExplainMatchFailuresTo(matchers, values, os); + + // Then describes the failure (if any) in the (N - 1)-th (0-based) + // field. + typename tuple_element::type matcher = + get(matchers); + typedef typename tuple_element::type Value; + Value value = get(values); + StringMatchResultListener listener; + if (!matcher.MatchAndExplain(value, &listener)) { + // TODO(wan): include in the message the name of the parameter + // as used in MOCK_METHOD*() when possible. + *os << " Expected arg #" << N - 1 << ": "; + get(matchers).DescribeTo(os); + *os << "\n Actual: "; + // We remove the reference in type Value to prevent the + // universal printer from printing the address of value, which + // isn't interesting to the user most of the time. The + // matcher's MatchAndExplain() method handles the case when + // the address is interesting. + internal::UniversalPrint(value, os); + PrintIfNotEmpty(listener.str(), os); + *os << "\n"; + } + } +}; + +// The base case. +template <> +class TuplePrefix<0> { + public: + template + static bool Matches(const MatcherTuple& /* matcher_tuple */, + const ValueTuple& /* value_tuple */) { + return true; + } + + template + static void ExplainMatchFailuresTo(const MatcherTuple& /* matchers */, + const ValueTuple& /* values */, + ::std::ostream* /* os */) {} +}; + +// TupleMatches(matcher_tuple, value_tuple) returns true iff all +// matchers in matcher_tuple match the corresponding fields in +// value_tuple. It is a compiler error if matcher_tuple and +// value_tuple have different number of fields or incompatible field +// types. +template +bool TupleMatches(const MatcherTuple& matcher_tuple, + const ValueTuple& value_tuple) { + using ::std::tr1::tuple_size; + // Makes sure that matcher_tuple and value_tuple have the same + // number of fields. + GTEST_COMPILE_ASSERT_(tuple_size::value == + tuple_size::value, + matcher_and_value_have_different_numbers_of_fields); + return TuplePrefix::value>:: + Matches(matcher_tuple, value_tuple); +} + +// Describes failures in matching matchers against values. If there +// is no failure, nothing will be streamed to os. +template +void ExplainMatchFailureTupleTo(const MatcherTuple& matchers, + const ValueTuple& values, + ::std::ostream* os) { + using ::std::tr1::tuple_size; + TuplePrefix::value>::ExplainMatchFailuresTo( + matchers, values, os); +} + +// TransformTupleValues and its helper. +// +// TransformTupleValuesHelper hides the internal machinery that +// TransformTupleValues uses to implement a tuple traversal. +template +class TransformTupleValuesHelper { + private: + typedef typename ::std::tr1::tuple_size TupleSize; + + public: + // For each member of tuple 't', taken in order, evaluates '*out++ = f(t)'. + // Returns the final value of 'out' in case the caller needs it. + static OutIter Run(Func f, const Tuple& t, OutIter out) { + return IterateOverTuple()(f, t, out); + } + + private: + template + struct IterateOverTuple { + OutIter operator() (Func f, const Tup& t, OutIter out) const { + *out++ = f(::std::tr1::get(t)); + return IterateOverTuple()(f, t, out); + } + }; + template + struct IterateOverTuple { + OutIter operator() (Func /* f */, const Tup& /* t */, OutIter out) const { + return out; + } + }; +}; + +// Successively invokes 'f(element)' on each element of the tuple 't', +// appending each result to the 'out' iterator. Returns the final value +// of 'out'. +template +OutIter TransformTupleValues(Func f, const Tuple& t, OutIter out) { + return TransformTupleValuesHelper::Run(f, t, out); +} + +// Implements A(). +template +class AnyMatcherImpl : public MatcherInterface { + public: + virtual bool MatchAndExplain( + T /* x */, MatchResultListener* /* listener */) const { return true; } + virtual void DescribeTo(::std::ostream* os) const { *os << "is anything"; } + virtual void DescribeNegationTo(::std::ostream* os) const { + // This is mostly for completeness' safe, as it's not very useful + // to write Not(A()). However we cannot completely rule out + // such a possibility, and it doesn't hurt to be prepared. + *os << "never matches"; + } +}; + +// Implements _, a matcher that matches any value of any +// type. This is a polymorphic matcher, so we need a template type +// conversion operator to make it appearing as a Matcher for any +// type T. +class AnythingMatcher { + public: + template + operator Matcher() const { return A(); } +}; + +// Implements a matcher that compares a given value with a +// pre-supplied value using one of the ==, <=, <, etc, operators. The +// two values being compared don't have to have the same type. +// +// The matcher defined here is polymorphic (for example, Eq(5) can be +// used to match an int, a short, a double, etc). Therefore we use +// a template type conversion operator in the implementation. +// +// We define this as a macro in order to eliminate duplicated source +// code. +// +// The following template definition assumes that the Rhs parameter is +// a "bare" type (i.e. neither 'const T' nor 'T&'). +#define GMOCK_IMPLEMENT_COMPARISON_MATCHER_( \ + name, op, relation, negated_relation) \ + template class name##Matcher { \ + public: \ + explicit name##Matcher(const Rhs& rhs) : rhs_(rhs) {} \ + template \ + operator Matcher() const { \ + return MakeMatcher(new Impl(rhs_)); \ + } \ + private: \ + template \ + class Impl : public MatcherInterface { \ + public: \ + explicit Impl(const Rhs& rhs) : rhs_(rhs) {} \ + virtual bool MatchAndExplain(\ + Lhs lhs, MatchResultListener* /* listener */) const { \ + return lhs op rhs_; \ + } \ + virtual void DescribeTo(::std::ostream* os) const { \ + *os << relation " "; \ + UniversalPrint(rhs_, os); \ + } \ + virtual void DescribeNegationTo(::std::ostream* os) const { \ + *os << negated_relation " "; \ + UniversalPrint(rhs_, os); \ + } \ + private: \ + Rhs rhs_; \ + GTEST_DISALLOW_ASSIGN_(Impl); \ + }; \ + Rhs rhs_; \ + GTEST_DISALLOW_ASSIGN_(name##Matcher); \ + } + +// Implements Eq(v), Ge(v), Gt(v), Le(v), Lt(v), and Ne(v) +// respectively. +GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Eq, ==, "is equal to", "isn't equal to"); +GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ge, >=, "is >=", "isn't >="); +GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Gt, >, "is >", "isn't >"); +GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Le, <=, "is <=", "isn't <="); +GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Lt, <, "is <", "isn't <"); +GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ne, !=, "isn't equal to", "is equal to"); + +#undef GMOCK_IMPLEMENT_COMPARISON_MATCHER_ + +// Implements the polymorphic IsNull() matcher, which matches any raw or smart +// pointer that is NULL. +class IsNullMatcher { + public: + template + bool MatchAndExplain(const Pointer& p, + MatchResultListener* /* listener */) const { + return GetRawPointer(p) == NULL; + } + + void DescribeTo(::std::ostream* os) const { *os << "is NULL"; } + void DescribeNegationTo(::std::ostream* os) const { + *os << "isn't NULL"; + } +}; + +// Implements the polymorphic NotNull() matcher, which matches any raw or smart +// pointer that is not NULL. +class NotNullMatcher { + public: + template + bool MatchAndExplain(const Pointer& p, + MatchResultListener* /* listener */) const { + return GetRawPointer(p) != NULL; + } + + void DescribeTo(::std::ostream* os) const { *os << "isn't NULL"; } + void DescribeNegationTo(::std::ostream* os) const { + *os << "is NULL"; + } +}; + +// Ref(variable) matches any argument that is a reference to +// 'variable'. This matcher is polymorphic as it can match any +// super type of the type of 'variable'. +// +// The RefMatcher template class implements Ref(variable). It can +// only be instantiated with a reference type. This prevents a user +// from mistakenly using Ref(x) to match a non-reference function +// argument. For example, the following will righteously cause a +// compiler error: +// +// int n; +// Matcher m1 = Ref(n); // This won't compile. +// Matcher m2 = Ref(n); // This will compile. +template +class RefMatcher; + +template +class RefMatcher { + // Google Mock is a generic framework and thus needs to support + // mocking any function types, including those that take non-const + // reference arguments. Therefore the template parameter T (and + // Super below) can be instantiated to either a const type or a + // non-const type. + public: + // RefMatcher() takes a T& instead of const T&, as we want the + // compiler to catch using Ref(const_value) as a matcher for a + // non-const reference. + explicit RefMatcher(T& x) : object_(x) {} // NOLINT + + template + operator Matcher() const { + // By passing object_ (type T&) to Impl(), which expects a Super&, + // we make sure that Super is a super type of T. In particular, + // this catches using Ref(const_value) as a matcher for a + // non-const reference, as you cannot implicitly convert a const + // reference to a non-const reference. + return MakeMatcher(new Impl(object_)); + } + + private: + template + class Impl : public MatcherInterface { + public: + explicit Impl(Super& x) : object_(x) {} // NOLINT + + // MatchAndExplain() takes a Super& (as opposed to const Super&) + // in order to match the interface MatcherInterface. + virtual bool MatchAndExplain( + Super& x, MatchResultListener* listener) const { + *listener << "which is located @" << static_cast(&x); + return &x == &object_; + } + + virtual void DescribeTo(::std::ostream* os) const { + *os << "references the variable "; + UniversalPrinter::Print(object_, os); + } + + virtual void DescribeNegationTo(::std::ostream* os) const { + *os << "does not reference the variable "; + UniversalPrinter::Print(object_, os); + } + + private: + const Super& object_; + + GTEST_DISALLOW_ASSIGN_(Impl); + }; + + T& object_; + + GTEST_DISALLOW_ASSIGN_(RefMatcher); +}; + +// Polymorphic helper functions for narrow and wide string matchers. +inline bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) { + return String::CaseInsensitiveCStringEquals(lhs, rhs); +} + +inline bool CaseInsensitiveCStringEquals(const wchar_t* lhs, + const wchar_t* rhs) { + return String::CaseInsensitiveWideCStringEquals(lhs, rhs); +} + +// String comparison for narrow or wide strings that can have embedded NUL +// characters. +template +bool CaseInsensitiveStringEquals(const StringType& s1, + const StringType& s2) { + // Are the heads equal? + if (!CaseInsensitiveCStringEquals(s1.c_str(), s2.c_str())) { + return false; + } + + // Skip the equal heads. + const typename StringType::value_type nul = 0; + const size_t i1 = s1.find(nul), i2 = s2.find(nul); + + // Are we at the end of either s1 or s2? + if (i1 == StringType::npos || i2 == StringType::npos) { + return i1 == i2; + } + + // Are the tails equal? + return CaseInsensitiveStringEquals(s1.substr(i1 + 1), s2.substr(i2 + 1)); +} + +// String matchers. + +// Implements equality-based string matchers like StrEq, StrCaseNe, and etc. +template +class StrEqualityMatcher { + public: + StrEqualityMatcher(const StringType& str, bool expect_eq, + bool case_sensitive) + : string_(str), expect_eq_(expect_eq), case_sensitive_(case_sensitive) {} + + // Accepts pointer types, particularly: + // const char* + // char* + // const wchar_t* + // wchar_t* + template + bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { + if (s == NULL) { + return !expect_eq_; + } + return MatchAndExplain(StringType(s), listener); + } + + // Matches anything that can convert to StringType. + // + // This is a template, not just a plain function with const StringType&, + // because StringPiece has some interfering non-explicit constructors. + template + bool MatchAndExplain(const MatcheeStringType& s, + MatchResultListener* /* listener */) const { + const StringType& s2(s); + const bool eq = case_sensitive_ ? s2 == string_ : + CaseInsensitiveStringEquals(s2, string_); + return expect_eq_ == eq; + } + + void DescribeTo(::std::ostream* os) const { + DescribeToHelper(expect_eq_, os); + } + + void DescribeNegationTo(::std::ostream* os) const { + DescribeToHelper(!expect_eq_, os); + } + + private: + void DescribeToHelper(bool expect_eq, ::std::ostream* os) const { + *os << (expect_eq ? "is " : "isn't "); + *os << "equal to "; + if (!case_sensitive_) { + *os << "(ignoring case) "; + } + UniversalPrint(string_, os); + } + + const StringType string_; + const bool expect_eq_; + const bool case_sensitive_; + + GTEST_DISALLOW_ASSIGN_(StrEqualityMatcher); +}; + +// Implements the polymorphic HasSubstr(substring) matcher, which +// can be used as a Matcher as long as T can be converted to a +// string. +template +class HasSubstrMatcher { + public: + explicit HasSubstrMatcher(const StringType& substring) + : substring_(substring) {} + + // Accepts pointer types, particularly: + // const char* + // char* + // const wchar_t* + // wchar_t* + template + bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { + return s != NULL && MatchAndExplain(StringType(s), listener); + } + + // Matches anything that can convert to StringType. + // + // This is a template, not just a plain function with const StringType&, + // because StringPiece has some interfering non-explicit constructors. + template + bool MatchAndExplain(const MatcheeStringType& s, + MatchResultListener* /* listener */) const { + const StringType& s2(s); + return s2.find(substring_) != StringType::npos; + } + + // Describes what this matcher matches. + void DescribeTo(::std::ostream* os) const { + *os << "has substring "; + UniversalPrint(substring_, os); + } + + void DescribeNegationTo(::std::ostream* os) const { + *os << "has no substring "; + UniversalPrint(substring_, os); + } + + private: + const StringType substring_; + + GTEST_DISALLOW_ASSIGN_(HasSubstrMatcher); +}; + +// Implements the polymorphic StartsWith(substring) matcher, which +// can be used as a Matcher as long as T can be converted to a +// string. +template +class StartsWithMatcher { + public: + explicit StartsWithMatcher(const StringType& prefix) : prefix_(prefix) { + } + + // Accepts pointer types, particularly: + // const char* + // char* + // const wchar_t* + // wchar_t* + template + bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { + return s != NULL && MatchAndExplain(StringType(s), listener); + } + + // Matches anything that can convert to StringType. + // + // This is a template, not just a plain function with const StringType&, + // because StringPiece has some interfering non-explicit constructors. + template + bool MatchAndExplain(const MatcheeStringType& s, + MatchResultListener* /* listener */) const { + const StringType& s2(s); + return s2.length() >= prefix_.length() && + s2.substr(0, prefix_.length()) == prefix_; + } + + void DescribeTo(::std::ostream* os) const { + *os << "starts with "; + UniversalPrint(prefix_, os); + } + + void DescribeNegationTo(::std::ostream* os) const { + *os << "doesn't start with "; + UniversalPrint(prefix_, os); + } + + private: + const StringType prefix_; + + GTEST_DISALLOW_ASSIGN_(StartsWithMatcher); +}; + +// Implements the polymorphic EndsWith(substring) matcher, which +// can be used as a Matcher as long as T can be converted to a +// string. +template +class EndsWithMatcher { + public: + explicit EndsWithMatcher(const StringType& suffix) : suffix_(suffix) {} + + // Accepts pointer types, particularly: + // const char* + // char* + // const wchar_t* + // wchar_t* + template + bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { + return s != NULL && MatchAndExplain(StringType(s), listener); + } + + // Matches anything that can convert to StringType. + // + // This is a template, not just a plain function with const StringType&, + // because StringPiece has some interfering non-explicit constructors. + template + bool MatchAndExplain(const MatcheeStringType& s, + MatchResultListener* /* listener */) const { + const StringType& s2(s); + return s2.length() >= suffix_.length() && + s2.substr(s2.length() - suffix_.length()) == suffix_; + } + + void DescribeTo(::std::ostream* os) const { + *os << "ends with "; + UniversalPrint(suffix_, os); + } + + void DescribeNegationTo(::std::ostream* os) const { + *os << "doesn't end with "; + UniversalPrint(suffix_, os); + } + + private: + const StringType suffix_; + + GTEST_DISALLOW_ASSIGN_(EndsWithMatcher); +}; + +// Implements polymorphic matchers MatchesRegex(regex) and +// ContainsRegex(regex), which can be used as a Matcher as long as +// T can be converted to a string. +class MatchesRegexMatcher { + public: + MatchesRegexMatcher(const RE* regex, bool full_match) + : regex_(regex), full_match_(full_match) {} + + // Accepts pointer types, particularly: + // const char* + // char* + // const wchar_t* + // wchar_t* + template + bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { + return s != NULL && MatchAndExplain(internal::string(s), listener); + } + + // Matches anything that can convert to internal::string. + // + // This is a template, not just a plain function with const internal::string&, + // because StringPiece has some interfering non-explicit constructors. + template + bool MatchAndExplain(const MatcheeStringType& s, + MatchResultListener* /* listener */) const { + const internal::string& s2(s); + return full_match_ ? RE::FullMatch(s2, *regex_) : + RE::PartialMatch(s2, *regex_); + } + + void DescribeTo(::std::ostream* os) const { + *os << (full_match_ ? "matches" : "contains") + << " regular expression "; + UniversalPrinter::Print(regex_->pattern(), os); + } + + void DescribeNegationTo(::std::ostream* os) const { + *os << "doesn't " << (full_match_ ? "match" : "contain") + << " regular expression "; + UniversalPrinter::Print(regex_->pattern(), os); + } + + private: + const internal::linked_ptr regex_; + const bool full_match_; + + GTEST_DISALLOW_ASSIGN_(MatchesRegexMatcher); +}; + +// Implements a matcher that compares the two fields of a 2-tuple +// using one of the ==, <=, <, etc, operators. The two fields being +// compared don't have to have the same type. +// +// The matcher defined here is polymorphic (for example, Eq() can be +// used to match a tuple, a tuple, +// etc). Therefore we use a template type conversion operator in the +// implementation. +// +// We define this as a macro in order to eliminate duplicated source +// code. +#define GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(name, op, relation) \ + class name##2Matcher { \ + public: \ + template \ + operator Matcher< ::std::tr1::tuple >() const { \ + return MakeMatcher(new Impl< ::std::tr1::tuple >); \ + } \ + template \ + operator Matcher&>() const { \ + return MakeMatcher(new Impl&>); \ + } \ + private: \ + template \ + class Impl : public MatcherInterface { \ + public: \ + virtual bool MatchAndExplain( \ + Tuple args, \ + MatchResultListener* /* listener */) const { \ + return ::std::tr1::get<0>(args) op ::std::tr1::get<1>(args); \ + } \ + virtual void DescribeTo(::std::ostream* os) const { \ + *os << "are " relation; \ + } \ + virtual void DescribeNegationTo(::std::ostream* os) const { \ + *os << "aren't " relation; \ + } \ + }; \ + } + +// Implements Eq(), Ge(), Gt(), Le(), Lt(), and Ne() respectively. +GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Eq, ==, "an equal pair"); +GMOCK_IMPLEMENT_COMPARISON2_MATCHER_( + Ge, >=, "a pair where the first >= the second"); +GMOCK_IMPLEMENT_COMPARISON2_MATCHER_( + Gt, >, "a pair where the first > the second"); +GMOCK_IMPLEMENT_COMPARISON2_MATCHER_( + Le, <=, "a pair where the first <= the second"); +GMOCK_IMPLEMENT_COMPARISON2_MATCHER_( + Lt, <, "a pair where the first < the second"); +GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Ne, !=, "an unequal pair"); + +#undef GMOCK_IMPLEMENT_COMPARISON2_MATCHER_ + +// Implements the Not(...) matcher for a particular argument type T. +// We do not nest it inside the NotMatcher class template, as that +// will prevent different instantiations of NotMatcher from sharing +// the same NotMatcherImpl class. +template +class NotMatcherImpl : public MatcherInterface { + public: + explicit NotMatcherImpl(const Matcher& matcher) + : matcher_(matcher) {} + + virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { + return !matcher_.MatchAndExplain(x, listener); + } + + virtual void DescribeTo(::std::ostream* os) const { + matcher_.DescribeNegationTo(os); + } + + virtual void DescribeNegationTo(::std::ostream* os) const { + matcher_.DescribeTo(os); + } + + private: + const Matcher matcher_; + + GTEST_DISALLOW_ASSIGN_(NotMatcherImpl); +}; + +// Implements the Not(m) matcher, which matches a value that doesn't +// match matcher m. +template +class NotMatcher { + public: + explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {} + + // This template type conversion operator allows Not(m) to be used + // to match any type m can match. + template + operator Matcher() const { + return Matcher(new NotMatcherImpl(SafeMatcherCast(matcher_))); + } + + private: + InnerMatcher matcher_; + + GTEST_DISALLOW_ASSIGN_(NotMatcher); +}; + +// Implements the AllOf(m1, m2) matcher for a particular argument type +// T. We do not nest it inside the BothOfMatcher class template, as +// that will prevent different instantiations of BothOfMatcher from +// sharing the same BothOfMatcherImpl class. +template +class BothOfMatcherImpl : public MatcherInterface { + public: + BothOfMatcherImpl(const Matcher& matcher1, const Matcher& matcher2) + : matcher1_(matcher1), matcher2_(matcher2) {} + + virtual void DescribeTo(::std::ostream* os) const { + *os << "("; + matcher1_.DescribeTo(os); + *os << ") and ("; + matcher2_.DescribeTo(os); + *os << ")"; + } + + virtual void DescribeNegationTo(::std::ostream* os) const { + *os << "("; + matcher1_.DescribeNegationTo(os); + *os << ") or ("; + matcher2_.DescribeNegationTo(os); + *os << ")"; + } + + virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { + // If either matcher1_ or matcher2_ doesn't match x, we only need + // to explain why one of them fails. + StringMatchResultListener listener1; + if (!matcher1_.MatchAndExplain(x, &listener1)) { + *listener << listener1.str(); + return false; + } + + StringMatchResultListener listener2; + if (!matcher2_.MatchAndExplain(x, &listener2)) { + *listener << listener2.str(); + return false; + } + + // Otherwise we need to explain why *both* of them match. + const internal::string s1 = listener1.str(); + const internal::string s2 = listener2.str(); + + if (s1 == "") { + *listener << s2; + } else { + *listener << s1; + if (s2 != "") { + *listener << ", and " << s2; + } + } + return true; + } + + private: + const Matcher matcher1_; + const Matcher matcher2_; + + GTEST_DISALLOW_ASSIGN_(BothOfMatcherImpl); +}; + +#if GTEST_LANG_CXX11 +// MatcherList provides mechanisms for storing a variable number of matchers in +// a list structure (ListType) and creating a combining matcher from such a +// list. +// The template is defined recursively using the following template paramters: +// * kSize is the length of the MatcherList. +// * Head is the type of the first matcher of the list. +// * Tail denotes the types of the remaining matchers of the list. +template +struct MatcherList { + typedef MatcherList MatcherListTail; + typedef ::std::pair ListType; + + // BuildList stores variadic type values in a nested pair structure. + // Example: + // MatcherList<3, int, string, float>::BuildList(5, "foo", 2.0) will return + // the corresponding result of type pair>. + static ListType BuildList(const Head& matcher, const Tail&... tail) { + return ListType(matcher, MatcherListTail::BuildList(tail...)); + } + + // CreateMatcher creates a Matcher from a given list of matchers (built + // by BuildList()). CombiningMatcher is used to combine the matchers of the + // list. CombiningMatcher must implement MatcherInterface and have a + // constructor taking two Matchers as input. + template class CombiningMatcher> + static Matcher CreateMatcher(const ListType& matchers) { + return Matcher(new CombiningMatcher( + SafeMatcherCast(matchers.first), + MatcherListTail::template CreateMatcher( + matchers.second))); + } +}; + +// The following defines the base case for the recursive definition of +// MatcherList. +template +struct MatcherList<2, Matcher1, Matcher2> { + typedef ::std::pair ListType; + + static ListType BuildList(const Matcher1& matcher1, + const Matcher2& matcher2) { + return ::std::pair(matcher1, matcher2); + } + + template class CombiningMatcher> + static Matcher CreateMatcher(const ListType& matchers) { + return Matcher(new CombiningMatcher( + SafeMatcherCast(matchers.first), + SafeMatcherCast(matchers.second))); + } +}; + +// VariadicMatcher is used for the variadic implementation of +// AllOf(m_1, m_2, ...) and AnyOf(m_1, m_2, ...). +// CombiningMatcher is used to recursively combine the provided matchers +// (of type Args...). +template

          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%0ApZ+W{=UDQ(dC8(A(OR# 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 Q`eh7J#x&7F7 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 Xw_;iIPczBiw3g2DH&5&CTIK%*CDf}; literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 4x3/logo.png b/Assets/Environment/Common/Layouts/Default 4x3/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..54bd5ac96cfb979f1ff469d9302a8eeef7a8e177 GIT binary patch literal 8974 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 Xw_;iIPczBiw3g2DH&5&CTIK%*CDf}; literal 0 HcmV?d00001 diff --git a/Assets/Environment/Common/Layouts/Default 16x9/logo.png b/Assets/Environment/Common/Layouts/Default 16x9/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..54bd5ac96cfb979f1ff469d9302a8eeef7a8e177 GIT binary patch literal 8974 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℞2zVhvNyXTfBwxgSlf%D?_41MDCE+Q4PZzkwQ9XIXo|Ew&P( z54_tG?BXUi`Y$z)tUC$&*lDjstU#z7!5Nxt(7k>BCHRRr6Y6-l>->5xv!{)!E6g@a zA~d`CbgxnHE<>tiZrg>C^vfo?hPV^PSoeZ7nqjO>G?9S8a{ZFywbiTb{>N5xS-&hr zn_X*!m&+MgFJw=7YMD4+_BV;pX!>i0bpIX z#U0=Ek7Jzbwuuk#d+7?5xP=;Ovvxq(LFHUZppn-rr@3<3KOD7E^IGDzpd7UkaSGR` zB>=n5$W%3h04}!>9M5^33n_Q_$cF<6g>_@4w3M@(nAj<2`oX1Z1)|2m#~A4rd`@f0 zb-7c6+?~=}ahm0%`FH{`8s}QeBm}dLg}hGBIS6gR#feuYm4ckpErJkbneseC*_GTF zPMlXPYYM-%LV9=CJ$#hYKU?Bebhqh}{rPbBjuF-73-XqQ;s@fgl~$l{ykgtxl9(P9 z-%aNiAyz3lmz^Gf3ywni0MqrNyWc3rAy(OIUt)e*+9k*3msU+pz6vnvf9SdowV_tD z-GVPsNvtJdbp$HsEU0qPRb{mra$p2QT+7SnztiqxxBuwIN5+Bkt)q2=5V?booW@JK`zjbJKJ@^Uwx?a8X4%( zHEOlh$|x8!!e1E*7wlZdb zK}iMkoYT32uxjV*jtRNjX)ZLhz#%GDhOvW^FOz2gol}gs;%ZIvEe2`!#yZ}7tW6sU z?Br*!$|AW}>NHOwrhwSRaJ!uO{_cK1_Wrh3z_5js;FIFtT=h=vpq9=YkC&d93K*lLCE2NXpW@rs2nx6|nZZ`#AQ?lxt*zvs)yNgst(01x zUoSqb4|gBmKc1d0ufIMoACBBgahKebF}LC?oit{4*HjG z-(IFG00HAAlxy>Ybw<&$t+QYHF15@!kX9;2x2E8%t`)YrA&S+njfgWIQ_S@`Z;1(f z+fr#@w6T2AYBTbEJYb-K%AYz3EXamox@^Z)Zd{|5wiyME8fBM~rtJl>C^cD?m! zC9L~#U|f37mT4~7?jIiwr(b^g#`Nj&;Rm3~7#sJ$O(d1HHI|awe%LVxF zr5Ia_Sdk%XJgQcpWbaodq%k|C1m`8ECHhoqV@M3KmIP^AuAgIu77*Jl#aql8Syz?` z+jW0>bmK8B=eS+A=+`xHJsyrHi5SgryeXX5TO?vv=bo0WdBZi2_6bvPxq%VOR;6 zo6WJf?mZK!rHUvE3Ag)1wN;vxWO3=G9JSe$63YCcw36Y})T8K3+0Ft?f)Uu*o7zgM z1+C#)4}`6y1Pz2O3K`A%<=fiI#SMXRC&y3H+&A)ZJ1eDyHQW5Mz5JvEDE=YN6BAyl zKIcW)L7>YafCgjtrPSx2{*GeUzx$+|L*YWq*s79y=^lj?5Pk7~f%YcV?+GMoj^eaj zt~osmw|D!$?)pP3xyUxTEQv4pz$3p7_!%K0BTpIdy5{wqT%cwcBM`O2l>N>gJEb-2Bh@T+oN3N0+J z=I~c&cC97^wJm?5OeJwdr@G&kxMY8Abtw5t`B$VJ>O=DzqpjtifdQgW;*M)m>YU>_ zhXsVK^jiFPV?WrzJpJ-dOzpel?_v!#PI=49D%N7$rs?&C1@DFt<&MI_xRUb7SO$=s z4!7yEvYisUQhZ)6*)Q(?M{dSAz4+xaM{V z>eSfKYHYbJR}WcnA=lf#a=ADC`&^==s?9@zbDTd%U;D%RLTXtiNWPUqlyd2XMpObS zBAOIh-pF-#{r&_PIiJSvM{9PO(`EKNdSiCfcv|0DdEva~6rp;oUWp!C%-J`nkO_eh z6Gxr>R%)w}Dnx`tSs8m`OvL3{<~hulQZLecB;0W(jW{u}1H**v2~7g42rgnCC z-|ycuuHF8mx*d`bdhEwtt(BXT9UpwyxEWl3Qf5bJO9d`$DTURdgo;ISra8Bzd7-HC zj;r3-p)Rvz5|xm~?GHbOEmwaAx}vtNin6?NLtLCB-zq=cRz2kb1OhWbDaAd%M3osE% zgq*Q_Tc$q+|Fg6YMw#qG%7Z}Z4o5S5U0+e2_kZk;pSJ0Ht!33LOm zNwe294#+WQobtbEd<2b6^aC0tGAqT+dym>GbOZR_spOG|IUExVJriOLBzQpKr zx{&N^$aZzvwbbqyqZqMPMAiZ4H9H0^z*eCnG?DC*YPr3>fB)m~_Pd%TRxsnpwb?w4 zhaU;T>GE}W`j`EF=fdh&e`p(@`E6a@?NzI$KfX8PAr-~|xYQsJ6zR6t&3#IKUFVW# zfvnlx6_9?NeFVgUbrQyNwC+lA@kQ`LQkb3Izo{vKJ8?y3{E@_n9)(uQbV^9BYRWl= z+12sEoLH@m9wZZ)xbr@HQ9{hrG4)W>;%~pn{(%~!s3@tq6pX;TD;Jz0 zuUK_*P?bcuTu9JbeK*;6_B!cAU=R*oMQs2F@U{A zcfqPltm|?@@Wu$!jTOXld(AFH_v$x(|Neg!2yXgfc1=iNZ=qyY*n)+X_!T)-_8|2D zfC{6FdEJm0*Zq!US1Tb$06@`GGZHs3MXV}?I^WI=ba%LGx-o@qa~`r`0zN5L-!5@oatJ`&sHU5eoYmrOdZs)X}b0*RBl9w91kHs$+ zPHK0&gIt4OOPpoXAyLeMpb9x;W=a-Z-y!gfQ4L3g>~kqx0^@eRRbNS~5Z86FwJ_bO zQsa6)$88pkj&{oK6Y}WhbxR;y)oFwR)8(0QmO^$Gq&8Z~`Fcs&N-mrWnRwgvQ1j*b z;d=REx_5m$6qcFhT9c71B_HC_b;ofyOzYxO)J98|iAe2@_9+p=nlLk_ z+IE_5*VA*?3|ec(l+i{={_^@VP3KtgZg>Cm<}p;dT^$mchBZ`oyJp+`He11&Bvzni zDAt9|=E105NyajxI!`Hv00@e>mTHTkGJacDB51W~q~cfwBC+a{OC@Nf=6PG~#F6IP zrZoNV_Kha-I$uJ_3{jKtap??gHh+2kT1q?~4uAUTC)5;TVT^IXHD~YMbkU=C^mKQq z1)a+&;ZAphPJq$mlGWB0f}v|5K;U#`B_omM=C#V3a#cc#~ZLP(!qPBz-s9GyqT zSl4%oE4!?vl(Su8a!>nVbK7;RN)Q&u8MKOifBAA-u8;d;tM$Cy=JhhPhBJ0rE}d>3 z#xduh827Qh+|~lDQ4K>jv_>GE=56!#(6lL(Y4cR-+v9GH-fhc|5949qye`|PmzM(U z{hNnYsq<_%8;z2?UMaxF=;P3&0GsnUmkexZnv@gqoJx|&_Jbh?71Yhf!_YhoeJjOy z->plyozFt)_s9EQNX7N+{pvQtx-*ifaXBiY%|&Fu0C}mHqV>y^QZ}X;4v!4zbUSs; zIQEYSS4nnW!)kS~=fmAzAYZSi5Yn+bD)Uh0piSiMK&5H{>+R-T-1QkSdpji$LaUm9 z%hAr)=(6s1!!UG>k(x0gT66O5Za+jD=QT=o(5*UMK6*E)hC|()4ZxbVfxw{hfYnN- z6S$O-aV~%<&XVRV^R{bM%XuSPX@o?(Y)T>L$-7qoVhkX?ruhQ^==PA^Yc7Q(hS_H8 zB{W<$#JiHO6%dqEaws7e_B*EvAywJR z@~$jdE6HUp$RX`mNLU<{--EXm?p$!?=9JD__SP4reo#V{YU1sKn?K6?|4Gvt-Aj#? zVbdM{%=lJ_Q5n)UWxkrBH;G=hZ@in^Ue=9LxjFHQb2tQ8J=d^Maje`>G$$pZ`7BTZZo#V7ph95`_n{G#=t zY2JiVL%6z-wMOo87R!+9~`LYQ4po;*Nu&Ue3GpoG0lZ-?yrevsb)tzaZ?-_m5 zor-H**9CcPdI}LKi!C0AtyqJbK5DZkJ>=}1^~q+AoA5VA$GjDiQmPWdR(!3pVNxdy zx*dVZ1UGOc`lWcsITKtW6I>2<{l#5BF-dy-F@bD?irVdk;vbWP;r6wj>v|6@}uYobZddcy+-k@)fI0zJh8kVm< z_|527$bEFc(gj$TYQIfZ$eGt7+g;g;J$;hHz+}U@EGU`O1aey)@TS(xI~mu6^&`<2 z@AbNVY&uYU@7>1YMUp^BIZxyGQ@86wd@1=BYDqrZWo7KEqFm~|G9%Msdj3080maA? zE3vHMIfuxqWU6KSKL^nQ>$C(;hEbi}_P3n>Y5Dd_N^#ahji&8l!t3e8MHwF-LQO(Q zl0q;jltK=IM&54;{Oq>PUBGXgkntunKKq%kQ$NI77;$Zehm?w&Z(M083os0Ektts0 zQwo+>bl0;6>C2W@)0&J1Zvz5IU8L^O+-V=0_OYT0>qQI3P@z!W{>eG?Wdl^iTBchrHF%fZB;*^+ zHIQY^!E!zlV5aqPS&s%ejVU zLZMz zyfV?b^Uv7yF-H_55^k>Kw&MzNPEd5Tzp3UiBLZdK4k_I7{M)8@$(9Qex-B->7?Bf+ zG2$BSHCwCA13>~g3uW%!{SWh(c|HH%kM)N9O-N1$Mmr`L0(l{ARu&mB)}?IM#oN+i3>3MA-Gy%w(}J@Z^zzk z=bHK07<*yc_1YTQcB16TE?cfL)lu(6S+Awm>2{HX@@P0Bkyh>A40n){ELL!?hhq-W zxod){KRj~pg7=U!W`^A40FrlX-+umd4yTXQy4(Dj7t!`RW!h=FLAVWX{zs!*h7PhX zu7FmO*L9ond;ueJ@!mmkNdQ&Ks#>6XoFFQ3<;SMZR-=HR5`=;?(QA^tD9yi`kaFGml9kz zK7btRYD@CK0;XFjIc|6J%Qs9O`Bnr$47qG>UE1!Tc$ZR?y3M5)Oq9zuo!8rE1|gNv zZN8C%(!I_yHhW_v=WQyM^J)_mEK>GLWdH=(a*`!WBwAO;s6}O*+x#~9x+$gI_O*Bq z{0|NpYE?q@F4~kbikw5)&a8Td1(4SDEA{W&PFVXITtYTD z1!Fk*WfasW)}c9Yt_p*Knbn&8rIK)Al`?AqxAWOUw1L}{_6;h6f*u&fl#)+LbF4z1mmR6vW) zM+TKa%_)W&>b8aGq*u@x#)Zy^-%gk5{Nnt)fBHjjAO?S%^L2H@Se4*{u(%YQwaJ-o zXm|2*-R7Ikr4TS8X`L?xQud|RH2^^96ptz8DoC+EeLs|%Y_z?UoPbxV5G%__HT(5) z+d}cfyXO1%k1<-s#q;^bp$<*UICFU$`>sUcx4=lZM*h=x-%?Tt2LH|nZy!H*%Dx3zt*ve%=F#Y{w`q23s0C_%nOFKh{vfuEXFW1H z?7EQbuOB`L!SC+wYFW3%F&cofPoZxILv^#0&t(|z1Q$!RP1o((#;uOHcJuA!&ld@B z001BWNkl4NnxwN0aS z&LLoBoFGMKmzP|lR6Mwu>!GBV(1kOe- z?&R=j+5>TZd;a8Z*XD2>_kTc)KELE>bK-2gm$YXkfR?3FVc_h!_%DT3>tVU7icLvV ziC^__AZ@ngbM{5+Y7nz~AyL)vBjc-Jfz-eoBim!n9P?H)B4bdZB*Rrc-EJK1?#;co zC0xHEm(=W&yQXkWHP+&lszU4v?NZu^vf3G;OHHu^6uil~LUxen<@_4rf_iVGwk~4~ zCC({alrbnqw_QuR#Jq9blN?mPlcJl?f3uf=Q)-7%Vc3UQXZ{l4j+s8p_{ z>E5ui<~(sJh3J^8nM4F`R6mI7oLz&naShw@jcW!qOYvh|XS;rc@;vT; zlC1&EB*yHn6*jXQF!|u?cKQr;ZTsDL{DHBWOSIcd@vo`{J?vW3Da=(22^Pqc_p>yO zRBdv%l7%$yOy5?&mLv-ZGqgf-$Sy6n0$H_p$-7)h^QM%W_fv|Y*3>jR*^P{s?8y7J zmL4;4(uhH*H&yJazvOKKTm^$%rMIVGzo35L-2*~Q^R47kDk*iRx;Lq2&ISY!jST5C zVo>@`3d9>$imiD9#0Z8}+3Fufg$f=}vC2}JYjGtWC>D}Fg-}WuP zePM>70^L@`>Yl9)iS7uUYKGNqe)|XK$mCPXOFxWE4%WpKB2Q~cQ!RCWypM$IJoUp) zpve9o&YnvwTmv?};!1aKoc$8f7X+$6^60~}Y9*H~AQWW6+#_Rt`e?le#>Q@F%pSQ; zDQ9Ra52p(yok1|Xov}=nrRI$%Ty{-h@6Yv(|c-%d3#|@ zL9X7OxR&kRA8X0W`B%o0WQ=gDsN8&>Z=d(aM-1zB{bY8d-Ig4-cGo9Adw28U8pFrz zeF-k71XZu=uOusGpSGl%UYjx3tkgC(k~ha#I(PnzPB2s09 zkc)#7l@WybdU_5qN+B6@F~*8D*KC(qQ!!d@%ja$Sm9YrCXS@f=OWwHIgWOlvRBV9h ze%S5yV@x>&Noub!#WxN3e6T%X2$)jB=r`LA?{%{;qLaGG z{+nuddiNg6Ds%%35fj6P+Ff?GZYy&8disWHZ11{cFWYqEymp80LQKw0qHSe&1jvXb zS_fro+Od{m*VFaojPl5+ozI_RxDNfEfV<@z!c{k8MsAmH6``)BBqfHslry5}$A2Z! zd;6{9H{E6` zRB30%yX-9EgKQs&iArW&Pe`iUe_xVK(+T{<6?*&1i81I2Td57F|71sJzfQ$%p=QzS ziSYtCp$wr)Cj54e>sP7y?e-y*oi>l#`4fVZQpOZZTGR9;))2sOae%4=B+a9c%58Jb zTY-&`3u&YdIfUrA;25&cu^7RMn+ua#@f=^cX{8>cyUf!k#bl#nhE0ukMD=u9+%`eE zy5%aEQ*uNQsviWG)h#Ysp+;fup%%z7+gB!7%F$l_!3t;CrS%snb#U3;PK>p+c+(ts z*8r<|BX|8sH89%Qbqni6Qm4vOyp=SI{wXav2aCcg)v9(6oQ1-GLEB@&4(O1}O6tl} zqVgbjk5mKOUi2t=`&N@dC^@p_+cIA+%)IG_yOLJfeWwkNw=X%*?)oe7VLaZu=`&Y- zfA>delr*jGkJRjLr^^-+0wHqUH*Wd5-d>e@)AvV`1#lPESo4|+7p+3x#H@tITGZo@ z|8skI8$to^5izVb+lg3C1-WjryKeJ;l<>{Y6O|}@IK8ab>lex6uz&D&UY0ol2hj#f zB^A@XXWRt)oWhoKm2D3UlZQr0(}`(WnQVY0fk%iC4OZtva4xmu&~;DQT^UxX!8t!-cV-hz6A^*$UaH=1?Ho`8wYM z0UqDJX?HUDZJoAMl9G)S61YmimMk;fiRO*z@1!CD*4gX4BBz~hTja<|$^O0q5CZ94 z6)ouw7&to%*$(?XgTkZ{qF=7RBg;*9SA}YZ<8XXa;*w#JdMDLA7wxkC9=wey@VfeR(lou4l%;Hokc@NA2csIPR4SecQ9#C0gy?B3`PG77G!{J`3Bd7zix?Qc?GBFfNm*kW}BWSvvd}64Y zj9SzTWjmighLUB|mkOLzjMclS6=rn0Z4nqlRZ${q7?E|?n1PeTUY^a{lIm$5NoIKB#%K-fpdFhH-ZsJ5D^8ikQ9k zB}tYsWfx*}u1G;mD+EYqugz%MaST3{Qe&{OR1*4fyROayg5rEP^eNR}fB%w`YrDZT z99j8%x}7guNr^#j1Q(o@!kqK#G98aYKkDha0w8fQc2XODTefv_TSy@T@wP;l%T_B1 z!DTCkrr{)V!OgoEZP%K`hHsbGeWMZ8>LV3)7@9Y44p`y$PtRX3mz1l~#2`2E{%Z`|g#H9X(0>*|lYhPXbx+OAh^r(dsb9NRy-8fBEG&?g8_(ygnTc z`=R}RfBrxipZ0qjs|)4zI#1hHkr1Lwq14PVxljn@pWnW1S~;g+U1eBHh6FXoq!kUV zkx1vwZhmPbm&A#&HEcNr$?3P3-+E0AwZFfdI0wn~+xz|F-SB#{pH6e%ntRoBhLfzX zXV>+bb750PlFJf^F{t@GFTHBt9PWWZ$}qH}P`VW|*ZlkC!V-9&+o2u%W?JKUnU|1e zw{ZrV2(VTL-zK}+tKkTQAz7Yt@L{cpeQRP!pFe%sA596&u8G~(d96O^egDXjA-lF+ z8}kx;Nuk{4&n`MfnwU=B*MbtbmaTK;dc7f$4cW#JGNn{X{%tt?#FYsdmvsr-ZMYki zHYvE8y^m7}i(PI$UhCcq)eWkvr50XFO)+NgnP7Rlu3oo8t7?|cZqWzPz<&yjA#&Mt z2rAg(~F*cHaa0!%i9wHNna`V^ykF+UZgQs|?rai;D@W1Y-r`Qns$vLwuIgJM&xenV0WOU*Hd<$~gZ8kKyPT;=-h@TP(4eQ{7jSwn

O=9iR9h|AeuPK{qc45fKw)Od{Z$@D!jzAhAs;c!g#Lq@07`$7!- zMdU>e9l?3MTrS5aEFb&fuUjK5S5jjs5heHjQQ+;kdlwm%7FrcKrv{;fTx#UavEo<) zFe+uN<;vinmFUy_msUQ=?g7#k>mzHEpS{SDn#pU9=N{s;Uj>O{oj}M8fR!KFw{!x z+K_l)dLOQ93x>0|Da|pDn?{fGmyfX*5&xQR4b&( z$tU!@+sok|gup~aZCdM;xd9=9KhZ^Y!$YOl#*)T9!`is4acb?U!h6gFxs^sJ74bw| ziO317G~;?Yh2`g7F*9tSVG1FK8ERL}PU%b;iAZ;2PK!;MaXrtAwtFpji%y#NN{xE^ zz0bK${}L~c*}npcv?f8_-Q9LMKd;B5rd_Hu%~@rWT0hO#ab&79tDoKCg&1{L`tG}> znAGxkyRi*bf6MfZhmT=>0x}R!RT`!?T)#=-l~GIe1XQHxYZcnsb(+iU6eTOSO)wOh zqtfR6a{V_}OpKp$`OMW#tPSGNihsw9%ISsiRGJoI!^A!$V9`T8MgQM{jg*JY-iY4% z>)beHXof4@KUB&{hNK6P!Ie%v6E6z(;AIT8QDNaA; z)UBsagfo;agL?*htLzGQ(Iu=RO`i+?NZbGD=S@wkWHaz@)cAE<|L8BDnR+it4qX?H zC&ji>Y}ezzR+J51l-{wyrX~5QEMNYJ_>qlw9e?m1ob$ClOC?nQou%(Znx_|p_6C(P z3>t%wFPNAdztO#jX>s$5?0(;E-mflIV9Mxl`tMl)?fxe&dtV-f*>s!tz$VUHYm_6W zcH!h(GS}y+@2a`!fn%#0QVDT&m!I46EAQV?0YN2Y4a`I#5xO>+b)Jw?xcte=?Qr*1 zE&F+KtxbBk5dwpIx;%}Y7HI4=C&``cJ0@a0{^UIG>sn!p3`q2WkC>;{ZOQH|ST|3I zA(!apnDQpZ%2dp?PP26LF%>`Fn23E!u-UxDOff!6vyp~-pR|1=ciS@0sv6QFx+?>O zgv2BlCS8A8=liBc;uTv2VG!O%|B2zROrCmrf;FOhPm;Yy&~3awwTYX##}CH z_$#ht^4GXNGWJRJ--U}~=|pV=srdtU;pX8%*jqqwKKkkEJn-ov^iz#Xjwhx?V>0@w zQdUNW>9>CWx1#TAg+`iygp^GgpSlJ=Jy~4|`_q;I3C_)M_MbwQJL~{-g$B^9<+`_8>c^K*e5fgK zZddOPV^^yvF}EsWGda5~4ty~$??ME{-j>nhFVbG&dzdgQI;)i`7(&&~D zbCyzvR2q0C7!quUflw^#!LYACm zCrfjL$dFmq)=X=3T_*uy_KS=8&3^M>&FOr-&LQMVTuLqOcEqr)wV{yCr&gxd+eOQU z0ep^&&+PyFPv7^(D3s@EcC~BlL`>pfa=y1)v-bduU-mptOp259KE%SA zWQ>;v#*Qiabv_STSGNMIwGfred9E#T(e?dJ%087=(rG?@QN|LA++-ucq~eT;#!8HY zi2-x-Sy35A%XwQa-p9(7Q9=xZHQKbarr6A|?Kho}oLH?n<(#DI6(h?qCjitXtqs<3 zyYH;^^IT(1^%Aa=wTI2S-)U`X&P?^XAB%qp%WsYA^t!s|KQ=QkJ|_P$X6QHHuG6zS z%}V#W-%4%QOIy~!DKKb^n1Gbwb@72{ufUOrrLx#sT#M3sZVx%~v(-}N@>0`pdf24er;-_GKpmiIkXt!Le?lT6gHWZ^44|Y7ikq5VApJt6 zcLlpn^?O4Ma{)j9s9-PD192$s+@NuZqWgw;S4;4xf2y=4u@%ZLD}y!LjVP@GWXK6= z6Inxi6PHrgKS;7Iw}!OFk8%CQbni*ObAeZY6xJ3h)3i)8uGHNOcE9IUc6wxTs_|E~ z`F+TkUCK4HlDqyMg=N~ZYK1DY>uVlDJVHDwzEwh&c5!8`KoU5Hr2;T1b;om@!}&v5 z&T9A_*LS3EOU5*RWZZFvqV_e#Ql8TK0_n9CFZ33*cF#X+YMiMs{k*^V2M;^%K8%MQ zfvV+%yvG_yFd`Y|58U*_{+$rQPm5blP(8!K^<8a;7+M2rj4}DPiEU~>#h^oCtbbS7 z4doz|pneF;hY}Xf4@AWKH+=gwwT`u}M3<6Pc29W9UQSCyh~1`7{@O~D>Xylb`L(wP zRJBF&YYgExt=ML_(c_(4lTfncbG&}a%O6|4R>&nS)BpjvFj$eZ5OXQ9Y1IpPLu_QV zB6iS@b^6fSPL8*7`?mNi%U?w6VPVp9jwKH{OffD%+8q9>L=X8?Tdma#eamoEaunmvEl+vzSW|;l(uT{8 zU!lyJ+L7yyiyJ60wNyhgU2nz?Id3WExFD9i9Md{Uv*#Ueh%JO}yV-wr&y~$#EvZA= za>JIPvg#gh<}vMJH=mTOBnOq?^_?^|eUxG7C#cOHi=lS6IfFHcxM3lcFT z6a)#@(+kOcfA?nGZ*ufCEz+nabVJUiVWK0}QH@d{0;1fC%`H<>$R27fc|w7inL(qG z^>SU1?N$#7YRxIG2x2eWi%}uxj#?2sVpdI3zrRN@#CSZ6BS(1+WeEW32x&^|nYW9O zx1?{l>HU26i(~a=u#vG_Rt2PwZoP``j%a3$kr~2t@-H8WDWME!CWRlNLBILms_e_W zQtddixtvSjP?<6!hZL4#dh6G7S$>jIa{i`2JOHc7eQd~7x98F#R?G#_ww9T+3^$0n z)LbBz++u26LWs+9@m8{w^fC)AB?4<=EiLAOXXpHZP6$1 zDw80;uWTFLOAH^t-byj%c|o=*n1rZOa=(;e_f_Tk`Pct!q!`DZ8=>V0b**UK^P>{a zYX1*R-kR+_gmpdse?Vx)cbW@m=H<}|es6cb=Ryjj8!suLlw;R{U!Q_oRd;81UnK;R zQnBpgDbv{Peqc%f7SkP+J_s#SYN@oA9mb2~kU^b3|B}|fNUeCcO{paB1s7>K0ZhBU z`n$3UP9rlnjDe85w6qeQh&4u{LMRFC@V)9cjir`X&O0R%aD$`-FW$G;*Y)n}d%3%F zr>XfBneMmmg!&39^+cZt>lvZ<+Bh*ZubD!b}pKx`>>yPfK8lgrZ@fkk6C$`0MIBh^)?2&se@f*;3(OkkgJ_5Rb) zzu9bVjN0VlOM1%j60=lT*7+j|C539piSrx_V+xu=CA2Y8>X=LLGm>MFfJiGTuo8M+ z5+vVX5&CvB-n604j6+FNMFeKU8ZOtR)Y=c5?Pe#WI!`Wm-%1lo z$cO((^XqRPKddh9c5lYbfsrhgb8ZS`&Lu-tW0vSXKRvZp zIyw4`QtMqmtg)OY*Y%y^V)32{ZM6odoi?pCA&gN5p&qBx?9!Xf9cN7-eR_SZH6cmC zSa0>|>HvihY?@9PaIpQdES0d9noAX|5kkr-rP3OKY26kW-_W~T*9kZ131ce{7@cjJD5oWqhhg2Z}tIfMiRwiiQhS}lx3Md8zQHx89l z$ZZW*simT(c-sw!%jznyuio7CM(5fP!57~Py{=1dv{hD1sig`rb1u8CLx9?t(7F_V zJw1=Td3SSv4QZa;*ljzd1#hV?tu?|tbh?08Vq}bhk5t=!+o?`7lvdL9>ISQS_x>$3 z-ddG{ciL9S|MJt%oOs{K+A0!DSba?F|N1|^8?+t!A#+}lcDsWRGS^yKgPf+bL!o=4 ztuZ8knB0x;vx{r+!?-cR_>?MR*7VrQ=jWeiA8rosxNNI0B}PgS&;Y-SbI}`l_x10T zG;Vq-W$wn&ITv#?!-fdl@>_N%EjG{uRxWKP2sy$quw{Dn36+*L)ds0VUx7C!5Qsq* zlfF7H001BWNklTqe+d2*r`KF7uu$R)wjyQWoG;VKU+0QS8tnTY!kTe(Xrhd&4q5Y^nJ(GHu(klSYj=H)#H2B-7(n%B9mC-$~ckPh3r~F z;!R4yB`xVWx)TLtRWPZDQG=G3CqgUqZOPsoz5|BD`dlGiKPcYm%{>)fa?a%xmS@(G z+53u^rc+p6jP6NoOKIKq>(^yjPQP~DR&-m2N-$AsNJZ9KB?zInP?5`Sy{s6~^rKZ9 z;+xvgt>=`k#0;SlOsABqpDI5H`HsO#Ei>8GR#Tedd}53d9~K`s@QrNuv2eGqEP`vZzC#@CdOm@`0O)PQP)8e88|CG@R4x9|*-rxc(t zM!iot%pbJSTy7Cn39nLew%JYVD{J4pdH7#)4$Jb9{d-9#OeM~!3Aw99Hb#EAG@q&x zh@kYYax8IXp)WP2@Jr67-`&>w*w{wwzRNyQBBt8;%j@amg=kRvEt95-7b>~sj!A>c zV3UmZqT6OSmvpY}s@P!nKa|{-(__xOlqarq6L0-;L~2AGB&gCSjI0QRzzA{(P!hcKZ|>aulG7Ju_im0MR4IXhZ79O@siq^BJE`vl zL+`F7dBJ(1CWl+yjY1J{at>k%tpb2em?%eUx0%b7OFzig7JvOT9gm2p`UaF@iFqkh z9ZChfXL?tv_tR^REf;~bGoup5GB5yjJwB)KQi)I3&)g-R_N+Hd25B0w&Mntg&x{?M z_sV936#NpRr*_fmM)rpqzHl>w6pVu09IBQnTM3}0Z_r_D#a~l&rHTX#SDNt+D#4}7 z(`!vCq%CqU?H#E%M(LQYYZ#a~lyqIgBe7ei_bI*>=9gKd;$@dgO3>u6`QFOGFORt{ ztUCzOT2PY*kT=@gVh!u{k>Pv0c__=LSo@fttj%1$m%~7k#hIWg)fXr(MXrW#h3pGf zBrwBHim{0Su zbMmKWVzr?GRB|vS12kQ7UanJ07pXw1L*{y2N{&I>K`NP-bA0(91@D-?0pUaV_caGE z45PaWu2lDq1P{xxWe1`wrFG*0h}VL#iWqV1`*FKrd^2665RzDHaACCyvqMy+X5fh- z#gylHj`O+rpk$ORm)PsW4|2N&=TcE9Z-(9b@%HOP>Ga{hwD4G};3&C#R~rc}nK(mz z3sRZkEzl_XTc$RpRb&-817gH@o_>k`(bzXN;PLZkr9tynEO z5C}zW|0D)A{-JqcZ#P@aF#ZzSVfXo{iA}kbPyXN<}fY zPmixc)l$`EE>>$HRLy{#D`EP+6ROX(pS!I=6=o8GHknH4G9XB)~@r* zWpbso&d5P?DTNCmrNppmX+w5vnl+b5{AHSe_eLs2#0oJ(-|?H>{^h!|mN&h9nXeCb zH+LKRc${(tt;9yjHI-jJJsmc-?{zCRWwr$G&1EBNWKBo zgsWCea-PFUYwEXm>*W+<*4@7PXE%L;0$ejjQc2#AMlr!#BwnWLd_0{t+e6puQi75_ zSE{7I+OdQu^o{GfOdnlnOm2YjY~ntS)T&0n6R8$X-yqilW_Sh z#4qdeIk{tLJ{4|3l8nt>BXfxHN(^l&0?VQYl?wN(H+I(@zD{Wpthbxr z$);&^$GMqbA30>xKuWJgx=nxU$CuOj0ay}J)Vkx4iuc7m@7{fDH*bZuHTp~*l#XuE ztrf-yp@0KoX}dN;%fSjB1zOSG@g`yQB~{2XAaJytE)n)5uJ9~h*6sxw}IbX{}YM+A=I&v;lqexK2tr7+6yeywLyPKxHFaEr)lWH1aB!MC{ zH4zHV?FK|H#rg4-al^!s%2g_tN?F&lFp@P3p#avGI-%!UCZ<_IRe}(Di&8QOB|HlR zyXmHRIlqhy^5R0NtZj`DmFmcGQ|p!K?f(9MQj)Gu|6DQYR@FFGe<~R&=|YlooAY@& z{Y0pxmT`G51g5blgdhLhnt>T!0Z1({uygj{eGPn%DM2;?%qj# z^z+9Qo@1H~XDIuUifMN1`aHe-M-Eao#Jf1Yo*1!ar`o&Uo6WxZ5wOiPo?oUEw?cWn zsRds-i$Z;^hC3luMq8vUiGW#ThHF{Fbsc|`%^sl%%ZhlB;sK~8w)p%TtHw5iJ-kg2 za~W-Okb+VS86{!kuRn4c`V z|Ae@j{yV^hQDW4Va@D&VVVkl}HI7*ZrUuSht{Nnix?u{U|B~XXZ93Krf?-WzynIOh znnN&B3ZZgdkr?BKNzNt9)aH}{T*+6K9V-~a#C4L|GR8Ou;=1yVAW;!acBbzEiW~pT z;KEs(K&|czD~nP(PG6Ssv(Sb&Z>H-R)4#I10CX|@!Yb?T{tj%3A(pTJEmWVeMyhOC z{~Y|EmE5%Ze-zD*AUgj!gpq?{1#@~8N>Y(ZzlEyx&>`=jP>B=OScs+d+#EZzxm%}~ z5I%4Tk{?o%$WBUZGWnWL4251$tIGv$Fq-*&RUd5>H(-qaWhA@AQu_fG_8r3a2;nf@B%rP+QL z;yJiyK-)A!2-&-r=ud)E-#5iG@003xQq%d%Kjpkp-3@1%*xpYoQ*CxGr8DxT-F|C_ zK2ASkbqo&xOj;?2q4>DGT#Q8BcRpDu4#IXmmXZzQXtbIXuBO#8wSyCelYt#q~Z(F_U*U2?fi0C=Zld2 z=I)(Phv)lJ*Zh>LbZ`;kcobSB*C6Q!&p%BsKTp%7R0|?6-i66=%*uju*HoO+TcMin zc&s_TJbuWfaKX6hm2H(E$RmQ*vMj-q+}z#_tr5W3_2oAZLNxvI`sZ9>*u9ySw5+o+ zQX9M9AGe!b%JJp-<20^{@mANE7RuF!t1m%HEdiY`C?&AkXw?r*qH;Zr!A}I4k@P+` z)+jBo$llrlB_jtZkP={(N|&6jZi%^SfzgLtDsV0(R1PU+AA?I^ng+NjRAWwpiQ86j z42xS!fv#FP^Cgg7m(6*dE%ms-lIHEG@E3R5VxAXaLu1*~%%L#!#&VZTerIAb^c205O)sYh)AYyT=$F&7yh>52_-S#BGu!mw9G7d;%jmJPjj`==c}?MxO7im* z*J}F?c%05j=x)DjWloE`a4xX8>H14!cb$=y$TVBYSXv&bENOjo?rf}$DTIhjT5WVC zhad_is#$R6y{9xWdf|-w<#ly#Sz9hGLgmQJpr*ww=P&amPV*VT3DF2)ieC#cYA#hbZ+*H{ z?|{8wQdVeXHvqB}66Y(YPkt=xDs&GOx5S78UoIc2I0>^yv=E*O=bQsKJeL#8qvX@& zx{ChmLu+XHOe{oK({$qERN}wXd`=;zG$J2`5ZZpjn_I39N>f6(tkB9vN?=wzetMF) zvqM+#Qfnz8itZq~dpCci@VP=k{myjnxRiiRtvUJCc2-)!xnaO^ylBOipb^G0LdmBAajNBYJsv23WlFE|lHAYrg6|Dtqm+`MDg<2D1pzPaH z9o15+RklcN6w`hQl^7T5`uu<;bZxIXySmq!uI+FD?4|8<4T2BG4i#Tzt(%+Q$8ecn z|GmIT$~ytal19u9c~e6WoN?1p1;!fP>`(}Q`K7pjWq`T1Kxb7Ss9wkAs>EJd<)@!Y zIRhS2y4ElY{SASqh zyP6YC55$<8pY!y~;r<`ExC!B9OjMO;sD`kB&8WpugHy1sHo!55_k7m(N2k}oBD z2{_#Re%RiZFr7Zn{q6hi_H9}x${Ey_iKfvT)a^RIGXEsnw>4*S9~mpeJcX&OQQ85r z%Ko9f{ed_4EGvr8s?HaFnXcCKQke1OLy1KRBNSGO#a$_0QEsfZ$l96+>5|vcxlbfx zyZa--cDZ~Z@OHRiQUF7aIhW^HCZ20I+}MEu`!R)I8GYMrf8QMYT4up*l|xFIYE}|! zh3HPf{Z+A@l0)XeWaL~@z9N$x3zU%yt?g|Mg`pC|U5QxYD>DUfJ3jqKt!#V$KQoT= z_`nblH-&7;9|WB^azMa zD9tqk$d&14zZ*8Widq*TlTa;J`;;=XLJOAMLZU4-&U1FT&4v3pEaOt#xZfU24ddle z6eYC;&T2KX-BWcHx0}0nk|9+xt&HBUr`P0@?l-D4d3q4(Dx^@&y%aq$59Gr2I-LX7 z%6Sb5gcKMaYFPTO{!!~qOt{o-MJtWu)lK7L&V>P#>M%vFcH9ggxK$LwORd*L*lynU zLtArHvgMqY;E{L@*BV|`rx0Y0OHNS@2WgC8jEJW=ua6J$@&!vov6Z@MyIvqlPQ=^u zT(vH>_;soxkZkP|0t>U^lN3)~dy{25O|SX-A%{HNy#;BP(@#RmkQgjyF4~Z^ZBz`` zSd!q}wBL5Szl;9o>HKfCGry07u9)8bFC}JQ$$fvD& zLBW;S_B@3G)c^u$ZFl#6{4!l%x$YU(T%uH_R_xnmw{NEL^7QL(6rzOp zdgnNS%cn~DraQc@<#ileGg#ZrF#)OFuo;Y4U7S*hF*z5d;tTO>QfcKc}~~c&8D&a)#X%BFo-dY&gJM&myt1}8#S#fuxzbm zBwo&sM%y3WePg7`HO%YmbF`}4^t;3ESdbac_eOV(wn|2*R3+z9Nl}0;ZY4yjl_M}< zr^{6u+zl-f_c{BNTP3w%uj6H0C#zIzbSx~FT!9+Z01-;o8bbw-U7G=}i;uY~$+t%P z9G!PQ`pdM=(;``}1;%B4ce8_9V*$ZMNJ%i1$d=@CiJfhjY}SxD2gyM)@YRZ);pL^&c--C?-7v%uud`1A75~5f_wPBEIpx`{ zxfB9Kq*#3_32R^+lw{l85s<&WKBury%+9lZdxTQ1r{}^JX&PfTF|D!CVgE)@emy_< zb!Md~flvXcs74#Dh4NIw6kWniYt*`YsZ}7l7#T6S*{eowULRdZWxv~o`T2ZZ8><>V z`uQQoNJVgIbYrty;{1%20a1*Pk_%#*79Wz5vLu!%Y=@?8_obF~S&0%8B$;HKl^Rk+t~FyEKvrTkMUF`_kXi%o zxwy+^EajmY4&biEy=GKYo38s?$T7!@*}u(I=G7ayO`O-Im0U2`I6iAAi4uls;CkZh&?b}(^%nI;8C~V z%I!c@iqpB4T7As3N%)oc^Xw(cu4x80x=_w(zEl^PkZSvb zQcb!31<(O2A&g~Oaz5nx8Bu}hg8wN@E3qC-MZT}uP>qb6h(4{a0+HLkxRGJQMbFp` zf;Zdy%2V)XCU+^xc+EMU34+nQ1REnu>!%!^xjG6!f>_e4;K0yazWh7oOTi|b|HVoa z+dudOA=ffL)KIj2S4;5W--JDCanJIZO29NTcFiRdC60zlG`H{V?e`D?)+sG7`SL-w z2Yq;p!iFiw={Le`xAzoXI6nmUIxe5xnnOJb!KG9}8b*Q&Wq&4s?7wKWvBTS3=CsTy zx9#BuGp4IUeboJ(ZU-$?#=4G^VyL9eVa)#L>d$fgge5a}pK1xw2_;P5nEpA3lYI*+5WCx_<q#ty~5a?W{kAhL1&E&4wZaV8E72gHF1sm)g6!Z^j? z{S<}NB|iglO%2z*(j4k>I-V~6`blyp*{&uesmy924K|Amz=Om3vU ztx}}I1-m!RP{Vb4`PWjSRgKid%#lb`O0s#Y?2Zcq6sb`1f^(zVw#Jj`-=tD5U;Y_0 zFA@B8ZFgUb*2Wl$pERgn;jEuo*z?*U27YCFyax&n8{B0&VYj{I1Yv&aj(^Y9H$qCJR7+{MZM)kOgp`(&lVECdb89xD zAf+I}IzfKY{SD)NIQ_TCh2H#QA%G6{Z;nVQ#~9Xg%|Xynn5J-ICGjXqCKRjf4qWLF zeT)ffRYq|k2*X;k;F}t*VZEsC$e{S;$?(p!_rmu5_NEk7Yp$dy3$0Z357+b4GIf1> zQ+V_I`~o0QcTDwue9X(o?ad!hOTT;;rl&yNu+_tDavvG~)->OR={#Njr8)i`@4p^j zotu(93|vzQXUPW;3~KS~84-c;OhxD$(|!f|=;Dmb2)?VBP@rEH??!D6XLIr{7fv!| zTpC5l+m|mFiKWExe11m3A!PJRp#&^ryoB{UPoq@Y*bcbP(UqD@_JF`8=h(A~$_hKY zsd$VjLwKt3In71y|Go+p$5(I{RwHYF0J9NFDXl3lDNeCQp@z1-BWC>dGs`nKeJM&c zjZh-aXDX1$))XoFrfVeN`RN5K2X_U^Zh92dDZPtfs-} zfpgTGnzf%VkP8AEAOFgxlQM>P$8NKSDpTS_DMSh}LS9SG!I!q_v}vbxZUpA^DvjOU z{*MW|Qkv?Y(|j?_{c=6!^*@NWxemrO(jH2MoX7d}Cx89bHhb0oj2K@0o0oNH+>FPz;35t+Nuk-Ds&btAYGwoZrHyEV#;!n6@mu3)H zw9+kcotMR*UqZSBKW%RQet&y!HB$^8KK^CAK0r+gm27s?%FqGLGZQg}B{pPh)&KzgVTLwd=f&ODvU$ z)toW|%{URP_q$sy&FH*OP9US~<^Y>OWWRNkC}Ju~HaExJd7hB-jqL^Cw4Cp@n?HQ> zH8Fmf79RuS;%3;~9FD{_XTk`k1>bE3-88;bEwoWK6B!{mG?WNDdFvYzisxjJO2BvH;<|AIGQUE`$ZT+rA$-<<(saB|F?o&Uu*`f|AX2eex+G@l+ThA{2lc zA$EhNyu6++nX_j9rd7?lo}6DL*T|*mP)cWDC!{GQDQ!|-5=0}B(#yJ>ohw{#P1AD@ zah>CQDrqGu8Yg30#vw%yh{-#`w(UB|0V{RY>Jq2-DVH5jYDpz< zrZz$qtVv3R`9c)AZrAe@`p7g(>6*$47*oBr!);?Wep(Pg8Z70KQJdX2wmH<4V?0H- zHr=kj`9=>L##9NV)GHHKXe(t4i2fS<L@VCBT@PAfpBT6tG7ZUnzkZqgSCj_5r zBio_bwUw44GB8y7MvIG<715;d8)d0vYx-Menq~fLafMTnx(dZBFWz4$e$vDDs2dcl zgo?;&xne3(wyfXhl#-h{YgMz=Iw>hjZE8s%Sei1bN%i}(uIu`VH@8}GCRCxW6fbw* z^8QU(&PYC%hYB}ReIv9f)uB|veDB8#0ZDyN1VU}na*oRjYuoPTYbKic<^Pd5m&!u? z1=5K(-&QtKbb5CWEGO83Xxi;PVomcU6QCJ{sF)a_5oS}CwdNqrk;#@I5lqDQDYvzz zFrAi{FS@OV!%j#!U88N7P~Ii4`y;O_F(-9{V3sS5&p-3-1~oUP7v|>q`OCUI*Tk@D zp)wbnQrD84WKx@3K{2K?)e8W|BCw)Vs(|aaUm3G2%Y)2cun^G(Y-IXSO9WbKxrFf- zq571H^Kl%fb^I*ETXXoX8NN|!K#n=3;!dTG$Qw*SHJ0mRbW2W-D_e2)kLc_t@;;g~d}{r5R9m!7cIfQrBm}W+-C_Ps$us`xO)~cu8?|?z8R& z0>Lob1~XuEqpD}w|BkU^a?c3Gb~nlWGLMtw3fz_38>wX;|FoPwGI3|NcP^0gtkIp8 zF0B8S%Ac_;8mh3rFNnGo2u5{xXf^;0g&?MLmasBM$fDo^m6A$EmzW@Jk9vDoS#;ARAm`}FIW1Kw7a&u`UG(g-1_4iqKdC z!Brq`K}pVuF{^+gW2*8#`XIHES_c>MS{O6Vt(2Z6uUx)~D+ocl9njt&Z^QKz{70_e zHHW_?a%p-_sp$T;J$`Q+Q}c>>rQ{a>TH>S|TNuvMh1`?koT;HwYWf3}lEW#*9KDxP z37C*Cd3KZ*#+Twh*Zg_CerEDryWIx&1i))%f^)8U@(&Ce#@pc6QdrZyt5R~&+Rcsx zEAdJYxoYNhj=|ZcQO(Y~5MvnbzGFs*^%@-G=BRgX3fbU&sewx3Txp@)^q2Aah_EwO zmEvNWnHfyK<;9iPk5nUJYla)$ZqBE)`Wefd{nQ-qM0W@|N!?>sQe(T@r@}rzx)30F z&p2!Px7W)Prt9wJjo7}CdgqsXUFYb>8l2)#D)}|H{jj~iFCmi4w%anH8Q-z?E}`Yk zKygN}40hSSYVjpiTVP|G0U2AT-=cdk!|!V0N{Y(2F?)@iGRW>I%^;OYIl1+PaS`Jf zmo-FBh1rjBy*^CW9~nbyIPpGzS2XszCxbJve_sB~){J zxcfmX<=m1(T+SyVEmRj#2z7k@_!|m-eD_DAn&chJi4u<)g*NSQ*Ebz!Wtm@spJS5e z)0mfQWl3sA)HH41w$@Ek$+cD@Cb1&Lij0?1v=iq@*t1~9)~uE*`L-|byYKE~dP0#pIk6uozMo4vKF*2qP*%7l_! zNP_X9QCbK9xwz4XKflla;#BU5*rdKA+C3yD%X+FHQgE_U${x$hleSM(V8+ z9jh^iF@|+r&M7;gSxJeTBNHN)NomTyHchv>@pN&0yW1c3hRbz+9?$2Rt8Ln**+cYs zT^iF!E>Op|Z8wdn;K$2l@m0%aXayItuE8&-P!ebj8LfbJvkj|fB(>3gEmC);8FKMV za7wB8MQN@0({)}^fBp5l-w9Q{zfy#hN|jZq-q;RtHbQl~9aDC?T-GVHtu{tM<$^U_ zE7LYmM6Ov11~mdrQf*VF5?`g{C3=d}uzNFXZpPEE)AZ5qzT55I3P$tvYeiQ=sCiV< znr3K+`vSqQYl+S;pCiqF(Irr~|Efe!n4vZV%rxxhZbR%PSLSAda*xIX3O>?&c3bKDiOpH$s%?o)J1@+7xEasp;R8ESK?% zmPI$mS`!l$nW`mYI*G6V)8lw$>;U43F$n;az3F5D(tvgG19D?+ul-9*0z zcQvXo6t=k+P3yvmQZ%MzdIJbrb$~TYPs9UqYx;Y;*&1Up`%o67(6t-R1R&;c&C?Ys z=Q2>)07ilfLDu@MNT2qmo$TOS2rGaTKRLpCvo)zDAE$1vH7o%rpEA+q>mqS}1 zhwE!itFXP0O{EbrLGDW~-Toi2zbWy89+Yl#_*^JkV;Q!kN`ef$5ll+$89NX%pleMj zg8&63Ym7=NzB_)c`{Np@QjVn|u9|LxB2spxL|~fr?+_)GQCNfZemq~LHkBmjqT6m_ z$|?PYYtwDM%_%IWf8|xAX_jiobdM@9ev7>4@FL^})EmHtiJ_#JrvEO?d)4d(B4?44 z60j*b#qneX61j>;s8ba%TI)eN@(;W~xWum5$^0?PuJ;+n8RiHR`_DRahwm|K4$@ky{_E^n;qg_20rimjWL zb^c`-tlhlLoKhZjvuUl79Q_i;%U{FwLbzq!VV!64lTv$-t?iGD15v5#IgDS*x^h%) z|GqokajA;SE+mwg%M7I&(=s#6(+dYQ{b4%)IGsKL`0Rf{I&t|u>Vw|hGi0?~fX6D| zOI%u|boX7%Rd62G$;HsvP76VmmiZL?M+QuGjR1q?Ipx2gxQCd+_)(fSi1%rHVJvd> zRY{@vr*-@-gb&vK9-v60QEZEILh2k}wGr!jfjDcsqslOitdX+q(=C{#6M?)~AFeS1AP)&_X0;2rU;ho_-6<#O#i6Q`VnZ z`T}|*mGYOrc=tg_#mvFYi9=^~bpv ztQ#Uk5X^Ft=;z3-Xm{V1dTF;?Zg%teLycFWXRTVIU5cUU4h&e0rxat2qiP0}w&wqj zq&wTSHp>!&I_H|J{kpyPY5y)FG9t6G>@qe63CTi22oMstAaTLFf)Eno!hj5RRl2I2 zk&zh@e|MVQea-6EMSf0A&fh9LIL zN(yCEA>HLHx94ADJelc3^+`%sc_mc+?LW;08Zhyx<`=SWTU`D8T+<>T$L*>~b(35! zU)%Nyl|=s=H|#lWHHF4GZR<4l01X=}HO9Cur!UQ41)BchJ(-T0;jl5U%H1n5)%BFu zQ(P}3h>Nc^Q@@wk2VVt5;$z{a?I__%lW*MR_(hP$W~2WF>@eK@E}p*Rc-2Zv*F$cC zi!>_EmmH5n|4!J$vc1;rGsjD15Rw7Jwq-rO?f1Lo%PSy{Q{ns?!>Me466IuvgTO6c zzG!FD@$Z!yhKJwRT1Aun^sdrw+p@q@ulB4CaeD?XDO@=ItmH$%E7uojhw1irdbrQf zKshp#AV!R3{;IH+_9d>LjNPRWq^!fRC#rgQ8S4m1 zSq(y_B1v=tMOx3oSS~C|neHA?>l&YgFWBz4^KrQC$@VOiwfobTKNEhs`}RLK`|n#` zi~q`!-Ti;0tToiiHplCqlCiO!|fk2l|%?oetGl85na!&XrkDN?CDOPJf%CVp1{A%z$nhb_b;` zlvMpoX$VB7?@JYa-B_Yg*txB{{U)+$IZC5)$WW5W$nT@jlU2sH@dly}SRupWaJhB+AfQZQ5$t zu(^Ie4!7rdoloBC{`U5bAUYnOw#$jB_Tz!1U6-x4w%_gieDuqv-QBu+0B=VpO|Q&t z-}gC%*QdW!M#L^dab}<&x-i=TE>n#h^*w-0Vmi zLE`Ec0yXth1CeSaLSqccPLe{1h#F}G#_O^!Tf7}^oKzqPfPDxa#M`&Ghx>s?1z3g z-e}tiX>!iTW$q0b$y@Y*ZS04d(z0!uxU|9;SoqQQ3c%+;QUdeW<7+8fis9*auB|C@ zqqV(}tB|B=$#>!*o&Rdb7rxCuK&)2IThF#xJ*R&n4YiFIa+Q&%${eShXHEP{XvE*Ug zQ_Jg`0Bf(66!v&I1z(p`iD0*TD+DNacz^%xc0FC@m(jgZ-A)T7plz{uzbwm(($g@G zB}b^BBqA28g<$8pL9p1i*=o@%r8IBn*LW^ICEK~qKBi@kX=%b5C9STOI#sdetM{0b z9Cv$Y&n-n;^m6%2=B=CVt?ans7B8h~X(tpSu{7O-(u7h1Nvh3itDNxH&n>87d^8Sx zDm7<+J#(FQ`@3;}-|ub#5n7c5^PIQyMPllE2T*;eN)LVS7+~9CZ9x*G&A0ej%N@~} zN|DkT+nMp9>&H^c`8+=zUzP5r;kG1oJwKOv4CgQ0deWj$+y2-mn0fGz3Lxi_Z&tzQd6MCodJ+C4l7TVl$2OG>=z?uWFscwPi)=H`#T zkhnGd2m+k_0Ocj8kFDJiUQM5-`+s5V&E}tl?uYSx;gGkhticS#08(~HGUw-f{u%0w z^3yUG(`UxPLVPE~Ma1Tl8fz56}F>0x~M6HGzS%4;OeYm0&{o$>k zk+>=~#@u|kAP8p{Ku&RK%U3%NATkjtLFKvtH6^oXGifT^ zw4U7lx1!E@`IxrXeiC+kPx`xBOG;k2w~$K?{}x0Q^cejrh!yH`O>z74aMM+mF$l1R zORB7uxv|q2mM?-CK$cQP1Bjouc|*BtB{SWq?p7#CT5?V@BlAVsgX+I&ymAP&mS*p| z{ogcDHLtpJEuZ81M7l$*mE4ip`%YwYy3~1l z)gsqyFkJn|aM{_b0>3wFC-9{>O#07*naRMldKeTJ`u z!KgP<-KEP%E?P)c@=4M=MpLsF@&P1J{8j1?C`JXe&S$95o1k<@qQ|_DXacRkuQff@ z?QAeJ0_aDLAmnGoCnIesQ3y-c0Wq{x!{=1TRFoSIW;j&nN$*6sU@L$hYyGL;|4nD^ z!aUTZH!2hvqZ>-9Npk;MS! zaC-gw?fljD-wDyLr!~$o_>#}7>ufun8OmUrKAPPvrp;x!mS}B5@c^abceeV zXFs308bPA^8R}-I2U6qpa@1C9m9H=V#`~z%4snmH6e-p$Y*6k#r=f-~Tql9kIP`NU zPrv-EF>VVN50a#ouC#W2`D68;?f$nFKoJ`4b6!gwtDg~G(M@&5oQtvI@c1uNTGRZw z_*U1SyWL+Yb7S^H*z)=FPo^84=3#6?$ml-_tO{T^-VNi!mcAx`;b?E}_SQ&^T*+xO zgyYXr?7EwO&QdX#y1nF(rTHes0^F)k+wr3yZ98eS?sp$r+1BGz3a{Jcix5*c{g&*T z_4t$1L6}3~Q%)z6mijko-6Rjjc0?<1+paG)eg(XfH~%Sc$m_Lb(GB0!dd%UIwvSLk zUY`AiB@ffIbNvXQ$!X37S-9J`dU(GdZrYA!QdsG*v5Sj0uD8Qosau@?5>H1d z-)5g1Su9O}S7yKhC2whcBDF`9#`d}&<}be>?sR`ps!0ejC2bF+2CWRVJRd*i?M2E? znM2EhPz&h*z)jx)uPC7A8n6G46hk+D*C3S^wS0>LL7}9bKuvl?H(bu2^7W4d2c-ta z&5S$Ha=jcm_fj^tg~?VQ1*3Ae+>8>g>)+&(n?GqGN|8ihrGzF^n5FAzJk&&W@vDDL zHSYQc?Yf!^$0xV@pr;>71waKLYs;c3AQLV#uO~?xXD_fyDX|cM26ZddElGny&Zj3W zi-Kxz9&-@eHs_S%{2I24HAdN+hMJk9mk zW@Wlq3RS23LlX*u5Lz@4?1M9)%;R~vg!v!9dt&K!{kA-pweI$BQut)lJ7s@6U!DYA zcK6?~ysHJFeQvRMk17Ak;VY^4z>|QHL6Ozg{T5^|gagtf8q@RG=s=`=S)d4TW!Md9T+Lf6>HPG6y7u$o-G42IH{3$?OKwDFpuBM|*`IS56AC28f^U$h-90YZO z80)O1(Sr-y42{Nz8&Z9a5fDi!&JC$4&e%#Rr*d6IWx`r>X`B&35VsH^`LZsM5DC(@ zK=Fr%TWyD$gTMq8AzfN|mQMEjeOwoA+H_s#CMR7huenu(h-Ky^D(_iF&dXq(Hc-|E z5;zCW1Z2~47D%Y3R%NSJQ?ROnD7pCD6sW-sx2@$IFVvbF9%@TDe(i>PrAOe}+UDoE zrmf}G&mKf)od)D^y<$3p?y68IyT((4!*Kt;-|uQE+v{0kKi>Vu*nO#ay}n3pwOpzI zIedfC2~-Fn&%dP0FG}B$dJsfHkajn&8jY{kl^O1tP$+5L9b;jLQkh!o{BqQS+_(d6NOel-`TXRsU$xq4y)$;VB_*U? z=cjF1_mAK8y8~iZk`<(wq<~@EzZH_U%axFX;MO)FnHz_gNn4{W$=%K2k&JqMImH0F zf4jT;=JD-2*G=4rX_WSMxBF&y^B7W#DceCRGe|Y`oi4z_j3oPcNi4_R;X%pHr(9Z0 z0OZ`w-A!vE29H=9l=*U6)-X+nR$3|EN-3!8Zr*^Dm*e?-S(V;vJ=K=>!$Yk+&*wE2 z1=KlW;L2DFL|>HFT&e`EwBgcxfD$O(NuuWLV;pyr)mjK4h|b63`I7qG+rGcyl8shcjycv={C>C{yBkG9C_bI%%~v7` zObz(5tR)v`4HF6yyRI8ucb&uadUR6k`cBlUNq)UtLX1vI079Ugt4~P)9ftih-nCM^ z_aNNjs}wlLx}R>f>0)ZcN=xN4b1ilnjMSKM^$WMixjnsJ$SA4Yyw3A-X-$-tV%<8c zAND&zaM|M7Z`?{P^^(0WwU)XYMxf?HP$;l*DYc@I#^eZ3$8&8}sqS<=x9X8pZbAro zx*WAo-`>B|NDUK!D224*^LEZL1b^K^@Y^*7&sd%7tj3U+lFM~n&X-HfY1b=3wUpX~ z>Xj3%`n2`hLE|}ir4*v%#y-XrVsAAw6OfiRWdvx4;huy(F0&HiG;bB!Z{I#NmP#69 z?5|%>z|fC_lr-p0Ae0gXq9mgK@xT4OGFBo6?^6UNkV{t5w6cY;E^#BNv@zNZJ9}8S zTsV%MsyQ<&<8A?4=b*&R=cc7A**8#%Y|2Z{b3Z827#m2brC3NQF17Mvj5TJ=VGY~) zcuu74I0!#~L8T7&-%NvnR{izl&tFPuLJdNVMvs2JZgCalYFd3+|CnnBJPv$bH2W^GhorLFPCM zsRTtz{*TBIO#j=}>oLH9eBB7?8iBw5@58S?N7>5(!%7Qgb(s zxrq=<;lwpbHA>f^A}J>jXgftpZlN(pB?*OM<4}hRCJ*6wX{ljk6>cjv1?z zx5a;L{*!U2DAwWjixGG{44hMAMJcKXv1Grn@gO#)>&*i-HARW)Ed7+poke zZ8|36`bzes?Dxr^g)&<8C>E_ikoA`zHEdQ7QYiq~j<0zu=I~AO8<$~s^A3a|==1t> zSpFnI+UXm6cwcgg>jhAV?!BGfA|@ych`KF5L)`lDop3kgZc#vv)zIknhsqRUMAbFu zTPD$x8}E{jc{?`tA;;sXmb@5i1%Xxwz|eF9&45ZO&R@&+MaUue)SBOoOI(ki zon~pB9KN%CYV|^>()#ydU0nAlp!#$y>6zT`l>OeSw}{;GSya)i1~n0*Y_RxrIX+!J z{;}fFjenC8%&)J?4#H3PWN=0G*Q(XR_`yDFMh6vBKv|3%N zEJ*{H`1%tHaCaYCE!Btauut*y_0Rt=6zXUZAY01X8it(Wr}52ymQ!o%t2KArB&Ydu zoVUx#$bvKyb%Gn24oUmhuOzI#d&{L!Ehu%V5SJIhdo#TQWpa2yO1jr}debtO?T-k1 z?e0o#y5E`I;rRTAwES%K-snzh$)uux(fz$Nb{xCL+vWLRQxb>auz&YGS&gm6X4mVJ zKm8xZ+`9c=Ejg{PN6|8wPU?MyB)f^Lh<;P17n+R|rrV`-ir0_ZR;(M`&Am1|e~nc9 z;qeEcl+u@$HmBbT`>;L#;_QR86|-+uua`eVJCn9FeNRN#G=Z^h*Mx$SQAl21T9u3{ zZ6~|ilTkISO6pcZjk6ne)9$S@YJL6~um3pMru)09%sd~PK%*>_+$xv2tj}|+x+3c7 zppCPJB^ffi7<~>GC5?0-^pG~`H#yzCwY_3AIq>zmO40YumIhl6To)~+=?`{%EcKX6 zA$3zrHRB{eRv-QHw{`o9EVUbSKcNsrwx-5~@_e>d+nd{z)A=v|E9Q$3_X@q53`(({ zPEVhnL5%LsNG(Y9HHU7JrrQb8L&a8B&Z(xPEK7H%>_L(!aBiszCGBpn+`iQu+D1a& z+`c!%uEZ#`bGJX#+!_{RJ0W_kt#K@kIkA>3CAZv4Xzt#gFslX{~#UN{vDW6P}Ayx z?VAwex*WMI!~R`uL(aua59B_iOoFR6k_2mAprrLOmo3%psBEW)_fowPqHdQzUcde% zq1}G?opd8`soSUZdQ!3|Y<|Af7z9|P3TYNGG?L6HN`XAvX{xme*^yF})OmhBKR-3N zRc^Sxd=ik|?R}|1AXmmFY6<^Hj6!|STty|R9@pSYo<+;GY)E9rhX%l{CcienmbS&q z>!@yI=PK0T!{zzs9L`oX*Y`^AQeh!v@{1yC)QB9&PB=VnmyrFnunXt2vN${(3UXYZ zQ3}=fgb@9;F(K5_fH-6JP$Sp1_@zV-H3KJP8@G#4z+v5<{{V4=xRv~|<`o0N%G&i^t(eaL=(--jBCwkt zp`1$G1nr!0z`4fPw)|M3HdMQtd)eKt*HGe8(ju_e-Cc=Gj!QQlgfXPZS>@N4v@YfH z<^1X2AYrFFAvw*@`TV6xq0BVge2~2n0^Kx{YONqa5weBN7~w)X`hvrBm+A?XBGajE zFx}YF>GJ7+&X-p+{xh?`C*xX)z@@)?3v6G1{s$nVhbf2W6sd|Gxi{0h-`nvpUu3Rj zc)T_G*15@ylQBEl-Ky>&MKfmX_jj#rIYv#=kWr+RlMI|#Jl~I`P zM(VsCf8?AGZ-1XdY8l-0kSf%Q+6=?)j_d3%N9#K0Y^_xgAXqGoYpR*M?$GUeU)9T( zt1{i;@q=^Iu)A^HMB<=#x5MFK81{_9Zi+ z^}Kkm5PK*0hkb~CSzc{FtUgF(r*UYlh7c-il6v3Eu2Tp)gw$Hm{b;-1X%$QQ`1woC zt28EawIoSUuE|Ktts0}1P%#&7O+j{cn7Sz?Un?%#QF6T>r<(JY8zaPAgmjABXpICB za-6TL68df$TZP~K_8XM)atTtRunlOr5Em%Bkn`$0t8*(Lz}a!#HYM#AU|xOVwjU>>X|Vcc*vH(g zwm!G#<55dRQjgC4@aAqmxLn#Aybpo?r~mF>6wq3Zd0SsjPul3Q8?9Ci#InwfmF*9c z(^3clvH}2<7>~7PQu}F~xCFnw&=)fe;vLyfKLYgV#?Cssdz%4kRa|4-7T52E5>QjC#V<=q!P*qVXYY;C@60fDoMju(x_^nDKAs7LL*z((pFg2?%j z3JcUy2_I7M7bsEM4~-i@P9Z^xO0vd*X!yS~3xK`d;3dkEskj->MCj_Jz8eAD&DV2FuW|Derajwfo z7)?K>@QG`a>P<{P3X_NKcbrX5pN!f!HZ+jdL-j0rGQ*(oAt#JmfW|AWcVd$N*fJloiy3s7OK?E68D~ zY55Dt7Q86)IhV`T2S6!6vvjt*vBLyP)Kppxdb(BWko~`Jxkq$4|Kz$mG`AcJ5@${+ zYyx)7Aoy9(ZCF5vvoup&NQgnWF~wuw-vhl_m!2?7W3XK0u&X5qv8Ya2`GBO^C}Nh% z2)e6jLA6)^bivkPEz+J zmAYM^_*P$~-5c9G`yq#yvi%})(%rW)oS-Q`U#fW9O^*soExA^aifPw#j4e_eAa>q+QNOYLrMKuV;3yS`L^_NM^lX$1YSkq0aR}~rcWZivcUuG}O z2)IEEC@oSTh)}tv!jOjDz8^=%di?UY0_FbpZOm)QHWyO5L-`OiwD>pL#p=I7-! zhnf0u9ClqzRjCQ706;2UNdqyZEOcG6Cbu*6`69Bv;_ zx{6G0C%cET#hlMlxteRMwY4ptUpNLui*lODmYR{Zv{Gx5%9QvT^U4f|{iMg;;sb)Z zySvX}i>dX8y#N#Dv)&E6$8RBT8Lbi={d39d;r5NOI=p@oqh>Bl5$-LNuXgO;1y~> zsRW^v9V0`NHTnWyl<7{VKlf7{wC$^`H>ZANJ4 z#)F-{ljcsT!Fy-zcfKdbIw2c z<9`_RaCq|_N-a@Ve@@XOF>(ZG%mykT`?_63$pD=5mBdj1wIoV-W`xVaF~`)nZ7;*{ zzT17D=U=1}P1wuvM~T?&AMDU`ctyAeZk*;S9-Fhkg;QFK6u`?e7#;! z4t99Zc4VoNkI$cer2Oo(G0q4y0L)OCIpt`^Z-A!x^cNsyhx-&-m@DeOhP9SUH+89m z_40~D&QMss*32Zh)!cwedWPaTW#UYVV~kbEuAhwBEys^Sqt;@5`rli4UHy{7*J-+S zw}<)oC7wUCupu`t$F%-!-mZYRCB=pVssoY~Sf#=k!*aaDs7p(bqqIU&!sY=A`zqjw zvPU_AVr%!3!nVAIg-9r+z#6g5KbNZQ%@6(931PP_w&DRvC@Yi(M!~401}RApus^+i zLC8>!%jpjq*l8>+udhFfa<${V5=y&UJMN^0+O`rdX+9&Mo?NMpxz&2nm8EcDhHiRy^Y))fiM3Sk zpRgXCeMh89JRwR{7D^L2NNmPf6j&=tW3}$2HHA5?p*0RZ64zEXu0hg%zI?4^9^8&f zJ{^CF`D*&R95diH9v)J~7`!B~f2xRAfoqxNXb)B3(x$1(^Qu#*U*D zRCBJ4r7^ZM1g-C#4}QCBUDu1eU5~FqbY1Vbq88R@nHrNZoo$E|633kG4+nu21?P~D z=VR~e*zLFVw5=~gr==9$&x%+QpD&j|Yb_w>Ahjf^7$u?U#vzmzx70YYRGsTufl@07 z;tGS&S_-9ADSWzIq(UjVmT27+OD-)5VW72Xu%uZ+F;ZCVm}rYj*+lCFe3asT3LIq%ROY;R;z3R zjT8c)wx+cvq7YLlY3lbk<5X)t&KE;Usebio+2Ub8PPTtJz53X=wXR1N5JEl-t~Rli z;zPv7QtGiAh*aZ7QZler8nG#9VvXlzdAL11>_@58pjE1T3fDK&uC`Vnlmd%S4E#^t zJ?y6byaudw**5wg{+quJQS`dcab5ixrE_kAR+PZpg!fSiAxTw^rL4|6LXks8C7G)+ zhgi zU7K?|D88jD3+cmhImRl~&^K(M)H1J`bKZ@y)CQ^>yRpO`BO&=pO5UF08Lt1|I$3In^LFyVN-(ZzntMa@vZx2=QGjO{pSLH;y&smXtPoX`3)0vBzAmvj;O6g&MSACD~Co zaYYGM+KP%xSi|znvWk9W)`|$z)%H7~9s5?27bI=>hnK6Q`T1oZ!>#?#_04 zJ3Z(43PLG)W5)r3N-jA^ju&P7{loVa&9**MT>62?A~bg09^n$g*X)1AT7xgs-S6G~ z?^6yWjnuvAZcq+_Mra|fS5jD7%*krq6OlHzQuipQ)?`gf%@@}>5&~P&q;lMf|4a%% z8ED3I_pEJ=YbTxT?#%R7x2$zxzmBld8Se1GhwGsM#YtXnQE}ImHZYM7g3|g)q$6Xt3_!_7A1B z$_P@%%g@k)UyiT8{4atVC35@sRp9peBiYVOf89;**V7*Wxf>r_y#fs9*BC-QJpMCd zjq1CcucF2he2qaPD%Yoc%v%uD<*V?gKRWfK#a%)cB>)_v{uX5y&)a;NV`(xIZhu7W za;(OgR-&}~;r4A?Un*ilV`x=M5f-cqL;wIF07*naRNdU%-7+~+drsHO^GC)v<8IfG zi@ywF1|lD;tXPr=>5?1O0>kZZ+|6&wcI|p6yTSWojW^Q0Ro&Q<)RLq#Rm!e=tK=?* zOG%rZ4mr-iC}l0FVAaiEb6TZQ-FR2a*6OB8n;yRhtzS>Sh^C6KemO!7Bxt_=oKorz zAB;1?4kdCr{d|4>wbiQZ#4Y9df~uE#g#6m=9!M*Heun5kqayMa`>&d<5LDsY51 zfMu9&8mc^BIV)7L=AWgwL%Njp3(zf#s5l{)l^*u)_CXn0E>Ce~ZlUDD zjrMPTP{TLd>vp-GxI(`h4v(X1l;grsrBu;B&F5dCzEb;2N(&MtZKZOHNrFz9{p*(+ zel}W|{yRy7?8X?2Qc~+4WQS%iq^VWcTm{9Ha9b`-G^&M9pP>PCotf@gcH8ma*+J{> zecHZM&@4owT0CfVBZnbmR>nwCwrxSZ7bMopC+byy^I*uPuikyRU zV~SCTy;N@rfLcb9IYx-5uA6o@k7VTa@~ebJG}mfy{X=c@Hvb1mKazVBmT0?9TbJXd zZAav-7A)Z+i)0KaTb$1|Y|0!6Y=)fUxotK3Kj(O1`tE%Faht!Q_$xDhDDaSD2EOKU zQs({c-GAA=`3-U>?SpSq45D{CbMqclhXSOUauv?(ly=MU?@RImT@A&E)pns&ByE+V z`SR6g=thfN!}7Y#Cp*05lA(NMY{U2{F|`WQ-ETOR7#9XfTm>1wWy%{hZf#YaB*_H} z2V4J@-;gyJ_WEJ~Tl2X-l zR&lAs`$(TLtODHgieLtdx{?U!bPk z6d9^Z2rrD}bYH;7_{At&@{3>p0NmH`DJ)+FJXR4~%^(=K{r?xHBq60sFjTO^?%s6$ zcKS%R*Tc>~|6@v9h&$)r?;hTQr8L*(7XSn(Sg-N?e{n5>-qhgT!$0ruzG0{wHc@?y zz9d^SONkW($w=X|lC~5tu{G}2ZPjjyAqptkx)5svqg`+8q|C6)uTuVhEWO#zre}6o zxA!wY@AM7-R8?e=%^qZ{JC0=_0fOWpISLTuf^!WCoY<0M$*`m*n?+XDKYqhIJoDZ; zP_AK}Ei7QY+r9fEB|yS%+QqPxRHYTniHcH^q|A(lDsd~+NMI=?YCTzG6t9hP&CL&c zg{FopP&55x`(8BQc@EoC36Dw(pK=SG9 za|6+j-Mp^3fK))l5>?nvRFl-YwX~mltMxpuYq-X3xj7t-63>sHLbwc_u>CNO2Q4tA zT5Ghb^;&Id17z2Y^AcJG+j$nYHkC`YMjGwrb&*DEX{ZzeZp_k3A$ZwhE5YcRN|jPq zrj(15f|2(-(|OwpX#q@-a?N=wajvx?3{;GFUP8)cmCh)XAgqzj2`vO04ZZ1*${b#9 z`(lj@XvzP>fE z!~!4-DH}78XeG?^Gc!!Xe(F1|)ivb`ax}fvJdPef#agDF7OlRXUY*o;yIpPdX@1@E z=8comjLtHl1Og;N04a&vH1?@%xl-qLtrVvE_2oI|3kr*fk^tMj0XA&e1xrG&85viV$LOHs;U|{oqDo zstn6kytPu`%Vl0d8av%vb>3b9q_N67QOHy(z-fsoU90sc!V(p9*QpHr1NFcDWIZU_v{!nuO z+Mvd;d?_X53Kem;>vN77l^t)(ww3f+DMnhY>e^OwuBba{p|xNHQm)I!XsnSgZ7<&5 zPB*`6Z5C~j3Z-m73yF69hJ6HGI3H3S|d&pTZ-EkEqy549PgixGF@-2jn5Zoj{(*yZ>I=~tl+{{H)}pMWLd zsnsTVvP!$oQG=A53)rx@e4(JYh|W`{~h?OAIOT?i35Nj=!{pcMdc zE)-G)YD8~2{nX;G5(Jw;*irjQD79Vwi75*?*8HeV^~d{4-RsN$)p9%B|64cs2C9^2 ziH6OMwnbT^oI?Ocln9Kz@FM-OWGCFAKl~u&kV_5AU$mK&cha1kxkoCku0TcNH)sdy zjZ&SK|>taVy>Kdp+#zcm(Oz>-o6^CsyMvOAdF$A_4TVWjBP5Ug#n}c z)6_z>#r{PjQOLdp&K@-@sMr8%7b)|e0d-5=fI zSRhc^IByj_qt5eZ=|*A>0SKVPEWr80Ekf8%Kev>mvW*f_N3qs+Eb+fsGfKJU-BI?2xRneFlOG;pDBLbe6;>iIB>jl0)JzpI*A*ye#ad6C66TYL?C#!$aK3*1 zQOKYW>+%9+Yr4y2HRhvKJI0{Qz6L7cAH(ITwZR#KBBzoOJHe%`Z_4${dMfi7AOi(p zO}wV-r*Qd+g|Y754*Ob8K$X>03O5`O6{pYEqjeurE;R-LMfbmJwbkYC*VCVwzg2Fp z?11^aynH#$S({?49Y6d}H^2GsP+-_TE!S76Z}vxTdO?Mnl+2a#mqKT(FO;52Q6w57 z7OpXT-d_Ko7S_yTS-v>s+~K3}Ln~a{O0}uR1e@&d1awrnR+fge+;O6qnYlWzgjB+e zAO>Y0a(K+k|9gD@H@3eG^CfcwFtgpV8%*272I4exeAX3e9t5FJ*6E%70j^6=r&b7{8dHbc(O6s0V zs3~Or4uvCeE)kR@!cnNZ!#Dqfzx}NndL(SpXRzL@>G)o_Ba@J_A%&7w6wvbZ^89C} z9$imijiQB4o|4w%w_Yd#w;iiv3xRcr{*R^dXlJ4+Z79=RJaHK~B)%Q2LJEEOhYnPXw z?a+(HvTd^OLES2AKnmLpQV&mGAC>pJ;}4a3p%m)8TrX6z@mX@)AW@?(F$-RuQz@KsIU7HDZ-{fep62=b^_QQlbs!q$ zh}^czg-HlxDy5Vlon}yt#dTd%6WuUUO{H;cc{!h`m91nDh}fJle(1b5r48QvE9SN{f9B9UW^SNbY0hXR<@IvPHEFG# zv#Hb&@?jWi4X4vNrKA+c5=uksJhQX{STrSNPUU=lC9W(aGzxLO&S!0=X?#H05r$4~ zT1rBrjFG5IWuXBD3aN#m^Z6=;dVjnLTm1C+Xtb9~U*{mDU?3?KF`{(V_o#5{x<-Tu zQmL5Y?QW-)`KM1mT~4{vPI>d|^NSEFZQ;iAdXcD{=@EtNhSN2+5+$@w zn_TMURGic|cP7R9_;{N7Znqyly}ibga|%j$C5@9RrKYutjG;uWKudGn?FG8md1Zv& zYG(QMGm0O_)^(k+Q|G0|m?EP-Oun^pUM>=a6gc^=628ov*4(+yDr{6q@S4)LM36=+ zucaD??%{Cz|C3PS^>WIU38nns|Cc{*%N0ZcC{hV)I))~o#hMO>2WR`o=dY!-alCJk z*Kh)G{c!M30i)tdh)UW-S7{Xi0Dw|bAW|t*(w4uR*Rxg!r4?e-GQ6Fyg)PdirkAq4 ztzm0`+frLf!dPw8I87i}PCmh0(@?I&v` zOJF^m^g^Jpq43s?4^ruxF12n%jkBxqsg_@e zbZdGGKQ|@3z1P}R-GDYl0|{8?KTGNK@K=Q<=XOwRO^=OVF-NTn;9l09-~Cp)KS&E@ z`;6kI|M0Jcx+{f3(zVKA|3L^Sd@fa$a24oVbET}6iV?!Oft*>dLff%&Y|=w`vTC*}uDkLUWu7o5}7zsqwYF20o4I-o5DitOVN+CE-OTz|WmF$e0 zlpZRzO3B*WP^GrrZa-P)q*2@aSV9If2t}=gvi{uKquc!v<=EOu8K;MboUoQCOwj6E zVTJE>jPmvCzwf)_{^3v5YUWf~D)XLlFr#$Cx7Hn40O4x%p4fu&w)?)84ppz@$hGF2 z!hCXeQf3x4OW2W!wJ1(kmbz3{!!+)86js@ddi+om3kasuR86VmJ9G2!!E^?4qlyfb zS_A-S+E4fW@Sv=(xsDiR=DpAXMkBKE6q+eRz_*(rPc%jl|bH@ zbfrx-Y;>;aYQ49El=dEF2bhh$F@9*UplvmN;<(u1yVSmNnI#S=FwC!UyV~8mBINRV zmb#B^hh#bnN)w>tW=q(lYSNF$EnWYdu73vg1bidSAKkDk`8l^y@4qwshi*LTVJPu> zdHSy)`@_2rM%1)jF3VF|KK0Y@r|&xN&->?X+{X>8JgR&E-k}l6gKcNu{z7w!x8KmirzN2=| z+b3bIFbI|8@KM6GT>f(`X1x0b>WdbK{_YRJ6vJ5bwWX-4nwcO~YyUZi#ma(n$r z@k8Y;W6@^6-#>K2E;WwxSsI0=Q`qJB0=!N)|IQ9K%0X`2)+q5cmOxt+QcKC{a$T=a zLNf>lO0udYCoN6QUkEyBZbG=G?cxsi=Ou)vAE)E3*7s1KS(+_PWl6_}KbgVS5~ZF{ z$XXti1mg!KD@w`OxST*%DLMuYmnVp4z1z!vCzKD@Yno5MRhf@nf8Xy0qL#yz2@zR1 zhi$IQ-^+0n<~>v`R8;PP@R-)m0u#xA=Dq3mK%rg(n6VhAbvD|Y>9=-xCt5A-jroGY zHX?4pjJpC%7#eOhRi$-Kmk>KWjNT8(CY=8P;jNUU!CPkEpXHO-}rz|oIGgOEaNz&U@)3GDa> zP>h01@8|2UX=z3XWsrr{-N5OoHb#59AAJi?(4uz-p+Cs}&fk5n{lt0AWho6Qf>TvX zWY8&7OKVGSsRU51q-~H?E?ygi^ z-(L5JBjBvMqZ;0Y`BM$EAZ2$QYNuh%>!&R|Ykfl?1ua?=hzm;H;FfJ8DWw^-bLsle z>-DMM|E9JknsocFYzr^R><90Gfnt^*38h+JlItJ*@!K*lA@Y}}FZ1OW6c5vf|7P0V zlrZNeg|^IWeGjOXZAtM<2{y0)G>&g-_q)=v)+$||oW}nC_o1em7e>iIZv5cKcT8Ij zFO;q**g6zqAe!3pPs;t3+WlK?bXm{ZXrV2$5D0`?nLSEW%2;i4nNdsC`FwfZo?k;N zX1eLeop5H}c)iXwy;-4*bSc+u{z*}^H-D|hZ^2B)AAylT3F}(j{CFq3Z@2ZOrLTgR zw5@6~{-DeNN>iR|iDvRvN=&CjRjNq|T$d=^WIVn+KZ6+j^seiV1ia2KoK|WHv;`2> zJ7U!`*A$n_TUi7Oop1}w0`seuT|-@K9FD&gXi2Eo*RNc+-SHc@`w)oY@(A=*naT}I zwUv-_aJqL^2~Di0OaMZnv6zI!PiS*acWY?1kyX+U*7pN|PU_NPG0NM1U{LEtSbMNt zVYyV&zz88oXorVyLLk|_(@NKR6$&IM?QezJw~93r5llDlg*CY(Ej1A_RZ1l_V4=7c z*)9TT2`x6)-+ZgOUipy_nFN+nYcdL?6iRp`!znW+p|et$W5{h2s5HdsczeRd6R;a^aVr;iv;j~KxCAP zVrrRC`fWLD4b$Opom+#>`i@nnOs9p&FJ@j9PsiJ(l&A*L;++PhAo@>&g@IbW9Z`3<;8AZt5shtqui`g$6scQ-e; zrpEyyoP+tDKobsV$}&md#i<4878tsBCe| zjdID12?ZVdu>w4u-v%XnsY7fpmlyAq>xWNICnK~5W)_VERcNh94T&(P)KUTvgCC4A zj9Ljh`7Wgx;>I8{m0a3x-0g>Py=+2LVO5iSSx%vrT{lGn5DrjkC5Y+mdJ;lXQ}@Sx z-}yDC-Ec&LZQFi*eU4>i&ZqOXtVu~^W~=PpPg|`_;55{_wpwF_X*W7$Qz}+!CAz>M zwOQ7!)NR?y-E`cKhpF?2p+9X)Dp^S`6;iH^SxG_^Qb}Rl+jYAihTDA)0PB{e60O4H z`67(Hnf6jNXVFx zTOgX%TnuRhf3Sgfidn-}MZM&wla%+uIckhgr5}UOHv@)MI zW+8=++gr_fT@yiGFThp04i7i`ei&Nbs6=H&E##fnTE-Ado|ko#iaV#MfwR5ToirWQ z@@?M%&=kQRodl`w9H zvRhBDIlUrMD^;0+b8_QR8&TtliI(|Va_x4VFwz>2pi_KPTCsW%Alv$%C?vsW<`v`v zLfNj*LV8fnIP!jfIi0TCt3aunX^>lse)_%EH)Z`r*?Wnb;Hv_YQY3m+@`$ig_S*Sl z3BRQ9Q^n(aZYbq2eN_JTx@yU;8>)aUZz<=3q-*+xOGJ4G-F_V-@xJaDs^n2ZZOCVasI{zJ&KWlgA{C&-? zayI>UX6SS`gt=8}-OY`2$F$DN^%rQbPETMZ0mCLZF13{0T8dBHqSCsy0+bphgeCx@)q?B^Dl*na(ps&H?ld>A)ZpAumTL`*vXUvM?V^mWMGBco=8^-~CfEW? zDXSgs5FC~$v{L=;wq0s?9QQ{n^f2vqyBn0U5QRBm%f<=@%Im46e>S}y?*IFiF)TmY z?pFC@B}67Cjnv;WIwdt%QR34$WF;O7`C4YqQMr8!KO;w}j>aESxrFTrao?(zsFdwU zu#wJcYAwVRTKLt1QnJI+YWqx$O2*b+Dls)-?c|0%w^+GJb0;MmTYbMr?u|~JZQk!Q zVU3k50KxBNRa4B1=xYo32F$u$c|vvML<YG0NrHM8(2 zr~deR?RAZB^Xpqn7b5{UA#X7hDQ|Ay|EZP})yCqewJq^=IsX@p%Gf)op~dBL`CDPC z9sZ!D1%|pM#!PKRv1e&R!x%$1^xO3n!#3Rhn=PtRHqnj5IXS(9m?ZU5f82W_WPLX5KC{mzfOe^H?|+eQd2394E%P~7GV zDC%|}xe)WYBG&6B_^_ofO4sS|Z!}nr3#5qlH&m+gM|b#8OBE7&+4Bre|+~YU0>SyYqytv+FdWHl{1x43GHwn*Da>48}G0&@@0SXClG^#N9|=ly))At za%t@a#8^tzYW34y4vlIYZ};Z*eJv8=?955`qSC?WqcuQjNqH+3x&Dg$xTenZAG>iv zsiBnGN^9pje+F~AzyIsBT@W=2y1e{Fz@)pK?2drCEdR)KhSroIrT1Z3(W-9uLpSZo zDHcjmF7d*^Wy_FOEH8*jTeqCn`SdE3%VDnRgja6?%_(h&XF6Zc{M zs^t!aDe2Lw_oy{Mqda?E2q(4wE5L~1EeFRE{eG%j6m8k!r@U3&f2aK@p&~R!W;3*C zoa=>_HCGS{SObx_dug507PZPTFumB(BD?~s97SFpozm%g)%v}5<2Jvn#pdifd&6PY zz1RKz{Q1A8(+h$&)*=wKCC#58e9l#~bjDt5eZK`ov?&~b`&6l-wRgM3cGvXePjD?b^o!ULPl z?1bI)P7`_naQ(r!o@(TJ3YXXUl(*|=&RcJMKkag<;k;D7r1Nv<;pTULDqzB8?uOp= z0x9J4r*!_5uIvZzru(=`t(fyQtXCrpHt7#{ZoDg7$W;)u=`av-OW7J*YauKE4q$32 zhtto>N?|PN_mxOHjVO$BKvYwfqIH@8p*DodY!KkAAp6cU=Nv9Io+w?k>QM?(?)Lus zezzy)!_CLs0%Ntq?QS|KQ7)&Kc`3xkTHp1(a~5gqy{S2_r#Ea#%I3VRd84*bZfU-D zPBo;wZt?tcPAj0P#6n8f?^{!is1hpIdDma(b57OyT|eCUZda=mL_i>=k;VeBGsbEe z(-j3Oshu`TI$#Mxq_WjCm)aO>iq{wyX^aMAwcG8wvDZ&8FUxkh84j&P0gVw)a|#)! ze!oBTofjp9%MwamuItzH_4;uCej2;$X?;CCmArP+DhbM}*UPenupg)18fY+0o?uZ@ ze|-1dyQ!bISPG6^zieBpjhKO3if2^13UfUtE%5#O`%?1~*XcO*-dPrFPKcDL^8!^hP!ylm-zM)^|610(@P95HxhA zRP3yG7MfIr2pC7#Y10wavDYANt4&K4D>GmtTtg&iH^b0(8c-k_5HuL^&0#MEFwz|3 zvQcZTaoTr7Ve$FpZCPWe+vu&8>hbMVSQ%y349ZwdfW{Ioh0(Zvtns>TjTpA=a@@)L z+v7Ao2vT3ZyegDZP|hdedur>J0?Hw)&>Ghg!n!DRr>tR4A#PeEXT)ykwr$yB?);9T zRQ4)FlTs*i6skAH)v|aOYXWAHS_|D-^PZZmeA1oK#=2>eVK!MTg+ii-Z@=3gAg;g0 z`J`ym0*wYOWe8zSKclqTIt0!sVJ%$NMsM0%32?f8m6A0Gs@P9A{cdDZOvQ4w#`tls z-M)qDREjCEklK&hC_i-G%G^RpkqVn(^wU1BTdhRih+M|*w-typHg3qCXwA!`?vJde zwgJN4jG`<|O=zbYdPpZ@e%Y>P(l=;8_XjJgD7VrK6eq}k&dc8-NNIR~_^>88zx+pu zRw^clGGDEzV?P`Y-&Z9E#NKxTmUJmluUG{N&t*QJ|K9Gv**j&v5$!KnzG>W-_=!4b zxuo^2(W%rdaBuC>xGKM^sc^a}DGR~Q-&@C0b;59aU26h29R*!l!Mt2j{M3mm09)RJ z=vqlyIJ56cZ7H0&CgVT~ncG~#38)C&GFJ+(5}O(KLNGuI;SKf94`WL;Lvd7Fd|obJ zm6k@1ty~MAT7CBJ2UJ~-|F;#D=dYLixjX(&Gh8m8Q~GC6_tyWFuv(k3KkU~KYc9fn zkn6>mlTh!7HWszUQ^{XZ@0Gc&;i_tVbhRx$`DkPJ2{Gyf*$-iD~PW0b&A2~y6ZkW2!kRA~Ho%(4M;E42~Sc9No} zOf9Zb$qGwbS$ZYLPO3qeEr*I#%2p*B0^Q=9HCAfM|1yDUr1c0?iL#I$scC=LO%I|p zqFJe(RCn9yae4h@mG}GKWX^G|D?3pa>x{5tj5BnK>J`!>bYp2h#@AJ@OP~MS*4{)3 z1z#Azh&!r`IvOD?y4+^SUppy5t}KoTC2c2%TO-W~BzLI$<@H%g$F+cvQn3&yjT0!f zs;$P5xAm2CW}*dZL-5)`D~5&Du5XY_5uhrdsM!cnNQy*uyBLms>~pu9xQ>M+2px0K z>B*?~EN&4O#kS;B+d>sx9 zMKKKb-%-oCoMl394;5n#MYbBl%X+@{`#%YZApN#{5mnvX|HkkBMx?JKkL!9i{xQz7 zr0jQ{fMX@*xT)Go_|*Bm9e&998ct6_^h!vnIuzY@dc$y50;C7y@0ZI zf}EpP8l^2vtM$JZkn-}Mw@o?sXb&B_Hr>6)Du@)9^ZXdxhYwvhVB3hX#tm{N22@mF zY1fPDr0xyTsoVWQ$g%4WAua3WSz>2~fk9Desl3>3XWh3=<`&*SPW|Daw7rHZ%NayM zT^g|JmA>BA`KT_U73V5 zDZDDV0;ss2_P6hMyPM^F&ZSTls&0t)QW|D1(1~U_&1GFnx*8Rw)M5SmaG9k3*h)0Y zB|eq38oC7_(0z>pV^cSP!qa@#+EizxVs7`^d*i0MYGI4Cqrwe&By1&aQGBkFMcIIy z^O)9%pak~P^m$nXyfVGy?JU9c#&Wn;y;t62IOZ@*G^W2%c3iGkl3A*MY2O@Ht|XZi zv(QraezZfsEpO}mqMV4dkKt9&lR?^Y%`umCcH@m!drAqgCv}&~f0zcSc%b~Ea4RzP z{$_sqalVN0=C)19YbBI*HO^agCvM%k35HeG zNbto^URzsAMzo#psYx_PM1m5#y*WRB&T-q{e^bN5b@9Y^fL0B+^Xorzyc#_~=~K4- z*lQ?p-h}S7L2D;B-LW+5S}Emt{d?aX-1tYLaVtc2Qr)4nq3;GOT8%HcYRWSM=XKMV z2s1R}G>dkQ%f;^c+P3)i*$)HLO0`M-9@82gpTyV;)p>(JT@#*5Yt(}n49vaj8-31~ zQfiQRA@D3e0{M7;@hD8^&_S&X+qt$gN+*@zwh7_2n}l>_CX_hcbOMI!mwzm!u-XH3 zyW2llXSOn96CHHp-3Oko0x(=IjHgPs6i9Ze?|O}Gz5Fzvp7!s*+3)VRr}+B#5A)lP z(hr=!wDkqYsTHK!Nx0JXmE%PavGu9_E-$UYQVkq#epgs5&yPd5)B6#$Ou1ZNo)Dx2 z;fA5iwNXnOa&1B?cHb&FSOb)!P?9(qJz-m^Qk|c3lK%p0d zQkEu#5nbm*v|9Aqwvsj71W*W6m*3Y05ZC^3S7embn>Tf%2;+#YKpg)0~zk>kWg{N^1*V%YqH%sl-yj zf&|e?H5n_tXjtYa5WlqiLbbNIG>Wx8-`u?OZl5`*vUn}!zQ0~%ImZ||To+zH4G#y@ zcQtORe}|}{r4)j9#_t{itm)~;y!em-F`gcitUz_is@LDx%~@6l!{; z@}X^QdHnapt>y{Mck`NUx0iUC*G+1x-7RQAKtiP2)|8#a{Py%SgEm^MskO|EB(2}M zAtJ1&Pb>%PhDN#~)tr>j$WTfO@j7%?OS|Q@lnR7ql*oeTw;Za}T9TwJgblU5#tZK6 zzB?ZGPcLuz+>~|w?tZ;KIla?L6lTrx7-pf_VGo7QqS4UbnX zh1E)hvItfRF>I-pDv(2@!Ad~b)`h^_>^gItI%hAJvjE|RHl{OOuea-EUOOYMOS;V1 zX(xq5#7YfODU!@N)T@_+7Feh)@v@~*ntoejJUsz5(pbSlqmp8S%4`6Hf@G{Pxf?py zTE4FNn}-h{zdL+>T5@W~uKVWhU<{{%3NYr9OR=OL_G8Pq#@cEH#IYOJT)l8hERixm z1;+dRL@l4MCnW{7bm)fMPcfCRm*-ORuA91kswtC5&u`~>OFz83y_s%GlirNZ<(fjP ztr71>Ur6z`839Jn!>+HWYAc1o(#GgO%HHYivc(Ku!Ol5vv{FV25-1sJ-z$Q4UDtxh zAWqj=8vOrAx|5yFuIxapd!K#U+kM^NMFfLEGE-?)NwA_RVp*3B$*6G^LJl&yVGwE^b%{j-X9K#=BLLm$K#oZzIoVDr;p<_uTix_ELh@9 z|KWfB_c4^3*h)r>ZD(`#r^^gNHnwP?B)irczdpWPpKcC6NFhT`lGNq$352w!6}9G= zJ^NS|Lb)66obBiFWF#3K{rZT4xOfzD%_xj$T4$QKuG^-HrLvNwFeFH&Bntwjm3 zyE~BWrpru(rfsOO)SFanUZ1UlfBih9-U*pXnc{gWb?pxSZoa;9o|MjD?>JS}l&Z*| z|0Vm?Hrr;qljatga{83wiAx5hh5ml?<_Br@`T5GifNU77aW}#YDV%kCi?S8e+TPZ% zggIjUi_~isd(IT6FEz8-e&2TAAb&1pvfZ~r?*u;7D!hMYpIy7aY9alm@WQ?R9St&Q8yn%X>G?(z%hhLJvNPG}k zl0ctRj315NrFi9Z-L&s)OM%xqC9p)sVoF#glF-`N!(TVeUI3gf=Mp9miHj_3#c+?> zN-Y4e)!nx8`%<8mZWQX3GW;({V6byvBo=#`3C$j>MCN2n#{Uxae8 zY{6@Q>zXgdLfh}P+n-;L^DBs4-TqE)wmC7d2!4$Ibza8|01{GoO=ZbN3PRcKYasw( zT_X@;j6g|Y!(t;9D)(kQ!Rh(;{mpm7O(%6z(NtzqD)@8uPtv&}_PG#Yt(=$e4DeOL z4$ZgS-G`=s2;nNkT>L6!U!X?+Ss<*}mw5RnAsWP7N|Nq@Ge|9);XQyze5xrBX=yb8 zN*+NR)A|3Q9J8`qkhv>rJ9JyA`T{V{Vt)O-GfCM^3SYIn)$Io~i17;kWm&)YHS~9X z1xP6zQFd`XW4;WBZvc|O24yYjvDRU}ehKRngs-Jc-Ob;zxjj8UWpAh!g>&JO>aW++ zuSVQ9+jmPmr>Ry3auceY!!^vcW>czyx+(e5&!01*Y~MD!zgc3jT60S4^{2LfU=e)g zT6f@!bXM2`wJ8}OXD5leO*K|Y7S)rWd5kq>*Xo4k`1NBMe-+ZOn4}&^-PJsk=5-wN z{Nv{4d)f6BgzWB!D)Gt+a=K7PQmWtIlW9|i5*AWUH=9}uK-SnpCfl~EJ*?-Gpw#p` zPM>OCso7x(U2B`}7D`%{`uy^$JJDKGQ$D_)1ySGMOVupvFJZn&CBu>c?Qr{>wqwaL zCY;9!5Y(_Yrd`KNrJ?N)aecWQKNkN_Ms0QbCak}fISTg{I6+Erjagi!vFr7#Ahg53 zp+rKlFa}~K_pX`_1jhMny1Qooq2yVR(e7qCe_hUxf@RIm$}lMz*5kT9rks58{cvaZ z?|e47BvEQj&mfDWw;~9XQgwHNoS)A*e>AdD?YFk?r0PmN#bs4)JM@Yf$Qq^gLOL@v zjcb<>rg5tA+H40q+|+cbK8R9Eoyl%p-zWeg#Z?v%2n9rT&5h71PRp{Cl$TB0USBT0 z)Mj^Ia~6CFVT3Za`)>(N+pyW+f<&i$u2`~<{xvLKS&Pa5lx3cjCXUybuf`14?qXa? zTPH7~hNPOfjAc10%k%t;L>RieqVG^DORZ9aFmauJE%7Kz1NCj@&^sn$o}Yd#{-UH7 zLUr38Y}>BK7k~X1Qi0@KJN#SW?g4|4R`90!(C^!3IOOGPO{X}W!x&TkDEOZR>yk}^ zc3RIlUVsV+CdkI<7+#k7NpF8=jj8L4P%h4sHmv)*T4an1!c|%_+GuXD)dV>Pk1%U; zEUYyaa#Rgfx#mzMf^n3VDTlQJD!b8LV~iETab6@za&3uWJf2uMNz%5RbX^YP>GAh< z{j?kI-QA7u2T^NW3F%f3A0SKZZo1nK%IV|zQmfhDy)Ovs^r^cY=!OrvzYp;&mFk>hj9e>{^_NgnLM#P5u#91zUXD$>(MDHG4*tmnj^7Ce?woxn5egIBjFhLV{LVcMoW8p{$ZP`<&w>Bx+38 z>2=98bb~f#jfu3x9?gmq?^+S>=ywHOOBhOjQ<%ms{93@mM5 z>N#G21|C=w+I{kNxqOuJwHrQkw||>a`%_Xvr}~x3sN8m)U$P&y+L!oib#E9N=`2YV zuAfN5-G}eG?Y6`KB688pSh4z8l@LO}?6Xu#lQwS9O8PafHM!0zp~msL_>(oQuze2o zdOoJIYBZHaDxO(0f{`VKbba|{9zWae&bDuIS_uQGyk5`5QW`g&k0rtW_Ljps9Z%M5 zbIs9T{IrIIP2ai3h4ECvb(yc@JV~XTb6i1aB5AIduq>X0HEvTS0fNvXtTPME)S*;O z->;+39NV_lWKBZ_a`5Zp<0Fw9hP~7_)$IK!B?&>KXr0bd5C~Xn zirGsLB!srK8#*BM<@sp|(_z>T&NbF9OZob8qMGLr8rPEIm&@zoqjkgW_H8O2F)-v< z0U$~NQefWZO4y-oI->g|d3Z~O^$_#hAyUoy&kRj*Oam)pprrZtp&*SoV`N9dLB4_#-qjR(`3mNOpT*Xnaetj zYeELC%f|IewLba`Af;+_^LD?b|K)%9Z#iRFd@a60Xc~vquk)HhY}`QTTI-Zz@6R#I z!_9{n7C#4&Cf2AVSuJh5M>MH28A2hqU9YLG(}hT@w!2=hj7o}HnSDVe!L^;#+Y0q^ zo>EwHIcpgaFh)7*8(+q zKa+WDx*KJ-LP;s5w!M}RQ!V6#c7Cx!9Y`pqB5J(8jBC0wM3P1-S1aU@<22UfE2~`5 z8Q0mamKwuFR4GW8G)b9K;puW|thUWA#cRkuWhG6qu5j>1i(v-yhTie!{Mq_?c{4uVl#Y=dW?P0DeJQ zP4lhm-*K)fF50xJedCvP{&bnHuDj#@X6H{|MY2K;Kt*Z}0FdN!Pk~y#I_=?23 z{l=$>^DKxfX(}YR<^r6#Ru2M5cciq$0x?UeP=slma;iWXBmp2`jY$~WA=faSIX|P^ zlsJEK&fyeghLnwrCdp?p~MR(0vhJaNYa{N+w6J-%DGO<5vs3fr8^K}@aM{s zS)<^t-zuw8P7o6*lk1j*k!nF>D>x8C%21`)fAbwRo0J7e$5Lox3kWW3-93`4x#lzi zUi@-_1WHNKG|m27;|{rAm2P4Ri4zKja75-9o&_f|_o$JDvCVIxdf+G1J_LV;T9rj1 zl|);^Nc2zE66C`Y{yE1;sGHrLcDH5mF+A2J#*2W2))~8hhiI6qaSajYJeKL|=Tq>H z#=S9O!%)+@3L%hZ>v}S#3M{bZby|It4M0lCe+DY7-Uz*|`2=2JN~Du;LtJuNE}PrG zHU0bP<t>T53$TDAV}MGF?bGW{d%-MogDdldu~i z#{vonr5g?(bNQsSC8(vK=xkcfSX(7gZw|GHQpRqe_4sQIRk!bIy=7=XRKVxJFVp!* zv@I3q`K7aOn%;%$f6UWG4!@J#29ZiSm-tNVN~+WOFSb!P_it+)m*YR@?7gpy-s(B7 z$9er`3e9x-bDaMoWN++2Qc;A-%XOTU-AdJPnM}K%UcLa&-QjIX80L$lBu#@Ll?2eb zq7XPBh#CTmY5atto{9GR!r{pxT2P?noGA zAuSH$%;Eq5AOJ~3K~(E}e9H4rj#Ag(qtXRyTu;L6o9(ww-;=b|NVB^wWY4G3m|pf> z3S&-JDOxNYsD@}zvQ=#ZWGX5^A}I)TjeyuThY!tgBT3qRR}ua6)JPDlLtMx@YY&V- z5kXG)+g@Tx;k2%+l8PBp2vRjEEv{#U;qr2vrwd{2 zS|{BOWskf`oy^-3s#tJGRIhjjk6j2~AIQ0IQT zL86+N>^81P)WX?TS(Rl|A__v)44`jPV4+zn>zYAel>k_f%Tze$$l8HyS|i&ML*|H# zaq&uKYc2AolBv9&o_2pjf3)O7~QW$&&lmt(8`3dd&oHbUQt_+yEO>5h(*0~S~?7RIz=(Vn% zr4HlI8YS{WMXkGcQtcT@DXB=<-rT%@Z`9`a<&%`kws)wsvOAQGwz^if#wz2a>bASv zlKtuUA|36vyOe8OONx`xS~bHwEz9x6IAtW1>{(PH4M3FwQ});MCk4&0drxkd$6rg9 zNQTfC53E#*Cq~(}n{_;0&Liq3#>G#I_t}SFt!kW|PUn&@FXQ=gx!mk`jqAc1Q>`(J zaVpB)*uf3EVVzbZZIxS#FPxOtN_9iC14O@8MF?f#Q~@xjW0=NiCThyXn$4bX9 zx0Fh`_`nRvkW!Adl4*~}@pL+cIOZBs&43gO2&rP_!bS3Wn%0l6F9bqKjRLsV<9Rww z(;D)_VRO6LK8y-I& zKE0eTjUgo+A`8Y;%kyP!baT7kh6=CKRSV38mC}MB_<#VH)lYN0-E1~}<71p-kV?D8 zetterOKF^YI*ym|+-OOJomK0cKfay>*~Z$|>Iztj*mOgvsHNF8{r%0B{@4HU->u7% zxFoJdx7%*p7+V7`e(CxRV3v|KrStTIhGo9Mx*&_-S0R*bH!;oH_WQ#JNp_8?GL?|N zK7U--bL(XEy7Ee53d^$0zOqFYemRD9&M8}?bo1>n{HEzU1c6oQc2LL!S?I2iW&#u~ zDoxsIt2w`3=P#IiYdb)4UGD@ePhU&O75w5aT52mLA(0^Ok6bGe))I(oDHWumf{@uS zUrJ6DobK=JaHwHa4BkTmrOZYXko(}*T*J?tLQP4L5sFJb)UpM!AhW<1D9_3cqJY1G zXf`O!x@4(ZA(arW<}uD!sc)5hpx zUfSPCQT+KyFbSa`DRNHOHe5fN=GOLaa?IHaV`ZGLaXD066(+a)9x*dyHjSu`{TJ7m zwYd4RKq*|cY3@IZ2K1yf40u&DLb$NH$I!=j{u&n~U&t+JrYw|M+(`Xmg%DmcP!(P-- zSVGO{=jZHC0!fm<8UeDgT@f4+lt=(; z3e)5jwhSuyA|L=7Ww-m=gKCwZ{w#5p=3$*9s@8P(C9p-Wo#{4ruI)e+&WZDr(OYTW zF`UBuYYn?@^IPe*0!TKuOoDQkQVh$r?K%>LQKuCBat2^GeAhUuohdviYf0WA&>CvV z!aAoUu^}P3?Kj#r$uD8P3SqPv$aV9)#x-ia*JLCKX$(>XQbIP&k<7*zm+DBm5qh6f zRnB(1@0Ho)2*{^@+wI4HN3{YIoZ zo??iT0D+aY+ac}Ta3{Zr+nDC60MKlF}(NRE5e_;1o(q zv81ov{s$o%W>eTn(V50d3|bc1wIDW?i9zj#`~CaBU6K!{e>Cn|akB0P)FxMugk84> zqqWsim6&8L_XYP1>@*@T+PWG&`#+Lo76X7P*#YUnMcv+llqp^rW~@&}D^dzYmQ6Q} zr}OJCT)fjoSzB`=63I7Z4W;}=8Oqp*lohFzr80LcOI;_|?bh(spMO!c&E=SKD!2)k zS6*I_h-4$FpcHXFrsEUnt!kSJP~uq{k&8+}O0BJJQS>Pnu93h`VI9A|Y_|7By7}@< zXpG&F;q1Sb>muC^X@>%oY!wN=T<7szt7#6mMkPZ=wQt?_o@(SAD<9|cXQe;b{%t9e zJ(%I05IV*$Qbe^KBpuT6Yh3<8n>)MvD}WVIndbd?Ijxu1uHQ+j#Y;83k%~@Vr_=e> zwN1b2gsPk`Bm`0ySk-i{@dfLbGIiDbwP{-bl|X90*QmH&{dmN>)|j#{cDv2#g_mPq z6Qk43!y1cgIw|9LepLRKVd#Wvgzl|TTt!h`D##Yqjk4JB*6TtEL`SXX!Z_f_7a$RfTh=bx7KPnvqS`|ASeufJ%)rtjwKA1*KF zZuj@DbJ2&q%<23ymYNctzWh-LTyeIX0vX3)w9R=F8F8Mk&eZl{iSue#q;b$nhJ z7O9wHjLQoch0uwb$x}{ORZM<=D4PcYD8F#}ouqpU0op=}Vr*e$zI)y>9oY z1hA9c8?=T*#|75wi@*+`5lBtH^{>B#>2uD;3e7?SIR+$atR|^4)hP82m1C4bx76L5 z_D<*~qY!{n7KlFOHTxNB2-B2bJi!p6jvtQ0lyLatgHG7b4oc#Igf93E` zBt?ebRR+vnS%b|zV3)3+q{>!9U7vMx%kd(@39!TFc7H!;cMzgqr%!o((e8t?T|2Z& zHii4;dKK%RO}jDO4c1LgLc0gsv;v=vOKYs`I@@jSZqU@^HTd|rT%U1`(0-t9uY^Rq zWkI&>y1Va;+e9x@&?!z*^|IR{Nvk(XD=tY$GEGwor&6`+d>PNzUlq|X+*j40)Iwx-sW?!(guFJLLBm`+d zpr<8J0o5P#!rWeRzS(Mf!b@mxK zvq;Mv{o>d8qLl=IX;~_xCY5twvR!}Ec72HXa-Ce?HG|Vyy2hrQD_22A2n`6iLP;H0+QMePP!$|)4C{0rIx@|D_d$jUmpRr0GQU?xXoa6jwPkafC#mgx=aDE zG8t0C&~~}R)%)}5m89Hso1xJUw>M6U%XGRxpJ-WbiSleV@b-mR=YV)Ddt9*#28DR{fdB6OP}M*w8ofxj3|{r=}VnGmmHG6 z7QpLtC8>cdSMb4~=c(qBQ<&CLQr&beti>t_wOpo|LErA$ecPU<<@I>o%~QR&n3^Rz5d8s}`u$q*8XUB4~7a?L&# zr7)KyQPrBRb5KfOMvqW-gNrphpXVPxJvT~AkiWiM3t);VzYcS|L{Nkck{9ok+gIB-JL;}9EoboK}%8MMHxf^Yw(l55-Ndp z8J|gSyZ#nMFNCa>gmqeJPN{}#Dw%7E=@k`8Axb!=xN5T{8MV;H?o#2G*CTQ5n|-(4 zE3+r#(8Lrk+TI-wZ){_0@hL;foYIvf2qXOLV@hp1RHl?CsbD$#^Xr8)*XotqAMXFI zX?xV7<|u09T8JdqoY#{Okc&{d(OQ|-YDFm~s2`n3#=fimSwTSNoV+q^&S{-4rgPo4 zB?*XJ@*Lw)Dd*e{xI|Qae~9DfW&FZSBsy{%ZEuWe1gv>Em3Xn6#!81J&Eqs*&Lurc zimH7G>1yT1=w?}c&4y?PaE6Ml{Vw{%>Dt}gD)+;9#k&5v+r5+OU0OfFx~lG5$T3b+ z5jV>AooQ6F^Ho(2Tvp6yFl{bDb4<%8(sgtAn@TY(&vo%a1*pN88@+j#W?!mw{rgl4 zR1i>5F_*89UQ&9jLA%|1iJF-LNGW}tUz_$}&SHLfl_ZdrpslPzwz^cRmBW~`kHR7u zBT3d+m_>%9fQ;+bQ2ooNPD=ol!&hatetZhcC#fE~{edU}78#!*DAh|&CTz$?S!z$ah^RuA;w%oNy`htXxxJk zyD}ZQET|Q$CS0F#@c#PAhd-hWl0nf#@@AQyL;8%O=h{jwNoXh~XUe&kT=Mej{ZnQg zKvC0?YSYSLSxFgToK_-x&oxQ2#ke4pN)+cSQDu%oCS@IwVJOnJNVb&XoMX%oqB1Sl zEXe9^D@msCn%1e-sAOr|o03K-C38t(n&yzgI&61PnlR1`t8Q-l-CL_sS()L2HDi^z zY}npg$ASy61Ik)eXDu@=^QC6$`n@%xK$@pDoj(oT&~CqVt&COr@s+~@EOVsxW()Pj z&!e9v)olQP($V(!WIAbfEc@?MOrRb(;Zaz1{0+4Ip;*++QY3fLCA}+hxYcpvWn}N=aaNn8CSz6@P8t6 zkj|8nVt9r%qHHn>WG*QR>VS2QUc=Z7?`lOY2M}8=fjFWZROccWQKT~i5x9+Q`nzfT zj67*~$J7~tQf_N8$iC_CjA=x1Tms5U+6i|6M!`YT8L5@JSly6*TX7Y_pl~?}p+ck9 zzU|NmfBmmD{Zc9xf_8g@x_fvr1!r|I?gl@W>*m_bgm*-J4PX5maK$|_yT zSeDn#{;*8HV%6i!B^ zZg-#Zi322m=IX7x*}whX4g2-@YnVSfdy6tDhoqYlUuy)}4n~pfTVK&HUQ*uO+z2zo zl$~>a{wnfo)0isSm`{26RdwH0F6sDxu5*g+8+DL!>OH5L4zctN4lkw9dC+{}5DRB&|GS+V1)m%=` z|0R|)rO4~3Z76A}wQCI#W#$4(r&JkrK`PTX(&6%F!K{_W z{3%`kpar4ctkb!KtDqYppmRGkHbBIRg3-vHoz$C^B z8hn5pbW^oOWi%en1n~aFeM!OVziB|;S+8%_q&0w5U#!4mg^(mJ{>W3T> z^TKiqW~X(7g1Ar$p@wT*j$u9JlA)#?7a^hBe_+7%`h@IJwOSp2$tHoFhX-39N_lrX*4tx}1n%k%G(Z!_N_^{D1t ze0Te%3Xc%`{-);o`ZRHNZLd*e(gz`3tyN%2;UYDqOr?~Ne2f6hH7|scMz^E*ZEI-X(-o33?@6=sMrDkF<@1f;=o!M5+T z#p!b75?nKg3Q9_&rH^yXwY9BrP16ju!qtzNi%}NxY7{^0Z*vGKEs{9-B~B|aq_V_m z0>3yXo!#VAY7R}~L`^y8-QC;$;U1BeltiU&XuDoFwn41N<0~+B-5ya_h>{tRnzpe{ zO9B!CDt5|jHv5oyS+7E7tz8JK0Bjm}onEn)&JN4!g~r3S$I9!%6%uJw+AfP9r_q{0 zsSZi@jTHq*@aRvivk$ko0_)Irg2m_OS0C2aa$_7;KP~ezdt@}KLtzWk&9IjQ>$<+4 zFHrHY+oBM)gb?90Eg`IZc6|l;iQD zWQ}<>s_oh>*SM_L+540Vmn@}Lh#M_gl-3xdC@^e#ebY6cUr%3OUWxdJclQD#2~<=h zu~aUkOcF-#fBN{jv(4RZh$YO64<6n>d~Jf-!1*bYtiw4XEyPMr%^g-FJB)f*V z8Qy~$rpuGn&bXU7#hzr}4_r#AI8AG7b<^}|by|X@DR@Of3tp{ixg*_nImY?&qz*b$ z0~IB7f(W@P)mjbnItsPXjV*O5KKkWpo?cP3u6-{=0rr)a9Bh?r=(2j zteQ7XzfWOJ8T@#X5@i-prNml7ND!EMkOiveB$9}JO^tegxIK)kzJC2$gKS(Y%y(w{ z4yI>f&nW>4sjXioiM47H3T-o_s<|>{56jP$v$B89Y)#XnwCl3gRpsi0t$lxhaQXD| zayh?Z=C*IF{ZK_yrwcQcde${#^FH8MuP)*JG@c6 z{o&0ze_f`46jZAUQ>{hR%CaRj5KUU^LK?EC9OLO{gQd88(QS>p$@3SkGpUX3UGPE4 zf%M&VUah@Vs7hp{DK6msFTyR_+!a3o0f+-u%+puXY)E${`z$7ZJ-PP5G!3Uq3=zP# z?SCWPHiSH%pQPG3+m%?u`ipdLp)oi&+WdRn**N~g6u64Y@Yd*WWb=THi+Q|UPTni$ za>2@FDQSWVjJNXy$d5`L+-5J$o-`M+G_8sW*UQ;J*0vR-0YWWE(n>8$Dag{eL#nbw zZ=6MP>v9z^OKDQhP#I#)uoh;aSO~0P3F8C>)*9!va12CJs!hnb=1J74gq+v0^wT(v zF{GOMl*b%u-|o=uYJRrP)@qFvT;llulW-qPwr1I3nAcw0@82AgnK$#ga$OC8XbJ$y zU<5^lMv}%H=#d$r2p|*?;o4SJm%DXunv;3X@3!Ad1HQ#K`lieprQ{kx+)g$8mhn5O z!3)e`uHk!bUbVCbt&KljtXf= z##F5YSb-I#?;00C4V%cRae<|*LK^N~)fxm_xw~cnS~GXN-ooZD_gu0;-&9!qBdr9<6(9i`^`Rv!(@*a3R`jvi9miV8W5=7H z8<3XQ(!9-+r{dk+*Dc%u?^>l=q7W|o7uD^Axy#T0q+mjQU8CBbpIUzD$6bZXbowJ^ zS+j2HuKKlO;9h?&!VOJa?)dJgpb!#iED;(r2O*mloH1p0e-+A!mLH{i%M|bWA!hA^ za`r1Y9AbI7xw&aIZJU(#;FPxRSfmO51H*Q;+hL)XUw-L_f!DyWBG*0_txadHw)m9& zbB!~#qmaez{xYXp*IB8g6%&1=zw`hW70^+-h?RC5SH6@@8JYH62JP zsO|f^|4Q*3p8py9-;mfb7Lh~2*Qs*0GJ$5?GvN+?+Q^r#yJ^7G@CM1vr$=#om)CDi zesQlqpU#)<{489NmFGDZ*4l2$jf2>A-L9rjrA)%T%h|W)F!xm-8>_n8#rP=85B>hH zH}3@90bJL-gms1>`r#eQRxYQOH@SbOxh-@;bXUh=yzo8iRAu|nsANV!l6RTQnRL}IERDhY&h1(WX^VC^)K*e1pm@n!^_P^+jVCU;#tap&xFT~6+2rLu<&)~ZU|g~m z0HBtT3dK;f@KP*-Su^Z&+Dd+~{T>pQIHgqmCY9K6wh0K#9!fGQBw@MSe@;>{n;vrj z03ZNKL_t)|^SZpm9G>${wz8#Ix)7qLnEx$W072rYTQ9x0;;!ysR(F z(@(^Dv+FgG4^OB2Z;UWb%W(R=X<3V|g_Od&Jbd4dSKa>erqz7;7@z0EyU!Z;C7lKD z@-mkcJ9p4ZUSD6GA5X0|k|LLkr9hfjzp3Gsgq+q7RCY*Ja-`yGnkwUrY*}YNJtG5Y zk4$Dxz_H~pZ`n(!_To*~8NY=X5-~aUqY#iI07+!B)s|yq#1+@IMyVASVme1BmRs-$2DX1~q`CR)N=>yk$gT9fsjbZ0{CJ_)$FE9RE31#slRz2=S4wU%ATS{~ zfYP!xYOjy`R>R_-=QT`zx!QHT?J`wpiE6E^uEFoRUGIkZboMFS?y)jYUP7O91W%FrHS+F~wJ324NPtH4^L3d)*pnN%)ZDOZ^?$^g|^ zo7G+Qm+Uj6MhIP}6m_*-S_r5IXKo5UH7a4z%jD(mG}^=U{&hpvSezd|tXW;(9AtTg zWRNRHTgkpQUJ5t8Lj5XFvt+t=0o#*;T@$J{Pg&`mW+4GrtVk?tO(}*}F@)_|DyxPA zrMX}RBl6|3q=%YrITz*9&~Ofbe6Yh6vobDU3gH3oh4^0BH&m4o$J7|r5|@{Cos5x! z12kXS0=!6oym_INmRAi77Z!!94G@Q1Ty9QxU4QsB`1|(#zlB;H|4ggnxIYA_emT!E z)sjS-_Q%hulqp9eem|QUCRrU&Fa5O{#!o$s-{@mS@K^O)eQe-=oIXBb9_iI4<)a)q@f9=+$By}bBIvV zD~rmBw~MWpmybh9LSCsl#nVp&N52NFMH!GCBQ(?VPht9fck|bpC(c2R3W&GNvaf+B zB}IW!a+MrH2?C4i_da=xi7V0as_X&WD-ep>|IGC~QZ>WTQEW-J#t8(XRH`5s>l9LA z)b4p&6v!e-%g;LZemcKovupaQalv7y^saXsl>n7f%v3ywP|6S&ft^5gT}zh41!SSM zupQ!vaz^_a#ybJpX>3BJH92?WPGKvTZGN7-vwbUZotm~*$T!trlwmoC6lc}n7&laC ztX1tgMy(b^X;@oI^$ayhSJR8If^ipLF0Dk|^{7OnnN{$q<_uQ%C=@gfp%Ob)m>7`M z3K>8Vo8J^d0c$V66vF|z?{C%N}!(Oq@ zD!nBimS+jz^e$0am&(FZehyii;;Ih?n3$C3=??cFDHLqsQh4e|0!;< zkuH3n^CB_xaj#(*_e$oxo+KD8gbw~CZB;A5ka%MaJ>xaU&HF^P5|HGGJl3iS1S_qT zg0UjR0{H~*bR&XlEkoBjgwnS%}a zrldg@>Qdu4~^{6l*AZE1hekAE%fr&3lbQ_anq-t=8apQvz< zt`W7o#`VPFYWOQY=!%~BNw{A((jggSp#oqN(jN41BN<-8pQsYYz75D``vqBJDfQZH+%O{uwmjyrLeVHK}ZO z^>vw^fLH^fmMA}!@R+txrmfR^LRJ!1s3|R&b17$~fHl)rFU6p5?y6tf)}+zI3Z-0P z0fYA7u#GjGSv$+_y>z?m7cDgLn#w4B_4Ds=w@UssGkd0tY`KXEnUSrm^U9#AhLj5H zi|KD=#S|iQw~Z%6!-a*Ew}%hKT@Q!bgE~aLk$bD%NHq`*AUfnyh%Ob1j}te&Q0{WN zv=VvOe3&RqDT8Kxw>v_&qpG2-c|Dc-r5o*V{hK^L@br`H|D)1amrugo1R+|TjpnJ@ z(t^af0ihfk#k>Mz!pX#%Jgp|DAgBno-(QT#}Gu&5g_4^ZCQNKFQ&I+`8_%fB*HD)b`KM zp{5_XqPzrvDzSh&YR=mh%XW(AZ<~Dsa^UK~no0gsTOPE21wy9~kuIoSb1AS*lI3xK zv@%Ej35TOQ{-rT{A0N~C(a$T-Ss%Zm+{*l@hThkurdN90Y0XFv#ZND%xx0H0Idf>0 zCg36GO8oY+fr8U;bysqi(s{W0lF-JG7#GFYvL%!xD3U)jw@22v7%!*qcJf&szSy2V zvb+H)Arwl;3AkcHV%wCkL(2=XEiA}Cr&ccyNe5{C?AZPsoSt8B^YI+4S_3LXcV# zvXcL&Zy$^u3RCg<=L&}3$e7akG`Yi-vNt7Mm$Gm{f~g_~Vj`CWji-_rRY`@QYP~B| zN?Nf=t}J6jAj0fB7O{A%Z``XlalO=auI8=OZ%LL~PF?q|(6Fv4hO?j^a*^yMlc1Qf z*&4gH{=L{;p?;m$r}FWsfAy{oubzMWCp0@LRjr1FRqv>=v`!a6KzvYFM@s8_`liMo zDF)PMXH0*zt{=(6y1X0?w@m2E{hwodD2*>_A~FO9 z9DAcRYjZ7^<#M@v`q6Ylck})-FaG`;%*pNcz_{Qwf@@W$b*||#P2WBL)ad%l`RR9@ zVU*aQmJqUkE_qL-rn)Vu4%LP-; zwe3c8z1zR6+Z-v=P^ZJ6scfq{;iIZ#VES*tkbv9{Xk({u`9O*zi%I%pG!`w)7k8OuK6 zyiSXUx7T+k5xrkH)R>dc8M&!Mn(Lzj0MQ7Tgu(Kd6aR1j$KNzU&Bz(!OUsqF%7b50 zs>+On(tA%##M+kiBA8*kN3JE;+IBf-zXc_k5Cp&}Z6Q2sGq$WQ=T9~JL_&0uD_quy zptS-f++be2@j#+=&P~rR4^KZT=d8J{fJ5&(gV~>Q6Ve=n9b&}nH)n-Jp!^~PCvd5F zp^b9a)(%P>87knxxLdAWDtUhSmP=v#8%#cisZpl#AuJD+GvZXz&kFN!d|&G&#E*l! zR@?||+6*~9Fo0UI5Xt=**7N1*+s2}DJ1Bx70|_l|tO3)Vv`1}+@}FyAR9ITS zNuC=wn$8hxHOAtJO94p8HBlBwtpQ-7T3c<=7pSd2?78kq@UT9+?#2z{I-RnQKr^z5 zlH!$8Iw3YYm=s@-zc8++rw=LoQ3@@z%gGVs;p#7u$+Z0g?+owXBS@}B(Mis!;sVHXrCK&&4}$9wFQpXZ zT02K9w3J(Ij4fJdX^*wZQWoSM8!{GZtAY=rKT>Uog)51SX`w1`B89}EUTR(h_QWXp z4<$B+u0m!g%yzw;RR*=pK$Xzh;Yzw8`#>Sd&Q=h44W&#mEmH0|9~tZI z;Q%Z$B1B{iDKn0Ux+7@S&)wj<@w!GrRNM|Bq-~ywqR@N)^iPa^lI9wT0}L&uT3=e5 z-2QJ>cLVhkL`ER&)mvz+7DA=sHX-9w4$_R{t2d~Rz_4W|m1Zmvlv;ReEUzoo;CjcA z*6CxMKiTmOb7S&PhDW0TRfqi-F_YA{z}dF`SYr0`cT_*1-6KZZ{Y5S@uHRy9?&=GD zcvE7nF>};Ji&T=KThBiddFO7B^Xc-(xJDvPH7lp8h!viUxZ!Lcwi$V56(siD-sK`o zea_p@jDVv9@GV!thk5#Ox%`2(#^n{~UI2yZ_bJ<04qFbg8#F&om+5l)#E97u`|-Ah zw9WsWcwxy2dI3BF$QU0QU?~-Nlc=GjSQG(rl#to^(|6Q5Xj9z2m)a1LlCJ^FcKZLS zXT5U(u)O>WXD813xIH(fSzY5=^TujOP#4J?le?BH@lpkpm|F5FZhlJyl>Mi8|BomV zSB`;U_J9Q-Jc9@|mAp+{+Z@i6U&h^?R3`d!jc1^=ZI6w(Py>X_byq8sO%cmPXHg-S zmqG!P6kG}+TV<`j2*@!Cp*!0_m_CM=$hE1QwIx#Hsvnr>7#y)yjswFE$)ZKm?Q)&s zUM1DP$Q<2ZEoFrWW4jJ@pcLI|v8 zsRUyU3ZxoNA1(rXr*f+evF1Fbd|@rc;;9*{Tp`~`w!+f-ORYbFI=b-+@(QZTZmemd z*jnkfTD)haYCuhlAl?_mKnmN2tc9d}+P2&Z=r^~6W>B#y?pa7FT?fBS8(DQ{MD+7N z4u^x#uTY4%zNGd0(S44jL-#51IWr9*o&Sfv`IYRi&!<06FBhf1Ms-b$a{lPk zZES<3@320rz87|%bEq{Hzc9&7ch|YAlGo+sJ7Sj-J_1lmHZGTKK5=?-!&|10jcKks zDNWa1>2YLOsj-q)DXqjYr%ysQsV!+=gNI6?+)Hk_zLotO?GCI>m?qsHKp&A=Ki})& z3uA1a9}03kj-A=9{s%73uRi-bJ-!CuT=J6UTI%lAuc_tb@sWrtmAKGuzbBx1dWp+a z13-&0`tbOtb@{%TyKOFIyHuWIn590XjMnPi^)Xewor5$xR!WO&EYa8<7b+LOJ%4EH z)Y8*%^;-1T>-kSmx59vHEgN7C#B$tDBG2RgZ3x@>biTYy0-8i-IutE3ZuRac+Q=_N!2at)}JL`*u@F@g%PCC@9`zKdvc1uG>Jv-jV#L_SooYInV>)mGLi zx8vH@$_%f9U8sIk8W}TbI|G944njx{0y)l?lRuqpw`G3gz&GZVmoTnEhg|Hpe1|Cx`G-Itn+u>2JLS(&4dJ8h~PT|XR@!I}!ilafrD zrW`K`v%diGJfD&H)#v}a9d7(KL9OHArflo^;~&?wbmMyoy+G=3c7A!9pMIy!bqumB zv!Ew`{zKRvE*BC`9$vk7$M<}E4N`|KD#PulYL?K1(o||oIq~jb$Iq=Y0GF@@#NG{k z*L5fvFv>O8QaA`Cfx(q+Ab- zH_!|bAitdN@9%%GU3YW)PAh$X`VI=qnXh5mU4N#TuzH9aJfD8s4}&ysQ0^s%5EC-S z1xd5Zjg_joFd;6h_njR>@P1i$W0zB1mZ+6#)N08nb&Ln5E&DaYo&NfiF3n+^dUT* zpHR@-S9hthWnBsQ;+sMy5g4*uOKyamOKDrl``%pbI-m3NvT@)X<##`SMC8_V7r%~f zs3nJ5xfF<63&j`#k>Z+K^*Q8R8bK`V)5`)>osveGSW0fJg62Y{M6KjC(iDobh9mRI z8=(Q%Wj!l_s9o?;BLT5glH^QDwS-`~5?m0mjM`|WxZGl6fPzzR@w*=%UoPjHz4eJM zi|52b%=5NfwiN-jQ0IATjZ%rm=z~)Ta@tC3Nh@<%h9HDZDnv~H+0)pQcgatk_#cI0XNDBE@P!$v8&!{)k$K`s@RALU;qj^|8M{2Z)%M| z#FT2#;u=`xoZ}WRPCFu6!m70)Vy#Ne4cFFodnwc!R_`|?6oLz>ta4bxGOyMRIh@iO zb72Y2T3G=u*0>wrI;(O5&K(HFnB2SJ^743|p0D1#k=oTFdbbmh*7Glo4R*K|!fkV+ zmYr>_ZtKP>TI358gX?dU8uq)RKn}tgw^PajB4ff&zeuiZ=cuHzR?ZU9TuPRL3qi>D zPVcPg()vfg{=)JOXhH6U>ROeMOPrn~%z}@8UV^_r>~3|pFAa>|b7^YkwK68qrV~sZD{D>=my@*nzW;aY z%l$l^mA*Fiz*tvlOP5blyh1w?+mH%ZJ*$K0df8nWsahk2O7eC-ePlRW=Y-iS`yN}2 z{=3o!Esx4xLtWzb0Bko5jv%x0BGnytZ;j~IO#=m^sCthDIIm>(422SpQknJTTVWW< zyDe@)j!N~soq~TX{?7u>YW$0uUno8yinOll^9IT`%B_@Evk`)G9sMP(zE-R$Gs;Xk z<*tEqKYM9}8HVIH${K;JwGgEDzTjfTr62aI_XNI{OTOHv`ia{?4P9<0B|0u|qW>21 z)42aHYIws^ZnOpekv9ZTDI}uOa!_p4y8#uW@Z>r`w<}X9#HTGlF2-dBQV3$HK)pxS zE4|aE@OB9P;pP0#V16TvaSFBEL7j+Z(w*u7nXKxVV&sD5TIcgmf-c(jAcS7}4pZnp!#jq@AVF%m2PNn7*i(i+p_#{l%P;^z? zn(of+-gD6b11_X8JKx0f>0U_L?OzMmd!M23Zug#v8%8Hy6SN|DkV;#*fAz(GTmqXu ze&FR7LIFc#^6U=6&OB4lAW(^-znfMK;Dc4q~bzRBWR@Tj&h;qwY%orpzM(Am_iJp6pC{* zT0{Oxn8w9xfWnn6{zOa{z5~!sb*yeRDKtHFCS5j8T3E#isPyZ6afh3$&;AQ>o#v-B zJ!>Z#tc)BnL@|}iy_B`z-!NR~hfn00+8s-3b^2$F-vI+5S($-1Cx_v5|HF3vvC)+L zAKdXj?cV)o)W_6JZHg5SMDB0{*hQ~eDnzN~fJik5CvBj?NpM%?zWB|UR*+iy zx$i#b;;_s=0%XXXi%$2iO3at1zvpe`?0^LY%0k8a=jriJkc#f^q`9prNdlIil^Xl2 zuiU7Fx!F?L=7~|Sph%vi>T)X;DzXdV3lmt%$N?(MwZ2H^Vm#&TQR$;}Hw6;p6$%gW z#7e2{o+@&XT)%Mfrcti7a3X7cle?0H*0)?jixXo9ZdGoj_{=dde6H~f&`UN{VB7qN zBnWCQk9qSsl(aptR!k==gj&W%3o9PU6KsXG_30bR0gwsPx#7A5pGr>Gr%zJo5^Lk-vWC@fhkdQ_i3%0+jh3=aym(|oCQTJ)U2n?=tds;>(Y`(ecgKAoS_u58?6q8qW53JiPu35PG}(kkS*FQOiBnHEn+aCMhvlo*HY@ z^T)cLAd;3zO0wOaG6-lxKQvexs42*K+Z3-QJS>w>b;i|L>EilGW zXs&u;h||Z0UCv`_$##xXi`&`uZduMjA9l!MFtiaH_mF;rT84f*#|Y)&-T|}LQ~86p(5iPrI3uv zWeQZ2M1h!N%D_k&)0pH!3TYTCz?iU3i9VOam{-Wn_?}q5O)tq$T2-qw??-hQATh`Z z1lYrS*;~etN)oaGhWK(xVOG`)L7d4Jwz!>9QO%pMuZEk?%QWZt$&P!~nf3f}p8p5Z zrFUOzH`W@Y>q^{8scyUlpSQ>Ffwod=DMa?IwqNY;zS83jc5k?5oIq%lR-qi2HKxA} zo^PQZ-~Ic;tM{zNltb{zc00Epl#@^j5pOvQ21;rGo@&fQ(fbt6+H{<-ZJ+A)VSM#| zxcQ2UF*jQi#aNY8*a}BM@;1aw>BQKXctw7c_O%;d^~Wm)y2jS3&OT86P-%HSJx(tl z^75eUl{D6$&(rjvyB+8DGDYvV8lGlfUY9)XueN-7~Z185C$qrqv3bq#Y2 zOO2b4VclYFa@_B&>se!5i&j$0Z5YRzJ!eH2jY^aTU3bi*=O0vvqqJ6IH@?j0C5CZ4WMCoCusiPhaosXUZFCnBo~M&QGmIlD zof-pKE?cz$WX ztdh#u%Nn31#aQK%faOZY?2OX?_U*SuO5}2l>CM$a3HEZi_?U7lF(<9nRsfl@Qlr!e z6w>CS@AYsTUiGdg5GV}*thr=>TC0yQ94JOCOfg*nm`2YQX{b!;Uh~-pUsl7&)V@aD2&qAvZ z>gxTt>w#E}kWv6C`uj?oL!int!lFSESI088eRX@IzKdU(q88>YiAWV%hSgk7v3MJ z&6pEIM_fsFt@OUsn0yeDHOwh&yfM&9$O6=An&$k-Im)I9WlWbE9$Nu)mSJnlqc*Rr zJWzsIJr&Z`BJc{nrC+#xE6g1$t6vMHqONxg5o@sey2L0UaQ?C6UqJsQiNkjO7I=~B zuKJ%@`iQCvd220mCZ&YjaGgs@QHTMMDns6d8WVFnjd z4AXDB{$R#0?;q~B`J=JDU;l*Sqj0~b4AGNd=;Xmz%k3&epJL8sMEiA`pRulHIEKn& zTo_|q@LEe@qQp;BGJ&B=*6q2qtpR6Rs8X|M)G;Mn+X!Ti8*358fWoqtYFRkR2Gp`= zl4atpAQxN!AhJfXR+*LsSz=uIbwaLyXqnHb2iM=$5~!x)eQi|PiKqzUt<`4@x=TqENGprsdK-!uJ+)n6#5R4PiFBP(gsyiqHJ9Z2Wnsaz(l zjC6`qi@v1%vD;q_w|`5`PapmuprVBsJ~G@Zt(7ie`90RjbQYA%0foM)>}7rW2I?+bMQn!dCMVo2ch(_iT&}f8g;>cs=QGil^)G#8x!m0J1t1711n8%hPL09 zKc&mhWB+$@aFHU>4PYnL71wC5?xgHWL~e{$1dJ%H+8j2Y6suDJ4y* zJ}}ml>BIDIDW1CVopL>D)ACsHN$xq4;X4T!ca=UTCp!H3AXaN||enxKaHF>Fsl3Y1RES0uxhL6~2eon`QI z2ph0{E{svLy(Kl|kV;5WWz$_#J(cvYrSn`Jjup{ zQT&ETa=vC-w0UE?D<85FOb9VuE~P{yVY=h~?k_+Nbvr?ext&0k{`eI__VXogX-%PN zu`S+Nxx0D$_&B%i2O)B)Yh5SGu^-y^ly+S@Kjkf(XzI+OEtK54OX}x?F;94hRI3>Et9He+RpQoWKP~JR_=U8>h z1Esm`UYpj{^aoKTn!Uo$u4c9SwJ!P}xdw{piwxwoQYo&CO{aaGKkWi%z^I611643&eoU+jFD4U~Tk=Dn!WNp5c?NGv6 z{V$v@)A=L72nqc1qKri#KTZty3Ln9b1;8rX4u=9dh6y-RR91bc?F_B z>{1BNUmii=KMlsJKM0QLdQBnO_Kh`1pgE3@Ad*&=guR@8oWA_MHO}@@7@0!hR+ux!zF$ZOLTvcTi1HYVJAbUv!5=&e~$;yyG zS)isEa!i0qw+9JEH^XvyE>&)CzKtO~{qh%C123bl*zFIg`gn!5>t#C#bDL8x;VQ~C zr?}3eUq1EQwsD(fJhNXQeMs@MqAgKFU0=(2z5t6rbico^g_ZWC;CjC11Vh_MxGTzm zNXS(x)a_n!kL4<42`QG6ko5M|KiAl{{m~u2swl(qB1_a(3Ti~ADr;5k`O8ECk6-=D zwr%#8m;j}5o7Qy(M2$WO24hGotRR-fm*m+`Sb}wuD6cP{I6qe@cXvPNW_x;>5!xzr z$kS$Mj3%IDZ5QS+FMl%2=?@7sZ{*?XCO}DrG-R)Q3STd)_ zrz*MGI4NP+-D=mP-~v2OrwWY9K0YoXZX4&iE(x4-=1{s^(GIZg%QLKH$wrGjpEs8r&_;Vel)i)gUs8t3QgPn=V&qcRk|6t%Lj z^OCyFE$Oz(fe1;pD5cOODy3y1gIGfG3G8#T?J&o*{8UjgbZk3dNP3NE_)&T}i6Q3NiE(a7c~1zFjr z6~*$TPCBA0@vusuLCF z%cqC{`B@Yp>b)cx_BU!By3~a0-<)V-CsJoV97SdsQm|N5ON6nJeU&r6QIt zSFg0Hf-_Rh0&C^Mi+|=yrriM`31v+Swa(Y4c=g)Yn9Dfl{`j3~H$p^(HN*#$Y~6vx zwWbuSB85a*+SatBv@H27YMEyuW5e{s0=wO}z_hLpDd#YL)^P4#{d!r82p_avW16*l zp9O}J7&xS0Wy;zGA+n1)|}@HmRV^aRWm}4b1fI62ixt#`aItM zQK4mA@bMdiz`#-~GA5Q-P!;d+XqPFhlTcx@bPCnfudnn-NM`h62+r0iM z^8|RPDVpJqgODU`yOH|F^@AI1sSbqGRtQ-t71c!BzpnKq2d~^WNS6>t-M*KqH_axn z&m6VvIS1!9Qmb4iu0iQxSx#a3zbh2!er5HMbOSKO^*#pF?bmjA71xnPvTY-3McPZ0 zN*ibn%QUY~A5AZ9<4|l$cwy*5`bW%XY5rEg#koH5rR0g^p1M}qy@XZ~DKh{P8KoOt z0EHx}Qe|QLt!TRS<%{Im_M>qd*?)z23Cm-pK@W!*my)8=4Zr|p5nQC{su;PH#5<6E z!Yp+axiGX+;W|F9mp@3SP5-@aHh%g4ynoTduM{o+#6~$AuEtttwueH_+EBokcjsQqz0IDD*d*Z@`vXW)aC?Y!Ty4OOmU%728>Gbe$#D*3Wn`YL0FBOLDD@OooH(g3K`WNgv z*WWn}>)Ko|36ZJU*IX6w_Ta8@xjz{|()HBXW|_RK22o})8zYHQf`|qXEZ}xOGzy~- zq=-5DA{^9WWd_w}ne1?z*VoPVZFBQF$5ImyH?KhraXm-}IsOdAaw%}nL}FaObO-ca-1`0+29 zx9B$eyI*xT|B69hAO9*!K#cA2yY}`ySAgjKdMc}w(g?AFfa&rqKuR+thMIF)V<|$& z4N9fT3-P)vA9DJHNQ6m{1;reTpZ>d`M=laX(XE!+FbC$CLkR1HvI@4GEnpBLahM#g z!2JC9599ekws-CRmOwydk-dn8)Gk+53(4k~IpjPEcG|vmhrdPAvk(77!P@QHn>Vbe zgys5jnSC5y|JDs#@F#SeQmcqeRm)~T)3fl3InO_rI@#u~2#7vfcQl9Zbvu}56V{(Y zxaT_N@QA7l{w3!Lw9;gn?H$Xlz*eNlagOmS_!;sPujkA2AL4Yc@di!n!&S0YAf?g9 z4N#VvPtK#%8s(F6CU#^R7ch~D>9v?Ju98bpS_V{MGp8UnP!^U4iN01+ZBI2PflQm60WhHuIdBY@>-1=cZ-!yR{zckDmUOw!wmk}C(KKzp zQI^&@=5W#U)F`ywosWfuXu6xmYQ~Z)N&*00mw5>z3$@w5+aC7Jf@^FWCs_y~jT#~Y zC~1urn5W4Lgr+l9aLJG}qe6g4BvfMosze$m@1qCEwU(5)(Oo}uTI$55RJIy&TC}n4 z&=J7umzYY50tH)Hr+FEdS!?N9T>z{#N-%H3~(JsUVRy z=ktU2F{VN&ft0gu+waym+s4!?=XJ?xu0j9^siZP;=-QAXAnp6@VK)Fkj9HORu~==I zuBjkEVgl_Nx9J<(w7Y%_s1@q2X|=Kiq#{*nt{|+@g^{E>>^IiBR062>X1~2V?tKs} zvb9oa-S&-kDwYaTyQY<-V&vm?M+B$K%e*d9+rzM9W~kxat0SVD!_*j|Nz5sp=BptD z(&MA=%+o6rIFaQe>f{fOiVc74t4-b!iT_eL9 zr)}$`YEq58bBBJv>HDG81&h*V*AJ&9UA>PnIt@bP!~VzuwQ33gYVqyO-Llrl>1qgf zP1Ci*oMNf4#zaLJ0#at%ZH?&*R~9@t-5dSs`7th$5SJ9KHrMGo&ZBYa@#P_`6aBmY z^WXXylAlnJUzY218Ma-B{^{unh1l!|=L}RKr4At!hW-A{uyJ7><2*~qP?J+>n$~%~ zS}KKWzyE5td83Jyw#M$2v$6t*xf=#$`s9P3{%W;0YDhWTe%tn2&ezL)al@<4X6uZz z#*`8+=O-!Kkj^oTw!4jE)YcpiuCc`Mg;QhQ8$nSLa;+hyDtwMnxxH-%DF{G5JbfNt zMk(*M$F6IPB&S+qWeYgC?VVORE)OX@gJzBol`}6Ha%DZDDvds%492xYIDEx#910V%<&Q2|+S5Sp;r?bmCV z&$a1}g$1uaDH)6Sx>i@xi?W03-t$sop=bwDa$WDysMg&PY?62;6>N7W%|@_bu5tQN zvX{eMOtDs-Ye+?Ed*`}cEQ4Pr1VOkbRJQBbf6#Ez+uw4X(lU|Ub=@H)2r)EH0~w$K zL|k=@V`~SL8!t4Y4%6?Jr$_2uOO#?o4~pw*UCdR^tElB#>seqU^u<`h7fHEmh^Lb?4sP=0;e9b(T%YSlu&pEoT>yGa@S3fQ_MWnT9?vxyI^`xtFO%+Ha zswgQHB$CFI7)T;O;T%XSE?Ly9ltgd^k$K4}O3}3atYCv$Wm=a})Vz7~y=(UD$IM}xKem=OH@^Z* zC6D9Fsiqex*32HY1d$+RU@;XUt+GFp-s^U=j`!>3ERZY59G<1_D--)aTa&=NaofKQ zDXi;Mt0$4Q>Qwh`n$CIp*bT2suIu%K){Bt9;bZYHf^S4|oEMgQnWCuSc6SsgNo}i; zwH7D^WFli~UH~fyJ&%{@^<>+HH&pFAOvp)&Qra4HtK}bZ1N~iFo zFf`3qdAS$sU&yspWQnT;U+Old3VM+!B<(j~hEz?A6~mJdBVd5)gy{2p%5_3a zs@gc-hxtD6(RnP9g1BJ&wl-RI(@yS)B$j()gjCUp!)0I&u3-ZUpKp*b6bC% zvJgOm7j3&ENu4vtlS#~8TVzZcbOZmNKyoK`o$Gs-HZai)#y zDdt(5omO|G_p0eh9m0Bv^GlUoW=|$Vol3P_P1Sw!BZmNbTSWnwf)GLs#%^O?xqv2I z!Ze>RI$ub$s5_QGQW&euuyJiK7{cOJbBu}7WpX`od9da-);eE)*0>gqg-I%vQz9rr z*lAn3m1<43l54&q z8n9L_Yt3`pw*uYrGKM)SBl^QTyL&rb&cLlQeRp_+rb+26AsVv@th5@8rF8l4fO7ll zhg5r?CyQsogMuuTHD(KlLP^xJBtUt`*jIjm0?3X-Eo6aMA_|de3H^3+J)OtTf9!V0 zrnk%W5^HZX9pAm`4zK+*hb8F7p`^{tubWrzv4rySFi)q7jx>}M2{pisA|mgV6@9Dh z_AX_u%$?q}PT5j1#s%s|5D|owf{+Vq*639KFSoCLt2C8zfi!DnY7G9m6b!~mSyl2U zC4s6>%f~9>bxqgt56-;XzyF_%YyJ34&bgr<>p zvr*Cl0mn$Hm5nSQNWI6}yMF8XzWPfob4Y<}haT9#jGS##AHtZX-^ zn+iGkUkDOqQS&9Gm>7fwEeA(xT^;~1ts|62sT)!aKuNQ&9Oe~}oRm;jj{>!A8cEt& z293OmniFTvL8@MNuSC^ZWFl~GAl0qQxW5j-nY7%uy;o1Ak z%j0LkQfn9H@p?HWzc5=;VZDA>SCVcoYB7dLxN*Er*Q>v-s&P(<@#QDsge04DBi#rim#nmfNDe-w;T)PEh z5+`GbYRMs0SzV(w>DD#`5`@S(bLO_~V&cMOU8fMDMh+=W-Wz~ctH?qKmNHo@=fw*a zPAMexp_Fx5=21iP>nRr;ny!}6HjStVqHxO0Vrcg_`=J#7`1Co1Q(R82Y4(S^QtRX8 zrBq%d(a+D%4-a4Ze!JQMaxk0fb7TnAhvRZK>-0cC#Crkb+ch-!+G(8AFsv zl?CUF1k6^Es!*)fQ%r>sC6)w2B*fS`qfq|C5}1F)001BWNkl}n_&Y&q#RQA zUE}tB|8&0ehUnk@AOA}Xt6!g;l|tkg;?~&^F4Oho9BJ2D?YQQc*(xN7q_i<8@-q2r z%*m3}D)}fXW6m%AeslNwhwZR0X<5S6Y6*2+=L@1d-hR{c`y9eNeX-p!6&|k_B8JQ{ zi#dT-{jT4jhTzwE96x{j(l>*Xd6_1%H(hJ?L+x7%(PzJ8E}QM0(mGCat(6cE*steq z_f6m4uH$L(Vj3rc*mrKzZ4|GCX8~3U-QE0l|LR>yPviOb#B#IyA99$g_b3OUBXg;B z;RGm2D#dfI<*J8RD_hj5)lk%F3Kouz(7**dkgbcCNz@laRm2-m1Y*|hzH;FREVbPns0u>AefMvb+LBDw zQ3;nu_rt4S>t>gOFX^h=Bg>mGJ)^ccUy=KM|3kAs`sv~N{C6a=>3^%#A@QG6`jgea zt*~7#FNG7Uj*B~=p8>Jm?kWSoF>km zbnCjEz&43h;|OKqTDYoa*a(q9fGC9oqCm(dF^I}QN{9@#mJ+EZ0lJ8Joi1@bb-TCi z_B+I_X}aVm({>`l`utciikPf6+Nw}e3`;uylGndh@j`V0e3kR6Ok0V3t-8Mz^;*0q z8m6Z|)WnS)BsTMDtZ{@gr3BsXpK13slU}A%x}Gd%CAY@h_$02UKU#QD!xIpmhV_!aRlfOYvuAkYEi@ACjMI;W(eQ%zeKBtU10Y zb!mqtt)A0Up06SZU!>+5Su2?Tk?=Kq+at{87-+Z0@i;U^UC-PqjRx;Dr3j?f2}zlyC|DTq+up)*P2r z0RI6YF$*$Enb$-GNDFF}>B;n_J&IffSJFckd0nplxt zS*0CelvKFTb%v(jL6Pb53{v!W-!{WOr%4HtvK4}%MkJ+lW7?Zs(mIdp`AICLLN$$+ zHB{RtMuIFDD^N=J>-C=Pttbk_vSyy2S7{r+c&jbf^7wM!xoQ!ih7i-b-scQXRWgP_ zuhV^upS0ViWdfe0t0+8?@$=*L>A$AsGXnrOHDs=%v|Wrn)z!FK%e7!Ow)InBPDsRp zkV@N>wH`lxIGOknxzu!$QitSSOF7l+m%l@tSlpqyvF=u5sO1`_7-MnHnaOzi6rggeju@F50s>od}PgqY-$qw)B_RdcM2~~roK;_lw-kMhtCX~VA zUAV4!nJP6}%o4jQYGvjOqFhutRg~-esMJ)%v!DJdX>k49m|imHrrRk83Td6g=Bsx~ zX@4CzckhL?Lge-F&*}6hxxZr`1&glVHf@t3I4ApltDB;CKS+C{jh?2d%wJN;j6K=c zIpvy0$^;|?%*x!T=BxedZ=~>PI_3F9R-`55IO=}i4o4|1BZg(S1$5klp8rNBC5d&7Vq@_l8d>xXBi)?p$)3nK-1x&WN6|75$lC0n{ zEdQ_5H^%*t%OdT@wq43K&c6_T!g3b%irPsv&OVfy)KsP0W zGCc~RG}H>bjAWV=3+G__Lk_cUZp`7Gs0Cq(%Y`N)=p4JE;2i0|rcH43E03^U} zZg$ol`rEggcfZb2EH97taFkMV4xpMaS;(j)sE&{#D%UgyYq7S`wv|YwT-NCfm84d> zQCg~XI)`NzIZJDu)XVe~@*;tn<5$+alFDuNyP8gMc|w5e^JhQ(taMFlG`4U1ep!9R zjg%VDGfHjV?Dk)^gA6f6FS){a{vtAUjpXz^`z5VjV$%+AAds9^CTvqS73W21R z>ASXR+~d=Wtm0QATZ;)~X}?VE?E@!|QbB>nl*FOy%td;fMn>?#YT;5vKc%m7>fa=t%33I;%1ioV%w z_x(nITynZjp>p-XKhM|B7^8@YxaJ}_MI3!hAuYip(d)y&MWmE2%lYLp8`-};+-&>C z#~5PT^!@YdoiQ^OD%#kVxIT{OzHun+9IG!G zP)lhLuy;DAx`d1sPvga?ayuLmI2Qlm<0lkwd)O6Di(d=DvEN&TPuI(D-rmXU^o(L5 z0!A>ZvQ?`eYq@A862r2B(-=8t1naC3nA7Fy>8zj>KG!N0wJ}6vbk}Z{#ArCyNh=4Y zPkfsE$xjd0IZ3+@#cu3&*ySoi!g@MC#Oo8m3~`L&wNKQ!BtQ`LF~?=1>m>mRLzCRqHJ}0;P8GK|6Xogg)QbD#fbP*$-6MgIIWD2HodP^lZXl}&!cPlb)E!T zj&lu}q$_!@ylB&j5MnJMs*omaTjp0jP|A|%h7hGmP<(6c8W*G(U3cSJ7oYzFK$ZM!!VL9K zjBcH(@V{8M)%tHb+pKZ+vsP-GcmcWUDq^jEdePh0q6o?$=^!_6D!dZ&bDF;p9YyVJ z-`UMB{`ilvywdB5^=G~RZT7zi|5?a4DbJzKRXA1S%wIAm2Ron^Rf&sFYY{c6%}%z* zl08xFhTS;7K`W8cnpU7>^NFgtE&x0j)p=>9CQUNjgcOyk2nYV_+`#vQOf5WS@cSq80HYOBqaz?YAhla#p$tv04~x0 zqRqZ|p06jj=|FcN9$ov|$SucNTZQH(Z3F}DJQ~7DSWJs?F zKZNU4(%v?IX@*xMyD)#CXi1q|hh=6#9on0G{Ufq9?iNW^5p#N&PyabAEg_U5is*Cr z3)E+p-(rD^6pJl^uv`JIRTRk5szx+DnuS+(8;BysYPI<(=-Vpe2-0uVeNJc#`m{dvyo44d)9K zn(Vsjrq3l;+dC;mLVtaR zIxFh4-sbwp>FK|AyWb4A|9XZQs*5Eo%cGBtF;FO`O6WxdlWNUuy5T(#U!EV+^@fjJ&su0_d3g|8OHJ87ERWE2cOE~Nc{!N>Rd4q5^jA(IGiLu%6I<(a z*N5mY&maBecTlh~Z|wFcM9pzbJf?EA&S@H#<;*F>cwd)$WxA4l@}{JCdiiTvo9(aP zRa(qqOl$M>lIEvcQt{_CUDNyq79Ed`eIJU+EIUpI$0 zarTlI&MtFpY%A5D3yoRemrt2^XKe5D70JrteRzJjJcRX+!1w*`*Q)J&6$}3;eNps= zOvTz%^IG*A-3{sVI6wWK+OL&-Epp1)OC{_;Bt<+uh2;fk71ri#{d|d+&;4Nw@>Pmu z9iOoJ#8=&H&CRQl=aBDXdV_e3;$BIIeH$g_HR~2jlJmnoHF0}<%Rx)+&_T{KC5X$H zkk71MzdZb?U=Oqk-6b4^X?63O%941^u|S(#FWg}}eLkb0Fim;A3Z+-SBCiszJ{LfT zrp?$_cE-67R`0KNKN>?A=I41FAOE82v)TVfZH}o-;dvzS!P>3SH!Ryy{d)cc@ry*~ zDbANi&T}oEa$**VE9RD(g3>rXhc3W*7$Ca?8biAHE zyRN@{e&)|Jn|)QXmYmZi#i_Mhv;E4)pUAc(Uzha*W-qM|<;-ZbZMhUlesjC!Z2bAZ z8Lh25R8(Z%Mz$5#bp0c*chr3isF-U`8APrrqG3`BYRz%Y;R^mGUY5**kb~WQC#?e- z0fIDLp3Xe4vX@AaYauCZdza%SFE1g0-5k5#E|-rfeyOGEVM`LxIZ>=Avljxy&>jxT zZ5%!O_*miqf)p6j4ahJ*oX85Zy%U1*d@oqA5S%<#B$T0ucsZwPLX;J3tus?`uB}+9 z8AQP~2HOa`dvDx9ni7^V#j!$^wk{7J*M<6bzcntUc-b}Eesjm`lP^_n-x%ivEFg8k zYX!0S>R;Oln6J{jcILOGAS-L66xBpT2J8CGcmL*}=ga#1<+D(B^Y$B%jgY3IFuPtM z3v5->8@rdv@_J7;W7UOUYRSv8)_6h%PQ4?9%vmZT2~shNQla#_y%Z&cvDQ*CR`SXU zWg6{nN+PTtabe^*Uj?}=ATS(`|369hv8&s5C5Cy7G4l$4+Tp}|cv&Q?imHMkS%3fo zhNX^Sz)e4_n{LVt1F}(>RU~gZaqs=d6=t5p4ZX()eDAPGFbLRo`>nnE9%D-LSfmoN zN0LTV?wkiLz;=i4TK28HMDVOO=a;ipFOT1Ekqtu)aSj=jY~%J`0ENj$wb9JQs|2xD zP|&>3Vz8uiDvQ<13OBEd4_OL7Xp0R)ipWw)(>Ot;UiLSSD4ZZs;%p?6&@uVoV_arq zadS9~-Ox*#U!JDRm1HNhHp51%Ataw`=-l3QCi^9?>oAy#^*pW6gxXT143utb2HH4# zH?5b;bQVhbn0g_#){IgpOnzAw-%xIb4WJ069j~{y_phuf%QUqbbE#oPDQw?&rW+Uq zVli5y?2u%>-IT&ud9Z3294T2FNCn;KE~ncv`|G-F`r&RIt&rcADU{Z`QE5TUtIwst z>NB=rZ)skAi81CmHrjQa*sG@KYfd(9(G&PJs1EcCK_s$ZZiri znirw8P_lGZE>22an?z!(?dj&fm9JKJ)B-nFh&k~T@)D-&nhTFZf2W-*n5~wBbr(PX z^8A?|zk9fQ{N?54r_Y~<&2Npe&*x=3xXm#Ba+{xDrj6;AR#TlGhA}dirb-jL&LPTM zT$BW@Bvzsd+{zkmJ>5x!R?$c~`E?3UWH>jjjipjbtL&qXF>zFcebw&1q%g(n>2yLvvOUa?Ximm0A<^erctVRw}oI zpkl1+a@A(9?Z{wWy?LYL+LZFK&F3RjZZ!x>x7+i}X|Ya%Y}Sm%n3&??3u7hX#Xmc% z6zC};R9&xMmF@cB)pYt{T~A%tV_Q-NY8P&V`VBA|vr$%*c;px)6rg8Po!FZ|9q} z`{;d1H@$fPsU!e4QPPr1BHT$KQRW!uyq>JvkdUo-ZZTc{4DpI+q>=qzI!#7(HCA%J zC9TW)4}vyAjXB+F`Qmo(Yf6M9tkUk4RCiE<(#m#50!Taf`Ds1D+3N=3r&-OGaX&?YvAiHKDhXwz;GjJSo?pLR}@HFbbq8HKK4S z&e)1JJE15=Z}rINLgZ2-V`D%P9k-g|jaWeCdAbzp+;E@#0zd%32&FUv&aJJtuMJ8G zH?CR;8*kS%g?{&*q(DDe+c6gJ|1r$}Ec8a$QA<>6hTzh1tk+jaZ! z?@?^I#cuz~j*m*K)A0mw=*=G1%$bCqShszbmutvL?+;3h0;#qYph*KYN2*9pfhw&!e?D`oru$$FK>Z~wCx80` z$Dg@vK@Oxea0{`K62R;HbaZMZ*%$ep=-)tHY}lF)>sR(`%O^k>Hy?+nh#*+{uLtN9pGA&3DZavKoMG z%S%mSI!!tLV%(yn8G5o2tDd87$a4wgzM=k zoqqw5hV2I>q_TTJIi3HZG>h%9-5iFyE<{~DXsaPk2w#agPFK{8@zP>D{OWH=W4K+E z?lWU4tHH*gwNchKRGJJ*jx8<>EOd|6HP%L(789ffq?P*%;|3JeN<_vGb1m6A0{%o) z3E$+k6-ljRO(J9iy`zrgKQ(B)Tj>Fws(`_qn#Q0uWDO%&o^YIS^ zc-Zfi#PfOPl(aBRwbgWe`Uld@9)4rHx3$hCd{V$lZv0wuS_pGq|4ddGcVCl0X`)|p zT3t`1NRHoE1QEip{}5`)9=d*X8`~rZYM4n5ofTp|Kdo)M1mgK=v;VM6YvH|hoBjS* z-TvPdHrb!u?zI3L(-Uh2sg8%YEv}HxEK0nc8G{`Uq_>pzQHo!P|jRdxfwW<6i>>_LGK zy#%4<&ACS+nc9*(LR(ol0fAVy+5`0^>ll5lp@cs-rq<5f7T3LF*b28}L6xcI*z$s6 z0FV`%Q+oOQXP>g!{SLthDM$*?DqcV3dAfOfdw!a4|8)N0PrOLA-wVvDbE%yD%he6< z-TfP%S%W|^hA@})M&?bzDA*{w^Rd*z0$Jjab7QzGWwqw5>VA_-B%A~nGT&*phk{}L zN)!RQbow(=kV98Xfz+D+6y}dHCDT7DGPN=rt+ap|M1z)BWt1JZN@%W`xpD)RE`^+@ z)9%e*cbhvdWj=lisj6-#)nNOB9(oqmr(T+!+ij&Dn0cK~j2flmOj2nuqL$hZqv?l| za`Q)R2C28)8ZyOHOXaYnT9E9(ZIM{qumyq^eJd+KX(<>-!o3yBLY>0pqLeeT#q~TL zf8x@+?K`2Pb?CP5RDYifVTn!wnOBRS%k9E>ApOSN|Gt$A%VsyfGWIp{;2uBd;jS^T z03rvh$L+oA2bR_JX7}cU+5IX-!Um?-z{F@4E4fEMACsrFahkn>>caNln zpFTrV!|vW#t-DQ3kk_j)t?%|-zpqUfzer->$nmVrAmoOtMuKsB82VS73%4pj3JJU2 zK|rhd)^)wpIxklr*RJnuZ<^?~_pgnWxvo+R0x-sno1IZqT5YMVVIf6=n?#|9 zkp-nx{2YYfu6HGITGz0y3UC-U*12xb=i_<0&62WG+BjpB3%TUXqdRm%XQb9t3aT~K znChnQYpLhkEjMqZbKSV#yB2*2$#q)Dk}GT5^-gM`W5~zbMe2UP8KkyNSZvkldOm+! z{O#)Jd0p0!w)?}jAC@I!g9>$tK{CZPwB|d5e(|kgf+(d@LKY|`!>6y`;yM==ecwOc z?Na1F{_<2BZfvI|H0H0*m+Q0?sMjUzwj)zbekwKJ=9Q40Z9d1+YK-|hUA7J_m{yB4 z;^O1i=cl*(aqR4u<2R@xr+i&6qqBa=WtsYwaw5K&8r{_FMf?e&Mh*&1>BR*c;bn|(hxVD7ulR=lih zgGL~w93^E{yd=-}QC0bgKC+N4Jz!|l1Hn=yp_4)ep zrD4^0iuvSR#6 zI>m9)axXySIwG8@W`eD<0;H~q8?Ck0P;MNL(jAo6VfORohBPYYhBvR(_O1Wp&td(0 zr@wdm@1-e9a;|F#lfQnN@c-I(|B>{s5RfahbVmQF)K}8IuafF~-EHoZ+}+BBICtHB zyyc~wYU07^Da8O;-M+}-mG0k@&eR<&;<9!^YX~K!CAMSo&zuDU3q@KPVk#-3P{M40 zNe_2RSYuJcc+kp2*K;X~mWlyvu?GBfi_=SKp4$`PXWjir5`UeWzvg09k3JA9A#*pcGM5UCUbH*HXa94q9k=Rpxb7skKN-2}U8D zkJsdn+`Y}cY53&Kl&y8xF=`SVKqL( zHzT{iBZAItU7kO7w%gu+Xsl|%+bxm0?Z&LP@2?>*=Myh24M?434uvOazvEIH{}YMV zsie|gQejZomRricb9>Y%vXJnY>YSI4b#7oZ%2B)T7`S=?%{5V44jEpE?n@?Rw}Nko zK(uS&BM8piYxO8PtGlYDEOGSHO}0;3$dXp(63Y*1y`o<}ruTRXfwBDbea^6eOR=jSKg-DWKqudH!>pIgo zo6UPNoA~slX{tr!b&_gokg?g?3{@edEH!bnarF|vubQR25!zfRhmZ60@zve99Wg_r zOv38v_C@m@5?8sR+R^51TTQE8lXTs?#9v#SVhqSXYWoQND-aDJ1%GUH(dH3(S(9IG zS1dj0QiV?}MY)D@H1w+{J5_~T*Lpplxn5K|+TpFxiIiz^Ep<+rQ>{>FkfYV= zeEga~==2@6XE&@Ncf~Kv7TRM?$LYCCGn6=seb(l#a&56x@WiFx+!gUo$sX&ql_%u} zrCwV%y59AJF?Mr!|h z{L|mr&9BVxDqMdC%1ysLY_=^6#UrV{E;C_NQZiX0(+%(D`D7Rg3i}HrFXh;EUFWJ# zrOwx^A}CWyE9+XdHHn(DuuaLT1!5~)gXpMdo7SI5J`+D;5<(2yapUJt+I8FQ{&M-6 zLV;3s$&Cc4w*T&XLSLyey;|2lr^`*`UhD33n?p;&Jl^*Yov}W>9(owNUb3U^jT=0N zXIa(p=T8M+HfY@N!9M*DR?H^=8iWAlv^VBQ|vHNXWWF{%{$?eiHqj$$GTo-u7MlS+B4qY!YgUigSk{*GBCl)GW}}>XUz=&0ip5DQ(;yXfPRE zS{I>up)}N$bYl>rCLtSV$hV)cJ|n)9N^tn8@KaN72`pp@xmCWREN=TwX_rG%#RF1o zwvuedc}S)j!@ZMJuMB%y?o zD!@^6oe?`A1&|Q5B*+O-du>Q*NFftc2`W}@q4GL6IaA}D1g{D5Vuyr?pa%kkSaN2& z*`hQpqOyAs#4##0=zd)1e+f$}QAH0;b6Q`_@EwWmdOLG&z3EvDy6?(#gSwL2 zl%kZ1n}>Z`Z#m9gFDp}%tWlOCL29YNFc2j)n0yuOw%t43N}17&-#4vOUJF)Jdj#YX zY7#|=5|)w+qs*Dt+sO@X_wb=HW20J^oWInnb(VQvg)^jVDML5xq}3T&)KdMNO4XAe z51Vf6jxS%IKmUIpy8j^Ey`R6tDdy=E{l_H)t;D|H4`SDuUCEgN0V-nSm~#qdKZNKN zDQia|G5QOME7hgs+RQ6sl$HunE741U*4SuatWj=2B*JEtVUZ-ayj;9MWV+jK27!JK zjky8=3)!j^IBt3+)jBUka*eReH)()~3l~J%4nuA2l+wCf7oQ)tyJ6V8EY}p1D69l6 zxs(b_{rz?e#i!}mQngxgy^XfN1oEue*7K3jgBrTLt1_=>qUA$j2Ve@%e zy;s7C)_jddt8ddnE&lppJc@K#wCi_Wuc75TZI_U}FXQIW{r3~h4!Jg`w6Jr`+hqwM=6I6Gt_s;^#c-yXI()Rbvn0&xM3xyH`)zk7H0xF3J| zmIbO>sBw9BxW9$cfTa>2-n=^cb197gA9kCVU|OfWl}_$+1%P@#cBST*^JR&()%^8* z(MZbB{m$NveR+yYOs#^mQV5VJw4j(m;cC?0N)(E&KJ{8jDO%-*wR6Uq{^GOvKmOPM z(HiFjhj6aY9`9dU!E3m>{>^s(#yMS?pb;VxWfW8rX)Sx%T3Q)O*NiKv_# z4VSzCwA*D#u_>79y7+p_+&Z@_AvB$LAl3i>#U%<^31yUd%QdrC*~B&C8gX4@hHKBr zD4URRT{|h)zSq3CX4%;p_sVtoh)cRgviHyLkME!F|6lLtYn*c)$0+-~nZ{W-fN{bNb9|6YbjH_^6P>V14%ZIdQkx(!=V=LTJa*-am&-N%cJ~D+N}2#D^wk`_ic%KQ+{zYmJT*W9UPsWwwGwOTP2`& z97&I`oshoru#bJLi+kaMsk;-sqiv=6hu4)4ZLG_{YhI}Uk}0|IWgsG0qF+;7_Ef_I z(90^7fdi?{ILRc$m}doCPcDrFjOx}~O%c4Fm6Ti|{Xka593B&YoagCVxu#@HIzDeK zyX#RAyELErWQw^U9qm~SI^IkNF)7I6WU0R(x9ncHprNK5hc(Fr%A`q`>RTl=^>akq zxrYJ0(}HsL>a?i&8yhzai_Yi%y#fjzVMrE3{zlULG>P-N{4z!bB6`#4n&S~?Lt4*Z zA?)$JQ{o$z=^;^9W0&W>!<($Q_cDyu>hD0-t4L(puC|(V5S81#5(HJ+V{MP0$y{#t zr$rmprU6uOqEs}+G1Xw$lxJMq_4jG3cDk~wmN*{ut|{U+=FOdKZ4pDTZwDw)2&$i> zU|4b!DDUz_x2KgSc5ZJu!scvu_q~U%O-Jmkw_K{($R5gc`d$Sf2meJRyyz#LCp@pH*Y1!iv`3bNDn|c4)llR>cqf z$4FT%sIS2rSHI8_g}X02fXW_W;6>9mW}G*G5Tu@YA$sB>`z42EFBBBBhaS`;8m!8i$iSeYx*O-|X zUrXZVxzHFwO!^yrYTbqtGBRkI;;;xF+r&K_*4Zype0y}-9{Aqze$?$h_FR#?GqYVHWm5+Jh;6DpOCUM5p*9Z0 z^h6&iFH~GSO^ccxQj(7SrJ5yG@#B-i$f7v!ILIyw_xUvKj4JSk0n$j&+@@>VEYTxH z9-J3j#er?gv8Z6ABiBcEl=^1;YKvsvutfzrnG{6_TB-oTapt^eIU zsrT?#;@{nXDOx`L9ke?D)S66D8iq&=CcFUsBplO^Zai23eXI(VLl2j62!FSKFT83n zv#ewo6l`oUebjB==Q8PcLu~qQYZFb_^e+zWQEjDHHgA9m@>Chl(#z!- zLmpUv=x9_LOpodpIIXGoCtj!nb9d*@#zBo1MiD0kndyRA1)wOfcKcHpJ;xuCTuR$b z+A!q^^Pu^y$Xo4pVR7uz$>ldP@=2>mEtagr{LKVo*O~H|$IYMp#3e^Aj;0DILG{ch z5#F1&!no7sxAu=aiipnGPYGuH{)G~elTv|%=Aq5Ot?u^eR%Q#7jL*dBVM){QvE{jw zTus0HBIXznn<#m-tOqKV-yYn+51Z1AM`3zVzVv3)VJ-nXh~`r}+SAUMNYN$Ws03vT z;oNAma~vDHoBR54=wnSDQ^zir_ZNSS0tqXs{BkoL>X;fg&&EGnX+!?+N)6a8NRRna zT&5vZEA+P_~BGp66M5@U>txN+;(_%+w3|asQR4c z`fS&{QVl01C3MtB2R&`R!7oh2L}8)K1f{}X0h-Js)PDp&$@;0OL18&9Vj91p6t6dL zdibKmytW^dJf@k**?6s1?iQ}$79-U+o)Vpw=a0gw=?Aq7Ok*vC_{!1(|LCk2b(I*dTsYew~YkPmn;2?u_IlH$Ff8_F%JhW&eo!qsJ zBa|Wx0GxndN`27VSxuqbI!LqcxnHt%$(|Q`BwFX#Ra#w;9tBd8@-|+!*Ll>!T3aiJ zVmJVcg1vkRe9z`S6&NL05mBMX^~LzbOF-6V-1@)avgh)4L5>oQUM~e__A?W0wKb61W;dNrS6;2OyHAT!yEo0d@Cu^7F-o87V2jClNk<{sG@ak#RkA;85wcmE4 zF1AFDa7$ob4~j_PnXwOY?Xd+@|D;VN1`(vvtcsMF`Mvx%#SZj#wVciob5S zn*6PI8p*%}ua`QN^;ro2w|UlvDfuRGT&L|qo?MC}`U+h!gl9ktHzqX}OI=9q{B0|H zX}%e7{sb`&5}`2$;uzCjHxQ(_@zg``xWFHx$_ZrtGEoB8?m__8?XOe%*_3p^mO@Vs z?Bd%Zz2lm9_N=PHGxNyr{WN9|I|WfyfAKPvt2h zZNqJMA>U1?c{tCVW^PERB;=NKnudY2n)-}v7yRDzK^-pR9LlNoh@-`Vlc@%C2Nlb1 z0urg#1z;>pNIz6SiuFP?xm>+DG#F+^%Z8UoXnP^V3bSe0ETB!J1;#^7p`20Ra*PJ@ zYTf5wuRzBnPSu&y43BH6dtcZ@UMhnL+&KH-aal)|!)3yM`1&xxKbQsm_d<2OR{8fI z{g^mjvDTwB11-8ktarg|RU3bX!_L(G%I2RAO7TRB-nv#ZB&Vgid3)A^PJUth?1qyj1B7)HCM@gs2IE0%dU`!ygH9$V^=4zh@&Rm%u9*yS;KBHx7bYQ2yL&9aOG zBJcdEyFo~)X(9M%;IFukI?S}Ic?cHUy-y{S^@kWJ6~BCJ@AM@GUZ?|Ti^s*uL^cta zS|d9ORI~T{2g#(I=#3zrd9Nzs@8!(@OjG!>UU`YFCHsiEfmgHyjFqSuH|JaQjJp}Y z+y13FImbd6i+U#CRpEb-+o6AgG3Bi7WW$?B#;o>kB<%eJsmrZJ9Q_>o3Y2ML6Oe!i@M=>-BJqPW)|o7 zIY~SxH^Jg~%ux+^(R=IS2KK-qk<9HsV*krw!>495`V(V!3fyIu*GIpzG~YO_)ZbD< z?9eTAN8%F2bw%Kc7x`rYek2xm1dbl7T?)0}XWj%~Xb*boe}3s{d49rXsqYCpMQCRH zNl|Pc*KT}WEDQ^D(oxUhVkJ=p0pVt=KRnYKi#on0edc}5j)}eV1O3S$d)y4ss6q;e zJK%jRk~^74wYZ@$x7qJ;_}M-3iwm41wA-lwmV3TgdTI+y#($87ro|N5aXJWSKf%b6 zR*<}K!;CRNpDgqA@zILJ+Bez>OYJI2;PFC=w}=$k6KZO!3UmU*cJC z`{mS$bXkoUDdM$f^ET(OnIR;4y8o^TXwiFt4&W~idP)N;yJz?DZd{E}YhJ&x*?0eD z#ejHCds8Vopg#gbvzkzn)>KKh{uUQB8{xCs;cMM!lR4zIu=*EJcp27i?6B=oM^Ukw zV;B0S;jru4&n!61Mcq(W_QAqjMD`FIKePVEjXp81e0OJ!vuh=cq-7vXs@k$0EsA7b zYM400hVf%h$m3!WK#xE?kL|g*1b+W4Qp$x7+7&{Ye>cc`RUk*UpNJbJ-hb!e=4K`1 z$Vtvsyu%VubDP5 zvTq?z&;#=zSA3nMHs&Nm;g!6r37ZRu<~;Z*@zvH9xq(nS8E&o*lYWYp7#Axj`E}gn zv#)qwVQ@)@;s0&nFNQf$?DNK&Pj$(9t$0)udo$X*e5`UGeVX~5ZmDj|tUe%Us^Q-7)8yqOb?b@@pg zW^vy!q!Iq@U36=}t9cpnPF~Rstw5i@we^P22HFJ=NayA&JU{!w!cNTRWLH)IhN3Iv zSR366aO>C^bM=A5^D_q`ugI;9*iA4L;a@OrCuob38KM0HX{eFCrPuql1VH;T;Pf=a z>fb*HC6PQ9lpK|YjE+9(ts?vC5GVn6kJIftz_x6v!7QJ+>}@=I&r9bgefQq!>1nX2 zme4d9^}VLKXl=KGYjHLrft;eA#jKBvKa3PWid8hRXkz(GhgVFwkU>4=ZJR2+PJ1ug z9yoP$hJ_p-{QE=nez3*UsiGPSg>%Pme#!7-xQpP;@}Njby50JaQIXHV(K37mVQEb2 z{t9dkNj;x+6QD4ri5(mcs4)B_2XtO#50~lQ_nOKnJ8lZ?Lf`#5x8JiKTCmn&!N@tl z*&p%S1OExxh{hj>hOpxhbGBoTVuF-Drser54Rq5(W+^>){1bdP+U6$PtFvIY8kmZ& zsVt~|Vxujt}8NrV6y+p;NSdUS&=)P?#1y-+pYuydY@2+2*_Z(3F^1D@BJ_wA!8R4C| z8>JjtW4$Gsm-mxVk}s31m`sy^C6mG8$X_Kmjqvb~=;lD%A)@Q4Q8*SwLzTeu{5dY+ z@YLoC8xgDVg~ZBLd=I50wsYlgt=xXVgUYZZYneKZw*(@V6^77^8>h7`NMe`*I z5AAMjpGQBcsFwT86{?ddZIUvu>vWnTy(%{v6~n?lk8KH7{DLDUPyvYi2Zv}%JJ7s(x+H+Sp2){>lQ6rg}Y!#b!AB_~=pb6XEQ!BK4582R|s_Ic5Eje8Wz$knkTy*PK^gsAZf` zkdoJvC#9U6`1Tm7uh+_agkL93g^8fx{JZURKj$_b#Z*5p$lC9Q{*YyL&-G9Z`+<)9 zcEXVsGbg}mQp#ClX>w{CRRxl2!hznVJuw-DUOfArYp z+_mjl+z`r7eYLXDt2~{pF$yF!gNeJ6b&vV8oLBb`-uoSvM!q_EDtAkk+3&qH978*k zwtK>FzQ`FvK$cXc%^siPdfmnb=afg=k1D5tb2dggo4gZhRr;Y{e$r+T&u!6rd&4?I(AQ}r zUH5k(oXhcc>`Nm4^=$|B>Luv>QeEWP{qH5RcUXR<=%xn=<@6v4^g|nFRZ#Czf`4EM zLo*bI-x*!}vx8Pcva^>cbpWA4B z#9YAAI(oev+@rCQwfRZLZGqxI>$)+_nO(TD&0A2Q3^Kzf_B}Z`=u{$?fu^|iHUuek z?T4RA>~fjCzl8kt`ZQW+Jc+gY%n@4p)iH}vgJlwX;VC9qy~OEn)xA#*a-kpOsEGMn zu!cpOb(?1x6Lrc}7D_oK&R07c<<_3Zgpb{q6WByJU8kpfwn_!2!;H%UyRu8@L_VW% zUu3S!XDufphhhshS8DTDU(hN&a+)mtl7~jEb6Y3fy(V8K3oGo7aw!Kk?mKoZHh~cV zAIIpHGkKCSz=snM&r#0vpbi@mOPpMMKB8l@6%cWQaWX*7UFCA3+XN_fW!MZa@|IrH zcPIG`v!tX`A$f(PzQ!Qs2H)=+=BhlCnvltnHAb7XX(kOQoqtKzo)t^u$Eg22U7!VK zTcil00i}rL%61#dn2?|MPb{>m00Rw^a=XS=%tHu^m_N0&vDyLX)rmLwm1WXvu(5gM zRd*Z&cJxC@hIkh++%F|w{0sm2&Dw?oTccLQo*Mu28qP5Y`!rbgG3VGo(XXMX0O%{X zuSYfSZskerU3k+$T!1kmpSZU3TBOGmwz*#Fb&29X=)Z9iEKBQc@?&y^?~ir)U#Pgu zxzx}xm8y!OJ-jV zr@(BktH1NBYUEtJB{o%$P)vi@jjr#l`JHvH3Rs9*=@Ri^cY~pp*Aa*i3U%c9^>?~u zs`7J{OTo)qFz;tSQc-#o&f%G%&*qD@WKO5Q9xepid{@&b@#z@lh*3)(;iT0kwZ^d& z6%gGUzN=GQ-Qp?!1Y3)_eAa9k+u2_XT2{>tWv5@?LX+dv(1zv(fhLuvlNr`4;^D*NKII}3Y>AJ)i)~I+ELu9 zJmszr>bNgo!D9S~fmXvEW>bW9(Xl@@$%$wUPdX0lDCi0BP|$RI52L$8j@9&j+$$}C zBlL$8hq?>0-b}k_ss;TehvteGB|H*H!gOQnuJ(-q1v^+FM=Zs^LL*>%C)C6f<}7qK z3h_R{9Ny?djmJXfWbBgDgyDqyeXCM{FIYx_R`#*`7V~kAg1-N}M2sc?GsK!a= ztwEN2b;FIddJR|B7|061^Lf8-lH+tNX({VCoS(4@_X8g_Hi>u|4p)r5f<23oD^i)= zVf;>ct5F;+TVOs$0ZbJ&erPbvaDq%hxtjZkI#V|-qQ56puY&I)HcL%j5JAm3p_wp?RpVXgCs#M_#-Do^k00}Fj2`D8zv zRT1e$4Sj4KoaOlJWIaGB|;KwZSKhsKbD~O*qtaG99>#460ea+enSb$gMt{i;AeXF3W-x6d7qD+w065Dy- zoNqQ%HZ}8mj7D}%r^L!~ai1_2n}hsJ2L^ZTb5)rSQb7CBcPF9QUk%#otW8BRz4xw& z>rXs%1djr+fu#hmI5#VKo!4T1vG7S58wZe`$^zdH35i!bT^An~-S>tI@JH?_OpvtK zqU)5{ZU&5!Iet?U{WnxmWrN8PAL6L|DosMRlg_U{2P_~&ZnM$5=F{Wq?k?7OPt|%& z_m9_n@LY3%FnyE%?&h&yD2vAQK6~jMW4}3AM=^DpXs#!*{3f!JJ$ zyM8)fAEz>v+fGzNgw>o!NET<@`EGN`-q|C=Y;l{}xP508RP(Dw$REurwSJ++Y=}D$ zb>%C2YpyVqwH)y6hR)!cU1Y(~jMw(&UmZ6!even416w=q%xokU@jf2M+j!9IlZV)X zqN)986M-blqh2jBTiSw#H&S>1vn%dZ>he1<1d%%yw-CFgHYIPXzS6$#^$BXNTTgv{ zNn3iC>ZXJBRM)@>Y&5@qEGCnc!MBzmp_{OO(DV1`3P*$PqWJiYVL>&iv2=Zna)g9q zE%~cX``lxAzx|>6fm##3SN8d|gc(*2|BcQ&B1&DM2lg$Bdq+kNw9#j ziJ~y-aP)N6+B%c>BV*M@ot8c)Ao-oY|5S2=(6#4AhFM9l4VvoH93J*-QHbk5zV%# zI|uJVJd2wOJTDn7o#sf;HMB3^jbmES20o@_g`tyXTO)N$f0G= zot4agr@ctHNCw)C0k6tmqj9JKN)&LkuSDT2a$`q*%|(mvV{J<2WWA8S(8%XX#d{Ow zgzy=`Sn{R*+>DG~aqNHlXRna^VJD3bE_v`>k3v*C&ejmArI)SgxbAFbf4LxK&>BPq z7m(zuqlFK2xkUHg^NIxPQxtQgKexV*$AuTnx! z^;3^cT4o)>?sci$5#oVih_36$65kbchP`IN`bD@m)pFEPRTQpY73ajTn;qVGJ4HIA zQcsBHl;64_NQv2pRM7L@;PcQ6DdfK!{a4VOknA1k?a&GQ6E{krBa;U%QLKVXF^yW% zW04=Y%OlIRQ0dK9`W86LSGN zXf0oAA3!#mr*Er`-NgESu9p61sC(?^EvHKaoMBhY**n@-r+-gm^^8RH_YK&ENW=n{q>P;uY-lAvS9P)`gs% z4}unBCymO=)_c14FANTfY6iBopMWwfQ%CRxrY%JGRyFf-k0kx}G5eFc*hu(+@o4sy zm)a{qdoKR*r5WL7+_irwE{Em&ueP>{Ub}c(Z+GjGR2H$OQn(6_sps6bOlJ2D;>*BD zRl7SY)`QuTvzrUozBh5-F2_7f7BCijw%qk{3bn>GSoL?hThw$WqR0Gt5oR%6*Vt}X zR!&Vr((s)YhNbZ;jRe&A?wPmBngpjCCi|UyOYW#Id}*$qyd*o8x!JL$#E8iXuvT3# z;`Wk7TB}37YUVaEgjjN5E`a&opcs$83s6~hZ<3pCSoSI&ySWYD%&qG+4{S*|OjQ93dUabez#m zQ|KAXmAF667OuX$+us5fC!Z9oK2k%)>Np|pr?b}U0m_zvBQIQxC#}~&xv+K%mzUMr z%n&}Pqh(JWg}4%w*of76d+xDH2j4;>>%RIfs*hj>94 zRGe=l^|qizxP;9!v1zE^cOZ#1LU<{UEVnlK4~5KJ-vSXnZB+JiK5|~nA3co%#8u!l z8Z`>K_f2hTQ1`v@+qbjKJ`O$>PtlX%`|YIM%(1w-ANurMqe+065`VpJ1SsTf;xHs( z>~3p^Ct*UZYzm84#sZ?WAAZ zA_;-NhtWtxA}9XE>UuWY34ej$Wf4jujt=8p9UuqdPCdboQ3z@9nC)PUY{1u;+9Xvx&z+%Kv;xT zy>9U7F$-%8k~mGpTZpR6f4DVt?@(AGu{xdw+l=^i=x#}t2hvRs@Z z{E^|T(3@?x3Y@TynAnH5l>MhptMrCe52GwXU*W-#SAs<2fsXGN^!5X$c&|OsL3X0% zQjdL^^IcFX7Ao-qI7B#ork=qH^32+5-=Sfvqy72ilbhA;z94QklS=*a6sy$e!}C?S zvW2!E-nnAH<#Zlte{Tv3yf*wq#eY$o!(y7pfIkCJ!Rd&w($gT}A;&4cxT zbDuCa!RGMD$l0}i;Hz)^7R4BLU09CSE{3mKGRUj8|6uHJK~l!4U3_@zc!rbgp^Do;YRP8D_BnnYk2?Q-0 zgSe{i7;_C<=BJfVx$_;~6p6`Mh1A7C9L2r24m8)8LlS{~NxJc)3a=Zsb$~Owo34!< zr=uBPv}RjWR$k{x%#c@(FO)%PFnz z@}KHiT%Ht2d8fv?V^B#?%%0Ph|A=VTK5|>%H!>P|Xpw9~1g^SqOw9I4p9G}rH+R0n>SZjqohvzJ*+ZtY~(TIoj7OxOl~;qh%k3>Lq{#Pl;j)>4msr zHfQNJ-Y3P^rcB>6H%6GZ)cU{IW=)w!X-yipDBP4Ah(^(rO+KmsSA;yFJ zZ)&ePGJ81`N`9F2={y^-uxmY6wO-a&IPYuqrnm$nw$rze%o=XY`OY>JQoPqQ)P|92 zwn&(yfnpM(G{bf>Ae|Xb^tCNqr0ue@y*%{GkGWvU5+h}htIzW-a8DvxiPkZOEu9qO zE@6XiKV0&0Y-$H>61so=&brphB42>rttj6HwdHmD9s9SQtCO2GXpx56(OBgFC+IU9 zZju(7gkdUZece9TB9f)lbQLtokEbFzoJu4|UiF+f=egH6Ei!&!DkZ=?L1Md70_?F_ zTAscj#omGr9!Bq`!9W!WNN9yE*>AW){>odvg$LFc!n))mUUXwDq@RTKEkXSeE(+%- z-c&^c=P&v<{cQb?T+gh{9O>@5(%zQ+R?B6Qs}P%KgnghFk*V)$uGH{u-&ye@{LX~x z#r?)RBVBZt&M8H;H|)2#B$zwxRk(>cBQ^QmYE zWA-aC)Z&(Y|GciX%U?GCKDwD(QD86V!@&`T*!qH+p%eh3{z?9*ck2@4YaL?xY#*Cd zBfHA!l3nHKHD9Uz`g@-vITy zgsW-OoUVgZ#A)?=Q?IkL1MjUczRT+9Du@_e65V@{m1aSj9~&qGsm%1zIj1DnMQE=Hp?&>zrlJ_lZK_NbP+#Md!+d2UH^s|I4KoJ^p%QtW zLompryp`co?|$MH)`{=$h+uKQD7tt`&g2$75?9b;i0$C)q-8OX^FzCc%^q{N)la7jZMdW0p7^4Y|#42eUpz~ms$#WTi2Lr@-vdC@CZ<+BK7i? z$lFRd^F{N@gWzC0kuK!{L6WYZK1xFn#{5Z2XOe~U4r_&{qo~`cGY~^bSDdv|$UIU2 z>OsIVSCwA4Of7~xww>nuBTGceN$Ii0wnnpjxrO{3zTgs;K zT66f9_|Ex{lV|ElZ0hQ6W0e+Vo9e)u(5lZ#$BNJ%?kwC>9P?TcDe2 zGNj64OGMnn+_HxBoMYih0g1?mdQqHZEV%su4Q@TA-Q)3$=RG}kul@$Amph3G3}lQ& zjrg5irOclFv$Odaq2(c~iM@|hM=F;UT)Ety3w2(p5;F&3;pf2^lRFl9&o)!i&~k|- z6y>Y!w&Tf@3SThU{VQbH@XX#DXE|tjtgJj8wH_xDo)&8+!Ul$6wM-~w1^dKqcK5om z>2{xRJ{&T&!s96B7_gr?bwkmB7!eoT5VHT}4N|B&W$kV3d_c}cO+YF}g~HZ4!u;R2 z;6vw&Zzqf+jxd|xqakk|P>NeFL?3K6VjptO6nG5320oI&J#Y_#(3+tvR$1LUT(u+S zo#HINd-KGd7qZ9^(fwRg!9v<%#q+jPB!7b%%9E|X$a+m11gjU&7BMV|u4=LY6e{>u z$wC1$Ew(*p@3}&i+oKUJl6S6<#~P;(Yx_Pi)3hL+$7Dwurk>{3H44oo8|U;7@83zA zsLfX`%&f;agL8YwS{YgQ!XN1i?NWX9w=8KS>@fdQ8W+j9Jp@D|UCU?OI#+VK>y=<~ z1U^LaM4B&y9%!QxJDSP&}qCn(Nb&SY=5 z%YVh-2gR;mqa!Nt+*oAxXB_(t5Kra>ggRyg4UpG|<9mp!4-!?2KHv$xn2os2AntkB zh;VG7-J=`48gOo0pu7@t^uPU2DaI~9=ZVIhAU#=(KNZ zDw-#SO+%M288O85@rW!Kce=F~(p35^$`87eFPwlY$b2)U`Th0Sf2cZ|~FMu_d+i5v3&;KqJl@9wUY`m$#l1Oq{^L`PD!*z9*cSr#-BZ}8&pj?Tz zZvJYe1s|yZ2C(+?95TE`bz|YbP;7x}EGeVA68;!M<9U1Ho<8^v2mF&k0FkdhH2f*8 z=9s6r;^zE&V zxiCHtwP({UNafb>W6O4^gCn#)>P~YW2wK5P1voJ|PANCkx4|*l+m@XE+B%odxt_fu z-=tNY9v}bgs{V7alrX@=qLOlW6YUMLO!ERqr*Zwg`Ewsr7r1>Ak^PGn^-Q`{rUq8- z3pKr6Pd-i69h+j9ejCd{d190%=6im2w)^DPwvzppK9zoQQSYSm(&>{*D=2TmR-J9pH7!3ji<$VLgDABa#xLjYC7|7b@Ly1uq% zmqx)&=sOw0n>X6M4(uM|1C;e00ZsraJyUIF02rIaEusvU#)ou3h3DwsOO72b=V|B~ zt$pehO!jv5uIaiP@VBkYizBtShmGJ<+uvMq^wOnA3pm|GsC1j`LqHJv=o<5bO<{X^BFsa z%*K!&37LOYvn01>AS6j)$J(JHUtJRun9HQIX}IBLQIg{lmCyJJh3MyVpd!Wn8tp?e zx8_)r82po@5nm28MI`&K)V(pW=irK36-`^z?iGoE1!&{XOzqA{-uZC8R7iM&i_)^Z zI%&IZ3NrAWIi%cas`Bb(o(mB6jSBjOqiyDCzDeD*!#assRi}Ff#ghbg3~bln?%X*I zexo(oM#l7 z5A8!%Tj`jW4qhP(H@C8|62rYGWpu9$ak%5oqLwwYt2cBT-AHsx@vW%~mm-b^)J z1frj?Qgy${)wlhh7l4a)*oVp8lz)cBFHvJ3!Xb2J8BohH?eGhnn^&J%IsrZ(FTe!c z$3Mu>%5u;3DvFdSKiUc2B|*t~rFPwLUZ*S#1!T6AE@xc@e>*$(-j#5ZJ2Nb%KOwA=1MQ60y>V^wBV+PW-$`!`vo zt_^Gs1A`T@%fmdczeSuXj|@zv^4*fE%)0f7a!#H4EsO?#qkIBckXQX#+bPDx}PmuqVk_DjJ3B_=DQ;tsGQ{U)bYG`J$KsWN-uPo ziL4ma$u9)chiFJrcya2JZuog;XLWBX6khmU9Nk>pKX+-f^(MEMfBSyH7bT)Uy`+<~ zHXPYIL_F};YL-|>EStenifMrDaTXY}l9{GICL(E-Z^FDNYE&5EQ$T^Ni;JSsZfX{=V>9IyhG@aSYw$r%Xr^0=ar1euEfcX zHAPBfnSi9f?eFps^7ap!(F9>x!N1iyF%JRwx#-_@FU0EZ-t=a3|M@cA`wPD}D0rjp~)3>UU?0}p7N$R&I zPwh*5Eehybns1KfLZ4s!xH_L+H(~UpB_|&JYJ27vpK&4dwUL?V<9#08%lFt$BJ$n- z^V8s9m(yn7^r5NHyhaNzIBG%lo#8(m_Ux^lyEIrM&mItMt{R zYYcz2sadHtubG%wbS;1X1|XL3$Vt|#%fe@BEbe!1NiX>7T-@<5KkTX7Y3yWsshvoO z>RAdgY`OJ~wnnSu>Kvy)Zo7^+=ChB$W)puOOU+#!zL5vD*TtdFv4D)~K#414q7)A9 zPG|KA4v~}rTB$|R(O_mM1Y^?E#wCqJS=A|svKUSKcYNbK=>qF@GAt1HI&VyR4ppu* zW5{uC2*Dlyw|AXCGY0YR-{(_QlO40?W-Z3c1BfD+8g zp`T!{QGw6Nu>z3_A9`IC?>u)a6p>F$Lns**Z!_sskoSKc`*O>X*F&saUaBW6X1f`p z9&Q)-$f5garrc}C%vPD%`J|$%J>W55%Fh9Fqf>5q=8{)uJmKBk4j|un*viw zUcpyY!9&0qV>%(nH?Im0uzp^f6W)F{c$SncTf6LG03vST57A3H)~D6BVB5Wd`e?rI6N4>{6lE2i|Klzy5HZMF*f|K@BAZ&gAfC`R2q`-A=?o|O#!*1Gf`l{ zkAuXT6+M4czV!GYxQ*xuBtuGp>f#;2S##~81H0tqAPK!hiJ_zS~_WZfYSPV zZ9fCs%=ES2F%*8bhL|Q3>>9CDeNvXcrMl1Guf5l9?H+HrcA#Nz4*l4v9_^Au#)<6tX_ z$4F_S0KlxD7dp{P@QuTu62#T><>oHyH6~|8WqCh6jmA;0n?lRvTho0h=!WeOvEjX& zUT@vAe}-;{2Mftw(Y!|<_M}et|1oUo5XBF>v|-LI4kDKgKuf#Fd-K~1ff3n$eL>m` zH8sAiE5!3R>jw;~@(;;OJ*(mAvGl%Sw>1KS7Z*}5AN<$Q_{LS@^S8~bVi4l*txnd` z-DTnvo@F?-yK3^Jv1fXWM*SQRkiXX^Ba!wTLgJ28lY(+;ZZ}hmJL1i2ftKAQLE%d#G{yC{LKW9 zuHQUe8WSNW-{$iFF_Ae-0-QQg-B;<<^~R7h3yye(e}0|eXTiIhKfOD}T7bi{#0xj< z`AYEOQM^P>;>t^p7p9hDm$Nuk#YMDJ(Sn$TTQLxE3>qZDcLU5@Qe~j1ZTUj`8Yk$d^uxCXmRR$O z@Cw=3Op8tgC6)$g`ov#ksMR1h{Ti+bYW%)%6EnfA`GX@XBX># z$5an;{GfaKdn<*v)|QK)Z%+e2JZCAdElRbbi&U~%BUj-L=ReIrd{>&>&3F~6ADId8 zwb;L?DFdAz*oAcW21nW(o8ZT# z=jxoI>(ZEHKe&wqiWZ1#x9BHSB;?Jvj4urV=;I}>!af(OEL$+ENl|6`T?p*|0GB{$ zzx&^%Ii_4!wLxQMFa#({0g|{-grqAywIW1?6rl@IBta4&Fs5g^tGlX>$&;DC*?uow z=zEawi9wX=o%YbU!IYD#4XCb&4J4KFT=J>5)ZP9n)D-7W#E5vazWmVOk4pUp>6VOI zpFgGRN6`zwX!KY~Y|no%ZWOd9MmtTl7o)K!VkH2o%K+U=(J^2>7i zvyc|J2$6k=VT%Z)2>R(g%bi~z!u%(sBJ=^cSVt z<+HXs<#qyA*IQCuPP5oP6S=0lmRs^)q*@#9*LBs??Rb1mf_+@$=2HsCW8XVdt7D>6 zRzIg{ylb^BFCYERH%tu{cDZ>w}T1AA4rZ zDKzZX<V>3k;nL!haR)$I)-8s>fHhk#7?TK+e@~?fbuV zV72K+rH5^P3G2@#MpQ~bZ8^1)NjN0ATpx*_xjfXg2qC-OQ62AuyVc5(*$JUZcW!r6 z%E{+Pg0REu0)bl~l@X1$-^ ziKf+zZPVReN+Z$}%8b}a+0_0u_HQ{?YOTc2r98D z6kq)(2>+z?)Uv@&n!{V7p+wew7jvm4j{74rb3B*!Sh7&CV`&P@UD(FN~ z15>VvlpOjS-Am@Rl?_E76E(utaw~H#DWxXluzU4aySopmTwfl4E=wqB6@%MNuY@Ea zg-}MwD)fMCw(AQ+|LX0pm89B4MvghIr=m_ix1&`ze6dwfm6D31{G~35JK-d zrR>n}g|b=$6aj(~Cnz=LvStvZfcSY?dZiGla?@J)nt+?t^5SDERV!IaDWxE(+{kEm zyB}L?r}JaXt>#u+Zq4t$q zD#WSphORFll~7KTPz-{N6j#5jF?@UfCZrhsR#AYkP-?94%gg+7y#VCR`!$BkWoa#> z92Xy)?gpclmfLPiZYp>N!-xs7RHSRl`TdgQMwXcC0K@bf?x17%B zD|dRze1WzqGZ3>cUEZtZg{q(O zCLH6oL2O{igdC*F5L3gYm@Eay#Mx|0L1K>n%hQ*6+}|7Baf`7k)HkigZ9SJ(NnC_{ zm0=+SY`YL+iW^F>Zq(Y=nrkUWbBUfqR7RrM7kGqRw3chRwDK~~pJU@;&n?6`#iG8N z%NP*>ULj14mr`@~r^Y+oS*53v$aF#oD>add{(9AJR0?^k&IsjF9-8iskT^K&KtCA=RQEqgp8=e7L7(Q+PV9b zb7`~V4K^T>W%)^nZvYV>CGS(bN;7HsTH+kmhb{fRY82-VjMKU+H7P@t1j`;!LgA9A zKyG}Zbv5c;$Ys6;*C|JtslKF;zC3qi_4pm)(|rBXI|KPSoPX|icgiWjmc+=@*V{U) zDvda``J*20B5Lan#=WW#3LVPJM-hLq!Uaer&4MjRMPyKS@%ji5``vqVdf7fJGa+oW zO5K{E66RAW9>iGuQ%g_Kn~Iu~>i4_2exc{3JN(+}+q8ZH7L~IUin<-Cp|;Qj+Wjbm zZm}h}Cco6;q{7;A1qYo$N>pk}Q7KiiE2U`LbIvUnt#<{=7OsT4VTolf&66~|`I^Bf zYTL7*`&RZPXQ4!ClnX#B5`nu3mam&wsGKJXbpoLVu6?d8$6p$+{V*-d*)J#8JAej> zL-Vj^-7xI@m5sk`g5*=CE4Laxc=ja zn;WM%uW9?t@eIOgRTbjA&8FWgspILw^j)h<%MVIwvTqt@iAjj5A9pXOKa_@je=9h& z<_omV|ACtvZvO4){<_uAc*qDtIDa(sQtKMFFC@nXF>jt*(^jhf*4XCG6Q@n>Ejun5 z8(Y>RsZq&8E~>7-h>oRpLTjnt=zdH%VAV#Tzy5-1M54x!Q{x%|0+d|HVH=E5wNAx9 z%8wdG4c{u|hR<9TBg zfCntK`c>-thI7fk?|1J|P|eZyyk6GmuZLU$pF(V+1*no?tEgMf;hKig?~b>RC*N`b z$qcEY0il|{tL2KIYL*mQ!A%%J005#J?vOAih(1WM5_JfTB=+Md<+~6B%LVO0EC%## zA|6anWVG7t?mxt3-A@166spP!)tl+7?fg^PUi2ti@mhbKnpiJ$(BW`PcGN9`U>Ru9 zWes!c5C5GR9M@OEeT?ypTp_kjj^4)tS1B?sXW(KS*Sa-1mhFPlfJj2#N;OhXG*G+asUq;V-;WIs~EuwEM|X>NsxX)8X-lxZZa=@H0S({e49YplU4#Sy}FhHOCG z=4{vu6+gC^a`+bDC59Z=qEvCi&E@IZF&Z4?ucnXar^eGChuyg(O6fwszM>k$}U;R2vZ=vteGs>4)mT9{(C; z4_Qd;QKM2WrNotm;_K-YS^;Z>>KX{lj8&ij1`D#U&^KmIQ3$G_m2OHZCLsu^tTRJ4?r3-Kt{b%WLbZz4BfiD{Ey-icOKo#&&*4;SK8W44d%e?; z>o5N$)k4yWtnB^`nWtPn#r$3>NumSLOid^YHD#^^Sg=s|NZp+pf1TIB)B#S?4Gk{g z^vB_N)Q8u_FIaSUb4zp%Ta3YHUxQEjpojpf?fUmMKIHJMb(c#Hb0pG2PC|k)T1uN! zV5ri#T7fy_N?J`y6AG<6+)mfVfCWrHimtCYDs+N#^Rc$1r@hX%ogEuVO@MXpb|3Qm zrJ<1Ehi+eEo3D>4xBj^AN2etDHHXApb-%v>#=KROOw1CcP^k!r(Wl&MRhSxS?yWvd z`;XUoj(HfBb5jT*7mnxEjS{i*@yfL!N#?q2rv#-{!C(rv!i^cchwB=r3IZ_KZ9g2X z>1&aRMaoO6O>$*WD2$*Kf>**0Q!lLRJ2hWZ+M>`9nHXekt%8f``sLw7_cz9B@TLhV zNP^VTNm0b@=t^4Gb*+$NjR$Q6c^_t=H*1LNmcM@W=Ki=lt&vb|eto_M(wt+JKqL^Q zmR6q5t94>O4Xu$(F*RQ*YAqDC7Jy4zV(hIpQk2Fd2)R5zTtSf*z)*p4Sv;ybnn6jh zeSf(w%T|Wo_~m?w=iPAIK+hp|hW7j8Ag7mQ(}W!Pnpav5%jt2xaP{Zq^mcrE*wNSN*9+gsDw`_4TtA;tXmIG(S|b)7HQ^L1N) z_2KL9Kin8oe)tTPIk)`b%{?f}DdAE+UskGYrP>ciP_%6&`1KrPlba^)rMRrg*JhQx z%op3KT52h(=6UvT9E(=c+OC2KnN7~2#F|T|1xUFhzdc`K+>q+%q-bsR+niGcGRl1O z`ewhgr^^gN&N=s;{p;`FJ-s{+N`_DV7<-FW}{ z{%|;S+J1ic=$myK6p z#d~Qz7~(d(y88-QoGxc)nE;rPDFdmz&E9(ws&kG6FsZ_#fk1sLT;CF2S41m46&6uvK;@US6kz+E?mAGa5nZ4E&zd3Ahr^rSN+sv( zpSX}VrXSy>lEd|<7C)2QkB4`n{)`md^fyXjF6VIh6QSw)F~{Gv_#)L5BLg<;Zd%H5 z{)6dsH+(STZO$*M7KB&8jVUr{(Y*!;kTQ{El-0ZvZgP5xv98N!fBuJl*xTWCZI@P0 ztr_N^q-iLmJ=CzZat01i_mGzC{~+93p+`WKUVhBsKM4Is$VpIKJ)EC^G`I*<8E-OZ zLZyvE?okU;swITj$Z0FtKU+VrfwT4QC z?OH=a@T~}bzqFc_BuS#SDz#}Xr#usqwl~aG@p_zY!+eQ3X?G7o*Rp?r#&Yzy7(DR0AuS>}Xn6Db-X@;GcK>(cIjHSl6hG zL9C@8?{B~QHs=`5S7R%;m}4$=OIwYnN2719iMRRBRvcomQWQjBcy?WdIwVgaJ{jW# z?n?|TfB^OQHl^a%kJOwy4$3-8C!naiK@f0^C09;yI3D6$1v&!R9bc2( zwVbim^?Hus&k{Zg@j)2ZV2Po!_b3K2d|#QGkVHgaxy6)c)9;xi08q2o6!6ow{;u-P zINmZZasI&$Z+17o;ar5wr4rOd3XQ^X^#Wz#3R81WO>0ycmj6_6Ci@lA{q^#v60W@zYS^PCpKy8poc-_Z@GGFP zm05L@>b|Dhp=ho@>ft7(61H=VC#fj-YxTkHZ*nUoo|U}?X}CQh6%vZnYtGWSy%f!# zeivf1&Jf+aytKpXuTzt!hcD2gv{oo(G)d9L^-4-gHRS8x>;5(9L-SWu*64%QT68Wa zkmA^|s(vr3E6c~+J~eu%@tou9!~6ff9|o*hPxtHcDX#xb6NUBn$XBj1Y)o8BJF%d~ z1J=MU8iVE!45*6H$~j5D;@u`W7VB)J?bd!r38@NqGPOAOJ~3K~%iv z^ZWzJKe_%j3fItVfv}!r`7fXZ(IIV7>Y&X&XJ3=F)b;TS*Q|@LQlu%nlJz)}?zX2t5pQHiMu8ao zvbB8X;$v3Q!gv^vC@vSsPXtxa!S<7MLkWR%kPvcfF=i4rmz?8?jH?;i@>uJILEGVN zsZGg=icIST6%g!zFtt;he{P$v%YzR;jW^$*beGQ$+fxUFN9^PoA;P9@*KFcV@Dvl5gDn?n48M20w;fY%B4!( zGup~Zp%u~sUI8f6D5Xj%Kt&-{YgdIhFW1x}sg5f^ZPW@^&($lHw1QS*sjZZ?_(i)> z+nePw0|x^G~TtZEcC6t^d0ONWgbdF0@dcx+FJnrtl#m;W?f-J~( zZu(%|5jeFrmr}GDA!Ci9wFiCt8$Es}#6+4%Iv+~eUbd%y1m5)ijWWVnEd-3U3XUSQ}4=_{q+uTP(I zF1Ft*Blm~BQd-f>HRljpy(&Ed4KYPPM@m5zs+(F>etzkCt(7@F{_JBO_V@eg#&tcB z_Ny1x>fR~k5EUt5wUVfaBsUq>Er%QnAPKTi5i}`H)Ic->V~kNMr6pEwEXJKfMy`-@ z(5lzApVwJSO~UlUL?i)PW5~H^Ews|X`;dYFt+WYTub5VRp+!j z_C|#e&zJM&*HRIItT45Sbz2HAhuyKawzZ^DUDw=C{mt$8`OC>~+sphs&ks^|AQ{`{ z!@$?zd243Wv_VyLHV@0wSdKW}K#}^C3T80t&jF z_PG+Ey7+>EZznwsoloJPfBd7-?(hEQHy^&5=CvR=XeE_)+zxiK{CHkdg;Z*1 z)X=%p`C3Yhg|F*u1z1fNAA~ecsq1>~jTBNL+byiA#G8InQY(pTF4n4+`QiB*!YY}a zG5f*IIn)?OX9dE`7N6JhczS_G`*C>l`mp)5tbW&t(>!;^RD|c{`gYoL!GHMikBbjC zyTiNV&1GFAw<@KRK%Nq5*B^GupmXBo^J7jyxP3PoYU9h7E#*!2SW`V^Xekpw@4B30 zD>6k76bQ%|6SMpD^JnLRVBU}KrenXQZrPTGq{o9zC-td-c2KF6oD)hd0p;rRKtz(D z8QCoLdnBi{1C&h-Xj)2@NSoo664G^J%x8>ijF-rprO?>}4n~<;N^DIFltPNmKp{qH zwm4rd{_aLg=cdCnKmSta=PLMGHZtE?bKlO7$$!jgh~nGv)qQnuoxLc2Vxdrp;J=W2 zor=^(_5G-*CMV+jQadFi#`7uBAVh~ybA*vq4b+LX45x+<-;97}5Zu@9Pjx}Y3Ht4Ky@EL_W$wANC+KcBo$yu*Xlb&V&;PulKs zlbyKJ;~w);SL~LB+QrSCo)CSMjLXb`G!51lyLW7j9L#IOY42;L z8vmcL+$(xz_p$7{v{me(jFkMM^{sUGwR|#Wka!QUs|}sCWPSVlf{T5wujN4jS4c(1uv~IEK_bo#TbK$1kO{-V!IsxMJyv#4Od)*-y9Ch@M+VnNcz9WtsduANSILyik$(YFO2+KAX4O2IcF&3_cq%z&!#diu) z-ae;7THcGQH3rwe13N(SLWQ&@WhAyot~&;m(i*ov?iCNW|6|oToPUvg(7S1k3#lHf z%wb^>3EJWKKEa{Txf^eCEp>g#Rg|VtcqCD_&*$ss%eh_WR-iKmunA)&Qfy^g=2N;Z z{qeVegH+T__fmEhc0!V4-3sdC-4dU|^Mds_?C;9uBbEnfT_dOZfyyR}7leqJr2rsB zqT(A8y=XCB|D^S3`d>-6Z`W8`%Y|C{sP-M_uw6eZ$4-4$8j)H%YbDa@<(ify#@}zN zK0O=*e_h&^$_v51RaxTL51s8XZ$Bh|V%}8-f}Zq!UAJ)k)UvZqHpJvh;SFqusIaBt zPc6^YFNG7fk!ojq&Rm|KgDTe2Uq%cJQAt*2Lj0}`l{8~+>-C4}@TRjp=0&mxjD8cY zOJ*D;ix9iG#Y1<%v>|kjHz~7FloQv|kT)&`q+m`^D{z1kg=mOioM^G7jTKW$9#hi2 z1B_S`A+*-Q;;lPqF|OBGu4{^kmEaZZt~Yu^m<0DEjIyQ`mobg~TM`!a0J2NVTrya5 zLn-HVYc;6hD23|#BRAfjf0?Nha@eb}!W(S>0_$OuboOV3BINS9W9wtwP_X=v>sqAo@!8E@pGQtkp$^gZ0OA*u^Utwx(TZqecdOrX3PvcF$8{e4w4|yr;^X~;{ zC;=)fHkwFIcjr$YeeDiPTQzhO8-i|?%I1rY-nTqsC`1l;FhZl9^72%{S8#y6(Kr75 zLlc_RzA{UDK)DYu|GtGsrN38_rvcZ?V<o?GZO1!H1E8&JL2;{)w+l3bb|NtfwW}(n@DM|gdM8N7)qs#}Af{vsC_R=gBFP$2 z;IGZ`FEY%_mD~xAA1q3_ole>3&fE$?+jil@9Vq6s6;IVnj95xGqB-jl17NXZr_>HA zgJek32cP4jN7HF)RgeVTsBz|Y!P+?A5rEPXV-i9)ENy#^_0+_m)jjKXYxpq+Pd=6y z5GoZf6)7!(|5(9rIM?-}LLWuGIr9;I^~ z>9~rLvNF)9vfEqw*Q8$gC5V!_K50mzlnS#R58L%;`sI(qVJdZw=?ePB4L8bMh4Ljq zO#xk_v1_g9Zr?%IP}G)6mWqv?IFv`o5Zfx0G4|lk=k57Xzxqm2PRs9{IS{$LagME~ z*zd_{QXCpszb-{q*NupqfNraGo!eeu6FH|9?cnxr!?G|+AFj-~n~vIz+Ko~|Vq|ny zOWRw&rP`{1!hQ`cOLMUOL5MXM5Cq!g7&q@Tr6#!;w~u-#B&|TfP&jnmO=r4T*Hr4Z zRcAE``%>0UYmy8|uIoz_&*jBxAyL!}%&5@hSe{SM%F)z~L)USu*T#)&%hBjvvm(VS z0?n5fEX{Sw_1*P6nC22%?ou6*PF|FnC%lWc=u{xK^Sc3PP z7+p++0J*LOROf6#KCiyiCXuFT$O+cf*DADjMvLe3YC5+c2W&{CDJT*-0T@k?F_gkA zv{aJ#WnM+EhJM0IvtJ8vt(*&L6s-{{O+u$ySrGfA4EAF$qm?ABGz=o<<+#5YtvO5w zH=1#<*ZJgQ-db{2Pewj3{-@{Dt3luHj=AKpg<%+!lCO??0@0eh1iSd4v`m$mp?3pF zdASB3{ELr$k3PY>H&dv2KkclsDaOagRcbX&jMZ*2fBfZi7rVRN{&b$#_0o4!%H`NQ z%q@jgN|dPgJvaq1C4pKhRVpxA2HTihgT`twFmI=a>&vgd{rYB5rm|1#by+k*$~lJ3 z$nnk%*NQPO*H9#&B+gBcaJ?~c^(C=EGD>VY$Rc;cc(Xg2-aRfUSNi(x>#vUYo$Q=* z;(z)drq^%2Bk0yO-o3uRzrCxaq#}Y!NKrY={Wy)| zo!`>B&Vn#=$}tM2%k>)8I86Pt@8|Q=>GHB}Ua7&Dak>0b+bos1&IO5$RLT3AE08jS z)us{49H~h+9o`JxA%!fA5E6tSXrR=t8%C)rKw~Z-{{Pfl0~FgiJM==jQW`>|7OUSX zkn4u9JuNSfy2Ox&d9nwm-W>0LQ+!a{N++wZw3b`HZXCUAtHdTl~v2FKA{3B?cwmYAHS-kY6>|g zA*`9k#)Uw(oS^*-{-pcAkjhZrgzo$Oy`A<5+_o3p?U5w22``VWgtRSCE-lp*e-`%W zhHn}6%#vEw?rq~-+mGBHu{IV*p(nF{Q^HGl`rmB#N)30VW@|f%%rTq8J=r~nFuwXr zK&RAZC%ZiSShfIkB;AxAb5PY^HQuA$V{2ptGiVSBh~$Q4w&M-ZkX}w-~CqU zPNc*oND-Y2B#&~u!)CBK+jqmbR~j0iFuN8)i%(V9Wig0u>_4N}G`45PfyafS&RPtDP$SpvV zEk>Xeqi98U)-s-ItpeWwtU_LMrRDkv`BGcc*0uGK@Uz<=rF~s%u7FB+3Paz&irKBt z=bDU=O!P7y|I!VAff5U4teX-FjoaoIs*BP00*)y~RA7fUQr#ed)_vN3%K7(1`)&C` zicz#uPI`O~K$WjK1Sz!Ae!KkMQb*KD_o2J{uK3w>dm3(~*$Ls0EP+C*ghkP^E=$WS z>LryI)TVLG>1QQZq8nlqJVyU89KI*Di{YY-sU>mwnPC=E8+VlExcH}*n&6(eaGpuX zT5|LclojwFKpx1vZ+Vk&QSQ||KWG1BGz+6iPsOj>`bSASQaAJZN0P54bxK?7#u~r4 z>050NtzB|BQPqbJ-vgTM^8YFomHejRKnf+1R(joD(sGf=Lr>c6YO86!WPcXAlXf6X zy#2U6o-fad+mF2d*vff0bo1s(v~iFr(M|ry$=VJ&8s^k z1{#Hsab36Nm%9Aob|3Wqo-;Lws&iILUVjOvf5#BD`91{Yuf8*X?#Ew|-mlBNJpPkZ zM&TfcW%sVcV}*h9A~l)r+Z-S-pP4s5pQX?(pR`bR06%}CbUNJLH#k)65isYAJ-j0A zh=P_=3(pn2F$Y|qa(VzTN>9e@yKc0*Z-9ZCH`Z}vsi$0??DS@T^Q-mw2g#?qyYEf^ zJ{LYcp0@2wu(lSYLSoZOtbA3*-QK?kvXy`FRIKS`cT=&s0sGydH7{An;|;We zKE(C8gfBIeaDBo22PX9M*23BKJ8dxfP*}LpRL*FJ#;8QqPQ_(a*49>YVxeU%&)6`9 zK(ZIQ;|hcTTuK3yM9BMo+T9$t^$H9KmLwQEO1o2%lYgGCpDSypro6Ghp2Pz~>BsNQ zI5LOJ^Fz8mInAK7d-c}1+wFAnPd`atAf0o2`2R?_k6mrk>p;(IttY?fOFR6r0*j=? zR!dN8WKZmoeE>G#xsTL9!x}W&wt$w@5=9nSRe#*+OK*De@<2y%kFMLeyDHzuwe}mM z^qNEDx`Wb3Uj*mP<}Q*3r(=%OnEidC2&T!`#zFbuYWRf zZ$--_T>qES?Mii`>9k693I6hDH*C7YH!qLBuOI~u{`|%0lBR%l5pAnTG>t86e9F=^ zP$;inN>#8_7DzG|Pf*fwMbO4>bCtpx-86B$YHf7avm~h;DMfCthOVSX<8Hd$y&9}( zw!EC;{3P5>jF;@syW8J^(Io~XN7{t2QdJTq*E4cfrnRl?hJggu%94P2DYKUZ)?kj4 z6iBjNmPKJ``)#d*wxS)NhB<|#A=3O<%Bhl2Vkg~!rIAtyxy>aOf8y}s+(tEbDbFF` z_2EZtY-nrCv|2-2te~9uGB4viD?;7qm~&1AnTh!May3#2pj=?|Q;tQUiMgzP zN-38DP@p2@f8W6YlYnj4gH(yR6iT^lyN*#Y3qhjh;G-u|OJ=U1OcVValTTGCWvtb6 z@+tdXsl(8ZK2Lrc8h2S@2vH%GLcQxmqo*Y=DFLA%nPZG=!csGrt3Mr=6c>2A>$2vj z^HOS-L~EEU;D_g9%uA`M_z1vGtIISAKt&>!Qgaq)ooa#WE@x}RZqq6Tr#q=lTw|}O(oX30WB%3gyT{*B<&d#5ylY{O|wk-`(H6n#Xza;qBY^x5MUqI$p+0({$E!nORA> zPRXaT*|tu$HAAdZtrM`6s#U64*LjZKNX1Y>j)-}QIh8nUHrws?Ek)-+e|BQh&}s1WjUHKwNY zu#6AHpu0neIY6<&ds}l!mk;wA@)Fy&H%&_Z zi@>Pdd*$AgQc4b)E1?7tiBH;omkL525t~Ad9&QBBK0eO&*SgV>Py@hmh0 zy)QAOQgfai3C;@$rEJyBjdHhK1S04BBBYZt`STNH$+VE9l)g$nHO=4Dnu=Ma!lwoB;{IaEww&GPWJwNY#`Sgyyt<6b)9= zipjJ?O#kGUv+lpw8dC`2@=&`UYJ+j{(b|{Aw1p*7Hgp^V@#n1Eg zwD<&JROZ4`LlMc3kiC>ECxtkW?PHvnE?V!U$kJfRX}SC%=PyG4pqm@p?Zdoq5f!vl zXq`jUOcPc{{cVzv&(e?d$v4OiRj?$mIIOR31$0rTdB^`(sUB+XGV@mspkAfAgQL>vFtqZof0b>p6ys z)a?2Y9_sb?ckh0eYvDpDg}_<3t<=VJCTDv3{35~L+`g|I#?#0#)%sLYvc?Iavj4QM zf9|)hyY0OX3qvA0FrzS{vd4N#(SS5ei}zz5b6z59{R^mxrdm zQ+k)fBjikOUzy7MtaMwsRA8cjwAQ=@C`ujd@Gbg0A3s*i`)x;tPES7iGnOaUG{U~m z@vPJ~qLKhk*EK{c3d%+3BAcC3Zz{AUJwY8yJVpOS*+$v+@$(m=W_$A%;YA1z$)`G1 zF2?p;#dP^a*`eLNW~gBqQ34=VKca*bU#u>6ds}l0o@L)9UI214G!jkpm$W=1=oBZ& z6SBV?e=4=j>8ZvKLODziusl1fE1uU7ND8^$J<9+9AOJ~3K~%t0fC&YsD_0KyF^-a= zB3x(B*+b^MhLR_3+8pM}#FC^$W15`2lV*3bugWgRi!rsLLRL*Ars37#;>}0<7dq4*lkEU zkwF`U+fCKBZu&-=`Z%sx3~^nwrEat5@dc$|%>tAVxIX_Y3u}h&2yOIFTx69S&>)b2 zvyas;5g~34d#N#AKGnjtuEJ;~Rkz);>VrSk@D*#Vb!s+^WP4ro5+0~7C0C{>gbkOG z%gPvYikvD5xCEVw?3_oeA)!-Wq*%E5#s?u}1JZB~Zu1ROpX<^zcZK#ouW|WGMaUY+ zycOLmu$}8)30AY{O)a0Nu7syZi0T7`^>DhVdhKt|wjY1&S1wszOmf=GgCP36Qg zFPEdx&HmfJE`WJm5g>*oN3WYcm4(U?F)%nuq$Q?Ua*U{0TQtUA&kr%IVLa+a6vpVi z>s-_CGh1b(U|zikK*<+OM-ZG=G}6d+2X?Tn6-v}NLwFI2$Zn9xHT!}aKaSn~x1#Hq zrT0lvjwS1UyBWHimy~^}M7C|)owmK|I-!gYp2KX-jdtz4K8EX4dil}0{r1gY3OA%U zGY6#y)!obPwUoVI9_#$G9R{pb+aB6JtXwlQl9bH#xnQX|$N4y&&%^%Ew03^_nzLcD z$^gf?aw5g3bWVg76fr9FDTL{?j?Y@DcKCHs)NDH-yUf>&Ypp?`(1c-qPI-xbcE&Z` zjcsc5pI#pR#Aw>h9hW2(BEor!>l*s)y|JdmF%}U@X0Bn0h|n0B(^^Za()63#{b3(c znC4YzO|=BS00^U+LPbz5(U;<_vr^%@ECQt)I&1BcCZW(64V+7^B%m?M+BW-=a^h5C zNEM4jLQ1s+08Vu=QYfV})D%)KL{e*^Ypq(MPs@3_^xd#&cU|9Ag|#vlB!XDx$}mlH zt&=e(#==M}>iPPda@Y+A7GkQaRajFl8Jd0<3m}JK*c-b^>soU@>^3Fmd`;bVIHmYk(@QG_)*6DOT@7m57^L&{Q@EG32%b8577N=)lAPUjHT)z7|!T*(LD zJ9(Ps&(9C%W!-m{h%aFYaV6rgTrcDDaDLwQ-Q+U~EeU^lJY^td3{VG={k-|;2P2A@YB=B&reT7>u&Zf1I%kyL_VcuS@ylj zrLGwy;Sy8K3>89|axO}ULP#jN@EX@~oyGt8zx_|Gk+UC{Y26IN&92XJKAuj5X44L- zEVG|t!PYhc>f$2_Rk&QPlU5c;`rr|OfSt3!&tG4Tl88#xO-txg^dXHo`OMi00r|Sb zrQ{+&Sk0-x3X;rLh~iY-Z`zpPatbvqQW6N4OP0>&DmYW&$VEs3sS_!y^j-i~e@S5h zgql}k)wp|UZA!l8)fiL z#u5N7&e*tKptQB_B(A_SNUcPh;#}es{Sz72Y`*b}fBy0(WFnxnT#bWnKWL4J6B&%- zbGUxBS~r_-mvau6pGgX%cOU{I<{ZLu7PVr%_!t?rQ8F>qbi$BCZvi&m=gL|;Q~V_AXOg#h zU4@*45wg3FehJ6_T*Fr(cYrlcaal`<$DE}c-fDY0uhSZyM3tg@M_MakYB_Pf$b7U` zRk4}o=fW$Lnu{&D7f`VLoFHB=zi_sh)qMVk#tNmoDoRl{%*S~7glb<4lC-%bzg$u( zW&HpG8ETA~aXXiLrJWXqMT~waE1}4cMn!K^2HROshY(O1i7*#dYV#hI3*(G=0+Pl5 z6#Wt=tY9HD6+Wl(20!-^!*T z)LL%}r$QcT820=A?jBXcL?lT#D>w^Zx3ee=jwG@yj!KLxIt{;Rp zdAxvsFwHwg3E?cnt}ZDrPen?h9i$`CV%zVC0I-x0QlgsP3bAvyw^FveR?+l+DJe|t zu#GVyGU%?YI=uQT zW?z>tR`r;LuPcxR#tp}lL~)MCkXNJ=+d6(XjoKYVX@ z?{l0}xYTSLYov+V-QB+ZOLDjC2(7WM+f0|Q>--C_*$v;5Xmn!`B}LFyR|vUyU~Ukh zEQHd>nCmPmXArVKxbAlK(>hk6`m#Qm?!ZdMF$x%HYa|ZFzGJX4d`jt`s{hRT4Pxg0VtJ>WD+BUb|$6R+rF07YORVw!>BRUDRG|ixzS9Mza@-e5g zc3mzgG1a6)oTNe1y@i_9=60G_0UkK6*DqGj?eHF?AuFV5b9`#Lez^aJ3s=ypH`~Lm z`q^nXy#1T=c}Z(#Q%Mye`zlGHjMosueAwL#huhP5xg1B%Rj7*)p5#F0P~)+LkNd+n zQg4Ko(!C0!mwEwFb1HfL8Od<73t`oY?B<@Tn9q+;CuA4bhqm1ki*Q}gyfMwKKvH7O zCB$%rbR|~Gw1po^JPWd>Ijp|K^}i3V|5n*Un668hb4g9V7s@_-{p{yQtCHUSz%0sq zl5QLF%E?djd*1AdIV**VPRZInzMM*);}pS< zRV_JrfW(EH?yYUfGonzKKZog~A+s(sNMi)}%jY;vkS|=ma2d-|IE|`&ZA9Q&#>-D- zT?jL2)HsLhPet{@^+vbaG%1Y4K|72Qk&97&@=%MGkU>i35-*RyvfJOuZWpd6;Sg&W zFDuw@jVgKhkglhSRq7^2UFXNRp2Iw8x6ys?{bN~vQd-tH27l7lkmeN5wzoDxHVRq<&1q?F4yNl$VDA^9wzlu2BxSmJIa$|hg@u!C z0Hi=$zlPTJSW{ddynnFGyY}V>FsO_(HOAw=0Z zzLQD`)AYA*nZ3YbZHL5udVnC$B)s!u#q(w5J^zP-4FPzu^BUZ~o40-`DFnT^>_BrOQ#EGecMMm4MO7T0sjXB!-k~nOFb-SYw#| ze4W?xixOB$k-Bz$FSH>5MKDj7RF;0T!J4P@PpBG5rfC|~+J`KaEY+{akCeUc-WS!U zd30vaN@C63?tV=v2X2Q>SCI?3&5e-F`RR!j0hXqJ)ei5|`poMyng+l^4XB+IU5(@T z^&gr2;hVp;?IC3Q-g7I>Ej;XBkQtOC(tkW}AMnT9(LIbZ#loV7BSK|mlH{BglB-yylU5u5Zw=i3& zgl@UiT6{^#I5XTFa`I`Ogm$32c6SFTlw_^xbX-En`&hrmReXUELk*8D+8va*_yyED;&_>9h>n?fv~5 zXC09esJ*|GGApI6+#IJl)VbgEQp#A8Qu28Ed^(T&!|QE7EMY}NB2`N&T$I$C%~t6~ zE9sY!3-oORd5I~G*ORCzB|eXf)m9s$6$&A_A`*6;UP73X7etywW0lp$hZ2^8n2C@` z6Nn;)iAv0fZEiL@b4CW-h>-Qn-v05dZeuZ)2@%_IE*P9 zt3WcM?7Nl#b4^Q_6PKag_N{3fbDif8pMQyQ2Chyw&bi4iIkG0YtjiPP&?LzmuhZl8MaY_qYK_};rqS(r@zeag&ZEpF zoKEM~St;Q0`RBu-F^VPf`SN5@6*WHH$@;o?Ax=f8{3J5J5*aJkL!6dv;xFjDwZq2gc?(bMX?q`q6+~c zYA7o(lQtjX(bqI;Gi1_vJZt$z*)j8+uNP4-G5#EVXFD{yXRdikbzZZTJ}IJC z#O-?eNcJ59#B$W?22e5Px_m_#`@6n>b%#{}Pb4-%zEYcSoAhet6Kd)7MmOlwkQRv! zsS2UJF3mV5u?Fd^ws*u?s8%~f1-aH5vrwJWyW+=XniRBQT;u#%X(#23%crXQ%4Foh zLW9B~8KI-lT^i!|OCE z3WDYu4HTdA1Ck&rLRkb^@{B1``(q93CkVGh*YlYQN z;BxvgtPj$Di-@R7#>hz$Dz5ud3)Ph47o<%{ZGb;eefF1|&F=36)baW(nn4OHSo!%{ zcq~GIVVUe)9fRZ|*F0-3I@ZLT>q0o`#umA6he4W_Ag*>-IuOtFsrY45PMgi1s6%00 zS7~)hkq^HY7);Z)8%3f4tr?N4k^NiE0mctyo=fyvr&4}z3@iIxTxLK10nNRV9h7H; zDrB=>zY@N-o16R+=a2u|wWM!f5o7feg0s4ZC3I%r+`j|UqEL(%hquBUDlL9ma6w9S zb2GH}n<|1&7lt6EQ?f;+3-6e#aIf0>yVh-~6xAFO$Q-{k-F+2B(KL<^l7y0)N~>iR zGW&5-@$3`ne#`m1opu_?$=}F0$>!b{W#v<&G;P0Y5C3uY2irK?=x|bN zR7@>3?9=bnSa$pWIqO$BT%dL-%r$$#s+J3oR{alJe@{x~ScPtd#G0W%RpwTpsqXE3 zJx<5x-CZY@ov$C`^s{Nc?dGebp$0PES8+$5PG;Cz1*vVk(k;z}s&b-Sv6t z4j@I1ONirtRX4BL?5W6@&Row6Op>(GjlgM|KRbN4*?nKuX9b~f#S}?*2u6_gVSaf! zX`5SXN>oH8)g>p1%9gkauAqPm)YYf5q;WLvfUP2o4_|(6)yr`AK6AmCLRhjtTK#L= z4$}HcOR2u1&&y}GxeLW6wsKlICDOKx6Q^q(c55&x1x!C`$&Eg+DROtu{(UX?HN+|# zd;8Z$2O}qFhb+F?yuP))dHj4Xq8Pi`cf%4{S?7eQ>vbHjwX&8H>msmQqi7t?=X5#u zu3->ENL>w2!%o|~-#&l-gy&gT8{)`RSqe;XJ%7MT3YvWRGW74<=G`*pGJlBu4fWp? zAB=KVol6wZYElJt+jck74H%D*W@|Lb&2;W#co9lq){ui%Hm@~8Og=)?SuVC|ql4uf zJ?k8zE+L`jTuWN0EIGt^ecp6K_WJtpv2TD-qfd2xF4Gs;0@oTsAtIp|QLyI{e5&(0 zKL`aC8LunkrHbhNO3}*N2(zx^>Qb+WV%Q_he)8kvi&|dNx+swa7p)YskkYB9%PH}4 zh5~VkmAIyYGA_kS9dB;$qn9Pb_NLY#vTl^DrL4G2_ekw{gF(Nqjb}tHByM0d5sdOQpOq! z3L#Ao)PSftkH9lgi6sVqsd1`^##v(rr`>XWNZBjBK^9O}kWiTcWz0VKb;Gt%ZA#1x z&S+3FB(a1nO>tHshg_mIMGyjkL@qf=#NHZdm9Lf8wU%6Jo~G39?@5#;h0eA6{f&@X zTM+|vT9JX%OBtu@>-}BR$Y$fFt1+s{Img7?#$qubH5s$`Sd%POl)`=6AI}$Igf=Qw zv93wFULqc!f4Lj1)a~W;GEx!>O33@ZDGaq_rG(Rh0Yrtyr~)E}e40*&!+y~1!^;aY zO97IxbAW?2QQM1eu z2r6L!NcX!INPHRR;m}ImN-5qQwm-kT9G@c8K%m5@omu5)WzuJg5R?xYZ{HkTAD`^)*5JnS~I)V#9|08R^> zLw>oA;{W(x{`%9WUz(=Lwa)9Z+uUiT)-}YEovB#M>=!}Qc0*2qNc7tqtQm8ZLe{dT zFi-P@6sPOMb@JN2?KXEtu_k0R*U?|E*(f#!Yn&5k?QS=RzZ7b~D*En5V2R;e%L-_1 zw;wDv{g&)uT}wB-yMOar*KDPbg=;NXat6U%gG8xV%*zzl)Wqqn81J@WX z+T7T75L(6>2(@lDN?}d`p<^`5c+$FvdX2tj7S+Fq3XI!%87p`}6PHjxpuE?%5m2lf z*5$=tKLA1qOG%R4q0XObs(RQ;wZjvxbsF)XgE~f~X`2rHVhj#N$tTxFPJwP_x~(E(4y5FSQ!f zO$CJX3}T4|W&cWO19{B;$1ul~EDFGNuInT<0GvzqIeXJdDj)$|dr0|_YZ2zRX1L`N z;vA~j)pS}fp9NCP%X;}q>V&#yXrTI9Ir%G5tx4B#5#qvmDTR$~+RZy*Z(}wnh0rF) zgk}(S0|k|$44Rn%IL(1zQB5b56^gpe2GSTxQFh`6(4Qj5fzYMw(3%337M%L($#bzH8`wODOm89C*$RPm;ilERVD#kB6< zyjR`Lw0H#Oh*C)8(Wv{?>zK~Us)E;)pB1;pee35RAsX2jo07R$VEN9KR^p z=>9G)&+F-rnfvTxtrx74vZI^<4`GgocWk-L|3b;Q+i!$YHRbEePf|BrM7TbJ+{e<@ zdI9=VE!K2zYVw)UHUylTW-#tPVW+ffoKZ$2ffQMnh(jfilwJfKYo>%`Qq~!Tn{XZ4{!nI0q z7ndW7$+Yi%bI!|5B5J8hSeRXo(a-0&oUF3Q zHrJd}(6V#wuHx|ToN}4Bb^RdW6QoO?M*%J?rG)jDahbm;ZLs7VkJ2`v+md7OkH#Fd z-PCkR*D2>p&iRC3I=}j9en}~6r4YqaN zP5&#~yhfCOl|;q$B1BC|2wH(Z&Wn+>6Fss(qZ_3tmFsf;8t0#cXi{825`;?*NoYaR z)b&ExFgR^*gcKz$0Bc&G!83~4I9;*Sko@sp%!(Vr|zvB!( zjwqnUk~3F+v1%aNSGFbjf={f~d~GW(axrGnhJo<<^YQlG;3U$F+EZ$@9&^@3>>YU+1yn1s>?q+QMxSOAgO zZU7W!7PdF-eY5ES@H+WnyWI|5E%h|d!?1CVzW)4&)8{WB*eT##PR}nKC)cRs%lYZJ z0(Yj_TAetIqS=eKt@C3mj5daOk!n&#TGxd2lT<^EY8^k`ee*-RxefD!fBGlc-6 zyF;Y)RP%CaS`(K`oX6qNDv8s>&+~jH{i-{>0;!kr1-q@30)h|oIZRKI)Z#@7L4wkn zj8Rg_xO|S|lj^>;!w}Yo9Il}Zbp9^@03ZNKL_t(=6|_0LSF+bu1DW6ha)9()VVl#d zbvYVEk}`7uno$bf+@zG0G^X9gSeU`MZ7C6$h0q|GBVnmXAf;=Eom40lBUfZ$%s`|7 z5(p9?1Z&EMb4CIqRTa4u86H2VW>AeG;?2!lRIXx`Mpx#VDp>(i`}N8~8rK8DH2P&; zWn(}$TD5KeF6Elyq`U7ptw4qBmdMte{PGmWXGXcb{he{`%ZL9Ku8)c$0>lEypveoZ z;J;$u!z@jnkL{|wcEBnXP=6-MrqskePh-2GA;A8F4H()k(dN5A&`*kv zN|&U3jn;Oes2Eo+mudPUK&6~ptt_cp@^NPs>U9a%`9+~>jh?-4G;YiI%a@;0x&&V? za}rQ@UFVF^Mw6&U%9MEXQGxU+q67i8LZw_D?)$^5{xn{vZ6?+1UH{daS8rb3)Lf=% zBm$B)vpDX1t?6GL&|k*u>zm_wI*s$GZ;V7u3U{v2Bo@C-^LgI3u4#`$r;w&?dAgh% zHc@06ZVwSNcNivBbFbZUC;+ws0jxQd;+2W3{`^Q%WH*7lA|TN-39R zYmDog&RN%4OM=ex>>N0!jm6HkpP#QjZ@@9cgjgG+Ezz{BTUbh|p$hs>|I>dz&W{yI zn_B|eDAJ17ZDU4I$!W=j6T4xzFDZ~x$K$IM=IiM(#~A%$O_}Gj-_C^bI-==b-90>T zS=Qwlgjy1zw1*u6lvH$Li^?cFeDkZn!UA7D{n_VJ%CRQc9bef-c)ws{cKt5LsBC|@ zf2(a5{FF;BrKB)QD#9bwDy0bXmzci@ks%e`>}~s?w9|^LYeAY)Kw@^CMcMdNwUNok z94Anj%P7K})r@#a=5JL-!bg8-msu+-c{UUnqID} z65Kk4$}HQ(zXSukOwY1BlN@~#b&E>3)b2p36us06l-e$TtfB?m7gV)+6gn(V>-7Ir zu}Ye9_^i#Xwp)eVAAe04Lm0(euzXq8A3429I!MlO`F?)+dr=OD*S{uxJk1v$|FM?O zL>jADuKzcO?**g`?YyyR?wYPCc}jvr)rhe<+`9f-;0jz(7S2n>Iu~7nXoel>CTte~ zAqZ2MvWUuR6i7;<6o4`(HBH;POqx%%{6zLBvX%zcR5?thF=f+4J?H_^4mWRPbK{q1 z!7SaY-J4%i=cY|f<0m6lqq+>bFe*)gcw3f=OS8W%?6>90RT(`O{{h6Ex%--g^2Hgn?dsT9%sU-iR z4GUhw_$Wk;Qx=J-(~LI=N)cAx;`|W`a3H8><#etxEt3M>*n2fRgqUhfO1t1As?KzW zDkMPSn#Svt(=5b>RG2N0cCAHSQke2G6ApruU!O(Al(GQSb{{v7=yYRHvB)KJt)xkV z>-M(o*ELMz1(|KDN=acpLz#{279Rj6Bh%y~YNKpU>%^rFhe6;utt{|wRBv1hX?f4p zAmDucJxNdkl@#mzITzNBivMSkN1}oBLyCWh{>ion)8B#81Su?mYa^7miWyAEri2re zDtt$*_hZ>PYvBz(aAcg1o{7kl&x{>k-h(5;iv_W_>_Qt58 zCe9L?j*xX)Mp7DeTV(@ES<{H@p-h}%z5awLAa!~EUc`mkdu5GesvvV3OGr6g1%lK! z$;Sc)U8igtHy_SF6x3OOY*3_2oWC&C9E->T>OREE{(KUWSs@ZcDQtM(QyJlcMm0X11rt61w{Mfdybi4B@ zabdv$RBvnvWsV+N(@TXQ3}D0cT*M@sp)xP0E$5l}MRF{7>*Heh+&Js@jWJFDRG!xL zRge<|_j$|5YQ>s|@q_55d}{u=c$u0LSg+vb(kd0U?a9xAIa|GaLd zv0p&EH}Wl+11l<-5ab${`SgDpS(UquoC=e%P4Z%09#wBEtM&9)^D14prtN%Mfg8a^ zaLzf1nt=r&q`cKyl&TsxviD$)62_XYfR^J}VP2Pi;FPTU2J~IZ3uhr~7sKpJMN#VZ z=Md9)kyiIjAAx1|DbEYX_u>5KJU)uLF&c9F>^}i1(;m4tB`v0Db1hODf*SM36eg`m zNWwZvrK`xbdaeFld-xSJgAh=o2Q4!g1-|6-{pR2%Ptqa?A`TR#yweDP)PIWoe^odk5vdPPB}o<9khrBa5Pk`q%Fw&QYO25ke1n;2zntdzh7Lh%yC82R$kL`0V&jOClVX< z2(^eEIqDzYK@xd=lBP*TFXLqOA9de}xR+!^J+0%4a=*WOJ#3?FuE1-?uDFCbYLKH=@-M-6fP7mB>DFK)Da$YWrRpNk+=%5E+CBS}RFSW)Ctm z0Oz8mw(YJIUgwikU|OrR>~=TR+WC5liQDF=R0f%ZI)c>2zmzzU)BXKdx*hyFvM*9= zG>U=1Xc0X7v7%5)aL&_pljhL$x1}uer~f@IpHZ0{g^^u29{Uy!`S#klMZeRdcwL?sa4KVf(Tz*P2JwzbZ7;Fz@&GAl!8r9GaHM&D-oFD>Mij zVAj;kTd-Z%G*-kq`R7=c)z6LVB(;FGlq`UqG3WDzl+;ow+e;|{z>q#K+sn8SsmtU; ztV7#0MsF!-t$}38HFK&=iDC4yak{rwftVNHHTH09F4x&e1wuAb{^fUX$@1gV<$7J9 z`nDaAv?MuiYsjb-_`ETfkk%Au=gjSJAjI3=BH)sukJG$Ot#z;Vx2JXf>GP*KL>9Dn z?ct{NKIc@Hn669g+jif$Y4cw$m&@qqxVi>!hht|4L=7w?5=tyJ#t2(vB2fhz-5z(t zWt!jr@YOD3}_Ba4?DuooKxSUR(wrvc4>-wW=T&ZT)KBOoL6zfzj zdEG{lQ$ee>v10K-6CIQcmDerGcVB%ALVo!9pS+(CTa*Q)EtSH2f=WatC!eaSK%zn^ znJchZGY26`@gd}u8eP(s*3Sg7W&k;8+e_uF(N#d?S~wwl<>a#E9Fu8uOeOJ575w>g zDI3XGAq2EzW|L)0?yc?Lc852Wm*8jDzNzVDn?F>}5->lFc=Ba}3Y=Huo07fG-8x5rE-aiHZN^Y}ZVoKhl9 zk1>9!WfJ%<$456Zwp|w`lkM+R|E3b=ZDcV^fgyU2HcTfN-@BWyRdY<~3KVJ? zQ~X^mC2y5^6(VpBKuwGs%2d)zBc;)l%X1dUoctEUa#m_5?LbD?YRdX7Nh{RV|32rb zJABjKf8&$C{P5c}JrQc#cJ}6NT!X{}N@l>eKcGES@?1_zw_!{E`dn~tZhkFkx6P** zM2Vr~y5H|OFZ1~veJSWj+c1BL+Xrh|y4%WKv3p1p@-7LN^T!%Tl+xY)>!P~2GS43A zgKHxf49k1=6V|3VzQ$IIQYG~)F9fTULrp=M0t5mLvqBI;h|C*M$9b)FmFl=HmlCe+ z?w(8oW!aYVa(xliBT{9*Ts}y2!|i>T$8`EAg)r_e*08Q;V{GD>BR9i+2-(>i)i!Ba z38A1AHCU&b{SA@2TowVfX{Bu(U|z2!&KK7-YpAHRc1KHlL@ES<3k$TpDDz_up8=$9 z4uuo@KRNTJXj$Utnyj3VT)<{BQVxBnN8VRT2`J>Xz1N3khv!wdKmBB}czp z{y@08rdiG(JrCMusy&(B|;uUk#)FOV;~dk~^lfV_Z+49D}A1UI~mI?t~~Q{3$2zr;C)D3&yxrsX>&m zy{u15@t;7Ry5TPb&@w)!0Fafknrs)gr!xMoJ-o5|J1&yTTFXx}J4(#iGx|Br{ohq$8Ll)VG7)|fzA*$in}Yhh~N#kk~o z|Yb&uwOIo4Q3=`zQ4ep)X77r-3jsN8LTxKGRPxVVx-Tz(|_jCvOrUvq38 z{!+-dF=nZh(=D1ez6KCW&9Y*UX2@|)VNv?v4mZR}6j0_K#aj8rb+4;XewzqO_7fpC z=CGx_c~qGV)wq1`9O~xb^ySenW7qZyF^=zz>_tAsaw7HC#~+XNG%wcx#P<$}w{aPs((pv?N}AUAEbDV6{_%=j)~TmCIt3*xkID zmd)Z-2m*BTxFY2H+e6G-$sEveu%IuJwCMO*UwUtza>UDD?t4Pa2z`5E| zwYE)#s$FY#-^3|(4+0g`V7F=V@sZP*c`w^rqqMS}R{OZY^7$v%3VVDfz=4obVtZ_J zIB|N>!`-@2m`B~+Eti3RW~G)ULQZDD_2rY}Izb*rF5F1?fq3svZ< zK!ql4IoDZ4B!$X>5a73fszt0&sW2mNf(uuuP>lwq+&W$=Wb2NkDv^nP^UK=pZ$ZF1 zT|lLp6X^z<0d&P0YFNlvp==RBqzpB=wi8M-2|@vaq&pbh0OuHH7ElFJEzQu!8j}Cq z_BTfN(vU!^q6G+k{81^Xh8xrMf=eowroUIauc4l~s%>vL7a>Y2B80hCF#R`8 zbEDhA=gr48EZ6z+zG~6;57t;Ac=NMQx#{n$vCJtfSHHYiE2U}#8blngYv!UQ8QJtr zTWcgya>_mik+p4hP1`os63FQ?yKXpseHXUv<$U&>oo!J{BwI=}txhG4FK6qNYn#df zs#w;^``lQ=wd7nS=2)utq87j35AD!%!ID4}&fae^c5P>+9hZ$jY7jyIV1ioKd5qcb z+HPFe5V9nTQntPEaq%gUbXY~@oQm+NN*2tyA0!G*LYjsS$6XAim3yMGSBm}7-^A9?{-KUL_xtX=jn2t0o3F-t*w%38navAtS?`WF$NnIJetLQO@ciQRUZc@U?hf6{7(bsErDaG(2-sU4Ie$LAT<3A~ zbLXs~rZWSIvaK-{Tw;8Be!0#p(D}HG^W3$|x9zM%V$LORxn^k&L-%SwG}cuXi!x0NA#K;RUIY=!W*+B~7VopDao3X~2t^v_ z3aD-Sob%PSR%pLQ>Fk4+wS+lkTYv;{T<7h25rBxmeopHPa}mT0vEAQe_RIXJB-A|D zQmkV|*g+WVTHIGkgusC(1NWqkbd=^3FZvKhUO z^XBv&npEN^tqiDPd%2+K(KPHANWC83fpIAZsGk}x z)JJ7l)U`x|=AkH;){iKZ(%(s^m-%xTpZ%7V!glE5HKx;lFN@);9)%QY{TIafY-8euX*-CA|p(avl zD4Fy4XXSRP(Wo1UxkM2emU)x*mYP_W88e%^U)$HOt6<5&c9K~@by|}kMlQ;9J}ngl zLmSttabMg1)$;P&u>4%Ab4_oKU)5Yl1)$8;1GG}^l(8gYT7{GZ6ido&`_>L`^S0LI zMRyL3Viu}-5CxH|YSS5wad#VUOoyGIhNo*2z{H%V&DmRokza8`Pa^vN?Hxac=|qH|9M&e zuB7nr_HRPkN<16Y&*O&-%5?7t0+$}-Edq=5H0VUD*w95K^9hblu+;-fJn`uy?yxQXTUeBnEW7vctAc>-h|#XI>kd z5HyDs%A>$bshYUm-~1JIH%WxDeQ{7&sa~w>`?(^DdaJSB~9myE#S>Oy>vHyvpXmPo}W`zq;8v5fjG_UM{RG6yMZ!m z)u{b9+j1pUhyB;O)M@b>4vLBpqjntx&Jn9_rPNaQ5o}Ev@@I}$08P^58fu=$$3Ns{ zy1D;r=?*MP6`K&EmaXmkT6lW-qogb;lLXK`ivs>EyH{#=lT)lUVR$s{Vco{GU9^)V zNs{L62_dPjms*#&0JT^VN|EM}BBuEl+gMUl2_J#puK1>=pIdxk-7{2)4kGFzq#k5@ zG>4stb&ZSE3i1@!=bA+Y1*VfiS!+OP5i21}7MvHKQ#EEjoivWNYfoR!#jm>#hwiR0 zrm{#WC7iT=okc;^k{T9k5*!yc-95GUq7qh0d13w_$m9YgLE1h!-AUT5@e81A`dgA} zT4LEQZF}%JjE{c@!gCRoxss}UP4gG2TzmZ1xn63qTrU26VzgXYVoLrDtzvGm)L}2f z>a!Q@KLDKE@Ed7%t!w~foR_Iqg6shpkrB626?3*-kJ6w5pF#=?QRd)tj6_19md2^BS5n9M0vP{g z8m-)pODXJ$Bvd6T0mz&y7a&l~Da=!00HsP<0ZCFvl!skk5i?Yx4najf&6l%ripZwT zTLhHAq#`uB8>F%&Zc>0bek)YX(>YAtB{fufa)5nR9VI;t|5gv*V^lh!LKRh95|;#asUbft2K?*Zt)3FxwiFNs0@wPPRksZ zHJk+L)(!`wN}Ai=i6W_%!@k)KyXTjalBtw9>-5cicSy>hpR6WUN-ytUJfbpfp{p zb74`z7%4ak$(xT*_|3yn5S_1QQORenm8~&LNJw=zG+W3yCIb~K&D%1D7XZ9FG}_P> zD~j^;e13YqD#*uSckx^pTBSaXmk?*p+hOPtjFD~M_EPB(fG}Mnv1Xi4hDu|NPu`N5wlMm+aEhhW3PO~|Xy7VI z78Ip0{m1`$H!soJyX2FoQ`2i>`~5KFT2ff&`7<&PU8hxNtjr-7zos%N(neCQB^T2+ zheK=FNo_Ser(emx8JTx#WJ373*)?}M`P?(Q~oI!|lP42-p0m=|ZMs#mgkyFcD* z(~APOaWPkvk$}sV7z#-txh&J84-qvPWsm*4G(XRmC!&4!&pA93SrpZ0lu|002(mMf zwlvShHMX&hX-&I3)-cEAB`k5iuH^QI`>&O1l-WydWH*376bK0Z<>zhs*|?*io9MU9 zkIUjO=SzVbfTPyMHb&}WNNTxWWv%4y*}v4XnD(tAtTp*qO13G7lF_Oiq43vHq9wa? z!@W}txE`9;*v1WCov(Dcrn~!_+lRjd)v{j%fF6#nQF(nXY3ufXZMz3fPn_0L49FX$ zvBvi)bz5o8@RhagvPqv?OMR_6r=)aWjfQQNWkw^dJCLfPh`f9%%a2GtmauGB11vGf z-Rr)+*$v0}%RlnGly&0z+1aFIi|#Gz#=2MC;a(EgBx~Np_6IB|f^7ALH^U2}xpF&LuDF z`B~Ism2EBAIIETJcVDAY^W}FjKGr%^sbZ?@x{9j0_92B*Nh|eQ>ICxamlF~Sdc9np zZF2-Q2x=>|?&iBxX*>U-$ZJRj3a6Sjn|@|rMBYGZKYpOP0WmXZGoS`UG0z*bP%0aD12Fg; zW7rzE({@+NTon^qu30Dz1jfA))RYiNYAHk9W=`yEL)eD607=(2s5xvtud9G?ncqXr zhCGy*{Z^yAdHCC0Pt1vE1&ulTH2%M)`Bq3nTIMj1rv!MXjVQT>?V|0CX@2F$|18RE zy4NW!VI9-yPnCN!3{n)~Nr*xUD-S}Hl2%Zyc5kVofFd!I&{aYVt0W@hq}-D|dhb)3 zbErx-O}`I|FF9b1oT|1DTJH&6+SW49pl_(TFK~Z8ZwwY?vyJD|v;?1}|6+APC~-TZ zc&)p(=4TWl<2{xlmQ$61B(et~fKZd}ls!~vYUCXL1kA{p(--O9Ubg^(kw^iEFqgzB z&8ns5?(4k7y#1n`t^taVF?~T0+U{bC%ls@jq!>8{pu%+x*Y_dS3hQwHtHaxWOLgJ! zQ%;;$+ql>5&4bh=iU`XJrj#N}XokDLE~2m>2|@J=O;_q|^vKI}e7I3m!%3>E4jh2q0x&Ybq(}?zR94WKpnGZC||+wTk#?-GHKt(~l&yY5uF4W1fF0ekE#! z8bmE108o*PMT-ByE+_+@CH55&~{VomaF80&+LA!Z4zhT zekaN5{vcAU<7cS^2+g$;B*c~rmb{d>p=cl8{My=nysRvgYBbi0^~kjXj6xKl_PWHp zP1n?{i!awd2gu#=t<+6imt~ok&G*hZCqsMz{3VoUGVh4~%jfssTa#7uuL?OeytbyT z`Baz3IR7Z^p=)&H=S4BKz?<`zIfMvhuD!{FMNftr4*-*Q;sV?)FZwpI`nDjvIRgsKE-Jf005% zw-7?-qMrPlDXNVVX+}%sDPojT0vE{P@SU z+z&T5AkPS>)L^=!U+0{nX%5O6DHutC=@nMjP>pNhNt4~KF9ZT0%`d;JX#%upJE^1@ z9Y?TF6sA1-sD*##x+SO7_zb`D}d{Pe6av|%qeP9$NGpCe&46_H>F^jlfBsFRC zei})kYcy1#3R<;NDv5EueDQOX($uod*YA0owCYOO%KXeFq1_j3QphAtUMJWdUB9>c zuSu{!{hXFx+S^xdcQ2UM>4`7{yYuzJVz5rt9Jy!~=qGQOM7^%-bD9BA?q7c^q`ExM z1(4GMrIxt(@pIycTSa72@`xx^=R+vVs4Xe&Ec)~5!+BkA@9s1d zptjrZa~grOs5nkj%#m|(jobA*7Nv4d!LMO8&|4($$DFH{jYLDn^^H*o(=-OZ3Q^B% z>RcfYeX%8+%y&h8fztC3|lU#X{-XVZV4pK>ze%5J6e}{TBgXQF$Bnw(I?LN zYF&dM=IzqS!asR4mb|HscQe=+NYniRZ%M@a+ ztufPl)|$S4c-30cMqcMU`>co*f>UZ-*T@w>8fpI3w{N-T%lYiXDj`e6cgHu4v)}*x z{&GIw4t?uTq6jt3VY?Z+v(J}lBtWhp37=jrhrV%ES3n{abEW_8-`taiHxF-(YkFsu zbG3jo!nRUs9ipcifrM>un0ei{VNnmu7tYOYm;`JZb32QmX>TjoDO+DP#3_%}m;0|e*C|17+aszbBI zk%xkZm-}I$Fomkb?UEK^OEsF#U2goDOJo5btn#dyq zhDeH3cU4zcKIczgdehE(d7$fffae41O;~+pl>6t_tHaoO-JdR;Ks-a((rCz_+ zsxKUPns&Rt89x5KTc0EfuC5FYfxR4gH&2dW0(sXZiqe>JdIR;Ik9@L>=e;!9hD9wIZiok{LDF0xE3)PlsZ!yk2!Y!Yi`0f#O6v=;l-8eW;sBE#z7C*~ON|xcsTL^0 zy6Gn;-9T2T&5x0Q5Pb6tus$T(bFcMy6`=VfnT& zYwVrUf*6rNp;RidlCJqPCTGOI6V0FpK{eC(t=3!4_n|B?kTtj3*hCbwBOH<$dVXO!S;>ZZ{za;vo8}GYooxru4{kZv>io1) z9I;F}+fo<8nTcDJE%GksSJ7sHA0-mEbzRDO`p-&pA9!M=v3I85F>F(cw&y}O!3X#H z*^S>5kGj3n?T|{&u}HHaWK!x{e00ymT4|eFlpTJjbtWwm+sa&PxS+Bi3a1WYOmyzL zyWPzL3RUAA-H8jKwB>wHDaCRoUZn20~ND;M=WF0`pZv@f;D#>ElLxn zCl*h(yJfP=<%(7k3~`-UO$2Ba-{0<1;d6+kR;55SO-dYjE3t-rHO)qf_WYXGwbXpg z{^b#D`g<;D@#~PiW%*1qm%2?H>$r?hu^2V(Zhf;xZ`&`JX4J< zAF+f2wu+AB6BoJ6dz^SoJ?<_}28dQs20BQD(4hUza08!7W1uH3^hMEtzPsjiFln^z1ID>}N(Q zBxUqIu{M=xxa0bEoweHBf@s2e5-1rLL{noQq`d35t>R@}0+g4^h~Zt$V+|z+AHyd- z+z9jFmcWYVXi8~0xSU;%E21eiFedHxquJdP8oypSf-FwRSJB>9U!t2R*5aZNNL>5n zqPwm#1aj@>LG^ptbX z8_qRC@~g|sqs-S@M2eZ0HM{fl{Qoldi&h7qYn&cu7eQ>5-b3XzmN;Ljtft>K{g5NL z%a2khz4-t{wboKIt!KCT0$LeWsYrcCSxw_L%z~AQd|lS*dQHh^5V~@;hN>D3HxoKnf#rjV0VG@!)5&J7N5c~?Q68h4rX>o+2uQR$4!sgZur-y$abvVJO2$Mkfz(^AyBw-u9fQgk ztD)3zuGNp@S;$o>MWq*_6YWN54Ge+tTw_WQgHT2)p2GB)YpH==wLb=qK1p=05O2<-TbMqD2!x+|5$XJ_`9H$b3ll9u~8&u8udYzYX z|K@&Zlu$Qh_c8+YRh!$AB^RJ{<72AWH2eET8t?P8OuST}uzmB9n5wepOuNe; zh1N>n`uWPZ0kVGlFV+8Ox_1bN_53YYztmEc_@Im_HI*3j|ABKS7P zCDs=$hIaF1<)T1V(x6HLt^o++T8q>4ru8@hC zPlBUV3^@`RhP*PFYa=aDxe}1z9JvmjbFOu_i@wTQxK^Nt#>CCtN5|W`o;8Cid!jod zHo&ZIZbbVgTs}qjebaI!n|XRc2to};ZbeHv9Lc zIZQ9d_41wVZ`I*rfu^;)SdPf4?{66uR>>+(sjk;cNzc~qYSa=Ri8(i+JDrUEo*SFs zkOK&1xllC`mt6%YX{CIDvXqp<`Xe?Eym`=@kNx((f~c{^b&iCjO!B7`7o!hSLJCjw z^l6#0HFb0QJ`0@Ot!m+zhWsb=hOLmPOdQY#(30s(>boo zWm;YtY6%7)l=3XJRkGu<<*kx@3t2Fhq_y3qF?uN_%%c;G(mIvGs3d6z+aD^(QUZV= z#xPxxGZY=cKC`M75%C-$B?*FMWmus`A}WriOF3~SP_)FZ9L|;B5Q-YVC5F2Bt#C7pKN=NvOzwU(nQZ_{iUQQ%5O{jVZQuZ^_$8eu#^QTS}Mf>0eTsRQCmwHTn5)_caIZ(*$+Tea&>PMdzYLv*Wd5uT8sUwW44pKQ8mn zjPI3FjPV#={dxsCsODY?!>|q4e_N*iiugeY#>6$nMabQ7_giHkq;z@uW1hc5_Ck4! zl}PPm`$jbzu1%%6_(||g*}KbU3XfP`5jB@vuBvG_wN@$-V4z4?5|?|_+u&UBGgApQ zlkFSiJjAgU4#X;)g^;3LxD0D@!9|Irjj1K(#C5laSSjni>#lxXJjakVFHCKl!`qf&60$uZpE&zXZGIeCYa3jUi5FC0|)x*Xxm)E#q6kIFKTt zkaE-B=S<8rrg=!|*lyl6``^x^<0zH30EsFSc8mHjouP!;C>O#suYmgCLNmSmk=(at z`#aV3+wFm(kLRB`vZ=N{3nLkpnATD5{~#qmJ`uE{JrH5I{<1EAl;%Nqw{d>1B!P7` z1*SN!rD-}sO{^M?eW%m>=wF_YcOfmPTHOqY&FaR<2Wj6my$(g$;cf6o;CDjS?62GV zztg+-Zo0|Flx8OyRq{&27^UJOD<12dVzoPs#KC(eKBX{QJ1D7< zCZxQ%{R5MI4BW_0lxJWW?SnFsiY>`2-3rs9>=}dXUgPm!5fU{!#9Lz2HZ`MIl0&kH z!x|DQUNe>CrRfSYD6G~NG55RO>3q5zpG}jJ5VrjS3IHo0CFiQ?Z&Ji1L=GgmE@UNT z#%c`DjB9k#42S0C9f6pa=QRH+Yp(7mbMug4S2BaDi9l~QqU{)~-W3)q7bHwC?E!^~ z>*sZTSzf=FbUu9Xzsup?O;--B-oow%@ zGGJ7r%WjG}NTs{249O6-y5%pQo(Ou`Y1#gF3sh9}JVv3ret&P;hv@74@_l1`vwfq@ zfdS;Q5UomUGd$SM9VN>Cq!h*&s<=-Td|lh!$ELjr!H?G?6I`mYt}$nzGE;J_rV!%w zG68X+EwB>ZqPp$w=79^5YV4UlwVG@LQt^zS3$BT=xbd6lx z&2gj6vXKSuyzI^{yC$TY8)X-u{BU28f$%`y7`#T#Rpkn_ASR*aTPaiSc(4>6UP zAp?}SESKwfirH~gC5P;nmzT%Y$J>Xu3}lLKUFVcs$^{uqA^0$H!D{734G8S%7Z}001BWNklHPW}b3M(=x-KD%A^F|r0i}JtoN7&jZDIi>^faE= zWfo|q;4xLo$tsa4Lj}c^HrxujuIrNGAl0rNrWiub=W(f3Y&V@-!w;W+cs)=1-KG$6 zsM}7(8je%??w6<6)AQf{=EL9q4(5WG#u%dXI(fl4rMd*4D2{GKLdB&kuHk%H z%jA~ZUH9(G1C_E&lTboQqdDuE{@16=d0ij&2O*lpc}^vyGOpL3K2JvX?;bWGQ%d#o z>x*;cc6YnFQlY-t-!g!CokC(m*EU8SuS+D-LQ+nOagFTP$EV|IJkQe<7C|L?M=aaM ztS-*Zcg?WrdJa03y2b?sNhOJuz1;xH^BSziQp#msq$-2mXk#zqRV!|!iiyORUwrZO z@;Xgdu(L#ijF2T4{rP+uhOV}kmt`~dw_w8_Zdj2P@=eEtul$YZtd-!OE+eEyE)NhR7!n-r) z!^5pu(Nh(eiV|MQNSG?KwWbt9a+M(g|CupuH@|c16Uz~0yS@8byUK|H5doU!jRKYD zKjrCCz3*;+BV=C}&it=Y>{5P3_>z~F@+QZ@`CkhhLV0iSF9coiM?QL}f%BH_TOWRK z?%cfjN8MtgwE`DJ1rh*&1JM;%s#{D3W7d^;B$;UGi6)d%>p}NBs$WXwOCIBOUdy8y z-dNFj`!23e%lHe|w>3^FzG$u`{Gqs-rccSgBD&%BP0ElXp(X}bX)p!O(wx_CAx5%q z0ixgv$fP)lW=N589)<3Tk(n_rJ0Y9OJ7Ze$--iRy^D4Ml1P)8Q=H+Om;*u(=T0U3z zQx$KC8?$}OHADXl1jIRG2VeoH2-GoMIH9ulrNelYy6@~x>wddjuJQaG6o!RKr4!u} zM%lkbCHC(gt|#Tsl+vH7|L1=HPH4+yH-%#iGY75p+rmnTCCoGBSc{|T0XC30Z!DA5 zFQFvOlq@kx*)rCrybzU|uRyXUoL#W3V4_ijZhJ!UKAf98eJk?V-2ArcuB=Dh>{v-5 zbQSL){dtZ5*605Xk^;DDj?7=tel-0bpeDsoH%hRD*bABk%3TUr*1yR1qwOCczM}HP zFw6of8LO+Oz~83uW0QZ&WfS9(C<&CZdy~og(J^sPqK5Uy=zbCcwfSEv@DzS7zHp|c zxtWu1M6P&=U)mcY3!;mYwu#JHps zSp~zJ4W%o{3Miy8xh&bE)Nj`FKU3MZ{rj40^}w4AlNpAtvy$HlY{e*HvcCD@cK zkfheON`6Umtx5@jN(y~ja22xVRF=zBas+{t7fzg;?d9puZvJ!IznATu(s((4T3=tx zwnbTl)IwPy9zs4&$Dg{deh(TL5rkYI*Ro(-XEHHI1Qv28;eki4+Zr#0(zIlX*>*N9 zSyoP1bK2M8z@&<=Kc{tr_JG~T`O}|s4EEuz+`UWJIn%4!z7zbW+lrdWEx7n=DFWEN z+I&>uN90SS5$aK!4@Q1{*vQ47&Pla9Qk^d8IBXO*|K9oMLfi5>_HI-3^i-A3uxkOrXmeSz(+#2ysyTq54N5ITeM>*Rpyif%E8|8Lz;1 zwKQ(ICh|G5ij0Z88O-tc4TbMz`@h=ln^YvO=Mu-1Cm&ZSK5@QJ1&~mQ8)XhfXvUsO zN$1D!Wq)J1=a8M!sBSF;^xHB@V@YaD-R zbeq*Ste>&cA>^PLTYaJJ;p=7j<@MPsSw&-k z2I5O_qaaRY+6;z+ShN-;4A|49{90>f7I3V-r`V`z(~MBPs+CouJU{ z{=no%fS<9x#PD?iDS=Xq>-w_!@CD<|QiW-TT#CzJH~{jRc0hGqgEWn1G+xihVx`qK z4`O$}xTyFe?x3bs$`5Y7u=UY&x99PCoaf%`Y}5I;RDMKy$y0(F_5Mq>8RpZkjDJ?v z+P(!P6AZ;oj8BZqb^HwDvu>y)U)`$2?6N4%6`X59IXvXtaiOVV469%f@{&s5?zc5u z*5!J5YwFrk`=;5wheUZjW%mmz3j(lhpz0K!Q9np!y3U#55awy}^Kl|=ZZ@(BVa>9~ zdIxxpun^eZSgMS(zFN%1z*yuUs}ONcWtos~l@XXmMmc-H0?B907t;)x(tNyd-Y`wT zjFxXz^W}K@A^1nFyW~-cpzuv$HI|$UmnGIE)CwF;io`VaH}`=qWuB-+G#|Bkk7{r~ z|H=FB3b%+iAeBqkn&vY9QsoDisv^@4`w8Ap)1P&ICD(_`SxT15jjyJI37G^gl~Klg z&~~4mKJ(-&s|h0V9G$0fDTLLn8g#$^n^4-gjO+Cqou2{krsKa>d0!AXwku)N$o}Rg zRKGs0HS;uoZrZJB4`I17mc!+{`SHI>xFY}S>(gUjiyoAkIMVyWr3BG#MKh=dAEj6H32& zCbgk7P3JRbeAvB7vjYL9YbQ64vj?z4-}jq7xV7-aCAX?sWCkduR?fMRSPR1}hE`PX zl25wrSoJwa!3CqjD6tZfcMKt>yn5HS#>I8=>9D=&H$(E_dO1z*(g|j$YNH>YpC?a< z8*9_hHaVqvJOY%iAGFqqWu;o9JIXbsz=3jHLrJp_3Tva;&~KieUXG_{ty@Ywr4+N< zbxqrC5Nyn$vr?czxw?L zY5RG3;V4EIsOB6J5wsdQo2TW>S@ZsOpK{ETLj_8(oz{Irb! z^3BuZ`S|v*HM(om?sj+c-KS5S64q6%D zfV@o0RS3bj5JTUrPP`mLaJ=bIH}(m@ASo)tT($JYHfrX|q$ty7>|69inAW zn8*MT3a>SDEP`stsghucGDgv5jB1&IEN$+FN`5|lqvboa4glbgIi?Ls&_@l7I`G(P^q$yHO)l}YT zWi`}F#Ij;lFmMbq&)3RaMM{}r9aH#GA_LMf6;OG8{_}eMfyD2XW~#M07i5ZoMW(pX z(a$BiikTO%szc22`XhLu%?E!y^C5M^$MN|;iE;+{K8)XWov4h3DzY1x)yi&U{hLSw z738c*@z)gF=Kih}5^3j4bx)@2S$n9MS-m3Dp$Y=F>%VN9Ls)-~b>$#rCwTXD zu5&tlU)7$eCHtpJPJ&_)6P(F_+;08!Q!R#TuA4VG7Q%~^#>Z(Lzd?~8-z5J)g<%d> zLsk2nIK!UAlVIN$d_jp6ehzg*6Ysc?q9+Li8fuPl6#P~ggQlShB~7cFBya|jOU_99 zB^1AOh}nA=Gcw~-$?3$^dto-*NX{uNPc>EG3eZ!F z85HWuJn3F%w93BGyWgbpV!PhCvd)gTUx|DLNO_5@X}Mi^`b4bZ?U#rur7HZ0C^OW> zy*5%S#9W==qSRQbtGNZXpf-Y40ns*%L_Ybal33RqIOay>5M3>>+aI2%h?NNff(L-E z5gGL1Jf$(I-L@%9$(eGA;JyLTu>SYp9Pqq5+|SS1kH3iSEZ7F+mjo}~ouFurSj$Wh zxl)X&7?QDcL6DEdJ+9Y3Q({;*s_Ci`B3Ons!Dpn6 z6@T#jj7@=ZVCA9a}o*K-&FI-nAXj!(5}+LIZ8XEOnSc=XkXSS zDhbiLvik9pYNgDcl@%Zc=GubT`_hexCdBJw+sp_43TjOLJ1OOUOpFdYsIENJjnJ|YR#rFKK{4z z_)p^PN3FCq!RIST!Mg<5H#&(HmsFs7Ed<{TkQu}x*cRm;%q_!?3rH2`aZ^H=lRD{4uU8Xq*$fia4=yx zv6RLgh_ja!5=_d7~@j?22d@ zQwnv>fj1j2_sE(Y0+a>B0<0HYdzOXeyr$*!Yns2WyDlxN6K}XViSmmye>l!fswK}a z)@}=AR?dQ~5G*fO%NmU=$kb{nu!Jzy>4n3fc3zP3!dVGX?>P#={I-t3`Ta9 zQH2VTBu8l!qONh_Y(^!3owaVKc@*h0ubJV{zr6=z$7|&w6?>(H45Am=4Y0(>Fyx(02a!evzg~v@-$Z4uln$V>oi?P;?=T(Y@5HkhqYdk-d;@g4S$qG=ds#2+>_H z*&P{SzJ4ktHKr-q&Fe_TT5UHUzt-*T^zs}pXQ}}eblYv6*UQWIWlhcYt(1kRFqtmb zXB3%p#sM*w7*nZA8LNl3X>X7ivMWQALm)AC-QSJ=8r`pD{V&sIY8IT>AqV5mYMw5*eiah`!{%~*lwIG6AVS&(|iZNyaB@fXwazT0M>L!A*3 zfvkXDv9U}(Gpinee1^sD2J@l;69>XFLpe#xN;d)`!z=_B4E!W_wgD_kGefGeD$QdlV4I=qcxzemh|(}bsxWA-o7=KbEXda50#nMah_L)AWLwmQmK_taTJ{qPY^$yrd=0_x8pj7N{xCjO+QZ0 zVZETpOtbcvv=zp{oT#|W>DwL)sHE-EDH3JmzvI(`1E@1hR<)`zQ5hx6{6?M zxwo3Ik9!VtnRvPcaG1# zdX@`AN(Ef3xrW=DVK95!h(G=K`P1{c*F4vda?QRVk+4Fz*l2yqsHBz(*H~?*cDDI+ zynH^M3o*`krFijcW7|^e^Xt=_UH|dnt<^Y&?2Zu{-(mgnQCGn;L1rQUMny@JM?*D0{d?zaO|{5oBYlwH%ly}2zlTM+?t zWE;PZ0s&AN)oic;hhnT&+~g3FUtDyp8DfOOs}#*zLd?$E{oQtm?({k*$!jSk<+bVF z?}j_gD}nyCzBD`z_D0#wbaV(-D&SH|n^*TEi9LbLK?B^p`OO4}SSMxOxBe*SnjyuRp{PuL|EwyH!d+ zu2L2Rk>l#!T#MH{6KdkD?{|J$S+nStwZqLaUQd^$-CiDUZ`<21yvOs)H#z=HR9gK` z7&3a{ETO!~Vq4>+j6%(#^UGMfo0f=TaZ50aOTnds$jyeUrUTAIQ|2PXO~9^{4$3Fa zuTuSvW5Md&@{43BM8oK&`lZ07CP_Zj9=W^`N~cuf5|uG!@r1MLyfI%XX;K<1TSr!g zf=x!Zj#V{uf|3HtDW$8zb7ckPkdJ>1&Kvu&rIw#; z``5C4Kfe4+T4%LQ1+CUlb*b}#MNNDJO30DX`y3cBA>|F1jCCk@AD44Y7fv52M%(xt zmzoPhtHr=M#jv1!XLfDK+fwG>RS6f#RmzD#HO--df;37a5t@{;EeQpd!YQZdUIetP zWH zLwGLrT$5*-=aj+TFuo&=+e4G-jo_NN6y2T5J&J{RiQ!r4_gu8d8IzexA}2@+X*(iG z^)c62lT)gV;2;@J5|}5JDv&@`&~di%I)pU`f6~0``ZmO?WXBkn>rcGwIFGCBKGt%n zf_>x}2A8e-OHxE=KadX0&z7nAlxde4{xqGPo%=Ez_7+=~$uqyj-z@+jIe_ zWpbNJL}gjoh8n9qFx~sb5r|wztO(GRJRz+tqfk9EhAgO7NRYWG+3!Tr+2;}oY82)@ z>b2xhGYM`@_dXU<=_>3^%$GH@jV*?2(_qepwGZup=s}rhmM(=~VFSRO?{`#*%h6)=b*(mTlYTK3=OIU{6ziSU4-Ssc? z4A+;xDiLfqq|*M|d|kp7(lb|{vA#f7wgr15*u6;qVmhYUyRc5o8XPx_1>_ws82rTZ z*t8$6my2O7WDl5@I7Kbie^&F=SZeyigDinZhGEf`_S+bjun;MXqw!V_|6&W`c)#esv7Sd2y2kzL}oUMV`nJ0%pY(_0ASuP5in&CQLqK;=Z0Shgi+rc8r^%x-o1Z39Zz98*L0CB7+qS7WbLxJ5EdnQ@M}m{B_D0u z*T}hG0*fnzqCu`g48jmlWjS(YZufhsG|&&Ba#s*m@Messaa}`UwpYHKOWj+eLYVtj zSYyuDvsHXMY{xM??hv#HB?~N4;?}l4`Pa*08vWhPA>|ZnSo~BBeXg|d%B zyJ@s2>+9eB!68KkRlln}cDZRlEqiuD&sJ zv+1b{f-1OJV{obTniD`Nkr+2hegAI%?r!_#?dsElkW$80((R^iuaucp001BWNklu9XF={l{9<296+azvg^m!o2=wVThcpZCM? z{kI=Eu$SYTOYC;HuQ|k28{PIAUZ70VrD=W|Lt){t^Jf5%KMWMA~wHB8v z(;DJNeK}v(n0|Nvj_bC>Wjrqu8OknrZ}~P>VNpmL>-uLL?z{cp(fEal5Sx!%fBKHL#kJVd>7TMI563=x}-c&^@0+Yv1$73A-Jo8yOKjC&Q*~mlsMJu02;qKt#vN4xRPUJm{>> z8w6kclZ&s~>?qMPuCLFp^Y~NC)wXGBq(U1d3(Y?;u`_B1@`{LYIR*7B2Bl*aVheKX zum2^?oGBUWQMZk4Z~T0U=xWgvM!jkIVBBR+*9#}oZOaK`h?Fi;zAJnW{+R$EA7eea z$b`C)N@%WxlEts2J3HKlB}8{E;Y#7o`_6@B*k!wW$C*uOQ2=3jbJv-vjpk*z{l>c~ zr={Kgjp@3$5U`xR=lH0)0~fN?lj(1{{F}5qgB&ZCP$aJ&(y&Zdq<^OJT;Kt+3)i1H zkF0*sTr$xz>ass6)76qR`=~pe>B>Oo9Hgw32vFxZM;F6^T{n zN=;cQv~o!t%GDqWj=VQqiNHV}3}WZpVh7VS{RF`|DK4IoH-iL@bsZ_IiicP(6u8g^ zNW1wtc)yXiMoGUihS8-O3$JWWJP-XxWDusOLT#ywHl~={oHKAr>l+%U`#;vmL9__5 zmN}74Ff+xKdO*3x>s9UV)b71*H56Oc%RHu<;qdr3F8by5&$3s{?uvI1E8v##Hqyzt zf2MjHoxtq5UMjNLG3m+9H)hUq~u zd%3{n>CbmNA@nweWu2FJI(7CJA#SyljPP=P_VYz;wkR|gmMTiQRVXW5{q@MzyiT9S z<4Tl5=3&yIGDaVU-Gk)Ybv>@rU*QVd?KdcSSSD`UQYHu?#7nL-<9A_pP-bI|GQDce zeErFt|Dv1sc5u>XM!44w0A448Z z_W_wk#+li>>p6!LgQlw6O}CkHTcfY&=h2mN-rc@4@*&hyb!VvCe%O!K9~cX!zX@I! zB(?px#*-`;C?QOL?LPd+nAqY!HHR+DbEJTBkNi;9mqgcTq3!+yv}PC%Om4L4u%uFQ zH4zHpY{i2A~Owo(-)o*iya=He?D(+-?y9Z*CYs7j-P;^P50e#&uSvxxL@i5RcDa#^+Dln|n$lW7cCV^N;g%Y1F`l$f;`EFr!jH z2}l)HYn9og@P!+RdQ)AZio{LHZ~poeDX4Vb;hq~og=dBj9q8GA<@f zaTAEe0!H(CWyFM!xzpcwR@cFI=(wtLI7NSQ6RORFX|%b2mrtU&Kaq%Rb5n8y^Lvy} zm&?yG{OR5Ie{Z*stMhUB(YX~-#29(Ikt)zUQRf-!mFNX9N)k#&NrLx9y1br6qeDc1 z*l+I=+L}|Gez1}_m%;gzeWQOXb*oy%Nn^YqPr|e;1Cmri6s7+yi-l#)rCswV*~Hqe z=9EGJ&?T*DdCD2N+Uemj<(gAay*5MVj!R5b7z)En@+l_?9C?XcQkH<4agh2T8U|1x zt%6l+p*6gUx=aDqpf@|EEoMqkm-qsy^7eZrTB)L&F3b66(@Ll#1Fu@knj1hW(RKY{ zmbcJ$rfE4%?y^qH^WitYS9tUG^~rR-)H3-?aA7&WN-i|ZH5_NR%${yH?@SXzgm^u1 zB|`{OI#TbZ@s$t=)H-@*Obk;lB9-hCl+pWnl-)MuOAZ%5&kXY6{%{?yt2;p|vf0&I zj!&P|!$$;(#Gqy=IOUl9tcN`bWHS3P&Xd^e@0w2fn7EG&OCo`0yWQ;s(dl({j*tn3 z&=?C6QYr#fVPzhVS}SAwu$FcDw*`lBjvPg)BC*mc&AGT-oV8$^Trx0b7=qS4hlCJ_ z*I1#DtfXg0+EykAc-@-@i7H5A4a;U2o=f_i;+g`_F~{PKvI2zFW^w*<^+AZ3bJN*= zyGeNkqD?n6(jIn$t08zFeb_$i+FpkcD>BVi=Po|rrqyrr)yKejR}xUdSW;sKhI%b@ zygDDlw%>`vJ0|1oPF6P4a@n-DG2MKqsy}RA$M*Z~Z z`7~Z7hk_yzKrR4TC;?nar5eG;IS^t6uDCRuq@l^V^EmoqIV+9IoU2y0sV%$B&@>G( z-L;KktYhr+^-4&;yT9LUcAuUvQpnq3$b?GZ-Ow~vUDmmzqGgMKE`&8kpMqdw=nwZ> zd$Z{;&X3;z?RPgH-|z2l4vbT&G39KefC}2k#z-w}E-5Bzt&K5oEVGoc%3j*dW^>r> zK0Mr9=J`;G^9Bp!$T?z4sWOsE8e$HT)v|MK8-Inid=^FOYFTP^1#Q)NLzUna68b=6PKUp#?-=0x~1fPA(`CZQE;3>w3wV zLI|pDw)Y>EY;wt$mtRA3j(L@xV%-6`)IeI-dASgLgQd-7&9Qnn7sCDBx4T1odi#>* zD{|8}gKq9nYDZUTT5S%9C}d-7n?m$Llz8HDyK8&)yp}K}h?E6@kvg+d$J1M6O>_5~ zw!4)=Wm<9xfEt8kISKF;>*-hvyd3U#oPw96V<|NCT`xp+fL67K5$WY(c&N`=X2h zFpd0HwxX1DJ%8bP$B~lzDM-ciyJY~IKxDt3K^>HR6rB(fyThHoP)SGLY;&SOM~zD2 zyA*y6M67;;QVJhZ8rR)@c81k6Ge=Now6}*0y}OQF@dz?RXjsd|rqEku#~dA(8i*rU0A7LdDkw!ipPKDK4}U1d za5glXnNlgBQwVj<(%eVku^s^@5{%cO)c?EES)@I*71ejOo|Mt70K(7O?wB-^Y~<~n z-Z1{mn}%~<={4t){Ra|3Dy9Sk!Tbt{4vF>Kf3U;NdVNAhy0Iy(Lawsub3_DSj4ISp z1(4)Ig)vuJnT!%p-~^OB+z8D=U3ENd_bS77jUL^rtd7DF+nZFDG+!|nuv~&6r(=jbDD! zc7v#D+!mw-X>aeqDrf@8Y;hBuOTsQKFY4=C~EfW z__Q zJJ`Ideyv%FVNlsk`7Z#S!xrkqLW~$@8vO3y4@DwIRbze?RuU1%M}=CPV>PA-L$_f9n*-Sy%f zGW*WhPRgNj5tqMWHW5Z2{#3J8rV_rdB&6IjsaTnESk!P}jY6zK2|^^!S<|z$gwu~+ za$fGH>Fnoct2!qBBh$r-5oySA0t`Sp#-a@uVlW#4#PeKpoP1c;nZ~5#HWJ(-Nl~NeETyHMol%uI(8dvhu;*{1G7vqE-C|oIHvK^ZGI;Q8>)})xr8hwQgRuYR4Fc>OY;XN zx)8iH5$Xy>7RXq1cE7ewv%ULIqI(Qa7gHgv^ZfR6wOc9P#h5~xL-1JNn&DkH?AKGj zuEGpG!IGv|HEfgp!|8nG+L-N7e3Y69WQbJjahYE1@b`kfo5C?ghujy^+&suN3JSF* z#70>KF`(W!T4{YUc50jNa(wV>Omy+{aV)LqzRd(VUJ*OWDJ>T&MR6dZh=4K670ABV z?KWI|DvicnuAD$ZtnTu!>#DfgRO(6yx^I_x@^KNMy?d(hs&qp&`|D3!0h+rh;zlPK z-=y$Ni}Txfe*S7rlYLU{o@jB?k5X^?&4<&MKQq-Zxy@C8}YP|Nf)GvA2q0TWB8K?;j}Dlb(rrFTYeG7+-S_S;;g+Gmz2 zrvU3!n|p3VZe8))8fu+?*n%Rln|5n;C~WkVGurrI}>)I=_Y5WF~RgH4XP)ez=}~;dZa2Op)T0m+M^8Qg*gfCMY8&BxDqpbt;@0 zm4x!K@aghe!`Jp<%Y*=C)aEwNB4nQ{i+Nt3zx3VEblr7a`p%TbEb}a=5QhR#!P?j%z(%PJ=Co&DD7jSynOZ z?wBg`@{+>JBxg!FjIHXFwMt=SI8G^H>h{7a_4DaDrqH$9rV%Jo@wq@I%mPVC*)|kYlas0p?X3`;fH7o9xzo+)T+Dvc zTP|4iJ{M>-*V_K_bn@A6y4!YWvaVxrmv#L1<}o4P3X^;ar4VD=zS}f9Rf?(1lfT_J zh+0CGL(}m8^MC*EL-dO0 zWhDey-1Oz;Jgv}}1{nDmu9t-=W38$sGf{k8-;U3-Tc?>&s{ZDEx4r8+>-~H_z6uFK zN=A)VOdHE&cRIZ(#UzS#IhD+jEHE4fOR2tn{Z}`>0N4BbZ~FemC}oVa?VVfv`Q?|! z+U?=q`*mDL2Eyn;Nmaus`Ew>KO%DtR(Te@*rZvUQ?YI4QSE;19P^}pO73Yj$o@!jy zXiBkd-!^6zbVNK5q(pwcd_h!g+j17?Da7@&+Ptso#tfSjQk*`=a024qkG@1?y)d_2 z_sEDBuXP(r4Q`aS1EFgL!7;~Wy1o{Nx-}K9nC1dvo;;^vx0#6tx4e+xesx;kaycoj z+$v+_c4LKU7(mB2%X&I}ev!;}?M80) zsfJu$RnwH5-SSeglzNwQiREQ=xrlqyHU0Ko^>1nY&&Y-xf7P}vMNF4hU{-Io2wWN) z=9JP%JW;ZoZ%WO!`=IT+0)i>j3ZN)$@AT%uuUE;DQ%dgVO1TuD{0b3~6}!J_w!bNb zl~||{(~k<@bH-5hB?PEa;UdM#uy8IAL^Jdhd|tk)&T&p9n9OYztu;e|h5Sp*B1hk} zNurW!R|FO=P17(T(t6>7XX0^PfUpus+mr%AaIKnrJ*D|G(@dzHkC*IG=|?;8Sftjs zP|zh^v*XABfn}%FP4>QqS0+iQmJ{UoQgM`Q;G#!h3=6UXL^-6G&RiB?TnP=510w(~ zMANh_$mGUjj!~PfQZm-!=LH!tCb{U;_Qpp<)*ugg{VJp-GXR;I6-a`xpbb%M+!~!*)n~ zE7Sp%j^QcP)LYA#tE@8oB^^x3&z#To;4r29g?4UNutrkJvW>8 z6jpRhMGkF23uQ5inau~3`;sA! zZ=#f3N?e~gu38a+NI^EkKBYPzUpOLg!Q@iQt7#sYW^umO`o`D^u(0M4l4R8_d;))u9K~H%V|Cz7e5Kx^!@u%Lh+~KJ}JH3-2VfSAv*hbs(xjH z$7KR)q~&2fEthBAbi(YgUZuiXE!D(jV_Lz%_#y-7IDXMkN+^Oc+dafJCqGskp+L87 z?Dl~eqdXfSh#KTfnH6efEakFd72sE4)V!=|`O1W-gOUalb>F!Qymg8J$s5MFr zTz|vO78tDKTP>4hPMbZG--RWF@K32EyZzqU$DF3sXKDU8JZzg`XNLn7JHPxH>#u@0 z0N18FVDX4;7A8XBJk7^9sts@U)9Vu#O@H(I?(itBiqTJR|HKOu%!<}>HCSsw+!2ay zzq9QF00-1eNv=XoPl6MP!6%-0Vsxw}7SbHE6e|a|84d;Sp@8HGkTb)55<)(p?g%0x z38sZIXiBtPj%9wU z_|-Jpb|1Jd9NNhcJX*_8llyij@7Z6BlcRH-~e z7=0Y2y+gBS47uc7*1A4v*@H%;TIRnhz2j<+a4iZl99B1);Si#%ZWe8WtmgICoSvX6 zhE3*&!mG6R%HDE@LN*)=QsT_Xb_W92mtULB)^kX1Z0xS-zYWQ|@e|P+!|Kwe+1*EX zon9}DX<-;t;6y2}Sc-0UIcMjCcaugI*H9HO-MjTtDOujsIvUw_+kMH=O^Hi9zn*HW zLSl8FyKdigA0*~w{O3}h?eLAZk22=G{#CJw%)2j7ml7R=8obflL-sHEG|KIL!I!j* zthoWTr&xqx#8SFGbKqzj#y|_JtxQmA9<*(2L)+WmLB69pRMAKok)}dj0*fFyXIxqa z!mnp4nyM}YOfbS4Jxtrt53P5p)}O|QB=GC>3aQ46W8ZFV;`II4k5 zQ%iN{uMmSaMyMT%w$ui=0h}2p$uO^BaTls(=nlbO*ZERIipvR+aZY--2QDcmksQLL zl;}5m#)H2;=V@)Wy{}j@YRi`Snbwu*o*2vPIb}}5GV+bKDgB5f4)6XqxqB>Bpj06Q zV9SLtYG91T=|}KCQ@_i(7}XEA?=NFom)ad3a-PfOCy5K-gy9p_7z0x6ND3@tr=Z)t z%WPQJFD0CSjiwv8c~6{jDNqX&!utzTO$AYFs+1YCQnjLMNl+;yjMbVWHlE?l|Lsu`pd{r*N+o0nNtm%|06@aL7{7un{N zlXr8jNl4Gz#!*{}Vr<_HkEY+v)0E>2kjwF^B((d->}H@MnwyN7!a2KII9CeB&;ODU zb=xt@fGJmFCje#42GJ12`Fe&h z61~LgwPeJh)>=cL3XH8-j#4$rt#15WlH1*VBv2tY#@<&-R3;^bR5o}b%1o2I^>(w_??Z*@x>WCgqiT0IH+R}-#<*M7X}l`aP{CBIQX;q*V?jzOx$9*_ zLZgh7k_tudkSO|vQRv!E>$cT8=UNbiQmyS7fHeYZO;mgg-c6X5U*?b^v8LO7=-R_& zT*m1_H7_x|yuLy8N(!r6#r5g*lu~T8Db+8oNZVN}kLQsHwPKakVKZQXr?l5N8rKvvQT_S#CFEd*)Vf_fDPb80$yqIV)3gLEgygeF z&Xu&SmeVo^@05^@(INTh!|L*NcBknwbd8p3oF|t6y;DmzHk7jD}A zPH;p(sMKl6A;g@d;*=NN?5S|Ke0AZHGD8xO6%tGS{PN{9RcITAs^9GIIkI*7rP5WK zHide5`xC=t+lP`O#b9(xM2lZiS&^y`_V9Su3{47>sv-r(bX|YXh2k6pGO9IWK}xbD z1XkRP7@5?v90gqcveZmU`7a z{_K}m(dJZCN*i8mv)v16F`baH}l~UdW&rEbwDgYKVP%;OzxSPCX7CF zxinTse+lCVyeZO2r6jZoxbr~+Z-#wNu}~6Hmxwh-0%VNqev6_-N>F0)uQhxw91;JjMcIW2n^!i`B zVQcokOa8*rsWF4lTE?RLeXcH^KO-Uvk80#Fln|6@h`Q>2)|SOwI6DBJYCRJip)kgp znvNwoDz#=#c_+$W`kgY(Z?Pm`wd9=2!ZAWk6?!>5>iz*4FG+-T4f7eeYIi$f(j{wrZon_FHdsXEp?#_>~L z{!wy?=oy+gzohI^s*D!X>WYlqD#XFu{=Mk;QVU@*#^dt(6qZX)i!fW=4N4hK4P_zQ zZM(TA0>HJzh?VK)4&yA;p6LQ*WSsilH){JX`IX|txFCc=qCebZu0y_HrL;_TyXP2y z)l`rL;@0H+CTUXrj%rtC&tOIFxoT^eg=Vt-j>uL>o83q6kCax4CR32gFb0%7l%>?1 zimQc$)VxfU6RWek{t(tP7nU^}U`(p2Ok2XSmZ+7G3}W;JA~I_X+CFop*7GH-{~{oj z%JuLbQ5QEd!J-dTif(R1-==U~&Y!iuRq~G8hA`F2myx{7yT|`dm@Zy^g@UrZZ#${G zO-d=PBh;u!S!<-0?Qky`D`1znrtp&h9;aov*{g1dvlFanqxAN^P)*05-SKDM?yXeK zey?}m`!xeWzuBrzrJVeDmJKR}f)7|{N~bl;mt$l#8kI{iDKgF*qMp<=B?s=gGF3Lt`Mwz|9FYU5sinBUGqSbLD&<~GOXN6<1)vlsl##iR zzktZKbRj&s(^X0m?4-;+wp-b3g%YM0?d}E`xn%~DC3l>Hg`Jaj_pA*^#+=HstF7?IljJ=#rNB2_{F&9#d6sPEja)B3qwvypjL|gy5X)7m&3^mfPyda|S(zIotck4Y`mQHb zMR&9w`(|(NzmGB0;<@Rq>7Xv_{587DC84UohZHB4uU)$}w;$GIF#WRWdM56cOUTRY zVj2z)SncVWRD0KGoeF_a!Oh-7Ou9lw6jBbva!uLDK}$287uybY_+!ouN7BkI>lod$ zv8ynD0Hn0Mgy|Zm0(uC(@c0Akw-q`8R>-F7J4Q0iBcfZPjnpVX^Ky{{B@vTeN+_hD zqO_oN%jJ;cELat4n+wWBlB~9!Ffs+Kg$adNGEbQ?Bw{7U3OTtsx)5{8xk}BI%tH6g z;l0r9I$rDg8N!A0cKH8Ex{sb~v-Ggeci8a>C%)l}6`S3nL=u8T8y;w47|_&!{hwt> zHbjE#W|Lj4s;>Idn@)Vv&f5e2j0If4y1#YqFg*N{Jpr4sNC6VF5Ay}w0D{>z;X2g$ zym|Xtn8xQgo&L4NU|;<$3*(N@R3=g;%}zpK3d_sGbowXEFWP>u`}=WSz6GH7ISB z-LUQi`L9gY@-ymTeDiFDuR=_G{SE7cVCmT!|4|-A_>i< ztap243d^MkshYjiP~+7tP)SLaDTItkTT}g9lh>vt2GT0HVIHO$NMVpHa?C6$$#%29 zLnHZ;uVjQc}*)EXgC3P2UsqFfEG@JEK=tDv3(U$t_x%P18E( zFY`1E$KZXx+V5|+!;+?XT=y#>+9gM&nnnu0EW_-9N~zEr(`jX;v|3!<;!|jpA#Pkw zjkQEH4HE+!(+jPU=yJK9=UGXUQdpLuWG)4WrSs9nv2S}R^svme(&&Rge!bb8r_0m% zSxcKT0m03>YZQGxPnFeges|BM&K6e&yVkJUOiu~-d`JQhk1@JFJW9aIs%6TPFe`5l=I`R>DKL<|L_0u6%Z)m;D*snevZA>hTXi3EE>%Ee15PR zzkU5SWq&wll5N+ms*tUa+;))-F7GS z+ReeGteSSayEo0Q1dt3`Lx@2rBL&xGB*s`%4Nt%yB@Bw}MZ?J)cjQFUG#zzW$CH0$mJwcX&9T{!}l&yuSP0`kVh_P6Fbr zyW14cN_N`5O+G?6mii^QFL6Oqn-sDZ79@uGnB9Tux}vW2n*E1(`Ovh#Wy9|D_i3JR zvm$dZ#X3bhFM}WcAH-t!zstdua-FUpODssHLLt7d)R@%`89knVLO-j`n`NG&yHqBD zD$GQY$m$T5B3uZwfYH{+x>^?oy6GrjjB`GR7D@P^W|yT>bT!-6%wury)*PBm_(> za?V_{R9XnGR>`LCOVQ)`NfNW&mB;|PmRTsyu?SKq+u+Zfrj!8cU}UemRY{9vT?s3& zQmwYDngtu{<_D;krg`tDDYyrTvWkAboJ36B{@V(6x%{c^$n@X3sMGZzT8)(J^fQPy zr&K~^P}B7Tb7CRW`9r&YCHwDc424||1Gqiu4O6zWaRT;mTFl4^dNS)^r5 zsn+VCE+x#FcWn2>4T2~!$6TP6uHTr=U39LL0}2s_RFc;#E1OQB0>t6?Ir;1Q&8^mb za!oZ9XCuT|SXU{b;_$29%3UEc`xmNFtj0aeq?d?V=_$N}n8T0Tv~f=aiWJ%ot4 z^>GHYdh<0KP|b>zTwb2i`CsgvDJsiEYQ63*v8djH9oU7jCvxRy$!Rv9ZMAFiiie8RdWs+ISoZB0JL0!)lb zC_yz9j&b%_(5!A#A*dPZq)lJz8wsAtz$VdfRVb`H;i(tE%Ttzv^~h zDXlA3KV1rmn3ue~W z0lM)TV<2e=z;vzDs}z@7Jb`Z7UP$(HaMQJtDXClUlv3!Xf$}I@9a6m>PFk0eq7dr> zO+-?Lb-Utbm!|3R>F-OL`}|udJk6ADj~!5 z@k86+t#0l@URZ!I4Vc%`ZsK^DPcPkSEAf)$#xFzy#d=lqSkr|ViJ8rPBj41#l(J;n zW7W&)&m_Ce{(H6gy6Tlwy*4J-03ZZHjw5SjrIvz*(a)h-=1cSv@g~E$OkOl^xwS+K z`H8`Y!dkvwStZ!{HYpdZV>pW>zf}oS%P1SlazNOdJnSQmtzNEVHPK z+1xE*8qUw8Osyu5*D4lPW;p#a`Kg*lnGGan(NZ>sbDaKJYRPghq%Lf7HEnBZDb6LU z)b8zjUcZl5@aHdtY`S%E(|r6FAP`Mcp_tY7`uw;YzO>t2d;i^KNPc)yHH@D^xEw2f zsa#~gO-aVc?P?_?SL(bE^K^t_g3lqIH0icoMX0q_-L^uswK6FKSo|aup=!Gj1;IH5 z$ng$kWg6Wu=GjWAWlN-L$T+wQOc7&R})G)?X5EyxDyiRIU1zr}XT z_SS6fnN4zsTzPh7I(;Tu>DB8phk0J)`YR=RR<=~Ag&7n1OU@+&*HDnKNMvR~nv~8F zxULI^6s}NQtwo3}iw+x(Z~|cPTH?%_P@tw@#48%c2DmlxaAM z7W8^A1Z8)0%O$6xDN40NwXqFH=aQR=DHS7IJ&p5uG@Es=SXPik*sXVqKTYQkrrT9o z*Ghu2pANx$W&6hV%1C7;08L}6LgeI;NNcTXPT^D#jaj1vrr?A3ArUhIASTncA%(O! z0V&6Mnx;~7W7ITFp(J3G!nWNim!gnlV^}Hgf}894ctV`4QJPFh#4H%vBe)z~*O(HZmdFqhO|8Nj-fwy=;^E~%Ds{8jRnnVPt0Z5Bb51kXxNcOa zWgJhn_)WiRv;{#x3Pl54CBqdq-;emuQ&S_;8}U~3z#q)&15?l@k6(=^^PLq?ueE-dTSi*Rms)y&}JjB?jRv^Fo`i&r2V{WW)F|BOd+x{Q_^^utW!}ss+ z_pS5gx_HG>D-Wwwg_2tki8Ksg=!{UhP`N zSdrG-o>&4x38)x0ogof>nM=;=em#eLov*!u)(Rozs@40x*FqOagG-AGZ#L`3Y(AYH zuhXPSFhi}S_@$&M*z*7NzyFp6)jFNdAExP=Q!xyu)4?xiBTW^?G$dYgFqzC0 zbJfBys#2vkRI1ZWXC*gQMW`|RWq6sEGeY(Aq*Pl$r3$OANC`*+DM4{U%8)0!UT@a- zK7#j$l)Poh;UhABXcF zN#4$(mZI(IyQU>$P#aG1XQ6tnZUICtadxB8tzGSgxl-mF9RyD`Blr-aUw%N2%6_-n zzC)?v`N26q$HdL5TfZq~x*i^u+!8U@L`s7+J`{#V$x^FKITSya%w>GgO)KO|wzm<@ zG!cDYwuRK|ABXZ<6Mo)vDv*wu#^^IE$eMfSHFxgeU6D_ z{~N(YZ@%_96G_#6RSVSQh;quG!M|_Ke+GGm{0#U`ZolepzLi2Ow z^XFxHp;DXeZ-r?nbFm1|SrnQ{i*#4xk3LUHD%;tDX=Tyr|HQWR4S5rrx~O0x=8x#MTb zlA2f2_S)`+R9s^67w^Y{2ssh!c@FdWv!IYm@$<{SZKx|a!Cc&nrYa3f$xbGc`oFV~|kc9+mfh1}XLQ-@uN* z3$0?j3KF{e3QZHI<9z)>hAN5V(U)1NAmsumA~dncm3S1c7venWrEVg@=SnQ-bn=s3YJ=iIman8rg9Wm!vd1l z!g7%XaxU{zoTmBdSB8b8jqaD66UozD(vv^cM{I__S?#l;*#bME?N1X_UBv}$Fy+utEvQu^!*yKCtCPP9#!4;Uw@R(kV} z)s5+1iPp}CpWXNmqDgZ7J)2$>36SVxoP`GwM&L+ zIM?C##GHao!>16=DZZ>Xra%e4q*O(mxw$V`uwwF6wrgqkHK8#n#3g!Yw3Mp%mAs37 zEVU+P(P(X2ny-VTKy?f?CKpo@ZNn+0P`K6sq&B)?Dn9t-bPD5-$j|-$UAO+e7INc| z{G_EyB(wJ=E*Y1UUAkWE`Ws%qVckh#wYIw7)tFdR2|@~>t}p(Abt;*euw;VbNt>Kq zynI-#-%Eit=Vo=UyL*&PNwL<&T~4~Wx9dL7A26OWGs_iL@|Pd3^JmsF$7#A;E4a2* zTt}){2uT(tw??n!sz+s)!RPp*HRRlz?t7(gLPlYfC@j!AH~MjrC57n|7wlJe(x@+= zALbDH?W$|HDW@1`HjPjXq2K=H_P775q@_-uQ%#vrahcBlQcBCZ&yd4Zq}&72>F^V< zDQcC&HC{fky~FSfVNPUo8jS^_MXvTf+c0~`wRo)Yl<+LnZeAX9zDL<?o)H;oQ%D5=0My2>IWcTi9_Wcv-FmF;%EJjUe`{TyO0fDNMHk||V>43%I6C6U^c zo~H3=yG<-c3)yzZ^Yb~CO|#lccJA`U+D;goU@j$<;Zxi9pqenxPtPCD*CSUf`j(|= z)|<=W#BOQ&eViw)8e!iG(Xw)qxIhJgP^RoJ6=O|)JpSb8FOoX0j@!M|ZG|*UQ_UGF zc^?z$yu=*m5RWO$sP3e(l2_hE6qN|mcn0r9+pye3hbY!0Er{55o0=2V84}F%#}xlS zWTn3IkrMKOaH&4p)hp;%rJ8X1Sou)u1*)j>7T5~02-(!4b7T@#7#%~H zFGGL-o$T&}eJh*WkO8GpVy&7RFzqxS{q>yZ%G}iq!xR7(se7We6piXO$@^5Pq`92_ zp+I%nFeO%85(sK3+mb7yM<@vrK&mC@l7-MHsXz=%C}n~gC@01YK4L}H-?6<{ePgY` z2*Hg^*`Izo4=*Jon3t@!$rX406G3lP_`4I70mtqw$V3k@yqlGuw{9#l#x=FTK(uk$o<`Y)A!TxCCpdV zzCoq@GP%pFDCWFmUr2KyP{85(>G<+7!~nwVUjI81vZhJO4Ku_r0m^Q*ot>Y?GY5Y? zofqelJ62?C8KOb@hq7vLm z=w3@TE|ZJFxzmSVKgPx7y!Z&WcVBOBUX@zs>7qCZAfKt$3dIrYkchB0+Mv+Sr!z=( zv)c-xmBw1j`S9$fgOpg1pg_ubn1@Emu5DQ==Zq;x2_Wot zy`Gop`EqhKXGAQd`*q)}u;i!Hv1Z(MeTF(Mv28j=a(*}tPhDe;F;+2^l4_AcLBXf< z2`fleQ_Q9lh!`?>?>FmawQAiA2=zJ~Qp{Fc0GyU=Ev-8}hpdFU-}X<#a2VbF`qlgU zjg)Cx7No=yU){VSmh-%<8(X0QNdmx7AD@TA<(xA6T1kl0kfqY^zq&aduFgBi@Y9#i zi_hP^dGqVTQB?TrzkJuPHN-LwZe`kB>v5dj5=Dtt7A34vQb;nYMPey&4p|EIdUxkT zK*HU6t&Oot`K2^kc<*b?ukJUei#wlYMbs(Os+JO=RG*`ZHKi&j-)#C}a-CND%`Rln zEXE~-R8w*>hrZoBUHrU^oz=A#$ew@>(^W9@|M_43Vi=#M23bM39zwJf{Fqh>GuS-k9c=DV2Im zj-g5vgGirbX&^c<{!zf6}M1g zt)@n_o3Fat|5UJLZA(ocs_DP2bxvgtWzkZ0o4?f35@prgki9|iwrTdrW%4g+_`yg; zxT-m@%v4?wb}>!e{a=&Re)#ihdrKtZI0_Q1E94QuNwv!U*SP$`EOMPiURJxmYVLkB z9e>T?rS0Fi^8={}Ql;VCuHUePT3|dcf&c&@07*naRJ>|-s_8)iX5HA=9`ZE)H(BPI zZfyUi-F%NAj4`<`HJ)X2S4z(FGuBMC)>!>?PUoLjy)moTshU)k=0IWsUgs=pNFrK- zvE~A$);uUn5`~sK#YmO83gWfWjrUW{9Y721#&&m15^ISLMt`Xgg<1pEnoCVfTwV}I z-S#;?%JQ=@Ye*}?T+%bvXxdidY8;o@IU!Uf%)!^ix2s+&u9c_7V+}%5az47;wrF+M zre)cYf4ERC^Wwww2<0q3m+1YNZS8L~-yIcu#bl#s&+HUOrtCWkoe9oaLy+Swze@byC5LN6*->LR1 zs+5+`2$Vw)`A@oCNws0d;rLUY56V=O>)<7^WuC^DpBV2%D^od_d2quYDVCBvlqV7$ zP>5kk-jWDr^-6SKG5R<>SHKb%p&Qe!OFWnGz)C>E6wX8eqNtb!pq6bxEwMNK?)viC z4?p+qebeqMK34v`xEbgbGvx9tQMu*idOldSO?WBkqaaA3W{|Z^oPI5-5&hSy1VTC=iEuUVyecJnBBO8(b^8*BQ_ z{qL0Jm&aeP=NBoYZFjW*EK6{g=w^}@3pCwMsJ2R-a?O5>@v;mPbC+C_P0#H<`X>Pm zseP47p=_|4;dP1ZJ3|J@&7ZcS4LSCXVz^fsCBPsjq#k~1hS7F z)ATuqUlG-6|5ph)E`ycAFU}3mm=0J8@+mH#V5aV7zf`z9{bF@!HXGY)*w_$eL5{f) zSf%=0T!nk`N{=r+Iv0k-Z~|-1Kj1z}7%2 zL#R<&b+daNrs?$j#cX=p?`nm#RGElXbH2Qc$Iqqy!KiG_J++O{O)6%d+`8#j>pOwH zSna62Cz2%%%mm1#R>;>Ha#+qKT}n8F(?3Hn+xP!o@9uLgG0)L2ils5@0IOUuk5^0= zqR433bV@Z)mg~!>oF|kK18_BJwF2t?t;$j^C7u~d@_>*byXb}-em32X=xt8I^!HMk z><`fkVY;@rxvo-Oh`6#jeg1^;Md&6Kg}SRHt5{gkGCd+0)2@}klKe1^dUHq8u-fa@ zc9|B#?Y3`}wS>C3CxH%ABnT{x3(TUl>vw4yg<`wEO)2I=kZT-&t+`}%FKx>ZF*9MC zp_J;N49I}kCMqax4N0mfn?9xFmWh}sPFAwkT}hK$o<+A_-+oINz(v7woE}R&gDWu` zz!=6)RqbN3Oq)h2fcbK`gv$}YDY@_VZ&kk~W~i8>2S_)!-}W~fh?n3Jinhds3NmRo zAA?&;=BC>kvqdbbSuxr9{E{Iz`)`ZS9 z@fem-u+nyu!W`$tjROGN)s9#1bi0e=iAmY+1_?__&N%{%{#x>^_2&F?iIJIWNvUgF zC7X=00{P&xpVpg|)?KZtX}h*xkEfT@;dywf#2bfHiqXrAn;M z8bQnqLJC5FiY2&kczSRt_3OI~xn$^Uiy4JLX_}M?0hBh^VL4vTp+v1r2q{D=NQ*lO zrg51M&m)8FS_;uyeS33z`}y;eo2G5g(>#rHker27N@^GVFo%>yrwj=}LbG6EVuE2D zujAt~O*fmnB@FZI8R}(NSnB=u4nhtYgpy%da-0!CD*+V+D2R0)&#^AXSj^&dzI=K* z%_*#GtGT2`bn@$ft?>27-~RW79t zOHzs()k!J5OV??7z3VF= z)~sUI&bh|g6ai}JRy~u_P38akw|9q^hXQHUZ}yu_aOrYBLrq;Tl#y7KR%TevlZ$=7 z6H+lTRuGL%Ih3^2oRO_UaMQ2L^sD{-si60ltP!Q zBfDC!zfIAfu7fdMj#nZ?ltjifub6smq#%`YKwSZ44gr!UwW*?KZrB*C%#d?U2{P3R zY4UFJ&Y9K$1jo>C1Q;(!@k}81(R6jsfrBJ8q-q=1u*ADz!JmH z?((T(MY>aB-|cRgWe$t7($CZ7JgqjbnabkNNWJM^7sfE2S)sHV+>pl4C7jIa>uPRF zlre7R;TLJRS#AAvMrDM#sYTd!4bT)gTH8bBTuQfj+w^ZROp;td2}s2UvPA4l2{{Kh zABF5vl*hvZ`JW9{miH(-AvNhX#IeDyyZI|W*<`PQ0l=7VCXWP6I&FkP| z$tck}|6H*tAzmK-hY&5+E`%xgk(Cu#fK@J~%%4h)1zasfnw{C)kub~g2MC(&eas(f zeUkQDW)eaq_o6n9YVV>?1)G!#wjGK#j$be}6<@2ik=^SsJYk)t>B-MW+1??P>E+Kk zEP_gjrIriBY|NIZD~YO*LT*{z0(WsanZ6~|K=r z{={mNNust=Z=j@{ry_LD0k|WvDSPa-~Wt_YtP6Xw#GQMLDB?!tUwv3A};O$EEh zkAHTIOvzqCi@#G&#*o3Wf2@7fFS4C-5oyLoK%j zlbc_ReW!XQ%^s>jLaZ#bD5YpAW37vuSc(L?#3Wb}H_^KiLkf#+EE|++U5obf5o8ud zV-@51jKwvbEU_f7l~H=td!LufF91?Wvs`}7WheAa!3Ijr=u2TKZDo;#3`;H%+nYBa zbOj3IPqm`ie_P9yIZ4%*GUn;ftZrD-{P2ewT#7RJqvVV%Nj6HoD|uPwKd^-E_OF%F z(SMmvKT>W0tFQ){vrm=Vsx0!D^OEz!eErg{zPI|d=&i6ahNXl!9R4nZKbUqUn~p&Y z!%sd&W8Sj>#8Jz2uD+y~)p`%4HC1cPI4sdcsk8uwKzYB=cOZMxtGxK+=6N}l{35%r z+vYpfz02&w^n*~+u3r0KYmrKJB}7yc0WfatW;YGL2p;?W-_9>1X8{KMITkP4n|E?; z{qW0j{GR~9)welJR%$kPu~@7@S;2aprsBh=#yBNpE(@b=^|pq}q76RfRPW!tnXWHr z8{%DbR}ju_e$%Ypxa-q${Un4^MnRR+!1K`ybBj{ScBR($=TE62Dp>1JCo=CnWwN^5EN6%?jey_4%+wyWY7=LR=Dk<_Ht+L)SL)to{S zVuM1Ie8srbFuQaOuaYw?`GDrVe>92@7w%d$Naib!xNlw!Xf>QlWjMwCR za+PV~?tQI$CLt9082sf2Odra^6~+pmrP|ol_W3a8Fm~-Gy25QoruS}!cmQ6T{?7EP zO0mKvEIE3pi_;o(Ynnz#yN(rAW8Hi~#`Vp;7Gik(q0mg!gz4e}Pvga4ZdP4MAHjFW z!wZt%-~UBHo&B>&7e$&esdiu0PRV+B_?4xwn^$>>kPSt_9FcfRvp=5%0NGc*SiAm4 z=_dIjiy}H*mrzR=fZ_}+73q}}Rv1}^hd5lNU5keD66%| z`&MthiaE}wBS9ndYIXN+b^EH+6y{5D4l5z6VVdIdqrl@dfWiIt_AL-E^YJ4z8am89|WkM{Ph=-v?4;ri@@H{Cs(Hq1^+B+3G+ zU9|<7AWHWrYYx>He9`?rC6TK(`>!ej8P)9f0Fai*%&DRq&fV^9CGF<3sI_Jc>=0rO zb15izg{X|yL@2q2rk_+kH*aO1nb2uB8}OkVs$>mV}Jc;}4f1mWo_ltuX|Mc_LAe zn~DNa01^NIm*IG3L93fv!R_M5oJG^#U>vWPPsmwI)pWb$2Jchbf0JVzFCWg&9{`l< zx2D_W6kG)EHrBM#+_BvNk{@Q4MwzBmOmXych%V%ctT(&eYp$C0MjFeqq7+&*0_8l9 ziwh-HMg+7{_XHJDUY;MkAGf>xx^LQ6Q>9vSL9)$G8x>=4ZUHLD3UX3PBN7p6ty!T9 z(=g0272R&SZdFSnR83YoD-u!?2PH#c2ksW z`d(89sf^QwMMWqtFGncVTAM+4*5*`~6amO6X|%G&R-~MBEaaoFh|}WRMvTi8bEw&k zV_0qWY+5Ka11QsBg8FYpf@CFXq^QLM!~}&ZA_1ao-P-k-CDN<7`>B9t=i@? z&N+o)xE{{eeZNTsuj8=k5QwLchGAaYZqu$le0i~o_v`L@jkQv5dx>>gF0-rNyO;B6 z+jf${=UA&)b*(0`gvgS%o2`&+gpv)_Qfewp)z`Sp@&6~OKDKSmvI8N{x%~RwHpg8T zE+f)N1)>B4#wh4Pk7uSui;ij_DOD+D*o+(3oOAZs?sv=0HEHm@#MgR>$WtuFd68+F z7Y3P#b1h1mmvacE2*j7`bIl!=8)g#HqWQ?Ww{t9oih8jv)%-vak^No_pV!O9%I5%V@{W4-t@iE zvgQo6IxU*UON5e1{vZE1%xm(t_udYz6c8(vN{T^bs>HojE|oPGp_F&+(DrSuRV%B6 z%sJ(}R-uhC>-;G#pU3NXe1386rs+1dUVXRU?eB6~3S}vs&{n%a>EZnRiM_pl{oQ&w z&htmWsRXkAb>kdXEpez)v&de1fE3cGL`x;7ntityY#2d10|lrcYGIrydCALC0+K-6 zYJrm0DWx;#sg`LR=Mq0_6DsAjLR_crc5h8Av1ReP#7CsFQUWCA=?My7pMSkxu5I_N zYdh9bW3RPc^QlHYo$`46_s!-3MKh1@U9%Tzn8E@e8taD5{rK{EeEC(X2Gy1YBC<3_ zur_uuZj)o;BDHS|1nnJGs1$1TdC6AYnBh*Klx59jWYEl9L9ko|f)Gv0ml~PL$0_6- z^EwOG{oQNTHY~l6$R%3c%jSj@E2X56dADU*>U)%c)BC?JMbrN)uD1 zDiv6qzhCFSqSzR-a>+D?cDuKoKR;i_=ZmtjsKj7vT63I3Ir#p*-F}neI$tW_8ERUd zCn!yxK7xQu2Bc*tydDJURL&`22~rr19HiZW-bs-u&ZQDVU&1BkPwVx7OvW{}-iGkr zdneUhPOEml6jQ2l{uY=*$U<#FLdqds{=)PWmn$(a*s{ds_%p4axd;s_(?_U6S*N?( z5>J#zH@vGtWg4Yin*F<42?axCw08v_6rl08l9a$KLW!$3EsF}m33rQjQ-zcY1QGx! zYXnEGLa+r|Qh2U;&g-F;Pc>H|z8vQ=<4#&TAAc^X$?GAPF-vv*@K5FXqjc69Sf@Xy z>E|4-iK5iJ9Ep~T)fXsNfo8qFTu$H5^EFM6c^SiTrg#wYX#6XHbolxIe*XAtx49LV zo#J>6>GXr!etBAMWbKr04yQ$9v3i%XN*Ou6uldOhuFN?mYPVgSUVs*Db||$(Ww9tT zu(BmOsjarctBrHY4sBeQIDHmoRHk7ebNU1!)mWfCXF4*!G3|qHtk8|oE!sYZXtfj8 z6~dSoDQha6Lja)=8)rIY1yIOyN$DBuibB-%oXIHbp)S{_52B(5q~+>5GNP+-P9zX~1Df2%h)2sVc^@n2$ExLWUho>RC!dvgmypjJxz zG)LdQGFmY|0;n3763%+_o$2<<_q80#@&Rfn@t0B_rFuZU0c9x&1|<{{Yk^ia{d76W zJQ*pR+HP+DZq0ECL2(Z$8*hN zmEMq&VppYt0><27ye+F>Tc{i~J46sp+D#L$E3Y|&5!|vt*`t5l9M6n3lNVP#N zt*KV5VZMm6de=9b8^k7tf(o0>ZFAeN*HPIwDMwXM$s+r0yZJJOB`;TLoRCYUONt8U zg!;tTmYf7&ygn;6O4DS({>|T6$;*fTr(#jV9Wv*K#dcIh`)km`Xv4+UpN{4m6s|Iposiw9OtxHrMk>x zW2I`k%QS1T)xNEHMo^VRO_QteD##>(5+TXO8D|qlqYuh%xfWQ?(N{F{j`=Htl=x)9o$ESbp zcU#r=m#2ixa$`}wu-?Wpi13RxGc@1LWi#|Utk>oI*$x(zU9XQRt(7J6rK;Wtp`oA< zz)3MseCE6=?v=wSoz{@In{A$-*US4_;pYB+|MnqP^YY`r*7bvNcL*|;R++9`-?>6mrquPg@3YVmvM(LH^YiDX%YZ<5O zzhOaT+GYAo`PnGVu{G_+4{eCobv}o+bdB8Ieu?UCok5sZ8$WbguBpW5oTlsQ(RA8x z5eA8GOJ1QCqTaO4{$`h^<@EeR$*aOD#cDuTCgOyk0CJq4OFV$wNNzMNLK*FE&>2RR zGAGii8A`?!AuV&BkD%Hqwkc)r8iBZ6J|SVg{+pCbcl&p~bxOc|otNv<-P{V(<|Qft zoKGp7RNErz5?`ABm2KV;YOBe(mZ48M3z3)c3F$@1J%dFON=hx~T4tf{wN+RQE$^$E zUH{rSa^3Gj5M^D`x>lNuzf=Bxo~}7uBrPbTb+lM<4^EJ-DI%O`GAIBN3+hFyGi7{y%()pL=eA+zxe)Gk5Bmuxs8Eq@N{ol_k zFd&*Hj%OpYH5stRvd*XH#jrZP)nlhD;mT6s1oL3?2vgXR%Q3@zfgS1-^O}Fj)+nW^TbvpO^`*vg3By(Dw1O&Z| zlae|Wx?CP9&Iq~RJ{WWBY`Y!2a-A^Bw~hptlB{wSp^(g(at=ziw%=jSaXRKQS_n!i zDFi^2##X`*f@?e9IA%F5*|x@7#Wf?4GDc}(G_KP%g-}Y-);cGVt1(TXsvTCyhXYKrEGdeY@$sxlHHlI(cVfEL7{4uimsyA1*ITEDZ4V{lmWB zK3&J_v@k2vlY867CmyjzVS5e_`eIA#~#txfiNI9J6rJ!tm z-xybNxLi-xc9~1cB&04WgtTY@R$?X~t`D1i5jdy0v2|W^>usVs$C?xE`|h?I_8U9J zgp2^Jmj>V5AVm*U!lAR9zmo$hqTO~up7RXl7%1?E$1MV zS;k*$R!Z(;nw~#Dm)!4f{;2FAGR4b5TW_2QaURFB;vcjVT5cufc6$>8ozK&-8wC1c zdq0h*@w{rk0j%>Fq^N!8o$DlaWmySMQhVpRny)znfD?ojOwDARR&Jt zjrGmuHjW?S_+&+;633V4wtwfEzTzcbuTA^A?qR2;%;CCDALIB!lsE7Gi>zeIrr43OQey{s`fe@$nR2dc4@C$OZvST)x zH?qBnc<_3&41T4|f<^#3}!t7WMCqRqXit#%0O zM~S`moN@-dy-qp>wY#y_Y>>io{*__u@Bc*9hWW|@wX{b0FkebxWBRiGt>#~~xlJL0 zD8k<@=c|IhW%Rimgkn?7agG20AOJ~3K~#+e>PuzfH7FH8h(Le_n|4Pz#`Rg@t{v_I z7mC%0HZ7lod&e+PoPE2uyKhS_zz)oi)8v#H_74b>a;BOq6GB0O#&(UnRk}rll-Ckx ztp{m_9HtacWj>VkCCzKiq!D=iwHXG`x6Aao(no0wN}kTY*5%l=_eG)ct+g;;KGgUh zAl?IcDc=?zOSp2WQnOI0#=lD3>GrF6{=Uo?iC@=nKybC@S~Ay8fNVTVJuCgDB+3*j zcSzXYJmgr?@&t0j@m7PNA|*@h1W=`n607sKwO%*9$E=t^sRszoZ@v-cUg%QOxy~13 z4AB(A4{`0S`|q30oe-cT)@q?@;#o-+IHW1IO;=K3OnP&Fy^`eMx;vsJhrdzOy#7>q z4ReU|YTOsb-e?(X`IOhfjJmt^wxPICEcNzv|03m^)62<7*1o3j zSJ(ZWuy2HjUE_^;J+FS8&PKAbqx2wEU($@MjJh3m?|j=D?c@1FJpM~vk4iKM9^oMt zscn@GP;aW(_5HnsHLk}PXMwG=T`758(i&1J1l5;xmNo&LM5UUtv?zq5^;gw-z4?dX z?wixohtJ>tUz`2!n(eo7`mF64Ih;Rz?E9VHy{dI}c4J*z3JMIiQA#+Fc3xLrpTblq z87>Fid~1e3356wJm-!P@w#}_=TV;FJTGS*33$(%*tr1xOH~^4RNVHHUp~t+CNZu%~ z+K#HQ!;NivF4gEBc`7NDVy(mNs|TTUxco*5U86ayN`O!@hZ7N*%`3z$jTd8_X?Db> z7GYas+o3ROyD`2;Rh2R|jl`?M53bvSFam_YPV26We^X{*yDf9DO+z49Y=IJpj7mXx zQs~2YP~zf;-%I(*D8~86Y5axgVvYRxcy;Y-*WI9OTF;Db4VtTT4O%^44jVkm31gVG8Sm698ZrBc$?$dV2Fl4DhkL99BDqif8K+djm3sr0ep zb344#!&l?;;qv}p`+h5IMJTtEPFSv6q@vR|VB+`am)7 zw%_{3oG<0^9 z%IX`7RO))QSZn+QXjQWX;(3|5f^Azc8wQiYQ;k=pTWJRATV_#7wYTqt^eJV`CrFa9 zXQKe6sVFF=gwy=&y>GS;0yV|6w7oJL00#WI+YL>7pOXpKIv+oRQHU-tPsaCB4noOV z7MWM$G^(~FW-cXOV|YpF97jg9>-?f>-rjwKRcMWzFY9=m4%sVZAjI)mb>DE6%juj# zO3Ouq*zCVl?adUPYn_d?_T}EHeKtrHfD*-eE3Z;sirTb=4s@*=5$`hwcWmw3Qor-E>)=3G>z2* zYMV+@*86VIQZSYA@<>!-5v;wn)>_kcoiPpPu#Ue%dKtPK6iU^Q!z$Ze7!zZXP--Qv zOhnFT=Tt4rIxZzur6q8gt}|Czft>fEW<=a=ZjRUI5EdjZg*5_JDmj-}DrG`6wzIB@ zdFBdIIw|F*?GfcXol86kS)Cb_)P>P%qqN`kZR3rA+BCjtduJUBKA)eZ)=p|bT$UoS z?(Vi!C1%`vFN6$np5_Y(>;2YSqm+BKy_GDr@2#`fYjoP7Fy0zxOiUSS%?08*Ez7lW zM#;KRSTd9nH+{3|I`6bM&C~PYG9C;zjJ5BE`~Ie+oI)6et&!@sYn3$Dn1lf$D&-nd z?3(8Oc5|7RO4UjcA_?UUQd+N6@^OR0yUnoe zH^X zrFzpDrd&#H8%Z@6D%;+@8tw{~>v%>k%IJ_tXMW86LhH2hzxBK1BX&Gem{PL)+v97V*z4L9Utd!F! zZSL+TwmAya8_A)j9-u7Yah}`#?p1*ZIao8)3?&38lynAFv=KrWkT&HtuNm@HX#n9W z)RcLhQ`gqbrt^IlUVaPfQw}fl`90ONaj0!mQb|)L!gkwWmD;^w{zbzaM6cU6uP^KP zg1rG0*2-F_-q3?gWhsC2SJ+irdjMM6C*;iPwNxQBL7FbLn5`2%WC$hmw(IRW_7@!ush#t-p2 zuG6QU76u@`KzOVbxc^3hMZOeh(KY_zJJ2plmXUtCZh~_BA03;q}llRv@D3$SKopW8EFGLR7?yc2ek6!jxmpXs`yt1O|kW z_2n5vF05Hbz%9t0f!29}f;mSeven)wL%IY0j`CLbZxe)CKw;)^RYqGcxpWAS<3jRP zyWM$vL&P#?gI`tki^?C%dDbr2;ZGco-B-IPSE-jSG6VyKo{~A)Q z%WvF#M3~l7AiZ|OYYA(~mr7m>s&Y|&U}_5KRtB5SIW0;EroHz!LX~v+;r{I((7rqU z_FGmps| zw2ZT8@s*Ok%s_!ViB+;m*S;u3(_#NJ(zCq(5)R3;c+ANp3 z{hV^quAk#)Ew--xGM694=8jS=%L|l9g$d4u8sIzUTn+1VJY`l4w#-MhJ{bdtb&27c z%GZXIv3vBOIaGithpyd~q}Jn6s)}}3(qWw*o83Ry;X6Q8(p=&M)YU41wGf+<63|?j zog1W13U?rOjGStM!f`wxX(eT&?(3$b8HFrBq?Omh9x6y&%DQT)d^@Cg!oqoiwT$D% zv`tUd=6u02@mjrNy?qG9uE)Qq{JFLN6DTWqw8jZx;(DM|bpJ-TX5)T$`Q^Ws<-KuV zC~XLTP2sPy{=I4U z-|bsg*StJI>9rVqt5(^Cs}c=ZOJ>uKkDsqA)~5E&DBYXF@3gwLou@eF6m55-)$THV z)~;`N`!J4B<`O=D)=QK)*S=HI^se~|6dPG$MXteazOGf8W}nR$yspx?Wj=@HMfU^y z8?BO4_mx`h8nzE%{Z{j!Jgv_M!NKi*AEv8fC%ZR>3%SZ_&!RGr5W$vF%7%+d@!6O? z%Pr;#U+7w-?^U_w`NHjRnWq>Zhwa9123k)*tI{Vc8olKcu}9$@iEKHq3BH~^`N&V1uJ6G zM74~SGD^e3F=-)pB|X~q3)|h*JTI|{Q`Y)w^t;pHnc~{FHwEX$xGMHokP)ZzXJQzJ z8wr%x3D&C!jqvPLCruOQCqV{PAD5>Rv+G}_ge8qxb}O4oH^ zEdnnoEro>?-b%MDXUb3nyQbx32?D2e)cJ+&_T}XxC;qv(}HH)}hB4(>Psdp%hlByWZ0W~zsa;D`dYg*@Ny?i7>Y+Iv@=?KAcHVnQB zJ5Pry8f_eEa}7b(Vm4cpS}WD`yMm9ULRh0{uRz_h)}imE#Ilx}v8){DPv~}TyR)(a z*TMn&T@zK0C>0O3OK}2>Qi@uakd(DfKusk;DMI2%L`7JkF_ZRQ zc@34@#%ZOe^9w6OoD}H3*IJpvVp%g)R>q;?m?$&G>tr=;S|?I2F=UdyZ5#^cn`${n zYEXEs1gQCvm-W*5HfItw^j^m}PejH$WX?gKza>3SizHPf< zb39yHVJWh9wzn2oIAe_zTx$?TR<5g9Lx^SWTYFo(!{MWDS|efTd}aLM!^bI>O}i69 zS*sf-OD&gWK~&qOouW9*L6)e53zLt-G#8 zsMe~$xD>FW+qauU9AcG1H(J&jmpEfy8tV&(dCtz&&M2xnQ#mi!&guL8jW+t1r}t~g zOI&l}|NPCXa|lo8XDijFA9~wV;6hwklxjhk#>&?>x5zA{c|0!?Q|}?9Jam4XD5R8Y z*S2ooYGq8dq)O4lwo_salGm`NwMCNN7G=z`W=2wO=o@Ujo7a&l8q)|WWsEr|C6(k7 z;~A>pR~85KFmdF+pC|Ir{Du$|K0q+BUjo36~K5!8&R1nS z*Wa7QQ!~_pMw8Gwz$arA?*5>se=Br=9EJZA`kQijqRX8qRjtJ{H^MTii_Z^ zL{FrY_Mmnpf0EuQ)j=ewbd?1PI=_>(mU5WSFWTSLX$k4s58w2ySB_a&@4j~1L2Y!2 zN^>K0K-t^jb-()xiDYxrIfJ?%pTAdLDXS~hBA-z`+3tVC<~|(0*L0D3ue?LFX`WGS zQdG2F+U8)jM|msgEQL?<27E)hDHTvwKxHIQlDRPANM)w@Jly=zwKpZtQdsT!LQs;B z(6Np=eiGUsdf>H^u-c$t%9D_SMPKt7;8E2Z2(^ZbP@&cp%m$OxLxV!6=>mYxv`WS} z{kEJAu6Y2#AoprJEa!!>%V5_q31sH8QDE)e^V2iPvESW;#+J}&o|5eQ7lp=gg@g)6M*YRgspfv$wTCRT)-Gl9KIhl2q#a^{< zsbnw?;bPhe{WZt2uu~NQyif(ea6GX3cTS|mvlRcc#&58$#9w>YDr=}5l{MDw)-f(L zYt`o@vR(xhBP%LMfz9@nFrt(*YgdG%crv!p&g4V_Y6X6I`HBP`*NlaYp1*KfeR*|S& z%6e(~JFSgc->0XKU^}miHzBbM%OvU{=8e-|+U~C6>e?O=g=lhonZsZBT9NP5^iw?D zs)tun^i~ZK%=q$RifK3hMU)Rl&n(p%PQY0@S<})F-w5a_{)?2B`PQ^eyLp?JWI7)~ zG6=@Z*vsY?p^+>3{j0WB)eWV*Phqm!t40I8UFOdci*{cT9~iEn4C>sQSM@ySJf6>g z5%kKaJWsPK&bkQo1K2-hHgOr1pVzungbI~XMJY3^X}+?ks%cJ-|6IF)i_V3m{8}`( ztW=qvinfKCx*nvs%S+DnNzySd*BY+P@U`lEhEj=4)9Mhdm8NT9wos_;-zIqz&!4cU z<@BD`MOG`v&Gxs{AXP!P=Eo=SubpFM=yj*`(YLM8WVJZpJZ|mj1A^k(+w6h?+ z6yh~%T;uz;e+{N1DC^~Meg16j{;0&Jj;B%z;v|INY}PtUBY|_x%%mAeD2US$Xw|w& zCHdBnQ8mvc7TFnXy0pv!6Qx;qD6~Vff^M(lnj#kP8c{=+VGhf0x3<_8k8?vwc!k+w ztQGUM%>S&!+e9~+CS5Tv&oQ2<-llwJt_l)hfzVKVitq`An$Q0POoW|fQ;cJ|uViTc z43cw7l3f-1f-KEL5gU>^=OdS^uu9nfA=Pd=pRDPWL@=zCrX`p1LyfQ9{T)knx*oO0 z)?r#ojf+rATu+oWl(H@tqkRQ(tyb_wl}V_I)Kfvpt5%$=q#C7aWYZ~-wt7*=`En@X z1z<%jCMH)UwXQ5@*}Pr3 zHjPDqxQu8kcA8QaTx&gFpF>!=w++;vth-hAD=wdw<*d}V+c*CUzy$Hx*4u4=DRqfc zF&hW^ZDWjU_v`W=Ww1>@z5LKx>+k-%#62p4_0X6b*FR)_D&>1=w!)HTWo4+47x!ob@#s46>7?+* zsSQ^H2)TS>md5WwvRb=vdS79I?dy4p)9G)%X`J7X#OsG2ZPS^KFyBc5x)Q|+;sN84 zRL*5p>KoCtp%!VH&b0(Cjqij1tOO};Me_#S!1KZSx0RYOom|t~#w!`AuHiB|XSEq> zDnb<7KI8(mM5b9<0$wR3N|{15+qc4yU%4P$j{mmlzGL)&Ax{ToHW@Wm?b|m(=$aNK zpzXHoHlUVNCP3G?EujF0kWv*AlF`~Kv`Vt5u~Lhm1x>_C`?m@&d44I>`etaly2ev2 zp+XDuK_WEW9b*jT%$LW;Z9v{-(uow7$vP#iTTd5@#3V}!rA*TGO7V8v1vVv*rja#J zn2%UuDi=;GG=p+G+xxQ2$Isu7^Aks5v{twGs=di6ERvW4Ee8-43u|XmeoX5JR=sdt zVVI{EZKdwEPN|{p!|hk=_&F_9F{2h*-dNk9tYa7j0A-A&fQYh+B><%vu&n@@$~AT5Hc)gn}hg48x|YLe@iGbLtJWb*4-9v#l4E3&Wu<~(U zB4aKjB_it6dAboB>CDID^TV)foOnEr(=r=_-LOlPmr)_0Ag(zCsUF&$b1J^9#)>5r zX^a*I1t}p40|-+Jv_`yrcmMHazAV?A=ic_t`m?O3;~|iDUTe83G*zHPL{UD!9N*pD zzPTH&Azqg2x&)T6?S@_31foyJm%+N%H#e_$8?A{n{_^val(5@0EtXx|9;a{#Y3N%~ z%`d+_<~(kj4KaSY9+h$5y?YySl>g`d`VJ+mMJg%1TA)tC?uBxv)5#m%G;SFQb+do< z#eVy`6kakhD(}32I$jG``Qrqo~xkufzFqKy8dS`T8kCmiUPGiQB64#nD#fY4h)DyH~z#FY~Be(+=NA#jYpGgus9xv}M#epFfc z@sp4(#+vfcC|`3?W(NY7@sgK`=@XPi$X1}RZNn8yjg0GhdEX50+Rdg=i8CQqAtgl? zphy{H_DvI}12EUbWjzWZq_TiBa-Zgd5{aUkF8^HUS=u{9K*?I)OLL2&S*|CpmT3b* zc`f4Q&vC|X`^LB4v_q*9vtTrAwA2v`a49L*bz#&>NRTB`S*Pj83S^o;q<9f(lA@vf zL9i)V3gh)=o90JeC#?srIhQD`5zER@)!=|3g=?JNqjnT7SWPLX5)aybO}WhDpTm5v zx>xGZ-TV&Ku#BPPB((-0V@zVod9=P2Vrn+;OnY0(RatADHGC9UfT)(A$_f;cZ{L{R z*H|?QgvLUKFg_V0vFVrTv&06a5C$YxE*~jZ?Qf(6fCk|r@(+?tO{!uwZCfD&INNW9 z5hZ0nX%zl{B;CofWLb8Y=e2gfPvghkZyPrvGBUHWI)I=`MKe$`4P|-(y{x7hh-NSv zNP<8Cl~t9M8IjT4{<{0=cE7d;c#41U4gOq~6vlYEPpcE{mMh7*@j?12NZqNXiE)K= zD{8=eUJB3dV~L+oYvNN3V~!78yl}qb?Jt2}sOC&ET*p5ES;fAE`U&%UB{y8(#Na7C z5J9aOB<3;+B319DVF8*LPmmapiGI%M86{M)6>^LC3GnA!N`?(Ul1%IF3Iri36j1Tg zwmrA)?_55wa5VhH*$%~~hGI9_3|l6fT6~N}lE@XKyXQC~gOUr>9SA{~OPCQ27Qr|} z0gywcobn<#bMB?MkyW1K%AisN$_Y8e9BY}85$C-SMk+0^l;U$H&ROLKNp`IdenlZF z6GTSqEigmC5KyU(p{T@#RLmNtw@~_axM?qby9PlSsRB^!x&U>~WTe_cH5CbA5qy(L zF$jz&!CM6I{tw!`X8cUZ4IoAL--pZp*lOTFelPf~ZE7qzt!pV4E(4?csrC%P zSd(#1V95XgAOJ~3K~&tBLa5vcEP{)QnsSwzrxb%bru4|=MJbTot*oiteB(Yfcl_r&+Z#kZz^7rf5v4>dkAaU-qa{bqG} zK0Z+`xh~7{f;^)zqM`s}KvzpgRTrwfmz}2qCSl6}N?SyVCMW&QrOb$~wbb8nTS7o`U^^a@a z6X)$ldVapFy4PKB&sqbb{3XR)mY~}=QeOh(ilqusv8*pYWJe0Yv@>cGW8nHm%08y) za5~mVz*f(;>r%q;L#vx+cU{{qMNj!Y%zw?rHr+*tlbb(wV$SZsRNu4)@KB3HYExY* zpFy;Ujg-}D1vsVrig_k5r;=FOgw!!DvTOTuyF2G^RRvfRuD2`+gHvH~Hz`FZ4(RRE6y?E?!}QSSXduxoVrHR^fdXyhpVZrVOpkzR~j~rmF+aokB6t{<4Z2==JM>j zw_hQ!m*aSv=GL0sunDOU;&ECRe`<^tLJLI81fVp^B8VKr>H^}bz{Hq$z2QnBKyU2* z@$m8Xw&mJL0R;0B=XGhDt`ba(>)LL1Gv|T~s)2$7NYJO@mcDPwp@u3*^gvubE7V6a$KBT-+KmA}DKP!pXVO zmwl&Or4H*XSY=RZtCtDFz|>$LVNg%dyPs`0nP- z>&vro4vo^4U}Md9uU{vk&yV-sCBa$W$)+(w*CZ-`{`iGMI^P%<1LXR=hB^A{U5CK` zpa1W#w|CRqD{C9Iq%_!Ju+8Hf`TzZY{+%*B6RgW9z$4ghvu}F&c>e;xja8@RL~MU` z{dM29hr?l+Jd;8z2<`<-w(X`eOdvM9SBw!BPq{ojJ@};h0`Ir42sYYm8>@p`kVyteIZGpqAwRtwp8gcwRKXTXwz1Om z-a9Q-&NbFzTQ>BA;L5GzG@UAz>_(JEcGrieXN{`gy(!^2rx8I>uF6`Wbu2mMT0z=o z<9%IRJRVLV+_l|T$iFQG63e9?YPBrsxIU$F*Y6r5woyGyE#|gkSQ(G zNpV)mFV9cGO&pYf%%RT5Q>LnVi=cT`sT8+< zfx;=5N?YB(vRlnT`z4pSXt8UDbEsx~{+_Wc^c54x7|*i{Ybv~TZnfGf)0HxX=%&-X z>2IXGER>~b8MrY2lhS9=ix?JEZJGa^*YB&iU`#W?vmfL0N8rRHUthk29aH;L9Dj7f$IMi@L z{{bKf)fD$wBQGSXNVb0m3{iEUu*N6yW3I=H9H=VW6FF%vV~EjxDt@i(oC=_@00|0J z#sRP*C$4g}C_pL^-Qt!P5K=&z?*BBse5$!hJ&2}YjcEyKWhIf`Xx;L#E;)QKW`Hz= z^fQAO@`qf%AlRB4$PbL6YW|ZQenGUB9I}6O%VX33ZDVfI@+G>^?*ESh8q?$p<}};J zy7)n|cl~fl5JdC33LX6yajA61&^Wan7m*C`_5k z$e$*tTxeNyE@`PTm5P-CBgvSMN|cP5av>C$yZ)>etT{2xQjVEw%0((^o8aReR?!TD zFVvP+d=IG{g~4Cx_bv4{rpG6UsG5rti0vOQ`??b7knbNd9Cb8h`SV;%D=6ADBerO z?QV~(GR|~+9pfT!<%sU(1LHw!0{L2)OJxkm281nn%JD(U9WsuZnCY=*N=IROE%&z7 zg?6Xus1pUm)^ihUkmN;DNy zziWB(wiJO<)Fl1%Z!vx9hQB$#{$;7)+*9=bZ=fz|UIaIc&5Q{q zdfq4$TBto`3~O3lOyPlx)bC!eS-TJ@Mj^QAn=CeJ_(tpP^!QVCKX2arQnz21CFgJ( zQ-m5?d(Pw)GOHUK(o{Kct+B95NLFw1SQ8DeM-o82=pQ~Hr@=$2)cW-O***{QqP_5ubH-d?Rs37^2qt=6N zcT9+qBO-AnQCkGX7>{lyH+Sd%fi>5az!Qs<1ZKdTNO8u5Pv&`%J&(~F_maOrm1X(4 z>$dHy|KLk=I^AX}VP1_HOn<$e#^StbbWGW_T$t=18TS*Zwa1!{a8V+cf+k>U7=%-Q}OhxZDBNydEno()4Qcj)YkX00|1Rca=%oh(olFd{ZMer#J*DYhcA>-wi}9Tn7#-(ARDv$ zf$Epy56kE(zZTMPRTwQL`BGM?MTk+hJJlpn?;JG{@ZE~@|iat9dYNGQgEoEI8 z>%b`BFB;tD{MVe-R5Qq3SSO$pQ@a>~TV6zS*0iq+aH$kWS#qXCQg5`;^ZgIwmU}#!Xvva3)7|uCLj#76jtJXa~)#<my2s_^uTWR06YqY3-3{c0^RT$X^!!(jo38DI3ak6*CpRBw z(KegwcWI=s+zCxWTD?6l#A?h?A>~n-+3IWET+8;VmXON?R2f=nTBvM%xh>(I=MAB4 zdJAz5{-dXc>+5!4%C_X|`1oUv(DmD z#cRU|jfUlPn_N)JSj{Wa%hPR2qgJMdOqD4K(n#+D&0|>>H_cd`YP*6M=3KK!T1!=h zbxnU!2vX#2*MMw@IFu5OA5%I)Whkhi@SeGtbbE#jN?7gi6|xPLSPEp46?n=4Su|$j zmRZ_HtBxv@QdwK5@P~CD6&@|G75@R8^%mTU31jrfa$|Xn$8DbLq-Ij9%0D*#Yrlnb@)BVGz?7e0} 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 z zfi>AL;rgKxZf?I*tV?0?mw&CL0N9)fD>9M^2@v!ARNSiD2Q0jl2`Q)bl-3W1-%0a^ zSg7u#+FNFNp|-rc3&A=6F_)P$GVLyb1gnCZWI1#8dRaw1BU3}Wj^UB2; zWXGF3DuNNUMxuBq1+^sPg3AWd)y09ETU8dIooJP@wlG~~1t>K|V+5r&`ReCF;nB2` zSXWD^=_7}N>JFR6&5;Qyg%Dg<5~W-KW12o91(Xe9E4hT~ShEMYC~2av*?-RN1jzN_ z@3Db>6&rZF;=Vo>f;0c3K^I*pSS*7l<0S<0Sq<>zPM7o`VjZbegx4OSVbzoN3u z{*91|xUlVg$N)9*yl|ee-JW0ng=z(^FrGjgG!HT65+39E#8_i)h8(8XPyapovtawU zj#BS+y9b)q#WR6JFT-*)P1AHbMW{I%Eum|SvT4c0jP80g)tE-I_VRK*zOGGk!{ws; z+THwJ^j8Xz$t|S|FC*~>)7tLPwQVQjm}`a-O7;Y)8+J_fF_r21 z3aJ#|NT#$Xs{Bg8D~YfspLFHPPm^DpoCBe&rSejMMqoAiM{9m(wr?|ezm6mtyWiK! z;~KQ8TE**mVR+~_3F60`g0gp9JS?GdWvbMOD;GJ#g(=ntdZA?OUv4H$uyf%a&kwZHRmPMZ5J(eqAzCL~C z%D4MIczZgN0B(8?Ktz4Y$29+$$vr4b1ho=pO`$Yje?>Qz;t9PlJ0bR_yA|eZ@rG zKR)^OT0*TRjwM#1LGWDiN(ot&P-^k3Vk?x8bIr+}&lfDP+20Z) zCL3x&s~(0-|g2T(T(nbA7OIV@KM zu!G3w&wlv<)UA?<@*mctyF49DgIb7GBZCjT8GKGPCB+rzCCAaZ6w&BzBb4L}=J8mI z7tKcWw`jM>6=#)_o)*Dm(L8Y8)wImlrETwpZb~S`JG1#hclSjYhO(66^I7*=>7lF_ zkuHML_4&V7&1`>@=8HT3zWD!1c*8)%r3lkgK+9vP;7SV1>G#F|gru|Q ziVH59%5HW0PBp?-LcQgB!-S$*xg9_m9|9v@QU;)yCgcjq zO4Hf4DJ7K>^K{MA2pF(daw)nTOH4V`To_DBI7D1$&h?MTFv&zq4x-hsj^BQ`~KCx}o!H_Av{I zo34?9T+H*jjxO(pZexUyj1$AmU$5)q`P?Y}aJY#neLlV(FOkbQ^!;YIZpa12z-R?HUfLMi)5`n6-{oAJ5o~|#` z@*E?D09r}Jnka9EJ6^JL$JXkQ9Mi+wySHJzuCadoo9~*&`1PEErxc~MLa9 z*ygwrByP60xvyasbjR|hf>r0&fA0`Frt?Ug~6#Nq7&oQ3b&0neh zKE%&8zesV&@pIQ!Wo-&fGK*>r@lUq-4;6;6{vP>LrH5QPZBR48cn5sI;)zCKO}qW7 z6khTLh}`wUB+2$rficXSE2cDH&eg}&=j&gDY?vBEj@&3#CB=+}r%<2*3bD)+Vs38k z-TX4W{9gnN_^!rD+pV%1C`#M;arE=&Zul}%o3ZxyU&!H00+Icb5`}VJUVjSiB~0&) z?e%bAY#_plP09#v1VI6)HtA?kn>7^Y>gy)7`_e zFxFHSqx%&Jb$bhSLNpky(1HsSLRzMO4b%5Vf5H0$aM5)4Qf$Z5|0?0aL<`Ij=@4dR z-*9`&B&OxpTAgUWb&Fugy8Aa!S0Ei%Ui}r>5k$k;yBtpi4qUupP#AKK+nSS`f6(m> z>g{s@5Yd;E3RhiWj?)FoZHS{Xoo@d+l~Y|thD_OQ$qmKCxsCCs z;yJ~tEVG-hm~2l^|0{$i$v2zBx6HKbd`fu&@)VdyN^&I&tuykR4Z5a8Ise(m&jy^S7eDJ z`1NB5S($yeRm7=8;jd4EtvQGJ_4gb7#$U1Xt>#GDz7NETpM^Ai0N@Lgk?<@hf?##Hx2 zN%o2a5jAeQN<+3iG=~GC^y7=!-kJ7GCYnlDg5(0@kciGTM`iB)d<6E$MH8=u8)a-O zuyDn$rwdV4T|@B^D5I%pHzBVS7n*&}FT^nwKp~;1lGfX=|5oaU@#PmLuL3qo-7>Dm zkKZ%Cps=huWSYq2>thbT7O^**{|FRwIdbA$wiy^>8;)U}o~GkbHhpvWht2M-5Dh^9 z!TX-qRB|HQ>yl=u=+~%(QC8M8X|o4pe)?R(i`Ld||0-pd*Jmv_kY~D6?Ok;t#VL`J zTySaE@g;>vW)3B-j7wn}A_jJ6n!dO|X+nBJ&ZK5FK2IlC88+5%5Y7G#mF4vOFX+#j zThJ|+)gYN>7pM`c6)Hffbrq8%+3C&QeNISK341r4KQH4GGq*~{#OYP;+DFSyz=s2u7#|5&hZ zZ~xvlSaG>r&i(c)D|^M6QljNRB&h_`1V6r)`hhf?AOD5(J>NaVG;waWw_72m`Sdvz zWA+=#YFW<+6iKcL(<)bp&ZhI&t`E`|AQBF0!2&I^9xVDV9B{R&9 zfmcEXKfCGof^~BE_ufyE$2xxS;|I|9dN?o!f=f_xxqMhpuWhr}T_w@3^IA&m2D|tf z>P}l8Qy4FqBJVbR)7@R3UfsIhe)An*nf-kCaM-@Nt3|oxBxRFgLsTe63{I3CI_^#&rqP zE8<+!;@qbc&Wa@}*{BBULjJ^9f^v-OdxGC6y(eX>VC}Y1MoWQ8b-wWB`Woja@+Ztl zMU-?7?#Hg#aujKrv_#@-bf-9;OxH1TVSaCn(PD@t7dNNrab3@T^+v1gU&qs@v|`)# zrW-P|-R=NXY8AG--`w2_rl#j(rDS$rASlW~D%K1)P#KqhTpB7) zH22INfQeWn)TC8MwN#k2(KV**T#c&`x5JxvTtp!a=|uYkF}X3! zBM_RV0jfr;ltZj>7<$bZmRc!fOwt@Aa?W50(-K18+j)AtPVW!5Zz~!AR05n|07bXC zl~MtfR7$D5Vhg-7iJT8y%VFp^Gsn}pP+_dRK0jX0PmD+k00Igz_;ZEAcsozthpP)y z$o$Ryo9(`hl`8qoMrZHGIfme3^h%pA@7@ktEH3!9THQ_|jkEve&7n2=@#T2Ay4g8x z=;3f{Rig!uc^;!bY;HPZj^oKC-?f9ajZdrK^{a<>oXeNXnFC)PBC6YMYji!HkCPv3 z(K*#t>zmD1Y7;AADO%{JX{?cMohQFE#&E%JhW*CsSnIls0;yrWYjz1FkqN!9QPDtL)HPE#;g2zH7SUx=M+on^Vk+ ziBJPjVxkJIv8Mm@*MF@PKP_`iu_D}UhnvP`!OkIIB`tKKq@>>WgG>11`;VvV>wakO zH#-J!v)?c)r#V2b#27HTOlPQR+uKSs`^Ec73RA!yhD~dmPzB?SVw@r>Blg?P>+5tH z$DwIMtr<#dG-Kd>PAO;!fJF!qV|lY{0OBuCpF>W)*0(ozbMUX{qcB}d6{VDo?HDR5 zKIgT>8bGSHXGhCOQt=hqQW&cuPM_TpgjOX*!p(lOSKz5|H~Y)$&&K?JB)!?LWm$Gu zH|OftZq7dE+%CF|%*sqw6+w!!0m`r-`@s<4C;PK4LzYd`6vbi{t1`1PBjQHfdr!05 z)vxIXe#XE6#=w5Km!ffQa()KMRNHRXmr(H7TYwZ}ZMy?yw!}{i0hnTnKu`?iBQBFy z`jD%sIp=!f612XrHIxv#_6R9#qpyHMNsu-ZaL`Kc{5ldrDuMC@Rrt8k>M(xDSelM8 zXpI_T+`O0l-94AT-Cmx#YEbPseQcVqw0-5q{}$cPTD>(mfNG^Sj1vi8l2>x4_dUZc zt-l~L&8$Ui_d{^=G@dNNkpWGv%4d7 zfQrOa(ia2{1TjCh-S=tLTy`}&sJF8Hm23jm0df}Roxp#h8Vc`Fo>g5d<6JQ+X^z`m zWE&RAX6OzKL#;q8Gjdcj)F6aljIYTI!Jj)ve|lF6&}0x-(EQW?yR(#JRRbQd!2}F4+ghqc)!RzjpJ5 zAfmk^iU34uMVLyx`1O-LeA_fP-np=DOeW47N)>Wo*l=-VQoHgZh?jy49!NHuFWLaF z6`??yFr7fPxu6lhRy)q<4vO&8pE)yv-zX@mdmEQ6Os5<-U?4$R^WaygAXGa*$+_H> zNEC^6uegzwGuR^I0>sW=u&kU9Mo5J6TIoTG9hH>pPeScj3blNs&K4pp`>wsqw3W;e zu4Z@utjqJyMj6$Z5H4w*)$9L&wy!xw_fv_ZRD zx#T2r)4a~nt?ti0#=H0bf%3FG{~xT%ZCZ2uWSWHFME8mlrW7DuswhnKvT~|75zms} zNo|2IC5$;-2siSv8kA^|-(}LvrZR*)F4bGFx>_C3zerq^<_U`uSaYetWv&_BK#nEl zw4lbdx}QbU>HV*-pGL0U^7hs*GgnQw|L;?9xqedo#x!lL=Rg}5ySh4xO~$>Czi>7J zDSP-ez?DiA!k}q`I|&LBXvvRK4moJ(+E5&`9^o&YCAYuSo5u=v%mb9rcN#!0 z#xeBme<<#bp``GXyFEqFRtx@iy?pd97gmy1U54Jr&)f9-R{vF; z-RX1@)naCqGGmHsMtKWyRt&jmODS%AS=W%(rE5Cg+*VV8Tr9|?FwHHqq9#$2ZTQh3 z0ROBc0qD!+D$vyeB%|3KvU#Z6NvZPstMB5r`ElgTGJWSmgy|R4?}aR3`5}w!rvGM! zgRysE6^!9XcZ?8 zwQyLqfm(7!;b+nvW47Vk0t%`T^GM+*R*LF(T0fPrjv;AP8r4zd$&azFDP{`O8ov1P z&-?yX=?(z2V%0sBs{jF9SHE0iOpsaiyR;>(i4$!BN4 zQ@O{ISgvjV&JJqv8_|{vL>5g8R#?-$joSw-zNTyNThrO$_#l*4T2VMBL?{wCPkv=F z>8{VIK#(Eri|PM8+Tr7{6N zwW^r@wNkwpzB^9~s>;~Rg{*8tA{0lzKGiB@^R4KHZG5R)uu2gys!fS2(wLN$<_6-* zcmtU${mzxuKmQk{?ijOD=wiQRRb>BEP0NvU$^sM8=6o`WIFzz|;`RYc!)nGFE~isv z%D}j~56M@=oA&rVc?|RK;`$}4%xZyv-fzqJW3LW^lbo0{W&W#0?POkUS%ZFO(keU59* zC9UV0&$@q)sOIN6)uMZiFbks@|DUTolG)R^=0sArwZ0aS^zcQihnfSBKzZ!;Z;QOi zVFROURmR@h;oWsA>GV{C$2#);>s-B&f(x_83~mHq{hQak8S*j;$)waw_a*xh*HlCG z!3ZNbALpO)__K^3Q}eYnuZ$3JPCk$zEyTasa-clf!z+LSEH?dD*V&a}E_U-*N7>sN@K}sah~grBV(pzwqI6%K7HYex1B~=P&AdmZ=vw>-YRQ$P$w!Cuz?h$ z;gB6xs(hE%MQb9+oo$V>Sk*L+ww;E4$VnO9l7O%*LNuk+>GA|JOKx)Fs7m**AP_bo zZ??<0zio}u({!d<6>l?VBqRkftxmVqb|MB3f=Mae=1?1@TgU-PLUpYY6dNJ95J(Ji zDm5j7Dun2|Bja6&kRhMO$tnWIV)QksT4=mHDWKOw#}(hAD;dV?mi!Nyupnu5BeYP0 zCl@7WyT0oh{%J}fU9{A>htsCJdcO2Ih{|J=lt%L zyVZj%TJHwZM)2S~P;Q%^b1k?8u!r`p@0#oCw3aox1i%EZj4GoH7!$r+UKles`+Yaa zIm7liYpf{?WV~dgoP&o(ik;O+#4>Gk-{oHZ9eC$rDP=5=zA?QWg*yu8BQOb ziqA%?tpv?u;OIj2G0l?hkB8UC`=|IEYif5*aCLN1*_HtgyYB77E25kuNsckp>zWip z%OP=gf7svc+VkY5ZIeK=+g{(iy*>7W?p>_!?^~@DLtK~5dxnQW>83T6OZGgiN-4?J z>^9CSGN`o>m7#5gNL2zB@-FxqZinOju^Ttlw>|&g|Ko2@=SeHw*hZjcf>mx~tVjSg z7b2|~tDY;2Ze8Z3RJ<;UaU_3Eg+1KA3)}hm>A4i^ws{<1Om}CRZuXP&XD$sF-Fdul zZVyAVOpiWiqxaEI&Tr$@SHxk*ku`*eRAQK7w}0KX1529^A9E%EMUapr5Gs>0ja#Ua z-}SpYWFVzgs-Xf@YOWh2XoT|a^L+lNQX|vfwf&w^0Vd|@L(IGx9;9te*SCjzC;)kq zoC{e>{KYS0EsZj7rS2pGLslV5t8Dwm_6^4r#)UYST8m1^()sx*q#|X9i z%{*h^%E(xOwK4Y$3$vY1tmX`SvF$*yY~z1bb|>@!c_kR2C?;>C7mQtZ_pca;w7KX$ zu=*nVhm#bEkhg_%Qy zkfs<^JA7kQ%W5q7X9h|L;Cg5F{}yYH5RyMZMWZw@pqk>=nC3UiFkm(3zLXU(abapL zB_^zlph7JKC9Tg87AYUNkkT3uGRFi6ZuuOh|IGLy`A1@jH{Xdcr~Es@Gq5AaJ+f2S z{)DB`?VFtEIDgi5FPnSvk&DdgW^^ao&WD)tnQ_TTk`$;q!4(zEsf6td_QXiE;`%SUC};r6RIeXM>)Mz)Du z{idW}c87ax`!sJQtkFNm<+2;Twa5Fi&FlFeiJy37#88+l#c`QVSZ0Z~kZup(C)n2c z{|@WbG~YD+k!Vff&vCm_dEO7dW%j_DUYkQoE^I$>hDuo}P2twL&rltM9Wnz&)$-3q z^~i2Y`UB@T9ETXU0M>gIuYW8ONi|&f%C`{C1rJyW>YA(P96`w76k{H z29%Wi*|gtsBcgj&ys@oCnU?W`vag`(;y(-1%I2>6?52R$s-6{cX``ljh-HrDY*iU< zzNV_S=Pyd#+E%G1BI9X`jPqPm+?+NQgrJhv@ne`?P#i_0eMk{=$r~$~Vr0BChg+@s zw0@CRX4EgA|0sn~`e^O1#o?=1nNWL{YxEJ7MOXpTZufQD>|CG_1J}Bg=%+sqhljR1 zMz;`o23c}NL|IxSo7NLbuJBu9TA#OVoe(Mq5#t8|k4oKdOCtKvv^$hvHM>`KIF^E? z;`TDuYPo6)h3))98h?sqRPE61-(`#?uUyz=z1Hfbw2WE1>rjg1Q>{@pdsZ~~4L}lU zrH@LLF_9ZO1U)Meb?E7=(kadBexGsYob`<#Obz%nbHRc&kTi-#~fdZ|E1~w zJ0%|+eKrl(%2ePWV_rXKSyPoh>Z(Mo8-WC9hr8Qa&u)80ifJ!7WC1$d+TJ1LS7DvqB+o)b*gXl)yce*nR-ijoq_%;5>d zKH{*9<@~a|Iv%^>c3n@!`PJ#fAB4IIZWiio$%TC6{9*M!nD#X{Z*0?AP2{Jvm2JI> ze9duWH4$eiUYR%!`@fJ9QjRIEp&}DI+h|st8%M$laMf00!4l7fT=8D1x1!lG(@A@* zP%u1K_u||iiKNzd+5aARhw4zVCeOn*R`)q0Y}ae`CDP=_e?IKqN&6M!$iSEIl-#Mt z8Rf7gRY!b>nV$bI1()6araAoT zdV2Ir67A4;#&)-Af9IEvCA)2Y7RVZV5Daq>yaMr{Wnlnne;>l9THNr>zjyxmdilqU zYB=5~-R4j@&nUc~Kjct#vp2g|njIqBmd~|hZC^73s^d_6x(0wd;5OxtLUrBE_gr^5 zi|1c{;V6XC2o>^HK`_=9pOjn=Z~vM#N6JZt38vo*rDEyRI&rpT+PLUzPFz|hOeIqw z3$`}hYh=JmL}+WZB{-r#W1Ud$g}%vw$3T)Zs4*>n0%oan7=yxPzK*p_EI%rEDao(v zc6jxTFvpxBhZlyazkOwP!{(Ok*Wu=y5<~V|JKT%rhRHsM4PjEM77#VnFn-GQS?Jq} zl*1<~9}TfQjwzg){VUxaoTt^z8RG8v#>nG#zA`(AZeMB^=0@5(-D)ntpZ}c0NmOsU zp}qa8fEiyt3Hg=j-m2c3rmwt}?R~r3XV2{6zPo>y3fE?Dn_bDJco4%;-TlVi|Ao{$ z@~hG&gjh?}yPM>xtg8~W(n2Uu=)Sp&TUnRqb~m89VMYNdNWPXTgwRbNLLBGk7&ev8 z0-v?U)60)#nH&2GxNf=w3Li?djKuk=G5e4sYx?f+jZlc?Dq0J&;d}=WBI)X4oj>ee zf4{r`O@Di5hgT&h$Zmhwhmb!1^e>zM^|4l6+$fbao%GW=jB8<5=o_=Uw|37tLsqzb z(;U9xYGBM1@C=Nx2iqNq;_4P)w#J12+Rq2UY7Kr7T&nf}qUo%OKCauE{ZdLIB#1!~ zXuHE&;(9jCYqL8fH_uZLibGkjk`UH;+0?Qk_HaoMVGR+y36_Hs+FZ z!0KZ50l=y@Ze!DT+KMlqzm$r*{SARRPcJ2V;O($GYQtYHSD}rNw9J>TX%SfTp{5eH z7sY`~nW1v5Ibq6}LJ+bVqvk0tYZ$CVGF!O!!R z1iXFt${0Cr{^jW@mmrJ@Av|9$z)5i_3nIw2G3y$M&!jTECF0+dv+#YUn;VvXXd&VasdvG9uFB!i1M4Fw#uvcS?{D_QKD%k2ueB0F z%$e(ES6SGWi{G9zS!8P0-0X)3;5mea3sLL3%@?lwrrB@Prw~6VbDzN?YjdtKmRt}@ zK@eO@uC(AHE~B4cQh2OoA#foMZZ%TY?&c0lr2tHj)wkKPOsnJ@ImU(J4J_B-15}Ej zx<>AJT`IR!1C^-k9hZudK+|mzj3_(c2zAarXxZ0vUawzJ?REc}u?`4op;T_& z^--|Zw0B5s8-FPAzev%>Jf!uqyZ;-hgHM|~ohkfCtl!3q5Vc|(<4;sp0e74WCL2b5 z_N#M|$$fTXUZxf63c#Ldf&>xQ#Ou#rcH%E!HdH)0*G8 zsYuCE}e$svq#H=uf-s1)}Hq2CbL6t1#;$=kcZB8y1EQEqpDHRa5a^QNGA?$i4m~nG#tkNwnk-|Bt;m~wC z&A=4!I`r*Va;IyxC4S#r~pdAHqf_WS|BFCAat)x zleQ;+{R6UCU4rD1yR!U0wLWvM+T(ZC?4&+6-7%AQ%SX($u`OVA%QF?jxWRO0{9c)k zF(h_GNstOuMzRR0gc*o*PF|}Y+P*{c5T;K#IH9_lo`q;@JrgJ_Sn_!|47R$6#`$N}004zm-G`EPIn|{t>ZHI44h11K2={n_jN(pt>6k=|E=C9l)o&ZZ%0L&5Zu-dctHa&>&F%f|`~MM0 zT^=7(LZCE2yo3Z>?_B63$=sNQ!s zf60v!cx`VwfsuicvUBTaA!I=jau5idcT)Gjxa#hW#1fye`jn0#JvWwW2H6~BGe|3z zmmdll({|F_R(>S5mRxH9qiw<_goS_|_F60c_~8Ro*YCRsc3w)?G=0}IWu-VEUbKmF77=aWdXl~)oFeHMYgyj)0hhr90qxKvG!v6LTjuCn{fO%RF`ssoVS-h z)%0vTUelJ!fRJikn0#xy_ucL_N#~cBxK=ydnYIB6VRJDhS1-tyVRt`oei?t#ptH;B z@J8=nD|-h_Q<|%LrkV<94yHnhIXC^i-rpBAb2ujobXfbiaG}ju6B4N!u)i#(K&{xDZ9lO9gkjO2d(I*yc)6+M((1Wnngwk4T{OP$0ZMy@wv)?{wPI|Y~-NDaet<)Ue zE$ip?{4a;w_u96s)HE%XaV}VnRBLPcV{?4NVOMEPC84+@-Z~_D{UG#{Rw&1?OkP+Dk4;@s}Q?{yHYVPzboal zX%E}wJbnE8Mo?paJ$?C!$zl$#3A2yj=L;0ixu6=hbq%oyOq8~gq1m;ZWjCJ@X2G1+ zU32pmxgdfPE^4@!{f$-~u{ODgq@d=SYkT{kbQiCmqCXW`1sX2)Vz`lQM|`N2AdNz| zg}8UCsuun5T4|I0m6ya#gZv0WGsP4zWz6oIzZGU* z!YBpgxJu1+(_g-PUY`CaWZ~vDH;v#4(J>BT9hK~vZu7e3WDIzLTe?UmiciT zKY2&Cw_J(o@=}WzOb8}~J(Q}+Dx_iwxCiPHAiGvAxz6c%+xXqwz0}%fm&%ija&F+ER_V;^}0^m zGHxg_K^{7Tj6QsNT<584K(UNa5qSYLyirI#JHg1i>9U^tzQ5VuT;>asS5h#wyFcDB zq$P%0C?&dFCc40^4FCWj07*naRDul)E0KJKn2=bwOiS>&Gs?$ktR)7i;OEDWE|fQK zzj`{2aR4cJDitaOm*)sK`}^0!(Pdgf z^sW{HtyE*Xez=bbf?ox))lb^kl**5ve(oFd_RU?}*lo+LmXVSR9&1S{xtPw={CwRG zyWLlJuLM#l@$qyiz?5z-tGn%0*V!#5EHygcx5Ke-*Hl9$hHP4=S}BGaVy*-XF;np= z?X2M>e|dRwaVE-2bVyiXL&B7BXl>v2oN=Ew4xoh9N|szdzkC*0Z;y8cp@!o8l5*Bu z7|EZvRVw@b-EGM6^UIYGAy?;p$#wK0)o^z>-tBLZsgNo#=(SKr&0F-&3yzGzec#$v z8Y4bGU1H4NzJ9p5X`aUO=gW&Ao$`rO`EzNM> zv`tA#HJr=#^5w-%FSdWJx*ZonG2_GRwuLiOa!CFnnN(_*Ljmm7{$0%*=WW~H)Ev9^ z#t0wh=bShay74KeN54)nc`5c-(Qi}9i&44Vze%}-)d|732rO?v7r|c0pSLae+Aim* z#7Szw7%GEIY6P3&FK+rM>?^MBa%RG|>-eYT^bbl542-q6TyHr9OtH|F8wRC8VYlrI z4<8t?lyc!t@D52Pe@X725zo2oN_=k3J9GFqwYplTQjz5!EA1*fFcCSuWnzW+0rQdR zJvMEjJU)LZ)iMkvKSqCoLZ<(kYUb!Fh`8;uKUMZn;JZlDhb?b&OeW*rn!8$a%(HH< zYrG4|?Dspw68w^~qb!uv(g4&PL*kV;?H-9JRMAAy8VCgoxb->t7lI(ZB7*|{g#+V|8$Q2eLIF;x)6GHEW-Bl)u zAd!!2Vi2SMmt0WsH%5Mk%`4V)scf}Y&N(0eO#);sZ7spHeZigEKFMZ4*-{}P3|3rU zMh01ER!MWVtGH>SOmm;zOLjjJ&s@D>N^!Gar^m282~srx$rPijNeS_rP}-*#^hW2pvI&x*>yW&aO=G6g1^MrfJK3e`}&1Gr_ZG6LWS5KT>y!Wm%^T$JSn ze9`7Bzx*NRXQlVm1*ndh*53U!pcdSM(6w%1`NBnSZ@wupgyoNno0@keEx9zv3+F6D ztMn@P;A3E#H{DGQYmSV8(jp`4W8!i80aGt!Ys}2luf2c96t=~O@cUg;8MjP=?Z2k& zO4SEXWqP)asUYI&OPrWi$YTv7S4T< zkKyO8E49WDKzFa3_Mw&(#wQsF#f~|cy|C!;O3orU7;;Tbj^+{M)bt72vSz_?(Vmue^14akAEz&)m_8* zESh_$9Bb5OFO0ylmeL`JoJ5M*cDooiW$tbNt|Yf!f5|y3ZK19eN{Jz*QY!*D)enO8 zRGIAu#gHhIcfc(1j%AWsi^eeQf_K|?VpN$B&iy3YZ_VL-t(RODHvBuYe+|M2%8V;O zEfH&`N@NW$Zc zvzw0y&g*!n`HWC5+Xj9E9x;HI=fR1V1t;42vE9!gTwOKmKR`{KcpP zuz#ra#MO75>8|JV>cjr#l~xQHq?BuVEFpHozwd9qs>t0mL0HoK|4JQo`#z;6M9kq_ zmXm7#^>1%0J*V{xm0f>$ZF{|~OPFV5w7&ePr0wqhV!Hh7*Jr_@gdp0R{_Y#qeigQb zrccSg0MoX6!(mykkH}w}-5X(gN{RZ~V06l_6z8P~ynA?~dQfb~lfy#!K5Y`tVIiS+J_L6}=$NYAHUPIpw~4h@dhx zhudbiyXE?B9{;dD{vB1DQMCK_S|7&Cqv?;kp@kZOAm_+f6PpMw8|E3M4C9A?8>reAH>4@?-TTP7j-=Nz_5nIOqJil&~o zB9$FFS(D@Kdn()JuUy^9Mj}@+Y(9+9=je;E4RG9+Yh&-Y(g`a`%akc;3G-a_e!YAV zDKINj{h;In$=8@5l}0pgOna>H#i(6nLlL6un1%}qv2G#zQS+r#kn&CPpK5+=Z+=}W z<=_PXtDY-T>IiA6u^Q7ccFF0qO-s!dg{hRd5EL^PEifIk%yCq_)54CYFYC(>-SJ!d z`Y)dzKLBN=xe&6%n9iT2;wh|t`csP6QZiDZIA!OAj47N;2yNdIK@3nhyFUKDtS^$Y ziXGQoi4l=FI#?-}B3rK8fvCp$`TF>GpxW-{d(++Oen;q`@KQ=CYsg&kh6AU{fDr%! zDnO02F{~-q=wE6%QCM+1F^)n65HjT$r$5EZ$Fh8u+?L?4AOBOL0h@0jWFt?g8q>dJ zAhy$IKYcKIkbFi_RsS{>RQkw)xyz$fJQbCqGQ++d4z}Iv;ahchTl}12;?jrfi{M&F zGhgOu`jOH}+i&eKprD%8QV6Ova;FrHAOFwg`6xgpdWxRtuxKn?4sHvwOv*Oxv@cUxXgw z7X0ds?WApdjPtZ@{tD=<=1pgi7r#x&bjs>!9cZIlv>a}@SpJuTy0Sgp0mMM!;Y8cCG|s^Bw6)eSu|lS581yLIh{ zo2J>t5K?dzSljj?=29v!ri3-Dbd6p^SVFo#yjfk`^4vE&swQUGwl&q#_YJaSk*5$p zeEis%w(Gl;*O;?utTCN2nlWv}m+KV^Xu+II z(Z|)TMm1b1&IKz8i{}EA5-|m%Y%S6Uy3C``;_Gj|Ut=8CI_wVINXe}g%KIf}npR(d z-re0-)X!H(fPJ%X?M_OQBcIotp?2Nj-K$r-!Ja1{Q{;?EZuf_ww?`j%OvxxxLI5v) z)4Pza>-Dg^J??gQH;3%fmJ%RrehfZy-~{3_Uwtm`?jMGxUA*s&TGC96E5RABhD*s+ z%+beAIaLWca^aktFzvRre{IUxYJym7`W zF(Kr`?GY+1+o~IR-?pdg_UFfw;JCMn38sbIR$pS=V#pQujiC}hzPu=@831Ck+AwAj zfeV;@0MJT`alSr2PZhWnjQ_{~;Z-TbIB$f?c@?VBLIgj%6}3)S6WzuzBIn4MdR$k-icZ7fkB z5=G!uNR7hi{+(nR1-IP}Yvx!4&hzz>BbPLX^%?UQ%1*c6%H}S|XRM>NM`2z`P$?CJ zTnoKSxgWaLNDetJ&!3-OoR^r-1WU>>`F!rj zx7Hqs%DP@^8l^PC$m|?Sh~Wb33ZR%+g+4;vQv8s&v(y8!ecYart;54#<)U6bKM5hb z?xt*R4JT>dX|)%aOEJ;gl=3{SLf@vM;=D4R;&Nr2Rn)wM{a1ezlHe4SJ>&>nbp7$K zi1W%ULXwzdW0lrScRBr(iX?fj)PrpY-SvWGNriIJ((2s-i>iJ`s$8{9Dk>EjqC#YC zauaMzfe_;#7^jMA-GCzb^(obl+SIoBwXv_J(+T3WGCl?J%SCC}cdwD78{IlF(H&HC zQ?q5VCkDl5rQ81Dw^AQ;do=wGRaGKO-a**}EbjD&T1cy}3boo~bKI}oaM1deQv)m`CSiKhy)Qn=2G`|Ts>a$I;D&*yDGGbb85H-&nqNu{ zX)A?-;^(qZi5r?5p*m%6<17(YrDa$HO3By|#-|jgv@L0yg^{(4i~_HcRUj@)MTWLe zP#LhHG=f zDAycwG)!>S026zJJ!762)QFH0V4yg1qmj3M`BB)TFb#kNxlhq?{7UOR3YLmzH6#50 zB+=KdX33Qx=2)@9Zuh%mGP9~Ot7t@aQ$12c=0bn~LC^!t#XPGnbtgbGf?4viaJrjupve zs$A#FSpG6C zJEK)GqZC%Q`&`>frfC%bD@EABg0Nv($UmbwUB@lBBEh=(+v0xWv@6)vY9)wLLW+#1 zq%@L$s^qZiINGM)NnRw>8a|Z3tNzA?HTtU?&sq=MikK!SAVm_E+vY$u#q9&CJwRUp zg=7fTJ1?6gcmCtT_=Io8$ zy>@wW^LM=F{&=@8TlQY5oG7B|g>2pOcg70U&>AgU$q|96W;fLAK0Uj*eg>u^Hz*Y) z}NTJ%ic`8&3NFpw(CkiPW z)1ZG+G7vv9s&4tn_^>;@V?1#NcK6T4o!#a4lqFYuzP*I)qfx8v65wNd{B_fbmzQe{ zW!D)-DU>n!1+tRuH=_FrM46W-L8;*%=9ll9?$8+ZFTgjsTsszK8zxzu=3-K+NQ zHwZBW)ZHByT5_so&RN;xDON}>vHT*r*}wUwe|1b7q^$I?>)O|x(RNv+_y$x*Df4YX z86Lj*XRXY5xhXA%;gQK*39%WvX6R$sa;|ClMEwzEwOgkhfj`4b`2 z%JAZ1AvcF*{2`7v#uaK>eN6<%)9Lu;9SLyDs?cDGF+?Bp`uvj-B-;akHo7aG#jSw3 z*S0Yz5kPi#Ae2C_Xkj4}9DOXbd}rHzrh~PQ(jL$}%I>iy6@36oN_H{$6lO|_)yR1i zJY#crJuie^-}gilSG;(i;+j${MFCXEFWvCqO7BTFhc7v@ZT6KJkcL3AvXnUUwxdwC zm!FFJpbRppc@0VksxJ8-6%tW)Yf7o6aB<@cl>ppqD=%EIx+sx3&QOc)?#+H*DQ7oQ zT%zBMJsiILEl87#V2lZ3zzM{0+W=W8Jla<%%>Y)hV-Iwh{C%4~Jh%h1vhWp>&V`q=enZ4{`aEtd8?FB`a7@ z#njr08pCwK=8(v+QiTMib^>hhDa7cOQ7O$KJpcIn?4fDydGK@p1OhrQS zbDgtL%HMw2=EZH#KtK59nTx)}b1gq77E0vWTHB*G`({4?i5x0m$~ESUT(DYGDl3+? zmTmI|(ZqGi>x)suYM~m|@dw#HwENar8*Z2D&;PNoCIn9<4?D$bKEFKqdCc1j`4qKhw5^A`hljhzd7XWr*4ow@Z6!kB~mE;&pO8n5PR$B?mZGMZ{>ZWh|)!nubOnZ{b)||KbB80cbIyZ-u zjJ^ZlF_p|1NM&`WjY4EbXsx@DqDzZXsTNW#YQ96dQc-IO=mDf^%5dgX^ z6;MiXi@a7}K>%n5D1hyHd)xdtZ82pArEl7lLMf4ur(8~5kChC9F>3bP^K^?8wB%i{ zV@^-gJkB>OWvYB$XXG@w=)=~x?G}8e@z@PMM62ZM!@;LIFW#j%F8TBGRVevzI^e(m zU*0b3=af_5?1Y3^n0H|sKNHW^Hp}hi;!K>Z84wYeS5hGjA=MIpX2|Yd|5{48ynL@j zqlKR4pEC%l02xEU5o#^muYTHYvB+(@%~NDx7|xtaBqfam!M15p5`{3%Z@FfMD=Mf_ z48u-HasK?h65Y_Bh)~+DZ5pL=*j^YH${L}p6ox@&sF>g&Nyw7IgxCsYa`7qE5}+g( z)8dn`ZDZu-mU-LGLR8!RMhH=AAj(qQWqznB3G%j6(*il$7wr@OJku#S-Rc)Y=@s zfs(`d&$YD4y|n$S{)_*?yKVdYH*UWW>I*Je{0q-aqAgTw;#~Chu!DR_)8|~C3iCA`7;8B0xZN+) z7?+E-#ttWJqLPi!LuE5VL%bAsE%CGNj);Pl%w%tdM=Lr%|2R(nrPfVKsk;VQlNqOU z;rhUJ2XQHB;bO;C4)My!2yq~KUxPsTnwa$057O*FcclWbB9ti+Bs4Mk`TD`Mdm%(l z8wxK)$7-nMsbLcC+FZ@YmJV-<*fNZT{mlWck=O|#d8Vi}*L z;BFna?SiO~uEq@A?v>BmI#;Z(P#EIpxbYj!VaLcux}XT z?B3UqxjhokdA$(HlGS+riKS<||HU+})8`+p5nOj6Mpk|0g-CL4N|-2Q&=ypKh}C+zobjDmnP^6N^O|#Z)QLX;hqJjw|ERm|mOv7y}B+ z3U+P3zkdwdg_c>09$PMO7E+|R)YOD<00|YO+nz97PT%}D+qUNEtOOAoLvpBgEWecW zt>nhG$IP`rkrCIme){ppkjAcsTDnk)3ndYdR>nk02q;z0YY2>v-Tt9zH7c26j!Qz( zkq{{ew=PDNl4~fOF-XBxzv{Ll;WJAiv0-T1My~VU{JIhCg>B;YnG4`*$fa@#s_Fgo zonQa*e4f^HtVI6yZ7Y-3zw+$s;r}jPA<96PQDD|LbP|kYn`Qv*FR* z{?p~f8}pA6**g8T8;+v=y2#%453CdcQgsgidu5JX$np9~@nRcHwC8A00Mt-xqFTHC zJF@SDJyxLUa;EfDQ!vUl`+;hqZHbI?W3BCTc=l^Vxf7~FO@6+_jG{5lXJwAf(6jv1 z9v;o%m+QKuc4(Xw)-PVOj%;6CjyFGof+UVgSE*@zy`$2SXq7OCr z?fLI%`GYbTJdcqH%@M!OE|`-NrY|Xg)hHggRC<5tI?MehWX0}Iyr}9*62jM3VkQ57 zD*J9(j&A-oyEVsgnH@vUby#kHk@j_sDQ-W=<{lMFMaTtlFHEEQyO$cW@ z+)?f7_S|&u3bomPA2x@gFC|M};^n2pfLfAEWt%D}p{yUj&+DkWeT<*3&tP_k`;%>U zM*#HW9Jj=)BSz6VOjUPMN(FV$odzZRnuW9qt6+hv`^-&^XHlmV_`F!qhtu7igi^#q zjBV4~-Qm$5zu{(Jl~D;Pmu480wX8B1TM(6%02S46msQgq9;`(_eJpD%HHQ?#8Yry5 zwi2V>eO2^p27s~;j)7F5cf3315^Fqzq?~JUu{gsx=vHw~k~5(@P%WcGWt(o#X+fz? zt`myBP?MRdrb9$XS72MI2q0{GR83dXC7i$GaqUiDa-)>BoQrkN6o5r=@rZhwVbg!%>9-p9hSG8U;WOx(-^Ez?IlbT zq>Yz+`}7wOsE4m(DLExzT4}*GW5l`YKpRSP&7R4wR!P;D?0_ygRc(J!YteRJ@DQ`o z%|TfM$%kbQOJH0S3VyxiMAo#G#aK3$my$Q{bMiL?mbZ`2twQesSjv8Q_y?tRUZ?f) z{q6EER7*$*P^|^GP20Sc@KV!FFdqFD9Y|@iyDhixYF&{d3LTs)ai!{~^UqpKA$9P% zZ}x59u3PofXMqJ35G2Kg(3OZ#G#to#=ccLVsI)3+%_KOsN^@c9H!J!mFx4Zsu+#gfPDHECl$l zOmchdOyAg;^ZV!L&zC2b%f8(avCDc*c}t}jtd%JM{r2tf(bdmCe78nndaEFFeoH0BRM%EEG{R1}XZFadRLVt`JHlk0}?Wd8r(Y7ZPV^gJ;;jE%(G8{`s3F%Ui0`p7k5H(Y#L%b`^AU% zss7M5Ul2c~jEZBSV(dfL9Edr${*^Op`d5sR#N6)R01j?iP>M>Q309>J!TqgpkL+F3 z-%HL?;>JE=bBNa~^Jlab>KLPmLJY_Irt2AJ42E^}NY}P)bpMKR;IfoF*DR#!Vm!CU zdnt_%g`;9Jd0*f*4D!E_LA2>`pqV?BpSh`mOYcZn0>8|BU83j?NAaH z;;P$mA#w;-qrsGyB_gVM$zZOiMVOH;&1NqefBP-Z;4Hqce>j( zkMBUY@+0W8z55+wmCKBhL(V`T+dXl{IO^sR)v!%ZjFIl|gzPB$_2oYbd6Z_S zPha8TH+d;>dd5zwMsu^T;GiZXB9bLlVP>Ip+L%2BS4uBwbBOmwzvk#ncR=yGTs$j(5M-%p0d=s#r?UmQ2Eyk8xEQIPrym^zN`%~dxlMhX&xOpwq7b#A0`?v1+rRp9l zgc{DVcK)*Z0J{Y>rlU zVfi+fjO{l(eDMBXguO>zYI%;A7v20<_WqmbpGixON30CAQra?R7-K0B)e7jFMsp$K z`T+_s5HbId!e_3ALd2w2-F;50s8M1KiRIuKO$dsKN45J$VFn0)h;D7#SEn!kow@(j zJb&Ic5BSKrR>KaIjO))-DCI|v!Wrlv4cY8b27Xk<387e>MK4@~w{ zLdhP$GH60bfWS(q*_Fg&bRo>S7NqTPe<)CZMg!Iuk^R{f3Q8HH@`8Ll}c!T^)NS|2z*om(Q9+q6qzN5``U7PB%tll)Qvs+mBR_x#D=1a+y^Qrg| zxA)6@&gs}RC)GCIO_g)g-Elaw%!NSJ>-%m!gY6$W>~M^ zgG;3zBG1uf&Y(Y?a?L4j8jIG(-rX@-Q;Y%-7|btc$(gb|hayB#O2=wbCLShtewpSc z)F@yu`V{kpOQl-Dwb1Qd*tW2q1q|Gx6uDE`z5H!CKl_k?6zXH9ni7|yX7>WPbL`*) zus8~}Td$jJgfJA`Rq|Ike9rmrjJrB8X_Q##*cB(rxy;P>97-V??HjOXe5+z~p(4NrP;?9B`*A=_R8qMOCW&FtN&g>t2 zN+~!$7Ld4qyszt$+($G4KqIz70M+WIOBkP^GSxJNIXB%(BxxEJ>KfAdaw~pD7RZfZ zzVIAvV_Bgvp4~E+loVTPxNiPMz+Mlpy3051sw0*Wau++j+|GJN{WVql!a$4JH}#--?5sM`LfmTq-wb2rA#Hb zI643P$N2oWQbO5WBI3#b)fi)Dnfr<7u|N}3D(Oip$#HbScgJ_S>nh6K@hu1Y^5O5x z_9*fcGw#=9Ce)>zI_-Y%a)egTGzfR!jT2|?R(E}2S%TIl%j zz?HZ>PhmWld`3Z>Tmk3eBt@^K!EV(l8C=C9 zTZp_AA2XApl(c#m{5JF_ZSQVNP^wi{#2Q_st{GaR=CHXGB$qkI+qT3|l)(LNr-Z)D zQ_4|-o_)C6b%%XB`E|N&5;-EQo3BKbSdPrQ%7C}6nr?1gLdp?2kC7O$Mv3NV79Zzx zkOYm^cl(YiJ&p5unR5z6TygX%$DCt!A(PUrl-5Y|cO2x%6G`2D|&-3G9 zUo&jMF+d>^nbe#=?pyE6x=p!cmThm009F7?O{*Vsi9)DaNvMW1AvhRi*O+q^&*O{M zj7s&Pyt=zP_6GmM|MojBtWw>!jBi>p-*UE6Ar61MhK80V_hvUTega$h;5#_n*}cX#IxA477x$1hBKEU8K{32tJw z^UVP|VlARTbcmouOj}GIDyt>cwjD&<0Iwx241gFb8LT-OW0X)axa)P*cE@YvwTjBt z+gZp{-=2)Nl0kNn39k%R%I&c446MuY{CVLF5G~`2>$5u4Jo`fEb`QnHfLI=p2aJTB89NTZC)G|DRt)9@WS%;oJnQIbNIkm zL(HpI3T8!N04XGa93jOmj;LQ-^IL50qrX+oIVuhfDv7|j-nr$*Q`Dx*k#nnrHdIB) zh2<%1m*x7eTtv!Dse??vV8yYf_4Agm6IXMQoo#=e;!HIe`zpAx_^WL0SQP?MH~SoO zu2D##h;w8yd3X6VJbr19Z>s53|CK-+@)OTbZFeGl2;(!=O1VX-4AC@#azoH?EQr9M zuf$R4O2nBLvXjk2&HVQ1L*D+>9^dNy*Q}&)c@OCa+a9F;BCRvkD7E3$FhXFn(vNER zMRWfplu-PV!grMg(?1HS05yxpd_m zOuK)Wu2-e?ZnrPxS+yt7`xu|XdK;hqqIB9n{P#sXY-6fGZPy3SI2O|;Vs)7=W&S)2 z|EzYe5u>O>2A|v~$P74W-RA9MDGAM<#Xmtk*P;omFz*<1x_NEzRB`3aUV>q)sIE7S z0B%7WE|nBrnBTWnoA&Evxs>ohcPHXK)vF|Dx}!e56Q+lha||W_%!{a{*0^A8QSZ#| zLACA6)8Dpn?T0t}Z~nV!U0=Tc&mfFML$%=H0DR}yA5-0!f8L#5>D^ap``jIljP-8% z*d8ARSAPDMivfUV|5;!!bo2CdBj=6b$+Hw@sWb{;EEjRe#b}|l;vjV)4@FT%CdlXk zghbHNc7^3qrkW^)nGtApA}W6UXuAVQnOp|gAzIrEqHUso=E5i(0F6L$zr0&H2Sk=~ z7AVttRw%mNFG9@g^)D$p28~b_YLTia!%J=4961qUAr6qWZ5}g-wEhGX751EWr1m*3 zC2?U}si6kCoqx)Cj2kn0I2>CE2>j$cG2%iq-L=VIYJNt0N8mVXjom?B>T%vV81Fa(4U<{1B8ii1!o%fstm8`Dnb-!Jpn?ccWd_f%6ZRjT_KQ3{R7h1Pa= zN+maqHR|;?UO4}W<%oDsC`v8005T9(EmH^%1K%^0jACUaZF9`N-|vMUVy-36oGN8Z z@dv?Ykuin^s@MDbM2Zub))17KV4D|)n?M4l0Vo#-h^85GO_WOxtoR9;%@r9>ZU0rt zJS^WETC{$(dC2a$hVy!!Q+O(3xLsJc`-&H}z5J!`xYFF0CzM&}LtS8Z>ejNXlRND0 zSzV)_LB8hD=2&Xp;`kJ<|3><*Yrj&h&fNOTPt5<>o_^8X{ic>wbE<4E)rUZh#YWr& z(l$P4W|ZDxbj8nTxb5Fo)ob%gqN=o@P^y&T&WXkx|H3PmQfgM1)9G*yZU-Hb=GlqNd7Oovxp9B}yETD{I|)hO$9;GTgW+ z&#RZrQK`~&O2Il^bE*{95MI{Xg-ea{E;%-zFG!zHk6(%52&A6B|2vf+4FXn(F)bH2 z{WxAe%rBF%t=u)qPa*~cR)X04=twC%^lgKJr}zh>76n}j!0MsaC2kk;0a4k*Yf#P0 zPk-cf)WbipoK3^s^s2v086brV?1#)?8&Rsn*rB7KEN(MlAn|U5H?@U|wqWG5hC| zpM~md|C*bfzrAnacj?Sf;3YDi)ZK>~6gU#;5MH@2<>&jvY zrLgQcHnKs}v`y2r#^zG;^j(clxdLLf?XZm>C}VRR80S1~T)uD>b^BV_okXVez5+_! z`0cihKP!o*e@I36^Pe=kCO-;!knLRx0osnC^4rwdY;+$IsHQ=Hyv>zW-RxP3z(EL2 z=>=s6j45?5Wb5J&N+uS63b(UguWtHIamB>8+`eaN)y*SkT?!d^;O-Mp;lrD{Zdxgd z3(>RgPbk`E*a1h*fKi>tCpW(EEIFEXXe%w#Wp27x%4$|q-*rj>;|j3hFe)RKF=rp8 ztR<}_1qM-@J*BX%E)hUE>qfXGY+##btK7`;E~iyTTX~h|A^X-3TZv z6vnC5jfT38=d`>`%XQmo)Al}jZIqF^BqxL(`WA9Hk0TLKtv=M8V7#2e`oh_T2ss)M zWUL8p8mA|tU}z3Pw%&Pxsxk(=w);M=iSxct&UqPBjrp3WXsvQdrEo-M1qy7qfN{A! zKRpRST_bmWpMY;0)6iRR@Q`C)}r)`<0T4=Ysm#VM1w7mh2!RJ)UzPG#9 zE@4a2Q_8i#?3STvk3&aPd@4S8pEjsaYB5S7V=<(8+^ppLVYe<$0E8F|)uCw)yGBqs zU*<^Z)OHfvSklnRR_kR8ITcim!e0Y zN_qC_GEI#8nrlhPXc=mnLwt35tVE@-wh`MFE$3XI)=DB^V~3wr#f;Lex^-yj-uJrDD57F99SsLaXS5 zFshQQ8Tiba?gV?(tPBIk+nVq39Vl5{neTfmLvv^Jf2G6tAUbP>`$C-R^iN zwctdhWFpFiX{As1cT{QfLD(+11eGMuem#4)ge{|Nl>{j`3bst2yn8~^a0H`eO?b{WjHL;2$tv)HEnttcqye{8ieUG#eKF-_Um9fq43reh3R&p-OC?V7gHE>o6 ziJ_LtL|@T{oTy+k7*=oIDTa+-z6(CL=0P>5NDy5qVcW)Y^sL<-dG;YpzO2QayTe@! z3+2-9b_yolo?PzSe5SM_wa7!QrbK@F@-3w_fBKFq$KYOS$*qj;Md83Wl^CRHMKhqf zrz#j_66DiV1EExlV7lj0WCN!Zu2 zd4q^33YstN{N@XS#L=upIab$!|Us6`WR5r!DDsw{FAZOe7yq&*aw->)I3L|9& z_$A;Mm11%qx7*rvC*GQMy#NKl3MUZS&h9;Ieo@hu_$L&3+E|-RjO(>poO&L+in#Y_+sdjpQ;`&gwGbzGPNtr3WQrp1rX$wz(s2ja%P{532;7Waan$qwB1()_Y!hC=ud;`%<9A5r%0{;QZH zqky>cqlfwzF7IvoYoQ@6pG*9SH?N5A*!EGfO_<+M8X$c;9KI%gfBx{FkS(UWlXh3J zUEM9rqmpkaUz%2!-9Lqrc-n;7a~uT&#&?A=AnWJ%)5{a;J9~Hsg|p;xNy&Xc>V@1% zjbZ*HRWF+ptLGe2t*=vjt=hM|ZDCpwZK4%9AkP5iM zSmLr|rnry_sNLP69007bo!{KLjaCo)$6pn+ktyO`P1z0xq;bxtbPZXO`#Ztd9e-nR z@8eeGR7>dYzR~t>dj3PL9|S+}vS{2zzxn0Lxk!2BaOT4D=7EF;#;HV<#7RqYko`9) zrOJE^AuJnXx)SAh;}w+dYN;V+VK}cI*coLN_P}Cr%a!RvasR4_>HRMQO;WX3YAJKq zyd55Yoob>yXU?~AY`Sju@GCbv;-c%{)@cH8sA{v@>*J%4rd9V<@EA9s5(^Veg0_Wp zEn9GrbMsr5`YoK>{TKK5kGaTca^!!sZQI=aCeWVqf^1=RmTar#nLu*D3W|$XnL{dB zNNn3(&0B~igauia(w3SsO9WCYb37ac>hU(B3=~|=1{)>2p643Jzd?PHLajlq>y`T- zseB0O=adbTUut#K%@FHS<7cRc0<*81ZtpcTP*8{*vvM9A?V4d9!$2^oUTSTD1-JZM zW0v|YGp+1SH5WhrUxeq~tN*ck{CAAk_5X zGE-J$TysFJ--!L4;VfK#T&DB?N78-mShi&cVx4o%Ww$%$gv-dxn|W`ss#q+N-E2Xo zAwh3~pg-2D01*(-FDU>J*$?}`uTkQ=h*I21}6)`oXRIDP#I$E!aBv}Le3!Akj}aK>E_q1ayb5I z(0035QlmsVA6}wAJ9`TNsePKC|EZL@AHPlVyCo_}%Q%1=ZdBJBUHtXLEx2i`hX;^0 zQw;OIvG*)RL)ikvSZhrFDa99n%q0qwYMrw$tt?7ynxLAFTx(@kFxyVos=8sLMh()6 z){NHu?(MjHLs(19wHClL=RLs6VqvrK5o(rbb1To?G}Y|G`KaIpL4w&Z7087oma-tC z?kBD8V*-$9$BmS|wy3Bs*VB6VUgVbZ64!HDV=HqCmpFe)VQKtLug1(swrk8qFlbq> zUq}o>sOT@Pjf5=Ws_QX^r3z()GMiqjAQ_CkA9mkRopbn7unH2!iJFi8_)|=5`W-3C zt)<9T^}Xw`9!lGb;;CGiE*t}jTQ;5P2SRM+fU*anjb&)^?4#7iVMz7ptd=cF)0y$c zP4`GL#GKbt@t1f3XHLd|EF;BFV%(s6z*KNOpg?k4)7_!$NfaS$tsqe>*VP~YV6C>@ zHzDNf*Z-R^`XEpb{qCCUEXFqt%;n z`c(0xy)s;~GSXO;@*yk>sR=~C-TdnI{yPAfd;}=TU-n;raz^fUuTbk! zio_-bAsRt#^_Ni6cG^lMwbnvFh>KsZP+H~U%PLBSSgm$eV-9nizwAaQ^aw&rEjQa6 z!6;hYjP7>#j@c}J)m?8*FGT5kb3PneQ_QWz^=8sBoiEq9?{2t>Tq)-)h0ust^7;6( zKkS_pR7GvPHf&Yp1TiIN$HDd5%FBF8#cy(tv+d~Qr+0h$s*GH6A;=}@4NA{ACr?8Z(>k)uz! zhFF+s>eTzkes^y^?l1ep#c7oa#MUG=EyZ;$xv_<|hNZJc0zF;!gHt!dR%-X=?rt}@ zT+-L$A;)rEf^pg!bG)8+o6Tr@LfKGmI+tpy6*q3sy1&ex1oqBeS3laWH%w|Q}kCYu#|`r6`5h|w6;zwR9u*^ zspXQi$fZPX&1kL2zMKz@kpwU6o=C=A)|j-iwc-6Rc3S&Xkl_At<2svGUu)vhemLwG zpLWw$A!=(QqYrWHEdZ2;^OEO~ORaD3hWC$m%QAo2e+^|_VhpM6hTcfEuGi~Q<>_?R zgB!cvXeo(uZr8POVMUy4zIe}=1+Q9et<~qmprq|Yh-cDrx0`&r5H+S0l4xaw<{Lvl zj4Y20IMt=!ZF;-&ejRQfZ|@{nBdGS}9nEEFf>G-P(;gsol9KN3Im!(Wm1a6K-k zPtvu1m_!S;aTaS{&Ma=#W-`wCvL>G_4_#-oe@cvt_fVd+-Uw3BpI9|z@v;B_AOJ~3 zK~&_Szv+iQetpR`DH6HHunH7qxYIdGrS&k}Ee4nQV=iAAjWzwS-CdqeB{g(*j)9WD zp05lQO0Mw>>Gve>uq>^KO5ar4YRaxBdG}f#HTWk&&18LxjGoy=wx|*6Br;MMkmlsmHvR0sLX*G%r-5NfI%Ms1nf|XI$#aBN=P0&8~ ziFEIzATQzQFZE3YE zzvK{#_az>5=TN*!Oh9%7mv$A&xAdpy$ zs2UC0v<>C&gcu7E^0kDQQr39<6xMSLC*2XlBFzoUn8LoTEcA`;b&X%s>9d+1m3k&| z(;!RJOEHF)z^~n~Rf8lNQ}CESCb;_bPhd;$eicPKTG(i@!JfE zL0q0cgn731hD_PK`kn1ng%@nx-`oAulG$u0 zqCtRXMeBOd5KaFd*7akmo{ZFP6jFxse@b9#bD}nuO^Bi9ii%1)r&ub0BxOdsEQf0d z0)-mh5c-xpvjH`wT=04*WaDz6@=~iU>9gsI9)G=mxxht|xtyQ=MabLn-QRPyX$B>v z-2JN7xzwLQYAJL{|13ls`~OaLeqOxa|H6I^*B`w4yI)&WF>N z|JQbsd0o!L(&$OV^-@YhEN%X&(U9;9X5Ec{*A0UC9Mgqki}@hCN0hDlE43`TJBnv1 zlu;W}t*|n!=*C5lh*vEN11|HILEXFUul?5#Vf_QPb4#+qkXhx0rBD(mmLs>%PNaT% z5UBF{7r&%}uS-Kae%IgL8SKdP_3{gLP>2PZzSF6-0FES@7SVMeOer&)O_O_x1oXbS zORYZ%!FKD;XRiuSFIDdlLuzMH54HY*@IU7CG9RwOZIRAGsETi(8t`-Fg07Q>OC*Ix z)RyYA(xFBluGipCeGY=G?(UTxS_H1K2)%1{oTdqFkQqEj+3s!Ze za%^>h^27Cfnu8nNjqJDCpRvwL-OH})`X2P1whd`Wu{f-aPbmjUTfO;xX?qf5<-j0tV8K~Zu)*`^IyQB0mA%ydoGW#6otJLldn2OY_>6DP1 zq;wLwDQO}qVV#tnzIj7s#!~b840&zovhM%0cGkIn7gnEmEIYf?7&NKH>So4NTlU8J>ox~WnFnPpim1Vgfw74oW$FoUIT znorN&t<_TwhkqHSH)eBFxm15JP~=FT)|dZp zJqMb0q@u|CsuW1=rr%4cOOC3S%27AoMonvqv6#5BRbuz{cUYL~3(__g+ln7=ch*h* zv`_WNR?v0-ahTp{p-$(cAfj%Iij;~)kezPJdcj!4I95p97O1GkZut=$$Zk@u=fIXp=5K!Qr1p|agQ5?fdg zT-P$6^67iA{MkJG_d@mOmp`x9*mstT!%bgXFVBNCnDSK( z=w7zpyo)@veAC&nE`Le&=sRsbnhNMGj9 zPg1^OvS@yP2}fzA8h6Td=H?-_DB5BTLa{;!GEm#vY7$H=n5#$`g1=&}!oCjc_ev{w z|4d&Ue^S27^bOvL@viA zqZ$>S*Do(=K9bRP^RNWF#`Cho7?GnVn`=5VIR;g0GOB6YuU?EJby6cZp+pm|f>}__QXk&FKhHXqwN$#<-EDUFxx~26l`}A3mt%m%YHY1Cb`pSVYfYlG zpn55Xu6nMsHXU&Gky8#aqzjvAvLc6^K`SXB63VgDB}+9}0J+9o!a*t14Z{QzLO~)a zo7Czu`@5~Qsw=r|CP^}$=Frl-KQ$?CCbI}eq5I`}ifd2;J0rt-T|*>6g6lOLE-5It zb7lbcrMAY+SZx%!Bb<)&rEsl#(pjq8R%&aWMZK=;?QZL|Xo=2q?8iKqE_Ai;4Wey4 zNo8_Iqt$(X`}wffG6oM=k)efxT{oDKLiC68K`9}Lgs1}a={oauv06Awmx$LGrcN1y zj4}kjl)Qstsj|>Y^|`c~szeD~30Sfqi`!{i8lZspukNIwKY#j(xzuKEjh?!$DPss9 zb~l67H;u@V_INtq431=rnHWhl?u;bWIM_7=?=M(GhU!eumG7ppbDPVuoEEQi9XeZD zjfJ^D&SmWSo6SH%RD|5B>5U{RsXA?%KrMC3vQ$u-NXuT3yxm!YfBgQ#VENVERxc)m zjlqgC2!n`@|OH8DVR z{jE?cm24!W^=pdWC^erhv!4qjW2U~Ja!qHyx7}E(xU659i*tjN!WR~1GD4>HQ>lKO z9t89?d97jCz7n$UoK+y_^{UN{lDgzY2mq0kGMW%uPHANZp)|_gxRI1DB}&p*N?g7m zudSSGm_dkf+$kll>x(s=QXAV(AX}?dE2W)QqQ>&VLbkHh@~oWc-8Nj#>vGV8Z2-&V ze13jvsVJjK^{&4o?EuAk4aZOaY`dK@+gzG5eF;gBn{MAjqgtePH;PzF%DBlflSo7+ zq?)S&1TCYp_ehGN0OVZG{bo}IdmjjGfhTL_>jM$Vw zOsVmq);%bxhPMa=>nGzXiAN|$X{sP>Sc~^UthF2j4A?&)>KcFIR4SVq{zTZ-bnK^B zO5c_2S?Yd#-(bhJVasWKqP7m3$2FI<{?NNyJ!~7C!|@MN5p%f3@I$((&~vw3o^>~NEH2<)S%QBq#@HmW^4tu0hHI5?=Slw3AE`poL4(e zrXS0^`gkGU7<+?|N?uj>4U`h*gOpleBRN(AYzmoJoE5fM3v;f1zh3`r?Hdpc!RK^W zTeQOiw4{VUeOp0to0V3!->UH;M1uM`g(o392G04+Tv&=$GPae}4me98Taki9BaPx_ z*!`Aiyc}ODp5wY#95;90W$2c0DE?_xea(uU}FL{ZZ$N!+lw_z2~&bge|{g+k{6-av0<^kyfYoMpuN=kb4{Yv zJTD&kzS~-sn8TmbdZuQkSHDqiyT*U@;Ri(7>TLUO%(xN6%#g#Wq{HF?)#NmU>Qn2| z^)ifGQVN>S@zh8X4Yd(~)~-YDjqO!0bC^}rZuf0TYx7Sfeg#;#qSU`efhjyICFA@t2a$C8Towq1CJIUoq>;%V~f9elFSczn9&RYs^c!yZeTmUQZv88XC!vw0kWv ztcOo6RZY4!*Q%%~)f!Ru*qRxvnR@NU3biB;+3QXTt<%~#o~O;I?9jM?$R%7;@HJdY zA!DQ=okD1J-%2asJ|BO^<|X^s9ta-tybhb;?)7ih9{U+Gi_UZ zDd|~v<8gWMMGxH$aRRkf8boc?2hM@CDod_0p+jgai9!t2(3o*Oeq4@!D*iL1FLrus zhcRCF4XE3UL{YF)Zp%1@HMX=z(6+y?FbDx9%-E9P%IT2vYWp54tfvLSXQzdbTe5eX zT`#qeT_<%1%1%=suOG8tl%8C7V|MS?uv%$Uw{3hV`#)%PXWx9AL&)V=F%uVKrW8&o zE{PRM@$m3anhs4`6Q4i+%jM-HwP-MlHVC+v-HjY3JHE2^PAVjllt-n)@vzS^N>QBQyEG;Jp7v?5N#P0S^_nR<(TxXE|Z*JfHZkQfPh~wqQ7!@(r8cNB_ zJS*AT!I1!x9OhrznV{{oyXVLVxq)e*yJ;kHrD`EnTt8sDCw=Qt)%<=#1X^EZQcoz$^c6^eE1i?&ZYhgcp~?W)>~%Fc2tT5FG~4&JqUcIRSogl z^$#u8+^X(3Ddv)rCSk@`y1N4*LyA(99){`*ww%kkU(mxL`rp%A*K1HpEhpXEb)^3r)m2R^;q&Dx2hXW12C$~J zwH!$_sU4GA=b$tVn~{~ioc_qAn%!TOa?10SQMPnK8hjyCJMAQi`&t|#D;aVQF%2yX zl(tkTrB-HN8KDim8K&D-a;$mSz7+tM{V$S&&>fns=OtpP^K8;R~ zw!3=&>9n_+tguy(G|~Zk@6X{JVm4Y$H(m58r5FmdijrjE>a6*1P*!b)loEz&YlwXD zX^mM>l@fr&64u6P4JG=Vaw`CuP>M>Rw!4k(bmbDg&uL+7jL^7F8?#bPOB4*&n$#-&AOFjPlE6q>D-x!bs7Oi) zsg%w+Xt8n6h%qgaETCAgR{|jBd0k_i&&Shwo}C-sJigXS#>~=~VQ@LNr>{q+r>--p z&OnX}&!?A?=d@g%8J$H$Ps$=RDM@QlTPmCZ>U?>c=POh&&b6>!zy8c51k_X#X=B}F z`#Wx>*X!vN*Qi96B<=9%oZ)(%*AK&R$4xMkc2v@ZpzpgoC^15{874#(^1^Rwb**xaS?6&ak}87aGABbcs-KSD!A4j>`RlI8{pTiXBNn-DDjIRuwzjP0)fre?U62_(jyI`dGp$)u{S`>{NLx z-IgGw^M5h@y&m4h^gXOE{rFcx>+9#|oUECQ)}2r&jIOMf;~|F+q6%VZw-32(AYV#6 z)O?V#?}k@qxXtsCuxhizdTcqO-ATG_(YN^1uzA#*Z*!VaX=Y7ISk{OwC?uJp?cT)DIyRA!b7L--~@)Z!f>5h;}wcgs?l?%voPNd+YH`I^>~od$dRo=necE#YXoK?p4+<$NTek*NAJR8;!DH7L;o z7eu95YP&6Uq87Dz&g+H6R&}nXzr;{cZTsCf4RnfZT!Z$pfX{5oau7n17)ts{;01VW z=_&+4@1s#nTvOZ-rak@jAQS?kbGZ*q+LAO8{g)J?C~>k}zu%`1O;spVw5TOl9vdd+!h z0j+{@e6TlvC-6O%i!^si48#lQNzyH&U5;O**iNti#<*L*o_+YhIpyOgWABs`+Bu`& zb1KR`NOOZ!hGFv8^X2&L#v9l5z*yUw=2bBkX)_0Hu(jw9e*xB;yVu*hdx5FtRIA{$ z+U+-jObr!k73EKiuekMssK5J`go*J|=RX6z&b+lo6s}?Q+I_>-lE`-ZD*@v8@gJAx zKO+-Y$*9QMl))IQob|^i>n1>mm(N5kr;A`0&!<*=#dEljRg*S$S*nsa-u$-a$T>if zTv*$;sCJUN7(eCoB3R{E)G$f)D&%6v9_^ig$}NDXl{M7J^?3gD|AghKq|WsBrr$_q z6N^@jF-5TLy4UXJo6>5!d=^|#*cN@xUbG>u=hA*L?!IMP^EI!3s`!9aDE--Xtf2?8 zDF#d0b~>kho}X&sAcpd^`P}TtH#=zs8<08b^RdeINa{Ey3e7Wub)yHT4MmA&3$+CD-McjVcs#`Am}4Tel9#44!X+)7*6}ikI``$UBN{ZEJ(ZnUa{AB85 z=0^I~PTxuAAg#^sbA3`!h2Bd0DDAf7pVC?Zr<>be^~U@4{L6C_eQ7Vd?ag%mTW+>h z0V+$u%`c2Exvm}E8{<;B_HxrI`{hISKcQAyJrE^lEu)Am{A!2oog}~PKcN8TC;(ek z!3RK;V5GWX`B+vja48iqZ<){za_ENITB8BEA9wGm+mTWvYzWv|be)R1wd(=mWxV@` zQV>f*Ow`Um5Ub6lKuSoC9Fgj4nA`frxSbx~OJ}8MBqxqS?RIM1DrtdABN46*jdcCc zir`YO>zc|+3Z0^ ztyTrN5rU*t%%TA!G74xYIHqAUjGM8E=I3Y52^w23#tipBnJ_R8} ztJOK``;H}s>|-j35)g*LNiDUa#$^rx5hYXv_9^8SDq~n9GLRwyL;zHzd#$wSH)fvG zay>1XE~~G#P5t=I>zkMJWq&?kgO2E7dv^`XVZQp{eO%VO+;6tP>c^)qr8E%uu-*OY z@taby)%d)Bsovj@W3CA~JJY99GmFZyrkL}*__I~IfZShJWvF*T056MgHL?JvvhByn zf`wLW2v{2JO9q7@vrkC^Ld&t#(K;!pv*z>uu&g21urBA+^w{riHyf!)5}^>Kr0rm# zwjY1_@Nz!%#`IQ9(-@n)E)keh4x_chXpcTGA#rWBF$oeaAFgxZ^6lOIyez4CLGrW& zz+w$4LSs9jwal$wDmj4Fw~A^kmvz3*mqTN(jO+T5 zu$=Y>B|Ax}a*fFgDN?-n*nnlH3+DahTJ+}D8XcFJ8QpNxP1{yNT+cNxL^>5+8HUXx zL$RhK2{C-dMlF{V0Z3~#HpT`}bFS&QJpTeskn8~1QeT2bw5H2BJO{reber8)^|#)8 z5FLq7!_T@KNj6@u0t7?lddfbhI3q#>2LLth<9bYMZ9);65>OC81%bAR55n`0x zTO=akSUQHj<{FOwNn>QOP2m@StlY0y=%rT1iAaNLbzPX9+TOKNfo`O{l^RP){$&<= z?1rs&wv|(3ojI;we+Kv{g<>oq6Y@h1mmH2vLJ*nFqwKcJ^F^4+O*>3;OJ}8bLUgT$ zc>S#Gcgj43<%=Bda`cMGb>Es^r{I~DlLI2;e1;lJ4T(id-l&^ydk=(V&D5Z-S7w1m ztIdNT+tz(;f|~%*atg}6YiwI>3>4-M07T*uDa0f|Ox?zi+cc(>uA&vGdNdQ4)B5~h zQ#uN8wIv}zV$Pm~n6#0pGV>&4=THACgs{WC*+ig>5 z&F@`j5h1M$H&kXzLZs3Fq){TrGon)NCiuCo-VS$&VmGZY%5X9 zs2wW1L$(}3I3KWCx4kPX)T(L=Jb!P@JJWBL<6++aWQW%vU0M)IsqGk(?eG3x8KD&d zLQbB5>uje#B zLlsgF%ABqqHL$SufA0KmVUGos}K!_Knt~;*jgoz!;&LpGj*nU0hDmnmV8A z@^kS=2Akt0osXuwSHl>YfrWA#2E<}pN>Zxf{%?fYaO1E%DYxsVHz-J$N0c4s+>frm z{f4QfFeB>Rpv8Tu@pL$qAWM;*`)0a(OroSvh_sc=4XS9y_1+(AsySA|YP+!#=kTGh z0g$4S?1siv18FD6zIE0rb8EWSpmaW;owj7{>G==-{1d^qYP?ZyQldeN9AjB8BrA2d zpf^~>8X#rf>|VE~N$sF;3umdYB%e}h99t{lY&Pz7f45tgtHeXM+eo<+LJCnkDx!T< zPLjD*_KxI`qOYwgX_*DNLDKpAF_Bv8H*GC6yr^n0MB^#H4Aln|4vJ| zUcRso7^+{q>bJFGTD|1hFt1^iY#ZIh6tvk0S!y~(q7{v^oUxmr{|UrZrFy?8cUGWi9D-ONu|>A9EuRFDN|wGmK?1Z?B*d|_BC8k zXr()=?aSBalF#GTp_l-x?0bf(`lhWD!yP#R+^(NK0fW?ijj^%fhJ?rE>0k2oSs?3f zkgk)+Xs7w`M{M5iUO8z9YYtz+^~1$?5clKep_NtJjZxO0|FO2bx&01Emy}R6)e&lO zJ(u7QMA?{atF`2#(yM5qtslIScr=?_IC+s$s;H~jNNwV}&dWlmBsk*?s;S^k8>i}5KcB#CtbUN% z#E@D;t!df+pocf(?u}p(myqKLjjQZf7?KO+Q|0EyY1q6iA?78=aBh5*&|?XC{;6i4 z(@By+w#-r5u}RAfIaNmBRFEX7ayT~!F29l z{l4kJpP!tZy6Ith``5RRzst*)WqvW;eQ8cje``7;#UjjjU0crAX&U?SMj}8tg3@Sr z+D+@}c>4Sm!H2XQ_D}uI+i5qp0`an1BZu9aaeNfoK|Z$@Tdmxp8@EhjDw&iRC#&S( z7cayMrxZe&c5m{0^5?xZgV41fZr7{2oSwGZsq3_lzJk)uXlacCBC%ZOR+198(rITj z3E?^$VyducTR)?)A0%z2DZF)46+uM|w7uNmboai2-7S#DFOEN61p41!>bX`XUpx?QuktwpS_^D{DmNlR&{@@+kb z9IV{~h!}F;IIPRE#+X))ad6$;@!)i``7QWwAUHElGIe*nQ9?dGe*Ed{mtnZ;+FPGW zXS-61;8dYjOgH0B3zveA==aW+xcRU=KR?&#k+vUy{v-NAQjBB2v*tXXuYMCG3G!|n zI@g4fk)dU-0#-^^*iPHVikfQ-rO_(nk}x;gFp>mNOC}_(oltz|oYwkv3#{PSwyDth za*ZiQ3`W@AHe+k2dAlr&V03Jo{V<-c%hUO#)GWF7`P4V&c6awWPs=v%NA++xwzfad zQz_xHge@;)Yhs~-Fj|w5u5-vGJFRz(W;~j zHP%n3N918Y9FMzQ2KMpgLa7MJiD=gwaB2%Vq!@CpptUoS@$+*~W&v2wO|?Vvc{ z)&x@5`kHg3s$IL6VvIft6&mG@@|lckj>tKoB;dff)*6e?K7?fg39307H#Vl9PhWCP zrr#50j5Ycat8m@e^>?6jEL)7P6ko&iWZdZNt!Qsece9?ekjk|&g(us+(^@m(jA>hE z`uiWa5q|zZh%2u4HF+S+=4$WPfT_6N0)0#QGt$K97N9lV4pCvP#tjH5Q!xF}wQX8_ zj^B*4phP8F=7pOZZcLt^n(j!9YSuyx+=#GLr<@dQ+opLwF(FAbr6N#OWQ4V0^Bf5n zD~DP(yee&&uehyADvhkMuD1K{{B=#+0zl3-1<@~;jFC&l zpj1SnSPBqV3>?&It=hsXqLjv@by2L|Jdw5l#(u|f1;eFy!HO09e1vKpQdjiz5@OS&=aWF z>|4%zqd5qMiD~1gJd@{zy-@xSKq^?YFbawQ%Yi>&WF6TDK zpOv)A{EjQlS%w;@dJq}ZJqbpkFyyQlVMn3q>6i0z`Lw^k74G5kE(*03ncRr}kL1n8>Ufk;4oCD!ID zN)EL=f!rxQ5WJ?e5#u>OQcMID>EF{Th23|@UrUw4`p0$sW}BUqe7U}?>#Fov77#)c zy_Rj#yZ3AuSXroK1|6f?AHLU4P@TE#v!5`m0%WcsY!hV^td_iHv_wfOMRCe`%lT2s zieiWH7u)Rn{RhS;MvTZbz2tl>e$Dfr*XbA2JhWY7j=vR5a{tZGuRta)kzlrs0-*^B ziRbw_&VP}^_t3seesZFy;YeBufdFIWeONYNq&POahV-r`4t!=1cH>)Pc?^Y#ksw3K zwjXuV6_7Dp1#1Z)`%gJsP*TESTjy@L>)+f}-Xdm5FBo0}ddy2n(K_igD{~34Z`{nd1 zwHHie|EJyI2i+e)IxTfZ&j_^y0w^h}#;SG)taIH?H@f6=o_@i^rP;-8O{wb+JHQhG z177^0C=H7&p3BZne3*UN_H6z};}O zyZ-<{v`l4v^z{tXH~p{d@J?C_8O(U!-hL0Dv=x}v`FdfZb^RS;!A!bA>6B@HCCvAB z|NUC(JcSxQQrWb5zkByLW^ijL+v}cl5q*yhwE!CE|e|RVAU?o z7scDP!0WuUZEw3nPCVyVr5%@htQSB|80-325QSlFL(MoOAM!SZ#4x@x&Ik;}2*i1# z!~CqsbcX|@jlf*CDa}8-#tPkKhRd{BV#KOyogH^dQ1JkhKy1GuzFxJ_x^K9WF=eO$ z(r1>>=H_jC{Ivk6c;$dVge-H_y0*)n%6duJpEn4e1U*Y*E>Hg=?GeCaT7X@&egH61 zSZ-R?Xd<(`hDz&rcq8q5(;tW)vwtx-3e|1#CpX;7{`(p;g_jsU)>@tAsYJj{*hXoc zf_pmsxt4D^)#MjzJJVw%;KJm>V$DcPn9em{Ro7w7NCL=KYBrcl2Em+a$Qa(EH6>U%NZGJ?U=A3EoCi66sgg+x6;}|EUgP5y0K@>V69Fm4o^P*MXMXvjA`9szL4U? zdWMq4=eqrCuBnzukddNe0EviHD_9rTN2J8LP@Dm0xrR!WOU|7O%M|B{phzXPV>O2L z|Dbdew?}{Zb1BKS2PKs>26z)I zxWPILIk4+|(h5o~A(h+1A8K4;ny847&y8+M(K)>;$7>~4i_s3a63Q|mIYsX`0w#nL z95Ds0xUwdNq8K)oG2%+MLJB{h!+I5}bGoT@B|=_n#?UpoTOLLi?+Qzu1-%3%o zRZ2+RDcvd|2iFL}u|nK1rQ|GYES)aT%X)3?fR(7OVL8WmEks>&&_)xh)lbv)SsA^| zuPJT2cCR`2F-_|?WV5q7p*myjZm_xJm)G;F56AtTV5$kDI(xtTcuQpKIJ82?%I}v$XK7w%d|c_t*msn^(Cp;jezE@fRW*Xz}1@-gG0Z~dBMt_0wu%<-bxYU98?EL3=FPTVa@qRsu*Ma+ zW+jz^+8RSV#Id4AP{06bu|gVMDrO&}ZCjuv2Hou*Tr*75>oh+rC$NMN6@lzJrC4C_!4kA`Ylp;a&;XQUJn^ThnNN{Qp(?7pw;SmS@fS_F6Yc)z_o*Xu8(Jley~f-<_9*BKo! zdy|*f!+2==qf`xG8)L}nBsn3S1&}f~h!V@hxne9yZV66QD{~)K{K}y+lYEm>Zto$KCPfSX$)8W`tro|)%Fc9Pqw$pI=_6%KB>lm z@=`vyU6-C9#|Uv@g}b5C#;{sb@yL5+d&L!!(Cs}pS~smYey646rcIF*SvQY0iL7s>D>mCQT9PlCR7-QT(1 zCI1Um^c8agRlgNCWZ75rz+=VD==YE>rOuXl0lI>LblHe7S7N^SE0(E1iv&^`+1|wS zQW7`z07e;Xl^x@nGWlVD+ui;;q-eouAxZbFat2;9o3`t^y~O$gqKN9XVYIbz*|@Tj zw*@Gc7skI;QXDiFNwj+*-btyYn|NJg{Dms1=1wpX%cDt#^EV)LO-tPV;`(1@#R0kM zJ|JgYzvJ>NhB<}bw1@ARyI;?rV-yU3Wg5(zVEO@=3)`uROUa?4=*C-FYAFdNrFkvP zN+X2YC_fT<&NjwCau2-Cc)%1$r4j(-qfi=}hZ-;Be^%O}YFN0C%#2@Z+HB{PxW}>* zRo2OL%DifD75$^`-4YSwq%o0-0282vT+*dt=yUru$7uV%1AVUe|D^T%SRQk|jQY-M zQyP$>_19%PUtIHsaIMP(<(O6i{soJuyjzw(D_smuIo*(asp3#k@wgS9p=j0oz3en8 zjLWmicf>e%TC@AKY+RWdxxiK1TBzpB#06*JTfzS*PTNdrwqq6bN2K3jlA@dnJ5yey z7&5m&m}{iz8Od&QT`a6tCbg2R10IpqVgJt9H|zB?r2ky2R=fX}Nm(P;T7Z!P8;;8KFQ8zWNCP>T z^5ava2IE)L`pj=g{sYqo-R@#2sZ0QjGc4sQ#VDJjZ4U@8m&y$nMysS^mVJNF`}=}X zX<;mFF*1J3}y5oAb1x~t<%w1YvjV2+`4z0Eh!_1^Lu!evsY%<@2AN!=~54e_vCQ3`-r8{HE;} zsBaR-cHED*Z(>Ox_R##jf<-x~d794Q^tvd)txl9`V{Gu3GEGL+Qo!+E@|Ku?{~PTu z6O`$Axan_tsISYkQMEB;(Cu*Cua6%w%vM&#eJ!ZFQMX#BrEWZ>EI1m`h8QtrIVgs8 zy*&0>Nz?PeEMH@|=7+l*X-z1&t)Z|9%Dw3ySeCh*$pTzw(i5p8t0Ln$3vFZ+dP$4M zmnYN7)F_%01IAS+73aJZs3mNrU_sL~ZCv~|f8FtU%H)ckAFy~ ze_GC8h6iWco02vvGKUJfvcj3Drq#9|<9f*9v*2f84|i|>8;)w(5>qBze~RHJ+5C<7 zlSB$ASfbr%i`bMpJ9%4~2lWj@E6D(}6)%`3L}+#oti2J~Qlxc$RLxtZN$6&|@Q6U- zJKg6U&w6-UqEk*(4C@jqD^2U1*4yB`~ZYS)Rm$>@t;&bt{(5-Dd zzkbTOsGDDNJ?!q}cADpx&kQag04gRBW{-K^mMMTlYx^2;+#Q;3teA-jHy+ak8PjpC zPoMr(vZdWU2-ui(IYuR&*nBgNlG|l|#q1SB%-DAaWPu3~&9KEJa@owqSlq#0Kuc8+ zNzS>DPyiSbRno3e4N+m!ODN%D?46%E6Wkix8g-s0MzOPPvBRbo&J=M8qLEOjZo_!f zI~(K5WXZ6G3Ym4xwEYOz^Xc`n=91oaS_@V%NMVF9N(s!R*2Ql#(rfElNE<;)bpyC6 zt+}v`6UN}!wcoxyVM$QJx?DL)AGhlSbC?RJ*4-K20E*7qu;DfZt;`Si?=+|6FN1TE zlQf(aL%9M#WgM9lj5%Q#V@v=bTCFO^xTRs(*Fw3J)yJt>hgKJ8pD&95Mg?;%L({%} z7+$VZx)9ZZjDmjjIF(SgpeE@5aG3F>Thk{czYqDq&)r@A{qM(q~kh zqim4Gyrs<}uqq*v>VUby^?kQ1M6t-usr}IGcMT&ouYm;fQxuvTguB6;3 z*}A^Q@VNO(cy!HWT`NlM)Ru8O&t2arDGsg5DW0zJc;DS0_A%95i&nbVY76r;(P4K~ zrYR-+3^~QXqWItb=l^b9U#IOnbhp+H^StF!YNDJgl1NpRT1te91>i!k5N0H{M#KzQ zuhWXhQRKmMth&Qdy+xB{1UQ=I(t-zLa2f zOQjY}45W4)mYFb1(P-O9)iRDuP}~X<>vlUTo|q)km=Q$cX6(8fs#{uKh`h1}a-g~; zoV(rI{qEhczZXu{5_qkGiRt;(`)~c&G&g_i`d&-O(??<(N4~y1181#nN}Z6dOter{ z+2*vN(9SeR+a7ZffK4u*V3wxS-Tk(l8PIU^D*(6KKRByH$OW}&oD@lNkLfCu=AzmB z!iAQ~B>xJ+kvwF70-l-LN$IRrkb_@SRrg(gLv>7O0|16~ zhPZK-O8p|lQOG+XxotiO+2`#uqd^E(Ikv+?GycHP6+~^otY>m@Ga5B%)&4k%P*q0u-oP35zV5b`++eoEflY+*#{r`63Jm^AJMv z%QGg=IRt+JXoMK7HcS9RQEA7z(Ms)PTUbuvtOPN7pP;4UB-hRUgYE7ZuN5;=Bjk;+ zEtkg-wNnFU9oB~6ux@`ue1!Ul8M(e?0+rrzxUdq4cB;S8cE@Whe9zFe)_DIYtm5uF z?}zpJWE$Sz{Z88^=QYJ3P0Gb!z^3V#Ba%i)5w`+$lSWCsFB=MOm1Q}6Oxw>)zvJ@2 zbLA}6n3TC;suVm6t#$K8w!JYLYhS_4&8Rs503ZNKL_t(^hd}}%K5HA5=#(0fIlyFf zQGKsL)@h4t@i7SJtnr)z%KMxz$-giJ?QS9=g;`4n>V3|%PCxOAZdVcKvaO1P>3>(s z8WzuW59zE}b%vGjh-Q~60Fy!^1Y1Jjrg8mFa8Ee9-3Mm4(biA3#24G`um&kw#FENF z1*IHtek}E$i*UMj1f*Q)_rK;OfawrFQ8plK3>(w8e$l{$?xN|sT>0|)PmBuIsl;!T zOv!%{s@6~$g47299@CuTnK*L02i1USC|;}o55yNtZHknMq)?#bww`I8RksJm{q_|} zVFHK?k>V6YJt??w^+=+V$A84U7Jp^ZlzdG!33JaX2O+b+mUu3uC<$r%2ndZD$-jWA zh08d9EB=~m!~&LA(~Vo6!};WlRLUZ9swO0n*`S+-vk*5<1Y8a&XCN-kaGe?DCc0A=)(4jrI_vqAuxDi${K6p^*KZ# z)U(8ojA`98O7DO)!%b>OV$XGpe3qgzlC^S#NNJS-&F-z~4R<{@(OEqGMREAtfPq6{yr~ z)lN1CrTVloPX@P6(E?4hd7Q!lZtIfL-2}R9W07&7E zs<{z~W9qi;%P=;qJ=9#{x~0u4t(1NZpkm3)+jjq;yAJ)c5RmiLNUP1j@TqYwZI^=8 z4SV8tyZlM93%AFZCHZH;Uj=V~Uk?44vkpl8@zCtXxGes9b-LG5RBltD>`R)@MqDXf zx91l-cK-D#y!>n$!Q{}my%0o%U27QfDymSZjNa1gGHtA}<45GkCE-lWy~a9e7v zv+oakre-KYnY%K7F;Y};z)`iWpTEWBbK_RieMnM$d%VV{M<&oT7I6`3u-zeqrTCfUbc>EjO*stRS2oA%ki4Gs{q3VG9Y#MAa$FrpBZ@;$fwC1-?xW%XbD)rd7?=7kw4g@RJcA^;^c?S9{mzZJ$^o}Q!sYWti0?eBy@tOWJ3RYn-2$Ce=%h^D>aj76`N z9*nh!kxEREd-OWF8(-NZX-+?f3UCTB}R=GSBkmdT7Nn!hYik^e# zN(s)G9)yU3F;=Z|89>N7bbTkC%_P%;yj(#xAgqAS?T>EkfWfxR6^nH{Z5sg0A&2Q- zw(I|yQosBDzf$9EczVtiNI0bomrig5sghrLT1dJ~(&*nXX0J~_0UMg#57|$CUAP&H zZ5dL{nJJ^V10c=>7RCun&C*JSfa_w%BQUwGkIppK?WH{$*_KiZ=$z)Z-&u7yfBm@m zOUbeL)Bf$>c87P{>oem!-M=NRjj=W0>GW9&UJ{1+nPigGsVo_1OfoJ>*tXq$zrTIM zh?P<NYW8IZBcq!hX_LTHH;WA;99!HMe-{p=?p>|wmGK--pE*MUSSwG@g< zMF5c2Xw`Sk_do1Ep01bkEP!(I+qMBX&c(7V({#~VC5o5%f(3Vd_vUc)xlD6#S|DMl zRVuk|X^W|I&9u%h*JsYzzU>Zu&p5+cV@bJ0LOM2G;dJrWd0w3!duJOhmz4Y#r4&L# zDe3*)O#wb{<#vClSP|HV@9&HjpPyfrHM|)PT9RNuNIq`~tJb{l%zb~5$`*vhd%~n8 zaAl-6K1D6{*bdq_U_9jNbNTC6|E_EA_PfTk#z>*W>*R;lI<5T{v{bni;BcPK464)e z>(is+=4R|`UKl{zjkC{RpPvNqhru;ko_)NoD+ex!pk{{TtV#%%X>A-Q5Xbx4u_k~Ln=b>!su*_#adHFtt=xCShX55UKzYfGYrFxYZ7wT4fmP> zG7^wt@Jw(iHIiDFbJ;F^v+oYOTuRs`pW?c4sLVO1B^0I!WQm!p&NMqf!gO7y&oRB& z-U*&^h7_VQsvX`tH^y*|>%?o^*01N6Crnf)sh2^#6$Yo1PDLrxkF04?N@ zt|0c=C#+k4c&BxfVqm%v`X+@Z#MupRT+?(c=UkWEwB5icmVAlv73+#%2`s^>rWDpw zil1p=YJaQ7f%^csR(2NRAj~kYQ@(l<3gwCwYcZT`yMKUM{PLAs!}Lx_&6o}TD=SwP zR>7JSGg`;M7)`dbAc(4nDOO;GGUDpo4z#AamK1-lruUadQF%P~J!L5V=>4w%l{ zC&H8#%!5wNBhU2Bwty!;0m zj%62@b7d*}Nf=vEaVEO7b(3w9r-3B$(qolso4A0jypQB*G7Z@7e%pSg=%Vewf?#+?=VvRuz; zaozEaX>SxouBZqb;!d#Q+A-x5#|m6k;6fRyKM8B~_Mc9~o`Z-g4G4cIT&}1PNO}8h>53Q1bTNH>QGK=CkVmAniV0{#1$pIZpF`sg+CfD+0p0<#5VjmQpk3fhE%Cgc4v9q{5+zB`{_x24Q%! zds{<@af>OX>(7vq?SF9H4PvUY?RTA&JbMs!C-hj;H>3+=U28(}VfNK%m;4syPqrHv zPfViLcm9$nB`$*2)QBi#Yr416?h%7^np;)2x$*$Evbq*uP#UR%mE1O+*&m3T>GkT@ zb;`M9lYLUQBY3cyDGl@KD}&N@AGXW4W%^{=cf{Jxc74OcmHXODozwasM9k=SZQtZj z(s>Q#szlMYFO^|cAUNkpC0Ei)Fu}7>4hXi(XB0Lp<@x8&&tLx3HpT^_gm4qsVb1vQ&#X-=fbrFhZ zKkKGs$fw6mjyvG_`te610v-^U6m43AX&h%^TVGNZae20lHF}3so?ox0FR$r*_WrqX zO$m!q&f16R@!#t5iAVw(3@Jm@(l$+R2glo+>L(Sy`uT-)JAU_{ba%^u3(i7%xqkg; z5c^Qur*9{vR5w`X6fibLrkLUtkqlx}{RQ%x<7qpeCm3bT@A+Po+SfHtUod_pr?w6RDl#OjvM@r3`-Y zHAe|{*zYn^wVo)wsLtx~UN^TnE@jI(Y*>F$ZsekJ&4hjl|B-Dr>R?D!TEq-A5=o5pI>Z|8r<`DY?SDM48g zi;yOe-_~n*z9@&L+e=oJM%9cVuvnQ?)?Yp{SZ(vcj1QG@?+e0WTHPPt=XDbjx~{FI z0OyVA02$}JW*+@nwtKBQTxZ4@Fj3YJx4#%8I`;-s5_VMG`$_=jpv)fYx~|`7K@8u3 zOW;~D&!pt4(R6NgXxalnOYGS8J;yAI+X?cw2$yLP*ts*j2Xr3BMG@&&AJx`Q&d z#F~QVddE=<&8hGj6Xv)DSyLmlRzjuiix0$tHw!X3)#88S0I+_Ij6a48>t;SV~F$SBNi@{vb%m5+qUm_Lr!tKJ_`t+TCVQZMWNXJz%~rO9jEG0@ZOGt+5p-S7GeF=^Ct( zr~n5poDd?UX<1%oKQ~=(jV9tL_<5bM{58;5*7BS@XUL=$OccQD{F*Zxo3XQY+O`Vx z=6F|fjs+zb6|cs%w-0ZPlN8a}=JB$Ym;}ei*XQ$jYus?N-yzbs)04B#8vSzmqL~?* zE|WlDKCY58&UvkXH36|uDW>rC^mv_?vFkc(I%BBd*O!;mbTZs^(i*KcU%#H83&qa4 zv9*X;;+D7q0;hPY`M4i^sgKv~R}XKGtJq&A!}YqYhdQFcG}+JO&sjbYd5n(52Sf>5Uz z31N;)2w~e|igjl#5MJi15adiV`I15uygck0#^smulaH%2+Gt4;C4;qq&@$(^rDUDy zTgxTCE?bJRZ--sitzo-{84*JAjnhMWBmT$#{$ca8u{VX}wylz7D#;G@q29qR$tN@^TwrZT(|jzHHW-$!MK1B&q8%d z*v6O|8Po1?*s+2U*UIZ|e}|}RMr9b4N2^NX4pi0U5)w*l8UxlSElnlfm%{wE2|2jN z)|!Y)EoXwrxe-#8yrd|!Qrw!7s$WkzJePc}c?GV7W{lc6FWdDOEGcIX!UBtH$lAV> zy%W4H(|L|8p z0l^z@+zT%Z-?d@D3wHy8S~8?6vRF(qllhO|^bRpcc;V+ho?L6|7*|T@(B$d#V9P>C zP4&z5nPU@jAHx#;-@@f5Akmubx4#$WHn|gKUs)f*s~ztd?c0^cesl`K@OL{JC3FjwZLWrGK7VzSIbk~` zQ_jiPl51EbsIGg{pse#FQEQFjIyZNP<{R%Ccnr_$@iCMyd42Wk->PVwZi|o0^{M*4 z+w7FFZu&tBWx8DjaMxc`B(Cm_-1zg0zy2hIf*ezN==U@O)ZLO$*Btcp@MVExdq3h;N0p?#gfzMSYitoVvMOljQgz*xW4?-^4Eroly^+* zAkR#&+BPj7srr&aX|F^BXKz|#cGxUITwn08-$6~q{lbVClU4M!LP=BfKicjMlYMkk ziNHu{E=bb4K0rBf`Hc%lUw^o$*YW0EYaIlp zWv{xSavuG{ZBGKZ!s1;^q=vmTTer-m5|Pa7%KDAj?hs`R7f#p`BAgK;u)|>QT4_xx z=cc-T76uxF;&%*tVqT7Wp>B0IVB7h5P338O_+y2 zW_eRM^&Q$lx#?kg{%rd@G29U6SQl zh?pKfFw_cMgSzET& zlpYy>%Y|jKZx!NlRaztU%jFoR7a=JZIA5I}-%JBG9^h;AOR0OJVyI_TALr{dm+F@i10%t;DY#I3$(PlI$a`psfNhatKQ>MkjUmNr zh!n5u>C>`KYW%2g{+`s(>J<^<`r^(%5Iaa?N(>FNpDxHmZpj^IDfd_!hf6w7;4c;E z_4Tjr^4~EAqD@2N<5Ok0x&IU7CC7z{aeaB1ug^l%l*=*)gqh_O{QzKwH{YU2PtQ|| zs4PbW;JQX?;RFN>M{Hj~cw{3W^5RIU*W-M>o@KvdnsZK^7bre2U%3pX{~ediUw&QB zXBQs?hoO5f)rPBqGfT*Go!9xl3-PLW&6PsBMR6dBJYSmkXulC^SJ&B1*Ho8MW_R@o zcHOYyw!g0Y^g6rw!Bla8g)9&E!ungrHP+nZdb9Yu>5>YHohb^L6v?JAmvi z&rE0zgscz_obIU{naX5tYjRZxpaGh}HfR6H)flJe;)9S)s@8z7ftPgQHTC0xo3YkT z)>x)5rJM>BthU?sB6Ta;w%lRxUaYh9&hU0d( z9eXvs{@{G+`jK<-`g+byZx8p75+DjSB9oWb&ufhR?i*vbj9b%h-RkGdrQd$&hL0$B zOmvM2-HlQjV7NIP7+1%a=TfF_*br%@6rrpwD#g+of?p9)_qLTlBo6mC&Ru=X4f*x_ zo7L10T}k2V<1gp=!kH`xkip%hG1Q5&Q+ z%&Fx4X4l)HK+B~tR;J5znZ343ae8@uVT8MzJ#mWebzRQJ3`*$p<#KWHkH7!scOUML z^VNrG?6fs9WqNb_MoAu)B@|p;jBYufjG}2bes@5jN{d+95@K$}Y9S@>`@WR6tX>M)_o|f|bK;y`=Gq`-XtRq#kYM~W z%`t%>HY(0o^_Arc(9mc*be-i*aTXKKVH&N9DWuwz(ZJi}%3y@xH7Bthb;G74LlCve zZEs5Tr}-#2w{kNYTMHehh5c{;^KC0h_ji)p9M|Ap8oIvQNnyI)0=DyIHCxqng1Bw1 zzC50RZ%XxoaW2KY&Pp6=YFsj<8?>cVQwnk}tdbDovQEKGDLezl9AjKkiiMF*IaRKO zG0XI_X31H%9X7es!qU*C@O*jx1ocLm zj_9a{k4kjH7^M-=10$)oz*GakI2V?eD6l4uk*N)Gy&QibrnTLt^&u{gE&fHwt(1Q- zy8{Ms`T0{}7bbLrzHzQ35z62njcTag%+soPPyE_4XR5Eo)doV?(t_$$Ki>KIl*==b z%j=mTF>R$Dm-!f%D`QfPnhU`iQqC2U(mPRWu4l$I=akX~5TOOZz;t7YalJf}dy-~E zwpm~PQp<(94xmu|5?bf@RxMpP>0_U^nUpd zsk*|xVRmE+mHdWL7h`nCUpOwq-A%4T%n9R!b%R3p_a7L%DV5Y<8nD_LlbrXa<&#o6 zUM@^=wfh58oAvaY&_Lt2HNCN$9SYSN&*7Tlgh<2ySmkWTl?riYR4bfY%xd^2G29Aa zwBmZFP~F!e8AZlwZG=1z`|ki)X>$QzX|{c*`*&0o@85tLYMQluZ?^A+;yGTcdnxYO z4BzeEeg{>RhGm&x4x(cK03ZNKL_t)DWXdl>0Jr13ypmY$_U~J(t@;LOKK)SAdDwk# zhYtk+%d65DmPdd51jTdN%i*SBVpK?NOJj_6gqDyah|;cDqcFsHQvHsYiR(GHO6tz? zk}jWHo$Y>z{?y_rRSu9jPgMTGW$?2s>x=3}pj8f*T>P~b-t}*}8e;RJ7S(Ie zJ8ZS&Gvg%0n$|~Fh3-D+{vD|t;%CTL-rv{6M7L4>E~m0Mr|ppIl5^=yPn0sYnqr(E zhyj@$L2mv@Y2O{*Nh3EyKODBpbeW%i6(aXHyBZu)Hk)nX-d`V?B)$9C&=7J)l8w#q z+&}`3L~pw8eF2?P!y3x`0x)xdtyM;$h2J<|bpKt&zOeyIhVs*N{Cqh&))^+Y+WZ|_ zD@54u?-xInCU%E646e~1^ZePWVX2+3&DyPCt>FY%g=$zIkuOLjq;6t2U4Gba54+oc z_OZJ2gO97)Z1?PUOxF+|Cu9X5Xb?eY0b zef`mBLd@VD@SZChmX)Bln|G`pbD9M2u()M0q-p+PC}E7s&V#!&yMe%lh!;ryK=A zW*qdm^XJES{K7Ujxx`khlpBssDd1Ij7jt~6d5vC|M7(C*GtM(3<^5}#zie;+0M)P8 zU)8YFdRr-^^jg>eSO_khGyoIordFBiCC|UM#mS+I%g-gQB>QFkC5N9dBuG&h4SI;V z*5JVZj%IqPjh{rMMFbzw(`8p>pHLN{Br~9H}AFG>b?u^`Sj(lc`2y0-Q222BFwWD_7%Pao)tSE6W(ccamZ@;n_iwcxrQPjfFC zAp#a^S4OQdlG=8g+XfY=_;t!*QKE#n3Z^vjm#42J2wTW;)k164a&# zr>QpB-+W+FL2b%tpW@{@4N_=rhVc+%THUl8_nh-oLubu)v*nUv^{G|XkRzrrF<@Ht zogICOPcKhKLh#EpFMTg_gLMr}@ZR={aGs|I-fGo2b8Bi1|M?&PxEbt^zdc0njG+DI za5|r3g17sdHHFvfqM&KPmyldWV@#tqttTPHrW?=K)A{l$8N1tV7*kfVLGU%^+=^^X zaly3!#^yBup(ep73)NkgAQ>3h$Hqc-xu8%owfytr^Sgl{j{NVM-E}T-O+(W+3JwJ9L|OH-n3r5Iad) zn^ZBENRVe=pf+j{Q%jIK&Ud{wTAZe9C_ytd4E?wj$J3lkS#skHC6Se!F^nNyrUjuG zEw=p@T3LM%guB7s?+<;ia!spuf>>&RwfYnh5hV|;87bcEt<_vgp^Z6B(S>-s8TMme z6Fgm}42dCFr8PI+*VogD{jdN0Z7Bs9N8&Y4YdqzMT$({zE?8w)5d|j(!77c7J-s|u zNYOi=7p=H+Tq$l%b?ce1bREQ?S`(1h%Gzewxb=CN&kRtgfno2~SG&2{Y~SWuh>g@* zOtbCYVV+}HwC*ywlrMQ&y|bxc40CMP!~J)H52^SF1ppZ#Lt~U?j5Xv?spd9Bv5G5c1uPs%<6vMqRT68LT zAEQUbi+^TPM;{=vT%cAX`#X?BSRKbLz?I8Q<6|vJ+g_Qz)oRDRHQTVd5|5&?3Y)?! zaX^x(6eJuS+Yv}+|3L6q zsuuPR&_Ri+ztehCK-Ah8SJ-lPNp<&3$XbTO8rGAL||p~f>w(HaPDbbpiQV@;Z* zD2;{b!bFIPmH3L~QK?PEeVBjIdZYTcVY*N$+77k&7K>66n48Z(DEqzM|54~0XmvV0 zK=Nvk#0<19S4S{{H17J!I0|(;AAd?=5w=tMF0a2f_BTLTabQR#FHEp*`##P;X8(u~ zh!@p=!}VApA);G6lGxwbR7zNnkXLt|OF0o^6szElv?OteZi(|>TBTIFoPMi0LV26p zuen~CzAaFNxEQfPcH{g>7=`)(rD2uP{lBanxPFgyZNdsW)O^nFCB+r753^d=pOGca zJLWEa2sxi}P1${Mv(x=v+Yf$4 zh>c{9xwhDCH+xj~^9oj(R&J3qs1HnfrZxrNFso|)l9MV~)l?ZHrZq8SVwC-dTws}w zt)kukfpr^b08zN(ueqLTUc1eEvHP}xY+-e$7f#iVH?q4!Hk2~c(8ZuyQ)Y9+xT2H^ z{dD|+=hRm=&s5!yCxBT)(F98-ze)m|W8Q zrHPwdk~W)yyH-HkE(B=Ek>`qMfPw%*_Hwvg);b@bg;Hd6IsI1F2hn#8G^f_elv6Pq zi=_PY3lk&Lf6Rd?ySMg_;ER+u6*R-Al7C1k@zyoL=JTt2{WI&|ReZl5e-fBU-^BF< z?HHGc#8b@c>5SugkB}4%^$`7x$(3 z6K9F_H)|eEe^4ATKWPJ9-zx=#-E#SDonD2!C*E-}Ds5XG{X7Aza&tS}-L_I!;mrE5#^kcHQTICpp4^43ZaEUl&Aa~+Q!4IMyi3(EZJF%mdB!$2zvSgv zs@}UVVfs`WkDjC$prrBUtr&(HqUkomSfi|xI@W7gUS)SroGE`|jL{DFWCt+}M)i441uB{W&{Wi=Tx+8WigzPx z*H+K#^|Ms(g!qOtqldd(n326OeI+JHW_Jc^g$B{zi~fdWZ?*@s5$8`ox#ehgwk(fj zna%iKGO=8KU9)USQX_44Azf-kC1qnnYm>4Gi;jzq$qBwg;=m*E(VbsgK8s<4HHCTd zODQFm;t^M1iptlr{<+YWlNmOhwE#STFze+xJpX&Q`B-Yq;R?(EnHpY*wb=N)Jg4>N zZu1T6z9lv`NPhWC4M!p_tZsSA)df&-`gh4EJA7C3Duf5>U!O1j`oxN3R@TggJgD)m z<+Wum)FuW9L5R^BYn0u90H~L` zAjXtPjD!v2V~%Ts!ns9Zm-Sr26IP6wan5aL8c~Ukpy_^WDHpeLqYwdV0p3Z1=BJWc zE!p|GHigO(hg@3C*XiYl>-jMiFC}q#>l^3804;OjZ|>iP+_+In--hIPeO?~_%?CBj zG0nd)F%0(~n2;%YfBqb&Gm~S@WVSn?woFb*W+Wh0&h4_6W%fv2Z9J!QD_<|CBNN*a zL#{!JR%<;TCs4KKLz`1x}3@eD+r?GC$b3QKFK6bo)mg#$2v42`E)YMPY-W5>)<$wQ4bxXbJ(=a%AE z?=G{OmE1E3VSWrH`-Y73L5t{~a`v{{34K$GihhdeIr${T&J2f!0suQL=P-NcYw>_w zFd1rO0HYlm=Ps(`QGe9S0TxPdClT?>wZGZruKw!VCix0;qNS+`ltv6#| zun5++n;jA_Il1I3h7f|5jCdZM$u!RBp?84z=*gnDc%&_IBHy&#PoqYdp=zyJ5HA zY-)pP^{b!Hmn#sxzrF3Xd^}Bn^4qsJ`*HI!U4MIg!cwd?$OkOZwU*iO zt?ooAaXvjOJKlf%2SMU`d=1M?s+No(hV9{d#y6D-5|(4jg_zoeHGw-0hxZ5<&AV>@ zK3A7kcRF7SH=E77hCD1&Ue7sWW1V7=HAY}EuhaF{nnI_xj7bn9mZs1kP@^o=kdi|Q zOzQdhSTk{D3URj@3%2KGzm~9^UTS>O!zk_Bnwt;{aRR()6`4q!-z0x6 zsg^8-P*O0dWs~6NNpRjD-l*;_rUbb$?xhk)oJn3m#yoLM%;i(kk*C(bJ>uykN8JS$->G|I|#bN(e z*)54NC&~Fxi06_7sR}-v|F!yO+5IDvqWE7pw@m(BDNAh^_FUvYiejYAF12c!l}JfzvT56tx0Jm+?jEk+$qcxk|5m0mtTk;2+Bo9*o% zTGC_`iA`~nQW?z_a?Cjp-?D}^1**XG`zH70`bo57qnjpj*S(|egAeB#o=fm)`kVKs zM7MhTJ;@O=q#T_4!qTMW2(r(v)RY>;;upaO)r~`Upghfwe+Cr&-9JP>&)3hyk;|J@ zYmD3ue_*;#`O>gzHkjUU$y>`l=9nZ0hLol1q44C_5PVo)ncQ$~84`q)mbEtDjazLk zFuN`eu`%AarkE(4Arl?ho8bI9y-+UU@*I|x(28NhheNGwdivs?{!hkL;hkH;c(~Jj z$8exnLiI6s%lV7IPc;@|JJs*~@=effNO{d)QB zKPfJZddaQq2G+ezp@z#V$jr^iWFOrnrbgLm4Z>6_3h(-qtKwMLm~yS95r2z`F>xl+ z%Kk~)k4OTkss0W`pWQ{0DPo($6s`}2S!8`pEft%>F@+;%U34da+VWElFa6*D zf>HJ+wOX6P7)yQ;W+VDcKZfdx43J({=!8e)oHn5Tvy_a z^G>UN_m8q0a=Ezc6Y_TjY+f#$Z~J$DvbP_l(!%zw6s~uA^Sk0MDStILZz*L~PK>Fz zE+~eyxSFnv0r;uRzf`~2!?(=#tvKC{Oq;mQxq`4mORZ7Qw8_CUt{6da6G0?ogt9W` zob%Tc6Wa85+zcs{xH@c+OT&4e!c<#rHF-BR5=sw7bo0yC=uapp!%C!ezm>)&@BQ)_ z$gA$Vlpbp?O72hup@q9#!g{`W_ieZP4w!Bwg!qu-t3S#>f|!t4MP7lp+^uen;St(HSdQ0Ik*rf4pwLJnqi_XHw;gwH z8#7Q{tF2U!)=FtxX{PV6v5*oY)B-ay=g606FD$9X;vT1%!~^o-HGEN}%cV@d#t=`}*XPq~XVmZCeuP@D zZvN|+C!_4mrhB=}F{QEZv^Li@kzDV1TH z&i-{?o{uMNxas5+Lx?3eT4%qt(pb(Bl|*DL7P86^i308SA8rxlPmix(U!PM*G5k68k^?mwV0_Cz<1# zOC0Q28VZ4owddE@lu1eQZe4S>cAEmmvX)l7tAf|okSk-1SuUmamTT+ti(PYTcCxX^WXq1Jf7)6+7ha~wi-h!Df!Ck;^$8#O&;p? z>96Vh)bHMm`wxUeo*zW1jpka3#J)l*ajCrb9@AWg+r8P}#Ds*d1|QCo8AoCzr9{$$F<2^k7b&`OD|GRb>k4M*+g#rY_hw3Znw5foBN`CKb6t+mpm z;MqO5QaQ6FTx&WRyBFGqP=(fVkc@Eu%|ACj&M!X#3miSiF~<(;C9Yq2x!BG3u?%Sq zVo=V1!7R=GZEjkdJy$%=pCMd1H?2f2dImx2o~b=>L`Y%&nwBHernPHL5iujQTAmsg zSWIb&iN;vp3bf`RUa_iLxYAod9^L0!7Z6>ghHfhz~)as?- z5SCM^Gt^|YL23MajqZ`ll~GS@%Y>*kqu>=Y)rjG5C7+Q7h;zy$Y7;WE?sp|-!m7uQ zdb8KvE~aZ-UYcLI+JG|AUDqWmwVf`%rhHa6SqYuCjoI^OjcEkIAw~g*X zEcDKjeIChL2QY@=bNO1QN9t zBJ<)E9*|P1msUhg9!PYD4>cD6K0p1I;)CqpO0f^i*XVv@`oIcrVuKY;HwruW<=Da{ zr$A72$B^+HiWJCItCcfimE~4uzb?^#mBx05Z@Dxzmr?_yxdsn4ld`R{0t}gMY30ax zXIg7+{{Kj}lO@Zt>@d%3?X|np-E$jnqREWN$|@9407*zQnaretM$$k}Ee>R&NFym2 zfFe+pm5~{(yWi$?yWdL#KE`kM{a+EO>E3hp#my;h$WhZlwxdvp)XVNr3%P0I@@+i) zH8lg5NnlU9t6Ugjn$E>t$+lV=sSYF{u3yl0QYu)lQX-T~nj_#{PX83QpNK@i{~Kx_ zLr6+=P=joZYLCUwh+1f5_bX>pL6!VPHV-6EY4JiIK{wgm7@VYDo8DNJclH zj7o>muQf`u56jH+zZa;hdf)71_xOieFfAYa_8c}8>1Uu9?EXhN{suE+T9d!V_|-^J zLYK0ITuS)@x`osXCwx-TAg`@?Ye zRzyF2{J*NbPjo6T|Aq5ENtp}Z7j5JEDf`u`ou)&HT*?B(Zu*sD?Dp@48Yib-uD)#> zNNe%Ga7x~}RJC&=tlyy2Zuh2?NP>dT-#-6hhJ!JClqQ!@BbuSJ{g~X9s$)=@w;VjI zn^agB+U`5m?n>gEbgdaF>*2^m^Vk2cWMiaeSwno@*<{oy`$d@^>0#NeKx4&s3hIXmXtV^l6!X(X@8^H%c{9Kn^Kxg=<^lhSD~teZPMb zmZ`M^van+h9OIUC+v(=e4)1m&>kxK;lo%WOo$@KQOOLjC=BcK=3K zF`VAkIG6QIEOPQf8{M@i3&$_jUu2xS)4go>F+MY#QIQ?rx81?$Lr7}6eBv+(7@)S& zn96|>4QZoH)7_=K`6W(MF7mClcSZ`cI|{YaeP4=$v`Evo`@8=5D7cn#m1d~nqjUd{ zf}_y8ilKPNWR%SL>7VlaCsdstU!gQP7oiD3#}vZ47<-h%0|;xogAj-uq*65tE}Ce_YWne`Fa(?>Q*b=N2n;E_#9$2yPnFjyWby%i;JZf{N%wbzUXa8J_NqG}=vsSj_+ui9$t~$lA zeEVaG+wsl6%Q@x}B$4x>>5rBKyDMq}IZD|S&hz4sH;7xxHTiWn?1#fa^!IjnBr~8Q zW7}c3Z`vm1IR_7njWr+u5Exk?#FUIuQi#GB1Jsh0(bhIX0)UJOlrqM&3`uJ;x>d@? zlx^GCrjNczRBMbrCk7T$KHR-#NQLC#?l&>=v~AjuHnQeg3lb?U0rbuX;);ELK-GjA zcWvA0Hu#$hITSPY_s7FK-a`KJ>1(Un$*s@NA0Z_{ zfLwCU*Lkir8zB=)AsfYIUM>aL5(9XWRtQ~6Q4&vwzU}v|?q8-$2rMK@DWIfjzIs0~ zl%_c%XfFJCxGyzt+ah(d>rKwvaoiur14%r8yQLJRGTY{%=1*UK-KMJ#p$h7B7vkol zyUjPZg|_W?ZRbOJxh=~&3r1^9*S9t2Q1iOP+wHQgw-AgVUB)lIAQrO16-XJBwC~^CNrAV?ttKGmYAhL~9ZmvUV~tt!>}uBDFt@QmQ+(F`al1-zvEni0YxH` z+MI^{p|v|m>HPdsQH}kc3oq*?u(X{7!4hgN%%Fl_Qcl*keYZc{J!mPM%ci>%)Pyzv zcYQJ6UbfXq4ZBW}))5kr+NRrd`BrPP#%P4?b`H+>b{vKtaC6b8TE^Y?UB9matZgxG zrOuUuAYDFjxXyyvvVZnxK6Q^RwKVoj^k zd1v}kOwMGwqm&@aCL1_kp%iP4gY+ETO`0($3v4*R{PfWnCCS8aOHc$zs8C`NN~L@b zZmM}nKIC|gae^GMev(-G!(Z%kml0>azzygaT0bg3Jds5?q8tfjNgi_8E}u)OcIX5K#Wfcb(vs80 zP)K${wj?0?6@dkF@CzUalp&}Xii9Gh4+As>E43Z5Q0Z|YFDk+9iRGfaQE~)0Vz!JBB#!7o)OvV3%sgl{3c+K;lYW`Mm z5W?0v5OKvEmY*d^t&t^hbdri-Ujyf)v?>fUu%^6}?Ky^@1q`HqDEa5OJR8zYYxVB8 z(OtFD-TtouN)~NSB`*J(^HvIB{fWy50e7nDf_o}qQe>+CQ1CMeB?*ggC=7dR)er66 z`X z-!A{O8?|lUhV@413)CEz40HSVcZxcQw^A#hDd`*1x3)i`=^3>&1xYX^#+bHJGMM3& zY^;@`gq*`yX--0pIet-gM6u7#@9%!EUB@{ftg63@)7SOep9N8WZ0znkp>}EcnEWS-H%VUz1BL|T!=T%b=?H%3YGMvw2>?p~@|l`RYz;;{USlCPWgp@!f>Bx;l%OPVDxpc2xTbW8KK#+jiK5y~MXM-Xa7 zkSE&?6%&+2;jHb^wy$drMYXyecFny&nc|c)DJWbc>Z5{Qn?|>7KR#-OIR{j-ZFV(7 zb}Prrw`<-#z8_ByEc!hCT-~pn)jA_e(;a^=`@b#N6#p`P`^V(7;%KZ9wBuNjGHKBL zz1Cd;ge1FGu$*H#EBV+Chm0Xi7g5mYfU{Qd{npoInNy*0?vu<@rS9V*odz)47r;l88d-o$^QYB~9F)c&C_eo5j z=3OJnrfvSLwcOnwV{k&<2x4*&*0qEgD5&rKniw7UunV$Uq0tO7@dAADdVuYy%{ zmrMuU-R;I;8VH`I^DjzuP1hn6l#Yq2D^!U6O{zVJmr^`bS=`Tx1ER_)dM_(U-R%jY zlxWS-P2Y0S()5CbX`A-dyS^Q$Y*?t#owlIcT#(YbYOGBEJ+D&nYnW$9v#(pmM#`Nb zjn#7sP_iBO&HfHRx$PF*lWGRr8Y&+PH<=I8R@1)XxR@QN!-IQzt_i%CwGdYyuKzct zpObqw%`0gRxke7c46p6+2qj4x$eJ);lJl7Z$Q4DZIceM4W=yV#isRiYRKw-@h0sOM zf=*3)*n&8}yrk>D$jS=t1WA%9E^Ba0T(55N0P=jp>5@5#W_)YgJ0*qfG}Kh4TBoa#1wst_l>oV7hjWtkGE>RJ%U!>F(Q9zZVAaYEV zfTWTjY-2kHUarB|&UT$7IdlyH74Bl@Vc0cYyCo#kuG>XQwCx^&@Ah3TSU_0Yeg5(k zLKqKy3Y%Y7PHx@8t{+=F`pt7qCq*ge!Rb|x18%`x-b_-!Vn1o%XU$A?1sCNs{p@iWZQNz=bTDsbfZhnwY8EE zu8Vt_7Ouq@b(=5qJbnE9GFUhahqgN$cf+@r+spMy(zf4qS~o@tAK}|=!x|4mw>ynS zip}}T;N7+?7p`&h5lYEeBKy0;zR_(#Aq8(ahwR3-zZ=Fkcl(h2 zy|Kh{-BK*5gl@DcF`Va_OML(OaC+Pc(y5}4MQT7HqEDA)3L)g0b56I_LCqz_Y4)>U z?~f;?bco)?oEWTb_C^z=W7k22X<2<_-I~EP`^KUOU+1e-bTCcM<;yzFt{82GK`BC4 zbE6bzxU9L=>evmRF1LBzI&GGi>3{!Uf1l$PLriteAR2S`aCj&wfBE`LsdL|tnoI>Z z-L5`tr_(_Q(ncwzwygql&AA)<-~HhacgMT))6>oQ)A4}-aw%Ffhs);9ZY>~aH?~Sz z)QwbXxonmBbhp&!AE% z$m>F3jDyM=9KNw*ArGy+eRFeJkk=!%c$HG!IZ}o6r1W5&9dDiy3 z;qYVC+AnLJp2&*I+iki{*B7gW?(Rr4r|iyWu1iXPE|Dau7+<*Dn1=!p+eauQaYSWm zT99puu@nbtL|l!z2ff>-zfdLJeJ_Mh;S=)?1WMfsqWSAzvftEx6xNdJj2;Ly%ATYY zAhjGp^`v?!hLX2!{-uVEj49b5=}I~0wZKeqbIl~0QW^olw2iSxt^(mEi9t}ofU@D7$=L4k zomh+W+nm10{L)aL^Cheo+x^J)Tp)sJb=&A}&luzKtB|@@nL|iwa28K~j7 z&Za%uRzs1oHvQ?|Srzn-ZDK0w&ZH3D$*MDZcOtF&!6pn znCG9iWmEDYZA-lV-0l8NyMH8sfGVdLZvU#J(8KqUb=+K?q9IaR0}(Z?Qc@J2zJ3nt zXJwqAn7InkNZY5PWjm5OXsvYj=vPnqOJh4!9STr%sN|ymlT?k+O<6wygKcHu>H?P( z#rVDH?xbw6<=|If8GT3TgSI;#nx-vHcgOKu*Ck9pDU%4hT-%Be*FXDt?e2fyb^98V z_emA0%;QXNd_`=fF#-i>sU&8O%(N}pt+la1C|uG;<(WA}fd475s zc89*f8g5c|ifoEoh?{OtvXQkq+ud{GnzN+)ZTjL~ewF6_@c!SZ#)QkCWp}FFm4eJ! zw=JMZS!*S%zQlClYE*Lo(v{WbZtYG;A>;hS965EAGZ|DOli0=D1(2Zx1ncdss9n@O6 zNw=?336Lqq|A-*_-Cx;e)SZ@c6f{Htw@y${nfqJ^4_V2Y-BXSqQS`(9p+BgSxD=8) zHr;6Y2auTIml_>LXIRAfUr>HczK_cWT&--3*|AbkC4jZC!jp5KAY#|PZuhU$@HUl0_SozjlzP5KDFg`x#e%-uQi{vR zH2sOB>hDjaTh1lc{)t>3%wYT&6E5 zPG&de6r~>8)=DhdiTTsN%7MnacSg6=SrBczzY{{Q>r_g#LdUSlet-Y^$KCyJKn+&O z!U|X^qG7)?jjp+FQ!F_P30lh(+&15`pVIaOP_+_Dk=9C*K(3MqfdryZ5MszFjs4K? zER+I;1&Wk}kg^|JZ4?WMLT%e>j2vvswE~eq8RC|5UbY(pmJDg#s=t-=jf5VW(FnPm zpG$TRkFS-e*XNJVPalKd60hy<@!0Pq(q+B?N88vKYe}ge#NP1*wEmlEvln)oL>iCu zw#~VIKEITlkDd9$55FzUTbQ<(zunx<$~TV(V{8uFvMwc6muKe|$r@Ql&QgLR@!kF1 zak$H=uHFf18mn8aANpMtb&Wa1n5#P-Pp==3w>fvy~0k^uH87^SMfuhRseG#Mp~kR$~O6t`)ODO}fEtHclQ9(1Ep zuCCOu6{{oyZmvwu16L@pZIcl7H1zYfe0@3(yWNlPz9)k7eC?ZI>~>PA!RX{`N~J+L zd3Gg}(%+x%daFb6x6Mh>v__oQmv6U?gtl6qcFlE;7Z(}{G2!fTN@3TUkjr(RCGfXt zrvKxAegj-c^?vm(XK9<7X7dEdZHk+3XRA%0?ozy;M?#;3^1fRZU;Qaz&m>y7>S#5B=%1KQxAPO~tPPsHoNp z0F6727|J3*E7>X|r4pU(4IPH=m?i)6>!jFsecYxsgt@Uw>%;!>_b9ey{;vqx?A|ov zW1ertt)}V82u^2?TVY)?GvUgM4+}ZsbHT3>=TW_@)AI#8|{JAV=qz4uoRwcC61C-?a;@!Mj zYum#~s6n;&Zhp>T>35I1)toORw9Bf7mv;9`^(QhGszt_-pJF1bURD2`(-M4G-rn6Z-9^8EFW z?)<@$Q7S?U()@3UY6V{~7DC~}F6J{U%Ur4;v`sQr?TD6B1}_!S#Ux#mPQ8;u7VOifp*9!0nF?rhaj09RVHekbKo zh)G+80k`K5K(0NVq#89gAY|}?i#J*dNm4bWdlZr(axEo=n$D(wC+uEYOJr(T6-wO= ztcJAC+vTUGc|1J+6+#WkmAa8OP(7yX*N8aS?l<1Knr~3P0(1q#di^=2p|B6>TUmdu zaMG=GrT3SHOjj|hU~&bh?i>GocBJqr!2j5&n(T;s*qH`X3@cRvV2+wIRK z&CD$%ZTfcEzJPlkb|>uKAUI%*u>e&l**4!Xw}ncnDY+%MkHc;>?T>!*)XH}EdR@Gq zepO1BH7eE0VW>W0S#@_Wnqis0s^S?aCrf}S--J2>l0Sc_d?r;Sqf#owm*l@5AOBu; z8pIIGifpy|Zd*R2{7H#Zia(`Pgm|U2rKV41mB6O6&GAjC2C0D*-TYL^+TkdhQz)yp zic|Kt=Wb}p%9IxCLN=<(RxO2;=QWsKV zTpgKS_iq4=fGj|Z@wM6MQn!MtM#$bxmp=+@O#dd;TvAaQPBh+dizyGI}$x2R1&9Nrb`r6AruU7yckuBm>I-P@X8 zFnu)gp{{dszlLyAdZ)F{S%vjh)0&-E{VDk3ug}bkIty(JW-SiG@q4fxg32k!a7W1(Y0qisthvp_CM%X=Y6wLO`Uq19R`V@h!d zLW-Uf`;v);AuEN>%wY`%awx&5vL8p5x`xPAWSMk(FlLPYmaDJPvg-7>XVF3}$v^Y@ zIc+lvCNtFRnYC!%7<~fDq?n*eCA~|PC3W59+h0KJbKN9;%XnB~i!~zH9D~RU$$`XO za0=1s21V@%lQE6+l0~$(nQzIccIZb@7fw@(Nn}>GugWz2_sq0TXUIa7h6E>8u}}#a zA=}dtc||wX0<|D%h03BT1EX%$PmH zIIWl}UyYJ#cqG}RZ7R7$p9o2mKZ#tcDn3{!kJ_|WLwCBb zY-)(YNF|(3zAe4@q-&Tj5Wxkq*RD1XFkN+uM z{$0*0gH-_Fs(d+VP!kP<3x0ZBj)u?wN_eNVB)?A-ZX~+^i;qHAe=xYj^Kue~8S= zj8HcqCIeiij1dXBQV3iHQ+&zmt*EZ)51RHl{8H*?GybmI|1D7`m6lj!{7>!p${c^E zyVK?6^YiEb(Cr_?3_yowyvO*=ah>PTLZhraPfL!O!z}z$fd_l~eY3xJ*Kg|tth?Qz zB|Rii3{c#q#2JC++Z_EYu#nYQr4kU_ue?R6AA-MO-7uxFIBNE!MP4sOJh<%ba4bdU z_$;JMMFAEmBw?vJ`Ryf#Sv0-Ux~5xl|EkUXc>g!b4&HkxQ4oY}$^Js-z3Ezx3S};7 zl}QM_Ow(DY?{zy0QpR-dc3E$q?C!l89+u|`X{UDIE3+d`HO>YCCx@lamDT>x*hePa z>`qp7m2=8v+qM*o+mcWI_~!e&hsRtw1yt1ez;T&Krf%3Fr`y+0>pCf70teMyo?rZR zsmXRm4Kzbi1zS zZ=wbtvX6kJEY}MbLWEq)^V8QF($HBU5+OL}Nl=K(8rHjqeGLBBU;dO!kkVY1a6Fs_ z(|A8UpFei(AXw#GrD<(rl$O(ViXllMbFQUwa4r^B1jBH+J03_j^OizhPlv;t3HuBvq=qYnm9rlKRcVi5M;}ohR4Xes=S1 zp2p+Jw$014yUs3VmmwOXk%Y@Rr!d&Ix0-937N1iMrTF3{iDBr6v0uHv&71d&%f9Wp z&U7i&HDJ!X?~N}$qPk4aDK2;W zQv%q$JMD(ku4ArRiGABDlFWjcZ=3tNtga+Y@_6Vg*Y|Jk*2I@-A%V4K#&TXJD0FDY z)7~^%&0FzXEj4A}zR{^hL?nb|*(T?nFE8}J{C$VY?hX%^mnYKA>Cl~DewpX1vCaL% zcZ6cv)*OAUaQ>u%hSM@NurvP$}CD`_>&j#&zz>^9C9yMLwIHv~3J=K=+Za=EzWGgphyAf;Rv)4ml- zmH4O1cS65w4CkCuvWL@mNaUV>0*ZiWw5n`{9)Vvt{$-o%ysQeMl@g6k;(=vH7)YR$ zI?Xm$Bbua&sPSi?km$Xj&$89BIn^|~mn{~L4Vtz=p|pJfp|*8J0wSoJi`$D(It6Xb zebaYJSO5ZKC^_dL6>DT)!>7E4WeM#LP4|6)zJe*BWz%queRov01>)=F8vTVVxp~#P zuO++lt!&STNom7jF$BOVm5oR>>aKFUeEF|R+&Ybwy>54zg}@UOky6!KS*wY3EivX* z(9Q>!mVZz16XzaOC&gE-+IBn=iBz)ptLX+i{8l%u-xBKsf*>}5kz+LsCB0xymi8{$DXd*<5M zoi<0Q4}i+W335>&a{LgMRk!a+{-)NZ8BQ2hkQ&5&t^ry~{zKk2v-?AdPL!**I#(e> zksw*MHQf{)qEWs9DIp zs1fSgcE1q@V_EYW0dCR+7FxAE={A>VEdSDUKMtpNR;jQ#v;w$jQC0UC^U73`y!e~7*2){l<_DVL&+*8v?6d(kGA|yY3tm!$11*&U?SH;f~4=4?n8EM4| zP!V;{a06cV-~UfYCU4PSFKOPiR7kZj5?~HrAm{$@H)fc69o z967j6$=2FNE9U6p_JrKG{exhg%>JK23@87GY_wDW&Q;11ubHdF2@;UmO zTYf^Wsnl4sl%piHgOu$F&_a08jWxQ>TyqY(XloCm8A^%*dfPopPKa{zyk5Q-{Az}s zF+}t%%-hOFVCfHcHKvkZP%CCZWhO%1KC)0&Q(SLC?c4r$So$0o<9`#`>HbF{K&xH= zah{eb%poZ#O30FtYE-0kzY`?#(k-i16@pj=b1 z&4GzsN-{2=RyRp@ALc6x)^^6d{y?ee4{x}gbhF3GQ(aN+P#r2I+qImlRI!j1ij)A` zeN@AH;x=Vu0GmNGIv0$_$PkvtU!GF(z-)~Y>QdY}xeLmc@!Og_PyYt8s_qZN?f0Sr z)Kscd%-h4?k?4i6wLnaZk~hK0il!`Udj4z3)x{!}nTxuPlV4t!bZYGfC2mMrVf1=> znVis@8;*kU4mnVnL%77{l|l~J=bEB!-!POlYoR4lK;o#o95d${32R8$>X_qnxmLdC zLaDxw%fjQz#U@rVT5;Q=QsmCTC(u11@|swUA^alM7U4D(Dk$RmlIPF4B#LWI&!&;V zsng4&k*XUy4mFbyYNKsmfw5Zs`O~s|D|Ls}`mCkBvHd~t-hgw<*Xi{&hMDOb*&R%` zF?OE|NZvD+a!EPm6daKtU!OS%WA;KBw>)@1Ql_-H<@!Jvh(cb^IiD`a zN64bvZH0tfDf=vy5o$9nY#A3}WCfo5LZ#GFImBGX5^h_>-u~;H_fK)+f<^G(z_+(*tA{A ze4L!1vaVqbDTFBo2gD21iZT@^P>%DQS!t93;+fnWAdw7lE(s{*LL#IHNUd(6Ru{_} zs35DgN)#X7zs;G=qvI%MmpH3jN`@SA28=@Mo82t~wIpwpVyLY#tfo{v1B~&cP#Ym@ zaof$!m#2A&@o;-k(z@jm$~yZPeD2$h00pDFzC$jbuj{zP;7(Zm?QYkau9SKluY!wr zH(P7B^L%+d9}Cs4kv>-?yHwI?dZCJ&w%hG?$n|kqUoI}kCrZqg|{5UT$(WWtT z7(-0=w{H;T@pMT!9=2`UXrn|daG9q@H}7`+b&b#CqPY}^Ypl6YrxhSxt}d?evP>=o zDL9E<3q!RoE?FfI^Ox7-bzFO+IM8*uvdXr@hB5hiUR?;RkZrUJ@qB(=rkP{aLQl(j zJimXcaDgvD)}l zYOOcJ=5FYGjEe_EAvtP=Lo0HGaT>>IF4;RDUGV(>{CmSyyWhT@mlq+*w%_CuQy7Kl z1X>r)DbIk3Dl%fy*brk3g)$-cwv$>y%y_z9rs)VwF3U1rPpr&Z;*yK7`|WnGMXj)k zrWK;i*%5N7)zG%B)yV5SUy&JWEV0rKd#W|2qcTBY&N(CIN+AT)N?Rkj5-~41gHjrV z0KyV$@UKEi&Sb4YD5bPW%Q59&h%tdWrKMz49OYn3$+p=kU8eD2I(-&Oa303>Q-mGB zw$6|K`l%Z_WI8Oz%!wGEF3;oX#k5+sw{aaQ`J8e!NTw85YX%~l34mwBp?~`~s5(D> z%j{m+J(j=5f}*+8T_61t$Cs3!2p%MV9}snCIUnQopC{*YoNM?60Ww$E-Adw+a|l0$ z@uKzn$|9}*$|X<5=0cPs!J-fMQr%4Fmw5?7Z)9ULXrJs%2nnO3H|k*3;`JDxWv~Z&BZ8p&7Tbk(sKWR;3K0B$lq1 zGt|&D`&xksNzp@;wS1CrHJjhB%Nbd$HRtIl+XH9SuP&~S+o5gm|BFx`B?A|(Ye-yV zhLaG+bZ-cG1x(3Ta$$Wb%b%_7g=_%?=aWLg+q;}R2nC!sn?3JueQ+h6O}k?TDqXlS zTCkj7Tnb#?s^(VeK{Oq3kKkq7qa36W+L)Z4<9Y?w6FR8}geLg~KnSCYd#;5SDy3eS zu(@Q;6O{sD5Tc>tYF-#JrCW|%w)E5l^PsM-ZvXAklqOPo@^_T1& zimeivxGtn}dewF(OfStM+kr8zY+J}6)XmMU?C!$#LGthVyZ@T=6~Yf~_W?Md=u3{k zBO03*~q>Xwn1mqKaN%i*4xAzi-$IMIKoWmGJe zY_e*G`!|px6))N*R$|q$IuQh@Oo&#By14l=N!#5BBjY-+rynV5)!ZuGajq*Y{_-?mrN+Qq~e4saO(Q6o~`b-G6k;ml~$D?ue+{-7w_y_*&SN zv$wqIo5QcA>QcD+`BT$>ko(`4>}seff;&$suLLban`(G{_^Usis4#65<(W#&uc;xR3c~hRmp;#8QB|{r451#4~axj45St za}`*T=jHOL!phYLP-Sy_V{9|eSAf&*<~y_fP0DNE9T+x+QZsaETvHjPZE0T9azfLW z3U2=9FE0SN`S4LR`{Y+-MMzb0n4bQq%ncK`EZ?AZDSn!tpEle3{oR|mzH*CMwwxKE z41iv)pJROHBAe~K?r(EgQpJ?&GXAXiciY2VbrVP_^xN#$7+!=icDR8wLtd8G|DLX& z^yVXKS;K1ykr$%yMYamrZhiULHj3NB=gs5C_V_0IZL&|bbXnQU!}(A9*h68Y5UXDSlm1uc4!pD%7v^H!nBrH0nY-jg!{q? zibsjeYCr$r!+bqHrXu$r{(d;TW!!}1=+7qqc8JY!Fw~8bF?C0cHxdl}Vm~kz-xUlrHE(S#uu#eDw{bev>ab}sqB3tPK`j$%U81fj5=2f4DunU#x*jVnM1?WIg{r7a zbh-i2bZHv>`c0Wu>3(*PjIwvrl_7{=G9%k{I~Z~CUo z)3=;|;uwV9Fl}XhsWe7-OJSnoD6cg!uDa;Irty=Mzt`KH89u1~qiR44pTiV$!<8jC zUSI!(@Uq$cnxT%cYEc2i>v1)j4~M&og~?she_(*q@hq(2io*Pb^D5O%&Y6qUH0|M6 z|5x;Wy&lmRloFT?A(b3i^}<4dGh;1pI%N%~P$WuwXJxkg19E#l{ZMlmc0);*X+8=g zpoUT|?Pk+{N<}#oje?dLYm1t@~`vqlZQ{7acw`k^VjM<>bsmXP?Ix@;ae`poOXp| zT+S#4VLGdo=9p(+GlcQSdi@6K!26-ZWg4T@YQ6k*8lOlu5zP{+o9Ed(kb^KLgOZX- zwxlo-6M|(bF3nHbe^U0NkWGrDq*k)YL<76%*|8dP?9{(`wS z{h<05U zS~5*<-u+(4#-%Y+?uUZ{FO^9to{o<$SD*6XaQN{4JxZB!;^b{(32gA*D45r248)nL zIj7=Et-xi@sf377mQV`u=+m?wjghjuS9Tc3AhpqRCDl|qjB&#_$;~U3!1$xEA9Q2*9Vb28S#u zE}pM$4!$v>)uwAXWx7l;gS=xim2nGFgab~ek3o#mt|Cg53%ez3d(u#zCpYjPnt;7w=Ras8Sv-VAq*)iE>g7NOYw@T=gG z_ZQ6#109oJm(a9!zqvg=d%Ba+?F@~|s;0owiMcKb0qU$gJZuLje?iK6UCMUOsdFG4@{h{Q*2h#lG z`T5xCg|pFU4E_juYX;$_3--1WBsON+gy+8i&3yko$M=HGoHL?ZrVi16B??+Lf~)N2 zw7eqi1OgZ57%nMNf6ps~>&uVp^1m3Llq@dai0uc?D`pFcg|I-40<+XR%)9|zc}hMrjP^H{O9Tdt)_1y%|n`ho^LLk6f7a^zOm zFtY-PGnYHgE~?Se59>0+`tQgT#ou4tpWNwDNUgg!!`pu>A-bpk!Jz;KLd}KI1{q7S zIMLkoYVXc}DwqFhT^ZLfo`6TuC?LC> zKNsF3Zz$^!u2_WNE!2pDYu%R;tCX2)&OS${`-8+<<0uY|l!K2?>-DER9|zr+&{FPo zBN!iuma-mG$(6OpiSZRcdKXzGR4ws}9JM_pIHaN_3aBNxC(Tc+K0u9?cDa5v;@7Hl zD0hig@?(uywEzaJa+KQ)3j!(qYtj9|ub*jtI{$8~2Q<%Bt7;kg~DIu1tRwnC@e!Aqe0+)=S9X4v%ULT_to#@|Cl&FDl zTu#?;dE{&w08T5Y(>k`^dwhMasb8>u({S(S;m zR!Z!Ik#*&)8qH`G5nF8y#1>crn1!(G>_By?%+vC%yZgSD5cAb^zX^%Ym!kkBnk`YL zJTjq-<)H5Y&3syt|7Rmt(fk+Iyp_vyUKegH#{p|VyTV+Q(EQz-^(AFMfFc!=X@aLp zmIIRwrnpw;pz^f5@ch8_Zy61ZX=?tWIX0Lj6jau&&TfC(=$9IP3F!^Dy2df(qk)mc zu1aGhBzU{T7Th;hexIG^;+4oD60k+;L72u}e!=)q($6Ij))TVMpC5tuKoL>Y2#l(- z+md2HivIn&Fa%-P=zQt=z2Poy+O6Zglym1okcpV*|6>!Zv@ImWZ z1J#_l;&GlK?fcu?(baH{yyILln4QsYkpIe6lggrKY0NG{W=y4+jW(G=^t04fnQl3~ zM1K;Evh5q%@epSwOsFr@>w~H9w{LH9W(9n+ztQsDczR*V##3NrLR7VC5RKjslD+ZM zoWnQUaU(>M#;wQr{Ik?IP=wI8OyB$I!N0yxmDqF|woI$wKk>B((!@(^Hr5VHzD%#V zxEaA?2RW`jPdNeOI`~yHW9+bmoAvVIt}bV1x=tz+qmMo#K`F(yJ!35Umzp)>8`U*- z`_(wf)L5TcTUZcAkxz0FDbmw)3qn%#Sf zi<@4XwigsrS_B#)Bi(JF0oBnDBBj1|!GE!WYB~RC^ zMJf#eNX`HS7hL}?MPTRx z3mJ1^wVX}YTKQ{{@%-(N>-bIE-@3f!m0(p_*J%6m_O*vdp|v8|Fw#P(KnsN z$$dc?x$KyHmlL`?_QUNMKh%6>Tq9ROwJMk%KHoiuHYHJ1Q9O3lJ_Uc8{9YlzIJv`(7yvZpByKmY(B07*naRHVx< zf3&@|;#br0Ax>_4^Rd~rWppT;ILqp;!rDwS#c|ECL~NCc@iUYL^qs$6SvtCLM15nL zO<0caAi?Q4*qMJS3VK z(}G+{46vo9&B+!2BeNXbn#64}Z3>xjK%*!#QX(SdrRsLiZJnNfQYw^X%&PM}OX(sR zaB92$jjQ3ZW|6Zo6PdhTGvvkg@0R0>n?8wlFO3nxvhKTOdgbapZ+8``l|0@AmP2$| z-`o*eZFgulHLpySe*0T6_v7h-E1^u6Q%Si9$V_b-(`;e`XoTra*FZsrSRv**N+Jhr-)-XmlCZi-VElMOIGPNiMlU;LMo8ExFMVY4h@Yte|z#BkTQH_u85zU8@A!R`B@Nf2I6SD#8_8pY+^?Y&E(aCx}Biz%LuW7jFgaNG6g(huL;4af5nTX~7 zJWuC&-R(CwLw_2da#?alsd&SU?m2P}l*77|lycbp7V%5MZQ-v|CTrv<0 z6tB~=3|bFLJWQw2`?q_w-}S3ouPGx6CA2`X(XHU>;+Mzi8JXzYrUDJkP*Tc;5Fw?- zh1lyR=m+!);$n<}IljAp?jl9Yn9=29V|^1irrp546ddlYO9^?ulX zxIe@S>-f59wlSt9Qp)QRLT43K3?WVn8+|We^2=I$x*b~E+1F_%Cfwo>3uFB8{HTRU zRj$c*M)Af-EvHZ}VWnEF-GmyNPWMeGv~C+~V_c||n1fHDLro|JCMATM+nh+UVM%9{ zmZOR_=Lifz>V`p6NCBT2%tlGsbu8&xd2T*ZSs^8?F8eaMJTRd3D9|)UNzl2_Sbt5UUIcQ3x)iR<;we34!ID4&CjvTq<1{z5P#;RCNrwl8VK;a^7R^ltNT0Qw;N25tF)) z*O=EA)`m2XirW=)iYK9L2y6B&%U*B4XS%QcjH*$ax6C0XCz#gaM(`$u3zAjB#Px+` zu);|R5PWnmwzopJHMl%Yz$Yi#Ol*_uOyDNrgw$wHYu)bIx%A5}jnyDc=;d=<7coBLXt>-mAj36ZK_b6mXvAf3Zs`HCBM8Xc`F2~ zdCHCnrLf)R+)0)Tv&-nB`-Q6(D2>Pe=EqNR_lBWNX)XC#i9LmQo_^??-}S9n&rg(B zMs*thoMI!y4Z{w2mi8d_?|fa9{@ZX(YnnFw=enMe-7|JmAQX7v_+AK;@*37!@-!d~nOs4r=bw9*3mzOwftv&obGNTzQ;=ACN%3`fcJfEsN z)l6;%KYfOM<}b)L>o``5Bq4=G(@qGI`pN|o4tZWhb5G=u{Vdh5P+3$cKq|2#BSpnBzOKg~ zYvRJ*QO@LiijhztptKtyaup*MQS&104KrKhg*c%25HHtIUIEvQY?mhm3<)K;>7=gnsQ67{l1rZFC+Sfdrvi0jb$`(TyT6 z+q>O-n$WDAYm!RHA#pBuJ8*%AB<*d@Sc+rzrfJ`X^@-6c@z!DDjC8{hhp^Bzy@t5u z{39c8_aEZM!>2hyM0&mg8T1nETy_wEVLADyu;h zT(rd25>w8VLD0kCFPBp7;=wHwlc>AZfO6}c-5egjh4g}q@np)CMd=Fim;nvQhO0&{ z>$l>cTlMQyDA%*A-_Mt06Hm79G`CXkvB+AzXzvRN)8DxDwF(*YcNC|t?WliW(Ywn_ zDMyi`lJENMz`$o{(q&zyOLr?boe&0rwS=k$#`zr+0^-CtRsx{r8hmqj+uqzIu8e6o z+7K5~LGr{>t+5EXS>nh!H{HkO>UbDM`%L^``gbVS{J+h`bh^D|v=nSO?SRiY@R+sd zmXoter>x@@bhz9c-jeLRe+I6*zEi^J{cXr;b*xCq)SZ-fP1_9p8wo6B)Al#m4Ut&M zm6$48Z|VPHMVP_pLtui`1kAelG&z| zF~l>11SkL(#3(dGrHWsc^-sFWw(s5fUxKeZPtm-~`AddTl>dnOCb9(6Nepka5kwc( zy{Ti%AOmV7DRoz4sL7)=SR&_qog9X0n`Ux}sh06Q!Qa%{Rr~xy> zrq*58ZuxF|d^u5&)V?CiOuS!QwMuRGrXTLP8u;a@1{PCN{5c_CM-OQ=JCPw5Y*IYA zabueeHeF!@SKT^4=WrFm6eP1V>gHogyaYsRsfZLJhm5LiIvw4WsMNS30TTwKLM^Ro z7`UB@%Zy)c%5OJxNYR@uU&lvpe4v}Eme4!*(Mm_Eds3ux6afc>ta%0E9{D3;yO zGA5hG-rqFY(bwl!;9Sd2DBVcwq^Gjxtbtd~#J+#aCFBAE`R_iwt*8p-3Zj;LStlbg z=CJsYGir=Jp3aQNH@EK=vgEwBCNs7*o4ehXP`VJQV6LPkgQ%Wg*XY9U@7}$?>AI$2 zA-}pMq@p!LE)?S+g=6GW%{fC_OLVf4QX47RJdaBCyUi{@u*e8$@vhc17%979j5&p< z1-#h}ma88hp09ot41|!j?QU+G``yic(|#+ZvTN{L@7$p zy4xhW#*nn;$f=@6Vki%w_Qc{k9Vy>%x^kIpf7`U%>YN)NB(lD}W3p0MIb36SUcyF8 zW5h{{7PP8$jNXa1RZTBdFO^}O=a_x)wR~0Pjokhtp@(!8sND1v*4Z?7IS@sVYR5F_ zhH=%_`r?-p3#ryu-M-WMdv4$JZo_I!({Z_EWp}1CG5M6dHH|Pg)3_|>AE7==L2Y+H zrfLz4GX^B2wB5eYT-+(;nl2Y@P+6U(r?7mgfK-ICz0xhvHNi9T!_fb()vYk5{O`=% z-l*m-1h$H|IN_m@> zKQgYFyb1GXS+}aWi^X%@N#57eD0@@VDfuU&Qt~6Ck=t7$7N;q>r&3t(zL*1 z&5_YkOJepemE_A|?&7S0=`8`kw3l;U!IA(pIcl~6)*N>6?{bF)_#=i?V) zc7?VzE4|%Ab`&d$EeT9a&Qne977$xSQOyW~bx zk`**sqS~_pT;)mz7>o77MUP7^>l*M}eRb;zSrB>%>yN4!BjqomcrE}1Fv-z&07f!S zc@##=<{ky8R_98!lJ4GVXmebB%%txbGAw~h6&432a?Ye?R+&;lZEj8bA^R0;EO|u% zlyP0BWqRNOc6T3??n5T5!suNtB(xQ}$=T=RYD6ZOz{+t0_AQZ0%U5CYaPwZOosbf8 ztg-4%FOcVTqPgDwtn?uKtMfkh7x{-MW^QHJYIw zbKa!V>b{ZfJp*esSN%R$Q}eZ?xE%jdMKaBIIYXusqoeG8LlCsWnB{u@66V+FS&bVt z6wz3s&AKdknrlLkCAbHy%1>@}FTB}m$(ihB)2CXe>r-Rd?(IJbxx2o6`ug~3oX=@} zC|EU-Nu!8_q4X{TnU1OtsR&5Nv-ljX#aY zSE2ftWoWBW3<4{aN{kgzZ%xxz6cC-zywn_ma?7j47jF08{`zmHU;d@J`C#{(@%1HKCxA6@ zt$-AqiDun>tQlfv?Pl9`*zVsDx0i>{>-n>_1sHS3DaY5-%O?pc#$!pJZG+A2+j$Zx zj>6WwzU2J1GA1}@NV>V_0y!4lbf$lwA#ljHeJdIZh&3sHdQIuba5lpo7m~&=X1g~^ zOD@~p4jEgXKP8tybd{<$9iew|b;ol_S7n&(@3}k>GmJ5ilBl-B7DXHVEF~Dul@vvC zDr@#U_?bdxqPBMjMjEuq*|W@4w=GN%MNEGM((`3RC@Ga%93p0pDKJq5@~Whk?cw_J zT9fN{`&2?sV=OTo|G%!^+uMIMz0%rn^^Tamu2Jc&z!td#T1vg3=()Znu57z;mv7rCO`h3>oLfU%!Uwzf1eEM&{?AnH>D` zqPUT&;XqI)#-Jh!S(NUC(NI5C98y&RylCGQ?DBH<;}fw3!7{#6S|MVh3xX0#3n_JT zsC5Eyn_@%7VNSyCguqhd?2}t_5zYN?{Ld>SUE49f*K>=dewFd;5%hDO#Y~IAA({dsAD%-u@eW*pF z>@p1%wchSZl`+(AcUurje%v1p1)Agu#arIrFeOlE0!bv1QF5-98Y*`MBxhC|r4(Zm zR1$gvY{$)BStHB_B-5%F(!^y%47StD@fC1`xTNc!q~3O$H>f2FCS}obOw-d;?s(g9 zes<^o$1lLuTNFSkMd}DztACS$rD)w8P_>foyrMa**EFp%bf0JW9fB9GB-x!NNHl}~q z_JdT~TG?;*)9k|OsfIO$S1QZ8*75aQ%9VHv*$K;3zvZ&`^Eav>hmVLfUaomUsrbBp zv%BB5yYF+(j3Hx62*@Gk3_|h}SBXR=UXRZ?D=8H!qjjUW$T6pqgp?FR^jEh&unLS^ z&V`9~o-c&~kay#sYRb~~xlpMEQzDQ)kC~X%d$&F>(YN-Hy}M4ISdG$bMfbkzwo=G- zou!acK#U7Y>-|zw6p}Zs-5u_vP~K0=^fF(b)-Y#6xA5SD_YdBkb6&JWs#JO57^4?C zStCR(*EJ9~2VgoCNYyD(kn>#PoBI#S?0^3G&oR#1&An2Jb2iP#ad}BaSfxvKTy0{E zuP>jq-o3g1o=Lv?wUo+u0p0?t-NrJ+hnLsOU4BEMWh2wJx5G7HW+ftSl^a%->sDDBymx8RpK_UEvH)B z9I7&UGzK89$>$Unx8|B^K|zcQ`Fy*~^YnJR+YNmMu7t|9`M9_+NiGh%z5rZrDdi-j z&|F*=KYOn^A>wY>ee>!d1v5&nJ~HCagph1EsL!YA>ZXT%$B4PO^qpml`&gHltmH2E zUUFs35+Y~K=UiLv8<1_v=SV#t)*-@gBs@6vXEVl$Wk?0N-^-f&aw&7AwX%f z7OLi&3#SH>V?v$*cH@IJ!nsRuH>Eb4&ZH~~vE)uUDXm@?1%MTqN@Nb)j7cwRv0@^N9yJ&v5Hh^(Zgdsea7pgm8Mq@?fJ7?U#8QaO(%rBYn5s_abCy! zcXd6MH0kX??2w{oD5F2-bg}Y5@gmrOr2P7^R&DJA!c+2-9qxc~%}>mH!Iwh*38{qe z!N;TNzaTcIOa`maeROL{H)Nj+<_0~JU$#oo&!tT@v*4)l4r|36W2ih-VQUMS>L$fl zve!&y-%0z*ZbrG=6zGnZpWXRms!G8fQpcL)WTB+!p|S#U!`Lk^e}wvt7!I6S1{)?D zkU*HRgf<;BTA(PTrB+%2+5L)%u3?SvtXgOLU)QC#_O8DhmLsjpTr(f<-tz8sUJ9$* zf~R#o_c7s4_kGtwnJ+&f7Nfd=U8sh`J;{b(s>=+Skd^D-K)7!?t8OfDVfozX*4jJO zF@O1Mlm9`o4oGpnN1=qqut)?2?998@Ed>;U>$^0~C0NJ*nd@%$2buwJ-k!aqR@0(88dF0qW>hvo=M4=YUH)Ov)z}}62rrK{O9O?UNP$3 z*JWjXeL~U9_%)Q`SKkfar0A#VrFlzQlI}vd5>KRD%#3 z5S!p{5Cd0@Nmi@MMF?hu;0O}2K|9A(W8{omF7FE$A*?QdW>t3^WxG^D<$QG>^Qwkj zUNzFTX`W-O=`-YF%sXym%s+Z}A>O36LOQ$Ml%z8vmzwooDQ$hgG&z5Jv1TWGnQ7A& z!q&AykUXl$g)X=O7MIgsgvn-e1K_p33R5GShVG5FZ~W~;X^!LpN+>R>!@jG+-KJK! z%M&swhlkoMruQu!5x?M4QhsS^!hQ=C!v)Fg?ERP2{#5ZC&#rm}N|<1wBZaH^Nf0;5?jWE8C=9H468XeSQ(Qg z`YKyYtARqiH8l!@Kt8T7HTU31x)O?flXu7)`*A{LuTt$lvYQ;(J{sCHQIina*TB&wr$;BP3sgl)# z?zW!e@)s0+q<4%JtxC&Zmt2KLAem#zF)H(#v}?`#5oMtt*X2X2@!^aA(2`ivHhXqmsiaI8QhY8!_;|KLLmrcJieJ;ZfD0}97M&Jm zDQbHEQ4wpZgHniV&N|j=E561>(p`hqPv52JOT8y3O6)k_=Gtn#75CEgD*7*2EpEOs zn%CP0MvF0;5GYdX4_YGSOR-@yVv)vR6hmXjR58Pa{c_vU-EJmmqqVTZ-(Ii1*w)a+@7v3l>4{8BK1JDE9+F_ z3oo;u^lb_0{5julx7%&I`9_FT%)Mj}5JjB-8{-4PhRa$K7woPDY$cmRpQC05kXmx* zf`O4vv2uziC@rg>J}|a2&ag2>c#SXYBJLkwg>?HDRlE*u}W! z)p3~`nUqq)*s6(*P}tF0^sP=OjDJ?czT3Tub6k9i=}IX8G5h9=lt(vT5eW$yRICN5 z2qtqX1WXYV-QN>!=hJuY_JIkh#D)t4;H7S%M8Do@BF%-`yqT9BlmNer^=F;=Bo7Na@}f)e82T2i|@2`8e|myN%`CG^z;7bT%iC zi88s^0&>GEVvXR#nifLP>Hy}O`;>%u6q2G}VtCcC=XQhK`^(}J!|f3BLNqJeb3%j+`P9c2Bxm;J5!n;f>48f2gtjnuf|T%a;m2*7G7EKp};oWoF3_Tj{g07=zD zVS=}+G-t9*5+%xek$d~9^M%9;IG$KlH?s15_pvTn^M{3<-M?* zoqlKyW&a>lPUU7c|8^L^#wIFuLin0KEjJ4p5nEk(44w&tm9u7<>{-h#xFprQ+}7y^ zig6kmB#h2aDU0iN!WQ-cgO734zO>G~8hNi|-s zbDB= zmyccF&&ygeBc?LxL7A4^>K71}H%Kwet2A?D8d#~h9-0tYK0IZ`#=7-|AnLG z%pid2`msOE%ar4qVv%}y*gpoJLUAPnXRMTK0bmS}s#JEr9k98Z^NkCE+A1X(<=m$E z=%eRyBraJ+fm{(#D~wytDfx0ddu>ErC+A)AZgJ02TEY8TqF<+i-8k%vyG-*LrHXN7 z@?o=mOKfaVTM7-b5S%dsrCKe^GW#2sdSAkNy_`}RC1*lVE+Ev%VBNRX9s=AP@~F5=Gfp;4r$MLimyKYR0#K4O@_6 zWTIOxnS{0Dkf-aioPGF6u!X`U_xdX888W-O0zb(yRh8Wc;6gDmxa()1E>*A)u7Zohsj^hd7VRE3tkVKht}}+^29mQy90=Ex&0x!@09*lh_A<2e^W}n zU4Cx0D?U_V3LE0>lGm5oLT$x%`(g7=O1qwaa<@+egcWiPxmBbGXcE;muV+@t3|lF_ z2)?g0k}yy{7ih%ylHUshA;*+C#YSpG!-ZzKF!yqingaxE4Oyr4D2*wlLhZFa5NF5@ zQ$r4OI{%*O4eEzhZY)n}xt08*K!G)(=(D>qINRM@yZ!onny%Nd9X3{*k}DCbEv>gB z=N)HUP``#L`DczF+w_dgHnpwp1RRAtKy5h+C{-JqTFJ}F$cNg7l%ANuzJEit*5#9A zd)3{mek4Bl`CpTtxcPPW_&@r2UT*)zY`<0g-;jIG{v`E70iO#<^H5PSL_h!{ZnliK zIQ>jmWCv7ySlc`w0cYL@WmLC&OR|sav1Er>85tt3gj8lvv}DRaUGzUj|BU6ZyZa3& z5oYJzIrI~(by3Z{~HFOdR#hLd)-~U?zR^v}tQe&H# zSMRH2)(%~%E7a)MYn;wfcml14M|F73m_*KV@p?0mki>K?6){sQetJ*jBp>YNYdMZF zxP1MEYh>)rdO4nyu@4d7hhp>N?zf`R_e&NLlh8g=`I>L^ofue`c&_q=x#m6U+Q#Sw2|(8&DfEZ=fBRb^sBol;Xgetf}P;kS>t?GM%WPREO1TZSS-OD0gJH z#BB;`dU=Trl)_@x+5l>|C5_9j2+A{YGZ`l5_Y-P)*^;7ZoU!29RRD-(&FmYPm&*vxkIou#Zrk= z6FLf#oHZqNX}U6E*Z^Be3pPMxLa-EFa!wE>f3D$@;)JL=yG6>m?fvOVaO(E2Tv)xU zVZJ)|Pcausdu?>3zU>O3TAv;;1Q|{%M<1oOu;YndCJhvwOs+3rmRKyE6f?0hRta8|JQernaX8clnV@D) zCF@~-ALEpgui+M#_f3$o?*#s0)zuungj_<**tif6%iXio}i)iLQ5-X?{5~>6IR8 z=$7-3$P7}J`U|z)xAY+_KLWdRL8SS;k$nbxdHxWlnK5LvBa$(u_4bbtJ?94|56X^Q z8!iyrigM4z&~10T)m%I?yELB}$I3)##IPg2Vajy=M7*zW!416W5;6p|rqRqSAnk zDe*>|{_u_ozD(ER{|N1+-~Joj4Pm~7^+?ij;_-S*>kVXyc@?DWa1h#5GPQWD7bK(1 zoj;wX(|a?F6>Ali$i|Sm{#C4|X1afM=r%T`_W76RmP4K{FQ5OM;&Z?IwYD4LM6Fm! zdUI&db2Y?5?z#wV!=-W%DMQc8r;nl<>C zDntJHDRVyt=RTIE7gD=CJxHky4Ql&0@LKR~eI3*ihsuVhn;}4!7Fue*ab&9&^fT5xh#pQ?9u#R3eh- zx>ua$)LexTE5~>%?Kx%-C8zu>>}#nz@1Ggn>ER84YvibwL^*JTM1IDaZk>_Bj!+n} zUK-vABn_?Ac`kPQK%~MnS7L7cD4CM{0C+RzzTdqm3U4nrndA21S1~M1LVy2lO6Pd{ zj;q7GK#Eg;ct>r+#D07CsJN*>Md}<^;ssb&s%A}(+o9XuH!m<)9nP#9J0Bg+yq(-hqXt^UPoV%Tl7pNKA1T1qs zlK#7z2{6jxD@i8j!VCjk^K^|XWdA+a(v|9#Y`TFFwwx<4raH}aLts*KW@5Ms0x32z zPQV1DrTAM-Pr?0M+DC*9OG_!P>Q~&njedeu1=rB9q@|(D%X4W(5u~^Ru$)=R*Oq?C zA%h;d-TCm(LMJ`^)@KN@)bzp`i_WJsqj|%0N4PK+`f;0G3dbK?t00FGQ(RqHe}*)P z?K{zbU6;UdV&+#2`y4;V@EQ4-V=blF&3(>SD2rAPG~BCho84);ewGFSaK8ScRmVB9 z&SExF4SM%ji?9Bb=E*_@SU%5Qk;f?ByTb`4Pr9$x^t$DD6 zDgsIsX`V{XO5ZVkM}kW^Fm3@>)_9&%;w!OM<|FZ4fA_mmUTV&<*z3y^gqe%h$}KG) zQ}{=rgzf(h?d!0dfzb3{&gVZ6zcKMJefWKv{}WQlIWopcSX4W0-vZ=@T&kgEEH%5^ z55zTNyIfMMQ_ZOnOX;LU4=Ex_qcv~G8YaH`N)E5{as@2NjNlv6W62qo3t)(8EiN@~ zyt@#bgt!-7hm0B^lO42`ONOPgN+4LpRFbcS<%BUTyDxrSIbTkn!{x6CGZY!a(%=S+ zh2ot%jjw*w@+B|NoE=!NT1o56PasAH!VAJZ?4sc|eB0wLYwFWIMk z$x}4@zb&ma*kmk>d%}H*tK`b``<(L{ZaJ4ClbQ;4?geKsKVmU&mWuY ztKP=8Ot*ikaL?HwL}$A%mC-r+7^58SmFms#y2+7K=IIwpR z{F&8KBPTLkC@u~t?{b!IO|fnPFP%NuyZ<3(@aw58mooi{SXY~9pi5rXocTC